Merge: Minor changes for problems found by GCC 4.5.2's static checks.
[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 Calls to get_next_display_element fill the iterator structure with
134 relevant information about the next thing to display. Calls to
135 set_iterator_to_next move the iterator to the next thing.
136
137 Besides this, an iterator also contains information about the
138 display environment in which glyphs for display elements are to be
139 produced. It has fields for the width and height of the display,
140 the information whether long lines are truncated or continued, a
141 current X and Y position, and lots of other stuff you can better
142 see in dispextern.h.
143
144 Glyphs in a desired matrix are normally constructed in a loop
145 calling get_next_display_element and then PRODUCE_GLYPHS. The call
146 to PRODUCE_GLYPHS will fill the iterator structure with pixel
147 information about the element being displayed and at the same time
148 produce glyphs for it. If the display element fits on the line
149 being displayed, set_iterator_to_next is called next, otherwise the
150 glyphs produced are discarded. The function display_line is the
151 workhorse of filling glyph rows in the desired matrix with glyphs.
152 In addition to producing glyphs, it also handles line truncation
153 and continuation, word wrap, and cursor positioning (for the
154 latter, see also set_cursor_from_row).
155
156 Frame matrices.
157
158 That just couldn't be all, could it? What about terminal types not
159 supporting operations on sub-windows of the screen? To update the
160 display on such a terminal, window-based glyph matrices are not
161 well suited. To be able to reuse part of the display (scrolling
162 lines up and down), we must instead have a view of the whole
163 screen. This is what `frame matrices' are for. They are a trick.
164
165 Frames on terminals like above have a glyph pool. Windows on such
166 a frame sub-allocate their glyph memory from their frame's glyph
167 pool. The frame itself is given its own glyph matrices. By
168 coincidence---or maybe something else---rows in window glyph
169 matrices are slices of corresponding rows in frame matrices. Thus
170 writing to window matrices implicitly updates a frame matrix which
171 provides us with the view of the whole screen that we originally
172 wanted to have without having to move many bytes around. To be
173 honest, there is a little bit more done, but not much more. If you
174 plan to extend that code, take a look at dispnew.c. The function
175 build_frame_matrix is a good starting point.
176
177 Bidirectional display.
178
179 Bidirectional display adds quite some hair to this already complex
180 design. The good news are that a large portion of that hairy stuff
181 is hidden in bidi.c behind only 3 interfaces. bidi.c implements a
182 reordering engine which is called by set_iterator_to_next and
183 returns the next character to display in the visual order. See
184 commentary on bidi.c for more details. As far as redisplay is
185 concerned, the effect of calling bidi_move_to_visually_next, the
186 main interface of the reordering engine, is that the iterator gets
187 magically placed on the buffer or string position that is to be
188 displayed next. In other words, a linear iteration through the
189 buffer/string is replaced with a non-linear one. All the rest of
190 the redisplay is oblivious to the bidi reordering.
191
192 Well, almost oblivious---there are still complications, most of
193 them due to the fact that buffer and string positions no longer
194 change monotonously with glyph indices in a glyph row. Moreover,
195 for continued lines, the buffer positions may not even be
196 monotonously changing with vertical positions. Also, accounting
197 for face changes, overlays, etc. becomes more complex because
198 non-linear iteration could potentially skip many positions with
199 changes, and then cross them again on the way back...
200
201 One other prominent effect of bidirectional display is that some
202 paragraphs of text need to be displayed starting at the right
203 margin of the window---the so-called right-to-left, or R2L
204 paragraphs. R2L paragraphs are displayed with R2L glyph rows,
205 which have their reversed_p flag set. The bidi reordering engine
206 produces characters in such rows starting from the character which
207 should be the rightmost on display. PRODUCE_GLYPHS then reverses
208 the order, when it fills up the glyph row whose reversed_p flag is
209 set, by prepending each new glyph to what is already there, instead
210 of appending it. When the glyph row is complete, the function
211 extend_face_to_end_of_line fills the empty space to the left of the
212 leftmost character with special glyphs, which will display as,
213 well, empty. On text terminals, these special glyphs are simply
214 blank characters. On graphics terminals, there's a single stretch
215 glyph of a suitably computed width. Both the blanks and the
216 stretch glyph are given the face of the background of the line.
217 This way, the terminal-specific back-end can still draw the glyphs
218 left to right, even for R2L lines.
219
220 Bidirectional display and character compositions
221
222 Some scripts cannot be displayed by drawing each character
223 individually, because adjacent characters change each other's shape
224 on display. For example, Arabic and Indic scripts belong to this
225 category.
226
227 Emacs display supports this by providing "character compositions",
228 most of which is implemented in composite.c. During the buffer
229 scan that delivers characters to PRODUCE_GLYPHS, if the next
230 character to be delivered is a composed character, the iteration
231 calls composition_reseat_it and next_element_from_composition. If
232 they succeed to compose the character with one or more of the
233 following characters, the whole sequence of characters that where
234 composed is recorded in the `struct composition_it' object that is
235 part of the buffer iterator. The composed sequence could produce
236 one or more font glyphs (called "grapheme clusters") on the screen.
237 Each of these grapheme clusters is then delivered to PRODUCE_GLYPHS
238 in the direction corresponding to the current bidi scan direction
239 (recorded in the scan_dir member of the `struct bidi_it' object
240 that is part of the buffer iterator). In particular, if the bidi
241 iterator currently scans the buffer backwards, the grapheme
242 clusters are delivered back to front. This reorders the grapheme
243 clusters as appropriate for the current bidi context. Note that
244 this means that the grapheme clusters are always stored in the
245 LGSTRING object (see composite.c) in the logical order.
246
247 Moving an iterator in bidirectional text
248 without producing glyphs
249
250 Note one important detail mentioned above: that the bidi reordering
251 engine, driven by the iterator, produces characters in R2L rows
252 starting at the character that will be the rightmost on display.
253 As far as the iterator is concerned, the geometry of such rows is
254 still left to right, i.e. the iterator "thinks" the first character
255 is at the leftmost pixel position. The iterator does not know that
256 PRODUCE_GLYPHS reverses the order of the glyphs that the iterator
257 delivers. This is important when functions from the the move_it_*
258 family are used to get to certain screen position or to match
259 screen coordinates with buffer coordinates: these functions use the
260 iterator geometry, which is left to right even in R2L paragraphs.
261 This works well with most callers of move_it_*, because they need
262 to get to a specific column, and columns are still numbered in the
263 reading order, i.e. the rightmost character in a R2L paragraph is
264 still column zero. But some callers do not get well with this; a
265 notable example is mouse clicks that need to find the character
266 that corresponds to certain pixel coordinates. See
267 buffer_posn_from_coords in dispnew.c for how this is handled. */
268
269 #include <config.h>
270 #include <stdio.h>
271 #include <limits.h>
272 #include <setjmp.h>
273
274 #include "lisp.h"
275 #include "keyboard.h"
276 #include "frame.h"
277 #include "window.h"
278 #include "termchar.h"
279 #include "dispextern.h"
280 #include "buffer.h"
281 #include "character.h"
282 #include "charset.h"
283 #include "indent.h"
284 #include "commands.h"
285 #include "keymap.h"
286 #include "macros.h"
287 #include "disptab.h"
288 #include "termhooks.h"
289 #include "termopts.h"
290 #include "intervals.h"
291 #include "coding.h"
292 #include "process.h"
293 #include "region-cache.h"
294 #include "font.h"
295 #include "fontset.h"
296 #include "blockinput.h"
297
298 #ifdef HAVE_X_WINDOWS
299 #include "xterm.h"
300 #endif
301 #ifdef WINDOWSNT
302 #include "w32term.h"
303 #endif
304 #ifdef HAVE_NS
305 #include "nsterm.h"
306 #endif
307 #ifdef USE_GTK
308 #include "gtkutil.h"
309 #endif
310
311 #include "font.h"
312
313 #ifndef FRAME_X_OUTPUT
314 #define FRAME_X_OUTPUT(f) ((f)->output_data.x)
315 #endif
316
317 #define INFINITY 10000000
318
319 Lisp_Object Qoverriding_local_map, Qoverriding_terminal_local_map;
320 Lisp_Object Qwindow_scroll_functions;
321 Lisp_Object Qwindow_text_change_functions;
322 Lisp_Object Qredisplay_end_trigger_functions;
323 Lisp_Object Qinhibit_point_motion_hooks;
324 Lisp_Object QCeval, QCfile, QCdata, QCpropertize;
325 Lisp_Object Qfontified;
326 Lisp_Object Qgrow_only;
327 Lisp_Object Qinhibit_eval_during_redisplay;
328 Lisp_Object Qbuffer_position, Qposition, Qobject;
329 Lisp_Object Qright_to_left, Qleft_to_right;
330
331 /* Cursor shapes */
332 Lisp_Object Qbar, Qhbar, Qbox, Qhollow;
333
334 /* Pointer shapes */
335 Lisp_Object Qarrow, Qhand, Qtext;
336
337 /* Holds the list (error). */
338 Lisp_Object list_of_error;
339
340 Lisp_Object Qfontification_functions;
341
342 Lisp_Object Qwrap_prefix;
343 Lisp_Object Qline_prefix;
344
345 /* Non-nil means don't actually do any redisplay. */
346
347 Lisp_Object Qinhibit_redisplay;
348
349 /* Names of text properties relevant for redisplay. */
350
351 Lisp_Object Qdisplay;
352
353 Lisp_Object Qspace, QCalign_to, QCrelative_width, QCrelative_height;
354 Lisp_Object Qleft_margin, Qright_margin, Qspace_width, Qraise;
355 Lisp_Object Qslice;
356 Lisp_Object Qcenter;
357 Lisp_Object Qmargin, Qpointer;
358 Lisp_Object Qline_height;
359
360 #ifdef HAVE_WINDOW_SYSTEM
361
362 /* Test if overflow newline into fringe. Called with iterator IT
363 at or past right window margin, and with IT->current_x set. */
364
365 #define IT_OVERFLOW_NEWLINE_INTO_FRINGE(IT) \
366 (!NILP (Voverflow_newline_into_fringe) \
367 && FRAME_WINDOW_P ((IT)->f) \
368 && ((IT)->bidi_it.paragraph_dir == R2L \
369 ? (WINDOW_LEFT_FRINGE_WIDTH ((IT)->w) > 0) \
370 : (WINDOW_RIGHT_FRINGE_WIDTH ((IT)->w) > 0)) \
371 && (IT)->current_x == (IT)->last_visible_x \
372 && (IT)->line_wrap != WORD_WRAP)
373
374 #else /* !HAVE_WINDOW_SYSTEM */
375 #define IT_OVERFLOW_NEWLINE_INTO_FRINGE(it) 0
376 #endif /* HAVE_WINDOW_SYSTEM */
377
378 /* Test if the display element loaded in IT is a space or tab
379 character. This is used to determine word wrapping. */
380
381 #define IT_DISPLAYING_WHITESPACE(it) \
382 (it->what == IT_CHARACTER && (it->c == ' ' || it->c == '\t'))
383
384 /* Name of the face used to highlight trailing whitespace. */
385
386 Lisp_Object Qtrailing_whitespace;
387
388 /* Name and number of the face used to highlight escape glyphs. */
389
390 Lisp_Object Qescape_glyph;
391
392 /* Name and number of the face used to highlight non-breaking spaces. */
393
394 Lisp_Object Qnobreak_space;
395
396 /* The symbol `image' which is the car of the lists used to represent
397 images in Lisp. Also a tool bar style. */
398
399 Lisp_Object Qimage;
400
401 /* The image map types. */
402 Lisp_Object QCmap, QCpointer;
403 Lisp_Object Qrect, Qcircle, Qpoly;
404
405 /* Tool bar styles */
406 Lisp_Object Qboth, Qboth_horiz, Qtext_image_horiz;
407
408 /* Non-zero means print newline to stdout before next mini-buffer
409 message. */
410
411 int noninteractive_need_newline;
412
413 /* Non-zero means print newline to message log before next message. */
414
415 static int message_log_need_newline;
416
417 /* Three markers that message_dolog uses.
418 It could allocate them itself, but that causes trouble
419 in handling memory-full errors. */
420 static Lisp_Object message_dolog_marker1;
421 static Lisp_Object message_dolog_marker2;
422 static Lisp_Object message_dolog_marker3;
423 \f
424 /* The buffer position of the first character appearing entirely or
425 partially on the line of the selected window which contains the
426 cursor; <= 0 if not known. Set by set_cursor_from_row, used for
427 redisplay optimization in redisplay_internal. */
428
429 static struct text_pos this_line_start_pos;
430
431 /* Number of characters past the end of the line above, including the
432 terminating newline. */
433
434 static struct text_pos this_line_end_pos;
435
436 /* The vertical positions and the height of this line. */
437
438 static int this_line_vpos;
439 static int this_line_y;
440 static int this_line_pixel_height;
441
442 /* X position at which this display line starts. Usually zero;
443 negative if first character is partially visible. */
444
445 static int this_line_start_x;
446
447 /* The smallest character position seen by move_it_* functions as they
448 move across display lines. Used to set MATRIX_ROW_START_CHARPOS of
449 hscrolled lines, see display_line. */
450
451 static struct text_pos this_line_min_pos;
452
453 /* Buffer that this_line_.* variables are referring to. */
454
455 static struct buffer *this_line_buffer;
456
457
458 /* Values of those variables at last redisplay are stored as
459 properties on `overlay-arrow-position' symbol. However, if
460 Voverlay_arrow_position is a marker, last-arrow-position is its
461 numerical position. */
462
463 Lisp_Object Qlast_arrow_position, Qlast_arrow_string;
464
465 /* Alternative overlay-arrow-string and overlay-arrow-bitmap
466 properties on a symbol in overlay-arrow-variable-list. */
467
468 Lisp_Object Qoverlay_arrow_string, Qoverlay_arrow_bitmap;
469
470 Lisp_Object Qmenu_bar_update_hook;
471
472 /* Nonzero if an overlay arrow has been displayed in this window. */
473
474 static int overlay_arrow_seen;
475
476 /* Number of windows showing the buffer of the selected window (or
477 another buffer with the same base buffer). keyboard.c refers to
478 this. */
479
480 int buffer_shared;
481
482 /* Vector containing glyphs for an ellipsis `...'. */
483
484 static Lisp_Object default_invis_vector[3];
485
486 /* This is the window where the echo area message was displayed. It
487 is always a mini-buffer window, but it may not be the same window
488 currently active as a mini-buffer. */
489
490 Lisp_Object echo_area_window;
491
492 /* List of pairs (MESSAGE . MULTIBYTE). The function save_message
493 pushes the current message and the value of
494 message_enable_multibyte on the stack, the function restore_message
495 pops the stack and displays MESSAGE again. */
496
497 Lisp_Object Vmessage_stack;
498
499 /* Nonzero means multibyte characters were enabled when the echo area
500 message was specified. */
501
502 int message_enable_multibyte;
503
504 /* Nonzero if we should redraw the mode lines on the next redisplay. */
505
506 int update_mode_lines;
507
508 /* Nonzero if window sizes or contents have changed since last
509 redisplay that finished. */
510
511 int windows_or_buffers_changed;
512
513 /* Nonzero means a frame's cursor type has been changed. */
514
515 int cursor_type_changed;
516
517 /* Nonzero after display_mode_line if %l was used and it displayed a
518 line number. */
519
520 int line_number_displayed;
521
522 /* The name of the *Messages* buffer, a string. */
523
524 static Lisp_Object Vmessages_buffer_name;
525
526 /* Current, index 0, and last displayed echo area message. Either
527 buffers from echo_buffers, or nil to indicate no message. */
528
529 Lisp_Object echo_area_buffer[2];
530
531 /* The buffers referenced from echo_area_buffer. */
532
533 static Lisp_Object echo_buffer[2];
534
535 /* A vector saved used in with_area_buffer to reduce consing. */
536
537 static Lisp_Object Vwith_echo_area_save_vector;
538
539 /* Non-zero means display_echo_area should display the last echo area
540 message again. Set by redisplay_preserve_echo_area. */
541
542 static int display_last_displayed_message_p;
543
544 /* Nonzero if echo area is being used by print; zero if being used by
545 message. */
546
547 int message_buf_print;
548
549 /* The symbol `inhibit-menubar-update' and its DEFVAR_BOOL variable. */
550
551 Lisp_Object Qinhibit_menubar_update;
552 Lisp_Object Qmessage_truncate_lines;
553
554 /* Set to 1 in clear_message to make redisplay_internal aware
555 of an emptied echo area. */
556
557 static int message_cleared_p;
558
559 /* A scratch glyph row with contents used for generating truncation
560 glyphs. Also used in direct_output_for_insert. */
561
562 #define MAX_SCRATCH_GLYPHS 100
563 struct glyph_row scratch_glyph_row;
564 static struct glyph scratch_glyphs[MAX_SCRATCH_GLYPHS];
565
566 /* Ascent and height of the last line processed by move_it_to. */
567
568 static int last_max_ascent, last_height;
569
570 /* Non-zero if there's a help-echo in the echo area. */
571
572 int help_echo_showing_p;
573
574 /* If >= 0, computed, exact values of mode-line and header-line height
575 to use in the macros CURRENT_MODE_LINE_HEIGHT and
576 CURRENT_HEADER_LINE_HEIGHT. */
577
578 int current_mode_line_height, current_header_line_height;
579
580 /* The maximum distance to look ahead for text properties. Values
581 that are too small let us call compute_char_face and similar
582 functions too often which is expensive. Values that are too large
583 let us call compute_char_face and alike too often because we
584 might not be interested in text properties that far away. */
585
586 #define TEXT_PROP_DISTANCE_LIMIT 100
587
588 #if GLYPH_DEBUG
589
590 /* Non-zero means print traces of redisplay if compiled with
591 GLYPH_DEBUG != 0. */
592
593 int trace_redisplay_p;
594
595 #endif /* GLYPH_DEBUG */
596
597 #ifdef DEBUG_TRACE_MOVE
598 /* Non-zero means trace with TRACE_MOVE to stderr. */
599 int trace_move;
600
601 #define TRACE_MOVE(x) if (trace_move) fprintf x; else (void) 0
602 #else
603 #define TRACE_MOVE(x) (void) 0
604 #endif
605
606 Lisp_Object Qauto_hscroll_mode;
607
608 /* Buffer being redisplayed -- for redisplay_window_error. */
609
610 struct buffer *displayed_buffer;
611
612 /* Value returned from text property handlers (see below). */
613
614 enum prop_handled
615 {
616 HANDLED_NORMALLY,
617 HANDLED_RECOMPUTE_PROPS,
618 HANDLED_OVERLAY_STRING_CONSUMED,
619 HANDLED_RETURN
620 };
621
622 /* A description of text properties that redisplay is interested
623 in. */
624
625 struct props
626 {
627 /* The name of the property. */
628 Lisp_Object *name;
629
630 /* A unique index for the property. */
631 enum prop_idx idx;
632
633 /* A handler function called to set up iterator IT from the property
634 at IT's current position. Value is used to steer handle_stop. */
635 enum prop_handled (*handler) (struct it *it);
636 };
637
638 static enum prop_handled handle_face_prop (struct it *);
639 static enum prop_handled handle_invisible_prop (struct it *);
640 static enum prop_handled handle_display_prop (struct it *);
641 static enum prop_handled handle_composition_prop (struct it *);
642 static enum prop_handled handle_overlay_change (struct it *);
643 static enum prop_handled handle_fontified_prop (struct it *);
644
645 /* Properties handled by iterators. */
646
647 static struct props it_props[] =
648 {
649 {&Qfontified, FONTIFIED_PROP_IDX, handle_fontified_prop},
650 /* Handle `face' before `display' because some sub-properties of
651 `display' need to know the face. */
652 {&Qface, FACE_PROP_IDX, handle_face_prop},
653 {&Qdisplay, DISPLAY_PROP_IDX, handle_display_prop},
654 {&Qinvisible, INVISIBLE_PROP_IDX, handle_invisible_prop},
655 {&Qcomposition, COMPOSITION_PROP_IDX, handle_composition_prop},
656 {NULL, 0, NULL}
657 };
658
659 /* Value is the position described by X. If X is a marker, value is
660 the marker_position of X. Otherwise, value is X. */
661
662 #define COERCE_MARKER(X) (MARKERP ((X)) ? Fmarker_position (X) : (X))
663
664 /* Enumeration returned by some move_it_.* functions internally. */
665
666 enum move_it_result
667 {
668 /* Not used. Undefined value. */
669 MOVE_UNDEFINED,
670
671 /* Move ended at the requested buffer position or ZV. */
672 MOVE_POS_MATCH_OR_ZV,
673
674 /* Move ended at the requested X pixel position. */
675 MOVE_X_REACHED,
676
677 /* Move within a line ended at the end of a line that must be
678 continued. */
679 MOVE_LINE_CONTINUED,
680
681 /* Move within a line ended at the end of a line that would
682 be displayed truncated. */
683 MOVE_LINE_TRUNCATED,
684
685 /* Move within a line ended at a line end. */
686 MOVE_NEWLINE_OR_CR
687 };
688
689 /* This counter is used to clear the face cache every once in a while
690 in redisplay_internal. It is incremented for each redisplay.
691 Every CLEAR_FACE_CACHE_COUNT full redisplays, the face cache is
692 cleared. */
693
694 #define CLEAR_FACE_CACHE_COUNT 500
695 static int clear_face_cache_count;
696
697 /* Similarly for the image cache. */
698
699 #ifdef HAVE_WINDOW_SYSTEM
700 #define CLEAR_IMAGE_CACHE_COUNT 101
701 static int clear_image_cache_count;
702
703 /* Null glyph slice */
704 static struct glyph_slice null_glyph_slice = { 0, 0, 0, 0 };
705 #endif
706
707 /* Non-zero while redisplay_internal is in progress. */
708
709 int redisplaying_p;
710
711 Lisp_Object Qinhibit_free_realized_faces;
712
713 /* If a string, XTread_socket generates an event to display that string.
714 (The display is done in read_char.) */
715
716 Lisp_Object help_echo_string;
717 Lisp_Object help_echo_window;
718 Lisp_Object help_echo_object;
719 EMACS_INT help_echo_pos;
720
721 /* Temporary variable for XTread_socket. */
722
723 Lisp_Object previous_help_echo_string;
724
725 /* Platform-independent portion of hourglass implementation. */
726
727 /* Non-zero means an hourglass cursor is currently shown. */
728 int hourglass_shown_p;
729
730 /* If non-null, an asynchronous timer that, when it expires, displays
731 an hourglass cursor on all frames. */
732 struct atimer *hourglass_atimer;
733
734 /* Name of the face used to display glyphless characters. */
735 Lisp_Object Qglyphless_char;
736
737 /* Symbol for the purpose of Vglyphless_char_display. */
738 Lisp_Object Qglyphless_char_display;
739
740 /* Method symbols for Vglyphless_char_display. */
741 static Lisp_Object Qhex_code, Qempty_box, Qthin_space, Qzero_width;
742
743 /* Default pixel width of `thin-space' display method. */
744 #define THIN_SPACE_WIDTH 1
745
746 /* Default number of seconds to wait before displaying an hourglass
747 cursor. */
748 #define DEFAULT_HOURGLASS_DELAY 1
749
750 \f
751 /* Function prototypes. */
752
753 static void setup_for_ellipsis (struct it *, int);
754 static void mark_window_display_accurate_1 (struct window *, int);
755 static int single_display_spec_string_p (Lisp_Object, Lisp_Object);
756 static int display_prop_string_p (Lisp_Object, Lisp_Object);
757 static int cursor_row_p (struct window *, struct glyph_row *);
758 static int redisplay_mode_lines (Lisp_Object, int);
759 static char *decode_mode_spec_coding (Lisp_Object, char *, int);
760
761 static Lisp_Object get_it_property (struct it *it, Lisp_Object prop);
762
763 static void handle_line_prefix (struct it *);
764
765 static void pint2str (char *, int, EMACS_INT);
766 static void pint2hrstr (char *, int, int);
767 static struct text_pos run_window_scroll_functions (Lisp_Object,
768 struct text_pos);
769 static void reconsider_clip_changes (struct window *, struct buffer *);
770 static int text_outside_line_unchanged_p (struct window *,
771 EMACS_INT, EMACS_INT);
772 static void store_mode_line_noprop_char (char);
773 static int store_mode_line_noprop (const char *, int, int);
774 static void handle_stop (struct it *);
775 static void handle_stop_backwards (struct it *, EMACS_INT);
776 static int single_display_spec_intangible_p (Lisp_Object);
777 static void ensure_echo_area_buffers (void);
778 static Lisp_Object unwind_with_echo_area_buffer (Lisp_Object);
779 static Lisp_Object with_echo_area_buffer_unwind_data (struct window *);
780 static int with_echo_area_buffer (struct window *, int,
781 int (*) (EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT),
782 EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT);
783 static void clear_garbaged_frames (void);
784 static int current_message_1 (EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT);
785 static int truncate_message_1 (EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT);
786 static int set_message_1 (EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT);
787 static int display_echo_area (struct window *);
788 static int display_echo_area_1 (EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT);
789 static int resize_mini_window_1 (EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT);
790 static Lisp_Object unwind_redisplay (Lisp_Object);
791 static int string_char_and_length (const unsigned char *, int *);
792 static struct text_pos display_prop_end (struct it *, Lisp_Object,
793 struct text_pos);
794 static int compute_window_start_on_continuation_line (struct window *);
795 static Lisp_Object safe_eval_handler (Lisp_Object);
796 static void insert_left_trunc_glyphs (struct it *);
797 static struct glyph_row *get_overlay_arrow_glyph_row (struct window *,
798 Lisp_Object);
799 static void extend_face_to_end_of_line (struct it *);
800 static int append_space_for_newline (struct it *, int);
801 static int cursor_row_fully_visible_p (struct window *, int, int);
802 static int try_scrolling (Lisp_Object, int, EMACS_INT, EMACS_INT, int, int);
803 static int try_cursor_movement (Lisp_Object, struct text_pos, int *);
804 static int trailing_whitespace_p (EMACS_INT);
805 static int message_log_check_duplicate (EMACS_INT, EMACS_INT,
806 EMACS_INT, EMACS_INT);
807 static void push_it (struct it *);
808 static void pop_it (struct it *);
809 static void sync_frame_with_window_matrix_rows (struct window *);
810 static void select_frame_for_redisplay (Lisp_Object);
811 static void redisplay_internal (int);
812 static int echo_area_display (int);
813 static void redisplay_windows (Lisp_Object);
814 static void redisplay_window (Lisp_Object, int);
815 static Lisp_Object redisplay_window_error (Lisp_Object);
816 static Lisp_Object redisplay_window_0 (Lisp_Object);
817 static Lisp_Object redisplay_window_1 (Lisp_Object);
818 static int update_menu_bar (struct frame *, int, int);
819 static int try_window_reusing_current_matrix (struct window *);
820 static int try_window_id (struct window *);
821 static int display_line (struct it *);
822 static int display_mode_lines (struct window *);
823 static int display_mode_line (struct window *, enum face_id, Lisp_Object);
824 static int display_mode_element (struct it *, int, int, int, Lisp_Object, Lisp_Object, int);
825 static int store_mode_line_string (const char *, Lisp_Object, int, int, int, Lisp_Object);
826 static const char *decode_mode_spec (struct window *, int, int, int,
827 Lisp_Object *);
828 static void display_menu_bar (struct window *);
829 static int display_count_lines (EMACS_INT, EMACS_INT, EMACS_INT, int,
830 EMACS_INT *);
831 static int display_string (const char *, Lisp_Object, Lisp_Object,
832 EMACS_INT, EMACS_INT, struct it *, int, int, int, int);
833 static void compute_line_metrics (struct it *);
834 static void run_redisplay_end_trigger_hook (struct it *);
835 static int get_overlay_strings (struct it *, EMACS_INT);
836 static int get_overlay_strings_1 (struct it *, EMACS_INT, int);
837 static void next_overlay_string (struct it *);
838 static void reseat (struct it *, struct text_pos, int);
839 static void reseat_1 (struct it *, struct text_pos, int);
840 static void back_to_previous_visible_line_start (struct it *);
841 void reseat_at_previous_visible_line_start (struct it *);
842 static void reseat_at_next_visible_line_start (struct it *, int);
843 static int next_element_from_ellipsis (struct it *);
844 static int next_element_from_display_vector (struct it *);
845 static int next_element_from_string (struct it *);
846 static int next_element_from_c_string (struct it *);
847 static int next_element_from_buffer (struct it *);
848 static int next_element_from_composition (struct it *);
849 static int next_element_from_image (struct it *);
850 static int next_element_from_stretch (struct it *);
851 static void load_overlay_strings (struct it *, EMACS_INT);
852 static int init_from_display_pos (struct it *, struct window *,
853 struct display_pos *);
854 static void reseat_to_string (struct it *, const char *,
855 Lisp_Object, EMACS_INT, EMACS_INT, int, int);
856 static enum move_it_result
857 move_it_in_display_line_to (struct it *, EMACS_INT, int,
858 enum move_operation_enum);
859 void move_it_vertically_backward (struct it *, int);
860 static void init_to_row_start (struct it *, struct window *,
861 struct glyph_row *);
862 static int init_to_row_end (struct it *, struct window *,
863 struct glyph_row *);
864 static void back_to_previous_line_start (struct it *);
865 static int forward_to_next_line_start (struct it *, int *);
866 static struct text_pos string_pos_nchars_ahead (struct text_pos,
867 Lisp_Object, EMACS_INT);
868 static struct text_pos string_pos (EMACS_INT, Lisp_Object);
869 static struct text_pos c_string_pos (EMACS_INT, const char *, int);
870 static EMACS_INT number_of_chars (const char *, int);
871 static void compute_stop_pos (struct it *);
872 static void compute_string_pos (struct text_pos *, struct text_pos,
873 Lisp_Object);
874 static int face_before_or_after_it_pos (struct it *, int);
875 static EMACS_INT next_overlay_change (EMACS_INT);
876 static int handle_single_display_spec (struct it *, Lisp_Object,
877 Lisp_Object, Lisp_Object,
878 struct text_pos *, int);
879 static int underlying_face_id (struct it *);
880 static int in_ellipses_for_invisible_text_p (struct display_pos *,
881 struct window *);
882
883 #define face_before_it_pos(IT) face_before_or_after_it_pos ((IT), 1)
884 #define face_after_it_pos(IT) face_before_or_after_it_pos ((IT), 0)
885
886 #ifdef HAVE_WINDOW_SYSTEM
887
888 static void x_consider_frame_title (Lisp_Object);
889 static int tool_bar_lines_needed (struct frame *, int *);
890 static void update_tool_bar (struct frame *, int);
891 static void build_desired_tool_bar_string (struct frame *f);
892 static int redisplay_tool_bar (struct frame *);
893 static void display_tool_bar_line (struct it *, int);
894 static void notice_overwritten_cursor (struct window *,
895 enum glyph_row_area,
896 int, int, int, int);
897 static void append_stretch_glyph (struct it *, Lisp_Object,
898 int, int, int);
899
900
901 #endif /* HAVE_WINDOW_SYSTEM */
902
903 static int coords_in_mouse_face_p (struct window *, int, int);
904
905
906 \f
907 /***********************************************************************
908 Window display dimensions
909 ***********************************************************************/
910
911 /* Return the bottom boundary y-position for text lines in window W.
912 This is the first y position at which a line cannot start.
913 It is relative to the top of the window.
914
915 This is the height of W minus the height of a mode line, if any. */
916
917 INLINE int
918 window_text_bottom_y (struct window *w)
919 {
920 int height = WINDOW_TOTAL_HEIGHT (w);
921
922 if (WINDOW_WANTS_MODELINE_P (w))
923 height -= CURRENT_MODE_LINE_HEIGHT (w);
924 return height;
925 }
926
927 /* Return the pixel width of display area AREA of window W. AREA < 0
928 means return the total width of W, not including fringes to
929 the left and right of the window. */
930
931 INLINE int
932 window_box_width (struct window *w, int area)
933 {
934 int cols = XFASTINT (w->total_cols);
935 int pixels = 0;
936
937 if (!w->pseudo_window_p)
938 {
939 cols -= WINDOW_SCROLL_BAR_COLS (w);
940
941 if (area == TEXT_AREA)
942 {
943 if (INTEGERP (w->left_margin_cols))
944 cols -= XFASTINT (w->left_margin_cols);
945 if (INTEGERP (w->right_margin_cols))
946 cols -= XFASTINT (w->right_margin_cols);
947 pixels = -WINDOW_TOTAL_FRINGE_WIDTH (w);
948 }
949 else if (area == LEFT_MARGIN_AREA)
950 {
951 cols = (INTEGERP (w->left_margin_cols)
952 ? XFASTINT (w->left_margin_cols) : 0);
953 pixels = 0;
954 }
955 else if (area == RIGHT_MARGIN_AREA)
956 {
957 cols = (INTEGERP (w->right_margin_cols)
958 ? XFASTINT (w->right_margin_cols) : 0);
959 pixels = 0;
960 }
961 }
962
963 return cols * WINDOW_FRAME_COLUMN_WIDTH (w) + pixels;
964 }
965
966
967 /* Return the pixel height of the display area of window W, not
968 including mode lines of W, if any. */
969
970 INLINE int
971 window_box_height (struct window *w)
972 {
973 struct frame *f = XFRAME (w->frame);
974 int height = WINDOW_TOTAL_HEIGHT (w);
975
976 xassert (height >= 0);
977
978 /* Note: the code below that determines the mode-line/header-line
979 height is essentially the same as that contained in the macro
980 CURRENT_{MODE,HEADER}_LINE_HEIGHT, except that it checks whether
981 the appropriate glyph row has its `mode_line_p' flag set,
982 and if it doesn't, uses estimate_mode_line_height instead. */
983
984 if (WINDOW_WANTS_MODELINE_P (w))
985 {
986 struct glyph_row *ml_row
987 = (w->current_matrix && w->current_matrix->rows
988 ? MATRIX_MODE_LINE_ROW (w->current_matrix)
989 : 0);
990 if (ml_row && ml_row->mode_line_p)
991 height -= ml_row->height;
992 else
993 height -= estimate_mode_line_height (f, CURRENT_MODE_LINE_FACE_ID (w));
994 }
995
996 if (WINDOW_WANTS_HEADER_LINE_P (w))
997 {
998 struct glyph_row *hl_row
999 = (w->current_matrix && w->current_matrix->rows
1000 ? MATRIX_HEADER_LINE_ROW (w->current_matrix)
1001 : 0);
1002 if (hl_row && hl_row->mode_line_p)
1003 height -= hl_row->height;
1004 else
1005 height -= estimate_mode_line_height (f, HEADER_LINE_FACE_ID);
1006 }
1007
1008 /* With a very small font and a mode-line that's taller than
1009 default, we might end up with a negative height. */
1010 return max (0, height);
1011 }
1012
1013 /* Return the window-relative coordinate of the left edge of display
1014 area AREA of window W. AREA < 0 means return the left edge of the
1015 whole window, to the right of the left fringe of W. */
1016
1017 INLINE int
1018 window_box_left_offset (struct window *w, int area)
1019 {
1020 int x;
1021
1022 if (w->pseudo_window_p)
1023 return 0;
1024
1025 x = WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w);
1026
1027 if (area == TEXT_AREA)
1028 x += (WINDOW_LEFT_FRINGE_WIDTH (w)
1029 + window_box_width (w, LEFT_MARGIN_AREA));
1030 else if (area == RIGHT_MARGIN_AREA)
1031 x += (WINDOW_LEFT_FRINGE_WIDTH (w)
1032 + window_box_width (w, LEFT_MARGIN_AREA)
1033 + window_box_width (w, TEXT_AREA)
1034 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
1035 ? 0
1036 : WINDOW_RIGHT_FRINGE_WIDTH (w)));
1037 else if (area == LEFT_MARGIN_AREA
1038 && WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w))
1039 x += WINDOW_LEFT_FRINGE_WIDTH (w);
1040
1041 return x;
1042 }
1043
1044
1045 /* Return the window-relative coordinate of the right edge of display
1046 area AREA of window W. AREA < 0 means return the right edge of the
1047 whole window, to the left of the right fringe of W. */
1048
1049 INLINE int
1050 window_box_right_offset (struct window *w, int area)
1051 {
1052 return window_box_left_offset (w, area) + window_box_width (w, area);
1053 }
1054
1055 /* Return the frame-relative coordinate of the left edge of display
1056 area AREA of window W. AREA < 0 means return the left edge of the
1057 whole window, to the right of the left fringe of W. */
1058
1059 INLINE int
1060 window_box_left (struct window *w, int area)
1061 {
1062 struct frame *f = XFRAME (w->frame);
1063 int x;
1064
1065 if (w->pseudo_window_p)
1066 return FRAME_INTERNAL_BORDER_WIDTH (f);
1067
1068 x = (WINDOW_LEFT_EDGE_X (w)
1069 + window_box_left_offset (w, area));
1070
1071 return x;
1072 }
1073
1074
1075 /* Return the frame-relative coordinate of the right edge of display
1076 area AREA of window W. AREA < 0 means return the right edge of the
1077 whole window, to the left of the right fringe of W. */
1078
1079 INLINE int
1080 window_box_right (struct window *w, int area)
1081 {
1082 return window_box_left (w, area) + window_box_width (w, area);
1083 }
1084
1085 /* Get the bounding box of the display area AREA of window W, without
1086 mode lines, in frame-relative coordinates. AREA < 0 means the
1087 whole window, not including the left and right fringes of
1088 the window. Return in *BOX_X and *BOX_Y the frame-relative pixel
1089 coordinates of the upper-left corner of the box. Return in
1090 *BOX_WIDTH, and *BOX_HEIGHT the pixel width and height of the box. */
1091
1092 INLINE void
1093 window_box (struct window *w, int area, int *box_x, int *box_y,
1094 int *box_width, int *box_height)
1095 {
1096 if (box_width)
1097 *box_width = window_box_width (w, area);
1098 if (box_height)
1099 *box_height = window_box_height (w);
1100 if (box_x)
1101 *box_x = window_box_left (w, area);
1102 if (box_y)
1103 {
1104 *box_y = WINDOW_TOP_EDGE_Y (w);
1105 if (WINDOW_WANTS_HEADER_LINE_P (w))
1106 *box_y += CURRENT_HEADER_LINE_HEIGHT (w);
1107 }
1108 }
1109
1110
1111 /* Get the bounding box of the display area AREA of window W, without
1112 mode lines. AREA < 0 means the whole window, not including the
1113 left and right fringe of the window. Return in *TOP_LEFT_X
1114 and TOP_LEFT_Y the frame-relative pixel coordinates of the
1115 upper-left corner of the box. Return in *BOTTOM_RIGHT_X, and
1116 *BOTTOM_RIGHT_Y the coordinates of the bottom-right corner of the
1117 box. */
1118
1119 INLINE void
1120 window_box_edges (struct window *w, int area, int *top_left_x, int *top_left_y,
1121 int *bottom_right_x, int *bottom_right_y)
1122 {
1123 window_box (w, area, top_left_x, top_left_y, bottom_right_x,
1124 bottom_right_y);
1125 *bottom_right_x += *top_left_x;
1126 *bottom_right_y += *top_left_y;
1127 }
1128
1129
1130 \f
1131 /***********************************************************************
1132 Utilities
1133 ***********************************************************************/
1134
1135 /* Return the bottom y-position of the line the iterator IT is in.
1136 This can modify IT's settings. */
1137
1138 int
1139 line_bottom_y (struct it *it)
1140 {
1141 int line_height = it->max_ascent + it->max_descent;
1142 int line_top_y = it->current_y;
1143
1144 if (line_height == 0)
1145 {
1146 if (last_height)
1147 line_height = last_height;
1148 else if (IT_CHARPOS (*it) < ZV)
1149 {
1150 move_it_by_lines (it, 1, 1);
1151 line_height = (it->max_ascent || it->max_descent
1152 ? it->max_ascent + it->max_descent
1153 : last_height);
1154 }
1155 else
1156 {
1157 struct glyph_row *row = it->glyph_row;
1158
1159 /* Use the default character height. */
1160 it->glyph_row = NULL;
1161 it->what = IT_CHARACTER;
1162 it->c = ' ';
1163 it->len = 1;
1164 PRODUCE_GLYPHS (it);
1165 line_height = it->ascent + it->descent;
1166 it->glyph_row = row;
1167 }
1168 }
1169
1170 return line_top_y + line_height;
1171 }
1172
1173
1174 /* Return 1 if position CHARPOS is visible in window W.
1175 CHARPOS < 0 means return info about WINDOW_END position.
1176 If visible, set *X and *Y to pixel coordinates of top left corner.
1177 Set *RTOP and *RBOT to pixel height of an invisible area of glyph at POS.
1178 Set *ROWH and *VPOS to row's visible height and VPOS (row number). */
1179
1180 int
1181 pos_visible_p (struct window *w, EMACS_INT charpos, int *x, int *y,
1182 int *rtop, int *rbot, int *rowh, int *vpos)
1183 {
1184 struct it it;
1185 struct text_pos top;
1186 int visible_p = 0;
1187 struct buffer *old_buffer = NULL;
1188
1189 if (FRAME_INITIAL_P (XFRAME (WINDOW_FRAME (w))))
1190 return visible_p;
1191
1192 if (XBUFFER (w->buffer) != current_buffer)
1193 {
1194 old_buffer = current_buffer;
1195 set_buffer_internal_1 (XBUFFER (w->buffer));
1196 }
1197
1198 SET_TEXT_POS_FROM_MARKER (top, w->start);
1199
1200 /* Compute exact mode line heights. */
1201 if (WINDOW_WANTS_MODELINE_P (w))
1202 current_mode_line_height
1203 = display_mode_line (w, CURRENT_MODE_LINE_FACE_ID (w),
1204 BVAR (current_buffer, mode_line_format));
1205
1206 if (WINDOW_WANTS_HEADER_LINE_P (w))
1207 current_header_line_height
1208 = display_mode_line (w, HEADER_LINE_FACE_ID,
1209 BVAR (current_buffer, header_line_format));
1210
1211 start_display (&it, w, top);
1212 move_it_to (&it, charpos, -1, it.last_visible_y-1, -1,
1213 (charpos >= 0 ? MOVE_TO_POS : 0) | MOVE_TO_Y);
1214
1215 if (charpos >= 0 && IT_CHARPOS (it) >= charpos)
1216 {
1217 /* We have reached CHARPOS, or passed it. How the call to
1218 move_it_to can overshoot: (i) If CHARPOS is on invisible
1219 text, move_it_to stops at the end of the invisible text,
1220 after CHARPOS. (ii) If CHARPOS is in a display vector,
1221 move_it_to stops on its last glyph. */
1222 int top_x = it.current_x;
1223 int top_y = it.current_y;
1224 enum it_method it_method = it.method;
1225 /* Calling line_bottom_y may change it.method, it.position, etc. */
1226 int bottom_y = (last_height = 0, line_bottom_y (&it));
1227 int window_top_y = WINDOW_HEADER_LINE_HEIGHT (w);
1228
1229 if (top_y < window_top_y)
1230 visible_p = bottom_y > window_top_y;
1231 else if (top_y < it.last_visible_y)
1232 visible_p = 1;
1233 if (visible_p)
1234 {
1235 if (it_method == GET_FROM_DISPLAY_VECTOR)
1236 {
1237 /* We stopped on the last glyph of a display vector.
1238 Try and recompute. Hack alert! */
1239 if (charpos < 2 || top.charpos >= charpos)
1240 top_x = it.glyph_row->x;
1241 else
1242 {
1243 struct it it2;
1244 start_display (&it2, w, top);
1245 move_it_to (&it2, charpos - 1, -1, -1, -1, MOVE_TO_POS);
1246 get_next_display_element (&it2);
1247 PRODUCE_GLYPHS (&it2);
1248 if (ITERATOR_AT_END_OF_LINE_P (&it2)
1249 || it2.current_x > it2.last_visible_x)
1250 top_x = it.glyph_row->x;
1251 else
1252 {
1253 top_x = it2.current_x;
1254 top_y = it2.current_y;
1255 }
1256 }
1257 }
1258
1259 *x = top_x;
1260 *y = max (top_y + max (0, it.max_ascent - it.ascent), window_top_y);
1261 *rtop = max (0, window_top_y - top_y);
1262 *rbot = max (0, bottom_y - it.last_visible_y);
1263 *rowh = max (0, (min (bottom_y, it.last_visible_y)
1264 - max (top_y, window_top_y)));
1265 *vpos = it.vpos;
1266 }
1267 }
1268 else
1269 {
1270 struct it it2;
1271
1272 it2 = it;
1273 if (IT_CHARPOS (it) < ZV && FETCH_BYTE (IT_BYTEPOS (it)) != '\n')
1274 move_it_by_lines (&it, 1, 0);
1275 if (charpos < IT_CHARPOS (it)
1276 || (it.what == IT_EOB && charpos == IT_CHARPOS (it)))
1277 {
1278 visible_p = 1;
1279 move_it_to (&it2, charpos, -1, -1, -1, MOVE_TO_POS);
1280 *x = it2.current_x;
1281 *y = it2.current_y + it2.max_ascent - it2.ascent;
1282 *rtop = max (0, -it2.current_y);
1283 *rbot = max (0, ((it2.current_y + it2.max_ascent + it2.max_descent)
1284 - it.last_visible_y));
1285 *rowh = max (0, (min (it2.current_y + it2.max_ascent + it2.max_descent,
1286 it.last_visible_y)
1287 - max (it2.current_y,
1288 WINDOW_HEADER_LINE_HEIGHT (w))));
1289 *vpos = it2.vpos;
1290 }
1291 }
1292
1293 if (old_buffer)
1294 set_buffer_internal_1 (old_buffer);
1295
1296 current_header_line_height = current_mode_line_height = -1;
1297
1298 if (visible_p && XFASTINT (w->hscroll) > 0)
1299 *x -= XFASTINT (w->hscroll) * WINDOW_FRAME_COLUMN_WIDTH (w);
1300
1301 #if 0
1302 /* Debugging code. */
1303 if (visible_p)
1304 fprintf (stderr, "+pv pt=%d vs=%d --> x=%d y=%d rt=%d rb=%d rh=%d vp=%d\n",
1305 charpos, w->vscroll, *x, *y, *rtop, *rbot, *rowh, *vpos);
1306 else
1307 fprintf (stderr, "-pv pt=%d vs=%d\n", charpos, w->vscroll);
1308 #endif
1309
1310 return visible_p;
1311 }
1312
1313
1314 /* Return the next character from STR. Return in *LEN the length of
1315 the character. This is like STRING_CHAR_AND_LENGTH but never
1316 returns an invalid character. If we find one, we return a `?', but
1317 with the length of the invalid character. */
1318
1319 static INLINE int
1320 string_char_and_length (const unsigned char *str, int *len)
1321 {
1322 int c;
1323
1324 c = STRING_CHAR_AND_LENGTH (str, *len);
1325 if (!CHAR_VALID_P (c, 1))
1326 /* We may not change the length here because other places in Emacs
1327 don't use this function, i.e. they silently accept invalid
1328 characters. */
1329 c = '?';
1330
1331 return c;
1332 }
1333
1334
1335
1336 /* Given a position POS containing a valid character and byte position
1337 in STRING, return the position NCHARS ahead (NCHARS >= 0). */
1338
1339 static struct text_pos
1340 string_pos_nchars_ahead (struct text_pos pos, Lisp_Object string, EMACS_INT nchars)
1341 {
1342 xassert (STRINGP (string) && nchars >= 0);
1343
1344 if (STRING_MULTIBYTE (string))
1345 {
1346 const unsigned char *p = SDATA (string) + BYTEPOS (pos);
1347 int len;
1348
1349 while (nchars--)
1350 {
1351 string_char_and_length (p, &len);
1352 p += len;
1353 CHARPOS (pos) += 1;
1354 BYTEPOS (pos) += len;
1355 }
1356 }
1357 else
1358 SET_TEXT_POS (pos, CHARPOS (pos) + nchars, BYTEPOS (pos) + nchars);
1359
1360 return pos;
1361 }
1362
1363
1364 /* Value is the text position, i.e. character and byte position,
1365 for character position CHARPOS in STRING. */
1366
1367 static INLINE struct text_pos
1368 string_pos (EMACS_INT charpos, Lisp_Object string)
1369 {
1370 struct text_pos pos;
1371 xassert (STRINGP (string));
1372 xassert (charpos >= 0);
1373 SET_TEXT_POS (pos, charpos, string_char_to_byte (string, charpos));
1374 return pos;
1375 }
1376
1377
1378 /* Value is a text position, i.e. character and byte position, for
1379 character position CHARPOS in C string S. MULTIBYTE_P non-zero
1380 means recognize multibyte characters. */
1381
1382 static struct text_pos
1383 c_string_pos (EMACS_INT charpos, const char *s, int multibyte_p)
1384 {
1385 struct text_pos pos;
1386
1387 xassert (s != NULL);
1388 xassert (charpos >= 0);
1389
1390 if (multibyte_p)
1391 {
1392 int len;
1393
1394 SET_TEXT_POS (pos, 0, 0);
1395 while (charpos--)
1396 {
1397 string_char_and_length ((const unsigned char *) s, &len);
1398 s += len;
1399 CHARPOS (pos) += 1;
1400 BYTEPOS (pos) += len;
1401 }
1402 }
1403 else
1404 SET_TEXT_POS (pos, charpos, charpos);
1405
1406 return pos;
1407 }
1408
1409
1410 /* Value is the number of characters in C string S. MULTIBYTE_P
1411 non-zero means recognize multibyte characters. */
1412
1413 static EMACS_INT
1414 number_of_chars (const char *s, int multibyte_p)
1415 {
1416 EMACS_INT nchars;
1417
1418 if (multibyte_p)
1419 {
1420 EMACS_INT rest = strlen (s);
1421 int len;
1422 const unsigned char *p = (const unsigned char *) s;
1423
1424 for (nchars = 0; rest > 0; ++nchars)
1425 {
1426 string_char_and_length (p, &len);
1427 rest -= len, p += len;
1428 }
1429 }
1430 else
1431 nchars = strlen (s);
1432
1433 return nchars;
1434 }
1435
1436
1437 /* Compute byte position NEWPOS->bytepos corresponding to
1438 NEWPOS->charpos. POS is a known position in string STRING.
1439 NEWPOS->charpos must be >= POS.charpos. */
1440
1441 static void
1442 compute_string_pos (struct text_pos *newpos, struct text_pos pos, Lisp_Object string)
1443 {
1444 xassert (STRINGP (string));
1445 xassert (CHARPOS (*newpos) >= CHARPOS (pos));
1446
1447 if (STRING_MULTIBYTE (string))
1448 *newpos = string_pos_nchars_ahead (pos, string,
1449 CHARPOS (*newpos) - CHARPOS (pos));
1450 else
1451 BYTEPOS (*newpos) = CHARPOS (*newpos);
1452 }
1453
1454 /* EXPORT:
1455 Return an estimation of the pixel height of mode or header lines on
1456 frame F. FACE_ID specifies what line's height to estimate. */
1457
1458 int
1459 estimate_mode_line_height (struct frame *f, enum face_id face_id)
1460 {
1461 #ifdef HAVE_WINDOW_SYSTEM
1462 if (FRAME_WINDOW_P (f))
1463 {
1464 int height = FONT_HEIGHT (FRAME_FONT (f));
1465
1466 /* This function is called so early when Emacs starts that the face
1467 cache and mode line face are not yet initialized. */
1468 if (FRAME_FACE_CACHE (f))
1469 {
1470 struct face *face = FACE_FROM_ID (f, face_id);
1471 if (face)
1472 {
1473 if (face->font)
1474 height = FONT_HEIGHT (face->font);
1475 if (face->box_line_width > 0)
1476 height += 2 * face->box_line_width;
1477 }
1478 }
1479
1480 return height;
1481 }
1482 #endif
1483
1484 return 1;
1485 }
1486
1487 /* Given a pixel position (PIX_X, PIX_Y) on frame F, return glyph
1488 co-ordinates in (*X, *Y). Set *BOUNDS to the rectangle that the
1489 glyph at X, Y occupies, if BOUNDS != 0. If NOCLIP is non-zero, do
1490 not force the value into range. */
1491
1492 void
1493 pixel_to_glyph_coords (FRAME_PTR f, register int pix_x, register int pix_y,
1494 int *x, int *y, NativeRectangle *bounds, int noclip)
1495 {
1496
1497 #ifdef HAVE_WINDOW_SYSTEM
1498 if (FRAME_WINDOW_P (f))
1499 {
1500 /* Arrange for the division in FRAME_PIXEL_X_TO_COL etc. to round down
1501 even for negative values. */
1502 if (pix_x < 0)
1503 pix_x -= FRAME_COLUMN_WIDTH (f) - 1;
1504 if (pix_y < 0)
1505 pix_y -= FRAME_LINE_HEIGHT (f) - 1;
1506
1507 pix_x = FRAME_PIXEL_X_TO_COL (f, pix_x);
1508 pix_y = FRAME_PIXEL_Y_TO_LINE (f, pix_y);
1509
1510 if (bounds)
1511 STORE_NATIVE_RECT (*bounds,
1512 FRAME_COL_TO_PIXEL_X (f, pix_x),
1513 FRAME_LINE_TO_PIXEL_Y (f, pix_y),
1514 FRAME_COLUMN_WIDTH (f) - 1,
1515 FRAME_LINE_HEIGHT (f) - 1);
1516
1517 if (!noclip)
1518 {
1519 if (pix_x < 0)
1520 pix_x = 0;
1521 else if (pix_x > FRAME_TOTAL_COLS (f))
1522 pix_x = FRAME_TOTAL_COLS (f);
1523
1524 if (pix_y < 0)
1525 pix_y = 0;
1526 else if (pix_y > FRAME_LINES (f))
1527 pix_y = FRAME_LINES (f);
1528 }
1529 }
1530 #endif
1531
1532 *x = pix_x;
1533 *y = pix_y;
1534 }
1535
1536
1537 /* Given HPOS/VPOS in the current matrix of W, return corresponding
1538 frame-relative pixel positions in *FRAME_X and *FRAME_Y. If we
1539 can't tell the positions because W's display is not up to date,
1540 return 0. */
1541
1542 int
1543 glyph_to_pixel_coords (struct window *w, int hpos, int vpos,
1544 int *frame_x, int *frame_y)
1545 {
1546 #ifdef HAVE_WINDOW_SYSTEM
1547 if (FRAME_WINDOW_P (XFRAME (WINDOW_FRAME (w))))
1548 {
1549 int success_p;
1550
1551 xassert (hpos >= 0 && hpos < w->current_matrix->matrix_w);
1552 xassert (vpos >= 0 && vpos < w->current_matrix->matrix_h);
1553
1554 if (display_completed)
1555 {
1556 struct glyph_row *row = MATRIX_ROW (w->current_matrix, vpos);
1557 struct glyph *glyph = row->glyphs[TEXT_AREA];
1558 struct glyph *end = glyph + min (hpos, row->used[TEXT_AREA]);
1559
1560 hpos = row->x;
1561 vpos = row->y;
1562 while (glyph < end)
1563 {
1564 hpos += glyph->pixel_width;
1565 ++glyph;
1566 }
1567
1568 /* If first glyph is partially visible, its first visible position is still 0. */
1569 if (hpos < 0)
1570 hpos = 0;
1571
1572 success_p = 1;
1573 }
1574 else
1575 {
1576 hpos = vpos = 0;
1577 success_p = 0;
1578 }
1579
1580 *frame_x = WINDOW_TO_FRAME_PIXEL_X (w, hpos);
1581 *frame_y = WINDOW_TO_FRAME_PIXEL_Y (w, vpos);
1582 return success_p;
1583 }
1584 #endif
1585
1586 *frame_x = hpos;
1587 *frame_y = vpos;
1588 return 1;
1589 }
1590
1591
1592 /* Find the glyph under window-relative coordinates X/Y in window W.
1593 Consider only glyphs from buffer text, i.e. no glyphs from overlay
1594 strings. Return in *HPOS and *VPOS the row and column number of
1595 the glyph found. Return in *AREA the glyph area containing X.
1596 Value is a pointer to the glyph found or null if X/Y is not on
1597 text, or we can't tell because W's current matrix is not up to
1598 date. */
1599
1600 static
1601 struct glyph *
1602 x_y_to_hpos_vpos (struct window *w, int x, int y, int *hpos, int *vpos,
1603 int *dx, int *dy, int *area)
1604 {
1605 struct glyph *glyph, *end;
1606 struct glyph_row *row = NULL;
1607 int x0, i;
1608
1609 /* Find row containing Y. Give up if some row is not enabled. */
1610 for (i = 0; i < w->current_matrix->nrows; ++i)
1611 {
1612 row = MATRIX_ROW (w->current_matrix, i);
1613 if (!row->enabled_p)
1614 return NULL;
1615 if (y >= row->y && y < MATRIX_ROW_BOTTOM_Y (row))
1616 break;
1617 }
1618
1619 *vpos = i;
1620 *hpos = 0;
1621
1622 /* Give up if Y is not in the window. */
1623 if (i == w->current_matrix->nrows)
1624 return NULL;
1625
1626 /* Get the glyph area containing X. */
1627 if (w->pseudo_window_p)
1628 {
1629 *area = TEXT_AREA;
1630 x0 = 0;
1631 }
1632 else
1633 {
1634 if (x < window_box_left_offset (w, TEXT_AREA))
1635 {
1636 *area = LEFT_MARGIN_AREA;
1637 x0 = window_box_left_offset (w, LEFT_MARGIN_AREA);
1638 }
1639 else if (x < window_box_right_offset (w, TEXT_AREA))
1640 {
1641 *area = TEXT_AREA;
1642 x0 = window_box_left_offset (w, TEXT_AREA) + min (row->x, 0);
1643 }
1644 else
1645 {
1646 *area = RIGHT_MARGIN_AREA;
1647 x0 = window_box_left_offset (w, RIGHT_MARGIN_AREA);
1648 }
1649 }
1650
1651 /* Find glyph containing X. */
1652 glyph = row->glyphs[*area];
1653 end = glyph + row->used[*area];
1654 x -= x0;
1655 while (glyph < end && x >= glyph->pixel_width)
1656 {
1657 x -= glyph->pixel_width;
1658 ++glyph;
1659 }
1660
1661 if (glyph == end)
1662 return NULL;
1663
1664 if (dx)
1665 {
1666 *dx = x;
1667 *dy = y - (row->y + row->ascent - glyph->ascent);
1668 }
1669
1670 *hpos = glyph - row->glyphs[*area];
1671 return glyph;
1672 }
1673
1674 /* EXPORT:
1675 Convert frame-relative x/y to coordinates relative to window W.
1676 Takes pseudo-windows into account. */
1677
1678 void
1679 frame_to_window_pixel_xy (struct window *w, int *x, int *y)
1680 {
1681 if (w->pseudo_window_p)
1682 {
1683 /* A pseudo-window is always full-width, and starts at the
1684 left edge of the frame, plus a frame border. */
1685 struct frame *f = XFRAME (w->frame);
1686 *x -= FRAME_INTERNAL_BORDER_WIDTH (f);
1687 *y = FRAME_TO_WINDOW_PIXEL_Y (w, *y);
1688 }
1689 else
1690 {
1691 *x -= WINDOW_LEFT_EDGE_X (w);
1692 *y = FRAME_TO_WINDOW_PIXEL_Y (w, *y);
1693 }
1694 }
1695
1696 #ifdef HAVE_WINDOW_SYSTEM
1697
1698 /* EXPORT:
1699 Return in RECTS[] at most N clipping rectangles for glyph string S.
1700 Return the number of stored rectangles. */
1701
1702 int
1703 get_glyph_string_clip_rects (struct glyph_string *s, NativeRectangle *rects, int n)
1704 {
1705 XRectangle r;
1706
1707 if (n <= 0)
1708 return 0;
1709
1710 if (s->row->full_width_p)
1711 {
1712 /* Draw full-width. X coordinates are relative to S->w->left_col. */
1713 r.x = WINDOW_LEFT_EDGE_X (s->w);
1714 r.width = WINDOW_TOTAL_WIDTH (s->w);
1715
1716 /* Unless displaying a mode or menu bar line, which are always
1717 fully visible, clip to the visible part of the row. */
1718 if (s->w->pseudo_window_p)
1719 r.height = s->row->visible_height;
1720 else
1721 r.height = s->height;
1722 }
1723 else
1724 {
1725 /* This is a text line that may be partially visible. */
1726 r.x = window_box_left (s->w, s->area);
1727 r.width = window_box_width (s->w, s->area);
1728 r.height = s->row->visible_height;
1729 }
1730
1731 if (s->clip_head)
1732 if (r.x < s->clip_head->x)
1733 {
1734 if (r.width >= s->clip_head->x - r.x)
1735 r.width -= s->clip_head->x - r.x;
1736 else
1737 r.width = 0;
1738 r.x = s->clip_head->x;
1739 }
1740 if (s->clip_tail)
1741 if (r.x + r.width > s->clip_tail->x + s->clip_tail->background_width)
1742 {
1743 if (s->clip_tail->x + s->clip_tail->background_width >= r.x)
1744 r.width = s->clip_tail->x + s->clip_tail->background_width - r.x;
1745 else
1746 r.width = 0;
1747 }
1748
1749 /* If S draws overlapping rows, it's sufficient to use the top and
1750 bottom of the window for clipping because this glyph string
1751 intentionally draws over other lines. */
1752 if (s->for_overlaps)
1753 {
1754 r.y = WINDOW_HEADER_LINE_HEIGHT (s->w);
1755 r.height = window_text_bottom_y (s->w) - r.y;
1756
1757 /* Alas, the above simple strategy does not work for the
1758 environments with anti-aliased text: if the same text is
1759 drawn onto the same place multiple times, it gets thicker.
1760 If the overlap we are processing is for the erased cursor, we
1761 take the intersection with the rectagle of the cursor. */
1762 if (s->for_overlaps & OVERLAPS_ERASED_CURSOR)
1763 {
1764 XRectangle rc, r_save = r;
1765
1766 rc.x = WINDOW_TEXT_TO_FRAME_PIXEL_X (s->w, s->w->phys_cursor.x);
1767 rc.y = s->w->phys_cursor.y;
1768 rc.width = s->w->phys_cursor_width;
1769 rc.height = s->w->phys_cursor_height;
1770
1771 x_intersect_rectangles (&r_save, &rc, &r);
1772 }
1773 }
1774 else
1775 {
1776 /* Don't use S->y for clipping because it doesn't take partially
1777 visible lines into account. For example, it can be negative for
1778 partially visible lines at the top of a window. */
1779 if (!s->row->full_width_p
1780 && MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P (s->w, s->row))
1781 r.y = WINDOW_HEADER_LINE_HEIGHT (s->w);
1782 else
1783 r.y = max (0, s->row->y);
1784 }
1785
1786 r.y = WINDOW_TO_FRAME_PIXEL_Y (s->w, r.y);
1787
1788 /* If drawing the cursor, don't let glyph draw outside its
1789 advertised boundaries. Cleartype does this under some circumstances. */
1790 if (s->hl == DRAW_CURSOR)
1791 {
1792 struct glyph *glyph = s->first_glyph;
1793 int height, max_y;
1794
1795 if (s->x > r.x)
1796 {
1797 r.width -= s->x - r.x;
1798 r.x = s->x;
1799 }
1800 r.width = min (r.width, glyph->pixel_width);
1801
1802 /* If r.y is below window bottom, ensure that we still see a cursor. */
1803 height = min (glyph->ascent + glyph->descent,
1804 min (FRAME_LINE_HEIGHT (s->f), s->row->visible_height));
1805 max_y = window_text_bottom_y (s->w) - height;
1806 max_y = WINDOW_TO_FRAME_PIXEL_Y (s->w, max_y);
1807 if (s->ybase - glyph->ascent > max_y)
1808 {
1809 r.y = max_y;
1810 r.height = height;
1811 }
1812 else
1813 {
1814 /* Don't draw cursor glyph taller than our actual glyph. */
1815 height = max (FRAME_LINE_HEIGHT (s->f), glyph->ascent + glyph->descent);
1816 if (height < r.height)
1817 {
1818 max_y = r.y + r.height;
1819 r.y = min (max_y, max (r.y, s->ybase + glyph->descent - height));
1820 r.height = min (max_y - r.y, height);
1821 }
1822 }
1823 }
1824
1825 if (s->row->clip)
1826 {
1827 XRectangle r_save = r;
1828
1829 if (! x_intersect_rectangles (&r_save, s->row->clip, &r))
1830 r.width = 0;
1831 }
1832
1833 if ((s->for_overlaps & OVERLAPS_BOTH) == 0
1834 || ((s->for_overlaps & OVERLAPS_BOTH) == OVERLAPS_BOTH && n == 1))
1835 {
1836 #ifdef CONVERT_FROM_XRECT
1837 CONVERT_FROM_XRECT (r, *rects);
1838 #else
1839 *rects = r;
1840 #endif
1841 return 1;
1842 }
1843 else
1844 {
1845 /* If we are processing overlapping and allowed to return
1846 multiple clipping rectangles, we exclude the row of the glyph
1847 string from the clipping rectangle. This is to avoid drawing
1848 the same text on the environment with anti-aliasing. */
1849 #ifdef CONVERT_FROM_XRECT
1850 XRectangle rs[2];
1851 #else
1852 XRectangle *rs = rects;
1853 #endif
1854 int i = 0, row_y = WINDOW_TO_FRAME_PIXEL_Y (s->w, s->row->y);
1855
1856 if (s->for_overlaps & OVERLAPS_PRED)
1857 {
1858 rs[i] = r;
1859 if (r.y + r.height > row_y)
1860 {
1861 if (r.y < row_y)
1862 rs[i].height = row_y - r.y;
1863 else
1864 rs[i].height = 0;
1865 }
1866 i++;
1867 }
1868 if (s->for_overlaps & OVERLAPS_SUCC)
1869 {
1870 rs[i] = r;
1871 if (r.y < row_y + s->row->visible_height)
1872 {
1873 if (r.y + r.height > row_y + s->row->visible_height)
1874 {
1875 rs[i].y = row_y + s->row->visible_height;
1876 rs[i].height = r.y + r.height - rs[i].y;
1877 }
1878 else
1879 rs[i].height = 0;
1880 }
1881 i++;
1882 }
1883
1884 n = i;
1885 #ifdef CONVERT_FROM_XRECT
1886 for (i = 0; i < n; i++)
1887 CONVERT_FROM_XRECT (rs[i], rects[i]);
1888 #endif
1889 return n;
1890 }
1891 }
1892
1893 /* EXPORT:
1894 Return in *NR the clipping rectangle for glyph string S. */
1895
1896 void
1897 get_glyph_string_clip_rect (struct glyph_string *s, NativeRectangle *nr)
1898 {
1899 get_glyph_string_clip_rects (s, nr, 1);
1900 }
1901
1902
1903 /* EXPORT:
1904 Return the position and height of the phys cursor in window W.
1905 Set w->phys_cursor_width to width of phys cursor.
1906 */
1907
1908 void
1909 get_phys_cursor_geometry (struct window *w, struct glyph_row *row,
1910 struct glyph *glyph, int *xp, int *yp, int *heightp)
1911 {
1912 struct frame *f = XFRAME (WINDOW_FRAME (w));
1913 int x, y, wd, h, h0, y0;
1914
1915 /* Compute the width of the rectangle to draw. If on a stretch
1916 glyph, and `x-stretch-block-cursor' is nil, don't draw a
1917 rectangle as wide as the glyph, but use a canonical character
1918 width instead. */
1919 wd = glyph->pixel_width - 1;
1920 #if defined(HAVE_NTGUI) || defined(HAVE_NS)
1921 wd++; /* Why? */
1922 #endif
1923
1924 x = w->phys_cursor.x;
1925 if (x < 0)
1926 {
1927 wd += x;
1928 x = 0;
1929 }
1930
1931 if (glyph->type == STRETCH_GLYPH
1932 && !x_stretch_cursor_p)
1933 wd = min (FRAME_COLUMN_WIDTH (f), wd);
1934 w->phys_cursor_width = wd;
1935
1936 y = w->phys_cursor.y + row->ascent - glyph->ascent;
1937
1938 /* If y is below window bottom, ensure that we still see a cursor. */
1939 h0 = min (FRAME_LINE_HEIGHT (f), row->visible_height);
1940
1941 h = max (h0, glyph->ascent + glyph->descent);
1942 h0 = min (h0, glyph->ascent + glyph->descent);
1943
1944 y0 = WINDOW_HEADER_LINE_HEIGHT (w);
1945 if (y < y0)
1946 {
1947 h = max (h - (y0 - y) + 1, h0);
1948 y = y0 - 1;
1949 }
1950 else
1951 {
1952 y0 = window_text_bottom_y (w) - h0;
1953 if (y > y0)
1954 {
1955 h += y - y0;
1956 y = y0;
1957 }
1958 }
1959
1960 *xp = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, x);
1961 *yp = WINDOW_TO_FRAME_PIXEL_Y (w, y);
1962 *heightp = h;
1963 }
1964
1965 /*
1966 * Remember which glyph the mouse is over.
1967 */
1968
1969 void
1970 remember_mouse_glyph (struct frame *f, int gx, int gy, NativeRectangle *rect)
1971 {
1972 Lisp_Object window;
1973 struct window *w;
1974 struct glyph_row *r, *gr, *end_row;
1975 enum window_part part;
1976 enum glyph_row_area area;
1977 int x, y, width, height;
1978
1979 /* Try to determine frame pixel position and size of the glyph under
1980 frame pixel coordinates X/Y on frame F. */
1981
1982 if (!f->glyphs_initialized_p
1983 || (window = window_from_coordinates (f, gx, gy, &part, 0),
1984 NILP (window)))
1985 {
1986 width = FRAME_SMALLEST_CHAR_WIDTH (f);
1987 height = FRAME_SMALLEST_FONT_HEIGHT (f);
1988 goto virtual_glyph;
1989 }
1990
1991 w = XWINDOW (window);
1992 width = WINDOW_FRAME_COLUMN_WIDTH (w);
1993 height = WINDOW_FRAME_LINE_HEIGHT (w);
1994
1995 x = window_relative_x_coord (w, part, gx);
1996 y = gy - WINDOW_TOP_EDGE_Y (w);
1997
1998 r = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
1999 end_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
2000
2001 if (w->pseudo_window_p)
2002 {
2003 area = TEXT_AREA;
2004 part = ON_MODE_LINE; /* Don't adjust margin. */
2005 goto text_glyph;
2006 }
2007
2008 switch (part)
2009 {
2010 case ON_LEFT_MARGIN:
2011 area = LEFT_MARGIN_AREA;
2012 goto text_glyph;
2013
2014 case ON_RIGHT_MARGIN:
2015 area = RIGHT_MARGIN_AREA;
2016 goto text_glyph;
2017
2018 case ON_HEADER_LINE:
2019 case ON_MODE_LINE:
2020 gr = (part == ON_HEADER_LINE
2021 ? MATRIX_HEADER_LINE_ROW (w->current_matrix)
2022 : MATRIX_MODE_LINE_ROW (w->current_matrix));
2023 gy = gr->y;
2024 area = TEXT_AREA;
2025 goto text_glyph_row_found;
2026
2027 case ON_TEXT:
2028 area = TEXT_AREA;
2029
2030 text_glyph:
2031 gr = 0; gy = 0;
2032 for (; r <= end_row && r->enabled_p; ++r)
2033 if (r->y + r->height > y)
2034 {
2035 gr = r; gy = r->y;
2036 break;
2037 }
2038
2039 text_glyph_row_found:
2040 if (gr && gy <= y)
2041 {
2042 struct glyph *g = gr->glyphs[area];
2043 struct glyph *end = g + gr->used[area];
2044
2045 height = gr->height;
2046 for (gx = gr->x; g < end; gx += g->pixel_width, ++g)
2047 if (gx + g->pixel_width > x)
2048 break;
2049
2050 if (g < end)
2051 {
2052 if (g->type == IMAGE_GLYPH)
2053 {
2054 /* Don't remember when mouse is over image, as
2055 image may have hot-spots. */
2056 STORE_NATIVE_RECT (*rect, 0, 0, 0, 0);
2057 return;
2058 }
2059 width = g->pixel_width;
2060 }
2061 else
2062 {
2063 /* Use nominal char spacing at end of line. */
2064 x -= gx;
2065 gx += (x / width) * width;
2066 }
2067
2068 if (part != ON_MODE_LINE && part != ON_HEADER_LINE)
2069 gx += window_box_left_offset (w, area);
2070 }
2071 else
2072 {
2073 /* Use nominal line height at end of window. */
2074 gx = (x / width) * width;
2075 y -= gy;
2076 gy += (y / height) * height;
2077 }
2078 break;
2079
2080 case ON_LEFT_FRINGE:
2081 gx = (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
2082 ? WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w)
2083 : window_box_right_offset (w, LEFT_MARGIN_AREA));
2084 width = WINDOW_LEFT_FRINGE_WIDTH (w);
2085 goto row_glyph;
2086
2087 case ON_RIGHT_FRINGE:
2088 gx = (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
2089 ? window_box_right_offset (w, RIGHT_MARGIN_AREA)
2090 : window_box_right_offset (w, TEXT_AREA));
2091 width = WINDOW_RIGHT_FRINGE_WIDTH (w);
2092 goto row_glyph;
2093
2094 case ON_SCROLL_BAR:
2095 gx = (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w)
2096 ? 0
2097 : (window_box_right_offset (w, RIGHT_MARGIN_AREA)
2098 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
2099 ? WINDOW_RIGHT_FRINGE_WIDTH (w)
2100 : 0)));
2101 width = WINDOW_SCROLL_BAR_AREA_WIDTH (w);
2102
2103 row_glyph:
2104 gr = 0, gy = 0;
2105 for (; r <= end_row && r->enabled_p; ++r)
2106 if (r->y + r->height > y)
2107 {
2108 gr = r; gy = r->y;
2109 break;
2110 }
2111
2112 if (gr && gy <= y)
2113 height = gr->height;
2114 else
2115 {
2116 /* Use nominal line height at end of window. */
2117 y -= gy;
2118 gy += (y / height) * height;
2119 }
2120 break;
2121
2122 default:
2123 ;
2124 virtual_glyph:
2125 /* If there is no glyph under the mouse, then we divide the screen
2126 into a grid of the smallest glyph in the frame, and use that
2127 as our "glyph". */
2128
2129 /* Arrange for the division in FRAME_PIXEL_X_TO_COL etc. to
2130 round down even for negative values. */
2131 if (gx < 0)
2132 gx -= width - 1;
2133 if (gy < 0)
2134 gy -= height - 1;
2135
2136 gx = (gx / width) * width;
2137 gy = (gy / height) * height;
2138
2139 goto store_rect;
2140 }
2141
2142 gx += WINDOW_LEFT_EDGE_X (w);
2143 gy += WINDOW_TOP_EDGE_Y (w);
2144
2145 store_rect:
2146 STORE_NATIVE_RECT (*rect, gx, gy, width, height);
2147
2148 /* Visible feedback for debugging. */
2149 #if 0
2150 #if HAVE_X_WINDOWS
2151 XDrawRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2152 f->output_data.x->normal_gc,
2153 gx, gy, width, height);
2154 #endif
2155 #endif
2156 }
2157
2158
2159 #endif /* HAVE_WINDOW_SYSTEM */
2160
2161 \f
2162 /***********************************************************************
2163 Lisp form evaluation
2164 ***********************************************************************/
2165
2166 /* Error handler for safe_eval and safe_call. */
2167
2168 static Lisp_Object
2169 safe_eval_handler (Lisp_Object arg)
2170 {
2171 add_to_log ("Error during redisplay: %S", arg, Qnil);
2172 return Qnil;
2173 }
2174
2175
2176 /* Evaluate SEXPR and return the result, or nil if something went
2177 wrong. Prevent redisplay during the evaluation. */
2178
2179 /* Call function ARGS[0] with arguments ARGS[1] to ARGS[NARGS - 1].
2180 Return the result, or nil if something went wrong. Prevent
2181 redisplay during the evaluation. */
2182
2183 Lisp_Object
2184 safe_call (int nargs, Lisp_Object *args)
2185 {
2186 Lisp_Object val;
2187
2188 if (inhibit_eval_during_redisplay)
2189 val = Qnil;
2190 else
2191 {
2192 int count = SPECPDL_INDEX ();
2193 struct gcpro gcpro1;
2194
2195 GCPRO1 (args[0]);
2196 gcpro1.nvars = nargs;
2197 specbind (Qinhibit_redisplay, Qt);
2198 /* Use Qt to ensure debugger does not run,
2199 so there is no possibility of wanting to redisplay. */
2200 val = internal_condition_case_n (Ffuncall, nargs, args, Qt,
2201 safe_eval_handler);
2202 UNGCPRO;
2203 val = unbind_to (count, val);
2204 }
2205
2206 return val;
2207 }
2208
2209
2210 /* Call function FN with one argument ARG.
2211 Return the result, or nil if something went wrong. */
2212
2213 Lisp_Object
2214 safe_call1 (Lisp_Object fn, Lisp_Object arg)
2215 {
2216 Lisp_Object args[2];
2217 args[0] = fn;
2218 args[1] = arg;
2219 return safe_call (2, args);
2220 }
2221
2222 static Lisp_Object Qeval;
2223
2224 Lisp_Object
2225 safe_eval (Lisp_Object sexpr)
2226 {
2227 return safe_call1 (Qeval, sexpr);
2228 }
2229
2230 /* Call function FN with one argument ARG.
2231 Return the result, or nil if something went wrong. */
2232
2233 Lisp_Object
2234 safe_call2 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2)
2235 {
2236 Lisp_Object args[3];
2237 args[0] = fn;
2238 args[1] = arg1;
2239 args[2] = arg2;
2240 return safe_call (3, args);
2241 }
2242
2243
2244 \f
2245 /***********************************************************************
2246 Debugging
2247 ***********************************************************************/
2248
2249 #if 0
2250
2251 /* Define CHECK_IT to perform sanity checks on iterators.
2252 This is for debugging. It is too slow to do unconditionally. */
2253
2254 static void
2255 check_it (it)
2256 struct it *it;
2257 {
2258 if (it->method == GET_FROM_STRING)
2259 {
2260 xassert (STRINGP (it->string));
2261 xassert (IT_STRING_CHARPOS (*it) >= 0);
2262 }
2263 else
2264 {
2265 xassert (IT_STRING_CHARPOS (*it) < 0);
2266 if (it->method == GET_FROM_BUFFER)
2267 {
2268 /* Check that character and byte positions agree. */
2269 xassert (IT_CHARPOS (*it) == BYTE_TO_CHAR (IT_BYTEPOS (*it)));
2270 }
2271 }
2272
2273 if (it->dpvec)
2274 xassert (it->current.dpvec_index >= 0);
2275 else
2276 xassert (it->current.dpvec_index < 0);
2277 }
2278
2279 #define CHECK_IT(IT) check_it ((IT))
2280
2281 #else /* not 0 */
2282
2283 #define CHECK_IT(IT) (void) 0
2284
2285 #endif /* not 0 */
2286
2287
2288 #if GLYPH_DEBUG
2289
2290 /* Check that the window end of window W is what we expect it
2291 to be---the last row in the current matrix displaying text. */
2292
2293 static void
2294 check_window_end (w)
2295 struct window *w;
2296 {
2297 if (!MINI_WINDOW_P (w)
2298 && !NILP (w->window_end_valid))
2299 {
2300 struct glyph_row *row;
2301 xassert ((row = MATRIX_ROW (w->current_matrix,
2302 XFASTINT (w->window_end_vpos)),
2303 !row->enabled_p
2304 || MATRIX_ROW_DISPLAYS_TEXT_P (row)
2305 || MATRIX_ROW_VPOS (row, w->current_matrix) == 0));
2306 }
2307 }
2308
2309 #define CHECK_WINDOW_END(W) check_window_end ((W))
2310
2311 #else /* not GLYPH_DEBUG */
2312
2313 #define CHECK_WINDOW_END(W) (void) 0
2314
2315 #endif /* not GLYPH_DEBUG */
2316
2317
2318 \f
2319 /***********************************************************************
2320 Iterator initialization
2321 ***********************************************************************/
2322
2323 /* Initialize IT for displaying current_buffer in window W, starting
2324 at character position CHARPOS. CHARPOS < 0 means that no buffer
2325 position is specified which is useful when the iterator is assigned
2326 a position later. BYTEPOS is the byte position corresponding to
2327 CHARPOS. BYTEPOS < 0 means compute it from CHARPOS.
2328
2329 If ROW is not null, calls to produce_glyphs with IT as parameter
2330 will produce glyphs in that row.
2331
2332 BASE_FACE_ID is the id of a base face to use. It must be one of
2333 DEFAULT_FACE_ID for normal text, MODE_LINE_FACE_ID,
2334 MODE_LINE_INACTIVE_FACE_ID, or HEADER_LINE_FACE_ID for displaying
2335 mode lines, or TOOL_BAR_FACE_ID for displaying the tool-bar.
2336
2337 If ROW is null and BASE_FACE_ID is equal to MODE_LINE_FACE_ID,
2338 MODE_LINE_INACTIVE_FACE_ID, or HEADER_LINE_FACE_ID, the iterator
2339 will be initialized to use the corresponding mode line glyph row of
2340 the desired matrix of W. */
2341
2342 void
2343 init_iterator (struct it *it, struct window *w,
2344 EMACS_INT charpos, EMACS_INT bytepos,
2345 struct glyph_row *row, enum face_id base_face_id)
2346 {
2347 int highlight_region_p;
2348 enum face_id remapped_base_face_id = base_face_id;
2349
2350 /* Some precondition checks. */
2351 xassert (w != NULL && it != NULL);
2352 xassert (charpos < 0 || (charpos >= BUF_BEG (current_buffer)
2353 && charpos <= ZV));
2354
2355 /* If face attributes have been changed since the last redisplay,
2356 free realized faces now because they depend on face definitions
2357 that might have changed. Don't free faces while there might be
2358 desired matrices pending which reference these faces. */
2359 if (face_change_count && !inhibit_free_realized_faces)
2360 {
2361 face_change_count = 0;
2362 free_all_realized_faces (Qnil);
2363 }
2364
2365 /* Perhaps remap BASE_FACE_ID to a user-specified alternative. */
2366 if (! NILP (Vface_remapping_alist))
2367 remapped_base_face_id = lookup_basic_face (XFRAME (w->frame), base_face_id);
2368
2369 /* Use one of the mode line rows of W's desired matrix if
2370 appropriate. */
2371 if (row == NULL)
2372 {
2373 if (base_face_id == MODE_LINE_FACE_ID
2374 || base_face_id == MODE_LINE_INACTIVE_FACE_ID)
2375 row = MATRIX_MODE_LINE_ROW (w->desired_matrix);
2376 else if (base_face_id == HEADER_LINE_FACE_ID)
2377 row = MATRIX_HEADER_LINE_ROW (w->desired_matrix);
2378 }
2379
2380 /* Clear IT. */
2381 memset (it, 0, sizeof *it);
2382 it->current.overlay_string_index = -1;
2383 it->current.dpvec_index = -1;
2384 it->base_face_id = remapped_base_face_id;
2385 it->string = Qnil;
2386 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = -1;
2387
2388 /* The window in which we iterate over current_buffer: */
2389 XSETWINDOW (it->window, w);
2390 it->w = w;
2391 it->f = XFRAME (w->frame);
2392
2393 it->cmp_it.id = -1;
2394
2395 /* Extra space between lines (on window systems only). */
2396 if (base_face_id == DEFAULT_FACE_ID
2397 && FRAME_WINDOW_P (it->f))
2398 {
2399 if (NATNUMP (BVAR (current_buffer, extra_line_spacing)))
2400 it->extra_line_spacing = XFASTINT (BVAR (current_buffer, extra_line_spacing));
2401 else if (FLOATP (BVAR (current_buffer, extra_line_spacing)))
2402 it->extra_line_spacing = (XFLOAT_DATA (BVAR (current_buffer, extra_line_spacing))
2403 * FRAME_LINE_HEIGHT (it->f));
2404 else if (it->f->extra_line_spacing > 0)
2405 it->extra_line_spacing = it->f->extra_line_spacing;
2406 it->max_extra_line_spacing = 0;
2407 }
2408
2409 /* If realized faces have been removed, e.g. because of face
2410 attribute changes of named faces, recompute them. When running
2411 in batch mode, the face cache of the initial frame is null. If
2412 we happen to get called, make a dummy face cache. */
2413 if (FRAME_FACE_CACHE (it->f) == NULL)
2414 init_frame_faces (it->f);
2415 if (FRAME_FACE_CACHE (it->f)->used == 0)
2416 recompute_basic_faces (it->f);
2417
2418 /* Current value of the `slice', `space-width', and 'height' properties. */
2419 it->slice.x = it->slice.y = it->slice.width = it->slice.height = Qnil;
2420 it->space_width = Qnil;
2421 it->font_height = Qnil;
2422 it->override_ascent = -1;
2423
2424 /* Are control characters displayed as `^C'? */
2425 it->ctl_arrow_p = !NILP (BVAR (current_buffer, ctl_arrow));
2426
2427 /* -1 means everything between a CR and the following line end
2428 is invisible. >0 means lines indented more than this value are
2429 invisible. */
2430 it->selective = (INTEGERP (BVAR (current_buffer, selective_display))
2431 ? XFASTINT (BVAR (current_buffer, selective_display))
2432 : (!NILP (BVAR (current_buffer, selective_display))
2433 ? -1 : 0));
2434 it->selective_display_ellipsis_p
2435 = !NILP (BVAR (current_buffer, selective_display_ellipses));
2436
2437 /* Display table to use. */
2438 it->dp = window_display_table (w);
2439
2440 /* Are multibyte characters enabled in current_buffer? */
2441 it->multibyte_p = !NILP (BVAR (current_buffer, enable_multibyte_characters));
2442
2443 /* Do we need to reorder bidirectional text? Not if this is a
2444 unibyte buffer: by definition, none of the single-byte characters
2445 are strong R2L, so no reordering is needed. And bidi.c doesn't
2446 support unibyte buffers anyway. */
2447 it->bidi_p
2448 = !NILP (BVAR (current_buffer, bidi_display_reordering)) && it->multibyte_p;
2449
2450 /* Non-zero if we should highlight the region. */
2451 highlight_region_p
2452 = (!NILP (Vtransient_mark_mode)
2453 && !NILP (BVAR (current_buffer, mark_active))
2454 && XMARKER (BVAR (current_buffer, mark))->buffer != 0);
2455
2456 /* Set IT->region_beg_charpos and IT->region_end_charpos to the
2457 start and end of a visible region in window IT->w. Set both to
2458 -1 to indicate no region. */
2459 if (highlight_region_p
2460 /* Maybe highlight only in selected window. */
2461 && (/* Either show region everywhere. */
2462 highlight_nonselected_windows
2463 /* Or show region in the selected window. */
2464 || w == XWINDOW (selected_window)
2465 /* Or show the region if we are in the mini-buffer and W is
2466 the window the mini-buffer refers to. */
2467 || (MINI_WINDOW_P (XWINDOW (selected_window))
2468 && WINDOWP (minibuf_selected_window)
2469 && w == XWINDOW (minibuf_selected_window))))
2470 {
2471 EMACS_INT markpos = marker_position (BVAR (current_buffer, mark));
2472 it->region_beg_charpos = min (PT, markpos);
2473 it->region_end_charpos = max (PT, markpos);
2474 }
2475 else
2476 it->region_beg_charpos = it->region_end_charpos = -1;
2477
2478 /* Get the position at which the redisplay_end_trigger hook should
2479 be run, if it is to be run at all. */
2480 if (MARKERP (w->redisplay_end_trigger)
2481 && XMARKER (w->redisplay_end_trigger)->buffer != 0)
2482 it->redisplay_end_trigger_charpos
2483 = marker_position (w->redisplay_end_trigger);
2484 else if (INTEGERP (w->redisplay_end_trigger))
2485 it->redisplay_end_trigger_charpos = XINT (w->redisplay_end_trigger);
2486
2487 /* Correct bogus values of tab_width. */
2488 it->tab_width = XINT (BVAR (current_buffer, tab_width));
2489 if (it->tab_width <= 0 || it->tab_width > 1000)
2490 it->tab_width = 8;
2491
2492 /* Are lines in the display truncated? */
2493 if (base_face_id != DEFAULT_FACE_ID
2494 || XINT (it->w->hscroll)
2495 || (! WINDOW_FULL_WIDTH_P (it->w)
2496 && ((!NILP (Vtruncate_partial_width_windows)
2497 && !INTEGERP (Vtruncate_partial_width_windows))
2498 || (INTEGERP (Vtruncate_partial_width_windows)
2499 && (WINDOW_TOTAL_COLS (it->w)
2500 < XINT (Vtruncate_partial_width_windows))))))
2501 it->line_wrap = TRUNCATE;
2502 else if (NILP (BVAR (current_buffer, truncate_lines)))
2503 it->line_wrap = NILP (BVAR (current_buffer, word_wrap))
2504 ? WINDOW_WRAP : WORD_WRAP;
2505 else
2506 it->line_wrap = TRUNCATE;
2507
2508 /* Get dimensions of truncation and continuation glyphs. These are
2509 displayed as fringe bitmaps under X, so we don't need them for such
2510 frames. */
2511 if (!FRAME_WINDOW_P (it->f))
2512 {
2513 if (it->line_wrap == TRUNCATE)
2514 {
2515 /* We will need the truncation glyph. */
2516 xassert (it->glyph_row == NULL);
2517 produce_special_glyphs (it, IT_TRUNCATION);
2518 it->truncation_pixel_width = it->pixel_width;
2519 }
2520 else
2521 {
2522 /* We will need the continuation glyph. */
2523 xassert (it->glyph_row == NULL);
2524 produce_special_glyphs (it, IT_CONTINUATION);
2525 it->continuation_pixel_width = it->pixel_width;
2526 }
2527
2528 /* Reset these values to zero because the produce_special_glyphs
2529 above has changed them. */
2530 it->pixel_width = it->ascent = it->descent = 0;
2531 it->phys_ascent = it->phys_descent = 0;
2532 }
2533
2534 /* Set this after getting the dimensions of truncation and
2535 continuation glyphs, so that we don't produce glyphs when calling
2536 produce_special_glyphs, above. */
2537 it->glyph_row = row;
2538 it->area = TEXT_AREA;
2539
2540 /* Forget any previous info about this row being reversed. */
2541 if (it->glyph_row)
2542 it->glyph_row->reversed_p = 0;
2543
2544 /* Get the dimensions of the display area. The display area
2545 consists of the visible window area plus a horizontally scrolled
2546 part to the left of the window. All x-values are relative to the
2547 start of this total display area. */
2548 if (base_face_id != DEFAULT_FACE_ID)
2549 {
2550 /* Mode lines, menu bar in terminal frames. */
2551 it->first_visible_x = 0;
2552 it->last_visible_x = WINDOW_TOTAL_WIDTH (w);
2553 }
2554 else
2555 {
2556 it->first_visible_x
2557 = XFASTINT (it->w->hscroll) * FRAME_COLUMN_WIDTH (it->f);
2558 it->last_visible_x = (it->first_visible_x
2559 + window_box_width (w, TEXT_AREA));
2560
2561 /* If we truncate lines, leave room for the truncator glyph(s) at
2562 the right margin. Otherwise, leave room for the continuation
2563 glyph(s). Truncation and continuation glyphs are not inserted
2564 for window-based redisplay. */
2565 if (!FRAME_WINDOW_P (it->f))
2566 {
2567 if (it->line_wrap == TRUNCATE)
2568 it->last_visible_x -= it->truncation_pixel_width;
2569 else
2570 it->last_visible_x -= it->continuation_pixel_width;
2571 }
2572
2573 it->header_line_p = WINDOW_WANTS_HEADER_LINE_P (w);
2574 it->current_y = WINDOW_HEADER_LINE_HEIGHT (w) + w->vscroll;
2575 }
2576
2577 /* Leave room for a border glyph. */
2578 if (!FRAME_WINDOW_P (it->f)
2579 && !WINDOW_RIGHTMOST_P (it->w))
2580 it->last_visible_x -= 1;
2581
2582 it->last_visible_y = window_text_bottom_y (w);
2583
2584 /* For mode lines and alike, arrange for the first glyph having a
2585 left box line if the face specifies a box. */
2586 if (base_face_id != DEFAULT_FACE_ID)
2587 {
2588 struct face *face;
2589
2590 it->face_id = remapped_base_face_id;
2591
2592 /* If we have a boxed mode line, make the first character appear
2593 with a left box line. */
2594 face = FACE_FROM_ID (it->f, remapped_base_face_id);
2595 if (face->box != FACE_NO_BOX)
2596 it->start_of_box_run_p = 1;
2597 }
2598
2599 /* If we are to reorder bidirectional text, init the bidi
2600 iterator. */
2601 if (it->bidi_p)
2602 {
2603 /* Note the paragraph direction that this buffer wants to
2604 use. */
2605 if (EQ (BVAR (current_buffer, bidi_paragraph_direction), Qleft_to_right))
2606 it->paragraph_embedding = L2R;
2607 else if (EQ (BVAR (current_buffer, bidi_paragraph_direction), Qright_to_left))
2608 it->paragraph_embedding = R2L;
2609 else
2610 it->paragraph_embedding = NEUTRAL_DIR;
2611 bidi_init_it (charpos, bytepos, &it->bidi_it);
2612 }
2613
2614 /* If a buffer position was specified, set the iterator there,
2615 getting overlays and face properties from that position. */
2616 if (charpos >= BUF_BEG (current_buffer))
2617 {
2618 it->end_charpos = ZV;
2619 it->face_id = -1;
2620 IT_CHARPOS (*it) = charpos;
2621
2622 /* Compute byte position if not specified. */
2623 if (bytepos < charpos)
2624 IT_BYTEPOS (*it) = CHAR_TO_BYTE (charpos);
2625 else
2626 IT_BYTEPOS (*it) = bytepos;
2627
2628 it->start = it->current;
2629
2630 /* Compute faces etc. */
2631 reseat (it, it->current.pos, 1);
2632 }
2633
2634 CHECK_IT (it);
2635 }
2636
2637
2638 /* Initialize IT for the display of window W with window start POS. */
2639
2640 void
2641 start_display (struct it *it, struct window *w, struct text_pos pos)
2642 {
2643 struct glyph_row *row;
2644 int first_vpos = WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0;
2645
2646 row = w->desired_matrix->rows + first_vpos;
2647 init_iterator (it, w, CHARPOS (pos), BYTEPOS (pos), row, DEFAULT_FACE_ID);
2648 it->first_vpos = first_vpos;
2649
2650 /* Don't reseat to previous visible line start if current start
2651 position is in a string or image. */
2652 if (it->method == GET_FROM_BUFFER && it->line_wrap != TRUNCATE)
2653 {
2654 int start_at_line_beg_p;
2655 int first_y = it->current_y;
2656
2657 /* If window start is not at a line start, skip forward to POS to
2658 get the correct continuation lines width. */
2659 start_at_line_beg_p = (CHARPOS (pos) == BEGV
2660 || FETCH_BYTE (BYTEPOS (pos) - 1) == '\n');
2661 if (!start_at_line_beg_p)
2662 {
2663 int new_x;
2664
2665 reseat_at_previous_visible_line_start (it);
2666 move_it_to (it, CHARPOS (pos), -1, -1, -1, MOVE_TO_POS);
2667
2668 new_x = it->current_x + it->pixel_width;
2669
2670 /* If lines are continued, this line may end in the middle
2671 of a multi-glyph character (e.g. a control character
2672 displayed as \003, or in the middle of an overlay
2673 string). In this case move_it_to above will not have
2674 taken us to the start of the continuation line but to the
2675 end of the continued line. */
2676 if (it->current_x > 0
2677 && it->line_wrap != TRUNCATE /* Lines are continued. */
2678 && (/* And glyph doesn't fit on the line. */
2679 new_x > it->last_visible_x
2680 /* Or it fits exactly and we're on a window
2681 system frame. */
2682 || (new_x == it->last_visible_x
2683 && FRAME_WINDOW_P (it->f))))
2684 {
2685 if (it->current.dpvec_index >= 0
2686 || it->current.overlay_string_index >= 0)
2687 {
2688 set_iterator_to_next (it, 1);
2689 move_it_in_display_line_to (it, -1, -1, 0);
2690 }
2691
2692 it->continuation_lines_width += it->current_x;
2693 }
2694
2695 /* We're starting a new display line, not affected by the
2696 height of the continued line, so clear the appropriate
2697 fields in the iterator structure. */
2698 it->max_ascent = it->max_descent = 0;
2699 it->max_phys_ascent = it->max_phys_descent = 0;
2700
2701 it->current_y = first_y;
2702 it->vpos = 0;
2703 it->current_x = it->hpos = 0;
2704 }
2705 }
2706 }
2707
2708
2709 /* Return 1 if POS is a position in ellipses displayed for invisible
2710 text. W is the window we display, for text property lookup. */
2711
2712 static int
2713 in_ellipses_for_invisible_text_p (struct display_pos *pos, struct window *w)
2714 {
2715 Lisp_Object prop, window;
2716 int ellipses_p = 0;
2717 EMACS_INT charpos = CHARPOS (pos->pos);
2718
2719 /* If POS specifies a position in a display vector, this might
2720 be for an ellipsis displayed for invisible text. We won't
2721 get the iterator set up for delivering that ellipsis unless
2722 we make sure that it gets aware of the invisible text. */
2723 if (pos->dpvec_index >= 0
2724 && pos->overlay_string_index < 0
2725 && CHARPOS (pos->string_pos) < 0
2726 && charpos > BEGV
2727 && (XSETWINDOW (window, w),
2728 prop = Fget_char_property (make_number (charpos),
2729 Qinvisible, window),
2730 !TEXT_PROP_MEANS_INVISIBLE (prop)))
2731 {
2732 prop = Fget_char_property (make_number (charpos - 1), Qinvisible,
2733 window);
2734 ellipses_p = 2 == TEXT_PROP_MEANS_INVISIBLE (prop);
2735 }
2736
2737 return ellipses_p;
2738 }
2739
2740
2741 /* Initialize IT for stepping through current_buffer in window W,
2742 starting at position POS that includes overlay string and display
2743 vector/ control character translation position information. Value
2744 is zero if there are overlay strings with newlines at POS. */
2745
2746 static int
2747 init_from_display_pos (struct it *it, struct window *w, struct display_pos *pos)
2748 {
2749 EMACS_INT charpos = CHARPOS (pos->pos), bytepos = BYTEPOS (pos->pos);
2750 int i, overlay_strings_with_newlines = 0;
2751
2752 /* If POS specifies a position in a display vector, this might
2753 be for an ellipsis displayed for invisible text. We won't
2754 get the iterator set up for delivering that ellipsis unless
2755 we make sure that it gets aware of the invisible text. */
2756 if (in_ellipses_for_invisible_text_p (pos, w))
2757 {
2758 --charpos;
2759 bytepos = 0;
2760 }
2761
2762 /* Keep in mind: the call to reseat in init_iterator skips invisible
2763 text, so we might end up at a position different from POS. This
2764 is only a problem when POS is a row start after a newline and an
2765 overlay starts there with an after-string, and the overlay has an
2766 invisible property. Since we don't skip invisible text in
2767 display_line and elsewhere immediately after consuming the
2768 newline before the row start, such a POS will not be in a string,
2769 but the call to init_iterator below will move us to the
2770 after-string. */
2771 init_iterator (it, w, charpos, bytepos, NULL, DEFAULT_FACE_ID);
2772
2773 /* This only scans the current chunk -- it should scan all chunks.
2774 However, OVERLAY_STRING_CHUNK_SIZE has been increased from 3 in 21.1
2775 to 16 in 22.1 to make this a lesser problem. */
2776 for (i = 0; i < it->n_overlay_strings && i < OVERLAY_STRING_CHUNK_SIZE; ++i)
2777 {
2778 const char *s = SSDATA (it->overlay_strings[i]);
2779 const char *e = s + SBYTES (it->overlay_strings[i]);
2780
2781 while (s < e && *s != '\n')
2782 ++s;
2783
2784 if (s < e)
2785 {
2786 overlay_strings_with_newlines = 1;
2787 break;
2788 }
2789 }
2790
2791 /* If position is within an overlay string, set up IT to the right
2792 overlay string. */
2793 if (pos->overlay_string_index >= 0)
2794 {
2795 int relative_index;
2796
2797 /* If the first overlay string happens to have a `display'
2798 property for an image, the iterator will be set up for that
2799 image, and we have to undo that setup first before we can
2800 correct the overlay string index. */
2801 if (it->method == GET_FROM_IMAGE)
2802 pop_it (it);
2803
2804 /* We already have the first chunk of overlay strings in
2805 IT->overlay_strings. Load more until the one for
2806 pos->overlay_string_index is in IT->overlay_strings. */
2807 if (pos->overlay_string_index >= OVERLAY_STRING_CHUNK_SIZE)
2808 {
2809 int n = pos->overlay_string_index / OVERLAY_STRING_CHUNK_SIZE;
2810 it->current.overlay_string_index = 0;
2811 while (n--)
2812 {
2813 load_overlay_strings (it, 0);
2814 it->current.overlay_string_index += OVERLAY_STRING_CHUNK_SIZE;
2815 }
2816 }
2817
2818 it->current.overlay_string_index = pos->overlay_string_index;
2819 relative_index = (it->current.overlay_string_index
2820 % OVERLAY_STRING_CHUNK_SIZE);
2821 it->string = it->overlay_strings[relative_index];
2822 xassert (STRINGP (it->string));
2823 it->current.string_pos = pos->string_pos;
2824 it->method = GET_FROM_STRING;
2825 }
2826
2827 if (CHARPOS (pos->string_pos) >= 0)
2828 {
2829 /* Recorded position is not in an overlay string, but in another
2830 string. This can only be a string from a `display' property.
2831 IT should already be filled with that string. */
2832 it->current.string_pos = pos->string_pos;
2833 xassert (STRINGP (it->string));
2834 }
2835
2836 /* Restore position in display vector translations, control
2837 character translations or ellipses. */
2838 if (pos->dpvec_index >= 0)
2839 {
2840 if (it->dpvec == NULL)
2841 get_next_display_element (it);
2842 xassert (it->dpvec && it->current.dpvec_index == 0);
2843 it->current.dpvec_index = pos->dpvec_index;
2844 }
2845
2846 CHECK_IT (it);
2847 return !overlay_strings_with_newlines;
2848 }
2849
2850
2851 /* Initialize IT for stepping through current_buffer in window W
2852 starting at ROW->start. */
2853
2854 static void
2855 init_to_row_start (struct it *it, struct window *w, struct glyph_row *row)
2856 {
2857 init_from_display_pos (it, w, &row->start);
2858 it->start = row->start;
2859 it->continuation_lines_width = row->continuation_lines_width;
2860 CHECK_IT (it);
2861 }
2862
2863
2864 /* Initialize IT for stepping through current_buffer in window W
2865 starting in the line following ROW, i.e. starting at ROW->end.
2866 Value is zero if there are overlay strings with newlines at ROW's
2867 end position. */
2868
2869 static int
2870 init_to_row_end (struct it *it, struct window *w, struct glyph_row *row)
2871 {
2872 int success = 0;
2873
2874 if (init_from_display_pos (it, w, &row->end))
2875 {
2876 if (row->continued_p)
2877 it->continuation_lines_width
2878 = row->continuation_lines_width + row->pixel_width;
2879 CHECK_IT (it);
2880 success = 1;
2881 }
2882
2883 return success;
2884 }
2885
2886
2887
2888 \f
2889 /***********************************************************************
2890 Text properties
2891 ***********************************************************************/
2892
2893 /* Called when IT reaches IT->stop_charpos. Handle text property and
2894 overlay changes. Set IT->stop_charpos to the next position where
2895 to stop. */
2896
2897 static void
2898 handle_stop (struct it *it)
2899 {
2900 enum prop_handled handled;
2901 int handle_overlay_change_p;
2902 struct props *p;
2903
2904 it->dpvec = NULL;
2905 it->current.dpvec_index = -1;
2906 handle_overlay_change_p = !it->ignore_overlay_strings_at_pos_p;
2907 it->ignore_overlay_strings_at_pos_p = 0;
2908 it->ellipsis_p = 0;
2909
2910 /* Use face of preceding text for ellipsis (if invisible) */
2911 if (it->selective_display_ellipsis_p)
2912 it->saved_face_id = it->face_id;
2913
2914 do
2915 {
2916 handled = HANDLED_NORMALLY;
2917
2918 /* Call text property handlers. */
2919 for (p = it_props; p->handler; ++p)
2920 {
2921 handled = p->handler (it);
2922
2923 if (handled == HANDLED_RECOMPUTE_PROPS)
2924 break;
2925 else if (handled == HANDLED_RETURN)
2926 {
2927 /* We still want to show before and after strings from
2928 overlays even if the actual buffer text is replaced. */
2929 if (!handle_overlay_change_p
2930 || it->sp > 1
2931 || !get_overlay_strings_1 (it, 0, 0))
2932 {
2933 if (it->ellipsis_p)
2934 setup_for_ellipsis (it, 0);
2935 /* When handling a display spec, we might load an
2936 empty string. In that case, discard it here. We
2937 used to discard it in handle_single_display_spec,
2938 but that causes get_overlay_strings_1, above, to
2939 ignore overlay strings that we must check. */
2940 if (STRINGP (it->string) && !SCHARS (it->string))
2941 pop_it (it);
2942 return;
2943 }
2944 else if (STRINGP (it->string) && !SCHARS (it->string))
2945 pop_it (it);
2946 else
2947 {
2948 it->ignore_overlay_strings_at_pos_p = 1;
2949 it->string_from_display_prop_p = 0;
2950 handle_overlay_change_p = 0;
2951 }
2952 handled = HANDLED_RECOMPUTE_PROPS;
2953 break;
2954 }
2955 else if (handled == HANDLED_OVERLAY_STRING_CONSUMED)
2956 handle_overlay_change_p = 0;
2957 }
2958
2959 if (handled != HANDLED_RECOMPUTE_PROPS)
2960 {
2961 /* Don't check for overlay strings below when set to deliver
2962 characters from a display vector. */
2963 if (it->method == GET_FROM_DISPLAY_VECTOR)
2964 handle_overlay_change_p = 0;
2965
2966 /* Handle overlay changes.
2967 This sets HANDLED to HANDLED_RECOMPUTE_PROPS
2968 if it finds overlays. */
2969 if (handle_overlay_change_p)
2970 handled = handle_overlay_change (it);
2971 }
2972
2973 if (it->ellipsis_p)
2974 {
2975 setup_for_ellipsis (it, 0);
2976 break;
2977 }
2978 }
2979 while (handled == HANDLED_RECOMPUTE_PROPS);
2980
2981 /* Determine where to stop next. */
2982 if (handled == HANDLED_NORMALLY)
2983 compute_stop_pos (it);
2984 }
2985
2986
2987 /* Compute IT->stop_charpos from text property and overlay change
2988 information for IT's current position. */
2989
2990 static void
2991 compute_stop_pos (struct it *it)
2992 {
2993 register INTERVAL iv, next_iv;
2994 Lisp_Object object, limit, position;
2995 EMACS_INT charpos, bytepos;
2996
2997 /* If nowhere else, stop at the end. */
2998 it->stop_charpos = it->end_charpos;
2999
3000 if (STRINGP (it->string))
3001 {
3002 /* Strings are usually short, so don't limit the search for
3003 properties. */
3004 object = it->string;
3005 limit = Qnil;
3006 charpos = IT_STRING_CHARPOS (*it);
3007 bytepos = IT_STRING_BYTEPOS (*it);
3008 }
3009 else
3010 {
3011 EMACS_INT pos;
3012
3013 /* If next overlay change is in front of the current stop pos
3014 (which is IT->end_charpos), stop there. Note: value of
3015 next_overlay_change is point-max if no overlay change
3016 follows. */
3017 charpos = IT_CHARPOS (*it);
3018 bytepos = IT_BYTEPOS (*it);
3019 pos = next_overlay_change (charpos);
3020 if (pos < it->stop_charpos)
3021 it->stop_charpos = pos;
3022
3023 /* If showing the region, we have to stop at the region
3024 start or end because the face might change there. */
3025 if (it->region_beg_charpos > 0)
3026 {
3027 if (IT_CHARPOS (*it) < it->region_beg_charpos)
3028 it->stop_charpos = min (it->stop_charpos, it->region_beg_charpos);
3029 else if (IT_CHARPOS (*it) < it->region_end_charpos)
3030 it->stop_charpos = min (it->stop_charpos, it->region_end_charpos);
3031 }
3032
3033 /* Set up variables for computing the stop position from text
3034 property changes. */
3035 XSETBUFFER (object, current_buffer);
3036 limit = make_number (IT_CHARPOS (*it) + TEXT_PROP_DISTANCE_LIMIT);
3037 }
3038
3039 /* Get the interval containing IT's position. Value is a null
3040 interval if there isn't such an interval. */
3041 position = make_number (charpos);
3042 iv = validate_interval_range (object, &position, &position, 0);
3043 if (!NULL_INTERVAL_P (iv))
3044 {
3045 Lisp_Object values_here[LAST_PROP_IDX];
3046 struct props *p;
3047
3048 /* Get properties here. */
3049 for (p = it_props; p->handler; ++p)
3050 values_here[p->idx] = textget (iv->plist, *p->name);
3051
3052 /* Look for an interval following iv that has different
3053 properties. */
3054 for (next_iv = next_interval (iv);
3055 (!NULL_INTERVAL_P (next_iv)
3056 && (NILP (limit)
3057 || XFASTINT (limit) > next_iv->position));
3058 next_iv = next_interval (next_iv))
3059 {
3060 for (p = it_props; p->handler; ++p)
3061 {
3062 Lisp_Object new_value;
3063
3064 new_value = textget (next_iv->plist, *p->name);
3065 if (!EQ (values_here[p->idx], new_value))
3066 break;
3067 }
3068
3069 if (p->handler)
3070 break;
3071 }
3072
3073 if (!NULL_INTERVAL_P (next_iv))
3074 {
3075 if (INTEGERP (limit)
3076 && next_iv->position >= XFASTINT (limit))
3077 /* No text property change up to limit. */
3078 it->stop_charpos = min (XFASTINT (limit), it->stop_charpos);
3079 else
3080 /* Text properties change in next_iv. */
3081 it->stop_charpos = min (it->stop_charpos, next_iv->position);
3082 }
3083 }
3084
3085 if (it->cmp_it.id < 0)
3086 {
3087 EMACS_INT stoppos = it->end_charpos;
3088
3089 if (it->bidi_p && it->bidi_it.scan_dir < 0)
3090 stoppos = -1;
3091 composition_compute_stop_pos (&it->cmp_it, charpos, bytepos,
3092 stoppos, it->string);
3093 }
3094
3095 xassert (STRINGP (it->string)
3096 || (it->stop_charpos >= BEGV
3097 && it->stop_charpos >= IT_CHARPOS (*it)));
3098 }
3099
3100
3101 /* Return the position of the next overlay change after POS in
3102 current_buffer. Value is point-max if no overlay change
3103 follows. This is like `next-overlay-change' but doesn't use
3104 xmalloc. */
3105
3106 static EMACS_INT
3107 next_overlay_change (EMACS_INT pos)
3108 {
3109 int noverlays;
3110 EMACS_INT endpos;
3111 Lisp_Object *overlays;
3112 int i;
3113
3114 /* Get all overlays at the given position. */
3115 GET_OVERLAYS_AT (pos, overlays, noverlays, &endpos, 1);
3116
3117 /* If any of these overlays ends before endpos,
3118 use its ending point instead. */
3119 for (i = 0; i < noverlays; ++i)
3120 {
3121 Lisp_Object oend;
3122 EMACS_INT oendpos;
3123
3124 oend = OVERLAY_END (overlays[i]);
3125 oendpos = OVERLAY_POSITION (oend);
3126 endpos = min (endpos, oendpos);
3127 }
3128
3129 return endpos;
3130 }
3131
3132
3133 \f
3134 /***********************************************************************
3135 Fontification
3136 ***********************************************************************/
3137
3138 /* Handle changes in the `fontified' property of the current buffer by
3139 calling hook functions from Qfontification_functions to fontify
3140 regions of text. */
3141
3142 static enum prop_handled
3143 handle_fontified_prop (struct it *it)
3144 {
3145 Lisp_Object prop, pos;
3146 enum prop_handled handled = HANDLED_NORMALLY;
3147
3148 if (!NILP (Vmemory_full))
3149 return handled;
3150
3151 /* Get the value of the `fontified' property at IT's current buffer
3152 position. (The `fontified' property doesn't have a special
3153 meaning in strings.) If the value is nil, call functions from
3154 Qfontification_functions. */
3155 if (!STRINGP (it->string)
3156 && it->s == NULL
3157 && !NILP (Vfontification_functions)
3158 && !NILP (Vrun_hooks)
3159 && (pos = make_number (IT_CHARPOS (*it)),
3160 prop = Fget_char_property (pos, Qfontified, Qnil),
3161 /* Ignore the special cased nil value always present at EOB since
3162 no amount of fontifying will be able to change it. */
3163 NILP (prop) && IT_CHARPOS (*it) < Z))
3164 {
3165 int count = SPECPDL_INDEX ();
3166 Lisp_Object val;
3167
3168 val = Vfontification_functions;
3169 specbind (Qfontification_functions, Qnil);
3170
3171 xassert (it->end_charpos == ZV);
3172
3173 if (!CONSP (val) || EQ (XCAR (val), Qlambda))
3174 safe_call1 (val, pos);
3175 else
3176 {
3177 Lisp_Object fns, fn;
3178 struct gcpro gcpro1, gcpro2;
3179
3180 fns = Qnil;
3181 GCPRO2 (val, fns);
3182
3183 for (; CONSP (val); val = XCDR (val))
3184 {
3185 fn = XCAR (val);
3186
3187 if (EQ (fn, Qt))
3188 {
3189 /* A value of t indicates this hook has a local
3190 binding; it means to run the global binding too.
3191 In a global value, t should not occur. If it
3192 does, we must ignore it to avoid an endless
3193 loop. */
3194 for (fns = Fdefault_value (Qfontification_functions);
3195 CONSP (fns);
3196 fns = XCDR (fns))
3197 {
3198 fn = XCAR (fns);
3199 if (!EQ (fn, Qt))
3200 safe_call1 (fn, pos);
3201 }
3202 }
3203 else
3204 safe_call1 (fn, pos);
3205 }
3206
3207 UNGCPRO;
3208 }
3209
3210 unbind_to (count, Qnil);
3211
3212 /* The fontification code may have added/removed text.
3213 It could do even a lot worse, but let's at least protect against
3214 the most obvious case where only the text past `pos' gets changed',
3215 as is/was done in grep.el where some escapes sequences are turned
3216 into face properties (bug#7876). */
3217 it->end_charpos = ZV;
3218
3219 /* Return HANDLED_RECOMPUTE_PROPS only if function fontified
3220 something. This avoids an endless loop if they failed to
3221 fontify the text for which reason ever. */
3222 if (!NILP (Fget_char_property (pos, Qfontified, Qnil)))
3223 handled = HANDLED_RECOMPUTE_PROPS;
3224 }
3225
3226 return handled;
3227 }
3228
3229
3230 \f
3231 /***********************************************************************
3232 Faces
3233 ***********************************************************************/
3234
3235 /* Set up iterator IT from face properties at its current position.
3236 Called from handle_stop. */
3237
3238 static enum prop_handled
3239 handle_face_prop (struct it *it)
3240 {
3241 int new_face_id;
3242 EMACS_INT next_stop;
3243
3244 if (!STRINGP (it->string))
3245 {
3246 new_face_id
3247 = face_at_buffer_position (it->w,
3248 IT_CHARPOS (*it),
3249 it->region_beg_charpos,
3250 it->region_end_charpos,
3251 &next_stop,
3252 (IT_CHARPOS (*it)
3253 + TEXT_PROP_DISTANCE_LIMIT),
3254 0, it->base_face_id);
3255
3256 /* Is this a start of a run of characters with box face?
3257 Caveat: this can be called for a freshly initialized
3258 iterator; face_id is -1 in this case. We know that the new
3259 face will not change until limit, i.e. if the new face has a
3260 box, all characters up to limit will have one. But, as
3261 usual, we don't know whether limit is really the end. */
3262 if (new_face_id != it->face_id)
3263 {
3264 struct face *new_face = FACE_FROM_ID (it->f, new_face_id);
3265
3266 /* If new face has a box but old face has not, this is
3267 the start of a run of characters with box, i.e. it has
3268 a shadow on the left side. The value of face_id of the
3269 iterator will be -1 if this is the initial call that gets
3270 the face. In this case, we have to look in front of IT's
3271 position and see whether there is a face != new_face_id. */
3272 it->start_of_box_run_p
3273 = (new_face->box != FACE_NO_BOX
3274 && (it->face_id >= 0
3275 || IT_CHARPOS (*it) == BEG
3276 || new_face_id != face_before_it_pos (it)));
3277 it->face_box_p = new_face->box != FACE_NO_BOX;
3278 }
3279 }
3280 else
3281 {
3282 int base_face_id;
3283 EMACS_INT bufpos;
3284 int i;
3285 Lisp_Object from_overlay
3286 = (it->current.overlay_string_index >= 0
3287 ? it->string_overlays[it->current.overlay_string_index]
3288 : Qnil);
3289
3290 /* See if we got to this string directly or indirectly from
3291 an overlay property. That includes the before-string or
3292 after-string of an overlay, strings in display properties
3293 provided by an overlay, their text properties, etc.
3294
3295 FROM_OVERLAY is the overlay that brought us here, or nil if none. */
3296 if (! NILP (from_overlay))
3297 for (i = it->sp - 1; i >= 0; i--)
3298 {
3299 if (it->stack[i].current.overlay_string_index >= 0)
3300 from_overlay
3301 = it->string_overlays[it->stack[i].current.overlay_string_index];
3302 else if (! NILP (it->stack[i].from_overlay))
3303 from_overlay = it->stack[i].from_overlay;
3304
3305 if (!NILP (from_overlay))
3306 break;
3307 }
3308
3309 if (! NILP (from_overlay))
3310 {
3311 bufpos = IT_CHARPOS (*it);
3312 /* For a string from an overlay, the base face depends
3313 only on text properties and ignores overlays. */
3314 base_face_id
3315 = face_for_overlay_string (it->w,
3316 IT_CHARPOS (*it),
3317 it->region_beg_charpos,
3318 it->region_end_charpos,
3319 &next_stop,
3320 (IT_CHARPOS (*it)
3321 + TEXT_PROP_DISTANCE_LIMIT),
3322 0,
3323 from_overlay);
3324 }
3325 else
3326 {
3327 bufpos = 0;
3328
3329 /* For strings from a `display' property, use the face at
3330 IT's current buffer position as the base face to merge
3331 with, so that overlay strings appear in the same face as
3332 surrounding text, unless they specify their own
3333 faces. */
3334 base_face_id = underlying_face_id (it);
3335 }
3336
3337 new_face_id = face_at_string_position (it->w,
3338 it->string,
3339 IT_STRING_CHARPOS (*it),
3340 bufpos,
3341 it->region_beg_charpos,
3342 it->region_end_charpos,
3343 &next_stop,
3344 base_face_id, 0);
3345
3346 /* Is this a start of a run of characters with box? Caveat:
3347 this can be called for a freshly allocated iterator; face_id
3348 is -1 is this case. We know that the new face will not
3349 change until the next check pos, i.e. if the new face has a
3350 box, all characters up to that position will have a
3351 box. But, as usual, we don't know whether that position
3352 is really the end. */
3353 if (new_face_id != it->face_id)
3354 {
3355 struct face *new_face = FACE_FROM_ID (it->f, new_face_id);
3356 struct face *old_face = FACE_FROM_ID (it->f, it->face_id);
3357
3358 /* If new face has a box but old face hasn't, this is the
3359 start of a run of characters with box, i.e. it has a
3360 shadow on the left side. */
3361 it->start_of_box_run_p
3362 = new_face->box && (old_face == NULL || !old_face->box);
3363 it->face_box_p = new_face->box != FACE_NO_BOX;
3364 }
3365 }
3366
3367 it->face_id = new_face_id;
3368 return HANDLED_NORMALLY;
3369 }
3370
3371
3372 /* Return the ID of the face ``underlying'' IT's current position,
3373 which is in a string. If the iterator is associated with a
3374 buffer, return the face at IT's current buffer position.
3375 Otherwise, use the iterator's base_face_id. */
3376
3377 static int
3378 underlying_face_id (struct it *it)
3379 {
3380 int face_id = it->base_face_id, i;
3381
3382 xassert (STRINGP (it->string));
3383
3384 for (i = it->sp - 1; i >= 0; --i)
3385 if (NILP (it->stack[i].string))
3386 face_id = it->stack[i].face_id;
3387
3388 return face_id;
3389 }
3390
3391
3392 /* Compute the face one character before or after the current position
3393 of IT. BEFORE_P non-zero means get the face in front of IT's
3394 position. Value is the id of the face. */
3395
3396 static int
3397 face_before_or_after_it_pos (struct it *it, int before_p)
3398 {
3399 int face_id, limit;
3400 EMACS_INT next_check_charpos;
3401 struct text_pos pos;
3402
3403 xassert (it->s == NULL);
3404
3405 if (STRINGP (it->string))
3406 {
3407 EMACS_INT bufpos;
3408 int base_face_id;
3409
3410 /* No face change past the end of the string (for the case
3411 we are padding with spaces). No face change before the
3412 string start. */
3413 if (IT_STRING_CHARPOS (*it) >= SCHARS (it->string)
3414 || (IT_STRING_CHARPOS (*it) == 0 && before_p))
3415 return it->face_id;
3416
3417 /* Set pos to the position before or after IT's current position. */
3418 if (before_p)
3419 pos = string_pos (IT_STRING_CHARPOS (*it) - 1, it->string);
3420 else
3421 /* For composition, we must check the character after the
3422 composition. */
3423 pos = (it->what == IT_COMPOSITION
3424 ? string_pos (IT_STRING_CHARPOS (*it)
3425 + it->cmp_it.nchars, it->string)
3426 : string_pos (IT_STRING_CHARPOS (*it) + 1, it->string));
3427
3428 if (it->current.overlay_string_index >= 0)
3429 bufpos = IT_CHARPOS (*it);
3430 else
3431 bufpos = 0;
3432
3433 base_face_id = underlying_face_id (it);
3434
3435 /* Get the face for ASCII, or unibyte. */
3436 face_id = face_at_string_position (it->w,
3437 it->string,
3438 CHARPOS (pos),
3439 bufpos,
3440 it->region_beg_charpos,
3441 it->region_end_charpos,
3442 &next_check_charpos,
3443 base_face_id, 0);
3444
3445 /* Correct the face for charsets different from ASCII. Do it
3446 for the multibyte case only. The face returned above is
3447 suitable for unibyte text if IT->string is unibyte. */
3448 if (STRING_MULTIBYTE (it->string))
3449 {
3450 const unsigned char *p = SDATA (it->string) + BYTEPOS (pos);
3451 int c, len;
3452 struct face *face = FACE_FROM_ID (it->f, face_id);
3453
3454 c = string_char_and_length (p, &len);
3455 face_id = FACE_FOR_CHAR (it->f, face, c, CHARPOS (pos), it->string);
3456 }
3457 }
3458 else
3459 {
3460 if ((IT_CHARPOS (*it) >= ZV && !before_p)
3461 || (IT_CHARPOS (*it) <= BEGV && before_p))
3462 return it->face_id;
3463
3464 limit = IT_CHARPOS (*it) + TEXT_PROP_DISTANCE_LIMIT;
3465 pos = it->current.pos;
3466
3467 if (before_p)
3468 DEC_TEXT_POS (pos, it->multibyte_p);
3469 else
3470 {
3471 if (it->what == IT_COMPOSITION)
3472 /* For composition, we must check the position after the
3473 composition. */
3474 pos.charpos += it->cmp_it.nchars, pos.bytepos += it->len;
3475 else
3476 INC_TEXT_POS (pos, it->multibyte_p);
3477 }
3478
3479 /* Determine face for CHARSET_ASCII, or unibyte. */
3480 face_id = face_at_buffer_position (it->w,
3481 CHARPOS (pos),
3482 it->region_beg_charpos,
3483 it->region_end_charpos,
3484 &next_check_charpos,
3485 limit, 0, -1);
3486
3487 /* Correct the face for charsets different from ASCII. Do it
3488 for the multibyte case only. The face returned above is
3489 suitable for unibyte text if current_buffer is unibyte. */
3490 if (it->multibyte_p)
3491 {
3492 int c = FETCH_MULTIBYTE_CHAR (BYTEPOS (pos));
3493 struct face *face = FACE_FROM_ID (it->f, face_id);
3494 face_id = FACE_FOR_CHAR (it->f, face, c, CHARPOS (pos), Qnil);
3495 }
3496 }
3497
3498 return face_id;
3499 }
3500
3501
3502 \f
3503 /***********************************************************************
3504 Invisible text
3505 ***********************************************************************/
3506
3507 /* Set up iterator IT from invisible properties at its current
3508 position. Called from handle_stop. */
3509
3510 static enum prop_handled
3511 handle_invisible_prop (struct it *it)
3512 {
3513 enum prop_handled handled = HANDLED_NORMALLY;
3514
3515 if (STRINGP (it->string))
3516 {
3517 Lisp_Object prop, end_charpos, limit, charpos;
3518
3519 /* Get the value of the invisible text property at the
3520 current position. Value will be nil if there is no such
3521 property. */
3522 charpos = make_number (IT_STRING_CHARPOS (*it));
3523 prop = Fget_text_property (charpos, Qinvisible, it->string);
3524
3525 if (!NILP (prop)
3526 && IT_STRING_CHARPOS (*it) < it->end_charpos)
3527 {
3528 handled = HANDLED_RECOMPUTE_PROPS;
3529
3530 /* Get the position at which the next change of the
3531 invisible text property can be found in IT->string.
3532 Value will be nil if the property value is the same for
3533 all the rest of IT->string. */
3534 XSETINT (limit, SCHARS (it->string));
3535 end_charpos = Fnext_single_property_change (charpos, Qinvisible,
3536 it->string, limit);
3537
3538 /* Text at current position is invisible. The next
3539 change in the property is at position end_charpos.
3540 Move IT's current position to that position. */
3541 if (INTEGERP (end_charpos)
3542 && XFASTINT (end_charpos) < XFASTINT (limit))
3543 {
3544 struct text_pos old;
3545 old = it->current.string_pos;
3546 IT_STRING_CHARPOS (*it) = XFASTINT (end_charpos);
3547 compute_string_pos (&it->current.string_pos, old, it->string);
3548 }
3549 else
3550 {
3551 /* The rest of the string is invisible. If this is an
3552 overlay string, proceed with the next overlay string
3553 or whatever comes and return a character from there. */
3554 if (it->current.overlay_string_index >= 0)
3555 {
3556 next_overlay_string (it);
3557 /* Don't check for overlay strings when we just
3558 finished processing them. */
3559 handled = HANDLED_OVERLAY_STRING_CONSUMED;
3560 }
3561 else
3562 {
3563 IT_STRING_CHARPOS (*it) = SCHARS (it->string);
3564 IT_STRING_BYTEPOS (*it) = SBYTES (it->string);
3565 }
3566 }
3567 }
3568 }
3569 else
3570 {
3571 int invis_p;
3572 EMACS_INT newpos, next_stop, start_charpos, tem;
3573 Lisp_Object pos, prop, overlay;
3574
3575 /* First of all, is there invisible text at this position? */
3576 tem = start_charpos = IT_CHARPOS (*it);
3577 pos = make_number (tem);
3578 prop = get_char_property_and_overlay (pos, Qinvisible, it->window,
3579 &overlay);
3580 invis_p = TEXT_PROP_MEANS_INVISIBLE (prop);
3581
3582 /* If we are on invisible text, skip over it. */
3583 if (invis_p && start_charpos < it->end_charpos)
3584 {
3585 /* Record whether we have to display an ellipsis for the
3586 invisible text. */
3587 int display_ellipsis_p = invis_p == 2;
3588
3589 handled = HANDLED_RECOMPUTE_PROPS;
3590
3591 /* Loop skipping over invisible text. The loop is left at
3592 ZV or with IT on the first char being visible again. */
3593 do
3594 {
3595 /* Try to skip some invisible text. Return value is the
3596 position reached which can be equal to where we start
3597 if there is nothing invisible there. This skips both
3598 over invisible text properties and overlays with
3599 invisible property. */
3600 newpos = skip_invisible (tem, &next_stop, ZV, it->window);
3601
3602 /* If we skipped nothing at all we weren't at invisible
3603 text in the first place. If everything to the end of
3604 the buffer was skipped, end the loop. */
3605 if (newpos == tem || newpos >= ZV)
3606 invis_p = 0;
3607 else
3608 {
3609 /* We skipped some characters but not necessarily
3610 all there are. Check if we ended up on visible
3611 text. Fget_char_property returns the property of
3612 the char before the given position, i.e. if we
3613 get invis_p = 0, this means that the char at
3614 newpos is visible. */
3615 pos = make_number (newpos);
3616 prop = Fget_char_property (pos, Qinvisible, it->window);
3617 invis_p = TEXT_PROP_MEANS_INVISIBLE (prop);
3618 }
3619
3620 /* If we ended up on invisible text, proceed to
3621 skip starting with next_stop. */
3622 if (invis_p)
3623 tem = next_stop;
3624
3625 /* If there are adjacent invisible texts, don't lose the
3626 second one's ellipsis. */
3627 if (invis_p == 2)
3628 display_ellipsis_p = 1;
3629 }
3630 while (invis_p);
3631
3632 /* The position newpos is now either ZV or on visible text. */
3633 if (it->bidi_p && newpos < ZV)
3634 {
3635 /* With bidi iteration, the region of invisible text
3636 could start and/or end in the middle of a non-base
3637 embedding level. Therefore, we need to skip
3638 invisible text using the bidi iterator, starting at
3639 IT's current position, until we find ourselves
3640 outside the invisible text. Skipping invisible text
3641 _after_ bidi iteration avoids affecting the visual
3642 order of the displayed text when invisible properties
3643 are added or removed. */
3644 if (it->bidi_it.first_elt)
3645 {
3646 /* If we were `reseat'ed to a new paragraph,
3647 determine the paragraph base direction. We need
3648 to do it now because next_element_from_buffer may
3649 not have a chance to do it, if we are going to
3650 skip any text at the beginning, which resets the
3651 FIRST_ELT flag. */
3652 bidi_paragraph_init (it->paragraph_embedding,
3653 &it->bidi_it, 1);
3654 }
3655 do
3656 {
3657 bidi_move_to_visually_next (&it->bidi_it);
3658 }
3659 while (it->stop_charpos <= it->bidi_it.charpos
3660 && it->bidi_it.charpos < newpos);
3661 IT_CHARPOS (*it) = it->bidi_it.charpos;
3662 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
3663 /* If we overstepped NEWPOS, record its position in the
3664 iterator, so that we skip invisible text if later the
3665 bidi iteration lands us in the invisible region
3666 again. */
3667 if (IT_CHARPOS (*it) >= newpos)
3668 it->prev_stop = newpos;
3669 }
3670 else
3671 {
3672 IT_CHARPOS (*it) = newpos;
3673 IT_BYTEPOS (*it) = CHAR_TO_BYTE (newpos);
3674 }
3675
3676 /* If there are before-strings at the start of invisible
3677 text, and the text is invisible because of a text
3678 property, arrange to show before-strings because 20.x did
3679 it that way. (If the text is invisible because of an
3680 overlay property instead of a text property, this is
3681 already handled in the overlay code.) */
3682 if (NILP (overlay)
3683 && get_overlay_strings (it, it->stop_charpos))
3684 {
3685 handled = HANDLED_RECOMPUTE_PROPS;
3686 it->stack[it->sp - 1].display_ellipsis_p = display_ellipsis_p;
3687 }
3688 else if (display_ellipsis_p)
3689 {
3690 /* Make sure that the glyphs of the ellipsis will get
3691 correct `charpos' values. If we would not update
3692 it->position here, the glyphs would belong to the
3693 last visible character _before_ the invisible
3694 text, which confuses `set_cursor_from_row'.
3695
3696 We use the last invisible position instead of the
3697 first because this way the cursor is always drawn on
3698 the first "." of the ellipsis, whenever PT is inside
3699 the invisible text. Otherwise the cursor would be
3700 placed _after_ the ellipsis when the point is after the
3701 first invisible character. */
3702 if (!STRINGP (it->object))
3703 {
3704 it->position.charpos = newpos - 1;
3705 it->position.bytepos = CHAR_TO_BYTE (it->position.charpos);
3706 }
3707 it->ellipsis_p = 1;
3708 /* Let the ellipsis display before
3709 considering any properties of the following char.
3710 Fixes jasonr@gnu.org 01 Oct 07 bug. */
3711 handled = HANDLED_RETURN;
3712 }
3713 }
3714 }
3715
3716 return handled;
3717 }
3718
3719
3720 /* Make iterator IT return `...' next.
3721 Replaces LEN characters from buffer. */
3722
3723 static void
3724 setup_for_ellipsis (struct it *it, int len)
3725 {
3726 /* Use the display table definition for `...'. Invalid glyphs
3727 will be handled by the method returning elements from dpvec. */
3728 if (it->dp && VECTORP (DISP_INVIS_VECTOR (it->dp)))
3729 {
3730 struct Lisp_Vector *v = XVECTOR (DISP_INVIS_VECTOR (it->dp));
3731 it->dpvec = v->contents;
3732 it->dpend = v->contents + v->size;
3733 }
3734 else
3735 {
3736 /* Default `...'. */
3737 it->dpvec = default_invis_vector;
3738 it->dpend = default_invis_vector + 3;
3739 }
3740
3741 it->dpvec_char_len = len;
3742 it->current.dpvec_index = 0;
3743 it->dpvec_face_id = -1;
3744
3745 /* Remember the current face id in case glyphs specify faces.
3746 IT's face is restored in set_iterator_to_next.
3747 saved_face_id was set to preceding char's face in handle_stop. */
3748 if (it->saved_face_id < 0 || it->saved_face_id != it->face_id)
3749 it->saved_face_id = it->face_id = DEFAULT_FACE_ID;
3750
3751 it->method = GET_FROM_DISPLAY_VECTOR;
3752 it->ellipsis_p = 1;
3753 }
3754
3755
3756 \f
3757 /***********************************************************************
3758 'display' property
3759 ***********************************************************************/
3760
3761 /* Set up iterator IT from `display' property at its current position.
3762 Called from handle_stop.
3763 We return HANDLED_RETURN if some part of the display property
3764 overrides the display of the buffer text itself.
3765 Otherwise we return HANDLED_NORMALLY. */
3766
3767 static enum prop_handled
3768 handle_display_prop (struct it *it)
3769 {
3770 Lisp_Object prop, object, overlay;
3771 struct text_pos *position;
3772 /* Nonzero if some property replaces the display of the text itself. */
3773 int display_replaced_p = 0;
3774
3775 if (STRINGP (it->string))
3776 {
3777 object = it->string;
3778 position = &it->current.string_pos;
3779 }
3780 else
3781 {
3782 XSETWINDOW (object, it->w);
3783 position = &it->current.pos;
3784 }
3785
3786 /* Reset those iterator values set from display property values. */
3787 it->slice.x = it->slice.y = it->slice.width = it->slice.height = Qnil;
3788 it->space_width = Qnil;
3789 it->font_height = Qnil;
3790 it->voffset = 0;
3791
3792 /* We don't support recursive `display' properties, i.e. string
3793 values that have a string `display' property, that have a string
3794 `display' property etc. */
3795 if (!it->string_from_display_prop_p)
3796 it->area = TEXT_AREA;
3797
3798 prop = get_char_property_and_overlay (make_number (position->charpos),
3799 Qdisplay, object, &overlay);
3800 if (NILP (prop))
3801 return HANDLED_NORMALLY;
3802 /* Now OVERLAY is the overlay that gave us this property, or nil
3803 if it was a text property. */
3804
3805 if (!STRINGP (it->string))
3806 object = it->w->buffer;
3807
3808 if (CONSP (prop)
3809 /* Simple properties. */
3810 && !EQ (XCAR (prop), Qimage)
3811 && !EQ (XCAR (prop), Qspace)
3812 && !EQ (XCAR (prop), Qwhen)
3813 && !EQ (XCAR (prop), Qslice)
3814 && !EQ (XCAR (prop), Qspace_width)
3815 && !EQ (XCAR (prop), Qheight)
3816 && !EQ (XCAR (prop), Qraise)
3817 /* Marginal area specifications. */
3818 && !(CONSP (XCAR (prop)) && EQ (XCAR (XCAR (prop)), Qmargin))
3819 && !EQ (XCAR (prop), Qleft_fringe)
3820 && !EQ (XCAR (prop), Qright_fringe)
3821 && !NILP (XCAR (prop)))
3822 {
3823 for (; CONSP (prop); prop = XCDR (prop))
3824 {
3825 if (handle_single_display_spec (it, XCAR (prop), object, overlay,
3826 position, display_replaced_p))
3827 {
3828 display_replaced_p = 1;
3829 /* If some text in a string is replaced, `position' no
3830 longer points to the position of `object'. */
3831 if (STRINGP (object))
3832 break;
3833 }
3834 }
3835 }
3836 else if (VECTORP (prop))
3837 {
3838 int i;
3839 for (i = 0; i < ASIZE (prop); ++i)
3840 if (handle_single_display_spec (it, AREF (prop, i), object, overlay,
3841 position, display_replaced_p))
3842 {
3843 display_replaced_p = 1;
3844 /* If some text in a string is replaced, `position' no
3845 longer points to the position of `object'. */
3846 if (STRINGP (object))
3847 break;
3848 }
3849 }
3850 else
3851 {
3852 if (handle_single_display_spec (it, prop, object, overlay,
3853 position, 0))
3854 display_replaced_p = 1;
3855 }
3856
3857 return display_replaced_p ? HANDLED_RETURN : HANDLED_NORMALLY;
3858 }
3859
3860
3861 /* Value is the position of the end of the `display' property starting
3862 at START_POS in OBJECT. */
3863
3864 static struct text_pos
3865 display_prop_end (struct it *it, Lisp_Object object, struct text_pos start_pos)
3866 {
3867 Lisp_Object end;
3868 struct text_pos end_pos;
3869
3870 end = Fnext_single_char_property_change (make_number (CHARPOS (start_pos)),
3871 Qdisplay, object, Qnil);
3872 CHARPOS (end_pos) = XFASTINT (end);
3873 if (STRINGP (object))
3874 compute_string_pos (&end_pos, start_pos, it->string);
3875 else
3876 BYTEPOS (end_pos) = CHAR_TO_BYTE (XFASTINT (end));
3877
3878 return end_pos;
3879 }
3880
3881
3882 /* Set up IT from a single `display' specification PROP. OBJECT
3883 is the object in which the `display' property was found. *POSITION
3884 is the position at which it was found. DISPLAY_REPLACED_P non-zero
3885 means that we previously saw a display specification which already
3886 replaced text display with something else, for example an image;
3887 we ignore such properties after the first one has been processed.
3888
3889 OVERLAY is the overlay this `display' property came from,
3890 or nil if it was a text property.
3891
3892 If PROP is a `space' or `image' specification, and in some other
3893 cases too, set *POSITION to the position where the `display'
3894 property ends.
3895
3896 Value is non-zero if something was found which replaces the display
3897 of buffer or string text. */
3898
3899 static int
3900 handle_single_display_spec (struct it *it, Lisp_Object spec, Lisp_Object object,
3901 Lisp_Object overlay, struct text_pos *position,
3902 int display_replaced_before_p)
3903 {
3904 Lisp_Object form;
3905 Lisp_Object location, value;
3906 struct text_pos start_pos, save_pos;
3907 int valid_p;
3908
3909 /* If SPEC is a list of the form `(when FORM . VALUE)', evaluate FORM.
3910 If the result is non-nil, use VALUE instead of SPEC. */
3911 form = Qt;
3912 if (CONSP (spec) && EQ (XCAR (spec), Qwhen))
3913 {
3914 spec = XCDR (spec);
3915 if (!CONSP (spec))
3916 return 0;
3917 form = XCAR (spec);
3918 spec = XCDR (spec);
3919 }
3920
3921 if (!NILP (form) && !EQ (form, Qt))
3922 {
3923 int count = SPECPDL_INDEX ();
3924 struct gcpro gcpro1;
3925
3926 /* Bind `object' to the object having the `display' property, a
3927 buffer or string. Bind `position' to the position in the
3928 object where the property was found, and `buffer-position'
3929 to the current position in the buffer. */
3930 specbind (Qobject, object);
3931 specbind (Qposition, make_number (CHARPOS (*position)));
3932 specbind (Qbuffer_position,
3933 make_number (STRINGP (object)
3934 ? IT_CHARPOS (*it) : CHARPOS (*position)));
3935 GCPRO1 (form);
3936 form = safe_eval (form);
3937 UNGCPRO;
3938 unbind_to (count, Qnil);
3939 }
3940
3941 if (NILP (form))
3942 return 0;
3943
3944 /* Handle `(height HEIGHT)' specifications. */
3945 if (CONSP (spec)
3946 && EQ (XCAR (spec), Qheight)
3947 && CONSP (XCDR (spec)))
3948 {
3949 if (!FRAME_WINDOW_P (it->f))
3950 return 0;
3951
3952 it->font_height = XCAR (XCDR (spec));
3953 if (!NILP (it->font_height))
3954 {
3955 struct face *face = FACE_FROM_ID (it->f, it->face_id);
3956 int new_height = -1;
3957
3958 if (CONSP (it->font_height)
3959 && (EQ (XCAR (it->font_height), Qplus)
3960 || EQ (XCAR (it->font_height), Qminus))
3961 && CONSP (XCDR (it->font_height))
3962 && INTEGERP (XCAR (XCDR (it->font_height))))
3963 {
3964 /* `(+ N)' or `(- N)' where N is an integer. */
3965 int steps = XINT (XCAR (XCDR (it->font_height)));
3966 if (EQ (XCAR (it->font_height), Qplus))
3967 steps = - steps;
3968 it->face_id = smaller_face (it->f, it->face_id, steps);
3969 }
3970 else if (FUNCTIONP (it->font_height))
3971 {
3972 /* Call function with current height as argument.
3973 Value is the new height. */
3974 Lisp_Object height;
3975 height = safe_call1 (it->font_height,
3976 face->lface[LFACE_HEIGHT_INDEX]);
3977 if (NUMBERP (height))
3978 new_height = XFLOATINT (height);
3979 }
3980 else if (NUMBERP (it->font_height))
3981 {
3982 /* Value is a multiple of the canonical char height. */
3983 struct face *f;
3984
3985 f = FACE_FROM_ID (it->f,
3986 lookup_basic_face (it->f, DEFAULT_FACE_ID));
3987 new_height = (XFLOATINT (it->font_height)
3988 * XINT (f->lface[LFACE_HEIGHT_INDEX]));
3989 }
3990 else
3991 {
3992 /* Evaluate IT->font_height with `height' bound to the
3993 current specified height to get the new height. */
3994 int count = SPECPDL_INDEX ();
3995
3996 specbind (Qheight, face->lface[LFACE_HEIGHT_INDEX]);
3997 value = safe_eval (it->font_height);
3998 unbind_to (count, Qnil);
3999
4000 if (NUMBERP (value))
4001 new_height = XFLOATINT (value);
4002 }
4003
4004 if (new_height > 0)
4005 it->face_id = face_with_height (it->f, it->face_id, new_height);
4006 }
4007
4008 return 0;
4009 }
4010
4011 /* Handle `(space-width WIDTH)'. */
4012 if (CONSP (spec)
4013 && EQ (XCAR (spec), Qspace_width)
4014 && CONSP (XCDR (spec)))
4015 {
4016 if (!FRAME_WINDOW_P (it->f))
4017 return 0;
4018
4019 value = XCAR (XCDR (spec));
4020 if (NUMBERP (value) && XFLOATINT (value) > 0)
4021 it->space_width = value;
4022
4023 return 0;
4024 }
4025
4026 /* Handle `(slice X Y WIDTH HEIGHT)'. */
4027 if (CONSP (spec)
4028 && EQ (XCAR (spec), Qslice))
4029 {
4030 Lisp_Object tem;
4031
4032 if (!FRAME_WINDOW_P (it->f))
4033 return 0;
4034
4035 if (tem = XCDR (spec), CONSP (tem))
4036 {
4037 it->slice.x = XCAR (tem);
4038 if (tem = XCDR (tem), CONSP (tem))
4039 {
4040 it->slice.y = XCAR (tem);
4041 if (tem = XCDR (tem), CONSP (tem))
4042 {
4043 it->slice.width = XCAR (tem);
4044 if (tem = XCDR (tem), CONSP (tem))
4045 it->slice.height = XCAR (tem);
4046 }
4047 }
4048 }
4049
4050 return 0;
4051 }
4052
4053 /* Handle `(raise FACTOR)'. */
4054 if (CONSP (spec)
4055 && EQ (XCAR (spec), Qraise)
4056 && CONSP (XCDR (spec)))
4057 {
4058 if (!FRAME_WINDOW_P (it->f))
4059 return 0;
4060
4061 #ifdef HAVE_WINDOW_SYSTEM
4062 value = XCAR (XCDR (spec));
4063 if (NUMBERP (value))
4064 {
4065 struct face *face = FACE_FROM_ID (it->f, it->face_id);
4066 it->voffset = - (XFLOATINT (value)
4067 * (FONT_HEIGHT (face->font)));
4068 }
4069 #endif /* HAVE_WINDOW_SYSTEM */
4070
4071 return 0;
4072 }
4073
4074 /* Don't handle the other kinds of display specifications
4075 inside a string that we got from a `display' property. */
4076 if (it->string_from_display_prop_p)
4077 return 0;
4078
4079 /* Characters having this form of property are not displayed, so
4080 we have to find the end of the property. */
4081 start_pos = *position;
4082 *position = display_prop_end (it, object, start_pos);
4083 value = Qnil;
4084
4085 /* Stop the scan at that end position--we assume that all
4086 text properties change there. */
4087 it->stop_charpos = position->charpos;
4088
4089 /* Handle `(left-fringe BITMAP [FACE])'
4090 and `(right-fringe BITMAP [FACE])'. */
4091 if (CONSP (spec)
4092 && (EQ (XCAR (spec), Qleft_fringe)
4093 || EQ (XCAR (spec), Qright_fringe))
4094 && CONSP (XCDR (spec)))
4095 {
4096 int face_id = lookup_basic_face (it->f, DEFAULT_FACE_ID);
4097 int fringe_bitmap;
4098
4099 if (!FRAME_WINDOW_P (it->f))
4100 /* If we return here, POSITION has been advanced
4101 across the text with this property. */
4102 return 0;
4103
4104 #ifdef HAVE_WINDOW_SYSTEM
4105 value = XCAR (XCDR (spec));
4106 if (!SYMBOLP (value)
4107 || !(fringe_bitmap = lookup_fringe_bitmap (value)))
4108 /* If we return here, POSITION has been advanced
4109 across the text with this property. */
4110 return 0;
4111
4112 if (CONSP (XCDR (XCDR (spec))))
4113 {
4114 Lisp_Object face_name = XCAR (XCDR (XCDR (spec)));
4115 int face_id2 = lookup_derived_face (it->f, face_name,
4116 FRINGE_FACE_ID, 0);
4117 if (face_id2 >= 0)
4118 face_id = face_id2;
4119 }
4120
4121 /* Save current settings of IT so that we can restore them
4122 when we are finished with the glyph property value. */
4123
4124 save_pos = it->position;
4125 it->position = *position;
4126 push_it (it);
4127 it->position = save_pos;
4128
4129 it->area = TEXT_AREA;
4130 it->what = IT_IMAGE;
4131 it->image_id = -1; /* no image */
4132 it->position = start_pos;
4133 it->object = NILP (object) ? it->w->buffer : object;
4134 it->method = GET_FROM_IMAGE;
4135 it->from_overlay = Qnil;
4136 it->face_id = face_id;
4137
4138 /* Say that we haven't consumed the characters with
4139 `display' property yet. The call to pop_it in
4140 set_iterator_to_next will clean this up. */
4141 *position = start_pos;
4142
4143 if (EQ (XCAR (spec), Qleft_fringe))
4144 {
4145 it->left_user_fringe_bitmap = fringe_bitmap;
4146 it->left_user_fringe_face_id = face_id;
4147 }
4148 else
4149 {
4150 it->right_user_fringe_bitmap = fringe_bitmap;
4151 it->right_user_fringe_face_id = face_id;
4152 }
4153 #endif /* HAVE_WINDOW_SYSTEM */
4154 return 1;
4155 }
4156
4157 /* Prepare to handle `((margin left-margin) ...)',
4158 `((margin right-margin) ...)' and `((margin nil) ...)'
4159 prefixes for display specifications. */
4160 location = Qunbound;
4161 if (CONSP (spec) && CONSP (XCAR (spec)))
4162 {
4163 Lisp_Object tem;
4164
4165 value = XCDR (spec);
4166 if (CONSP (value))
4167 value = XCAR (value);
4168
4169 tem = XCAR (spec);
4170 if (EQ (XCAR (tem), Qmargin)
4171 && (tem = XCDR (tem),
4172 tem = CONSP (tem) ? XCAR (tem) : Qnil,
4173 (NILP (tem)
4174 || EQ (tem, Qleft_margin)
4175 || EQ (tem, Qright_margin))))
4176 location = tem;
4177 }
4178
4179 if (EQ (location, Qunbound))
4180 {
4181 location = Qnil;
4182 value = spec;
4183 }
4184
4185 /* After this point, VALUE is the property after any
4186 margin prefix has been stripped. It must be a string,
4187 an image specification, or `(space ...)'.
4188
4189 LOCATION specifies where to display: `left-margin',
4190 `right-margin' or nil. */
4191
4192 valid_p = (STRINGP (value)
4193 #ifdef HAVE_WINDOW_SYSTEM
4194 || (FRAME_WINDOW_P (it->f) && valid_image_p (value))
4195 #endif /* not HAVE_WINDOW_SYSTEM */
4196 || (CONSP (value) && EQ (XCAR (value), Qspace)));
4197
4198 if (valid_p && !display_replaced_before_p)
4199 {
4200 /* Save current settings of IT so that we can restore them
4201 when we are finished with the glyph property value. */
4202 save_pos = it->position;
4203 it->position = *position;
4204 push_it (it);
4205 it->position = save_pos;
4206 it->from_overlay = overlay;
4207
4208 if (NILP (location))
4209 it->area = TEXT_AREA;
4210 else if (EQ (location, Qleft_margin))
4211 it->area = LEFT_MARGIN_AREA;
4212 else
4213 it->area = RIGHT_MARGIN_AREA;
4214
4215 if (STRINGP (value))
4216 {
4217 it->string = value;
4218 it->multibyte_p = STRING_MULTIBYTE (it->string);
4219 it->current.overlay_string_index = -1;
4220 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = 0;
4221 it->end_charpos = it->string_nchars = SCHARS (it->string);
4222 it->method = GET_FROM_STRING;
4223 it->stop_charpos = 0;
4224 it->string_from_display_prop_p = 1;
4225 /* Say that we haven't consumed the characters with
4226 `display' property yet. The call to pop_it in
4227 set_iterator_to_next will clean this up. */
4228 if (BUFFERP (object))
4229 *position = start_pos;
4230 }
4231 else if (CONSP (value) && EQ (XCAR (value), Qspace))
4232 {
4233 it->method = GET_FROM_STRETCH;
4234 it->object = value;
4235 *position = it->position = start_pos;
4236 }
4237 #ifdef HAVE_WINDOW_SYSTEM
4238 else
4239 {
4240 it->what = IT_IMAGE;
4241 it->image_id = lookup_image (it->f, value);
4242 it->position = start_pos;
4243 it->object = NILP (object) ? it->w->buffer : object;
4244 it->method = GET_FROM_IMAGE;
4245
4246 /* Say that we haven't consumed the characters with
4247 `display' property yet. The call to pop_it in
4248 set_iterator_to_next will clean this up. */
4249 *position = start_pos;
4250 }
4251 #endif /* HAVE_WINDOW_SYSTEM */
4252
4253 return 1;
4254 }
4255
4256 /* Invalid property or property not supported. Restore
4257 POSITION to what it was before. */
4258 *position = start_pos;
4259 return 0;
4260 }
4261
4262
4263 /* Check if SPEC is a display sub-property value whose text should be
4264 treated as intangible. */
4265
4266 static int
4267 single_display_spec_intangible_p (Lisp_Object prop)
4268 {
4269 /* Skip over `when FORM'. */
4270 if (CONSP (prop) && EQ (XCAR (prop), Qwhen))
4271 {
4272 prop = XCDR (prop);
4273 if (!CONSP (prop))
4274 return 0;
4275 prop = XCDR (prop);
4276 }
4277
4278 if (STRINGP (prop))
4279 return 1;
4280
4281 if (!CONSP (prop))
4282 return 0;
4283
4284 /* Skip over `margin LOCATION'. If LOCATION is in the margins,
4285 we don't need to treat text as intangible. */
4286 if (EQ (XCAR (prop), Qmargin))
4287 {
4288 prop = XCDR (prop);
4289 if (!CONSP (prop))
4290 return 0;
4291
4292 prop = XCDR (prop);
4293 if (!CONSP (prop)
4294 || EQ (XCAR (prop), Qleft_margin)
4295 || EQ (XCAR (prop), Qright_margin))
4296 return 0;
4297 }
4298
4299 return (CONSP (prop)
4300 && (EQ (XCAR (prop), Qimage)
4301 || EQ (XCAR (prop), Qspace)));
4302 }
4303
4304
4305 /* Check if PROP is a display property value whose text should be
4306 treated as intangible. */
4307
4308 int
4309 display_prop_intangible_p (Lisp_Object prop)
4310 {
4311 if (CONSP (prop)
4312 && CONSP (XCAR (prop))
4313 && !EQ (Qmargin, XCAR (XCAR (prop))))
4314 {
4315 /* A list of sub-properties. */
4316 while (CONSP (prop))
4317 {
4318 if (single_display_spec_intangible_p (XCAR (prop)))
4319 return 1;
4320 prop = XCDR (prop);
4321 }
4322 }
4323 else if (VECTORP (prop))
4324 {
4325 /* A vector of sub-properties. */
4326 int i;
4327 for (i = 0; i < ASIZE (prop); ++i)
4328 if (single_display_spec_intangible_p (AREF (prop, i)))
4329 return 1;
4330 }
4331 else
4332 return single_display_spec_intangible_p (prop);
4333
4334 return 0;
4335 }
4336
4337
4338 /* Return 1 if PROP is a display sub-property value containing STRING. */
4339
4340 static int
4341 single_display_spec_string_p (Lisp_Object prop, Lisp_Object string)
4342 {
4343 if (EQ (string, prop))
4344 return 1;
4345
4346 /* Skip over `when FORM'. */
4347 if (CONSP (prop) && EQ (XCAR (prop), Qwhen))
4348 {
4349 prop = XCDR (prop);
4350 if (!CONSP (prop))
4351 return 0;
4352 prop = XCDR (prop);
4353 }
4354
4355 if (CONSP (prop))
4356 /* Skip over `margin LOCATION'. */
4357 if (EQ (XCAR (prop), Qmargin))
4358 {
4359 prop = XCDR (prop);
4360 if (!CONSP (prop))
4361 return 0;
4362
4363 prop = XCDR (prop);
4364 if (!CONSP (prop))
4365 return 0;
4366 }
4367
4368 return CONSP (prop) && EQ (XCAR (prop), string);
4369 }
4370
4371
4372 /* Return 1 if STRING appears in the `display' property PROP. */
4373
4374 static int
4375 display_prop_string_p (Lisp_Object prop, Lisp_Object string)
4376 {
4377 if (CONSP (prop)
4378 && CONSP (XCAR (prop))
4379 && !EQ (Qmargin, XCAR (XCAR (prop))))
4380 {
4381 /* A list of sub-properties. */
4382 while (CONSP (prop))
4383 {
4384 if (single_display_spec_string_p (XCAR (prop), string))
4385 return 1;
4386 prop = XCDR (prop);
4387 }
4388 }
4389 else if (VECTORP (prop))
4390 {
4391 /* A vector of sub-properties. */
4392 int i;
4393 for (i = 0; i < ASIZE (prop); ++i)
4394 if (single_display_spec_string_p (AREF (prop, i), string))
4395 return 1;
4396 }
4397 else
4398 return single_display_spec_string_p (prop, string);
4399
4400 return 0;
4401 }
4402
4403 /* Look for STRING in overlays and text properties in W's buffer,
4404 between character positions FROM and TO (excluding TO).
4405 BACK_P non-zero means look back (in this case, TO is supposed to be
4406 less than FROM).
4407 Value is the first character position where STRING was found, or
4408 zero if it wasn't found before hitting TO.
4409
4410 W's buffer must be current.
4411
4412 This function may only use code that doesn't eval because it is
4413 called asynchronously from note_mouse_highlight. */
4414
4415 static EMACS_INT
4416 string_buffer_position_lim (struct window *w, Lisp_Object string,
4417 EMACS_INT from, EMACS_INT to, int back_p)
4418 {
4419 Lisp_Object limit, prop, pos;
4420 int found = 0;
4421
4422 pos = make_number (from);
4423
4424 if (!back_p) /* looking forward */
4425 {
4426 limit = make_number (min (to, ZV));
4427 while (!found && !EQ (pos, limit))
4428 {
4429 prop = Fget_char_property (pos, Qdisplay, Qnil);
4430 if (!NILP (prop) && display_prop_string_p (prop, string))
4431 found = 1;
4432 else
4433 pos = Fnext_single_char_property_change (pos, Qdisplay, Qnil,
4434 limit);
4435 }
4436 }
4437 else /* looking back */
4438 {
4439 limit = make_number (max (to, BEGV));
4440 while (!found && !EQ (pos, limit))
4441 {
4442 prop = Fget_char_property (pos, Qdisplay, Qnil);
4443 if (!NILP (prop) && display_prop_string_p (prop, string))
4444 found = 1;
4445 else
4446 pos = Fprevious_single_char_property_change (pos, Qdisplay, Qnil,
4447 limit);
4448 }
4449 }
4450
4451 return found ? XINT (pos) : 0;
4452 }
4453
4454 /* Determine which buffer position in W's buffer STRING comes from.
4455 AROUND_CHARPOS is an approximate position where it could come from.
4456 Value is the buffer position or 0 if it couldn't be determined.
4457
4458 W's buffer must be current.
4459
4460 This function is necessary because we don't record buffer positions
4461 in glyphs generated from strings (to keep struct glyph small).
4462 This function may only use code that doesn't eval because it is
4463 called asynchronously from note_mouse_highlight. */
4464
4465 EMACS_INT
4466 string_buffer_position (struct window *w, Lisp_Object string, EMACS_INT around_charpos)
4467 {
4468 const int MAX_DISTANCE = 1000;
4469 EMACS_INT found = string_buffer_position_lim (w, string, around_charpos,
4470 around_charpos + MAX_DISTANCE,
4471 0);
4472
4473 if (!found)
4474 found = string_buffer_position_lim (w, string, around_charpos,
4475 around_charpos - MAX_DISTANCE, 1);
4476 return found;
4477 }
4478
4479
4480 \f
4481 /***********************************************************************
4482 `composition' property
4483 ***********************************************************************/
4484
4485 /* Set up iterator IT from `composition' property at its current
4486 position. Called from handle_stop. */
4487
4488 static enum prop_handled
4489 handle_composition_prop (struct it *it)
4490 {
4491 Lisp_Object prop, string;
4492 EMACS_INT pos, pos_byte, start, end;
4493
4494 if (STRINGP (it->string))
4495 {
4496 unsigned char *s;
4497
4498 pos = IT_STRING_CHARPOS (*it);
4499 pos_byte = IT_STRING_BYTEPOS (*it);
4500 string = it->string;
4501 s = SDATA (string) + pos_byte;
4502 it->c = STRING_CHAR (s);
4503 }
4504 else
4505 {
4506 pos = IT_CHARPOS (*it);
4507 pos_byte = IT_BYTEPOS (*it);
4508 string = Qnil;
4509 it->c = FETCH_CHAR (pos_byte);
4510 }
4511
4512 /* If there's a valid composition and point is not inside of the
4513 composition (in the case that the composition is from the current
4514 buffer), draw a glyph composed from the composition components. */
4515 if (find_composition (pos, -1, &start, &end, &prop, string)
4516 && COMPOSITION_VALID_P (start, end, prop)
4517 && (STRINGP (it->string) || (PT <= start || PT >= end)))
4518 {
4519 if (start != pos)
4520 {
4521 if (STRINGP (it->string))
4522 pos_byte = string_char_to_byte (it->string, start);
4523 else
4524 pos_byte = CHAR_TO_BYTE (start);
4525 }
4526 it->cmp_it.id = get_composition_id (start, pos_byte, end - start,
4527 prop, string);
4528
4529 if (it->cmp_it.id >= 0)
4530 {
4531 it->cmp_it.ch = -1;
4532 it->cmp_it.nchars = COMPOSITION_LENGTH (prop);
4533 it->cmp_it.nglyphs = -1;
4534 }
4535 }
4536
4537 return HANDLED_NORMALLY;
4538 }
4539
4540
4541 \f
4542 /***********************************************************************
4543 Overlay strings
4544 ***********************************************************************/
4545
4546 /* The following structure is used to record overlay strings for
4547 later sorting in load_overlay_strings. */
4548
4549 struct overlay_entry
4550 {
4551 Lisp_Object overlay;
4552 Lisp_Object string;
4553 int priority;
4554 int after_string_p;
4555 };
4556
4557
4558 /* Set up iterator IT from overlay strings at its current position.
4559 Called from handle_stop. */
4560
4561 static enum prop_handled
4562 handle_overlay_change (struct it *it)
4563 {
4564 if (!STRINGP (it->string) && get_overlay_strings (it, 0))
4565 return HANDLED_RECOMPUTE_PROPS;
4566 else
4567 return HANDLED_NORMALLY;
4568 }
4569
4570
4571 /* Set up the next overlay string for delivery by IT, if there is an
4572 overlay string to deliver. Called by set_iterator_to_next when the
4573 end of the current overlay string is reached. If there are more
4574 overlay strings to display, IT->string and
4575 IT->current.overlay_string_index are set appropriately here.
4576 Otherwise IT->string is set to nil. */
4577
4578 static void
4579 next_overlay_string (struct it *it)
4580 {
4581 ++it->current.overlay_string_index;
4582 if (it->current.overlay_string_index == it->n_overlay_strings)
4583 {
4584 /* No more overlay strings. Restore IT's settings to what
4585 they were before overlay strings were processed, and
4586 continue to deliver from current_buffer. */
4587
4588 it->ellipsis_p = (it->stack[it->sp - 1].display_ellipsis_p != 0);
4589 pop_it (it);
4590 xassert (it->sp > 0
4591 || (NILP (it->string)
4592 && it->method == GET_FROM_BUFFER
4593 && it->stop_charpos >= BEGV
4594 && it->stop_charpos <= it->end_charpos));
4595 it->current.overlay_string_index = -1;
4596 it->n_overlay_strings = 0;
4597 it->overlay_strings_charpos = -1;
4598
4599 /* If we're at the end of the buffer, record that we have
4600 processed the overlay strings there already, so that
4601 next_element_from_buffer doesn't try it again. */
4602 if (NILP (it->string) && IT_CHARPOS (*it) >= it->end_charpos)
4603 it->overlay_strings_at_end_processed_p = 1;
4604 }
4605 else
4606 {
4607 /* There are more overlay strings to process. If
4608 IT->current.overlay_string_index has advanced to a position
4609 where we must load IT->overlay_strings with more strings, do
4610 it. We must load at the IT->overlay_strings_charpos where
4611 IT->n_overlay_strings was originally computed; when invisible
4612 text is present, this might not be IT_CHARPOS (Bug#7016). */
4613 int i = it->current.overlay_string_index % OVERLAY_STRING_CHUNK_SIZE;
4614
4615 if (it->current.overlay_string_index && i == 0)
4616 load_overlay_strings (it, it->overlay_strings_charpos);
4617
4618 /* Initialize IT to deliver display elements from the overlay
4619 string. */
4620 it->string = it->overlay_strings[i];
4621 it->multibyte_p = STRING_MULTIBYTE (it->string);
4622 SET_TEXT_POS (it->current.string_pos, 0, 0);
4623 it->method = GET_FROM_STRING;
4624 it->stop_charpos = 0;
4625 if (it->cmp_it.stop_pos >= 0)
4626 it->cmp_it.stop_pos = 0;
4627 }
4628
4629 CHECK_IT (it);
4630 }
4631
4632
4633 /* Compare two overlay_entry structures E1 and E2. Used as a
4634 comparison function for qsort in load_overlay_strings. Overlay
4635 strings for the same position are sorted so that
4636
4637 1. All after-strings come in front of before-strings, except
4638 when they come from the same overlay.
4639
4640 2. Within after-strings, strings are sorted so that overlay strings
4641 from overlays with higher priorities come first.
4642
4643 2. Within before-strings, strings are sorted so that overlay
4644 strings from overlays with higher priorities come last.
4645
4646 Value is analogous to strcmp. */
4647
4648
4649 static int
4650 compare_overlay_entries (const void *e1, const void *e2)
4651 {
4652 struct overlay_entry *entry1 = (struct overlay_entry *) e1;
4653 struct overlay_entry *entry2 = (struct overlay_entry *) e2;
4654 int result;
4655
4656 if (entry1->after_string_p != entry2->after_string_p)
4657 {
4658 /* Let after-strings appear in front of before-strings if
4659 they come from different overlays. */
4660 if (EQ (entry1->overlay, entry2->overlay))
4661 result = entry1->after_string_p ? 1 : -1;
4662 else
4663 result = entry1->after_string_p ? -1 : 1;
4664 }
4665 else if (entry1->after_string_p)
4666 /* After-strings sorted in order of decreasing priority. */
4667 result = entry2->priority - entry1->priority;
4668 else
4669 /* Before-strings sorted in order of increasing priority. */
4670 result = entry1->priority - entry2->priority;
4671
4672 return result;
4673 }
4674
4675
4676 /* Load the vector IT->overlay_strings with overlay strings from IT's
4677 current buffer position, or from CHARPOS if that is > 0. Set
4678 IT->n_overlays to the total number of overlay strings found.
4679
4680 Overlay strings are processed OVERLAY_STRING_CHUNK_SIZE strings at
4681 a time. On entry into load_overlay_strings,
4682 IT->current.overlay_string_index gives the number of overlay
4683 strings that have already been loaded by previous calls to this
4684 function.
4685
4686 IT->add_overlay_start contains an additional overlay start
4687 position to consider for taking overlay strings from, if non-zero.
4688 This position comes into play when the overlay has an `invisible'
4689 property, and both before and after-strings. When we've skipped to
4690 the end of the overlay, because of its `invisible' property, we
4691 nevertheless want its before-string to appear.
4692 IT->add_overlay_start will contain the overlay start position
4693 in this case.
4694
4695 Overlay strings are sorted so that after-string strings come in
4696 front of before-string strings. Within before and after-strings,
4697 strings are sorted by overlay priority. See also function
4698 compare_overlay_entries. */
4699
4700 static void
4701 load_overlay_strings (struct it *it, EMACS_INT charpos)
4702 {
4703 Lisp_Object overlay, window, str, invisible;
4704 struct Lisp_Overlay *ov;
4705 EMACS_INT start, end;
4706 int size = 20;
4707 int n = 0, i, j, invis_p;
4708 struct overlay_entry *entries
4709 = (struct overlay_entry *) alloca (size * sizeof *entries);
4710
4711 if (charpos <= 0)
4712 charpos = IT_CHARPOS (*it);
4713
4714 /* Append the overlay string STRING of overlay OVERLAY to vector
4715 `entries' which has size `size' and currently contains `n'
4716 elements. AFTER_P non-zero means STRING is an after-string of
4717 OVERLAY. */
4718 #define RECORD_OVERLAY_STRING(OVERLAY, STRING, AFTER_P) \
4719 do \
4720 { \
4721 Lisp_Object priority; \
4722 \
4723 if (n == size) \
4724 { \
4725 int new_size = 2 * size; \
4726 struct overlay_entry *old = entries; \
4727 entries = \
4728 (struct overlay_entry *) alloca (new_size \
4729 * sizeof *entries); \
4730 memcpy (entries, old, size * sizeof *entries); \
4731 size = new_size; \
4732 } \
4733 \
4734 entries[n].string = (STRING); \
4735 entries[n].overlay = (OVERLAY); \
4736 priority = Foverlay_get ((OVERLAY), Qpriority); \
4737 entries[n].priority = INTEGERP (priority) ? XINT (priority) : 0; \
4738 entries[n].after_string_p = (AFTER_P); \
4739 ++n; \
4740 } \
4741 while (0)
4742
4743 /* Process overlay before the overlay center. */
4744 for (ov = current_buffer->overlays_before; ov; ov = ov->next)
4745 {
4746 XSETMISC (overlay, ov);
4747 xassert (OVERLAYP (overlay));
4748 start = OVERLAY_POSITION (OVERLAY_START (overlay));
4749 end = OVERLAY_POSITION (OVERLAY_END (overlay));
4750
4751 if (end < charpos)
4752 break;
4753
4754 /* Skip this overlay if it doesn't start or end at IT's current
4755 position. */
4756 if (end != charpos && start != charpos)
4757 continue;
4758
4759 /* Skip this overlay if it doesn't apply to IT->w. */
4760 window = Foverlay_get (overlay, Qwindow);
4761 if (WINDOWP (window) && XWINDOW (window) != it->w)
4762 continue;
4763
4764 /* If the text ``under'' the overlay is invisible, both before-
4765 and after-strings from this overlay are visible; start and
4766 end position are indistinguishable. */
4767 invisible = Foverlay_get (overlay, Qinvisible);
4768 invis_p = TEXT_PROP_MEANS_INVISIBLE (invisible);
4769
4770 /* If overlay has a non-empty before-string, record it. */
4771 if ((start == charpos || (end == charpos && invis_p))
4772 && (str = Foverlay_get (overlay, Qbefore_string), STRINGP (str))
4773 && SCHARS (str))
4774 RECORD_OVERLAY_STRING (overlay, str, 0);
4775
4776 /* If overlay has a non-empty after-string, record it. */
4777 if ((end == charpos || (start == charpos && invis_p))
4778 && (str = Foverlay_get (overlay, Qafter_string), STRINGP (str))
4779 && SCHARS (str))
4780 RECORD_OVERLAY_STRING (overlay, str, 1);
4781 }
4782
4783 /* Process overlays after the overlay center. */
4784 for (ov = current_buffer->overlays_after; ov; ov = ov->next)
4785 {
4786 XSETMISC (overlay, ov);
4787 xassert (OVERLAYP (overlay));
4788 start = OVERLAY_POSITION (OVERLAY_START (overlay));
4789 end = OVERLAY_POSITION (OVERLAY_END (overlay));
4790
4791 if (start > charpos)
4792 break;
4793
4794 /* Skip this overlay if it doesn't start or end at IT's current
4795 position. */
4796 if (end != charpos && start != charpos)
4797 continue;
4798
4799 /* Skip this overlay if it doesn't apply to IT->w. */
4800 window = Foverlay_get (overlay, Qwindow);
4801 if (WINDOWP (window) && XWINDOW (window) != it->w)
4802 continue;
4803
4804 /* If the text ``under'' the overlay is invisible, it has a zero
4805 dimension, and both before- and after-strings apply. */
4806 invisible = Foverlay_get (overlay, Qinvisible);
4807 invis_p = TEXT_PROP_MEANS_INVISIBLE (invisible);
4808
4809 /* If overlay has a non-empty before-string, record it. */
4810 if ((start == charpos || (end == charpos && invis_p))
4811 && (str = Foverlay_get (overlay, Qbefore_string), STRINGP (str))
4812 && SCHARS (str))
4813 RECORD_OVERLAY_STRING (overlay, str, 0);
4814
4815 /* If overlay has a non-empty after-string, record it. */
4816 if ((end == charpos || (start == charpos && invis_p))
4817 && (str = Foverlay_get (overlay, Qafter_string), STRINGP (str))
4818 && SCHARS (str))
4819 RECORD_OVERLAY_STRING (overlay, str, 1);
4820 }
4821
4822 #undef RECORD_OVERLAY_STRING
4823
4824 /* Sort entries. */
4825 if (n > 1)
4826 qsort (entries, n, sizeof *entries, compare_overlay_entries);
4827
4828 /* Record number of overlay strings, and where we computed it. */
4829 it->n_overlay_strings = n;
4830 it->overlay_strings_charpos = charpos;
4831
4832 /* IT->current.overlay_string_index is the number of overlay strings
4833 that have already been consumed by IT. Copy some of the
4834 remaining overlay strings to IT->overlay_strings. */
4835 i = 0;
4836 j = it->current.overlay_string_index;
4837 while (i < OVERLAY_STRING_CHUNK_SIZE && j < n)
4838 {
4839 it->overlay_strings[i] = entries[j].string;
4840 it->string_overlays[i++] = entries[j++].overlay;
4841 }
4842
4843 CHECK_IT (it);
4844 }
4845
4846
4847 /* Get the first chunk of overlay strings at IT's current buffer
4848 position, or at CHARPOS if that is > 0. Value is non-zero if at
4849 least one overlay string was found. */
4850
4851 static int
4852 get_overlay_strings_1 (struct it *it, EMACS_INT charpos, int compute_stop_p)
4853 {
4854 /* Get the first OVERLAY_STRING_CHUNK_SIZE overlay strings to
4855 process. This fills IT->overlay_strings with strings, and sets
4856 IT->n_overlay_strings to the total number of strings to process.
4857 IT->pos.overlay_string_index has to be set temporarily to zero
4858 because load_overlay_strings needs this; it must be set to -1
4859 when no overlay strings are found because a zero value would
4860 indicate a position in the first overlay string. */
4861 it->current.overlay_string_index = 0;
4862 load_overlay_strings (it, charpos);
4863
4864 /* If we found overlay strings, set up IT to deliver display
4865 elements from the first one. Otherwise set up IT to deliver
4866 from current_buffer. */
4867 if (it->n_overlay_strings)
4868 {
4869 /* Make sure we know settings in current_buffer, so that we can
4870 restore meaningful values when we're done with the overlay
4871 strings. */
4872 if (compute_stop_p)
4873 compute_stop_pos (it);
4874 xassert (it->face_id >= 0);
4875
4876 /* Save IT's settings. They are restored after all overlay
4877 strings have been processed. */
4878 xassert (!compute_stop_p || it->sp == 0);
4879
4880 /* When called from handle_stop, there might be an empty display
4881 string loaded. In that case, don't bother saving it. */
4882 if (!STRINGP (it->string) || SCHARS (it->string))
4883 push_it (it);
4884
4885 /* Set up IT to deliver display elements from the first overlay
4886 string. */
4887 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = 0;
4888 it->string = it->overlay_strings[0];
4889 it->from_overlay = Qnil;
4890 it->stop_charpos = 0;
4891 xassert (STRINGP (it->string));
4892 it->end_charpos = SCHARS (it->string);
4893 it->multibyte_p = STRING_MULTIBYTE (it->string);
4894 it->method = GET_FROM_STRING;
4895 return 1;
4896 }
4897
4898 it->current.overlay_string_index = -1;
4899 return 0;
4900 }
4901
4902 static int
4903 get_overlay_strings (struct it *it, EMACS_INT charpos)
4904 {
4905 it->string = Qnil;
4906 it->method = GET_FROM_BUFFER;
4907
4908 (void) get_overlay_strings_1 (it, charpos, 1);
4909
4910 CHECK_IT (it);
4911
4912 /* Value is non-zero if we found at least one overlay string. */
4913 return STRINGP (it->string);
4914 }
4915
4916
4917 \f
4918 /***********************************************************************
4919 Saving and restoring state
4920 ***********************************************************************/
4921
4922 /* Save current settings of IT on IT->stack. Called, for example,
4923 before setting up IT for an overlay string, to be able to restore
4924 IT's settings to what they were after the overlay string has been
4925 processed. */
4926
4927 static void
4928 push_it (struct it *it)
4929 {
4930 struct iterator_stack_entry *p;
4931
4932 xassert (it->sp < IT_STACK_SIZE);
4933 p = it->stack + it->sp;
4934
4935 p->stop_charpos = it->stop_charpos;
4936 p->prev_stop = it->prev_stop;
4937 p->base_level_stop = it->base_level_stop;
4938 p->cmp_it = it->cmp_it;
4939 xassert (it->face_id >= 0);
4940 p->face_id = it->face_id;
4941 p->string = it->string;
4942 p->method = it->method;
4943 p->from_overlay = it->from_overlay;
4944 switch (p->method)
4945 {
4946 case GET_FROM_IMAGE:
4947 p->u.image.object = it->object;
4948 p->u.image.image_id = it->image_id;
4949 p->u.image.slice = it->slice;
4950 break;
4951 case GET_FROM_STRETCH:
4952 p->u.stretch.object = it->object;
4953 break;
4954 }
4955 p->position = it->position;
4956 p->current = it->current;
4957 p->end_charpos = it->end_charpos;
4958 p->string_nchars = it->string_nchars;
4959 p->area = it->area;
4960 p->multibyte_p = it->multibyte_p;
4961 p->avoid_cursor_p = it->avoid_cursor_p;
4962 p->space_width = it->space_width;
4963 p->font_height = it->font_height;
4964 p->voffset = it->voffset;
4965 p->string_from_display_prop_p = it->string_from_display_prop_p;
4966 p->display_ellipsis_p = 0;
4967 p->line_wrap = it->line_wrap;
4968 ++it->sp;
4969 }
4970
4971 static void
4972 iterate_out_of_display_property (struct it *it)
4973 {
4974 /* Maybe initialize paragraph direction. If we are at the beginning
4975 of a new paragraph, next_element_from_buffer may not have a
4976 chance to do that. */
4977 if (it->bidi_it.first_elt && it->bidi_it.charpos < ZV)
4978 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it, 1);
4979 /* prev_stop can be zero, so check against BEGV as well. */
4980 while (it->bidi_it.charpos >= BEGV
4981 && it->prev_stop <= it->bidi_it.charpos
4982 && it->bidi_it.charpos < CHARPOS (it->position))
4983 bidi_move_to_visually_next (&it->bidi_it);
4984 /* Record the stop_pos we just crossed, for when we cross it
4985 back, maybe. */
4986 if (it->bidi_it.charpos > CHARPOS (it->position))
4987 it->prev_stop = CHARPOS (it->position);
4988 /* If we ended up not where pop_it put us, resync IT's
4989 positional members with the bidi iterator. */
4990 if (it->bidi_it.charpos != CHARPOS (it->position))
4991 {
4992 SET_TEXT_POS (it->position,
4993 it->bidi_it.charpos, it->bidi_it.bytepos);
4994 it->current.pos = it->position;
4995 }
4996 }
4997
4998 /* Restore IT's settings from IT->stack. Called, for example, when no
4999 more overlay strings must be processed, and we return to delivering
5000 display elements from a buffer, or when the end of a string from a
5001 `display' property is reached and we return to delivering display
5002 elements from an overlay string, or from a buffer. */
5003
5004 static void
5005 pop_it (struct it *it)
5006 {
5007 struct iterator_stack_entry *p;
5008
5009 xassert (it->sp > 0);
5010 --it->sp;
5011 p = it->stack + it->sp;
5012 it->stop_charpos = p->stop_charpos;
5013 it->prev_stop = p->prev_stop;
5014 it->base_level_stop = p->base_level_stop;
5015 it->cmp_it = p->cmp_it;
5016 it->face_id = p->face_id;
5017 it->current = p->current;
5018 it->position = p->position;
5019 it->string = p->string;
5020 it->from_overlay = p->from_overlay;
5021 if (NILP (it->string))
5022 SET_TEXT_POS (it->current.string_pos, -1, -1);
5023 it->method = p->method;
5024 switch (it->method)
5025 {
5026 case GET_FROM_IMAGE:
5027 it->image_id = p->u.image.image_id;
5028 it->object = p->u.image.object;
5029 it->slice = p->u.image.slice;
5030 break;
5031 case GET_FROM_STRETCH:
5032 it->object = p->u.comp.object;
5033 break;
5034 case GET_FROM_BUFFER:
5035 it->object = it->w->buffer;
5036 if (it->bidi_p)
5037 {
5038 /* Bidi-iterate until we get out of the portion of text, if
5039 any, covered by a `display' text property or an overlay
5040 with `display' property. (We cannot just jump there,
5041 because the internal coherency of the bidi iterator state
5042 can not be preserved across such jumps.) We also must
5043 determine the paragraph base direction if the overlay we
5044 just processed is at the beginning of a new
5045 paragraph. */
5046 iterate_out_of_display_property (it);
5047 }
5048 break;
5049 case GET_FROM_STRING:
5050 it->object = it->string;
5051 break;
5052 case GET_FROM_DISPLAY_VECTOR:
5053 if (it->s)
5054 it->method = GET_FROM_C_STRING;
5055 else if (STRINGP (it->string))
5056 it->method = GET_FROM_STRING;
5057 else
5058 {
5059 it->method = GET_FROM_BUFFER;
5060 it->object = it->w->buffer;
5061 }
5062 }
5063 it->end_charpos = p->end_charpos;
5064 it->string_nchars = p->string_nchars;
5065 it->area = p->area;
5066 it->multibyte_p = p->multibyte_p;
5067 it->avoid_cursor_p = p->avoid_cursor_p;
5068 it->space_width = p->space_width;
5069 it->font_height = p->font_height;
5070 it->voffset = p->voffset;
5071 it->string_from_display_prop_p = p->string_from_display_prop_p;
5072 it->line_wrap = p->line_wrap;
5073 }
5074
5075
5076 \f
5077 /***********************************************************************
5078 Moving over lines
5079 ***********************************************************************/
5080
5081 /* Set IT's current position to the previous line start. */
5082
5083 static void
5084 back_to_previous_line_start (struct it *it)
5085 {
5086 IT_CHARPOS (*it) = find_next_newline_no_quit (IT_CHARPOS (*it) - 1, -1);
5087 IT_BYTEPOS (*it) = CHAR_TO_BYTE (IT_CHARPOS (*it));
5088 }
5089
5090
5091 /* Move IT to the next line start.
5092
5093 Value is non-zero if a newline was found. Set *SKIPPED_P to 1 if
5094 we skipped over part of the text (as opposed to moving the iterator
5095 continuously over the text). Otherwise, don't change the value
5096 of *SKIPPED_P.
5097
5098 Newlines may come from buffer text, overlay strings, or strings
5099 displayed via the `display' property. That's the reason we can't
5100 simply use find_next_newline_no_quit.
5101
5102 Note that this function may not skip over invisible text that is so
5103 because of text properties and immediately follows a newline. If
5104 it would, function reseat_at_next_visible_line_start, when called
5105 from set_iterator_to_next, would effectively make invisible
5106 characters following a newline part of the wrong glyph row, which
5107 leads to wrong cursor motion. */
5108
5109 static int
5110 forward_to_next_line_start (struct it *it, int *skipped_p)
5111 {
5112 int old_selective, newline_found_p, n;
5113 const int MAX_NEWLINE_DISTANCE = 500;
5114
5115 /* If already on a newline, just consume it to avoid unintended
5116 skipping over invisible text below. */
5117 if (it->what == IT_CHARACTER
5118 && it->c == '\n'
5119 && CHARPOS (it->position) == IT_CHARPOS (*it))
5120 {
5121 set_iterator_to_next (it, 0);
5122 it->c = 0;
5123 return 1;
5124 }
5125
5126 /* Don't handle selective display in the following. It's (a)
5127 unnecessary because it's done by the caller, and (b) leads to an
5128 infinite recursion because next_element_from_ellipsis indirectly
5129 calls this function. */
5130 old_selective = it->selective;
5131 it->selective = 0;
5132
5133 /* Scan for a newline within MAX_NEWLINE_DISTANCE display elements
5134 from buffer text. */
5135 for (n = newline_found_p = 0;
5136 !newline_found_p && n < MAX_NEWLINE_DISTANCE;
5137 n += STRINGP (it->string) ? 0 : 1)
5138 {
5139 if (!get_next_display_element (it))
5140 return 0;
5141 newline_found_p = it->what == IT_CHARACTER && it->c == '\n';
5142 set_iterator_to_next (it, 0);
5143 }
5144
5145 /* If we didn't find a newline near enough, see if we can use a
5146 short-cut. */
5147 if (!newline_found_p)
5148 {
5149 EMACS_INT start = IT_CHARPOS (*it);
5150 EMACS_INT limit = find_next_newline_no_quit (start, 1);
5151 Lisp_Object pos;
5152
5153 xassert (!STRINGP (it->string));
5154
5155 /* If there isn't any `display' property in sight, and no
5156 overlays, we can just use the position of the newline in
5157 buffer text. */
5158 if (it->stop_charpos >= limit
5159 || ((pos = Fnext_single_property_change (make_number (start),
5160 Qdisplay,
5161 Qnil, make_number (limit)),
5162 NILP (pos))
5163 && next_overlay_change (start) == ZV))
5164 {
5165 IT_CHARPOS (*it) = limit;
5166 IT_BYTEPOS (*it) = CHAR_TO_BYTE (limit);
5167 *skipped_p = newline_found_p = 1;
5168 }
5169 else
5170 {
5171 while (get_next_display_element (it)
5172 && !newline_found_p)
5173 {
5174 newline_found_p = ITERATOR_AT_END_OF_LINE_P (it);
5175 set_iterator_to_next (it, 0);
5176 }
5177 }
5178 }
5179
5180 it->selective = old_selective;
5181 return newline_found_p;
5182 }
5183
5184
5185 /* Set IT's current position to the previous visible line start. Skip
5186 invisible text that is so either due to text properties or due to
5187 selective display. Caution: this does not change IT->current_x and
5188 IT->hpos. */
5189
5190 static void
5191 back_to_previous_visible_line_start (struct it *it)
5192 {
5193 while (IT_CHARPOS (*it) > BEGV)
5194 {
5195 back_to_previous_line_start (it);
5196
5197 if (IT_CHARPOS (*it) <= BEGV)
5198 break;
5199
5200 /* If selective > 0, then lines indented more than its value are
5201 invisible. */
5202 if (it->selective > 0
5203 && indented_beyond_p (IT_CHARPOS (*it), IT_BYTEPOS (*it),
5204 (double) it->selective)) /* iftc */
5205 continue;
5206
5207 /* Check the newline before point for invisibility. */
5208 {
5209 Lisp_Object prop;
5210 prop = Fget_char_property (make_number (IT_CHARPOS (*it) - 1),
5211 Qinvisible, it->window);
5212 if (TEXT_PROP_MEANS_INVISIBLE (prop))
5213 continue;
5214 }
5215
5216 if (IT_CHARPOS (*it) <= BEGV)
5217 break;
5218
5219 {
5220 struct it it2;
5221 EMACS_INT pos;
5222 EMACS_INT beg, end;
5223 Lisp_Object val, overlay;
5224
5225 /* If newline is part of a composition, continue from start of composition */
5226 if (find_composition (IT_CHARPOS (*it), -1, &beg, &end, &val, Qnil)
5227 && beg < IT_CHARPOS (*it))
5228 goto replaced;
5229
5230 /* If newline is replaced by a display property, find start of overlay
5231 or interval and continue search from that point. */
5232 it2 = *it;
5233 pos = --IT_CHARPOS (it2);
5234 --IT_BYTEPOS (it2);
5235 it2.sp = 0;
5236 it2.string_from_display_prop_p = 0;
5237 if (handle_display_prop (&it2) == HANDLED_RETURN
5238 && !NILP (val = get_char_property_and_overlay
5239 (make_number (pos), Qdisplay, Qnil, &overlay))
5240 && (OVERLAYP (overlay)
5241 ? (beg = OVERLAY_POSITION (OVERLAY_START (overlay)))
5242 : get_property_and_range (pos, Qdisplay, &val, &beg, &end, Qnil)))
5243 goto replaced;
5244
5245 /* Newline is not replaced by anything -- so we are done. */
5246 break;
5247
5248 replaced:
5249 if (beg < BEGV)
5250 beg = BEGV;
5251 IT_CHARPOS (*it) = beg;
5252 IT_BYTEPOS (*it) = buf_charpos_to_bytepos (current_buffer, beg);
5253 }
5254 }
5255
5256 it->continuation_lines_width = 0;
5257
5258 xassert (IT_CHARPOS (*it) >= BEGV);
5259 xassert (IT_CHARPOS (*it) == BEGV
5260 || FETCH_BYTE (IT_BYTEPOS (*it) - 1) == '\n');
5261 CHECK_IT (it);
5262 }
5263
5264
5265 /* Reseat iterator IT at the previous visible line start. Skip
5266 invisible text that is so either due to text properties or due to
5267 selective display. At the end, update IT's overlay information,
5268 face information etc. */
5269
5270 void
5271 reseat_at_previous_visible_line_start (struct it *it)
5272 {
5273 back_to_previous_visible_line_start (it);
5274 reseat (it, it->current.pos, 1);
5275 CHECK_IT (it);
5276 }
5277
5278
5279 /* Reseat iterator IT on the next visible line start in the current
5280 buffer. ON_NEWLINE_P non-zero means position IT on the newline
5281 preceding the line start. Skip over invisible text that is so
5282 because of selective display. Compute faces, overlays etc at the
5283 new position. Note that this function does not skip over text that
5284 is invisible because of text properties. */
5285
5286 static void
5287 reseat_at_next_visible_line_start (struct it *it, int on_newline_p)
5288 {
5289 int newline_found_p, skipped_p = 0;
5290
5291 newline_found_p = forward_to_next_line_start (it, &skipped_p);
5292
5293 /* Skip over lines that are invisible because they are indented
5294 more than the value of IT->selective. */
5295 if (it->selective > 0)
5296 while (IT_CHARPOS (*it) < ZV
5297 && indented_beyond_p (IT_CHARPOS (*it), IT_BYTEPOS (*it),
5298 (double) it->selective)) /* iftc */
5299 {
5300 xassert (IT_BYTEPOS (*it) == BEGV
5301 || FETCH_BYTE (IT_BYTEPOS (*it) - 1) == '\n');
5302 newline_found_p = forward_to_next_line_start (it, &skipped_p);
5303 }
5304
5305 /* Position on the newline if that's what's requested. */
5306 if (on_newline_p && newline_found_p)
5307 {
5308 if (STRINGP (it->string))
5309 {
5310 if (IT_STRING_CHARPOS (*it) > 0)
5311 {
5312 --IT_STRING_CHARPOS (*it);
5313 --IT_STRING_BYTEPOS (*it);
5314 }
5315 }
5316 else if (IT_CHARPOS (*it) > BEGV)
5317 {
5318 --IT_CHARPOS (*it);
5319 --IT_BYTEPOS (*it);
5320 reseat (it, it->current.pos, 0);
5321 }
5322 }
5323 else if (skipped_p)
5324 reseat (it, it->current.pos, 0);
5325
5326 CHECK_IT (it);
5327 }
5328
5329
5330 \f
5331 /***********************************************************************
5332 Changing an iterator's position
5333 ***********************************************************************/
5334
5335 /* Change IT's current position to POS in current_buffer. If FORCE_P
5336 is non-zero, always check for text properties at the new position.
5337 Otherwise, text properties are only looked up if POS >=
5338 IT->check_charpos of a property. */
5339
5340 static void
5341 reseat (struct it *it, struct text_pos pos, int force_p)
5342 {
5343 EMACS_INT original_pos = IT_CHARPOS (*it);
5344
5345 reseat_1 (it, pos, 0);
5346
5347 /* Determine where to check text properties. Avoid doing it
5348 where possible because text property lookup is very expensive. */
5349 if (force_p
5350 || CHARPOS (pos) > it->stop_charpos
5351 || CHARPOS (pos) < original_pos)
5352 {
5353 if (it->bidi_p)
5354 {
5355 /* For bidi iteration, we need to prime prev_stop and
5356 base_level_stop with our best estimations. */
5357 if (CHARPOS (pos) < it->prev_stop)
5358 {
5359 handle_stop_backwards (it, BEGV);
5360 if (CHARPOS (pos) < it->base_level_stop)
5361 it->base_level_stop = 0;
5362 }
5363 else if (CHARPOS (pos) > it->stop_charpos
5364 && it->stop_charpos >= BEGV)
5365 handle_stop_backwards (it, it->stop_charpos);
5366 else /* force_p */
5367 handle_stop (it);
5368 }
5369 else
5370 {
5371 handle_stop (it);
5372 it->prev_stop = it->base_level_stop = 0;
5373 }
5374
5375 }
5376
5377 CHECK_IT (it);
5378 }
5379
5380
5381 /* Change IT's buffer position to POS. SET_STOP_P non-zero means set
5382 IT->stop_pos to POS, also. */
5383
5384 static void
5385 reseat_1 (struct it *it, struct text_pos pos, int set_stop_p)
5386 {
5387 /* Don't call this function when scanning a C string. */
5388 xassert (it->s == NULL);
5389
5390 /* POS must be a reasonable value. */
5391 xassert (CHARPOS (pos) >= BEGV && CHARPOS (pos) <= ZV);
5392
5393 it->current.pos = it->position = pos;
5394 it->end_charpos = ZV;
5395 it->dpvec = NULL;
5396 it->current.dpvec_index = -1;
5397 it->current.overlay_string_index = -1;
5398 IT_STRING_CHARPOS (*it) = -1;
5399 IT_STRING_BYTEPOS (*it) = -1;
5400 it->string = Qnil;
5401 it->string_from_display_prop_p = 0;
5402 it->method = GET_FROM_BUFFER;
5403 it->object = it->w->buffer;
5404 it->area = TEXT_AREA;
5405 it->multibyte_p = !NILP (BVAR (current_buffer, enable_multibyte_characters));
5406 it->sp = 0;
5407 it->string_from_display_prop_p = 0;
5408 it->face_before_selective_p = 0;
5409 if (it->bidi_p)
5410 {
5411 it->bidi_it.first_elt = 1;
5412 it->bidi_it.paragraph_dir = NEUTRAL_DIR;
5413 }
5414
5415 if (set_stop_p)
5416 {
5417 it->stop_charpos = CHARPOS (pos);
5418 it->base_level_stop = CHARPOS (pos);
5419 }
5420 }
5421
5422
5423 /* Set up IT for displaying a string, starting at CHARPOS in window W.
5424 If S is non-null, it is a C string to iterate over. Otherwise,
5425 STRING gives a Lisp string to iterate over.
5426
5427 If PRECISION > 0, don't return more then PRECISION number of
5428 characters from the string.
5429
5430 If FIELD_WIDTH > 0, return padding spaces until FIELD_WIDTH
5431 characters have been returned. FIELD_WIDTH < 0 means an infinite
5432 field width.
5433
5434 MULTIBYTE = 0 means disable processing of multibyte characters,
5435 MULTIBYTE > 0 means enable it,
5436 MULTIBYTE < 0 means use IT->multibyte_p.
5437
5438 IT must be initialized via a prior call to init_iterator before
5439 calling this function. */
5440
5441 static void
5442 reseat_to_string (struct it *it, const char *s, Lisp_Object string,
5443 EMACS_INT charpos, EMACS_INT precision, int field_width,
5444 int multibyte)
5445 {
5446 /* No region in strings. */
5447 it->region_beg_charpos = it->region_end_charpos = -1;
5448
5449 /* No text property checks performed by default, but see below. */
5450 it->stop_charpos = -1;
5451
5452 /* Set iterator position and end position. */
5453 memset (&it->current, 0, sizeof it->current);
5454 it->current.overlay_string_index = -1;
5455 it->current.dpvec_index = -1;
5456 xassert (charpos >= 0);
5457
5458 /* If STRING is specified, use its multibyteness, otherwise use the
5459 setting of MULTIBYTE, if specified. */
5460 if (multibyte >= 0)
5461 it->multibyte_p = multibyte > 0;
5462
5463 if (s == NULL)
5464 {
5465 xassert (STRINGP (string));
5466 it->string = string;
5467 it->s = NULL;
5468 it->end_charpos = it->string_nchars = SCHARS (string);
5469 it->method = GET_FROM_STRING;
5470 it->current.string_pos = string_pos (charpos, string);
5471 }
5472 else
5473 {
5474 it->s = (const unsigned char *) s;
5475 it->string = Qnil;
5476
5477 /* Note that we use IT->current.pos, not it->current.string_pos,
5478 for displaying C strings. */
5479 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = -1;
5480 if (it->multibyte_p)
5481 {
5482 it->current.pos = c_string_pos (charpos, s, 1);
5483 it->end_charpos = it->string_nchars = number_of_chars (s, 1);
5484 }
5485 else
5486 {
5487 IT_CHARPOS (*it) = IT_BYTEPOS (*it) = charpos;
5488 it->end_charpos = it->string_nchars = strlen (s);
5489 }
5490
5491 it->method = GET_FROM_C_STRING;
5492 }
5493
5494 /* PRECISION > 0 means don't return more than PRECISION characters
5495 from the string. */
5496 if (precision > 0 && it->end_charpos - charpos > precision)
5497 it->end_charpos = it->string_nchars = charpos + precision;
5498
5499 /* FIELD_WIDTH > 0 means pad with spaces until FIELD_WIDTH
5500 characters have been returned. FIELD_WIDTH == 0 means don't pad,
5501 FIELD_WIDTH < 0 means infinite field width. This is useful for
5502 padding with `-' at the end of a mode line. */
5503 if (field_width < 0)
5504 field_width = INFINITY;
5505 if (field_width > it->end_charpos - charpos)
5506 it->end_charpos = charpos + field_width;
5507
5508 /* Use the standard display table for displaying strings. */
5509 if (DISP_TABLE_P (Vstandard_display_table))
5510 it->dp = XCHAR_TABLE (Vstandard_display_table);
5511
5512 it->stop_charpos = charpos;
5513 if (s == NULL && it->multibyte_p)
5514 {
5515 EMACS_INT endpos = SCHARS (it->string);
5516 if (endpos > it->end_charpos)
5517 endpos = it->end_charpos;
5518 composition_compute_stop_pos (&it->cmp_it, charpos, -1, endpos,
5519 it->string);
5520 }
5521 CHECK_IT (it);
5522 }
5523
5524
5525 \f
5526 /***********************************************************************
5527 Iteration
5528 ***********************************************************************/
5529
5530 /* Map enum it_method value to corresponding next_element_from_* function. */
5531
5532 static int (* get_next_element[NUM_IT_METHODS]) (struct it *it) =
5533 {
5534 next_element_from_buffer,
5535 next_element_from_display_vector,
5536 next_element_from_string,
5537 next_element_from_c_string,
5538 next_element_from_image,
5539 next_element_from_stretch
5540 };
5541
5542 #define GET_NEXT_DISPLAY_ELEMENT(it) (*get_next_element[(it)->method]) (it)
5543
5544
5545 /* Return 1 iff a character at CHARPOS (and BYTEPOS) is composed
5546 (possibly with the following characters). */
5547
5548 #define CHAR_COMPOSED_P(IT,CHARPOS,BYTEPOS,END_CHARPOS) \
5549 ((IT)->cmp_it.id >= 0 \
5550 || ((IT)->cmp_it.stop_pos == (CHARPOS) \
5551 && composition_reseat_it (&(IT)->cmp_it, CHARPOS, BYTEPOS, \
5552 END_CHARPOS, (IT)->w, \
5553 FACE_FROM_ID ((IT)->f, (IT)->face_id), \
5554 (IT)->string)))
5555
5556
5557 /* Lookup the char-table Vglyphless_char_display for character C (-1
5558 if we want information for no-font case), and return the display
5559 method symbol. By side-effect, update it->what and
5560 it->glyphless_method. This function is called from
5561 get_next_display_element for each character element, and from
5562 x_produce_glyphs when no suitable font was found. */
5563
5564 Lisp_Object
5565 lookup_glyphless_char_display (int c, struct it *it)
5566 {
5567 Lisp_Object glyphless_method = Qnil;
5568
5569 if (CHAR_TABLE_P (Vglyphless_char_display)
5570 && CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (Vglyphless_char_display)) >= 1)
5571 glyphless_method = (c >= 0
5572 ? CHAR_TABLE_REF (Vglyphless_char_display, c)
5573 : XCHAR_TABLE (Vglyphless_char_display)->extras[0]);
5574 retry:
5575 if (NILP (glyphless_method))
5576 {
5577 if (c >= 0)
5578 /* The default is to display the character by a proper font. */
5579 return Qnil;
5580 /* The default for the no-font case is to display an empty box. */
5581 glyphless_method = Qempty_box;
5582 }
5583 if (EQ (glyphless_method, Qzero_width))
5584 {
5585 if (c >= 0)
5586 return glyphless_method;
5587 /* This method can't be used for the no-font case. */
5588 glyphless_method = Qempty_box;
5589 }
5590 if (EQ (glyphless_method, Qthin_space))
5591 it->glyphless_method = GLYPHLESS_DISPLAY_THIN_SPACE;
5592 else if (EQ (glyphless_method, Qempty_box))
5593 it->glyphless_method = GLYPHLESS_DISPLAY_EMPTY_BOX;
5594 else if (EQ (glyphless_method, Qhex_code))
5595 it->glyphless_method = GLYPHLESS_DISPLAY_HEX_CODE;
5596 else if (STRINGP (glyphless_method))
5597 it->glyphless_method = GLYPHLESS_DISPLAY_ACRONYM;
5598 else
5599 {
5600 /* Invalid value. We use the default method. */
5601 glyphless_method = Qnil;
5602 goto retry;
5603 }
5604 it->what = IT_GLYPHLESS;
5605 return glyphless_method;
5606 }
5607
5608 /* Load IT's display element fields with information about the next
5609 display element from the current position of IT. Value is zero if
5610 end of buffer (or C string) is reached. */
5611
5612 static struct frame *last_escape_glyph_frame = NULL;
5613 static unsigned last_escape_glyph_face_id = (1 << FACE_ID_BITS);
5614 static int last_escape_glyph_merged_face_id = 0;
5615
5616 struct frame *last_glyphless_glyph_frame = NULL;
5617 unsigned last_glyphless_glyph_face_id = (1 << FACE_ID_BITS);
5618 int last_glyphless_glyph_merged_face_id = 0;
5619
5620 int
5621 get_next_display_element (struct it *it)
5622 {
5623 /* Non-zero means that we found a display element. Zero means that
5624 we hit the end of what we iterate over. Performance note: the
5625 function pointer `method' used here turns out to be faster than
5626 using a sequence of if-statements. */
5627 int success_p;
5628
5629 get_next:
5630 success_p = GET_NEXT_DISPLAY_ELEMENT (it);
5631
5632 if (it->what == IT_CHARACTER)
5633 {
5634 /* UAX#9, L4: "A character is depicted by a mirrored glyph if
5635 and only if (a) the resolved directionality of that character
5636 is R..." */
5637 /* FIXME: Do we need an exception for characters from display
5638 tables? */
5639 if (it->bidi_p && it->bidi_it.type == STRONG_R)
5640 it->c = bidi_mirror_char (it->c);
5641 /* Map via display table or translate control characters.
5642 IT->c, IT->len etc. have been set to the next character by
5643 the function call above. If we have a display table, and it
5644 contains an entry for IT->c, translate it. Don't do this if
5645 IT->c itself comes from a display table, otherwise we could
5646 end up in an infinite recursion. (An alternative could be to
5647 count the recursion depth of this function and signal an
5648 error when a certain maximum depth is reached.) Is it worth
5649 it? */
5650 if (success_p && it->dpvec == NULL)
5651 {
5652 Lisp_Object dv;
5653 struct charset *unibyte = CHARSET_FROM_ID (charset_unibyte);
5654 enum { char_is_other = 0, char_is_nbsp, char_is_soft_hyphen }
5655 nbsp_or_shy = char_is_other;
5656 int c = it->c; /* This is the character to display. */
5657
5658 if (! it->multibyte_p && ! ASCII_CHAR_P (c))
5659 {
5660 xassert (SINGLE_BYTE_CHAR_P (c));
5661 if (unibyte_display_via_language_environment)
5662 {
5663 c = DECODE_CHAR (unibyte, c);
5664 if (c < 0)
5665 c = BYTE8_TO_CHAR (it->c);
5666 }
5667 else
5668 c = BYTE8_TO_CHAR (it->c);
5669 }
5670
5671 if (it->dp
5672 && (dv = DISP_CHAR_VECTOR (it->dp, c),
5673 VECTORP (dv)))
5674 {
5675 struct Lisp_Vector *v = XVECTOR (dv);
5676
5677 /* Return the first character from the display table
5678 entry, if not empty. If empty, don't display the
5679 current character. */
5680 if (v->size)
5681 {
5682 it->dpvec_char_len = it->len;
5683 it->dpvec = v->contents;
5684 it->dpend = v->contents + v->size;
5685 it->current.dpvec_index = 0;
5686 it->dpvec_face_id = -1;
5687 it->saved_face_id = it->face_id;
5688 it->method = GET_FROM_DISPLAY_VECTOR;
5689 it->ellipsis_p = 0;
5690 }
5691 else
5692 {
5693 set_iterator_to_next (it, 0);
5694 }
5695 goto get_next;
5696 }
5697
5698 if (! NILP (lookup_glyphless_char_display (c, it)))
5699 {
5700 if (it->what == IT_GLYPHLESS)
5701 goto done;
5702 /* Don't display this character. */
5703 set_iterator_to_next (it, 0);
5704 goto get_next;
5705 }
5706
5707 if (! ASCII_CHAR_P (c) && ! NILP (Vnobreak_char_display))
5708 nbsp_or_shy = (c == 0xA0 ? char_is_nbsp
5709 : c == 0xAD ? char_is_soft_hyphen
5710 : char_is_other);
5711
5712 /* Translate control characters into `\003' or `^C' form.
5713 Control characters coming from a display table entry are
5714 currently not translated because we use IT->dpvec to hold
5715 the translation. This could easily be changed but I
5716 don't believe that it is worth doing.
5717
5718 NBSP and SOFT-HYPEN are property translated too.
5719
5720 Non-printable characters and raw-byte characters are also
5721 translated to octal form. */
5722 if (((c < ' ' || c == 127) /* ASCII control chars */
5723 ? (it->area != TEXT_AREA
5724 /* In mode line, treat \n, \t like other crl chars. */
5725 || (c != '\t'
5726 && it->glyph_row
5727 && (it->glyph_row->mode_line_p || it->avoid_cursor_p))
5728 || (c != '\n' && c != '\t'))
5729 : (nbsp_or_shy
5730 || CHAR_BYTE8_P (c)
5731 || ! CHAR_PRINTABLE_P (c))))
5732 {
5733 /* C is a control character, NBSP, SOFT-HYPEN, raw-byte,
5734 or a non-printable character which must be displayed
5735 either as '\003' or as `^C' where the '\\' and '^'
5736 can be defined in the display table. Fill
5737 IT->ctl_chars with glyphs for what we have to
5738 display. Then, set IT->dpvec to these glyphs. */
5739 Lisp_Object gc;
5740 int ctl_len;
5741 int face_id, lface_id = 0 ;
5742 int escape_glyph;
5743
5744 /* Handle control characters with ^. */
5745
5746 if (ASCII_CHAR_P (c) && it->ctl_arrow_p)
5747 {
5748 int g;
5749
5750 g = '^'; /* default glyph for Control */
5751 /* Set IT->ctl_chars[0] to the glyph for `^'. */
5752 if (it->dp
5753 && (gc = DISP_CTRL_GLYPH (it->dp), GLYPH_CODE_P (gc))
5754 && GLYPH_CODE_CHAR_VALID_P (gc))
5755 {
5756 g = GLYPH_CODE_CHAR (gc);
5757 lface_id = GLYPH_CODE_FACE (gc);
5758 }
5759 if (lface_id)
5760 {
5761 face_id = merge_faces (it->f, Qt, lface_id, it->face_id);
5762 }
5763 else if (it->f == last_escape_glyph_frame
5764 && it->face_id == last_escape_glyph_face_id)
5765 {
5766 face_id = last_escape_glyph_merged_face_id;
5767 }
5768 else
5769 {
5770 /* Merge the escape-glyph face into the current face. */
5771 face_id = merge_faces (it->f, Qescape_glyph, 0,
5772 it->face_id);
5773 last_escape_glyph_frame = it->f;
5774 last_escape_glyph_face_id = it->face_id;
5775 last_escape_glyph_merged_face_id = face_id;
5776 }
5777
5778 XSETINT (it->ctl_chars[0], g);
5779 XSETINT (it->ctl_chars[1], c ^ 0100);
5780 ctl_len = 2;
5781 goto display_control;
5782 }
5783
5784 /* Handle non-break space in the mode where it only gets
5785 highlighting. */
5786
5787 if (EQ (Vnobreak_char_display, Qt)
5788 && nbsp_or_shy == char_is_nbsp)
5789 {
5790 /* Merge the no-break-space face into the current face. */
5791 face_id = merge_faces (it->f, Qnobreak_space, 0,
5792 it->face_id);
5793
5794 c = ' ';
5795 XSETINT (it->ctl_chars[0], ' ');
5796 ctl_len = 1;
5797 goto display_control;
5798 }
5799
5800 /* Handle sequences that start with the "escape glyph". */
5801
5802 /* the default escape glyph is \. */
5803 escape_glyph = '\\';
5804
5805 if (it->dp
5806 && (gc = DISP_ESCAPE_GLYPH (it->dp), GLYPH_CODE_P (gc))
5807 && GLYPH_CODE_CHAR_VALID_P (gc))
5808 {
5809 escape_glyph = GLYPH_CODE_CHAR (gc);
5810 lface_id = GLYPH_CODE_FACE (gc);
5811 }
5812 if (lface_id)
5813 {
5814 /* The display table specified a face.
5815 Merge it into face_id and also into escape_glyph. */
5816 face_id = merge_faces (it->f, Qt, lface_id,
5817 it->face_id);
5818 }
5819 else if (it->f == last_escape_glyph_frame
5820 && it->face_id == last_escape_glyph_face_id)
5821 {
5822 face_id = last_escape_glyph_merged_face_id;
5823 }
5824 else
5825 {
5826 /* Merge the escape-glyph face into the current face. */
5827 face_id = merge_faces (it->f, Qescape_glyph, 0,
5828 it->face_id);
5829 last_escape_glyph_frame = it->f;
5830 last_escape_glyph_face_id = it->face_id;
5831 last_escape_glyph_merged_face_id = face_id;
5832 }
5833
5834 /* Handle soft hyphens in the mode where they only get
5835 highlighting. */
5836
5837 if (EQ (Vnobreak_char_display, Qt)
5838 && nbsp_or_shy == char_is_soft_hyphen)
5839 {
5840 XSETINT (it->ctl_chars[0], '-');
5841 ctl_len = 1;
5842 goto display_control;
5843 }
5844
5845 /* Handle non-break space and soft hyphen
5846 with the escape glyph. */
5847
5848 if (nbsp_or_shy)
5849 {
5850 XSETINT (it->ctl_chars[0], escape_glyph);
5851 c = (nbsp_or_shy == char_is_nbsp ? ' ' : '-');
5852 XSETINT (it->ctl_chars[1], c);
5853 ctl_len = 2;
5854 goto display_control;
5855 }
5856
5857 {
5858 char str[10];
5859 int len, i;
5860
5861 if (CHAR_BYTE8_P (c))
5862 /* Display \200 instead of \17777600. */
5863 c = CHAR_TO_BYTE8 (c);
5864 len = sprintf (str, "%03o", c);
5865
5866 XSETINT (it->ctl_chars[0], escape_glyph);
5867 for (i = 0; i < len; i++)
5868 XSETINT (it->ctl_chars[i + 1], str[i]);
5869 ctl_len = len + 1;
5870 }
5871
5872 display_control:
5873 /* Set up IT->dpvec and return first character from it. */
5874 it->dpvec_char_len = it->len;
5875 it->dpvec = it->ctl_chars;
5876 it->dpend = it->dpvec + ctl_len;
5877 it->current.dpvec_index = 0;
5878 it->dpvec_face_id = face_id;
5879 it->saved_face_id = it->face_id;
5880 it->method = GET_FROM_DISPLAY_VECTOR;
5881 it->ellipsis_p = 0;
5882 goto get_next;
5883 }
5884 it->char_to_display = c;
5885 }
5886 else if (success_p)
5887 {
5888 it->char_to_display = it->c;
5889 }
5890 }
5891
5892 #ifdef HAVE_WINDOW_SYSTEM
5893 /* Adjust face id for a multibyte character. There are no multibyte
5894 character in unibyte text. */
5895 if ((it->what == IT_CHARACTER || it->what == IT_COMPOSITION)
5896 && it->multibyte_p
5897 && success_p
5898 && FRAME_WINDOW_P (it->f))
5899 {
5900 struct face *face = FACE_FROM_ID (it->f, it->face_id);
5901
5902 if (it->what == IT_COMPOSITION && it->cmp_it.ch >= 0)
5903 {
5904 /* Automatic composition with glyph-string. */
5905 Lisp_Object gstring = composition_gstring_from_id (it->cmp_it.id);
5906
5907 it->face_id = face_for_font (it->f, LGSTRING_FONT (gstring), face);
5908 }
5909 else
5910 {
5911 EMACS_INT pos = (it->s ? -1
5912 : STRINGP (it->string) ? IT_STRING_CHARPOS (*it)
5913 : IT_CHARPOS (*it));
5914
5915 it->face_id = FACE_FOR_CHAR (it->f, face, it->char_to_display, pos,
5916 it->string);
5917 }
5918 }
5919 #endif
5920
5921 done:
5922 /* Is this character the last one of a run of characters with
5923 box? If yes, set IT->end_of_box_run_p to 1. */
5924 if (it->face_box_p
5925 && it->s == NULL)
5926 {
5927 if (it->method == GET_FROM_STRING && it->sp)
5928 {
5929 int face_id = underlying_face_id (it);
5930 struct face *face = FACE_FROM_ID (it->f, face_id);
5931
5932 if (face)
5933 {
5934 if (face->box == FACE_NO_BOX)
5935 {
5936 /* If the box comes from face properties in a
5937 display string, check faces in that string. */
5938 int string_face_id = face_after_it_pos (it);
5939 it->end_of_box_run_p
5940 = (FACE_FROM_ID (it->f, string_face_id)->box
5941 == FACE_NO_BOX);
5942 }
5943 /* Otherwise, the box comes from the underlying face.
5944 If this is the last string character displayed, check
5945 the next buffer location. */
5946 else if ((IT_STRING_CHARPOS (*it) >= SCHARS (it->string) - 1)
5947 && (it->current.overlay_string_index
5948 == it->n_overlay_strings - 1))
5949 {
5950 EMACS_INT ignore;
5951 int next_face_id;
5952 struct text_pos pos = it->current.pos;
5953 INC_TEXT_POS (pos, it->multibyte_p);
5954
5955 next_face_id = face_at_buffer_position
5956 (it->w, CHARPOS (pos), it->region_beg_charpos,
5957 it->region_end_charpos, &ignore,
5958 (IT_CHARPOS (*it) + TEXT_PROP_DISTANCE_LIMIT), 0,
5959 -1);
5960 it->end_of_box_run_p
5961 = (FACE_FROM_ID (it->f, next_face_id)->box
5962 == FACE_NO_BOX);
5963 }
5964 }
5965 }
5966 else
5967 {
5968 int face_id = face_after_it_pos (it);
5969 it->end_of_box_run_p
5970 = (face_id != it->face_id
5971 && FACE_FROM_ID (it->f, face_id)->box == FACE_NO_BOX);
5972 }
5973 }
5974
5975 /* Value is 0 if end of buffer or string reached. */
5976 return success_p;
5977 }
5978
5979
5980 /* Move IT to the next display element.
5981
5982 RESEAT_P non-zero means if called on a newline in buffer text,
5983 skip to the next visible line start.
5984
5985 Functions get_next_display_element and set_iterator_to_next are
5986 separate because I find this arrangement easier to handle than a
5987 get_next_display_element function that also increments IT's
5988 position. The way it is we can first look at an iterator's current
5989 display element, decide whether it fits on a line, and if it does,
5990 increment the iterator position. The other way around we probably
5991 would either need a flag indicating whether the iterator has to be
5992 incremented the next time, or we would have to implement a
5993 decrement position function which would not be easy to write. */
5994
5995 void
5996 set_iterator_to_next (struct it *it, int reseat_p)
5997 {
5998 /* Reset flags indicating start and end of a sequence of characters
5999 with box. Reset them at the start of this function because
6000 moving the iterator to a new position might set them. */
6001 it->start_of_box_run_p = it->end_of_box_run_p = 0;
6002
6003 switch (it->method)
6004 {
6005 case GET_FROM_BUFFER:
6006 /* The current display element of IT is a character from
6007 current_buffer. Advance in the buffer, and maybe skip over
6008 invisible lines that are so because of selective display. */
6009 if (ITERATOR_AT_END_OF_LINE_P (it) && reseat_p)
6010 reseat_at_next_visible_line_start (it, 0);
6011 else if (it->cmp_it.id >= 0)
6012 {
6013 /* We are currently getting glyphs from a composition. */
6014 int i;
6015
6016 if (! it->bidi_p)
6017 {
6018 IT_CHARPOS (*it) += it->cmp_it.nchars;
6019 IT_BYTEPOS (*it) += it->cmp_it.nbytes;
6020 if (it->cmp_it.to < it->cmp_it.nglyphs)
6021 {
6022 it->cmp_it.from = it->cmp_it.to;
6023 }
6024 else
6025 {
6026 it->cmp_it.id = -1;
6027 composition_compute_stop_pos (&it->cmp_it, IT_CHARPOS (*it),
6028 IT_BYTEPOS (*it),
6029 it->end_charpos, Qnil);
6030 }
6031 }
6032 else if (! it->cmp_it.reversed_p)
6033 {
6034 /* Composition created while scanning forward. */
6035 /* Update IT's char/byte positions to point to the first
6036 character of the next grapheme cluster, or to the
6037 character visually after the current composition. */
6038 for (i = 0; i < it->cmp_it.nchars; i++)
6039 bidi_move_to_visually_next (&it->bidi_it);
6040 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
6041 IT_CHARPOS (*it) = it->bidi_it.charpos;
6042
6043 if (it->cmp_it.to < it->cmp_it.nglyphs)
6044 {
6045 /* Proceed to the next grapheme cluster. */
6046 it->cmp_it.from = it->cmp_it.to;
6047 }
6048 else
6049 {
6050 /* No more grapheme clusters in this composition.
6051 Find the next stop position. */
6052 EMACS_INT stop = it->end_charpos;
6053 if (it->bidi_it.scan_dir < 0)
6054 /* Now we are scanning backward and don't know
6055 where to stop. */
6056 stop = -1;
6057 composition_compute_stop_pos (&it->cmp_it, IT_CHARPOS (*it),
6058 IT_BYTEPOS (*it), stop, Qnil);
6059 }
6060 }
6061 else
6062 {
6063 /* Composition created while scanning backward. */
6064 /* Update IT's char/byte positions to point to the last
6065 character of the previous grapheme cluster, or the
6066 character visually after the current composition. */
6067 for (i = 0; i < it->cmp_it.nchars; i++)
6068 bidi_move_to_visually_next (&it->bidi_it);
6069 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
6070 IT_CHARPOS (*it) = it->bidi_it.charpos;
6071 if (it->cmp_it.from > 0)
6072 {
6073 /* Proceed to the previous grapheme cluster. */
6074 it->cmp_it.to = it->cmp_it.from;
6075 }
6076 else
6077 {
6078 /* No more grapheme clusters in this composition.
6079 Find the next stop position. */
6080 EMACS_INT stop = it->end_charpos;
6081 if (it->bidi_it.scan_dir < 0)
6082 /* Now we are scanning backward and don't know
6083 where to stop. */
6084 stop = -1;
6085 composition_compute_stop_pos (&it->cmp_it, IT_CHARPOS (*it),
6086 IT_BYTEPOS (*it), stop, Qnil);
6087 }
6088 }
6089 }
6090 else
6091 {
6092 xassert (it->len != 0);
6093
6094 if (!it->bidi_p)
6095 {
6096 IT_BYTEPOS (*it) += it->len;
6097 IT_CHARPOS (*it) += 1;
6098 }
6099 else
6100 {
6101 int prev_scan_dir = it->bidi_it.scan_dir;
6102 /* If this is a new paragraph, determine its base
6103 direction (a.k.a. its base embedding level). */
6104 if (it->bidi_it.new_paragraph)
6105 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it, 0);
6106 bidi_move_to_visually_next (&it->bidi_it);
6107 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
6108 IT_CHARPOS (*it) = it->bidi_it.charpos;
6109 if (prev_scan_dir != it->bidi_it.scan_dir)
6110 {
6111 /* As the scan direction was changed, we must
6112 re-compute the stop position for composition. */
6113 EMACS_INT stop = it->end_charpos;
6114 if (it->bidi_it.scan_dir < 0)
6115 stop = -1;
6116 composition_compute_stop_pos (&it->cmp_it, IT_CHARPOS (*it),
6117 IT_BYTEPOS (*it), stop, Qnil);
6118 }
6119 }
6120 xassert (IT_BYTEPOS (*it) == CHAR_TO_BYTE (IT_CHARPOS (*it)));
6121 }
6122 break;
6123
6124 case GET_FROM_C_STRING:
6125 /* Current display element of IT is from a C string. */
6126 IT_BYTEPOS (*it) += it->len;
6127 IT_CHARPOS (*it) += 1;
6128 break;
6129
6130 case GET_FROM_DISPLAY_VECTOR:
6131 /* Current display element of IT is from a display table entry.
6132 Advance in the display table definition. Reset it to null if
6133 end reached, and continue with characters from buffers/
6134 strings. */
6135 ++it->current.dpvec_index;
6136
6137 /* Restore face of the iterator to what they were before the
6138 display vector entry (these entries may contain faces). */
6139 it->face_id = it->saved_face_id;
6140
6141 if (it->dpvec + it->current.dpvec_index == it->dpend)
6142 {
6143 int recheck_faces = it->ellipsis_p;
6144
6145 if (it->s)
6146 it->method = GET_FROM_C_STRING;
6147 else if (STRINGP (it->string))
6148 it->method = GET_FROM_STRING;
6149 else
6150 {
6151 it->method = GET_FROM_BUFFER;
6152 it->object = it->w->buffer;
6153 }
6154
6155 it->dpvec = NULL;
6156 it->current.dpvec_index = -1;
6157
6158 /* Skip over characters which were displayed via IT->dpvec. */
6159 if (it->dpvec_char_len < 0)
6160 reseat_at_next_visible_line_start (it, 1);
6161 else if (it->dpvec_char_len > 0)
6162 {
6163 if (it->method == GET_FROM_STRING
6164 && it->n_overlay_strings > 0)
6165 it->ignore_overlay_strings_at_pos_p = 1;
6166 it->len = it->dpvec_char_len;
6167 set_iterator_to_next (it, reseat_p);
6168 }
6169
6170 /* Maybe recheck faces after display vector */
6171 if (recheck_faces)
6172 it->stop_charpos = IT_CHARPOS (*it);
6173 }
6174 break;
6175
6176 case GET_FROM_STRING:
6177 /* Current display element is a character from a Lisp string. */
6178 xassert (it->s == NULL && STRINGP (it->string));
6179 if (it->cmp_it.id >= 0)
6180 {
6181 IT_STRING_CHARPOS (*it) += it->cmp_it.nchars;
6182 IT_STRING_BYTEPOS (*it) += it->cmp_it.nbytes;
6183 if (it->cmp_it.to < it->cmp_it.nglyphs)
6184 it->cmp_it.from = it->cmp_it.to;
6185 else
6186 {
6187 it->cmp_it.id = -1;
6188 composition_compute_stop_pos (&it->cmp_it,
6189 IT_STRING_CHARPOS (*it),
6190 IT_STRING_BYTEPOS (*it),
6191 it->end_charpos, it->string);
6192 }
6193 }
6194 else
6195 {
6196 IT_STRING_BYTEPOS (*it) += it->len;
6197 IT_STRING_CHARPOS (*it) += 1;
6198 }
6199
6200 consider_string_end:
6201
6202 if (it->current.overlay_string_index >= 0)
6203 {
6204 /* IT->string is an overlay string. Advance to the
6205 next, if there is one. */
6206 if (IT_STRING_CHARPOS (*it) >= SCHARS (it->string))
6207 {
6208 it->ellipsis_p = 0;
6209 next_overlay_string (it);
6210 if (it->ellipsis_p)
6211 setup_for_ellipsis (it, 0);
6212 }
6213 }
6214 else
6215 {
6216 /* IT->string is not an overlay string. If we reached
6217 its end, and there is something on IT->stack, proceed
6218 with what is on the stack. This can be either another
6219 string, this time an overlay string, or a buffer. */
6220 if (IT_STRING_CHARPOS (*it) == SCHARS (it->string)
6221 && it->sp > 0)
6222 {
6223 pop_it (it);
6224 if (it->method == GET_FROM_STRING)
6225 goto consider_string_end;
6226 }
6227 }
6228 break;
6229
6230 case GET_FROM_IMAGE:
6231 case GET_FROM_STRETCH:
6232 /* The position etc with which we have to proceed are on
6233 the stack. The position may be at the end of a string,
6234 if the `display' property takes up the whole string. */
6235 xassert (it->sp > 0);
6236 pop_it (it);
6237 if (it->method == GET_FROM_STRING)
6238 goto consider_string_end;
6239 break;
6240
6241 default:
6242 /* There are no other methods defined, so this should be a bug. */
6243 abort ();
6244 }
6245
6246 xassert (it->method != GET_FROM_STRING
6247 || (STRINGP (it->string)
6248 && IT_STRING_CHARPOS (*it) >= 0));
6249 }
6250
6251 /* Load IT's display element fields with information about the next
6252 display element which comes from a display table entry or from the
6253 result of translating a control character to one of the forms `^C'
6254 or `\003'.
6255
6256 IT->dpvec holds the glyphs to return as characters.
6257 IT->saved_face_id holds the face id before the display vector--it
6258 is restored into IT->face_id in set_iterator_to_next. */
6259
6260 static int
6261 next_element_from_display_vector (struct it *it)
6262 {
6263 Lisp_Object gc;
6264
6265 /* Precondition. */
6266 xassert (it->dpvec && it->current.dpvec_index >= 0);
6267
6268 it->face_id = it->saved_face_id;
6269
6270 /* KFS: This code used to check ip->dpvec[0] instead of the current element.
6271 That seemed totally bogus - so I changed it... */
6272 gc = it->dpvec[it->current.dpvec_index];
6273
6274 if (GLYPH_CODE_P (gc) && GLYPH_CODE_CHAR_VALID_P (gc))
6275 {
6276 it->c = GLYPH_CODE_CHAR (gc);
6277 it->len = CHAR_BYTES (it->c);
6278
6279 /* The entry may contain a face id to use. Such a face id is
6280 the id of a Lisp face, not a realized face. A face id of
6281 zero means no face is specified. */
6282 if (it->dpvec_face_id >= 0)
6283 it->face_id = it->dpvec_face_id;
6284 else
6285 {
6286 int lface_id = GLYPH_CODE_FACE (gc);
6287 if (lface_id > 0)
6288 it->face_id = merge_faces (it->f, Qt, lface_id,
6289 it->saved_face_id);
6290 }
6291 }
6292 else
6293 /* Display table entry is invalid. Return a space. */
6294 it->c = ' ', it->len = 1;
6295
6296 /* Don't change position and object of the iterator here. They are
6297 still the values of the character that had this display table
6298 entry or was translated, and that's what we want. */
6299 it->what = IT_CHARACTER;
6300 return 1;
6301 }
6302
6303
6304 /* Load IT with the next display element from Lisp string IT->string.
6305 IT->current.string_pos is the current position within the string.
6306 If IT->current.overlay_string_index >= 0, the Lisp string is an
6307 overlay string. */
6308
6309 static int
6310 next_element_from_string (struct it *it)
6311 {
6312 struct text_pos position;
6313
6314 xassert (STRINGP (it->string));
6315 xassert (IT_STRING_CHARPOS (*it) >= 0);
6316 position = it->current.string_pos;
6317
6318 /* Time to check for invisible text? */
6319 if (IT_STRING_CHARPOS (*it) < it->end_charpos
6320 && IT_STRING_CHARPOS (*it) == it->stop_charpos)
6321 {
6322 handle_stop (it);
6323
6324 /* Since a handler may have changed IT->method, we must
6325 recurse here. */
6326 return GET_NEXT_DISPLAY_ELEMENT (it);
6327 }
6328
6329 if (it->current.overlay_string_index >= 0)
6330 {
6331 /* Get the next character from an overlay string. In overlay
6332 strings, There is no field width or padding with spaces to
6333 do. */
6334 if (IT_STRING_CHARPOS (*it) >= SCHARS (it->string))
6335 {
6336 it->what = IT_EOB;
6337 return 0;
6338 }
6339 else if (CHAR_COMPOSED_P (it, IT_STRING_CHARPOS (*it),
6340 IT_STRING_BYTEPOS (*it), SCHARS (it->string))
6341 && next_element_from_composition (it))
6342 {
6343 return 1;
6344 }
6345 else if (STRING_MULTIBYTE (it->string))
6346 {
6347 const unsigned char *s = (SDATA (it->string)
6348 + IT_STRING_BYTEPOS (*it));
6349 it->c = string_char_and_length (s, &it->len);
6350 }
6351 else
6352 {
6353 it->c = SREF (it->string, IT_STRING_BYTEPOS (*it));
6354 it->len = 1;
6355 }
6356 }
6357 else
6358 {
6359 /* Get the next character from a Lisp string that is not an
6360 overlay string. Such strings come from the mode line, for
6361 example. We may have to pad with spaces, or truncate the
6362 string. See also next_element_from_c_string. */
6363 if (IT_STRING_CHARPOS (*it) >= it->end_charpos)
6364 {
6365 it->what = IT_EOB;
6366 return 0;
6367 }
6368 else if (IT_STRING_CHARPOS (*it) >= it->string_nchars)
6369 {
6370 /* Pad with spaces. */
6371 it->c = ' ', it->len = 1;
6372 CHARPOS (position) = BYTEPOS (position) = -1;
6373 }
6374 else if (CHAR_COMPOSED_P (it, IT_STRING_CHARPOS (*it),
6375 IT_STRING_BYTEPOS (*it), it->string_nchars)
6376 && next_element_from_composition (it))
6377 {
6378 return 1;
6379 }
6380 else if (STRING_MULTIBYTE (it->string))
6381 {
6382 const unsigned char *s = (SDATA (it->string)
6383 + IT_STRING_BYTEPOS (*it));
6384 it->c = string_char_and_length (s, &it->len);
6385 }
6386 else
6387 {
6388 it->c = SREF (it->string, IT_STRING_BYTEPOS (*it));
6389 it->len = 1;
6390 }
6391 }
6392
6393 /* Record what we have and where it came from. */
6394 it->what = IT_CHARACTER;
6395 it->object = it->string;
6396 it->position = position;
6397 return 1;
6398 }
6399
6400
6401 /* Load IT with next display element from C string IT->s.
6402 IT->string_nchars is the maximum number of characters to return
6403 from the string. IT->end_charpos may be greater than
6404 IT->string_nchars when this function is called, in which case we
6405 may have to return padding spaces. Value is zero if end of string
6406 reached, including padding spaces. */
6407
6408 static int
6409 next_element_from_c_string (struct it *it)
6410 {
6411 int success_p = 1;
6412
6413 xassert (it->s);
6414 it->what = IT_CHARACTER;
6415 BYTEPOS (it->position) = CHARPOS (it->position) = 0;
6416 it->object = Qnil;
6417
6418 /* IT's position can be greater IT->string_nchars in case a field
6419 width or precision has been specified when the iterator was
6420 initialized. */
6421 if (IT_CHARPOS (*it) >= it->end_charpos)
6422 {
6423 /* End of the game. */
6424 it->what = IT_EOB;
6425 success_p = 0;
6426 }
6427 else if (IT_CHARPOS (*it) >= it->string_nchars)
6428 {
6429 /* Pad with spaces. */
6430 it->c = ' ', it->len = 1;
6431 BYTEPOS (it->position) = CHARPOS (it->position) = -1;
6432 }
6433 else if (it->multibyte_p)
6434 it->c = string_char_and_length (it->s + IT_BYTEPOS (*it), &it->len);
6435 else
6436 it->c = it->s[IT_BYTEPOS (*it)], it->len = 1;
6437
6438 return success_p;
6439 }
6440
6441
6442 /* Set up IT to return characters from an ellipsis, if appropriate.
6443 The definition of the ellipsis glyphs may come from a display table
6444 entry. This function fills IT with the first glyph from the
6445 ellipsis if an ellipsis is to be displayed. */
6446
6447 static int
6448 next_element_from_ellipsis (struct it *it)
6449 {
6450 if (it->selective_display_ellipsis_p)
6451 setup_for_ellipsis (it, it->len);
6452 else
6453 {
6454 /* The face at the current position may be different from the
6455 face we find after the invisible text. Remember what it
6456 was in IT->saved_face_id, and signal that it's there by
6457 setting face_before_selective_p. */
6458 it->saved_face_id = it->face_id;
6459 it->method = GET_FROM_BUFFER;
6460 it->object = it->w->buffer;
6461 reseat_at_next_visible_line_start (it, 1);
6462 it->face_before_selective_p = 1;
6463 }
6464
6465 return GET_NEXT_DISPLAY_ELEMENT (it);
6466 }
6467
6468
6469 /* Deliver an image display element. The iterator IT is already
6470 filled with image information (done in handle_display_prop). Value
6471 is always 1. */
6472
6473
6474 static int
6475 next_element_from_image (struct it *it)
6476 {
6477 it->what = IT_IMAGE;
6478 it->ignore_overlay_strings_at_pos_p = 0;
6479 return 1;
6480 }
6481
6482
6483 /* Fill iterator IT with next display element from a stretch glyph
6484 property. IT->object is the value of the text property. Value is
6485 always 1. */
6486
6487 static int
6488 next_element_from_stretch (struct it *it)
6489 {
6490 it->what = IT_STRETCH;
6491 return 1;
6492 }
6493
6494 /* Scan forward from CHARPOS in the current buffer, until we find a
6495 stop position > current IT's position. Then handle the stop
6496 position before that. This is called when we bump into a stop
6497 position while reordering bidirectional text. CHARPOS should be
6498 the last previously processed stop_pos (or BEGV, if none were
6499 processed yet) whose position is less that IT's current
6500 position. */
6501
6502 static void
6503 handle_stop_backwards (struct it *it, EMACS_INT charpos)
6504 {
6505 EMACS_INT where_we_are = IT_CHARPOS (*it);
6506 struct display_pos save_current = it->current;
6507 struct text_pos save_position = it->position;
6508 struct text_pos pos1;
6509 EMACS_INT next_stop;
6510
6511 /* Scan in strict logical order. */
6512 it->bidi_p = 0;
6513 do
6514 {
6515 it->prev_stop = charpos;
6516 SET_TEXT_POS (pos1, charpos, CHAR_TO_BYTE (charpos));
6517 reseat_1 (it, pos1, 0);
6518 compute_stop_pos (it);
6519 /* We must advance forward, right? */
6520 if (it->stop_charpos <= it->prev_stop)
6521 abort ();
6522 charpos = it->stop_charpos;
6523 }
6524 while (charpos <= where_we_are);
6525
6526 next_stop = it->stop_charpos;
6527 it->stop_charpos = it->prev_stop;
6528 it->bidi_p = 1;
6529 it->current = save_current;
6530 it->position = save_position;
6531 handle_stop (it);
6532 it->stop_charpos = next_stop;
6533 }
6534
6535 /* Load IT with the next display element from current_buffer. Value
6536 is zero if end of buffer reached. IT->stop_charpos is the next
6537 position at which to stop and check for text properties or buffer
6538 end. */
6539
6540 static int
6541 next_element_from_buffer (struct it *it)
6542 {
6543 int success_p = 1;
6544
6545 xassert (IT_CHARPOS (*it) >= BEGV);
6546
6547 /* With bidi reordering, the character to display might not be the
6548 character at IT_CHARPOS. BIDI_IT.FIRST_ELT non-zero means that
6549 we were reseat()ed to a new buffer position, which is potentially
6550 a different paragraph. */
6551 if (it->bidi_p && it->bidi_it.first_elt)
6552 {
6553 it->bidi_it.charpos = IT_CHARPOS (*it);
6554 it->bidi_it.bytepos = IT_BYTEPOS (*it);
6555 if (it->bidi_it.bytepos == ZV_BYTE)
6556 {
6557 /* Nothing to do, but reset the FIRST_ELT flag, like
6558 bidi_paragraph_init does, because we are not going to
6559 call it. */
6560 it->bidi_it.first_elt = 0;
6561 }
6562 else if (it->bidi_it.bytepos == BEGV_BYTE
6563 /* FIXME: Should support all Unicode line separators. */
6564 || FETCH_CHAR (it->bidi_it.bytepos - 1) == '\n'
6565 || FETCH_CHAR (it->bidi_it.bytepos) == '\n')
6566 {
6567 /* If we are at the beginning of a line, we can produce the
6568 next element right away. */
6569 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it, 1);
6570 bidi_move_to_visually_next (&it->bidi_it);
6571 }
6572 else
6573 {
6574 EMACS_INT orig_bytepos = IT_BYTEPOS (*it);
6575
6576 /* We need to prime the bidi iterator starting at the line's
6577 beginning, before we will be able to produce the next
6578 element. */
6579 IT_CHARPOS (*it) = find_next_newline_no_quit (IT_CHARPOS (*it), -1);
6580 IT_BYTEPOS (*it) = CHAR_TO_BYTE (IT_CHARPOS (*it));
6581 it->bidi_it.charpos = IT_CHARPOS (*it);
6582 it->bidi_it.bytepos = IT_BYTEPOS (*it);
6583 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it, 1);
6584 do
6585 {
6586 /* Now return to buffer position where we were asked to
6587 get the next display element, and produce that. */
6588 bidi_move_to_visually_next (&it->bidi_it);
6589 }
6590 while (it->bidi_it.bytepos != orig_bytepos
6591 && it->bidi_it.bytepos < ZV_BYTE);
6592 }
6593
6594 it->bidi_it.first_elt = 0; /* paranoia: bidi.c does this */
6595 /* Adjust IT's position information to where we ended up. */
6596 IT_CHARPOS (*it) = it->bidi_it.charpos;
6597 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
6598 SET_TEXT_POS (it->position, IT_CHARPOS (*it), IT_BYTEPOS (*it));
6599 {
6600 EMACS_INT stop = it->end_charpos;
6601 if (it->bidi_it.scan_dir < 0)
6602 stop = -1;
6603 composition_compute_stop_pos (&it->cmp_it, IT_CHARPOS (*it),
6604 IT_BYTEPOS (*it), stop, Qnil);
6605 }
6606 }
6607
6608 if (IT_CHARPOS (*it) >= it->stop_charpos)
6609 {
6610 if (IT_CHARPOS (*it) >= it->end_charpos)
6611 {
6612 int overlay_strings_follow_p;
6613
6614 /* End of the game, except when overlay strings follow that
6615 haven't been returned yet. */
6616 if (it->overlay_strings_at_end_processed_p)
6617 overlay_strings_follow_p = 0;
6618 else
6619 {
6620 it->overlay_strings_at_end_processed_p = 1;
6621 overlay_strings_follow_p = get_overlay_strings (it, 0);
6622 }
6623
6624 if (overlay_strings_follow_p)
6625 success_p = GET_NEXT_DISPLAY_ELEMENT (it);
6626 else
6627 {
6628 it->what = IT_EOB;
6629 it->position = it->current.pos;
6630 success_p = 0;
6631 }
6632 }
6633 else if (!(!it->bidi_p
6634 || BIDI_AT_BASE_LEVEL (it->bidi_it)
6635 || IT_CHARPOS (*it) == it->stop_charpos))
6636 {
6637 /* With bidi non-linear iteration, we could find ourselves
6638 far beyond the last computed stop_charpos, with several
6639 other stop positions in between that we missed. Scan
6640 them all now, in buffer's logical order, until we find
6641 and handle the last stop_charpos that precedes our
6642 current position. */
6643 handle_stop_backwards (it, it->stop_charpos);
6644 return GET_NEXT_DISPLAY_ELEMENT (it);
6645 }
6646 else
6647 {
6648 if (it->bidi_p)
6649 {
6650 /* Take note of the stop position we just moved across,
6651 for when we will move back across it. */
6652 it->prev_stop = it->stop_charpos;
6653 /* If we are at base paragraph embedding level, take
6654 note of the last stop position seen at this
6655 level. */
6656 if (BIDI_AT_BASE_LEVEL (it->bidi_it))
6657 it->base_level_stop = it->stop_charpos;
6658 }
6659 handle_stop (it);
6660 return GET_NEXT_DISPLAY_ELEMENT (it);
6661 }
6662 }
6663 else if (it->bidi_p
6664 /* We can sometimes back up for reasons that have nothing
6665 to do with bidi reordering. E.g., compositions. The
6666 code below is only needed when we are above the base
6667 embedding level, so test for that explicitly. */
6668 && !BIDI_AT_BASE_LEVEL (it->bidi_it)
6669 && IT_CHARPOS (*it) < it->prev_stop)
6670 {
6671 if (it->base_level_stop <= 0)
6672 it->base_level_stop = BEGV;
6673 if (IT_CHARPOS (*it) < it->base_level_stop)
6674 abort ();
6675 handle_stop_backwards (it, it->base_level_stop);
6676 return GET_NEXT_DISPLAY_ELEMENT (it);
6677 }
6678 else
6679 {
6680 /* No face changes, overlays etc. in sight, so just return a
6681 character from current_buffer. */
6682 unsigned char *p;
6683 EMACS_INT stop;
6684
6685 /* Maybe run the redisplay end trigger hook. Performance note:
6686 This doesn't seem to cost measurable time. */
6687 if (it->redisplay_end_trigger_charpos
6688 && it->glyph_row
6689 && IT_CHARPOS (*it) >= it->redisplay_end_trigger_charpos)
6690 run_redisplay_end_trigger_hook (it);
6691
6692 stop = it->bidi_it.scan_dir < 0 ? -1 : it->end_charpos;
6693 if (CHAR_COMPOSED_P (it, IT_CHARPOS (*it), IT_BYTEPOS (*it),
6694 stop)
6695 && next_element_from_composition (it))
6696 {
6697 return 1;
6698 }
6699
6700 /* Get the next character, maybe multibyte. */
6701 p = BYTE_POS_ADDR (IT_BYTEPOS (*it));
6702 if (it->multibyte_p && !ASCII_BYTE_P (*p))
6703 it->c = STRING_CHAR_AND_LENGTH (p, it->len);
6704 else
6705 it->c = *p, it->len = 1;
6706
6707 /* Record what we have and where it came from. */
6708 it->what = IT_CHARACTER;
6709 it->object = it->w->buffer;
6710 it->position = it->current.pos;
6711
6712 /* Normally we return the character found above, except when we
6713 really want to return an ellipsis for selective display. */
6714 if (it->selective)
6715 {
6716 if (it->c == '\n')
6717 {
6718 /* A value of selective > 0 means hide lines indented more
6719 than that number of columns. */
6720 if (it->selective > 0
6721 && IT_CHARPOS (*it) + 1 < ZV
6722 && indented_beyond_p (IT_CHARPOS (*it) + 1,
6723 IT_BYTEPOS (*it) + 1,
6724 (double) it->selective)) /* iftc */
6725 {
6726 success_p = next_element_from_ellipsis (it);
6727 it->dpvec_char_len = -1;
6728 }
6729 }
6730 else if (it->c == '\r' && it->selective == -1)
6731 {
6732 /* A value of selective == -1 means that everything from the
6733 CR to the end of the line is invisible, with maybe an
6734 ellipsis displayed for it. */
6735 success_p = next_element_from_ellipsis (it);
6736 it->dpvec_char_len = -1;
6737 }
6738 }
6739 }
6740
6741 /* Value is zero if end of buffer reached. */
6742 xassert (!success_p || it->what != IT_CHARACTER || it->len > 0);
6743 return success_p;
6744 }
6745
6746
6747 /* Run the redisplay end trigger hook for IT. */
6748
6749 static void
6750 run_redisplay_end_trigger_hook (struct it *it)
6751 {
6752 Lisp_Object args[3];
6753
6754 /* IT->glyph_row should be non-null, i.e. we should be actually
6755 displaying something, or otherwise we should not run the hook. */
6756 xassert (it->glyph_row);
6757
6758 /* Set up hook arguments. */
6759 args[0] = Qredisplay_end_trigger_functions;
6760 args[1] = it->window;
6761 XSETINT (args[2], it->redisplay_end_trigger_charpos);
6762 it->redisplay_end_trigger_charpos = 0;
6763
6764 /* Since we are *trying* to run these functions, don't try to run
6765 them again, even if they get an error. */
6766 it->w->redisplay_end_trigger = Qnil;
6767 Frun_hook_with_args (3, args);
6768
6769 /* Notice if it changed the face of the character we are on. */
6770 handle_face_prop (it);
6771 }
6772
6773
6774 /* Deliver a composition display element. Unlike the other
6775 next_element_from_XXX, this function is not registered in the array
6776 get_next_element[]. It is called from next_element_from_buffer and
6777 next_element_from_string when necessary. */
6778
6779 static int
6780 next_element_from_composition (struct it *it)
6781 {
6782 it->what = IT_COMPOSITION;
6783 it->len = it->cmp_it.nbytes;
6784 if (STRINGP (it->string))
6785 {
6786 if (it->c < 0)
6787 {
6788 IT_STRING_CHARPOS (*it) += it->cmp_it.nchars;
6789 IT_STRING_BYTEPOS (*it) += it->cmp_it.nbytes;
6790 return 0;
6791 }
6792 it->position = it->current.string_pos;
6793 it->object = it->string;
6794 it->c = composition_update_it (&it->cmp_it, IT_STRING_CHARPOS (*it),
6795 IT_STRING_BYTEPOS (*it), it->string);
6796 }
6797 else
6798 {
6799 if (it->c < 0)
6800 {
6801 IT_CHARPOS (*it) += it->cmp_it.nchars;
6802 IT_BYTEPOS (*it) += it->cmp_it.nbytes;
6803 if (it->bidi_p)
6804 {
6805 if (it->bidi_it.new_paragraph)
6806 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it, 0);
6807 /* Resync the bidi iterator with IT's new position.
6808 FIXME: this doesn't support bidirectional text. */
6809 while (it->bidi_it.charpos < IT_CHARPOS (*it))
6810 bidi_move_to_visually_next (&it->bidi_it);
6811 }
6812 return 0;
6813 }
6814 it->position = it->current.pos;
6815 it->object = it->w->buffer;
6816 it->c = composition_update_it (&it->cmp_it, IT_CHARPOS (*it),
6817 IT_BYTEPOS (*it), Qnil);
6818 }
6819 return 1;
6820 }
6821
6822
6823 \f
6824 /***********************************************************************
6825 Moving an iterator without producing glyphs
6826 ***********************************************************************/
6827
6828 /* Check if iterator is at a position corresponding to a valid buffer
6829 position after some move_it_ call. */
6830
6831 #define IT_POS_VALID_AFTER_MOVE_P(it) \
6832 ((it)->method == GET_FROM_STRING \
6833 ? IT_STRING_CHARPOS (*it) == 0 \
6834 : 1)
6835
6836
6837 /* Move iterator IT to a specified buffer or X position within one
6838 line on the display without producing glyphs.
6839
6840 OP should be a bit mask including some or all of these bits:
6841 MOVE_TO_X: Stop upon reaching x-position TO_X.
6842 MOVE_TO_POS: Stop upon reaching buffer or string position TO_CHARPOS.
6843 Regardless of OP's value, stop upon reaching the end of the display line.
6844
6845 TO_X is normally a value 0 <= TO_X <= IT->last_visible_x.
6846 This means, in particular, that TO_X includes window's horizontal
6847 scroll amount.
6848
6849 The return value has several possible values that
6850 say what condition caused the scan to stop:
6851
6852 MOVE_POS_MATCH_OR_ZV
6853 - when TO_POS or ZV was reached.
6854
6855 MOVE_X_REACHED
6856 -when TO_X was reached before TO_POS or ZV were reached.
6857
6858 MOVE_LINE_CONTINUED
6859 - when we reached the end of the display area and the line must
6860 be continued.
6861
6862 MOVE_LINE_TRUNCATED
6863 - when we reached the end of the display area and the line is
6864 truncated.
6865
6866 MOVE_NEWLINE_OR_CR
6867 - when we stopped at a line end, i.e. a newline or a CR and selective
6868 display is on. */
6869
6870 static enum move_it_result
6871 move_it_in_display_line_to (struct it *it,
6872 EMACS_INT to_charpos, int to_x,
6873 enum move_operation_enum op)
6874 {
6875 enum move_it_result result = MOVE_UNDEFINED;
6876 struct glyph_row *saved_glyph_row;
6877 struct it wrap_it, atpos_it, atx_it;
6878 int may_wrap = 0;
6879 enum it_method prev_method = it->method;
6880 EMACS_INT prev_pos = IT_CHARPOS (*it);
6881
6882 /* Don't produce glyphs in produce_glyphs. */
6883 saved_glyph_row = it->glyph_row;
6884 it->glyph_row = NULL;
6885
6886 /* Use wrap_it to save a copy of IT wherever a word wrap could
6887 occur. Use atpos_it to save a copy of IT at the desired buffer
6888 position, if found, so that we can scan ahead and check if the
6889 word later overshoots the window edge. Use atx_it similarly, for
6890 pixel positions. */
6891 wrap_it.sp = -1;
6892 atpos_it.sp = -1;
6893 atx_it.sp = -1;
6894
6895 #define BUFFER_POS_REACHED_P() \
6896 ((op & MOVE_TO_POS) != 0 \
6897 && BUFFERP (it->object) \
6898 && (IT_CHARPOS (*it) == to_charpos \
6899 || (!it->bidi_p && IT_CHARPOS (*it) > to_charpos)) \
6900 && (it->method == GET_FROM_BUFFER \
6901 || (it->method == GET_FROM_DISPLAY_VECTOR \
6902 && it->dpvec + it->current.dpvec_index + 1 >= it->dpend)))
6903
6904 /* If there's a line-/wrap-prefix, handle it. */
6905 if (it->hpos == 0 && it->method == GET_FROM_BUFFER
6906 && it->current_y < it->last_visible_y)
6907 handle_line_prefix (it);
6908
6909 if (IT_CHARPOS (*it) < CHARPOS (this_line_min_pos))
6910 SET_TEXT_POS (this_line_min_pos, IT_CHARPOS (*it), IT_BYTEPOS (*it));
6911
6912 while (1)
6913 {
6914 int x, i, ascent = 0, descent = 0;
6915
6916 /* Utility macro to reset an iterator with x, ascent, and descent. */
6917 #define IT_RESET_X_ASCENT_DESCENT(IT) \
6918 ((IT)->current_x = x, (IT)->max_ascent = ascent, \
6919 (IT)->max_descent = descent)
6920
6921 /* Stop if we move beyond TO_CHARPOS (after an image or stretch
6922 glyph). */
6923 if ((op & MOVE_TO_POS) != 0
6924 && BUFFERP (it->object)
6925 && it->method == GET_FROM_BUFFER
6926 && ((!it->bidi_p && IT_CHARPOS (*it) > to_charpos)
6927 || (it->bidi_p
6928 && (prev_method == GET_FROM_IMAGE
6929 || prev_method == GET_FROM_STRETCH)
6930 /* Passed TO_CHARPOS from left to right. */
6931 && ((prev_pos < to_charpos
6932 && IT_CHARPOS (*it) > to_charpos)
6933 /* Passed TO_CHARPOS from right to left. */
6934 || (prev_pos > to_charpos
6935 && IT_CHARPOS (*it) < to_charpos)))))
6936 {
6937 if (it->line_wrap != WORD_WRAP || wrap_it.sp < 0)
6938 {
6939 result = MOVE_POS_MATCH_OR_ZV;
6940 break;
6941 }
6942 else if (it->line_wrap == WORD_WRAP && atpos_it.sp < 0)
6943 /* If wrap_it is valid, the current position might be in a
6944 word that is wrapped. So, save the iterator in
6945 atpos_it and continue to see if wrapping happens. */
6946 atpos_it = *it;
6947 }
6948
6949 prev_method = it->method;
6950 if (it->method == GET_FROM_BUFFER)
6951 prev_pos = IT_CHARPOS (*it);
6952 /* Stop when ZV reached.
6953 We used to stop here when TO_CHARPOS reached as well, but that is
6954 too soon if this glyph does not fit on this line. So we handle it
6955 explicitly below. */
6956 if (!get_next_display_element (it))
6957 {
6958 result = MOVE_POS_MATCH_OR_ZV;
6959 break;
6960 }
6961
6962 if (it->line_wrap == TRUNCATE)
6963 {
6964 if (BUFFER_POS_REACHED_P ())
6965 {
6966 result = MOVE_POS_MATCH_OR_ZV;
6967 break;
6968 }
6969 }
6970 else
6971 {
6972 if (it->line_wrap == WORD_WRAP)
6973 {
6974 if (IT_DISPLAYING_WHITESPACE (it))
6975 may_wrap = 1;
6976 else if (may_wrap)
6977 {
6978 /* We have reached a glyph that follows one or more
6979 whitespace characters. If the position is
6980 already found, we are done. */
6981 if (atpos_it.sp >= 0)
6982 {
6983 *it = atpos_it;
6984 result = MOVE_POS_MATCH_OR_ZV;
6985 goto done;
6986 }
6987 if (atx_it.sp >= 0)
6988 {
6989 *it = atx_it;
6990 result = MOVE_X_REACHED;
6991 goto done;
6992 }
6993 /* Otherwise, we can wrap here. */
6994 wrap_it = *it;
6995 may_wrap = 0;
6996 }
6997 }
6998 }
6999
7000 /* Remember the line height for the current line, in case
7001 the next element doesn't fit on the line. */
7002 ascent = it->max_ascent;
7003 descent = it->max_descent;
7004
7005 /* The call to produce_glyphs will get the metrics of the
7006 display element IT is loaded with. Record the x-position
7007 before this display element, in case it doesn't fit on the
7008 line. */
7009 x = it->current_x;
7010
7011 PRODUCE_GLYPHS (it);
7012
7013 if (it->area != TEXT_AREA)
7014 {
7015 set_iterator_to_next (it, 1);
7016 if (IT_CHARPOS (*it) < CHARPOS (this_line_min_pos))
7017 SET_TEXT_POS (this_line_min_pos,
7018 IT_CHARPOS (*it), IT_BYTEPOS (*it));
7019 continue;
7020 }
7021
7022 /* The number of glyphs we get back in IT->nglyphs will normally
7023 be 1 except when IT->c is (i) a TAB, or (ii) a multi-glyph
7024 character on a terminal frame, or (iii) a line end. For the
7025 second case, IT->nglyphs - 1 padding glyphs will be present.
7026 (On X frames, there is only one glyph produced for a
7027 composite character.)
7028
7029 The behavior implemented below means, for continuation lines,
7030 that as many spaces of a TAB as fit on the current line are
7031 displayed there. For terminal frames, as many glyphs of a
7032 multi-glyph character are displayed in the current line, too.
7033 This is what the old redisplay code did, and we keep it that
7034 way. Under X, the whole shape of a complex character must
7035 fit on the line or it will be completely displayed in the
7036 next line.
7037
7038 Note that both for tabs and padding glyphs, all glyphs have
7039 the same width. */
7040 if (it->nglyphs)
7041 {
7042 /* More than one glyph or glyph doesn't fit on line. All
7043 glyphs have the same width. */
7044 int single_glyph_width = it->pixel_width / it->nglyphs;
7045 int new_x;
7046 int x_before_this_char = x;
7047 int hpos_before_this_char = it->hpos;
7048
7049 for (i = 0; i < it->nglyphs; ++i, x = new_x)
7050 {
7051 new_x = x + single_glyph_width;
7052
7053 /* We want to leave anything reaching TO_X to the caller. */
7054 if ((op & MOVE_TO_X) && new_x > to_x)
7055 {
7056 if (BUFFER_POS_REACHED_P ())
7057 {
7058 if (it->line_wrap != WORD_WRAP || wrap_it.sp < 0)
7059 goto buffer_pos_reached;
7060 if (atpos_it.sp < 0)
7061 {
7062 atpos_it = *it;
7063 IT_RESET_X_ASCENT_DESCENT (&atpos_it);
7064 }
7065 }
7066 else
7067 {
7068 if (it->line_wrap != WORD_WRAP || wrap_it.sp < 0)
7069 {
7070 it->current_x = x;
7071 result = MOVE_X_REACHED;
7072 break;
7073 }
7074 if (atx_it.sp < 0)
7075 {
7076 atx_it = *it;
7077 IT_RESET_X_ASCENT_DESCENT (&atx_it);
7078 }
7079 }
7080 }
7081
7082 if (/* Lines are continued. */
7083 it->line_wrap != TRUNCATE
7084 && (/* And glyph doesn't fit on the line. */
7085 new_x > it->last_visible_x
7086 /* Or it fits exactly and we're on a window
7087 system frame. */
7088 || (new_x == it->last_visible_x
7089 && FRAME_WINDOW_P (it->f))))
7090 {
7091 if (/* IT->hpos == 0 means the very first glyph
7092 doesn't fit on the line, e.g. a wide image. */
7093 it->hpos == 0
7094 || (new_x == it->last_visible_x
7095 && FRAME_WINDOW_P (it->f)))
7096 {
7097 ++it->hpos;
7098 it->current_x = new_x;
7099
7100 /* The character's last glyph just barely fits
7101 in this row. */
7102 if (i == it->nglyphs - 1)
7103 {
7104 /* If this is the destination position,
7105 return a position *before* it in this row,
7106 now that we know it fits in this row. */
7107 if (BUFFER_POS_REACHED_P ())
7108 {
7109 if (it->line_wrap != WORD_WRAP
7110 || wrap_it.sp < 0)
7111 {
7112 it->hpos = hpos_before_this_char;
7113 it->current_x = x_before_this_char;
7114 result = MOVE_POS_MATCH_OR_ZV;
7115 break;
7116 }
7117 if (it->line_wrap == WORD_WRAP
7118 && atpos_it.sp < 0)
7119 {
7120 atpos_it = *it;
7121 atpos_it.current_x = x_before_this_char;
7122 atpos_it.hpos = hpos_before_this_char;
7123 }
7124 }
7125
7126 set_iterator_to_next (it, 1);
7127 if (IT_CHARPOS (*it) < CHARPOS (this_line_min_pos))
7128 SET_TEXT_POS (this_line_min_pos,
7129 IT_CHARPOS (*it), IT_BYTEPOS (*it));
7130 /* On graphical terminals, newlines may
7131 "overflow" into the fringe if
7132 overflow-newline-into-fringe is non-nil.
7133 On text-only terminals, newlines may
7134 overflow into the last glyph on the
7135 display line.*/
7136 if (!FRAME_WINDOW_P (it->f)
7137 || IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
7138 {
7139 if (!get_next_display_element (it))
7140 {
7141 result = MOVE_POS_MATCH_OR_ZV;
7142 break;
7143 }
7144 if (BUFFER_POS_REACHED_P ())
7145 {
7146 if (ITERATOR_AT_END_OF_LINE_P (it))
7147 result = MOVE_POS_MATCH_OR_ZV;
7148 else
7149 result = MOVE_LINE_CONTINUED;
7150 break;
7151 }
7152 if (ITERATOR_AT_END_OF_LINE_P (it))
7153 {
7154 result = MOVE_NEWLINE_OR_CR;
7155 break;
7156 }
7157 }
7158 }
7159 }
7160 else
7161 IT_RESET_X_ASCENT_DESCENT (it);
7162
7163 if (wrap_it.sp >= 0)
7164 {
7165 *it = wrap_it;
7166 atpos_it.sp = -1;
7167 atx_it.sp = -1;
7168 }
7169
7170 TRACE_MOVE ((stderr, "move_it_in: continued at %d\n",
7171 IT_CHARPOS (*it)));
7172 result = MOVE_LINE_CONTINUED;
7173 break;
7174 }
7175
7176 if (BUFFER_POS_REACHED_P ())
7177 {
7178 if (it->line_wrap != WORD_WRAP || wrap_it.sp < 0)
7179 goto buffer_pos_reached;
7180 if (it->line_wrap == WORD_WRAP && atpos_it.sp < 0)
7181 {
7182 atpos_it = *it;
7183 IT_RESET_X_ASCENT_DESCENT (&atpos_it);
7184 }
7185 }
7186
7187 if (new_x > it->first_visible_x)
7188 {
7189 /* Glyph is visible. Increment number of glyphs that
7190 would be displayed. */
7191 ++it->hpos;
7192 }
7193 }
7194
7195 if (result != MOVE_UNDEFINED)
7196 break;
7197 }
7198 else if (BUFFER_POS_REACHED_P ())
7199 {
7200 buffer_pos_reached:
7201 IT_RESET_X_ASCENT_DESCENT (it);
7202 result = MOVE_POS_MATCH_OR_ZV;
7203 break;
7204 }
7205 else if ((op & MOVE_TO_X) && it->current_x >= to_x)
7206 {
7207 /* Stop when TO_X specified and reached. This check is
7208 necessary here because of lines consisting of a line end,
7209 only. The line end will not produce any glyphs and we
7210 would never get MOVE_X_REACHED. */
7211 xassert (it->nglyphs == 0);
7212 result = MOVE_X_REACHED;
7213 break;
7214 }
7215
7216 /* Is this a line end? If yes, we're done. */
7217 if (ITERATOR_AT_END_OF_LINE_P (it))
7218 {
7219 result = MOVE_NEWLINE_OR_CR;
7220 break;
7221 }
7222
7223 if (it->method == GET_FROM_BUFFER)
7224 prev_pos = IT_CHARPOS (*it);
7225 /* The current display element has been consumed. Advance
7226 to the next. */
7227 set_iterator_to_next (it, 1);
7228 if (IT_CHARPOS (*it) < CHARPOS (this_line_min_pos))
7229 SET_TEXT_POS (this_line_min_pos, IT_CHARPOS (*it), IT_BYTEPOS (*it));
7230
7231 /* Stop if lines are truncated and IT's current x-position is
7232 past the right edge of the window now. */
7233 if (it->line_wrap == TRUNCATE
7234 && it->current_x >= it->last_visible_x)
7235 {
7236 if (!FRAME_WINDOW_P (it->f)
7237 || IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
7238 {
7239 if (!get_next_display_element (it)
7240 || BUFFER_POS_REACHED_P ())
7241 {
7242 result = MOVE_POS_MATCH_OR_ZV;
7243 break;
7244 }
7245 if (ITERATOR_AT_END_OF_LINE_P (it))
7246 {
7247 result = MOVE_NEWLINE_OR_CR;
7248 break;
7249 }
7250 }
7251 result = MOVE_LINE_TRUNCATED;
7252 break;
7253 }
7254 #undef IT_RESET_X_ASCENT_DESCENT
7255 }
7256
7257 #undef BUFFER_POS_REACHED_P
7258
7259 /* If we scanned beyond to_pos and didn't find a point to wrap at,
7260 restore the saved iterator. */
7261 if (atpos_it.sp >= 0)
7262 *it = atpos_it;
7263 else if (atx_it.sp >= 0)
7264 *it = atx_it;
7265
7266 done:
7267
7268 /* Restore the iterator settings altered at the beginning of this
7269 function. */
7270 it->glyph_row = saved_glyph_row;
7271 return result;
7272 }
7273
7274 /* For external use. */
7275 void
7276 move_it_in_display_line (struct it *it,
7277 EMACS_INT to_charpos, int to_x,
7278 enum move_operation_enum op)
7279 {
7280 if (it->line_wrap == WORD_WRAP
7281 && (op & MOVE_TO_X))
7282 {
7283 struct it save_it = *it;
7284 int skip = move_it_in_display_line_to (it, to_charpos, to_x, op);
7285 /* When word-wrap is on, TO_X may lie past the end
7286 of a wrapped line. Then it->current is the
7287 character on the next line, so backtrack to the
7288 space before the wrap point. */
7289 if (skip == MOVE_LINE_CONTINUED)
7290 {
7291 int prev_x = max (it->current_x - 1, 0);
7292 *it = save_it;
7293 move_it_in_display_line_to
7294 (it, -1, prev_x, MOVE_TO_X);
7295 }
7296 }
7297 else
7298 move_it_in_display_line_to (it, to_charpos, to_x, op);
7299 }
7300
7301
7302 /* Move IT forward until it satisfies one or more of the criteria in
7303 TO_CHARPOS, TO_X, TO_Y, and TO_VPOS.
7304
7305 OP is a bit-mask that specifies where to stop, and in particular,
7306 which of those four position arguments makes a difference. See the
7307 description of enum move_operation_enum.
7308
7309 If TO_CHARPOS is in invisible text, e.g. a truncated part of a
7310 screen line, this function will set IT to the next position >
7311 TO_CHARPOS. */
7312
7313 void
7314 move_it_to (struct it *it, EMACS_INT to_charpos, int to_x, int to_y, int to_vpos, int op)
7315 {
7316 enum move_it_result skip, skip2 = MOVE_X_REACHED;
7317 int line_height, line_start_x = 0, reached = 0;
7318
7319 for (;;)
7320 {
7321 if (op & MOVE_TO_VPOS)
7322 {
7323 /* If no TO_CHARPOS and no TO_X specified, stop at the
7324 start of the line TO_VPOS. */
7325 if ((op & (MOVE_TO_X | MOVE_TO_POS)) == 0)
7326 {
7327 if (it->vpos == to_vpos)
7328 {
7329 reached = 1;
7330 break;
7331 }
7332 else
7333 skip = move_it_in_display_line_to (it, -1, -1, 0);
7334 }
7335 else
7336 {
7337 /* TO_VPOS >= 0 means stop at TO_X in the line at
7338 TO_VPOS, or at TO_POS, whichever comes first. */
7339 if (it->vpos == to_vpos)
7340 {
7341 reached = 2;
7342 break;
7343 }
7344
7345 skip = move_it_in_display_line_to (it, to_charpos, to_x, op);
7346
7347 if (skip == MOVE_POS_MATCH_OR_ZV || it->vpos == to_vpos)
7348 {
7349 reached = 3;
7350 break;
7351 }
7352 else if (skip == MOVE_X_REACHED && it->vpos != to_vpos)
7353 {
7354 /* We have reached TO_X but not in the line we want. */
7355 skip = move_it_in_display_line_to (it, to_charpos,
7356 -1, MOVE_TO_POS);
7357 if (skip == MOVE_POS_MATCH_OR_ZV)
7358 {
7359 reached = 4;
7360 break;
7361 }
7362 }
7363 }
7364 }
7365 else if (op & MOVE_TO_Y)
7366 {
7367 struct it it_backup;
7368
7369 if (it->line_wrap == WORD_WRAP)
7370 it_backup = *it;
7371
7372 /* TO_Y specified means stop at TO_X in the line containing
7373 TO_Y---or at TO_CHARPOS if this is reached first. The
7374 problem is that we can't really tell whether the line
7375 contains TO_Y before we have completely scanned it, and
7376 this may skip past TO_X. What we do is to first scan to
7377 TO_X.
7378
7379 If TO_X is not specified, use a TO_X of zero. The reason
7380 is to make the outcome of this function more predictable.
7381 If we didn't use TO_X == 0, we would stop at the end of
7382 the line which is probably not what a caller would expect
7383 to happen. */
7384 skip = move_it_in_display_line_to
7385 (it, to_charpos, ((op & MOVE_TO_X) ? to_x : 0),
7386 (MOVE_TO_X | (op & MOVE_TO_POS)));
7387
7388 /* If TO_CHARPOS is reached or ZV, we don't have to do more. */
7389 if (skip == MOVE_POS_MATCH_OR_ZV)
7390 reached = 5;
7391 else if (skip == MOVE_X_REACHED)
7392 {
7393 /* If TO_X was reached, we want to know whether TO_Y is
7394 in the line. We know this is the case if the already
7395 scanned glyphs make the line tall enough. Otherwise,
7396 we must check by scanning the rest of the line. */
7397 line_height = it->max_ascent + it->max_descent;
7398 if (to_y >= it->current_y
7399 && to_y < it->current_y + line_height)
7400 {
7401 reached = 6;
7402 break;
7403 }
7404 it_backup = *it;
7405 TRACE_MOVE ((stderr, "move_it: from %d\n", IT_CHARPOS (*it)));
7406 skip2 = move_it_in_display_line_to (it, to_charpos, -1,
7407 op & MOVE_TO_POS);
7408 TRACE_MOVE ((stderr, "move_it: to %d\n", IT_CHARPOS (*it)));
7409 line_height = it->max_ascent + it->max_descent;
7410 TRACE_MOVE ((stderr, "move_it: line_height = %d\n", line_height));
7411
7412 if (to_y >= it->current_y
7413 && to_y < it->current_y + line_height)
7414 {
7415 /* If TO_Y is in this line and TO_X was reached
7416 above, we scanned too far. We have to restore
7417 IT's settings to the ones before skipping. */
7418 *it = it_backup;
7419 reached = 6;
7420 }
7421 else
7422 {
7423 skip = skip2;
7424 if (skip == MOVE_POS_MATCH_OR_ZV)
7425 reached = 7;
7426 }
7427 }
7428 else
7429 {
7430 /* Check whether TO_Y is in this line. */
7431 line_height = it->max_ascent + it->max_descent;
7432 TRACE_MOVE ((stderr, "move_it: line_height = %d\n", line_height));
7433
7434 if (to_y >= it->current_y
7435 && to_y < it->current_y + line_height)
7436 {
7437 /* When word-wrap is on, TO_X may lie past the end
7438 of a wrapped line. Then it->current is the
7439 character on the next line, so backtrack to the
7440 space before the wrap point. */
7441 if (skip == MOVE_LINE_CONTINUED
7442 && it->line_wrap == WORD_WRAP)
7443 {
7444 int prev_x = max (it->current_x - 1, 0);
7445 *it = it_backup;
7446 skip = move_it_in_display_line_to
7447 (it, -1, prev_x, MOVE_TO_X);
7448 }
7449 reached = 6;
7450 }
7451 }
7452
7453 if (reached)
7454 break;
7455 }
7456 else if (BUFFERP (it->object)
7457 && (it->method == GET_FROM_BUFFER
7458 || it->method == GET_FROM_STRETCH)
7459 && IT_CHARPOS (*it) >= to_charpos)
7460 skip = MOVE_POS_MATCH_OR_ZV;
7461 else
7462 skip = move_it_in_display_line_to (it, to_charpos, -1, MOVE_TO_POS);
7463
7464 switch (skip)
7465 {
7466 case MOVE_POS_MATCH_OR_ZV:
7467 reached = 8;
7468 goto out;
7469
7470 case MOVE_NEWLINE_OR_CR:
7471 set_iterator_to_next (it, 1);
7472 it->continuation_lines_width = 0;
7473 break;
7474
7475 case MOVE_LINE_TRUNCATED:
7476 it->continuation_lines_width = 0;
7477 reseat_at_next_visible_line_start (it, 0);
7478 if ((op & MOVE_TO_POS) != 0
7479 && IT_CHARPOS (*it) > to_charpos)
7480 {
7481 reached = 9;
7482 goto out;
7483 }
7484 break;
7485
7486 case MOVE_LINE_CONTINUED:
7487 /* For continued lines ending in a tab, some of the glyphs
7488 associated with the tab are displayed on the current
7489 line. Since it->current_x does not include these glyphs,
7490 we use it->last_visible_x instead. */
7491 if (it->c == '\t')
7492 {
7493 it->continuation_lines_width += it->last_visible_x;
7494 /* When moving by vpos, ensure that the iterator really
7495 advances to the next line (bug#847, bug#969). Fixme:
7496 do we need to do this in other circumstances? */
7497 if (it->current_x != it->last_visible_x
7498 && (op & MOVE_TO_VPOS)
7499 && !(op & (MOVE_TO_X | MOVE_TO_POS)))
7500 {
7501 line_start_x = it->current_x + it->pixel_width
7502 - it->last_visible_x;
7503 set_iterator_to_next (it, 0);
7504 }
7505 }
7506 else
7507 it->continuation_lines_width += it->current_x;
7508 break;
7509
7510 default:
7511 abort ();
7512 }
7513
7514 /* Reset/increment for the next run. */
7515 recenter_overlay_lists (current_buffer, IT_CHARPOS (*it));
7516 it->current_x = line_start_x;
7517 line_start_x = 0;
7518 it->hpos = 0;
7519 it->current_y += it->max_ascent + it->max_descent;
7520 ++it->vpos;
7521 last_height = it->max_ascent + it->max_descent;
7522 last_max_ascent = it->max_ascent;
7523 it->max_ascent = it->max_descent = 0;
7524 }
7525
7526 out:
7527
7528 /* On text terminals, we may stop at the end of a line in the middle
7529 of a multi-character glyph. If the glyph itself is continued,
7530 i.e. it is actually displayed on the next line, don't treat this
7531 stopping point as valid; move to the next line instead (unless
7532 that brings us offscreen). */
7533 if (!FRAME_WINDOW_P (it->f)
7534 && op & MOVE_TO_POS
7535 && IT_CHARPOS (*it) == to_charpos
7536 && it->what == IT_CHARACTER
7537 && it->nglyphs > 1
7538 && it->line_wrap == WINDOW_WRAP
7539 && it->current_x == it->last_visible_x - 1
7540 && it->c != '\n'
7541 && it->c != '\t'
7542 && it->vpos < XFASTINT (it->w->window_end_vpos))
7543 {
7544 it->continuation_lines_width += it->current_x;
7545 it->current_x = it->hpos = it->max_ascent = it->max_descent = 0;
7546 it->current_y += it->max_ascent + it->max_descent;
7547 ++it->vpos;
7548 last_height = it->max_ascent + it->max_descent;
7549 last_max_ascent = it->max_ascent;
7550 }
7551
7552 TRACE_MOVE ((stderr, "move_it_to: reached %d\n", reached));
7553 }
7554
7555
7556 /* Move iterator IT backward by a specified y-distance DY, DY >= 0.
7557
7558 If DY > 0, move IT backward at least that many pixels. DY = 0
7559 means move IT backward to the preceding line start or BEGV. This
7560 function may move over more than DY pixels if IT->current_y - DY
7561 ends up in the middle of a line; in this case IT->current_y will be
7562 set to the top of the line moved to. */
7563
7564 void
7565 move_it_vertically_backward (struct it *it, int dy)
7566 {
7567 int nlines, h;
7568 struct it it2, it3;
7569 EMACS_INT start_pos;
7570
7571 move_further_back:
7572 xassert (dy >= 0);
7573
7574 start_pos = IT_CHARPOS (*it);
7575
7576 /* Estimate how many newlines we must move back. */
7577 nlines = max (1, dy / FRAME_LINE_HEIGHT (it->f));
7578
7579 /* Set the iterator's position that many lines back. */
7580 while (nlines-- && IT_CHARPOS (*it) > BEGV)
7581 back_to_previous_visible_line_start (it);
7582
7583 /* Reseat the iterator here. When moving backward, we don't want
7584 reseat to skip forward over invisible text, set up the iterator
7585 to deliver from overlay strings at the new position etc. So,
7586 use reseat_1 here. */
7587 reseat_1 (it, it->current.pos, 1);
7588
7589 /* We are now surely at a line start. */
7590 it->current_x = it->hpos = 0;
7591 it->continuation_lines_width = 0;
7592
7593 /* Move forward and see what y-distance we moved. First move to the
7594 start of the next line so that we get its height. We need this
7595 height to be able to tell whether we reached the specified
7596 y-distance. */
7597 it2 = *it;
7598 it2.max_ascent = it2.max_descent = 0;
7599 do
7600 {
7601 move_it_to (&it2, start_pos, -1, -1, it2.vpos + 1,
7602 MOVE_TO_POS | MOVE_TO_VPOS);
7603 }
7604 while (!IT_POS_VALID_AFTER_MOVE_P (&it2));
7605 xassert (IT_CHARPOS (*it) >= BEGV);
7606 it3 = it2;
7607
7608 move_it_to (&it2, start_pos, -1, -1, -1, MOVE_TO_POS);
7609 xassert (IT_CHARPOS (*it) >= BEGV);
7610 /* H is the actual vertical distance from the position in *IT
7611 and the starting position. */
7612 h = it2.current_y - it->current_y;
7613 /* NLINES is the distance in number of lines. */
7614 nlines = it2.vpos - it->vpos;
7615
7616 /* Correct IT's y and vpos position
7617 so that they are relative to the starting point. */
7618 it->vpos -= nlines;
7619 it->current_y -= h;
7620
7621 if (dy == 0)
7622 {
7623 /* DY == 0 means move to the start of the screen line. The
7624 value of nlines is > 0 if continuation lines were involved. */
7625 if (nlines > 0)
7626 move_it_by_lines (it, nlines, 1);
7627 }
7628 else
7629 {
7630 /* The y-position we try to reach, relative to *IT.
7631 Note that H has been subtracted in front of the if-statement. */
7632 int target_y = it->current_y + h - dy;
7633 int y0 = it3.current_y;
7634 int y1 = line_bottom_y (&it3);
7635 int line_height = y1 - y0;
7636
7637 /* If we did not reach target_y, try to move further backward if
7638 we can. If we moved too far backward, try to move forward. */
7639 if (target_y < it->current_y
7640 /* This is heuristic. In a window that's 3 lines high, with
7641 a line height of 13 pixels each, recentering with point
7642 on the bottom line will try to move -39/2 = 19 pixels
7643 backward. Try to avoid moving into the first line. */
7644 && (it->current_y - target_y
7645 > min (window_box_height (it->w), line_height * 2 / 3))
7646 && IT_CHARPOS (*it) > BEGV)
7647 {
7648 TRACE_MOVE ((stderr, " not far enough -> move_vert %d\n",
7649 target_y - it->current_y));
7650 dy = it->current_y - target_y;
7651 goto move_further_back;
7652 }
7653 else if (target_y >= it->current_y + line_height
7654 && IT_CHARPOS (*it) < ZV)
7655 {
7656 /* Should move forward by at least one line, maybe more.
7657
7658 Note: Calling move_it_by_lines can be expensive on
7659 terminal frames, where compute_motion is used (via
7660 vmotion) to do the job, when there are very long lines
7661 and truncate-lines is nil. That's the reason for
7662 treating terminal frames specially here. */
7663
7664 if (!FRAME_WINDOW_P (it->f))
7665 move_it_vertically (it, target_y - (it->current_y + line_height));
7666 else
7667 {
7668 do
7669 {
7670 move_it_by_lines (it, 1, 1);
7671 }
7672 while (target_y >= line_bottom_y (it) && IT_CHARPOS (*it) < ZV);
7673 }
7674 }
7675 }
7676 }
7677
7678
7679 /* Move IT by a specified amount of pixel lines DY. DY negative means
7680 move backwards. DY = 0 means move to start of screen line. At the
7681 end, IT will be on the start of a screen line. */
7682
7683 void
7684 move_it_vertically (struct it *it, int dy)
7685 {
7686 if (dy <= 0)
7687 move_it_vertically_backward (it, -dy);
7688 else
7689 {
7690 TRACE_MOVE ((stderr, "move_it_v: from %d, %d\n", IT_CHARPOS (*it), dy));
7691 move_it_to (it, ZV, -1, it->current_y + dy, -1,
7692 MOVE_TO_POS | MOVE_TO_Y);
7693 TRACE_MOVE ((stderr, "move_it_v: to %d\n", IT_CHARPOS (*it)));
7694
7695 /* If buffer ends in ZV without a newline, move to the start of
7696 the line to satisfy the post-condition. */
7697 if (IT_CHARPOS (*it) == ZV
7698 && ZV > BEGV
7699 && FETCH_BYTE (IT_BYTEPOS (*it) - 1) != '\n')
7700 move_it_by_lines (it, 0, 0);
7701 }
7702 }
7703
7704
7705 /* Move iterator IT past the end of the text line it is in. */
7706
7707 void
7708 move_it_past_eol (struct it *it)
7709 {
7710 enum move_it_result rc;
7711
7712 rc = move_it_in_display_line_to (it, Z, 0, MOVE_TO_POS);
7713 if (rc == MOVE_NEWLINE_OR_CR)
7714 set_iterator_to_next (it, 0);
7715 }
7716
7717
7718 /* Move IT by a specified number DVPOS of screen lines down. DVPOS
7719 negative means move up. DVPOS == 0 means move to the start of the
7720 screen line. NEED_Y_P non-zero means calculate IT->current_y. If
7721 NEED_Y_P is zero, IT->current_y will be left unchanged.
7722
7723 Further optimization ideas: If we would know that IT->f doesn't use
7724 a face with proportional font, we could be faster for
7725 truncate-lines nil. */
7726
7727 void
7728 move_it_by_lines (struct it *it, int dvpos, int need_y_p)
7729 {
7730
7731 /* The commented-out optimization uses vmotion on terminals. This
7732 gives bad results, because elements like it->what, on which
7733 callers such as pos_visible_p rely, aren't updated. */
7734 /* struct position pos;
7735 if (!FRAME_WINDOW_P (it->f))
7736 {
7737 struct text_pos textpos;
7738
7739 pos = *vmotion (IT_CHARPOS (*it), dvpos, it->w);
7740 SET_TEXT_POS (textpos, pos.bufpos, pos.bytepos);
7741 reseat (it, textpos, 1);
7742 it->vpos += pos.vpos;
7743 it->current_y += pos.vpos;
7744 }
7745 else */
7746
7747 if (dvpos == 0)
7748 {
7749 /* DVPOS == 0 means move to the start of the screen line. */
7750 move_it_vertically_backward (it, 0);
7751 xassert (it->current_x == 0 && it->hpos == 0);
7752 /* Let next call to line_bottom_y calculate real line height */
7753 last_height = 0;
7754 }
7755 else if (dvpos > 0)
7756 {
7757 move_it_to (it, -1, -1, -1, it->vpos + dvpos, MOVE_TO_VPOS);
7758 if (!IT_POS_VALID_AFTER_MOVE_P (it))
7759 move_it_to (it, IT_CHARPOS (*it) + 1, -1, -1, -1, MOVE_TO_POS);
7760 }
7761 else
7762 {
7763 struct it it2;
7764 EMACS_INT start_charpos, i;
7765
7766 /* Start at the beginning of the screen line containing IT's
7767 position. This may actually move vertically backwards,
7768 in case of overlays, so adjust dvpos accordingly. */
7769 dvpos += it->vpos;
7770 move_it_vertically_backward (it, 0);
7771 dvpos -= it->vpos;
7772
7773 /* Go back -DVPOS visible lines and reseat the iterator there. */
7774 start_charpos = IT_CHARPOS (*it);
7775 for (i = -dvpos; i > 0 && IT_CHARPOS (*it) > BEGV; --i)
7776 back_to_previous_visible_line_start (it);
7777 reseat (it, it->current.pos, 1);
7778
7779 /* Move further back if we end up in a string or an image. */
7780 while (!IT_POS_VALID_AFTER_MOVE_P (it))
7781 {
7782 /* First try to move to start of display line. */
7783 dvpos += it->vpos;
7784 move_it_vertically_backward (it, 0);
7785 dvpos -= it->vpos;
7786 if (IT_POS_VALID_AFTER_MOVE_P (it))
7787 break;
7788 /* If start of line is still in string or image,
7789 move further back. */
7790 back_to_previous_visible_line_start (it);
7791 reseat (it, it->current.pos, 1);
7792 dvpos--;
7793 }
7794
7795 it->current_x = it->hpos = 0;
7796
7797 /* Above call may have moved too far if continuation lines
7798 are involved. Scan forward and see if it did. */
7799 it2 = *it;
7800 it2.vpos = it2.current_y = 0;
7801 move_it_to (&it2, start_charpos, -1, -1, -1, MOVE_TO_POS);
7802 it->vpos -= it2.vpos;
7803 it->current_y -= it2.current_y;
7804 it->current_x = it->hpos = 0;
7805
7806 /* If we moved too far back, move IT some lines forward. */
7807 if (it2.vpos > -dvpos)
7808 {
7809 int delta = it2.vpos + dvpos;
7810 it2 = *it;
7811 move_it_to (it, -1, -1, -1, it->vpos + delta, MOVE_TO_VPOS);
7812 /* Move back again if we got too far ahead. */
7813 if (IT_CHARPOS (*it) >= start_charpos)
7814 *it = it2;
7815 }
7816 }
7817 }
7818
7819 /* Return 1 if IT points into the middle of a display vector. */
7820
7821 int
7822 in_display_vector_p (struct it *it)
7823 {
7824 return (it->method == GET_FROM_DISPLAY_VECTOR
7825 && it->current.dpvec_index > 0
7826 && it->dpvec + it->current.dpvec_index != it->dpend);
7827 }
7828
7829 \f
7830 /***********************************************************************
7831 Messages
7832 ***********************************************************************/
7833
7834
7835 /* Add a message with format string FORMAT and arguments ARG1 and ARG2
7836 to *Messages*. */
7837
7838 void
7839 add_to_log (const char *format, Lisp_Object arg1, Lisp_Object arg2)
7840 {
7841 Lisp_Object args[3];
7842 Lisp_Object msg, fmt;
7843 char *buffer;
7844 EMACS_INT len;
7845 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
7846 USE_SAFE_ALLOCA;
7847
7848 /* Do nothing if called asynchronously. Inserting text into
7849 a buffer may call after-change-functions and alike and
7850 that would means running Lisp asynchronously. */
7851 if (handling_signal)
7852 return;
7853
7854 fmt = msg = Qnil;
7855 GCPRO4 (fmt, msg, arg1, arg2);
7856
7857 args[0] = fmt = build_string (format);
7858 args[1] = arg1;
7859 args[2] = arg2;
7860 msg = Fformat (3, args);
7861
7862 len = SBYTES (msg) + 1;
7863 SAFE_ALLOCA (buffer, char *, len);
7864 memcpy (buffer, SDATA (msg), len);
7865
7866 message_dolog (buffer, len - 1, 1, 0);
7867 SAFE_FREE ();
7868
7869 UNGCPRO;
7870 }
7871
7872
7873 /* Output a newline in the *Messages* buffer if "needs" one. */
7874
7875 void
7876 message_log_maybe_newline (void)
7877 {
7878 if (message_log_need_newline)
7879 message_dolog ("", 0, 1, 0);
7880 }
7881
7882
7883 /* Add a string M of length NBYTES to the message log, optionally
7884 terminated with a newline when NLFLAG is non-zero. MULTIBYTE, if
7885 nonzero, means interpret the contents of M as multibyte. This
7886 function calls low-level routines in order to bypass text property
7887 hooks, etc. which might not be safe to run.
7888
7889 This may GC (insert may run before/after change hooks),
7890 so the buffer M must NOT point to a Lisp string. */
7891
7892 void
7893 message_dolog (const char *m, EMACS_INT nbytes, int nlflag, int multibyte)
7894 {
7895 const unsigned char *msg = (const unsigned char *) m;
7896
7897 if (!NILP (Vmemory_full))
7898 return;
7899
7900 if (!NILP (Vmessage_log_max))
7901 {
7902 struct buffer *oldbuf;
7903 Lisp_Object oldpoint, oldbegv, oldzv;
7904 int old_windows_or_buffers_changed = windows_or_buffers_changed;
7905 EMACS_INT point_at_end = 0;
7906 EMACS_INT zv_at_end = 0;
7907 Lisp_Object old_deactivate_mark, tem;
7908 struct gcpro gcpro1;
7909
7910 old_deactivate_mark = Vdeactivate_mark;
7911 oldbuf = current_buffer;
7912 Fset_buffer (Fget_buffer_create (Vmessages_buffer_name));
7913 BVAR (current_buffer, undo_list) = Qt;
7914
7915 oldpoint = message_dolog_marker1;
7916 set_marker_restricted (oldpoint, make_number (PT), Qnil);
7917 oldbegv = message_dolog_marker2;
7918 set_marker_restricted (oldbegv, make_number (BEGV), Qnil);
7919 oldzv = message_dolog_marker3;
7920 set_marker_restricted (oldzv, make_number (ZV), Qnil);
7921 GCPRO1 (old_deactivate_mark);
7922
7923 if (PT == Z)
7924 point_at_end = 1;
7925 if (ZV == Z)
7926 zv_at_end = 1;
7927
7928 BEGV = BEG;
7929 BEGV_BYTE = BEG_BYTE;
7930 ZV = Z;
7931 ZV_BYTE = Z_BYTE;
7932 TEMP_SET_PT_BOTH (Z, Z_BYTE);
7933
7934 /* Insert the string--maybe converting multibyte to single byte
7935 or vice versa, so that all the text fits the buffer. */
7936 if (multibyte
7937 && NILP (BVAR (current_buffer, enable_multibyte_characters)))
7938 {
7939 EMACS_INT i;
7940 int c, char_bytes;
7941 char work[1];
7942
7943 /* Convert a multibyte string to single-byte
7944 for the *Message* buffer. */
7945 for (i = 0; i < nbytes; i += char_bytes)
7946 {
7947 c = string_char_and_length (msg + i, &char_bytes);
7948 work[0] = (ASCII_CHAR_P (c)
7949 ? c
7950 : multibyte_char_to_unibyte (c, Qnil));
7951 insert_1_both (work, 1, 1, 1, 0, 0);
7952 }
7953 }
7954 else if (! multibyte
7955 && ! NILP (BVAR (current_buffer, enable_multibyte_characters)))
7956 {
7957 EMACS_INT i;
7958 int c, char_bytes;
7959 unsigned char str[MAX_MULTIBYTE_LENGTH];
7960 /* Convert a single-byte string to multibyte
7961 for the *Message* buffer. */
7962 for (i = 0; i < nbytes; i++)
7963 {
7964 c = msg[i];
7965 MAKE_CHAR_MULTIBYTE (c);
7966 char_bytes = CHAR_STRING (c, str);
7967 insert_1_both ((char *) str, 1, char_bytes, 1, 0, 0);
7968 }
7969 }
7970 else if (nbytes)
7971 insert_1 (m, nbytes, 1, 0, 0);
7972
7973 if (nlflag)
7974 {
7975 EMACS_INT this_bol, this_bol_byte, prev_bol, prev_bol_byte;
7976 int dups;
7977 insert_1 ("\n", 1, 1, 0, 0);
7978
7979 scan_newline (Z, Z_BYTE, BEG, BEG_BYTE, -2, 0);
7980 this_bol = PT;
7981 this_bol_byte = PT_BYTE;
7982
7983 /* See if this line duplicates the previous one.
7984 If so, combine duplicates. */
7985 if (this_bol > BEG)
7986 {
7987 scan_newline (PT, PT_BYTE, BEG, BEG_BYTE, -2, 0);
7988 prev_bol = PT;
7989 prev_bol_byte = PT_BYTE;
7990
7991 dups = message_log_check_duplicate (prev_bol, prev_bol_byte,
7992 this_bol, this_bol_byte);
7993 if (dups)
7994 {
7995 del_range_both (prev_bol, prev_bol_byte,
7996 this_bol, this_bol_byte, 0);
7997 if (dups > 1)
7998 {
7999 char dupstr[40];
8000 int duplen;
8001
8002 /* If you change this format, don't forget to also
8003 change message_log_check_duplicate. */
8004 sprintf (dupstr, " [%d times]", dups);
8005 duplen = strlen (dupstr);
8006 TEMP_SET_PT_BOTH (Z - 1, Z_BYTE - 1);
8007 insert_1 (dupstr, duplen, 1, 0, 1);
8008 }
8009 }
8010 }
8011
8012 /* If we have more than the desired maximum number of lines
8013 in the *Messages* buffer now, delete the oldest ones.
8014 This is safe because we don't have undo in this buffer. */
8015
8016 if (NATNUMP (Vmessage_log_max))
8017 {
8018 scan_newline (Z, Z_BYTE, BEG, BEG_BYTE,
8019 -XFASTINT (Vmessage_log_max) - 1, 0);
8020 del_range_both (BEG, BEG_BYTE, PT, PT_BYTE, 0);
8021 }
8022 }
8023 BEGV = XMARKER (oldbegv)->charpos;
8024 BEGV_BYTE = marker_byte_position (oldbegv);
8025
8026 if (zv_at_end)
8027 {
8028 ZV = Z;
8029 ZV_BYTE = Z_BYTE;
8030 }
8031 else
8032 {
8033 ZV = XMARKER (oldzv)->charpos;
8034 ZV_BYTE = marker_byte_position (oldzv);
8035 }
8036
8037 if (point_at_end)
8038 TEMP_SET_PT_BOTH (Z, Z_BYTE);
8039 else
8040 /* We can't do Fgoto_char (oldpoint) because it will run some
8041 Lisp code. */
8042 TEMP_SET_PT_BOTH (XMARKER (oldpoint)->charpos,
8043 XMARKER (oldpoint)->bytepos);
8044
8045 UNGCPRO;
8046 unchain_marker (XMARKER (oldpoint));
8047 unchain_marker (XMARKER (oldbegv));
8048 unchain_marker (XMARKER (oldzv));
8049
8050 tem = Fget_buffer_window (Fcurrent_buffer (), Qt);
8051 set_buffer_internal (oldbuf);
8052 if (NILP (tem))
8053 windows_or_buffers_changed = old_windows_or_buffers_changed;
8054 message_log_need_newline = !nlflag;
8055 Vdeactivate_mark = old_deactivate_mark;
8056 }
8057 }
8058
8059
8060 /* We are at the end of the buffer after just having inserted a newline.
8061 (Note: We depend on the fact we won't be crossing the gap.)
8062 Check to see if the most recent message looks a lot like the previous one.
8063 Return 0 if different, 1 if the new one should just replace it, or a
8064 value N > 1 if we should also append " [N times]". */
8065
8066 static int
8067 message_log_check_duplicate (EMACS_INT prev_bol, EMACS_INT prev_bol_byte,
8068 EMACS_INT this_bol, EMACS_INT this_bol_byte)
8069 {
8070 EMACS_INT i;
8071 EMACS_INT len = Z_BYTE - 1 - this_bol_byte;
8072 int seen_dots = 0;
8073 unsigned char *p1 = BUF_BYTE_ADDRESS (current_buffer, prev_bol_byte);
8074 unsigned char *p2 = BUF_BYTE_ADDRESS (current_buffer, this_bol_byte);
8075
8076 for (i = 0; i < len; i++)
8077 {
8078 if (i >= 3 && p1[i-3] == '.' && p1[i-2] == '.' && p1[i-1] == '.')
8079 seen_dots = 1;
8080 if (p1[i] != p2[i])
8081 return seen_dots;
8082 }
8083 p1 += len;
8084 if (*p1 == '\n')
8085 return 2;
8086 if (*p1++ == ' ' && *p1++ == '[')
8087 {
8088 int n = 0;
8089 while (*p1 >= '0' && *p1 <= '9')
8090 n = n * 10 + *p1++ - '0';
8091 if (strncmp ((char *) p1, " times]\n", 8) == 0)
8092 return n+1;
8093 }
8094 return 0;
8095 }
8096 \f
8097
8098 /* Display an echo area message M with a specified length of NBYTES
8099 bytes. The string may include null characters. If M is 0, clear
8100 out any existing message, and let the mini-buffer text show
8101 through.
8102
8103 This may GC, so the buffer M must NOT point to a Lisp string. */
8104
8105 void
8106 message2 (const char *m, EMACS_INT nbytes, int multibyte)
8107 {
8108 /* First flush out any partial line written with print. */
8109 message_log_maybe_newline ();
8110 if (m)
8111 message_dolog (m, nbytes, 1, multibyte);
8112 message2_nolog (m, nbytes, multibyte);
8113 }
8114
8115
8116 /* The non-logging counterpart of message2. */
8117
8118 void
8119 message2_nolog (const char *m, EMACS_INT nbytes, int multibyte)
8120 {
8121 struct frame *sf = SELECTED_FRAME ();
8122 message_enable_multibyte = multibyte;
8123
8124 if (FRAME_INITIAL_P (sf))
8125 {
8126 if (noninteractive_need_newline)
8127 putc ('\n', stderr);
8128 noninteractive_need_newline = 0;
8129 if (m)
8130 fwrite (m, nbytes, 1, stderr);
8131 if (cursor_in_echo_area == 0)
8132 fprintf (stderr, "\n");
8133 fflush (stderr);
8134 }
8135 /* A null message buffer means that the frame hasn't really been
8136 initialized yet. Error messages get reported properly by
8137 cmd_error, so this must be just an informative message; toss it. */
8138 else if (INTERACTIVE
8139 && sf->glyphs_initialized_p
8140 && FRAME_MESSAGE_BUF (sf))
8141 {
8142 Lisp_Object mini_window;
8143 struct frame *f;
8144
8145 /* Get the frame containing the mini-buffer
8146 that the selected frame is using. */
8147 mini_window = FRAME_MINIBUF_WINDOW (sf);
8148 f = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
8149
8150 FRAME_SAMPLE_VISIBILITY (f);
8151 if (FRAME_VISIBLE_P (sf)
8152 && ! FRAME_VISIBLE_P (f))
8153 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (mini_window)));
8154
8155 if (m)
8156 {
8157 set_message (m, Qnil, nbytes, multibyte);
8158 if (minibuffer_auto_raise)
8159 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window)));
8160 }
8161 else
8162 clear_message (1, 1);
8163
8164 do_pending_window_change (0);
8165 echo_area_display (1);
8166 do_pending_window_change (0);
8167 if (FRAME_TERMINAL (f)->frame_up_to_date_hook != 0 && ! gc_in_progress)
8168 (*FRAME_TERMINAL (f)->frame_up_to_date_hook) (f);
8169 }
8170 }
8171
8172
8173 /* Display an echo area message M with a specified length of NBYTES
8174 bytes. The string may include null characters. If M is not a
8175 string, clear out any existing message, and let the mini-buffer
8176 text show through.
8177
8178 This function cancels echoing. */
8179
8180 void
8181 message3 (Lisp_Object m, EMACS_INT nbytes, int multibyte)
8182 {
8183 struct gcpro gcpro1;
8184
8185 GCPRO1 (m);
8186 clear_message (1,1);
8187 cancel_echoing ();
8188
8189 /* First flush out any partial line written with print. */
8190 message_log_maybe_newline ();
8191 if (STRINGP (m))
8192 {
8193 char *buffer;
8194 USE_SAFE_ALLOCA;
8195
8196 SAFE_ALLOCA (buffer, char *, nbytes);
8197 memcpy (buffer, SDATA (m), nbytes);
8198 message_dolog (buffer, nbytes, 1, multibyte);
8199 SAFE_FREE ();
8200 }
8201 message3_nolog (m, nbytes, multibyte);
8202
8203 UNGCPRO;
8204 }
8205
8206
8207 /* The non-logging version of message3.
8208 This does not cancel echoing, because it is used for echoing.
8209 Perhaps we need to make a separate function for echoing
8210 and make this cancel echoing. */
8211
8212 void
8213 message3_nolog (Lisp_Object m, EMACS_INT nbytes, int multibyte)
8214 {
8215 struct frame *sf = SELECTED_FRAME ();
8216 message_enable_multibyte = multibyte;
8217
8218 if (FRAME_INITIAL_P (sf))
8219 {
8220 if (noninteractive_need_newline)
8221 putc ('\n', stderr);
8222 noninteractive_need_newline = 0;
8223 if (STRINGP (m))
8224 fwrite (SDATA (m), nbytes, 1, stderr);
8225 if (cursor_in_echo_area == 0)
8226 fprintf (stderr, "\n");
8227 fflush (stderr);
8228 }
8229 /* A null message buffer means that the frame hasn't really been
8230 initialized yet. Error messages get reported properly by
8231 cmd_error, so this must be just an informative message; toss it. */
8232 else if (INTERACTIVE
8233 && sf->glyphs_initialized_p
8234 && FRAME_MESSAGE_BUF (sf))
8235 {
8236 Lisp_Object mini_window;
8237 Lisp_Object frame;
8238 struct frame *f;
8239
8240 /* Get the frame containing the mini-buffer
8241 that the selected frame is using. */
8242 mini_window = FRAME_MINIBUF_WINDOW (sf);
8243 frame = XWINDOW (mini_window)->frame;
8244 f = XFRAME (frame);
8245
8246 FRAME_SAMPLE_VISIBILITY (f);
8247 if (FRAME_VISIBLE_P (sf)
8248 && !FRAME_VISIBLE_P (f))
8249 Fmake_frame_visible (frame);
8250
8251 if (STRINGP (m) && SCHARS (m) > 0)
8252 {
8253 set_message (NULL, m, nbytes, multibyte);
8254 if (minibuffer_auto_raise)
8255 Fraise_frame (frame);
8256 /* Assume we are not echoing.
8257 (If we are, echo_now will override this.) */
8258 echo_message_buffer = Qnil;
8259 }
8260 else
8261 clear_message (1, 1);
8262
8263 do_pending_window_change (0);
8264 echo_area_display (1);
8265 do_pending_window_change (0);
8266 if (FRAME_TERMINAL (f)->frame_up_to_date_hook != 0 && ! gc_in_progress)
8267 (*FRAME_TERMINAL (f)->frame_up_to_date_hook) (f);
8268 }
8269 }
8270
8271
8272 /* Display a null-terminated echo area message M. If M is 0, clear
8273 out any existing message, and let the mini-buffer text show through.
8274
8275 The buffer M must continue to exist until after the echo area gets
8276 cleared or some other message gets displayed there. Do not pass
8277 text that is stored in a Lisp string. Do not pass text in a buffer
8278 that was alloca'd. */
8279
8280 void
8281 message1 (const char *m)
8282 {
8283 message2 (m, (m ? strlen (m) : 0), 0);
8284 }
8285
8286
8287 /* The non-logging counterpart of message1. */
8288
8289 void
8290 message1_nolog (const char *m)
8291 {
8292 message2_nolog (m, (m ? strlen (m) : 0), 0);
8293 }
8294
8295 /* Display a message M which contains a single %s
8296 which gets replaced with STRING. */
8297
8298 void
8299 message_with_string (const char *m, Lisp_Object string, int log)
8300 {
8301 CHECK_STRING (string);
8302
8303 if (noninteractive)
8304 {
8305 if (m)
8306 {
8307 if (noninteractive_need_newline)
8308 putc ('\n', stderr);
8309 noninteractive_need_newline = 0;
8310 fprintf (stderr, m, SDATA (string));
8311 if (!cursor_in_echo_area)
8312 fprintf (stderr, "\n");
8313 fflush (stderr);
8314 }
8315 }
8316 else if (INTERACTIVE)
8317 {
8318 /* The frame whose minibuffer we're going to display the message on.
8319 It may be larger than the selected frame, so we need
8320 to use its buffer, not the selected frame's buffer. */
8321 Lisp_Object mini_window;
8322 struct frame *f, *sf = SELECTED_FRAME ();
8323
8324 /* Get the frame containing the minibuffer
8325 that the selected frame is using. */
8326 mini_window = FRAME_MINIBUF_WINDOW (sf);
8327 f = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
8328
8329 /* A null message buffer means that the frame hasn't really been
8330 initialized yet. Error messages get reported properly by
8331 cmd_error, so this must be just an informative message; toss it. */
8332 if (FRAME_MESSAGE_BUF (f))
8333 {
8334 Lisp_Object args[2], msg;
8335 struct gcpro gcpro1, gcpro2;
8336
8337 args[0] = build_string (m);
8338 args[1] = msg = string;
8339 GCPRO2 (args[0], msg);
8340 gcpro1.nvars = 2;
8341
8342 msg = Fformat (2, args);
8343
8344 if (log)
8345 message3 (msg, SBYTES (msg), STRING_MULTIBYTE (msg));
8346 else
8347 message3_nolog (msg, SBYTES (msg), STRING_MULTIBYTE (msg));
8348
8349 UNGCPRO;
8350
8351 /* Print should start at the beginning of the message
8352 buffer next time. */
8353 message_buf_print = 0;
8354 }
8355 }
8356 }
8357
8358
8359 /* Dump an informative message to the minibuf. If M is 0, clear out
8360 any existing message, and let the mini-buffer text show through. */
8361
8362 static void
8363 vmessage (const char *m, va_list ap)
8364 {
8365 if (noninteractive)
8366 {
8367 if (m)
8368 {
8369 if (noninteractive_need_newline)
8370 putc ('\n', stderr);
8371 noninteractive_need_newline = 0;
8372 vfprintf (stderr, m, ap);
8373 if (cursor_in_echo_area == 0)
8374 fprintf (stderr, "\n");
8375 fflush (stderr);
8376 }
8377 }
8378 else if (INTERACTIVE)
8379 {
8380 /* The frame whose mini-buffer we're going to display the message
8381 on. It may be larger than the selected frame, so we need to
8382 use its buffer, not the selected frame's buffer. */
8383 Lisp_Object mini_window;
8384 struct frame *f, *sf = SELECTED_FRAME ();
8385
8386 /* Get the frame containing the mini-buffer
8387 that the selected frame is using. */
8388 mini_window = FRAME_MINIBUF_WINDOW (sf);
8389 f = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
8390
8391 /* A null message buffer means that the frame hasn't really been
8392 initialized yet. Error messages get reported properly by
8393 cmd_error, so this must be just an informative message; toss
8394 it. */
8395 if (FRAME_MESSAGE_BUF (f))
8396 {
8397 if (m)
8398 {
8399 EMACS_INT len;
8400
8401 len = doprnt (FRAME_MESSAGE_BUF (f),
8402 FRAME_MESSAGE_BUF_SIZE (f), m, (char *)0, ap);
8403
8404 message2 (FRAME_MESSAGE_BUF (f), len, 0);
8405 }
8406 else
8407 message1 (0);
8408
8409 /* Print should start at the beginning of the message
8410 buffer next time. */
8411 message_buf_print = 0;
8412 }
8413 }
8414 }
8415
8416 void
8417 message (const char *m, ...)
8418 {
8419 va_list ap;
8420 va_start (ap, m);
8421 vmessage (m, ap);
8422 va_end (ap);
8423 }
8424
8425
8426 /* The non-logging version of message. */
8427
8428 void
8429 message_nolog (const char *m, ...)
8430 {
8431 Lisp_Object old_log_max;
8432 va_list ap;
8433 va_start (ap, m);
8434 old_log_max = Vmessage_log_max;
8435 Vmessage_log_max = Qnil;
8436 vmessage (m, ap);
8437 Vmessage_log_max = old_log_max;
8438 va_end (ap);
8439 }
8440
8441
8442 /* Display the current message in the current mini-buffer. This is
8443 only called from error handlers in process.c, and is not time
8444 critical. */
8445
8446 void
8447 update_echo_area (void)
8448 {
8449 if (!NILP (echo_area_buffer[0]))
8450 {
8451 Lisp_Object string;
8452 string = Fcurrent_message ();
8453 message3 (string, SBYTES (string),
8454 !NILP (BVAR (current_buffer, enable_multibyte_characters)));
8455 }
8456 }
8457
8458
8459 /* Make sure echo area buffers in `echo_buffers' are live.
8460 If they aren't, make new ones. */
8461
8462 static void
8463 ensure_echo_area_buffers (void)
8464 {
8465 int i;
8466
8467 for (i = 0; i < 2; ++i)
8468 if (!BUFFERP (echo_buffer[i])
8469 || NILP (BVAR (XBUFFER (echo_buffer[i]), name)))
8470 {
8471 char name[30];
8472 Lisp_Object old_buffer;
8473 int j;
8474
8475 old_buffer = echo_buffer[i];
8476 sprintf (name, " *Echo Area %d*", i);
8477 echo_buffer[i] = Fget_buffer_create (build_string (name));
8478 BVAR (XBUFFER (echo_buffer[i]), truncate_lines) = Qnil;
8479 /* to force word wrap in echo area -
8480 it was decided to postpone this*/
8481 /* XBUFFER (echo_buffer[i])->word_wrap = Qt; */
8482
8483 for (j = 0; j < 2; ++j)
8484 if (EQ (old_buffer, echo_area_buffer[j]))
8485 echo_area_buffer[j] = echo_buffer[i];
8486 }
8487 }
8488
8489
8490 /* Call FN with args A1..A4 with either the current or last displayed
8491 echo_area_buffer as current buffer.
8492
8493 WHICH zero means use the current message buffer
8494 echo_area_buffer[0]. If that is nil, choose a suitable buffer
8495 from echo_buffer[] and clear it.
8496
8497 WHICH > 0 means use echo_area_buffer[1]. If that is nil, choose a
8498 suitable buffer from echo_buffer[] and clear it.
8499
8500 If WHICH < 0, set echo_area_buffer[1] to echo_area_buffer[0], so
8501 that the current message becomes the last displayed one, make
8502 choose a suitable buffer for echo_area_buffer[0], and clear it.
8503
8504 Value is what FN returns. */
8505
8506 static int
8507 with_echo_area_buffer (struct window *w, int which,
8508 int (*fn) (EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT),
8509 EMACS_INT a1, Lisp_Object a2, EMACS_INT a3, EMACS_INT a4)
8510 {
8511 Lisp_Object buffer;
8512 int this_one, the_other, clear_buffer_p, rc;
8513 int count = SPECPDL_INDEX ();
8514
8515 /* If buffers aren't live, make new ones. */
8516 ensure_echo_area_buffers ();
8517
8518 clear_buffer_p = 0;
8519
8520 if (which == 0)
8521 this_one = 0, the_other = 1;
8522 else if (which > 0)
8523 this_one = 1, the_other = 0;
8524 else
8525 {
8526 this_one = 0, the_other = 1;
8527 clear_buffer_p = 1;
8528
8529 /* We need a fresh one in case the current echo buffer equals
8530 the one containing the last displayed echo area message. */
8531 if (!NILP (echo_area_buffer[this_one])
8532 && EQ (echo_area_buffer[this_one], echo_area_buffer[the_other]))
8533 echo_area_buffer[this_one] = Qnil;
8534 }
8535
8536 /* Choose a suitable buffer from echo_buffer[] is we don't
8537 have one. */
8538 if (NILP (echo_area_buffer[this_one]))
8539 {
8540 echo_area_buffer[this_one]
8541 = (EQ (echo_area_buffer[the_other], echo_buffer[this_one])
8542 ? echo_buffer[the_other]
8543 : echo_buffer[this_one]);
8544 clear_buffer_p = 1;
8545 }
8546
8547 buffer = echo_area_buffer[this_one];
8548
8549 /* Don't get confused by reusing the buffer used for echoing
8550 for a different purpose. */
8551 if (echo_kboard == NULL && EQ (buffer, echo_message_buffer))
8552 cancel_echoing ();
8553
8554 record_unwind_protect (unwind_with_echo_area_buffer,
8555 with_echo_area_buffer_unwind_data (w));
8556
8557 /* Make the echo area buffer current. Note that for display
8558 purposes, it is not necessary that the displayed window's buffer
8559 == current_buffer, except for text property lookup. So, let's
8560 only set that buffer temporarily here without doing a full
8561 Fset_window_buffer. We must also change w->pointm, though,
8562 because otherwise an assertions in unshow_buffer fails, and Emacs
8563 aborts. */
8564 set_buffer_internal_1 (XBUFFER (buffer));
8565 if (w)
8566 {
8567 w->buffer = buffer;
8568 set_marker_both (w->pointm, buffer, BEG, BEG_BYTE);
8569 }
8570
8571 BVAR (current_buffer, undo_list) = Qt;
8572 BVAR (current_buffer, read_only) = Qnil;
8573 specbind (Qinhibit_read_only, Qt);
8574 specbind (Qinhibit_modification_hooks, Qt);
8575
8576 if (clear_buffer_p && Z > BEG)
8577 del_range (BEG, Z);
8578
8579 xassert (BEGV >= BEG);
8580 xassert (ZV <= Z && ZV >= BEGV);
8581
8582 rc = fn (a1, a2, a3, a4);
8583
8584 xassert (BEGV >= BEG);
8585 xassert (ZV <= Z && ZV >= BEGV);
8586
8587 unbind_to (count, Qnil);
8588 return rc;
8589 }
8590
8591
8592 /* Save state that should be preserved around the call to the function
8593 FN called in with_echo_area_buffer. */
8594
8595 static Lisp_Object
8596 with_echo_area_buffer_unwind_data (struct window *w)
8597 {
8598 int i = 0;
8599 Lisp_Object vector, tmp;
8600
8601 /* Reduce consing by keeping one vector in
8602 Vwith_echo_area_save_vector. */
8603 vector = Vwith_echo_area_save_vector;
8604 Vwith_echo_area_save_vector = Qnil;
8605
8606 if (NILP (vector))
8607 vector = Fmake_vector (make_number (7), Qnil);
8608
8609 XSETBUFFER (tmp, current_buffer); ASET (vector, i, tmp); ++i;
8610 ASET (vector, i, Vdeactivate_mark); ++i;
8611 ASET (vector, i, make_number (windows_or_buffers_changed)); ++i;
8612
8613 if (w)
8614 {
8615 XSETWINDOW (tmp, w); ASET (vector, i, tmp); ++i;
8616 ASET (vector, i, w->buffer); ++i;
8617 ASET (vector, i, make_number (XMARKER (w->pointm)->charpos)); ++i;
8618 ASET (vector, i, make_number (XMARKER (w->pointm)->bytepos)); ++i;
8619 }
8620 else
8621 {
8622 int end = i + 4;
8623 for (; i < end; ++i)
8624 ASET (vector, i, Qnil);
8625 }
8626
8627 xassert (i == ASIZE (vector));
8628 return vector;
8629 }
8630
8631
8632 /* Restore global state from VECTOR which was created by
8633 with_echo_area_buffer_unwind_data. */
8634
8635 static Lisp_Object
8636 unwind_with_echo_area_buffer (Lisp_Object vector)
8637 {
8638 set_buffer_internal_1 (XBUFFER (AREF (vector, 0)));
8639 Vdeactivate_mark = AREF (vector, 1);
8640 windows_or_buffers_changed = XFASTINT (AREF (vector, 2));
8641
8642 if (WINDOWP (AREF (vector, 3)))
8643 {
8644 struct window *w;
8645 Lisp_Object buffer, charpos, bytepos;
8646
8647 w = XWINDOW (AREF (vector, 3));
8648 buffer = AREF (vector, 4);
8649 charpos = AREF (vector, 5);
8650 bytepos = AREF (vector, 6);
8651
8652 w->buffer = buffer;
8653 set_marker_both (w->pointm, buffer,
8654 XFASTINT (charpos), XFASTINT (bytepos));
8655 }
8656
8657 Vwith_echo_area_save_vector = vector;
8658 return Qnil;
8659 }
8660
8661
8662 /* Set up the echo area for use by print functions. MULTIBYTE_P
8663 non-zero means we will print multibyte. */
8664
8665 void
8666 setup_echo_area_for_printing (int multibyte_p)
8667 {
8668 /* If we can't find an echo area any more, exit. */
8669 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
8670 Fkill_emacs (Qnil);
8671
8672 ensure_echo_area_buffers ();
8673
8674 if (!message_buf_print)
8675 {
8676 /* A message has been output since the last time we printed.
8677 Choose a fresh echo area buffer. */
8678 if (EQ (echo_area_buffer[1], echo_buffer[0]))
8679 echo_area_buffer[0] = echo_buffer[1];
8680 else
8681 echo_area_buffer[0] = echo_buffer[0];
8682
8683 /* Switch to that buffer and clear it. */
8684 set_buffer_internal (XBUFFER (echo_area_buffer[0]));
8685 BVAR (current_buffer, truncate_lines) = Qnil;
8686
8687 if (Z > BEG)
8688 {
8689 int count = SPECPDL_INDEX ();
8690 specbind (Qinhibit_read_only, Qt);
8691 /* Note that undo recording is always disabled. */
8692 del_range (BEG, Z);
8693 unbind_to (count, Qnil);
8694 }
8695 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
8696
8697 /* Set up the buffer for the multibyteness we need. */
8698 if (multibyte_p
8699 != !NILP (BVAR (current_buffer, enable_multibyte_characters)))
8700 Fset_buffer_multibyte (multibyte_p ? Qt : Qnil);
8701
8702 /* Raise the frame containing the echo area. */
8703 if (minibuffer_auto_raise)
8704 {
8705 struct frame *sf = SELECTED_FRAME ();
8706 Lisp_Object mini_window;
8707 mini_window = FRAME_MINIBUF_WINDOW (sf);
8708 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window)));
8709 }
8710
8711 message_log_maybe_newline ();
8712 message_buf_print = 1;
8713 }
8714 else
8715 {
8716 if (NILP (echo_area_buffer[0]))
8717 {
8718 if (EQ (echo_area_buffer[1], echo_buffer[0]))
8719 echo_area_buffer[0] = echo_buffer[1];
8720 else
8721 echo_area_buffer[0] = echo_buffer[0];
8722 }
8723
8724 if (current_buffer != XBUFFER (echo_area_buffer[0]))
8725 {
8726 /* Someone switched buffers between print requests. */
8727 set_buffer_internal (XBUFFER (echo_area_buffer[0]));
8728 BVAR (current_buffer, truncate_lines) = Qnil;
8729 }
8730 }
8731 }
8732
8733
8734 /* Display an echo area message in window W. Value is non-zero if W's
8735 height is changed. If display_last_displayed_message_p is
8736 non-zero, display the message that was last displayed, otherwise
8737 display the current message. */
8738
8739 static int
8740 display_echo_area (struct window *w)
8741 {
8742 int i, no_message_p, window_height_changed_p, count;
8743
8744 /* Temporarily disable garbage collections while displaying the echo
8745 area. This is done because a GC can print a message itself.
8746 That message would modify the echo area buffer's contents while a
8747 redisplay of the buffer is going on, and seriously confuse
8748 redisplay. */
8749 count = inhibit_garbage_collection ();
8750
8751 /* If there is no message, we must call display_echo_area_1
8752 nevertheless because it resizes the window. But we will have to
8753 reset the echo_area_buffer in question to nil at the end because
8754 with_echo_area_buffer will sets it to an empty buffer. */
8755 i = display_last_displayed_message_p ? 1 : 0;
8756 no_message_p = NILP (echo_area_buffer[i]);
8757
8758 window_height_changed_p
8759 = with_echo_area_buffer (w, display_last_displayed_message_p,
8760 display_echo_area_1,
8761 (EMACS_INT) w, Qnil, 0, 0);
8762
8763 if (no_message_p)
8764 echo_area_buffer[i] = Qnil;
8765
8766 unbind_to (count, Qnil);
8767 return window_height_changed_p;
8768 }
8769
8770
8771 /* Helper for display_echo_area. Display the current buffer which
8772 contains the current echo area message in window W, a mini-window,
8773 a pointer to which is passed in A1. A2..A4 are currently not used.
8774 Change the height of W so that all of the message is displayed.
8775 Value is non-zero if height of W was changed. */
8776
8777 static int
8778 display_echo_area_1 (EMACS_INT a1, Lisp_Object a2, EMACS_INT a3, EMACS_INT a4)
8779 {
8780 struct window *w = (struct window *) a1;
8781 Lisp_Object window;
8782 struct text_pos start;
8783 int window_height_changed_p = 0;
8784
8785 /* Do this before displaying, so that we have a large enough glyph
8786 matrix for the display. If we can't get enough space for the
8787 whole text, display the last N lines. That works by setting w->start. */
8788 window_height_changed_p = resize_mini_window (w, 0);
8789
8790 /* Use the starting position chosen by resize_mini_window. */
8791 SET_TEXT_POS_FROM_MARKER (start, w->start);
8792
8793 /* Display. */
8794 clear_glyph_matrix (w->desired_matrix);
8795 XSETWINDOW (window, w);
8796 try_window (window, start, 0);
8797
8798 return window_height_changed_p;
8799 }
8800
8801
8802 /* Resize the echo area window to exactly the size needed for the
8803 currently displayed message, if there is one. If a mini-buffer
8804 is active, don't shrink it. */
8805
8806 void
8807 resize_echo_area_exactly (void)
8808 {
8809 if (BUFFERP (echo_area_buffer[0])
8810 && WINDOWP (echo_area_window))
8811 {
8812 struct window *w = XWINDOW (echo_area_window);
8813 int resized_p;
8814 Lisp_Object resize_exactly;
8815
8816 if (minibuf_level == 0)
8817 resize_exactly = Qt;
8818 else
8819 resize_exactly = Qnil;
8820
8821 resized_p = with_echo_area_buffer (w, 0, resize_mini_window_1,
8822 (EMACS_INT) w, resize_exactly, 0, 0);
8823 if (resized_p)
8824 {
8825 ++windows_or_buffers_changed;
8826 ++update_mode_lines;
8827 redisplay_internal (0);
8828 }
8829 }
8830 }
8831
8832
8833 /* Callback function for with_echo_area_buffer, when used from
8834 resize_echo_area_exactly. A1 contains a pointer to the window to
8835 resize, EXACTLY non-nil means resize the mini-window exactly to the
8836 size of the text displayed. A3 and A4 are not used. Value is what
8837 resize_mini_window returns. */
8838
8839 static int
8840 resize_mini_window_1 (EMACS_INT a1, Lisp_Object exactly, EMACS_INT a3, EMACS_INT a4)
8841 {
8842 return resize_mini_window ((struct window *) a1, !NILP (exactly));
8843 }
8844
8845
8846 /* Resize mini-window W to fit the size of its contents. EXACT_P
8847 means size the window exactly to the size needed. Otherwise, it's
8848 only enlarged until W's buffer is empty.
8849
8850 Set W->start to the right place to begin display. If the whole
8851 contents fit, start at the beginning. Otherwise, start so as
8852 to make the end of the contents appear. This is particularly
8853 important for y-or-n-p, but seems desirable generally.
8854
8855 Value is non-zero if the window height has been changed. */
8856
8857 int
8858 resize_mini_window (struct window *w, int exact_p)
8859 {
8860 struct frame *f = XFRAME (w->frame);
8861 int window_height_changed_p = 0;
8862
8863 xassert (MINI_WINDOW_P (w));
8864
8865 /* By default, start display at the beginning. */
8866 set_marker_both (w->start, w->buffer,
8867 BUF_BEGV (XBUFFER (w->buffer)),
8868 BUF_BEGV_BYTE (XBUFFER (w->buffer)));
8869
8870 /* Don't resize windows while redisplaying a window; it would
8871 confuse redisplay functions when the size of the window they are
8872 displaying changes from under them. Such a resizing can happen,
8873 for instance, when which-func prints a long message while
8874 we are running fontification-functions. We're running these
8875 functions with safe_call which binds inhibit-redisplay to t. */
8876 if (!NILP (Vinhibit_redisplay))
8877 return 0;
8878
8879 /* Nil means don't try to resize. */
8880 if (NILP (Vresize_mini_windows)
8881 || (FRAME_X_P (f) && FRAME_X_OUTPUT (f) == NULL))
8882 return 0;
8883
8884 if (!FRAME_MINIBUF_ONLY_P (f))
8885 {
8886 struct it it;
8887 struct window *root = XWINDOW (FRAME_ROOT_WINDOW (f));
8888 int total_height = WINDOW_TOTAL_LINES (root) + WINDOW_TOTAL_LINES (w);
8889 int height, max_height;
8890 int unit = FRAME_LINE_HEIGHT (f);
8891 struct text_pos start;
8892 struct buffer *old_current_buffer = NULL;
8893
8894 if (current_buffer != XBUFFER (w->buffer))
8895 {
8896 old_current_buffer = current_buffer;
8897 set_buffer_internal (XBUFFER (w->buffer));
8898 }
8899
8900 init_iterator (&it, w, BEGV, BEGV_BYTE, NULL, DEFAULT_FACE_ID);
8901
8902 /* Compute the max. number of lines specified by the user. */
8903 if (FLOATP (Vmax_mini_window_height))
8904 max_height = XFLOATINT (Vmax_mini_window_height) * FRAME_LINES (f);
8905 else if (INTEGERP (Vmax_mini_window_height))
8906 max_height = XINT (Vmax_mini_window_height);
8907 else
8908 max_height = total_height / 4;
8909
8910 /* Correct that max. height if it's bogus. */
8911 max_height = max (1, max_height);
8912 max_height = min (total_height, max_height);
8913
8914 /* Find out the height of the text in the window. */
8915 if (it.line_wrap == TRUNCATE)
8916 height = 1;
8917 else
8918 {
8919 last_height = 0;
8920 move_it_to (&it, ZV, -1, -1, -1, MOVE_TO_POS);
8921 if (it.max_ascent == 0 && it.max_descent == 0)
8922 height = it.current_y + last_height;
8923 else
8924 height = it.current_y + it.max_ascent + it.max_descent;
8925 height -= min (it.extra_line_spacing, it.max_extra_line_spacing);
8926 height = (height + unit - 1) / unit;
8927 }
8928
8929 /* Compute a suitable window start. */
8930 if (height > max_height)
8931 {
8932 height = max_height;
8933 init_iterator (&it, w, ZV, ZV_BYTE, NULL, DEFAULT_FACE_ID);
8934 move_it_vertically_backward (&it, (height - 1) * unit);
8935 start = it.current.pos;
8936 }
8937 else
8938 SET_TEXT_POS (start, BEGV, BEGV_BYTE);
8939 SET_MARKER_FROM_TEXT_POS (w->start, start);
8940
8941 if (EQ (Vresize_mini_windows, Qgrow_only))
8942 {
8943 /* Let it grow only, until we display an empty message, in which
8944 case the window shrinks again. */
8945 if (height > WINDOW_TOTAL_LINES (w))
8946 {
8947 int old_height = WINDOW_TOTAL_LINES (w);
8948 freeze_window_starts (f, 1);
8949 grow_mini_window (w, height - WINDOW_TOTAL_LINES (w));
8950 window_height_changed_p = WINDOW_TOTAL_LINES (w) != old_height;
8951 }
8952 else if (height < WINDOW_TOTAL_LINES (w)
8953 && (exact_p || BEGV == ZV))
8954 {
8955 int old_height = WINDOW_TOTAL_LINES (w);
8956 freeze_window_starts (f, 0);
8957 shrink_mini_window (w);
8958 window_height_changed_p = WINDOW_TOTAL_LINES (w) != old_height;
8959 }
8960 }
8961 else
8962 {
8963 /* Always resize to exact size needed. */
8964 if (height > WINDOW_TOTAL_LINES (w))
8965 {
8966 int old_height = WINDOW_TOTAL_LINES (w);
8967 freeze_window_starts (f, 1);
8968 grow_mini_window (w, height - WINDOW_TOTAL_LINES (w));
8969 window_height_changed_p = WINDOW_TOTAL_LINES (w) != old_height;
8970 }
8971 else if (height < WINDOW_TOTAL_LINES (w))
8972 {
8973 int old_height = WINDOW_TOTAL_LINES (w);
8974 freeze_window_starts (f, 0);
8975 shrink_mini_window (w);
8976
8977 if (height)
8978 {
8979 freeze_window_starts (f, 1);
8980 grow_mini_window (w, height - WINDOW_TOTAL_LINES (w));
8981 }
8982
8983 window_height_changed_p = WINDOW_TOTAL_LINES (w) != old_height;
8984 }
8985 }
8986
8987 if (old_current_buffer)
8988 set_buffer_internal (old_current_buffer);
8989 }
8990
8991 return window_height_changed_p;
8992 }
8993
8994
8995 /* Value is the current message, a string, or nil if there is no
8996 current message. */
8997
8998 Lisp_Object
8999 current_message (void)
9000 {
9001 Lisp_Object msg;
9002
9003 if (!BUFFERP (echo_area_buffer[0]))
9004 msg = Qnil;
9005 else
9006 {
9007 with_echo_area_buffer (0, 0, current_message_1,
9008 (EMACS_INT) &msg, Qnil, 0, 0);
9009 if (NILP (msg))
9010 echo_area_buffer[0] = Qnil;
9011 }
9012
9013 return msg;
9014 }
9015
9016
9017 static int
9018 current_message_1 (EMACS_INT a1, Lisp_Object a2, EMACS_INT a3, EMACS_INT a4)
9019 {
9020 Lisp_Object *msg = (Lisp_Object *) a1;
9021
9022 if (Z > BEG)
9023 *msg = make_buffer_string (BEG, Z, 1);
9024 else
9025 *msg = Qnil;
9026 return 0;
9027 }
9028
9029
9030 /* Push the current message on Vmessage_stack for later restauration
9031 by restore_message. Value is non-zero if the current message isn't
9032 empty. This is a relatively infrequent operation, so it's not
9033 worth optimizing. */
9034
9035 int
9036 push_message (void)
9037 {
9038 Lisp_Object msg;
9039 msg = current_message ();
9040 Vmessage_stack = Fcons (msg, Vmessage_stack);
9041 return STRINGP (msg);
9042 }
9043
9044
9045 /* Restore message display from the top of Vmessage_stack. */
9046
9047 void
9048 restore_message (void)
9049 {
9050 Lisp_Object msg;
9051
9052 xassert (CONSP (Vmessage_stack));
9053 msg = XCAR (Vmessage_stack);
9054 if (STRINGP (msg))
9055 message3_nolog (msg, SBYTES (msg), STRING_MULTIBYTE (msg));
9056 else
9057 message3_nolog (msg, 0, 0);
9058 }
9059
9060
9061 /* Handler for record_unwind_protect calling pop_message. */
9062
9063 Lisp_Object
9064 pop_message_unwind (Lisp_Object dummy)
9065 {
9066 pop_message ();
9067 return Qnil;
9068 }
9069
9070 /* Pop the top-most entry off Vmessage_stack. */
9071
9072 void
9073 pop_message (void)
9074 {
9075 xassert (CONSP (Vmessage_stack));
9076 Vmessage_stack = XCDR (Vmessage_stack);
9077 }
9078
9079
9080 /* Check that Vmessage_stack is nil. Called from emacs.c when Emacs
9081 exits. If the stack is not empty, we have a missing pop_message
9082 somewhere. */
9083
9084 void
9085 check_message_stack (void)
9086 {
9087 if (!NILP (Vmessage_stack))
9088 abort ();
9089 }
9090
9091
9092 /* Truncate to NCHARS what will be displayed in the echo area the next
9093 time we display it---but don't redisplay it now. */
9094
9095 void
9096 truncate_echo_area (EMACS_INT nchars)
9097 {
9098 if (nchars == 0)
9099 echo_area_buffer[0] = Qnil;
9100 /* A null message buffer means that the frame hasn't really been
9101 initialized yet. Error messages get reported properly by
9102 cmd_error, so this must be just an informative message; toss it. */
9103 else if (!noninteractive
9104 && INTERACTIVE
9105 && !NILP (echo_area_buffer[0]))
9106 {
9107 struct frame *sf = SELECTED_FRAME ();
9108 if (FRAME_MESSAGE_BUF (sf))
9109 with_echo_area_buffer (0, 0, truncate_message_1, nchars, Qnil, 0, 0);
9110 }
9111 }
9112
9113
9114 /* Helper function for truncate_echo_area. Truncate the current
9115 message to at most NCHARS characters. */
9116
9117 static int
9118 truncate_message_1 (EMACS_INT nchars, Lisp_Object a2, EMACS_INT a3, EMACS_INT a4)
9119 {
9120 if (BEG + nchars < Z)
9121 del_range (BEG + nchars, Z);
9122 if (Z == BEG)
9123 echo_area_buffer[0] = Qnil;
9124 return 0;
9125 }
9126
9127
9128 /* Set the current message to a substring of S or STRING.
9129
9130 If STRING is a Lisp string, set the message to the first NBYTES
9131 bytes from STRING. NBYTES zero means use the whole string. If
9132 STRING is multibyte, the message will be displayed multibyte.
9133
9134 If S is not null, set the message to the first LEN bytes of S. LEN
9135 zero means use the whole string. MULTIBYTE_P non-zero means S is
9136 multibyte. Display the message multibyte in that case.
9137
9138 Doesn't GC, as with_echo_area_buffer binds Qinhibit_modification_hooks
9139 to t before calling set_message_1 (which calls insert).
9140 */
9141
9142 void
9143 set_message (const char *s, Lisp_Object string,
9144 EMACS_INT nbytes, int multibyte_p)
9145 {
9146 message_enable_multibyte
9147 = ((s && multibyte_p)
9148 || (STRINGP (string) && STRING_MULTIBYTE (string)));
9149
9150 with_echo_area_buffer (0, -1, set_message_1,
9151 (EMACS_INT) s, string, nbytes, multibyte_p);
9152 message_buf_print = 0;
9153 help_echo_showing_p = 0;
9154 }
9155
9156
9157 /* Helper function for set_message. Arguments have the same meaning
9158 as there, with A1 corresponding to S and A2 corresponding to STRING
9159 This function is called with the echo area buffer being
9160 current. */
9161
9162 static int
9163 set_message_1 (EMACS_INT a1, Lisp_Object a2, EMACS_INT nbytes, EMACS_INT multibyte_p)
9164 {
9165 const char *s = (const char *) a1;
9166 const unsigned char *msg = (const unsigned char *) s;
9167 Lisp_Object string = a2;
9168
9169 /* Change multibyteness of the echo buffer appropriately. */
9170 if (message_enable_multibyte
9171 != !NILP (BVAR (current_buffer, enable_multibyte_characters)))
9172 Fset_buffer_multibyte (message_enable_multibyte ? Qt : Qnil);
9173
9174 BVAR (current_buffer, truncate_lines) = message_truncate_lines ? Qt : Qnil;
9175 if (!NILP (BVAR (current_buffer, bidi_display_reordering)))
9176 BVAR (current_buffer, bidi_paragraph_direction) = Qleft_to_right;
9177
9178 /* Insert new message at BEG. */
9179 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
9180
9181 if (STRINGP (string))
9182 {
9183 EMACS_INT nchars;
9184
9185 if (nbytes == 0)
9186 nbytes = SBYTES (string);
9187 nchars = string_byte_to_char (string, nbytes);
9188
9189 /* This function takes care of single/multibyte conversion. We
9190 just have to ensure that the echo area buffer has the right
9191 setting of enable_multibyte_characters. */
9192 insert_from_string (string, 0, 0, nchars, nbytes, 1);
9193 }
9194 else if (s)
9195 {
9196 if (nbytes == 0)
9197 nbytes = strlen (s);
9198
9199 if (multibyte_p && NILP (BVAR (current_buffer, enable_multibyte_characters)))
9200 {
9201 /* Convert from multi-byte to single-byte. */
9202 EMACS_INT i;
9203 int c, n;
9204 char work[1];
9205
9206 /* Convert a multibyte string to single-byte. */
9207 for (i = 0; i < nbytes; i += n)
9208 {
9209 c = string_char_and_length (msg + i, &n);
9210 work[0] = (ASCII_CHAR_P (c)
9211 ? c
9212 : multibyte_char_to_unibyte (c, Qnil));
9213 insert_1_both (work, 1, 1, 1, 0, 0);
9214 }
9215 }
9216 else if (!multibyte_p
9217 && !NILP (BVAR (current_buffer, enable_multibyte_characters)))
9218 {
9219 /* Convert from single-byte to multi-byte. */
9220 EMACS_INT i;
9221 int c, n;
9222 unsigned char str[MAX_MULTIBYTE_LENGTH];
9223
9224 /* Convert a single-byte string to multibyte. */
9225 for (i = 0; i < nbytes; i++)
9226 {
9227 c = msg[i];
9228 MAKE_CHAR_MULTIBYTE (c);
9229 n = CHAR_STRING (c, str);
9230 insert_1_both ((char *) str, 1, n, 1, 0, 0);
9231 }
9232 }
9233 else
9234 insert_1 (s, nbytes, 1, 0, 0);
9235 }
9236
9237 return 0;
9238 }
9239
9240
9241 /* Clear messages. CURRENT_P non-zero means clear the current
9242 message. LAST_DISPLAYED_P non-zero means clear the message
9243 last displayed. */
9244
9245 void
9246 clear_message (int current_p, int last_displayed_p)
9247 {
9248 if (current_p)
9249 {
9250 echo_area_buffer[0] = Qnil;
9251 message_cleared_p = 1;
9252 }
9253
9254 if (last_displayed_p)
9255 echo_area_buffer[1] = Qnil;
9256
9257 message_buf_print = 0;
9258 }
9259
9260 /* Clear garbaged frames.
9261
9262 This function is used where the old redisplay called
9263 redraw_garbaged_frames which in turn called redraw_frame which in
9264 turn called clear_frame. The call to clear_frame was a source of
9265 flickering. I believe a clear_frame is not necessary. It should
9266 suffice in the new redisplay to invalidate all current matrices,
9267 and ensure a complete redisplay of all windows. */
9268
9269 static void
9270 clear_garbaged_frames (void)
9271 {
9272 if (frame_garbaged)
9273 {
9274 Lisp_Object tail, frame;
9275 int changed_count = 0;
9276
9277 FOR_EACH_FRAME (tail, frame)
9278 {
9279 struct frame *f = XFRAME (frame);
9280
9281 if (FRAME_VISIBLE_P (f) && FRAME_GARBAGED_P (f))
9282 {
9283 if (f->resized_p)
9284 {
9285 Fredraw_frame (frame);
9286 f->force_flush_display_p = 1;
9287 }
9288 clear_current_matrices (f);
9289 changed_count++;
9290 f->garbaged = 0;
9291 f->resized_p = 0;
9292 }
9293 }
9294
9295 frame_garbaged = 0;
9296 if (changed_count)
9297 ++windows_or_buffers_changed;
9298 }
9299 }
9300
9301
9302 /* Redisplay the echo area of the selected frame. If UPDATE_FRAME_P
9303 is non-zero update selected_frame. Value is non-zero if the
9304 mini-windows height has been changed. */
9305
9306 static int
9307 echo_area_display (int update_frame_p)
9308 {
9309 Lisp_Object mini_window;
9310 struct window *w;
9311 struct frame *f;
9312 int window_height_changed_p = 0;
9313 struct frame *sf = SELECTED_FRAME ();
9314
9315 mini_window = FRAME_MINIBUF_WINDOW (sf);
9316 w = XWINDOW (mini_window);
9317 f = XFRAME (WINDOW_FRAME (w));
9318
9319 /* Don't display if frame is invisible or not yet initialized. */
9320 if (!FRAME_VISIBLE_P (f) || !f->glyphs_initialized_p)
9321 return 0;
9322
9323 #ifdef HAVE_WINDOW_SYSTEM
9324 /* When Emacs starts, selected_frame may be the initial terminal
9325 frame. If we let this through, a message would be displayed on
9326 the terminal. */
9327 if (FRAME_INITIAL_P (XFRAME (selected_frame)))
9328 return 0;
9329 #endif /* HAVE_WINDOW_SYSTEM */
9330
9331 /* Redraw garbaged frames. */
9332 if (frame_garbaged)
9333 clear_garbaged_frames ();
9334
9335 if (!NILP (echo_area_buffer[0]) || minibuf_level == 0)
9336 {
9337 echo_area_window = mini_window;
9338 window_height_changed_p = display_echo_area (w);
9339 w->must_be_updated_p = 1;
9340
9341 /* Update the display, unless called from redisplay_internal.
9342 Also don't update the screen during redisplay itself. The
9343 update will happen at the end of redisplay, and an update
9344 here could cause confusion. */
9345 if (update_frame_p && !redisplaying_p)
9346 {
9347 int n = 0;
9348
9349 /* If the display update has been interrupted by pending
9350 input, update mode lines in the frame. Due to the
9351 pending input, it might have been that redisplay hasn't
9352 been called, so that mode lines above the echo area are
9353 garbaged. This looks odd, so we prevent it here. */
9354 if (!display_completed)
9355 n = redisplay_mode_lines (FRAME_ROOT_WINDOW (f), 0);
9356
9357 if (window_height_changed_p
9358 /* Don't do this if Emacs is shutting down. Redisplay
9359 needs to run hooks. */
9360 && !NILP (Vrun_hooks))
9361 {
9362 /* Must update other windows. Likewise as in other
9363 cases, don't let this update be interrupted by
9364 pending input. */
9365 int count = SPECPDL_INDEX ();
9366 specbind (Qredisplay_dont_pause, Qt);
9367 windows_or_buffers_changed = 1;
9368 redisplay_internal (0);
9369 unbind_to (count, Qnil);
9370 }
9371 else if (FRAME_WINDOW_P (f) && n == 0)
9372 {
9373 /* Window configuration is the same as before.
9374 Can do with a display update of the echo area,
9375 unless we displayed some mode lines. */
9376 update_single_window (w, 1);
9377 FRAME_RIF (f)->flush_display (f);
9378 }
9379 else
9380 update_frame (f, 1, 1);
9381
9382 /* If cursor is in the echo area, make sure that the next
9383 redisplay displays the minibuffer, so that the cursor will
9384 be replaced with what the minibuffer wants. */
9385 if (cursor_in_echo_area)
9386 ++windows_or_buffers_changed;
9387 }
9388 }
9389 else if (!EQ (mini_window, selected_window))
9390 windows_or_buffers_changed++;
9391
9392 /* Last displayed message is now the current message. */
9393 echo_area_buffer[1] = echo_area_buffer[0];
9394 /* Inform read_char that we're not echoing. */
9395 echo_message_buffer = Qnil;
9396
9397 /* Prevent redisplay optimization in redisplay_internal by resetting
9398 this_line_start_pos. This is done because the mini-buffer now
9399 displays the message instead of its buffer text. */
9400 if (EQ (mini_window, selected_window))
9401 CHARPOS (this_line_start_pos) = 0;
9402
9403 return window_height_changed_p;
9404 }
9405
9406
9407 \f
9408 /***********************************************************************
9409 Mode Lines and Frame Titles
9410 ***********************************************************************/
9411
9412 /* A buffer for constructing non-propertized mode-line strings and
9413 frame titles in it; allocated from the heap in init_xdisp and
9414 resized as needed in store_mode_line_noprop_char. */
9415
9416 static char *mode_line_noprop_buf;
9417
9418 /* The buffer's end, and a current output position in it. */
9419
9420 static char *mode_line_noprop_buf_end;
9421 static char *mode_line_noprop_ptr;
9422
9423 #define MODE_LINE_NOPROP_LEN(start) \
9424 ((mode_line_noprop_ptr - mode_line_noprop_buf) - start)
9425
9426 static enum {
9427 MODE_LINE_DISPLAY = 0,
9428 MODE_LINE_TITLE,
9429 MODE_LINE_NOPROP,
9430 MODE_LINE_STRING
9431 } mode_line_target;
9432
9433 /* Alist that caches the results of :propertize.
9434 Each element is (PROPERTIZED-STRING . PROPERTY-LIST). */
9435 static Lisp_Object mode_line_proptrans_alist;
9436
9437 /* List of strings making up the mode-line. */
9438 static Lisp_Object mode_line_string_list;
9439
9440 /* Base face property when building propertized mode line string. */
9441 static Lisp_Object mode_line_string_face;
9442 static Lisp_Object mode_line_string_face_prop;
9443
9444
9445 /* Unwind data for mode line strings */
9446
9447 static Lisp_Object Vmode_line_unwind_vector;
9448
9449 static Lisp_Object
9450 format_mode_line_unwind_data (struct buffer *obuf,
9451 Lisp_Object owin,
9452 int save_proptrans)
9453 {
9454 Lisp_Object vector, tmp;
9455
9456 /* Reduce consing by keeping one vector in
9457 Vwith_echo_area_save_vector. */
9458 vector = Vmode_line_unwind_vector;
9459 Vmode_line_unwind_vector = Qnil;
9460
9461 if (NILP (vector))
9462 vector = Fmake_vector (make_number (8), Qnil);
9463
9464 ASET (vector, 0, make_number (mode_line_target));
9465 ASET (vector, 1, make_number (MODE_LINE_NOPROP_LEN (0)));
9466 ASET (vector, 2, mode_line_string_list);
9467 ASET (vector, 3, save_proptrans ? mode_line_proptrans_alist : Qt);
9468 ASET (vector, 4, mode_line_string_face);
9469 ASET (vector, 5, mode_line_string_face_prop);
9470
9471 if (obuf)
9472 XSETBUFFER (tmp, obuf);
9473 else
9474 tmp = Qnil;
9475 ASET (vector, 6, tmp);
9476 ASET (vector, 7, owin);
9477
9478 return vector;
9479 }
9480
9481 static Lisp_Object
9482 unwind_format_mode_line (Lisp_Object vector)
9483 {
9484 mode_line_target = XINT (AREF (vector, 0));
9485 mode_line_noprop_ptr = mode_line_noprop_buf + XINT (AREF (vector, 1));
9486 mode_line_string_list = AREF (vector, 2);
9487 if (! EQ (AREF (vector, 3), Qt))
9488 mode_line_proptrans_alist = AREF (vector, 3);
9489 mode_line_string_face = AREF (vector, 4);
9490 mode_line_string_face_prop = AREF (vector, 5);
9491
9492 if (!NILP (AREF (vector, 7)))
9493 /* Select window before buffer, since it may change the buffer. */
9494 Fselect_window (AREF (vector, 7), Qt);
9495
9496 if (!NILP (AREF (vector, 6)))
9497 {
9498 set_buffer_internal_1 (XBUFFER (AREF (vector, 6)));
9499 ASET (vector, 6, Qnil);
9500 }
9501
9502 Vmode_line_unwind_vector = vector;
9503 return Qnil;
9504 }
9505
9506
9507 /* Store a single character C for the frame title in mode_line_noprop_buf.
9508 Re-allocate mode_line_noprop_buf if necessary. */
9509
9510 static void
9511 store_mode_line_noprop_char (char c)
9512 {
9513 /* If output position has reached the end of the allocated buffer,
9514 double the buffer's size. */
9515 if (mode_line_noprop_ptr == mode_line_noprop_buf_end)
9516 {
9517 int len = MODE_LINE_NOPROP_LEN (0);
9518 int new_size = 2 * len * sizeof *mode_line_noprop_buf;
9519 mode_line_noprop_buf = (char *) xrealloc (mode_line_noprop_buf, new_size);
9520 mode_line_noprop_buf_end = mode_line_noprop_buf + new_size;
9521 mode_line_noprop_ptr = mode_line_noprop_buf + len;
9522 }
9523
9524 *mode_line_noprop_ptr++ = c;
9525 }
9526
9527
9528 /* Store part of a frame title in mode_line_noprop_buf, beginning at
9529 mode_line_noprop_ptr. STRING is the string to store. Do not copy
9530 characters that yield more columns than PRECISION; PRECISION <= 0
9531 means copy the whole string. Pad with spaces until FIELD_WIDTH
9532 number of characters have been copied; FIELD_WIDTH <= 0 means don't
9533 pad. Called from display_mode_element when it is used to build a
9534 frame title. */
9535
9536 static int
9537 store_mode_line_noprop (const char *string, int field_width, int precision)
9538 {
9539 const unsigned char *str = (const unsigned char *) string;
9540 int n = 0;
9541 EMACS_INT dummy, nbytes;
9542
9543 /* Copy at most PRECISION chars from STR. */
9544 nbytes = strlen (string);
9545 n += c_string_width (str, nbytes, precision, &dummy, &nbytes);
9546 while (nbytes--)
9547 store_mode_line_noprop_char (*str++);
9548
9549 /* Fill up with spaces until FIELD_WIDTH reached. */
9550 while (field_width > 0
9551 && n < field_width)
9552 {
9553 store_mode_line_noprop_char (' ');
9554 ++n;
9555 }
9556
9557 return n;
9558 }
9559
9560 /***********************************************************************
9561 Frame Titles
9562 ***********************************************************************/
9563
9564 #ifdef HAVE_WINDOW_SYSTEM
9565
9566 /* Set the title of FRAME, if it has changed. The title format is
9567 Vicon_title_format if FRAME is iconified, otherwise it is
9568 frame_title_format. */
9569
9570 static void
9571 x_consider_frame_title (Lisp_Object frame)
9572 {
9573 struct frame *f = XFRAME (frame);
9574
9575 if (FRAME_WINDOW_P (f)
9576 || FRAME_MINIBUF_ONLY_P (f)
9577 || f->explicit_name)
9578 {
9579 /* Do we have more than one visible frame on this X display? */
9580 Lisp_Object tail;
9581 Lisp_Object fmt;
9582 int title_start;
9583 char *title;
9584 int len;
9585 struct it it;
9586 int count = SPECPDL_INDEX ();
9587
9588 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
9589 {
9590 Lisp_Object other_frame = XCAR (tail);
9591 struct frame *tf = XFRAME (other_frame);
9592
9593 if (tf != f
9594 && FRAME_KBOARD (tf) == FRAME_KBOARD (f)
9595 && !FRAME_MINIBUF_ONLY_P (tf)
9596 && !EQ (other_frame, tip_frame)
9597 && (FRAME_VISIBLE_P (tf) || FRAME_ICONIFIED_P (tf)))
9598 break;
9599 }
9600
9601 /* Set global variable indicating that multiple frames exist. */
9602 multiple_frames = CONSP (tail);
9603
9604 /* Switch to the buffer of selected window of the frame. Set up
9605 mode_line_target so that display_mode_element will output into
9606 mode_line_noprop_buf; then display the title. */
9607 record_unwind_protect (unwind_format_mode_line,
9608 format_mode_line_unwind_data
9609 (current_buffer, selected_window, 0));
9610
9611 Fselect_window (f->selected_window, Qt);
9612 set_buffer_internal_1 (XBUFFER (XWINDOW (f->selected_window)->buffer));
9613 fmt = FRAME_ICONIFIED_P (f) ? Vicon_title_format : Vframe_title_format;
9614
9615 mode_line_target = MODE_LINE_TITLE;
9616 title_start = MODE_LINE_NOPROP_LEN (0);
9617 init_iterator (&it, XWINDOW (f->selected_window), -1, -1,
9618 NULL, DEFAULT_FACE_ID);
9619 display_mode_element (&it, 0, -1, -1, fmt, Qnil, 0);
9620 len = MODE_LINE_NOPROP_LEN (title_start);
9621 title = mode_line_noprop_buf + title_start;
9622 unbind_to (count, Qnil);
9623
9624 /* Set the title only if it's changed. This avoids consing in
9625 the common case where it hasn't. (If it turns out that we've
9626 already wasted too much time by walking through the list with
9627 display_mode_element, then we might need to optimize at a
9628 higher level than this.) */
9629 if (! STRINGP (f->name)
9630 || SBYTES (f->name) != len
9631 || memcmp (title, SDATA (f->name), len) != 0)
9632 x_implicitly_set_name (f, make_string (title, len), Qnil);
9633 }
9634 }
9635
9636 #endif /* not HAVE_WINDOW_SYSTEM */
9637
9638
9639
9640 \f
9641 /***********************************************************************
9642 Menu Bars
9643 ***********************************************************************/
9644
9645
9646 /* Prepare for redisplay by updating menu-bar item lists when
9647 appropriate. This can call eval. */
9648
9649 void
9650 prepare_menu_bars (void)
9651 {
9652 int all_windows;
9653 struct gcpro gcpro1, gcpro2;
9654 struct frame *f;
9655 Lisp_Object tooltip_frame;
9656
9657 #ifdef HAVE_WINDOW_SYSTEM
9658 tooltip_frame = tip_frame;
9659 #else
9660 tooltip_frame = Qnil;
9661 #endif
9662
9663 /* Update all frame titles based on their buffer names, etc. We do
9664 this before the menu bars so that the buffer-menu will show the
9665 up-to-date frame titles. */
9666 #ifdef HAVE_WINDOW_SYSTEM
9667 if (windows_or_buffers_changed || update_mode_lines)
9668 {
9669 Lisp_Object tail, frame;
9670
9671 FOR_EACH_FRAME (tail, frame)
9672 {
9673 f = XFRAME (frame);
9674 if (!EQ (frame, tooltip_frame)
9675 && (FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f)))
9676 x_consider_frame_title (frame);
9677 }
9678 }
9679 #endif /* HAVE_WINDOW_SYSTEM */
9680
9681 /* Update the menu bar item lists, if appropriate. This has to be
9682 done before any actual redisplay or generation of display lines. */
9683 all_windows = (update_mode_lines
9684 || buffer_shared > 1
9685 || windows_or_buffers_changed);
9686 if (all_windows)
9687 {
9688 Lisp_Object tail, frame;
9689 int count = SPECPDL_INDEX ();
9690 /* 1 means that update_menu_bar has run its hooks
9691 so any further calls to update_menu_bar shouldn't do so again. */
9692 int menu_bar_hooks_run = 0;
9693
9694 record_unwind_save_match_data ();
9695
9696 FOR_EACH_FRAME (tail, frame)
9697 {
9698 f = XFRAME (frame);
9699
9700 /* Ignore tooltip frame. */
9701 if (EQ (frame, tooltip_frame))
9702 continue;
9703
9704 /* If a window on this frame changed size, report that to
9705 the user and clear the size-change flag. */
9706 if (FRAME_WINDOW_SIZES_CHANGED (f))
9707 {
9708 Lisp_Object functions;
9709
9710 /* Clear flag first in case we get an error below. */
9711 FRAME_WINDOW_SIZES_CHANGED (f) = 0;
9712 functions = Vwindow_size_change_functions;
9713 GCPRO2 (tail, functions);
9714
9715 while (CONSP (functions))
9716 {
9717 if (!EQ (XCAR (functions), Qt))
9718 call1 (XCAR (functions), frame);
9719 functions = XCDR (functions);
9720 }
9721 UNGCPRO;
9722 }
9723
9724 GCPRO1 (tail);
9725 menu_bar_hooks_run = update_menu_bar (f, 0, menu_bar_hooks_run);
9726 #ifdef HAVE_WINDOW_SYSTEM
9727 update_tool_bar (f, 0);
9728 #endif
9729 #ifdef HAVE_NS
9730 if (windows_or_buffers_changed
9731 && FRAME_NS_P (f))
9732 ns_set_doc_edited (f, Fbuffer_modified_p
9733 (XWINDOW (f->selected_window)->buffer));
9734 #endif
9735 UNGCPRO;
9736 }
9737
9738 unbind_to (count, Qnil);
9739 }
9740 else
9741 {
9742 struct frame *sf = SELECTED_FRAME ();
9743 update_menu_bar (sf, 1, 0);
9744 #ifdef HAVE_WINDOW_SYSTEM
9745 update_tool_bar (sf, 1);
9746 #endif
9747 }
9748 }
9749
9750
9751 /* Update the menu bar item list for frame F. This has to be done
9752 before we start to fill in any display lines, because it can call
9753 eval.
9754
9755 If SAVE_MATCH_DATA is non-zero, we must save and restore it here.
9756
9757 If HOOKS_RUN is 1, that means a previous call to update_menu_bar
9758 already ran the menu bar hooks for this redisplay, so there
9759 is no need to run them again. The return value is the
9760 updated value of this flag, to pass to the next call. */
9761
9762 static int
9763 update_menu_bar (struct frame *f, int save_match_data, int hooks_run)
9764 {
9765 Lisp_Object window;
9766 register struct window *w;
9767
9768 /* If called recursively during a menu update, do nothing. This can
9769 happen when, for instance, an activate-menubar-hook causes a
9770 redisplay. */
9771 if (inhibit_menubar_update)
9772 return hooks_run;
9773
9774 window = FRAME_SELECTED_WINDOW (f);
9775 w = XWINDOW (window);
9776
9777 if (FRAME_WINDOW_P (f)
9778 ?
9779 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
9780 || defined (HAVE_NS) || defined (USE_GTK)
9781 FRAME_EXTERNAL_MENU_BAR (f)
9782 #else
9783 FRAME_MENU_BAR_LINES (f) > 0
9784 #endif
9785 : FRAME_MENU_BAR_LINES (f) > 0)
9786 {
9787 /* If the user has switched buffers or windows, we need to
9788 recompute to reflect the new bindings. But we'll
9789 recompute when update_mode_lines is set too; that means
9790 that people can use force-mode-line-update to request
9791 that the menu bar be recomputed. The adverse effect on
9792 the rest of the redisplay algorithm is about the same as
9793 windows_or_buffers_changed anyway. */
9794 if (windows_or_buffers_changed
9795 /* This used to test w->update_mode_line, but we believe
9796 there is no need to recompute the menu in that case. */
9797 || update_mode_lines
9798 || ((BUF_SAVE_MODIFF (XBUFFER (w->buffer))
9799 < BUF_MODIFF (XBUFFER (w->buffer)))
9800 != !NILP (w->last_had_star))
9801 || ((!NILP (Vtransient_mark_mode)
9802 && !NILP (BVAR (XBUFFER (w->buffer), mark_active)))
9803 != !NILP (w->region_showing)))
9804 {
9805 struct buffer *prev = current_buffer;
9806 int count = SPECPDL_INDEX ();
9807
9808 specbind (Qinhibit_menubar_update, Qt);
9809
9810 set_buffer_internal_1 (XBUFFER (w->buffer));
9811 if (save_match_data)
9812 record_unwind_save_match_data ();
9813 if (NILP (Voverriding_local_map_menu_flag))
9814 {
9815 specbind (Qoverriding_terminal_local_map, Qnil);
9816 specbind (Qoverriding_local_map, Qnil);
9817 }
9818
9819 if (!hooks_run)
9820 {
9821 /* Run the Lucid hook. */
9822 safe_run_hooks (Qactivate_menubar_hook);
9823
9824 /* If it has changed current-menubar from previous value,
9825 really recompute the menu-bar from the value. */
9826 if (! NILP (Vlucid_menu_bar_dirty_flag))
9827 call0 (Qrecompute_lucid_menubar);
9828
9829 safe_run_hooks (Qmenu_bar_update_hook);
9830
9831 hooks_run = 1;
9832 }
9833
9834 XSETFRAME (Vmenu_updating_frame, f);
9835 FRAME_MENU_BAR_ITEMS (f) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f));
9836
9837 /* Redisplay the menu bar in case we changed it. */
9838 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
9839 || defined (HAVE_NS) || defined (USE_GTK)
9840 if (FRAME_WINDOW_P (f))
9841 {
9842 #if defined (HAVE_NS)
9843 /* All frames on Mac OS share the same menubar. So only
9844 the selected frame should be allowed to set it. */
9845 if (f == SELECTED_FRAME ())
9846 #endif
9847 set_frame_menubar (f, 0, 0);
9848 }
9849 else
9850 /* On a terminal screen, the menu bar is an ordinary screen
9851 line, and this makes it get updated. */
9852 w->update_mode_line = Qt;
9853 #else /* ! (USE_X_TOOLKIT || HAVE_NTGUI || HAVE_NS || USE_GTK) */
9854 /* In the non-toolkit version, the menu bar is an ordinary screen
9855 line, and this makes it get updated. */
9856 w->update_mode_line = Qt;
9857 #endif /* ! (USE_X_TOOLKIT || HAVE_NTGUI || HAVE_NS || USE_GTK) */
9858
9859 unbind_to (count, Qnil);
9860 set_buffer_internal_1 (prev);
9861 }
9862 }
9863
9864 return hooks_run;
9865 }
9866
9867
9868 \f
9869 /***********************************************************************
9870 Output Cursor
9871 ***********************************************************************/
9872
9873 #ifdef HAVE_WINDOW_SYSTEM
9874
9875 /* EXPORT:
9876 Nominal cursor position -- where to draw output.
9877 HPOS and VPOS are window relative glyph matrix coordinates.
9878 X and Y are window relative pixel coordinates. */
9879
9880 struct cursor_pos output_cursor;
9881
9882
9883 /* EXPORT:
9884 Set the global variable output_cursor to CURSOR. All cursor
9885 positions are relative to updated_window. */
9886
9887 void
9888 set_output_cursor (struct cursor_pos *cursor)
9889 {
9890 output_cursor.hpos = cursor->hpos;
9891 output_cursor.vpos = cursor->vpos;
9892 output_cursor.x = cursor->x;
9893 output_cursor.y = cursor->y;
9894 }
9895
9896
9897 /* EXPORT for RIF:
9898 Set a nominal cursor position.
9899
9900 HPOS and VPOS are column/row positions in a window glyph matrix. X
9901 and Y are window text area relative pixel positions.
9902
9903 If this is done during an update, updated_window will contain the
9904 window that is being updated and the position is the future output
9905 cursor position for that window. If updated_window is null, use
9906 selected_window and display the cursor at the given position. */
9907
9908 void
9909 x_cursor_to (int vpos, int hpos, int y, int x)
9910 {
9911 struct window *w;
9912
9913 /* If updated_window is not set, work on selected_window. */
9914 if (updated_window)
9915 w = updated_window;
9916 else
9917 w = XWINDOW (selected_window);
9918
9919 /* Set the output cursor. */
9920 output_cursor.hpos = hpos;
9921 output_cursor.vpos = vpos;
9922 output_cursor.x = x;
9923 output_cursor.y = y;
9924
9925 /* If not called as part of an update, really display the cursor.
9926 This will also set the cursor position of W. */
9927 if (updated_window == NULL)
9928 {
9929 BLOCK_INPUT;
9930 display_and_set_cursor (w, 1, hpos, vpos, x, y);
9931 if (FRAME_RIF (SELECTED_FRAME ())->flush_display_optional)
9932 FRAME_RIF (SELECTED_FRAME ())->flush_display_optional (SELECTED_FRAME ());
9933 UNBLOCK_INPUT;
9934 }
9935 }
9936
9937 #endif /* HAVE_WINDOW_SYSTEM */
9938
9939 \f
9940 /***********************************************************************
9941 Tool-bars
9942 ***********************************************************************/
9943
9944 #ifdef HAVE_WINDOW_SYSTEM
9945
9946 /* Where the mouse was last time we reported a mouse event. */
9947
9948 FRAME_PTR last_mouse_frame;
9949
9950 /* Tool-bar item index of the item on which a mouse button was pressed
9951 or -1. */
9952
9953 int last_tool_bar_item;
9954
9955
9956 static Lisp_Object
9957 update_tool_bar_unwind (Lisp_Object frame)
9958 {
9959 selected_frame = frame;
9960 return Qnil;
9961 }
9962
9963 /* Update the tool-bar item list for frame F. This has to be done
9964 before we start to fill in any display lines. Called from
9965 prepare_menu_bars. If SAVE_MATCH_DATA is non-zero, we must save
9966 and restore it here. */
9967
9968 static void
9969 update_tool_bar (struct frame *f, int save_match_data)
9970 {
9971 #if defined (USE_GTK) || defined (HAVE_NS)
9972 int do_update = FRAME_EXTERNAL_TOOL_BAR (f);
9973 #else
9974 int do_update = WINDOWP (f->tool_bar_window)
9975 && WINDOW_TOTAL_LINES (XWINDOW (f->tool_bar_window)) > 0;
9976 #endif
9977
9978 if (do_update)
9979 {
9980 Lisp_Object window;
9981 struct window *w;
9982
9983 window = FRAME_SELECTED_WINDOW (f);
9984 w = XWINDOW (window);
9985
9986 /* If the user has switched buffers or windows, we need to
9987 recompute to reflect the new bindings. But we'll
9988 recompute when update_mode_lines is set too; that means
9989 that people can use force-mode-line-update to request
9990 that the menu bar be recomputed. The adverse effect on
9991 the rest of the redisplay algorithm is about the same as
9992 windows_or_buffers_changed anyway. */
9993 if (windows_or_buffers_changed
9994 || !NILP (w->update_mode_line)
9995 || update_mode_lines
9996 || ((BUF_SAVE_MODIFF (XBUFFER (w->buffer))
9997 < BUF_MODIFF (XBUFFER (w->buffer)))
9998 != !NILP (w->last_had_star))
9999 || ((!NILP (Vtransient_mark_mode)
10000 && !NILP (BVAR (XBUFFER (w->buffer), mark_active)))
10001 != !NILP (w->region_showing)))
10002 {
10003 struct buffer *prev = current_buffer;
10004 int count = SPECPDL_INDEX ();
10005 Lisp_Object frame, new_tool_bar;
10006 int new_n_tool_bar;
10007 struct gcpro gcpro1;
10008
10009 /* Set current_buffer to the buffer of the selected
10010 window of the frame, so that we get the right local
10011 keymaps. */
10012 set_buffer_internal_1 (XBUFFER (w->buffer));
10013
10014 /* Save match data, if we must. */
10015 if (save_match_data)
10016 record_unwind_save_match_data ();
10017
10018 /* Make sure that we don't accidentally use bogus keymaps. */
10019 if (NILP (Voverriding_local_map_menu_flag))
10020 {
10021 specbind (Qoverriding_terminal_local_map, Qnil);
10022 specbind (Qoverriding_local_map, Qnil);
10023 }
10024
10025 GCPRO1 (new_tool_bar);
10026
10027 /* We must temporarily set the selected frame to this frame
10028 before calling tool_bar_items, because the calculation of
10029 the tool-bar keymap uses the selected frame (see
10030 `tool-bar-make-keymap' in tool-bar.el). */
10031 record_unwind_protect (update_tool_bar_unwind, selected_frame);
10032 XSETFRAME (frame, f);
10033 selected_frame = frame;
10034
10035 /* Build desired tool-bar items from keymaps. */
10036 new_tool_bar = tool_bar_items (Fcopy_sequence (f->tool_bar_items),
10037 &new_n_tool_bar);
10038
10039 /* Redisplay the tool-bar if we changed it. */
10040 if (new_n_tool_bar != f->n_tool_bar_items
10041 || NILP (Fequal (new_tool_bar, f->tool_bar_items)))
10042 {
10043 /* Redisplay that happens asynchronously due to an expose event
10044 may access f->tool_bar_items. Make sure we update both
10045 variables within BLOCK_INPUT so no such event interrupts. */
10046 BLOCK_INPUT;
10047 f->tool_bar_items = new_tool_bar;
10048 f->n_tool_bar_items = new_n_tool_bar;
10049 w->update_mode_line = Qt;
10050 UNBLOCK_INPUT;
10051 }
10052
10053 UNGCPRO;
10054
10055 unbind_to (count, Qnil);
10056 set_buffer_internal_1 (prev);
10057 }
10058 }
10059 }
10060
10061
10062 /* Set F->desired_tool_bar_string to a Lisp string representing frame
10063 F's desired tool-bar contents. F->tool_bar_items must have
10064 been set up previously by calling prepare_menu_bars. */
10065
10066 static void
10067 build_desired_tool_bar_string (struct frame *f)
10068 {
10069 int i, size, size_needed;
10070 struct gcpro gcpro1, gcpro2, gcpro3;
10071 Lisp_Object image, plist, props;
10072
10073 image = plist = props = Qnil;
10074 GCPRO3 (image, plist, props);
10075
10076 /* Prepare F->desired_tool_bar_string. If we can reuse it, do so.
10077 Otherwise, make a new string. */
10078
10079 /* The size of the string we might be able to reuse. */
10080 size = (STRINGP (f->desired_tool_bar_string)
10081 ? SCHARS (f->desired_tool_bar_string)
10082 : 0);
10083
10084 /* We need one space in the string for each image. */
10085 size_needed = f->n_tool_bar_items;
10086
10087 /* Reuse f->desired_tool_bar_string, if possible. */
10088 if (size < size_needed || NILP (f->desired_tool_bar_string))
10089 f->desired_tool_bar_string = Fmake_string (make_number (size_needed),
10090 make_number (' '));
10091 else
10092 {
10093 props = list4 (Qdisplay, Qnil, Qmenu_item, Qnil);
10094 Fremove_text_properties (make_number (0), make_number (size),
10095 props, f->desired_tool_bar_string);
10096 }
10097
10098 /* Put a `display' property on the string for the images to display,
10099 put a `menu_item' property on tool-bar items with a value that
10100 is the index of the item in F's tool-bar item vector. */
10101 for (i = 0; i < f->n_tool_bar_items; ++i)
10102 {
10103 #define PROP(IDX) AREF (f->tool_bar_items, i * TOOL_BAR_ITEM_NSLOTS + (IDX))
10104
10105 int enabled_p = !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P));
10106 int selected_p = !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P));
10107 int hmargin, vmargin, relief, idx, end;
10108
10109 /* If image is a vector, choose the image according to the
10110 button state. */
10111 image = PROP (TOOL_BAR_ITEM_IMAGES);
10112 if (VECTORP (image))
10113 {
10114 if (enabled_p)
10115 idx = (selected_p
10116 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
10117 : TOOL_BAR_IMAGE_ENABLED_DESELECTED);
10118 else
10119 idx = (selected_p
10120 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
10121 : TOOL_BAR_IMAGE_DISABLED_DESELECTED);
10122
10123 xassert (ASIZE (image) >= idx);
10124 image = AREF (image, idx);
10125 }
10126 else
10127 idx = -1;
10128
10129 /* Ignore invalid image specifications. */
10130 if (!valid_image_p (image))
10131 continue;
10132
10133 /* Display the tool-bar button pressed, or depressed. */
10134 plist = Fcopy_sequence (XCDR (image));
10135
10136 /* Compute margin and relief to draw. */
10137 relief = (tool_bar_button_relief >= 0
10138 ? tool_bar_button_relief
10139 : DEFAULT_TOOL_BAR_BUTTON_RELIEF);
10140 hmargin = vmargin = relief;
10141
10142 if (INTEGERP (Vtool_bar_button_margin)
10143 && XINT (Vtool_bar_button_margin) > 0)
10144 {
10145 hmargin += XFASTINT (Vtool_bar_button_margin);
10146 vmargin += XFASTINT (Vtool_bar_button_margin);
10147 }
10148 else if (CONSP (Vtool_bar_button_margin))
10149 {
10150 if (INTEGERP (XCAR (Vtool_bar_button_margin))
10151 && XINT (XCAR (Vtool_bar_button_margin)) > 0)
10152 hmargin += XFASTINT (XCAR (Vtool_bar_button_margin));
10153
10154 if (INTEGERP (XCDR (Vtool_bar_button_margin))
10155 && XINT (XCDR (Vtool_bar_button_margin)) > 0)
10156 vmargin += XFASTINT (XCDR (Vtool_bar_button_margin));
10157 }
10158
10159 if (auto_raise_tool_bar_buttons_p)
10160 {
10161 /* Add a `:relief' property to the image spec if the item is
10162 selected. */
10163 if (selected_p)
10164 {
10165 plist = Fplist_put (plist, QCrelief, make_number (-relief));
10166 hmargin -= relief;
10167 vmargin -= relief;
10168 }
10169 }
10170 else
10171 {
10172 /* If image is selected, display it pressed, i.e. with a
10173 negative relief. If it's not selected, display it with a
10174 raised relief. */
10175 plist = Fplist_put (plist, QCrelief,
10176 (selected_p
10177 ? make_number (-relief)
10178 : make_number (relief)));
10179 hmargin -= relief;
10180 vmargin -= relief;
10181 }
10182
10183 /* Put a margin around the image. */
10184 if (hmargin || vmargin)
10185 {
10186 if (hmargin == vmargin)
10187 plist = Fplist_put (plist, QCmargin, make_number (hmargin));
10188 else
10189 plist = Fplist_put (plist, QCmargin,
10190 Fcons (make_number (hmargin),
10191 make_number (vmargin)));
10192 }
10193
10194 /* If button is not enabled, and we don't have special images
10195 for the disabled state, make the image appear disabled by
10196 applying an appropriate algorithm to it. */
10197 if (!enabled_p && idx < 0)
10198 plist = Fplist_put (plist, QCconversion, Qdisabled);
10199
10200 /* Put a `display' text property on the string for the image to
10201 display. Put a `menu-item' property on the string that gives
10202 the start of this item's properties in the tool-bar items
10203 vector. */
10204 image = Fcons (Qimage, plist);
10205 props = list4 (Qdisplay, image,
10206 Qmenu_item, make_number (i * TOOL_BAR_ITEM_NSLOTS));
10207
10208 /* Let the last image hide all remaining spaces in the tool bar
10209 string. The string can be longer than needed when we reuse a
10210 previous string. */
10211 if (i + 1 == f->n_tool_bar_items)
10212 end = SCHARS (f->desired_tool_bar_string);
10213 else
10214 end = i + 1;
10215 Fadd_text_properties (make_number (i), make_number (end),
10216 props, f->desired_tool_bar_string);
10217 #undef PROP
10218 }
10219
10220 UNGCPRO;
10221 }
10222
10223
10224 /* Display one line of the tool-bar of frame IT->f.
10225
10226 HEIGHT specifies the desired height of the tool-bar line.
10227 If the actual height of the glyph row is less than HEIGHT, the
10228 row's height is increased to HEIGHT, and the icons are centered
10229 vertically in the new height.
10230
10231 If HEIGHT is -1, we are counting needed tool-bar lines, so don't
10232 count a final empty row in case the tool-bar width exactly matches
10233 the window width.
10234 */
10235
10236 static void
10237 display_tool_bar_line (struct it *it, int height)
10238 {
10239 struct glyph_row *row = it->glyph_row;
10240 int max_x = it->last_visible_x;
10241 struct glyph *last;
10242
10243 prepare_desired_row (row);
10244 row->y = it->current_y;
10245
10246 /* Note that this isn't made use of if the face hasn't a box,
10247 so there's no need to check the face here. */
10248 it->start_of_box_run_p = 1;
10249
10250 while (it->current_x < max_x)
10251 {
10252 int x, n_glyphs_before, i, nglyphs;
10253 struct it it_before;
10254
10255 /* Get the next display element. */
10256 if (!get_next_display_element (it))
10257 {
10258 /* Don't count empty row if we are counting needed tool-bar lines. */
10259 if (height < 0 && !it->hpos)
10260 return;
10261 break;
10262 }
10263
10264 /* Produce glyphs. */
10265 n_glyphs_before = row->used[TEXT_AREA];
10266 it_before = *it;
10267
10268 PRODUCE_GLYPHS (it);
10269
10270 nglyphs = row->used[TEXT_AREA] - n_glyphs_before;
10271 i = 0;
10272 x = it_before.current_x;
10273 while (i < nglyphs)
10274 {
10275 struct glyph *glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i;
10276
10277 if (x + glyph->pixel_width > max_x)
10278 {
10279 /* Glyph doesn't fit on line. Backtrack. */
10280 row->used[TEXT_AREA] = n_glyphs_before;
10281 *it = it_before;
10282 /* If this is the only glyph on this line, it will never fit on the
10283 tool-bar, so skip it. But ensure there is at least one glyph,
10284 so we don't accidentally disable the tool-bar. */
10285 if (n_glyphs_before == 0
10286 && (it->vpos > 0 || IT_STRING_CHARPOS (*it) < it->end_charpos-1))
10287 break;
10288 goto out;
10289 }
10290
10291 ++it->hpos;
10292 x += glyph->pixel_width;
10293 ++i;
10294 }
10295
10296 /* Stop at line ends. */
10297 if (ITERATOR_AT_END_OF_LINE_P (it))
10298 break;
10299
10300 set_iterator_to_next (it, 1);
10301 }
10302
10303 out:;
10304
10305 row->displays_text_p = row->used[TEXT_AREA] != 0;
10306
10307 /* Use default face for the border below the tool bar.
10308
10309 FIXME: When auto-resize-tool-bars is grow-only, there is
10310 no additional border below the possibly empty tool-bar lines.
10311 So to make the extra empty lines look "normal", we have to
10312 use the tool-bar face for the border too. */
10313 if (!row->displays_text_p && !EQ (Vauto_resize_tool_bars, Qgrow_only))
10314 it->face_id = DEFAULT_FACE_ID;
10315
10316 extend_face_to_end_of_line (it);
10317 last = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] - 1;
10318 last->right_box_line_p = 1;
10319 if (last == row->glyphs[TEXT_AREA])
10320 last->left_box_line_p = 1;
10321
10322 /* Make line the desired height and center it vertically. */
10323 if ((height -= it->max_ascent + it->max_descent) > 0)
10324 {
10325 /* Don't add more than one line height. */
10326 height %= FRAME_LINE_HEIGHT (it->f);
10327 it->max_ascent += height / 2;
10328 it->max_descent += (height + 1) / 2;
10329 }
10330
10331 compute_line_metrics (it);
10332
10333 /* If line is empty, make it occupy the rest of the tool-bar. */
10334 if (!row->displays_text_p)
10335 {
10336 row->height = row->phys_height = it->last_visible_y - row->y;
10337 row->visible_height = row->height;
10338 row->ascent = row->phys_ascent = 0;
10339 row->extra_line_spacing = 0;
10340 }
10341
10342 row->full_width_p = 1;
10343 row->continued_p = 0;
10344 row->truncated_on_left_p = 0;
10345 row->truncated_on_right_p = 0;
10346
10347 it->current_x = it->hpos = 0;
10348 it->current_y += row->height;
10349 ++it->vpos;
10350 ++it->glyph_row;
10351 }
10352
10353
10354 /* Max tool-bar height. */
10355
10356 #define MAX_FRAME_TOOL_BAR_HEIGHT(f) \
10357 ((FRAME_LINE_HEIGHT (f) * FRAME_LINES (f)))
10358
10359 /* Value is the number of screen lines needed to make all tool-bar
10360 items of frame F visible. The number of actual rows needed is
10361 returned in *N_ROWS if non-NULL. */
10362
10363 static int
10364 tool_bar_lines_needed (struct frame *f, int *n_rows)
10365 {
10366 struct window *w = XWINDOW (f->tool_bar_window);
10367 struct it it;
10368 /* tool_bar_lines_needed is called from redisplay_tool_bar after building
10369 the desired matrix, so use (unused) mode-line row as temporary row to
10370 avoid destroying the first tool-bar row. */
10371 struct glyph_row *temp_row = MATRIX_MODE_LINE_ROW (w->desired_matrix);
10372
10373 /* Initialize an iterator for iteration over
10374 F->desired_tool_bar_string in the tool-bar window of frame F. */
10375 init_iterator (&it, w, -1, -1, temp_row, TOOL_BAR_FACE_ID);
10376 it.first_visible_x = 0;
10377 it.last_visible_x = FRAME_TOTAL_COLS (f) * FRAME_COLUMN_WIDTH (f);
10378 reseat_to_string (&it, NULL, f->desired_tool_bar_string, 0, 0, 0, -1);
10379
10380 while (!ITERATOR_AT_END_P (&it))
10381 {
10382 clear_glyph_row (temp_row);
10383 it.glyph_row = temp_row;
10384 display_tool_bar_line (&it, -1);
10385 }
10386 clear_glyph_row (temp_row);
10387
10388 /* f->n_tool_bar_rows == 0 means "unknown"; -1 means no tool-bar. */
10389 if (n_rows)
10390 *n_rows = it.vpos > 0 ? it.vpos : -1;
10391
10392 return (it.current_y + FRAME_LINE_HEIGHT (f) - 1) / FRAME_LINE_HEIGHT (f);
10393 }
10394
10395
10396 DEFUN ("tool-bar-lines-needed", Ftool_bar_lines_needed, Stool_bar_lines_needed,
10397 0, 1, 0,
10398 doc: /* Return the number of lines occupied by the tool bar of FRAME. */)
10399 (Lisp_Object frame)
10400 {
10401 struct frame *f;
10402 struct window *w;
10403 int nlines = 0;
10404
10405 if (NILP (frame))
10406 frame = selected_frame;
10407 else
10408 CHECK_FRAME (frame);
10409 f = XFRAME (frame);
10410
10411 if (WINDOWP (f->tool_bar_window)
10412 || (w = XWINDOW (f->tool_bar_window),
10413 WINDOW_TOTAL_LINES (w) > 0))
10414 {
10415 update_tool_bar (f, 1);
10416 if (f->n_tool_bar_items)
10417 {
10418 build_desired_tool_bar_string (f);
10419 nlines = tool_bar_lines_needed (f, NULL);
10420 }
10421 }
10422
10423 return make_number (nlines);
10424 }
10425
10426
10427 /* Display the tool-bar of frame F. Value is non-zero if tool-bar's
10428 height should be changed. */
10429
10430 static int
10431 redisplay_tool_bar (struct frame *f)
10432 {
10433 struct window *w;
10434 struct it it;
10435 struct glyph_row *row;
10436
10437 #if defined (USE_GTK) || defined (HAVE_NS)
10438 if (FRAME_EXTERNAL_TOOL_BAR (f))
10439 update_frame_tool_bar (f);
10440 return 0;
10441 #endif
10442
10443 /* If frame hasn't a tool-bar window or if it is zero-height, don't
10444 do anything. This means you must start with tool-bar-lines
10445 non-zero to get the auto-sizing effect. Or in other words, you
10446 can turn off tool-bars by specifying tool-bar-lines zero. */
10447 if (!WINDOWP (f->tool_bar_window)
10448 || (w = XWINDOW (f->tool_bar_window),
10449 WINDOW_TOTAL_LINES (w) == 0))
10450 return 0;
10451
10452 /* Set up an iterator for the tool-bar window. */
10453 init_iterator (&it, w, -1, -1, w->desired_matrix->rows, TOOL_BAR_FACE_ID);
10454 it.first_visible_x = 0;
10455 it.last_visible_x = FRAME_TOTAL_COLS (f) * FRAME_COLUMN_WIDTH (f);
10456 row = it.glyph_row;
10457
10458 /* Build a string that represents the contents of the tool-bar. */
10459 build_desired_tool_bar_string (f);
10460 reseat_to_string (&it, NULL, f->desired_tool_bar_string, 0, 0, 0, -1);
10461
10462 if (f->n_tool_bar_rows == 0)
10463 {
10464 int nlines;
10465
10466 if ((nlines = tool_bar_lines_needed (f, &f->n_tool_bar_rows),
10467 nlines != WINDOW_TOTAL_LINES (w)))
10468 {
10469 Lisp_Object frame;
10470 int old_height = WINDOW_TOTAL_LINES (w);
10471
10472 XSETFRAME (frame, f);
10473 Fmodify_frame_parameters (frame,
10474 Fcons (Fcons (Qtool_bar_lines,
10475 make_number (nlines)),
10476 Qnil));
10477 if (WINDOW_TOTAL_LINES (w) != old_height)
10478 {
10479 clear_glyph_matrix (w->desired_matrix);
10480 fonts_changed_p = 1;
10481 return 1;
10482 }
10483 }
10484 }
10485
10486 /* Display as many lines as needed to display all tool-bar items. */
10487
10488 if (f->n_tool_bar_rows > 0)
10489 {
10490 int border, rows, height, extra;
10491
10492 if (INTEGERP (Vtool_bar_border))
10493 border = XINT (Vtool_bar_border);
10494 else if (EQ (Vtool_bar_border, Qinternal_border_width))
10495 border = FRAME_INTERNAL_BORDER_WIDTH (f);
10496 else if (EQ (Vtool_bar_border, Qborder_width))
10497 border = f->border_width;
10498 else
10499 border = 0;
10500 if (border < 0)
10501 border = 0;
10502
10503 rows = f->n_tool_bar_rows;
10504 height = max (1, (it.last_visible_y - border) / rows);
10505 extra = it.last_visible_y - border - height * rows;
10506
10507 while (it.current_y < it.last_visible_y)
10508 {
10509 int h = 0;
10510 if (extra > 0 && rows-- > 0)
10511 {
10512 h = (extra + rows - 1) / rows;
10513 extra -= h;
10514 }
10515 display_tool_bar_line (&it, height + h);
10516 }
10517 }
10518 else
10519 {
10520 while (it.current_y < it.last_visible_y)
10521 display_tool_bar_line (&it, 0);
10522 }
10523
10524 /* It doesn't make much sense to try scrolling in the tool-bar
10525 window, so don't do it. */
10526 w->desired_matrix->no_scrolling_p = 1;
10527 w->must_be_updated_p = 1;
10528
10529 if (!NILP (Vauto_resize_tool_bars))
10530 {
10531 int max_tool_bar_height = MAX_FRAME_TOOL_BAR_HEIGHT (f);
10532 int change_height_p = 0;
10533
10534 /* If we couldn't display everything, change the tool-bar's
10535 height if there is room for more. */
10536 if (IT_STRING_CHARPOS (it) < it.end_charpos
10537 && it.current_y < max_tool_bar_height)
10538 change_height_p = 1;
10539
10540 row = it.glyph_row - 1;
10541
10542 /* If there are blank lines at the end, except for a partially
10543 visible blank line at the end that is smaller than
10544 FRAME_LINE_HEIGHT, change the tool-bar's height. */
10545 if (!row->displays_text_p
10546 && row->height >= FRAME_LINE_HEIGHT (f))
10547 change_height_p = 1;
10548
10549 /* If row displays tool-bar items, but is partially visible,
10550 change the tool-bar's height. */
10551 if (row->displays_text_p
10552 && MATRIX_ROW_BOTTOM_Y (row) > it.last_visible_y
10553 && MATRIX_ROW_BOTTOM_Y (row) < max_tool_bar_height)
10554 change_height_p = 1;
10555
10556 /* Resize windows as needed by changing the `tool-bar-lines'
10557 frame parameter. */
10558 if (change_height_p)
10559 {
10560 Lisp_Object frame;
10561 int old_height = WINDOW_TOTAL_LINES (w);
10562 int nrows;
10563 int nlines = tool_bar_lines_needed (f, &nrows);
10564
10565 change_height_p = ((EQ (Vauto_resize_tool_bars, Qgrow_only)
10566 && !f->minimize_tool_bar_window_p)
10567 ? (nlines > old_height)
10568 : (nlines != old_height));
10569 f->minimize_tool_bar_window_p = 0;
10570
10571 if (change_height_p)
10572 {
10573 XSETFRAME (frame, f);
10574 Fmodify_frame_parameters (frame,
10575 Fcons (Fcons (Qtool_bar_lines,
10576 make_number (nlines)),
10577 Qnil));
10578 if (WINDOW_TOTAL_LINES (w) != old_height)
10579 {
10580 clear_glyph_matrix (w->desired_matrix);
10581 f->n_tool_bar_rows = nrows;
10582 fonts_changed_p = 1;
10583 return 1;
10584 }
10585 }
10586 }
10587 }
10588
10589 f->minimize_tool_bar_window_p = 0;
10590 return 0;
10591 }
10592
10593
10594 /* Get information about the tool-bar item which is displayed in GLYPH
10595 on frame F. Return in *PROP_IDX the index where tool-bar item
10596 properties start in F->tool_bar_items. Value is zero if
10597 GLYPH doesn't display a tool-bar item. */
10598
10599 static int
10600 tool_bar_item_info (struct frame *f, struct glyph *glyph, int *prop_idx)
10601 {
10602 Lisp_Object prop;
10603 int success_p;
10604 int charpos;
10605
10606 /* This function can be called asynchronously, which means we must
10607 exclude any possibility that Fget_text_property signals an
10608 error. */
10609 charpos = min (SCHARS (f->current_tool_bar_string), glyph->charpos);
10610 charpos = max (0, charpos);
10611
10612 /* Get the text property `menu-item' at pos. The value of that
10613 property is the start index of this item's properties in
10614 F->tool_bar_items. */
10615 prop = Fget_text_property (make_number (charpos),
10616 Qmenu_item, f->current_tool_bar_string);
10617 if (INTEGERP (prop))
10618 {
10619 *prop_idx = XINT (prop);
10620 success_p = 1;
10621 }
10622 else
10623 success_p = 0;
10624
10625 return success_p;
10626 }
10627
10628 \f
10629 /* Get information about the tool-bar item at position X/Y on frame F.
10630 Return in *GLYPH a pointer to the glyph of the tool-bar item in
10631 the current matrix of the tool-bar window of F, or NULL if not
10632 on a tool-bar item. Return in *PROP_IDX the index of the tool-bar
10633 item in F->tool_bar_items. Value is
10634
10635 -1 if X/Y is not on a tool-bar item
10636 0 if X/Y is on the same item that was highlighted before.
10637 1 otherwise. */
10638
10639 static int
10640 get_tool_bar_item (struct frame *f, int x, int y, struct glyph **glyph,
10641 int *hpos, int *vpos, int *prop_idx)
10642 {
10643 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
10644 struct window *w = XWINDOW (f->tool_bar_window);
10645 int area;
10646
10647 /* Find the glyph under X/Y. */
10648 *glyph = x_y_to_hpos_vpos (w, x, y, hpos, vpos, 0, 0, &area);
10649 if (*glyph == NULL)
10650 return -1;
10651
10652 /* Get the start of this tool-bar item's properties in
10653 f->tool_bar_items. */
10654 if (!tool_bar_item_info (f, *glyph, prop_idx))
10655 return -1;
10656
10657 /* Is mouse on the highlighted item? */
10658 if (EQ (f->tool_bar_window, hlinfo->mouse_face_window)
10659 && *vpos >= hlinfo->mouse_face_beg_row
10660 && *vpos <= hlinfo->mouse_face_end_row
10661 && (*vpos > hlinfo->mouse_face_beg_row
10662 || *hpos >= hlinfo->mouse_face_beg_col)
10663 && (*vpos < hlinfo->mouse_face_end_row
10664 || *hpos < hlinfo->mouse_face_end_col
10665 || hlinfo->mouse_face_past_end))
10666 return 0;
10667
10668 return 1;
10669 }
10670
10671
10672 /* EXPORT:
10673 Handle mouse button event on the tool-bar of frame F, at
10674 frame-relative coordinates X/Y. DOWN_P is 1 for a button press,
10675 0 for button release. MODIFIERS is event modifiers for button
10676 release. */
10677
10678 void
10679 handle_tool_bar_click (struct frame *f, int x, int y, int down_p,
10680 unsigned int modifiers)
10681 {
10682 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
10683 struct window *w = XWINDOW (f->tool_bar_window);
10684 int hpos, vpos, prop_idx;
10685 struct glyph *glyph;
10686 Lisp_Object enabled_p;
10687
10688 /* If not on the highlighted tool-bar item, return. */
10689 frame_to_window_pixel_xy (w, &x, &y);
10690 if (get_tool_bar_item (f, x, y, &glyph, &hpos, &vpos, &prop_idx) != 0)
10691 return;
10692
10693 /* If item is disabled, do nothing. */
10694 enabled_p = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_ENABLED_P);
10695 if (NILP (enabled_p))
10696 return;
10697
10698 if (down_p)
10699 {
10700 /* Show item in pressed state. */
10701 show_mouse_face (hlinfo, DRAW_IMAGE_SUNKEN);
10702 hlinfo->mouse_face_image_state = DRAW_IMAGE_SUNKEN;
10703 last_tool_bar_item = prop_idx;
10704 }
10705 else
10706 {
10707 Lisp_Object key, frame;
10708 struct input_event event;
10709 EVENT_INIT (event);
10710
10711 /* Show item in released state. */
10712 show_mouse_face (hlinfo, DRAW_IMAGE_RAISED);
10713 hlinfo->mouse_face_image_state = DRAW_IMAGE_RAISED;
10714
10715 key = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_KEY);
10716
10717 XSETFRAME (frame, f);
10718 event.kind = TOOL_BAR_EVENT;
10719 event.frame_or_window = frame;
10720 event.arg = frame;
10721 kbd_buffer_store_event (&event);
10722
10723 event.kind = TOOL_BAR_EVENT;
10724 event.frame_or_window = frame;
10725 event.arg = key;
10726 event.modifiers = modifiers;
10727 kbd_buffer_store_event (&event);
10728 last_tool_bar_item = -1;
10729 }
10730 }
10731
10732
10733 /* Possibly highlight a tool-bar item on frame F when mouse moves to
10734 tool-bar window-relative coordinates X/Y. Called from
10735 note_mouse_highlight. */
10736
10737 static void
10738 note_tool_bar_highlight (struct frame *f, int x, int y)
10739 {
10740 Lisp_Object window = f->tool_bar_window;
10741 struct window *w = XWINDOW (window);
10742 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
10743 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
10744 int hpos, vpos;
10745 struct glyph *glyph;
10746 struct glyph_row *row;
10747 int i;
10748 Lisp_Object enabled_p;
10749 int prop_idx;
10750 enum draw_glyphs_face draw = DRAW_IMAGE_RAISED;
10751 int mouse_down_p, rc;
10752
10753 /* Function note_mouse_highlight is called with negative X/Y
10754 values when mouse moves outside of the frame. */
10755 if (x <= 0 || y <= 0)
10756 {
10757 clear_mouse_face (hlinfo);
10758 return;
10759 }
10760
10761 rc = get_tool_bar_item (f, x, y, &glyph, &hpos, &vpos, &prop_idx);
10762 if (rc < 0)
10763 {
10764 /* Not on tool-bar item. */
10765 clear_mouse_face (hlinfo);
10766 return;
10767 }
10768 else if (rc == 0)
10769 /* On same tool-bar item as before. */
10770 goto set_help_echo;
10771
10772 clear_mouse_face (hlinfo);
10773
10774 /* Mouse is down, but on different tool-bar item? */
10775 mouse_down_p = (dpyinfo->grabbed
10776 && f == last_mouse_frame
10777 && FRAME_LIVE_P (f));
10778 if (mouse_down_p
10779 && last_tool_bar_item != prop_idx)
10780 return;
10781
10782 hlinfo->mouse_face_image_state = DRAW_NORMAL_TEXT;
10783 draw = mouse_down_p ? DRAW_IMAGE_SUNKEN : DRAW_IMAGE_RAISED;
10784
10785 /* If tool-bar item is not enabled, don't highlight it. */
10786 enabled_p = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_ENABLED_P);
10787 if (!NILP (enabled_p))
10788 {
10789 /* Compute the x-position of the glyph. In front and past the
10790 image is a space. We include this in the highlighted area. */
10791 row = MATRIX_ROW (w->current_matrix, vpos);
10792 for (i = x = 0; i < hpos; ++i)
10793 x += row->glyphs[TEXT_AREA][i].pixel_width;
10794
10795 /* Record this as the current active region. */
10796 hlinfo->mouse_face_beg_col = hpos;
10797 hlinfo->mouse_face_beg_row = vpos;
10798 hlinfo->mouse_face_beg_x = x;
10799 hlinfo->mouse_face_beg_y = row->y;
10800 hlinfo->mouse_face_past_end = 0;
10801
10802 hlinfo->mouse_face_end_col = hpos + 1;
10803 hlinfo->mouse_face_end_row = vpos;
10804 hlinfo->mouse_face_end_x = x + glyph->pixel_width;
10805 hlinfo->mouse_face_end_y = row->y;
10806 hlinfo->mouse_face_window = window;
10807 hlinfo->mouse_face_face_id = TOOL_BAR_FACE_ID;
10808
10809 /* Display it as active. */
10810 show_mouse_face (hlinfo, draw);
10811 hlinfo->mouse_face_image_state = draw;
10812 }
10813
10814 set_help_echo:
10815
10816 /* Set help_echo_string to a help string to display for this tool-bar item.
10817 XTread_socket does the rest. */
10818 help_echo_object = help_echo_window = Qnil;
10819 help_echo_pos = -1;
10820 help_echo_string = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_HELP);
10821 if (NILP (help_echo_string))
10822 help_echo_string = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_CAPTION);
10823 }
10824
10825 #endif /* HAVE_WINDOW_SYSTEM */
10826
10827
10828 \f
10829 /************************************************************************
10830 Horizontal scrolling
10831 ************************************************************************/
10832
10833 static int hscroll_window_tree (Lisp_Object);
10834 static int hscroll_windows (Lisp_Object);
10835
10836 /* For all leaf windows in the window tree rooted at WINDOW, set their
10837 hscroll value so that PT is (i) visible in the window, and (ii) so
10838 that it is not within a certain margin at the window's left and
10839 right border. Value is non-zero if any window's hscroll has been
10840 changed. */
10841
10842 static int
10843 hscroll_window_tree (Lisp_Object window)
10844 {
10845 int hscrolled_p = 0;
10846 int hscroll_relative_p = FLOATP (Vhscroll_step);
10847 int hscroll_step_abs = 0;
10848 double hscroll_step_rel = 0;
10849
10850 if (hscroll_relative_p)
10851 {
10852 hscroll_step_rel = XFLOAT_DATA (Vhscroll_step);
10853 if (hscroll_step_rel < 0)
10854 {
10855 hscroll_relative_p = 0;
10856 hscroll_step_abs = 0;
10857 }
10858 }
10859 else if (INTEGERP (Vhscroll_step))
10860 {
10861 hscroll_step_abs = XINT (Vhscroll_step);
10862 if (hscroll_step_abs < 0)
10863 hscroll_step_abs = 0;
10864 }
10865 else
10866 hscroll_step_abs = 0;
10867
10868 while (WINDOWP (window))
10869 {
10870 struct window *w = XWINDOW (window);
10871
10872 if (WINDOWP (w->hchild))
10873 hscrolled_p |= hscroll_window_tree (w->hchild);
10874 else if (WINDOWP (w->vchild))
10875 hscrolled_p |= hscroll_window_tree (w->vchild);
10876 else if (w->cursor.vpos >= 0)
10877 {
10878 int h_margin;
10879 int text_area_width;
10880 struct glyph_row *current_cursor_row
10881 = MATRIX_ROW (w->current_matrix, w->cursor.vpos);
10882 struct glyph_row *desired_cursor_row
10883 = MATRIX_ROW (w->desired_matrix, w->cursor.vpos);
10884 struct glyph_row *cursor_row
10885 = (desired_cursor_row->enabled_p
10886 ? desired_cursor_row
10887 : current_cursor_row);
10888
10889 text_area_width = window_box_width (w, TEXT_AREA);
10890
10891 /* Scroll when cursor is inside this scroll margin. */
10892 h_margin = hscroll_margin * WINDOW_FRAME_COLUMN_WIDTH (w);
10893
10894 if (!NILP (Fbuffer_local_value (Qauto_hscroll_mode, w->buffer))
10895 && ((XFASTINT (w->hscroll)
10896 && w->cursor.x <= h_margin)
10897 || (cursor_row->enabled_p
10898 && cursor_row->truncated_on_right_p
10899 && (w->cursor.x >= text_area_width - h_margin))))
10900 {
10901 struct it it;
10902 int hscroll;
10903 struct buffer *saved_current_buffer;
10904 EMACS_INT pt;
10905 int wanted_x;
10906
10907 /* Find point in a display of infinite width. */
10908 saved_current_buffer = current_buffer;
10909 current_buffer = XBUFFER (w->buffer);
10910
10911 if (w == XWINDOW (selected_window))
10912 pt = BUF_PT (current_buffer);
10913 else
10914 {
10915 pt = marker_position (w->pointm);
10916 pt = max (BEGV, pt);
10917 pt = min (ZV, pt);
10918 }
10919
10920 /* Move iterator to pt starting at cursor_row->start in
10921 a line with infinite width. */
10922 init_to_row_start (&it, w, cursor_row);
10923 it.last_visible_x = INFINITY;
10924 move_it_in_display_line_to (&it, pt, -1, MOVE_TO_POS);
10925 current_buffer = saved_current_buffer;
10926
10927 /* Position cursor in window. */
10928 if (!hscroll_relative_p && hscroll_step_abs == 0)
10929 hscroll = max (0, (it.current_x
10930 - (ITERATOR_AT_END_OF_LINE_P (&it)
10931 ? (text_area_width - 4 * FRAME_COLUMN_WIDTH (it.f))
10932 : (text_area_width / 2))))
10933 / FRAME_COLUMN_WIDTH (it.f);
10934 else if (w->cursor.x >= text_area_width - h_margin)
10935 {
10936 if (hscroll_relative_p)
10937 wanted_x = text_area_width * (1 - hscroll_step_rel)
10938 - h_margin;
10939 else
10940 wanted_x = text_area_width
10941 - hscroll_step_abs * FRAME_COLUMN_WIDTH (it.f)
10942 - h_margin;
10943 hscroll
10944 = max (0, it.current_x - wanted_x) / FRAME_COLUMN_WIDTH (it.f);
10945 }
10946 else
10947 {
10948 if (hscroll_relative_p)
10949 wanted_x = text_area_width * hscroll_step_rel
10950 + h_margin;
10951 else
10952 wanted_x = hscroll_step_abs * FRAME_COLUMN_WIDTH (it.f)
10953 + h_margin;
10954 hscroll
10955 = max (0, it.current_x - wanted_x) / FRAME_COLUMN_WIDTH (it.f);
10956 }
10957 hscroll = max (hscroll, XFASTINT (w->min_hscroll));
10958
10959 /* Don't call Fset_window_hscroll if value hasn't
10960 changed because it will prevent redisplay
10961 optimizations. */
10962 if (XFASTINT (w->hscroll) != hscroll)
10963 {
10964 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
10965 w->hscroll = make_number (hscroll);
10966 hscrolled_p = 1;
10967 }
10968 }
10969 }
10970
10971 window = w->next;
10972 }
10973
10974 /* Value is non-zero if hscroll of any leaf window has been changed. */
10975 return hscrolled_p;
10976 }
10977
10978
10979 /* Set hscroll so that cursor is visible and not inside horizontal
10980 scroll margins for all windows in the tree rooted at WINDOW. See
10981 also hscroll_window_tree above. Value is non-zero if any window's
10982 hscroll has been changed. If it has, desired matrices on the frame
10983 of WINDOW are cleared. */
10984
10985 static int
10986 hscroll_windows (Lisp_Object window)
10987 {
10988 int hscrolled_p = hscroll_window_tree (window);
10989 if (hscrolled_p)
10990 clear_desired_matrices (XFRAME (WINDOW_FRAME (XWINDOW (window))));
10991 return hscrolled_p;
10992 }
10993
10994
10995 \f
10996 /************************************************************************
10997 Redisplay
10998 ************************************************************************/
10999
11000 /* Variables holding some state of redisplay if GLYPH_DEBUG is defined
11001 to a non-zero value. This is sometimes handy to have in a debugger
11002 session. */
11003
11004 #if GLYPH_DEBUG
11005
11006 /* First and last unchanged row for try_window_id. */
11007
11008 int debug_first_unchanged_at_end_vpos;
11009 int debug_last_unchanged_at_beg_vpos;
11010
11011 /* Delta vpos and y. */
11012
11013 int debug_dvpos, debug_dy;
11014
11015 /* Delta in characters and bytes for try_window_id. */
11016
11017 EMACS_INT debug_delta, debug_delta_bytes;
11018
11019 /* Values of window_end_pos and window_end_vpos at the end of
11020 try_window_id. */
11021
11022 EMACS_INT debug_end_vpos;
11023
11024 /* Append a string to W->desired_matrix->method. FMT is a printf
11025 format string. A1...A9 are a supplement for a variable-length
11026 argument list. If trace_redisplay_p is non-zero also printf the
11027 resulting string to stderr. */
11028
11029 static void
11030 debug_method_add (w, fmt, a1, a2, a3, a4, a5, a6, a7, a8, a9)
11031 struct window *w;
11032 char *fmt;
11033 int a1, a2, a3, a4, a5, a6, a7, a8, a9;
11034 {
11035 char buffer[512];
11036 char *method = w->desired_matrix->method;
11037 int len = strlen (method);
11038 int size = sizeof w->desired_matrix->method;
11039 int remaining = size - len - 1;
11040
11041 sprintf (buffer, fmt, a1, a2, a3, a4, a5, a6, a7, a8, a9);
11042 if (len && remaining)
11043 {
11044 method[len] = '|';
11045 --remaining, ++len;
11046 }
11047
11048 strncpy (method + len, buffer, remaining);
11049
11050 if (trace_redisplay_p)
11051 fprintf (stderr, "%p (%s): %s\n",
11052 w,
11053 ((BUFFERP (w->buffer)
11054 && STRINGP (XBUFFER (w->buffer)->name))
11055 ? SSDATA (XBUFFER (w->buffer)->name)
11056 : "no buffer"),
11057 buffer);
11058 }
11059
11060 #endif /* GLYPH_DEBUG */
11061
11062
11063 /* Value is non-zero if all changes in window W, which displays
11064 current_buffer, are in the text between START and END. START is a
11065 buffer position, END is given as a distance from Z. Used in
11066 redisplay_internal for display optimization. */
11067
11068 static INLINE int
11069 text_outside_line_unchanged_p (struct window *w,
11070 EMACS_INT start, EMACS_INT end)
11071 {
11072 int unchanged_p = 1;
11073
11074 /* If text or overlays have changed, see where. */
11075 if (XFASTINT (w->last_modified) < MODIFF
11076 || XFASTINT (w->last_overlay_modified) < OVERLAY_MODIFF)
11077 {
11078 /* Gap in the line? */
11079 if (GPT < start || Z - GPT < end)
11080 unchanged_p = 0;
11081
11082 /* Changes start in front of the line, or end after it? */
11083 if (unchanged_p
11084 && (BEG_UNCHANGED < start - 1
11085 || END_UNCHANGED < end))
11086 unchanged_p = 0;
11087
11088 /* If selective display, can't optimize if changes start at the
11089 beginning of the line. */
11090 if (unchanged_p
11091 && INTEGERP (BVAR (current_buffer, selective_display))
11092 && XINT (BVAR (current_buffer, selective_display)) > 0
11093 && (BEG_UNCHANGED < start || GPT <= start))
11094 unchanged_p = 0;
11095
11096 /* If there are overlays at the start or end of the line, these
11097 may have overlay strings with newlines in them. A change at
11098 START, for instance, may actually concern the display of such
11099 overlay strings as well, and they are displayed on different
11100 lines. So, quickly rule out this case. (For the future, it
11101 might be desirable to implement something more telling than
11102 just BEG/END_UNCHANGED.) */
11103 if (unchanged_p)
11104 {
11105 if (BEG + BEG_UNCHANGED == start
11106 && overlay_touches_p (start))
11107 unchanged_p = 0;
11108 if (END_UNCHANGED == end
11109 && overlay_touches_p (Z - end))
11110 unchanged_p = 0;
11111 }
11112
11113 /* Under bidi reordering, adding or deleting a character in the
11114 beginning of a paragraph, before the first strong directional
11115 character, can change the base direction of the paragraph (unless
11116 the buffer specifies a fixed paragraph direction), which will
11117 require to redisplay the whole paragraph. It might be worthwhile
11118 to find the paragraph limits and widen the range of redisplayed
11119 lines to that, but for now just give up this optimization. */
11120 if (!NILP (BVAR (XBUFFER (w->buffer), bidi_display_reordering))
11121 && NILP (BVAR (XBUFFER (w->buffer), bidi_paragraph_direction)))
11122 unchanged_p = 0;
11123 }
11124
11125 return unchanged_p;
11126 }
11127
11128
11129 /* Do a frame update, taking possible shortcuts into account. This is
11130 the main external entry point for redisplay.
11131
11132 If the last redisplay displayed an echo area message and that message
11133 is no longer requested, we clear the echo area or bring back the
11134 mini-buffer if that is in use. */
11135
11136 void
11137 redisplay (void)
11138 {
11139 redisplay_internal (0);
11140 }
11141
11142
11143 static Lisp_Object
11144 overlay_arrow_string_or_property (Lisp_Object var)
11145 {
11146 Lisp_Object val;
11147
11148 if (val = Fget (var, Qoverlay_arrow_string), STRINGP (val))
11149 return val;
11150
11151 return Voverlay_arrow_string;
11152 }
11153
11154 /* Return 1 if there are any overlay-arrows in current_buffer. */
11155 static int
11156 overlay_arrow_in_current_buffer_p (void)
11157 {
11158 Lisp_Object vlist;
11159
11160 for (vlist = Voverlay_arrow_variable_list;
11161 CONSP (vlist);
11162 vlist = XCDR (vlist))
11163 {
11164 Lisp_Object var = XCAR (vlist);
11165 Lisp_Object val;
11166
11167 if (!SYMBOLP (var))
11168 continue;
11169 val = find_symbol_value (var);
11170 if (MARKERP (val)
11171 && current_buffer == XMARKER (val)->buffer)
11172 return 1;
11173 }
11174 return 0;
11175 }
11176
11177
11178 /* Return 1 if any overlay_arrows have moved or overlay-arrow-string
11179 has changed. */
11180
11181 static int
11182 overlay_arrows_changed_p (void)
11183 {
11184 Lisp_Object vlist;
11185
11186 for (vlist = Voverlay_arrow_variable_list;
11187 CONSP (vlist);
11188 vlist = XCDR (vlist))
11189 {
11190 Lisp_Object var = XCAR (vlist);
11191 Lisp_Object val, pstr;
11192
11193 if (!SYMBOLP (var))
11194 continue;
11195 val = find_symbol_value (var);
11196 if (!MARKERP (val))
11197 continue;
11198 if (! EQ (COERCE_MARKER (val),
11199 Fget (var, Qlast_arrow_position))
11200 || ! (pstr = overlay_arrow_string_or_property (var),
11201 EQ (pstr, Fget (var, Qlast_arrow_string))))
11202 return 1;
11203 }
11204 return 0;
11205 }
11206
11207 /* Mark overlay arrows to be updated on next redisplay. */
11208
11209 static void
11210 update_overlay_arrows (int up_to_date)
11211 {
11212 Lisp_Object vlist;
11213
11214 for (vlist = Voverlay_arrow_variable_list;
11215 CONSP (vlist);
11216 vlist = XCDR (vlist))
11217 {
11218 Lisp_Object var = XCAR (vlist);
11219
11220 if (!SYMBOLP (var))
11221 continue;
11222
11223 if (up_to_date > 0)
11224 {
11225 Lisp_Object val = find_symbol_value (var);
11226 Fput (var, Qlast_arrow_position,
11227 COERCE_MARKER (val));
11228 Fput (var, Qlast_arrow_string,
11229 overlay_arrow_string_or_property (var));
11230 }
11231 else if (up_to_date < 0
11232 || !NILP (Fget (var, Qlast_arrow_position)))
11233 {
11234 Fput (var, Qlast_arrow_position, Qt);
11235 Fput (var, Qlast_arrow_string, Qt);
11236 }
11237 }
11238 }
11239
11240
11241 /* Return overlay arrow string to display at row.
11242 Return integer (bitmap number) for arrow bitmap in left fringe.
11243 Return nil if no overlay arrow. */
11244
11245 static Lisp_Object
11246 overlay_arrow_at_row (struct it *it, struct glyph_row *row)
11247 {
11248 Lisp_Object vlist;
11249
11250 for (vlist = Voverlay_arrow_variable_list;
11251 CONSP (vlist);
11252 vlist = XCDR (vlist))
11253 {
11254 Lisp_Object var = XCAR (vlist);
11255 Lisp_Object val;
11256
11257 if (!SYMBOLP (var))
11258 continue;
11259
11260 val = find_symbol_value (var);
11261
11262 if (MARKERP (val)
11263 && current_buffer == XMARKER (val)->buffer
11264 && (MATRIX_ROW_START_CHARPOS (row) == marker_position (val)))
11265 {
11266 if (FRAME_WINDOW_P (it->f)
11267 /* FIXME: if ROW->reversed_p is set, this should test
11268 the right fringe, not the left one. */
11269 && WINDOW_LEFT_FRINGE_WIDTH (it->w) > 0)
11270 {
11271 #ifdef HAVE_WINDOW_SYSTEM
11272 if (val = Fget (var, Qoverlay_arrow_bitmap), SYMBOLP (val))
11273 {
11274 int fringe_bitmap;
11275 if ((fringe_bitmap = lookup_fringe_bitmap (val)) != 0)
11276 return make_number (fringe_bitmap);
11277 }
11278 #endif
11279 return make_number (-1); /* Use default arrow bitmap */
11280 }
11281 return overlay_arrow_string_or_property (var);
11282 }
11283 }
11284
11285 return Qnil;
11286 }
11287
11288 /* Return 1 if point moved out of or into a composition. Otherwise
11289 return 0. PREV_BUF and PREV_PT are the last point buffer and
11290 position. BUF and PT are the current point buffer and position. */
11291
11292 int
11293 check_point_in_composition (struct buffer *prev_buf, EMACS_INT prev_pt,
11294 struct buffer *buf, EMACS_INT pt)
11295 {
11296 EMACS_INT start, end;
11297 Lisp_Object prop;
11298 Lisp_Object buffer;
11299
11300 XSETBUFFER (buffer, buf);
11301 /* Check a composition at the last point if point moved within the
11302 same buffer. */
11303 if (prev_buf == buf)
11304 {
11305 if (prev_pt == pt)
11306 /* Point didn't move. */
11307 return 0;
11308
11309 if (prev_pt > BUF_BEGV (buf) && prev_pt < BUF_ZV (buf)
11310 && find_composition (prev_pt, -1, &start, &end, &prop, buffer)
11311 && COMPOSITION_VALID_P (start, end, prop)
11312 && start < prev_pt && end > prev_pt)
11313 /* The last point was within the composition. Return 1 iff
11314 point moved out of the composition. */
11315 return (pt <= start || pt >= end);
11316 }
11317
11318 /* Check a composition at the current point. */
11319 return (pt > BUF_BEGV (buf) && pt < BUF_ZV (buf)
11320 && find_composition (pt, -1, &start, &end, &prop, buffer)
11321 && COMPOSITION_VALID_P (start, end, prop)
11322 && start < pt && end > pt);
11323 }
11324
11325
11326 /* Reconsider the setting of B->clip_changed which is displayed
11327 in window W. */
11328
11329 static INLINE void
11330 reconsider_clip_changes (struct window *w, struct buffer *b)
11331 {
11332 if (b->clip_changed
11333 && !NILP (w->window_end_valid)
11334 && w->current_matrix->buffer == b
11335 && w->current_matrix->zv == BUF_ZV (b)
11336 && w->current_matrix->begv == BUF_BEGV (b))
11337 b->clip_changed = 0;
11338
11339 /* If display wasn't paused, and W is not a tool bar window, see if
11340 point has been moved into or out of a composition. In that case,
11341 we set b->clip_changed to 1 to force updating the screen. If
11342 b->clip_changed has already been set to 1, we can skip this
11343 check. */
11344 if (!b->clip_changed
11345 && BUFFERP (w->buffer) && !NILP (w->window_end_valid))
11346 {
11347 EMACS_INT pt;
11348
11349 if (w == XWINDOW (selected_window))
11350 pt = BUF_PT (current_buffer);
11351 else
11352 pt = marker_position (w->pointm);
11353
11354 if ((w->current_matrix->buffer != XBUFFER (w->buffer)
11355 || pt != XINT (w->last_point))
11356 && check_point_in_composition (w->current_matrix->buffer,
11357 XINT (w->last_point),
11358 XBUFFER (w->buffer), pt))
11359 b->clip_changed = 1;
11360 }
11361 }
11362 \f
11363
11364 /* Select FRAME to forward the values of frame-local variables into C
11365 variables so that the redisplay routines can access those values
11366 directly. */
11367
11368 static void
11369 select_frame_for_redisplay (Lisp_Object frame)
11370 {
11371 Lisp_Object tail, tem;
11372 Lisp_Object old = selected_frame;
11373 struct Lisp_Symbol *sym;
11374
11375 xassert (FRAMEP (frame) && FRAME_LIVE_P (XFRAME (frame)));
11376
11377 selected_frame = frame;
11378
11379 do {
11380 for (tail = XFRAME (frame)->param_alist; CONSP (tail); tail = XCDR (tail))
11381 if (CONSP (XCAR (tail))
11382 && (tem = XCAR (XCAR (tail)),
11383 SYMBOLP (tem))
11384 && (sym = indirect_variable (XSYMBOL (tem)),
11385 sym->redirect == SYMBOL_LOCALIZED)
11386 && sym->val.blv->frame_local)
11387 /* Use find_symbol_value rather than Fsymbol_value
11388 to avoid an error if it is void. */
11389 find_symbol_value (tem);
11390 } while (!EQ (frame, old) && (frame = old, 1));
11391 }
11392
11393
11394 #define STOP_POLLING \
11395 do { if (! polling_stopped_here) stop_polling (); \
11396 polling_stopped_here = 1; } while (0)
11397
11398 #define RESUME_POLLING \
11399 do { if (polling_stopped_here) start_polling (); \
11400 polling_stopped_here = 0; } while (0)
11401
11402
11403 /* If PRESERVE_ECHO_AREA is nonzero, it means this redisplay is not in
11404 response to any user action; therefore, we should preserve the echo
11405 area. (Actually, our caller does that job.) Perhaps in the future
11406 avoid recentering windows if it is not necessary; currently that
11407 causes some problems. */
11408
11409 static void
11410 redisplay_internal (int preserve_echo_area)
11411 {
11412 struct window *w = XWINDOW (selected_window);
11413 struct window *sw;
11414 struct frame *fr;
11415 int pending;
11416 int must_finish = 0;
11417 struct text_pos tlbufpos, tlendpos;
11418 int number_of_visible_frames;
11419 int count, count1;
11420 struct frame *sf;
11421 int polling_stopped_here = 0;
11422 Lisp_Object old_frame = selected_frame;
11423
11424 /* Non-zero means redisplay has to consider all windows on all
11425 frames. Zero means, only selected_window is considered. */
11426 int consider_all_windows_p;
11427
11428 TRACE ((stderr, "redisplay_internal %d\n", redisplaying_p));
11429
11430 /* No redisplay if running in batch mode or frame is not yet fully
11431 initialized, or redisplay is explicitly turned off by setting
11432 Vinhibit_redisplay. */
11433 if (FRAME_INITIAL_P (SELECTED_FRAME ())
11434 || !NILP (Vinhibit_redisplay))
11435 return;
11436
11437 /* Don't examine these until after testing Vinhibit_redisplay.
11438 When Emacs is shutting down, perhaps because its connection to
11439 X has dropped, we should not look at them at all. */
11440 fr = XFRAME (w->frame);
11441 sf = SELECTED_FRAME ();
11442
11443 if (!fr->glyphs_initialized_p)
11444 return;
11445
11446 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NS)
11447 if (popup_activated ())
11448 return;
11449 #endif
11450
11451 /* I don't think this happens but let's be paranoid. */
11452 if (redisplaying_p)
11453 return;
11454
11455 /* Record a function that resets redisplaying_p to its old value
11456 when we leave this function. */
11457 count = SPECPDL_INDEX ();
11458 record_unwind_protect (unwind_redisplay,
11459 Fcons (make_number (redisplaying_p), selected_frame));
11460 ++redisplaying_p;
11461 specbind (Qinhibit_free_realized_faces, Qnil);
11462
11463 {
11464 Lisp_Object tail, frame;
11465
11466 FOR_EACH_FRAME (tail, frame)
11467 {
11468 struct frame *f = XFRAME (frame);
11469 f->already_hscrolled_p = 0;
11470 }
11471 }
11472
11473 retry:
11474 /* Remember the currently selected window. */
11475 sw = w;
11476
11477 if (!EQ (old_frame, selected_frame)
11478 && FRAME_LIVE_P (XFRAME (old_frame)))
11479 /* When running redisplay, we play a bit fast-and-loose and allow e.g.
11480 selected_frame and selected_window to be temporarily out-of-sync so
11481 when we come back here via `goto retry', we need to resync because we
11482 may need to run Elisp code (via prepare_menu_bars). */
11483 select_frame_for_redisplay (old_frame);
11484
11485 pending = 0;
11486 reconsider_clip_changes (w, current_buffer);
11487 last_escape_glyph_frame = NULL;
11488 last_escape_glyph_face_id = (1 << FACE_ID_BITS);
11489 last_glyphless_glyph_frame = NULL;
11490 last_glyphless_glyph_face_id = (1 << FACE_ID_BITS);
11491
11492 /* If new fonts have been loaded that make a glyph matrix adjustment
11493 necessary, do it. */
11494 if (fonts_changed_p)
11495 {
11496 adjust_glyphs (NULL);
11497 ++windows_or_buffers_changed;
11498 fonts_changed_p = 0;
11499 }
11500
11501 /* If face_change_count is non-zero, init_iterator will free all
11502 realized faces, which includes the faces referenced from current
11503 matrices. So, we can't reuse current matrices in this case. */
11504 if (face_change_count)
11505 ++windows_or_buffers_changed;
11506
11507 if ((FRAME_TERMCAP_P (sf) || FRAME_MSDOS_P (sf))
11508 && FRAME_TTY (sf)->previous_frame != sf)
11509 {
11510 /* Since frames on a single ASCII terminal share the same
11511 display area, displaying a different frame means redisplay
11512 the whole thing. */
11513 windows_or_buffers_changed++;
11514 SET_FRAME_GARBAGED (sf);
11515 #ifndef DOS_NT
11516 set_tty_color_mode (FRAME_TTY (sf), sf);
11517 #endif
11518 FRAME_TTY (sf)->previous_frame = sf;
11519 }
11520
11521 /* Set the visible flags for all frames. Do this before checking
11522 for resized or garbaged frames; they want to know if their frames
11523 are visible. See the comment in frame.h for
11524 FRAME_SAMPLE_VISIBILITY. */
11525 {
11526 Lisp_Object tail, frame;
11527
11528 number_of_visible_frames = 0;
11529
11530 FOR_EACH_FRAME (tail, frame)
11531 {
11532 struct frame *f = XFRAME (frame);
11533
11534 FRAME_SAMPLE_VISIBILITY (f);
11535 if (FRAME_VISIBLE_P (f))
11536 ++number_of_visible_frames;
11537 clear_desired_matrices (f);
11538 }
11539 }
11540
11541 /* Notice any pending interrupt request to change frame size. */
11542 do_pending_window_change (1);
11543
11544 /* do_pending_window_change could change the selected_window due to
11545 frame resizing which makes the selected window too small. */
11546 if (WINDOWP (selected_window) && (w = XWINDOW (selected_window)) != sw)
11547 {
11548 sw = w;
11549 reconsider_clip_changes (w, current_buffer);
11550 }
11551
11552 /* Clear frames marked as garbaged. */
11553 if (frame_garbaged)
11554 clear_garbaged_frames ();
11555
11556 /* Build menubar and tool-bar items. */
11557 if (NILP (Vmemory_full))
11558 prepare_menu_bars ();
11559
11560 if (windows_or_buffers_changed)
11561 update_mode_lines++;
11562
11563 /* Detect case that we need to write or remove a star in the mode line. */
11564 if ((SAVE_MODIFF < MODIFF) != !NILP (w->last_had_star))
11565 {
11566 w->update_mode_line = Qt;
11567 if (buffer_shared > 1)
11568 update_mode_lines++;
11569 }
11570
11571 /* Avoid invocation of point motion hooks by `current_column' below. */
11572 count1 = SPECPDL_INDEX ();
11573 specbind (Qinhibit_point_motion_hooks, Qt);
11574
11575 /* If %c is in the mode line, update it if needed. */
11576 if (!NILP (w->column_number_displayed)
11577 /* This alternative quickly identifies a common case
11578 where no change is needed. */
11579 && !(PT == XFASTINT (w->last_point)
11580 && XFASTINT (w->last_modified) >= MODIFF
11581 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF)
11582 && (XFASTINT (w->column_number_displayed) != current_column ()))
11583 w->update_mode_line = Qt;
11584
11585 unbind_to (count1, Qnil);
11586
11587 FRAME_SCROLL_BOTTOM_VPOS (XFRAME (w->frame)) = -1;
11588
11589 /* The variable buffer_shared is set in redisplay_window and
11590 indicates that we redisplay a buffer in different windows. See
11591 there. */
11592 consider_all_windows_p = (update_mode_lines || buffer_shared > 1
11593 || cursor_type_changed);
11594
11595 /* If specs for an arrow have changed, do thorough redisplay
11596 to ensure we remove any arrow that should no longer exist. */
11597 if (overlay_arrows_changed_p ())
11598 consider_all_windows_p = windows_or_buffers_changed = 1;
11599
11600 /* Normally the message* functions will have already displayed and
11601 updated the echo area, but the frame may have been trashed, or
11602 the update may have been preempted, so display the echo area
11603 again here. Checking message_cleared_p captures the case that
11604 the echo area should be cleared. */
11605 if ((!NILP (echo_area_buffer[0]) && !display_last_displayed_message_p)
11606 || (!NILP (echo_area_buffer[1]) && display_last_displayed_message_p)
11607 || (message_cleared_p
11608 && minibuf_level == 0
11609 /* If the mini-window is currently selected, this means the
11610 echo-area doesn't show through. */
11611 && !MINI_WINDOW_P (XWINDOW (selected_window))))
11612 {
11613 int window_height_changed_p = echo_area_display (0);
11614 must_finish = 1;
11615
11616 /* If we don't display the current message, don't clear the
11617 message_cleared_p flag, because, if we did, we wouldn't clear
11618 the echo area in the next redisplay which doesn't preserve
11619 the echo area. */
11620 if (!display_last_displayed_message_p)
11621 message_cleared_p = 0;
11622
11623 if (fonts_changed_p)
11624 goto retry;
11625 else if (window_height_changed_p)
11626 {
11627 consider_all_windows_p = 1;
11628 ++update_mode_lines;
11629 ++windows_or_buffers_changed;
11630
11631 /* If window configuration was changed, frames may have been
11632 marked garbaged. Clear them or we will experience
11633 surprises wrt scrolling. */
11634 if (frame_garbaged)
11635 clear_garbaged_frames ();
11636 }
11637 }
11638 else if (EQ (selected_window, minibuf_window)
11639 && (current_buffer->clip_changed
11640 || XFASTINT (w->last_modified) < MODIFF
11641 || XFASTINT (w->last_overlay_modified) < OVERLAY_MODIFF)
11642 && resize_mini_window (w, 0))
11643 {
11644 /* Resized active mini-window to fit the size of what it is
11645 showing if its contents might have changed. */
11646 must_finish = 1;
11647 /* FIXME: this causes all frames to be updated, which seems unnecessary
11648 since only the current frame needs to be considered. This function needs
11649 to be rewritten with two variables, consider_all_windows and
11650 consider_all_frames. */
11651 consider_all_windows_p = 1;
11652 ++windows_or_buffers_changed;
11653 ++update_mode_lines;
11654
11655 /* If window configuration was changed, frames may have been
11656 marked garbaged. Clear them or we will experience
11657 surprises wrt scrolling. */
11658 if (frame_garbaged)
11659 clear_garbaged_frames ();
11660 }
11661
11662
11663 /* If showing the region, and mark has changed, we must redisplay
11664 the whole window. The assignment to this_line_start_pos prevents
11665 the optimization directly below this if-statement. */
11666 if (((!NILP (Vtransient_mark_mode)
11667 && !NILP (BVAR (XBUFFER (w->buffer), mark_active)))
11668 != !NILP (w->region_showing))
11669 || (!NILP (w->region_showing)
11670 && !EQ (w->region_showing,
11671 Fmarker_position (BVAR (XBUFFER (w->buffer), mark)))))
11672 CHARPOS (this_line_start_pos) = 0;
11673
11674 /* Optimize the case that only the line containing the cursor in the
11675 selected window has changed. Variables starting with this_ are
11676 set in display_line and record information about the line
11677 containing the cursor. */
11678 tlbufpos = this_line_start_pos;
11679 tlendpos = this_line_end_pos;
11680 if (!consider_all_windows_p
11681 && CHARPOS (tlbufpos) > 0
11682 && NILP (w->update_mode_line)
11683 && !current_buffer->clip_changed
11684 && !current_buffer->prevent_redisplay_optimizations_p
11685 && FRAME_VISIBLE_P (XFRAME (w->frame))
11686 && !FRAME_OBSCURED_P (XFRAME (w->frame))
11687 /* Make sure recorded data applies to current buffer, etc. */
11688 && this_line_buffer == current_buffer
11689 && current_buffer == XBUFFER (w->buffer)
11690 && NILP (w->force_start)
11691 && NILP (w->optional_new_start)
11692 /* Point must be on the line that we have info recorded about. */
11693 && PT >= CHARPOS (tlbufpos)
11694 && PT <= Z - CHARPOS (tlendpos)
11695 /* All text outside that line, including its final newline,
11696 must be unchanged. */
11697 && text_outside_line_unchanged_p (w, CHARPOS (tlbufpos),
11698 CHARPOS (tlendpos)))
11699 {
11700 if (CHARPOS (tlbufpos) > BEGV
11701 && FETCH_BYTE (BYTEPOS (tlbufpos) - 1) != '\n'
11702 && (CHARPOS (tlbufpos) == ZV
11703 || FETCH_BYTE (BYTEPOS (tlbufpos)) == '\n'))
11704 /* Former continuation line has disappeared by becoming empty. */
11705 goto cancel;
11706 else if (XFASTINT (w->last_modified) < MODIFF
11707 || XFASTINT (w->last_overlay_modified) < OVERLAY_MODIFF
11708 || MINI_WINDOW_P (w))
11709 {
11710 /* We have to handle the case of continuation around a
11711 wide-column character (see the comment in indent.c around
11712 line 1340).
11713
11714 For instance, in the following case:
11715
11716 -------- Insert --------
11717 K_A_N_\\ `a' K_A_N_a\ `X_' are wide-column chars.
11718 J_I_ ==> J_I_ `^^' are cursors.
11719 ^^ ^^
11720 -------- --------
11721
11722 As we have to redraw the line above, we cannot use this
11723 optimization. */
11724
11725 struct it it;
11726 int line_height_before = this_line_pixel_height;
11727
11728 /* Note that start_display will handle the case that the
11729 line starting at tlbufpos is a continuation line. */
11730 start_display (&it, w, tlbufpos);
11731
11732 /* Implementation note: It this still necessary? */
11733 if (it.current_x != this_line_start_x)
11734 goto cancel;
11735
11736 TRACE ((stderr, "trying display optimization 1\n"));
11737 w->cursor.vpos = -1;
11738 overlay_arrow_seen = 0;
11739 it.vpos = this_line_vpos;
11740 it.current_y = this_line_y;
11741 it.glyph_row = MATRIX_ROW (w->desired_matrix, this_line_vpos);
11742 display_line (&it);
11743
11744 /* If line contains point, is not continued,
11745 and ends at same distance from eob as before, we win. */
11746 if (w->cursor.vpos >= 0
11747 /* Line is not continued, otherwise this_line_start_pos
11748 would have been set to 0 in display_line. */
11749 && CHARPOS (this_line_start_pos)
11750 /* Line ends as before. */
11751 && CHARPOS (this_line_end_pos) == CHARPOS (tlendpos)
11752 /* Line has same height as before. Otherwise other lines
11753 would have to be shifted up or down. */
11754 && this_line_pixel_height == line_height_before)
11755 {
11756 /* If this is not the window's last line, we must adjust
11757 the charstarts of the lines below. */
11758 if (it.current_y < it.last_visible_y)
11759 {
11760 struct glyph_row *row
11761 = MATRIX_ROW (w->current_matrix, this_line_vpos + 1);
11762 EMACS_INT delta, delta_bytes;
11763
11764 /* We used to distinguish between two cases here,
11765 conditioned by Z - CHARPOS (tlendpos) == ZV, for
11766 when the line ends in a newline or the end of the
11767 buffer's accessible portion. But both cases did
11768 the same, so they were collapsed. */
11769 delta = (Z
11770 - CHARPOS (tlendpos)
11771 - MATRIX_ROW_START_CHARPOS (row));
11772 delta_bytes = (Z_BYTE
11773 - BYTEPOS (tlendpos)
11774 - MATRIX_ROW_START_BYTEPOS (row));
11775
11776 increment_matrix_positions (w->current_matrix,
11777 this_line_vpos + 1,
11778 w->current_matrix->nrows,
11779 delta, delta_bytes);
11780 }
11781
11782 /* If this row displays text now but previously didn't,
11783 or vice versa, w->window_end_vpos may have to be
11784 adjusted. */
11785 if ((it.glyph_row - 1)->displays_text_p)
11786 {
11787 if (XFASTINT (w->window_end_vpos) < this_line_vpos)
11788 XSETINT (w->window_end_vpos, this_line_vpos);
11789 }
11790 else if (XFASTINT (w->window_end_vpos) == this_line_vpos
11791 && this_line_vpos > 0)
11792 XSETINT (w->window_end_vpos, this_line_vpos - 1);
11793 w->window_end_valid = Qnil;
11794
11795 /* Update hint: No need to try to scroll in update_window. */
11796 w->desired_matrix->no_scrolling_p = 1;
11797
11798 #if GLYPH_DEBUG
11799 *w->desired_matrix->method = 0;
11800 debug_method_add (w, "optimization 1");
11801 #endif
11802 #ifdef HAVE_WINDOW_SYSTEM
11803 update_window_fringes (w, 0);
11804 #endif
11805 goto update;
11806 }
11807 else
11808 goto cancel;
11809 }
11810 else if (/* Cursor position hasn't changed. */
11811 PT == XFASTINT (w->last_point)
11812 /* Make sure the cursor was last displayed
11813 in this window. Otherwise we have to reposition it. */
11814 && 0 <= w->cursor.vpos
11815 && WINDOW_TOTAL_LINES (w) > w->cursor.vpos)
11816 {
11817 if (!must_finish)
11818 {
11819 do_pending_window_change (1);
11820 /* If selected_window changed, redisplay again. */
11821 if (WINDOWP (selected_window)
11822 && (w = XWINDOW (selected_window)) != sw)
11823 goto retry;
11824
11825 /* We used to always goto end_of_redisplay here, but this
11826 isn't enough if we have a blinking cursor. */
11827 if (w->cursor_off_p == w->last_cursor_off_p)
11828 goto end_of_redisplay;
11829 }
11830 goto update;
11831 }
11832 /* If highlighting the region, or if the cursor is in the echo area,
11833 then we can't just move the cursor. */
11834 else if (! (!NILP (Vtransient_mark_mode)
11835 && !NILP (BVAR (current_buffer, mark_active)))
11836 && (EQ (selected_window, BVAR (current_buffer, last_selected_window))
11837 || highlight_nonselected_windows)
11838 && NILP (w->region_showing)
11839 && NILP (Vshow_trailing_whitespace)
11840 && !cursor_in_echo_area)
11841 {
11842 struct it it;
11843 struct glyph_row *row;
11844
11845 /* Skip from tlbufpos to PT and see where it is. Note that
11846 PT may be in invisible text. If so, we will end at the
11847 next visible position. */
11848 init_iterator (&it, w, CHARPOS (tlbufpos), BYTEPOS (tlbufpos),
11849 NULL, DEFAULT_FACE_ID);
11850 it.current_x = this_line_start_x;
11851 it.current_y = this_line_y;
11852 it.vpos = this_line_vpos;
11853
11854 /* The call to move_it_to stops in front of PT, but
11855 moves over before-strings. */
11856 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
11857
11858 if (it.vpos == this_line_vpos
11859 && (row = MATRIX_ROW (w->current_matrix, this_line_vpos),
11860 row->enabled_p))
11861 {
11862 xassert (this_line_vpos == it.vpos);
11863 xassert (this_line_y == it.current_y);
11864 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
11865 #if GLYPH_DEBUG
11866 *w->desired_matrix->method = 0;
11867 debug_method_add (w, "optimization 3");
11868 #endif
11869 goto update;
11870 }
11871 else
11872 goto cancel;
11873 }
11874
11875 cancel:
11876 /* Text changed drastically or point moved off of line. */
11877 SET_MATRIX_ROW_ENABLED_P (w->desired_matrix, this_line_vpos, 0);
11878 }
11879
11880 CHARPOS (this_line_start_pos) = 0;
11881 consider_all_windows_p |= buffer_shared > 1;
11882 ++clear_face_cache_count;
11883 #ifdef HAVE_WINDOW_SYSTEM
11884 ++clear_image_cache_count;
11885 #endif
11886
11887 /* Build desired matrices, and update the display. If
11888 consider_all_windows_p is non-zero, do it for all windows on all
11889 frames. Otherwise do it for selected_window, only. */
11890
11891 if (consider_all_windows_p)
11892 {
11893 Lisp_Object tail, frame;
11894
11895 FOR_EACH_FRAME (tail, frame)
11896 XFRAME (frame)->updated_p = 0;
11897
11898 /* Recompute # windows showing selected buffer. This will be
11899 incremented each time such a window is displayed. */
11900 buffer_shared = 0;
11901
11902 FOR_EACH_FRAME (tail, frame)
11903 {
11904 struct frame *f = XFRAME (frame);
11905
11906 if (FRAME_WINDOW_P (f) || FRAME_TERMCAP_P (f) || f == sf)
11907 {
11908 if (! EQ (frame, selected_frame))
11909 /* Select the frame, for the sake of frame-local
11910 variables. */
11911 select_frame_for_redisplay (frame);
11912
11913 /* Mark all the scroll bars to be removed; we'll redeem
11914 the ones we want when we redisplay their windows. */
11915 if (FRAME_TERMINAL (f)->condemn_scroll_bars_hook)
11916 FRAME_TERMINAL (f)->condemn_scroll_bars_hook (f);
11917
11918 if (FRAME_VISIBLE_P (f) && !FRAME_OBSCURED_P (f))
11919 redisplay_windows (FRAME_ROOT_WINDOW (f));
11920
11921 /* The X error handler may have deleted that frame. */
11922 if (!FRAME_LIVE_P (f))
11923 continue;
11924
11925 /* Any scroll bars which redisplay_windows should have
11926 nuked should now go away. */
11927 if (FRAME_TERMINAL (f)->judge_scroll_bars_hook)
11928 FRAME_TERMINAL (f)->judge_scroll_bars_hook (f);
11929
11930 /* If fonts changed, display again. */
11931 /* ??? rms: I suspect it is a mistake to jump all the way
11932 back to retry here. It should just retry this frame. */
11933 if (fonts_changed_p)
11934 goto retry;
11935
11936 if (FRAME_VISIBLE_P (f) && !FRAME_OBSCURED_P (f))
11937 {
11938 /* See if we have to hscroll. */
11939 if (!f->already_hscrolled_p)
11940 {
11941 f->already_hscrolled_p = 1;
11942 if (hscroll_windows (f->root_window))
11943 goto retry;
11944 }
11945
11946 /* Prevent various kinds of signals during display
11947 update. stdio is not robust about handling
11948 signals, which can cause an apparent I/O
11949 error. */
11950 if (interrupt_input)
11951 unrequest_sigio ();
11952 STOP_POLLING;
11953
11954 /* Update the display. */
11955 set_window_update_flags (XWINDOW (f->root_window), 1);
11956 pending |= update_frame (f, 0, 0);
11957 f->updated_p = 1;
11958 }
11959 }
11960 }
11961
11962 if (!EQ (old_frame, selected_frame)
11963 && FRAME_LIVE_P (XFRAME (old_frame)))
11964 /* We played a bit fast-and-loose above and allowed selected_frame
11965 and selected_window to be temporarily out-of-sync but let's make
11966 sure this stays contained. */
11967 select_frame_for_redisplay (old_frame);
11968 eassert (EQ (XFRAME (selected_frame)->selected_window, selected_window));
11969
11970 if (!pending)
11971 {
11972 /* Do the mark_window_display_accurate after all windows have
11973 been redisplayed because this call resets flags in buffers
11974 which are needed for proper redisplay. */
11975 FOR_EACH_FRAME (tail, frame)
11976 {
11977 struct frame *f = XFRAME (frame);
11978 if (f->updated_p)
11979 {
11980 mark_window_display_accurate (f->root_window, 1);
11981 if (FRAME_TERMINAL (f)->frame_up_to_date_hook)
11982 FRAME_TERMINAL (f)->frame_up_to_date_hook (f);
11983 }
11984 }
11985 }
11986 }
11987 else if (FRAME_VISIBLE_P (sf) && !FRAME_OBSCURED_P (sf))
11988 {
11989 Lisp_Object mini_window;
11990 struct frame *mini_frame;
11991
11992 displayed_buffer = XBUFFER (XWINDOW (selected_window)->buffer);
11993 /* Use list_of_error, not Qerror, so that
11994 we catch only errors and don't run the debugger. */
11995 internal_condition_case_1 (redisplay_window_1, selected_window,
11996 list_of_error,
11997 redisplay_window_error);
11998
11999 /* Compare desired and current matrices, perform output. */
12000
12001 update:
12002 /* If fonts changed, display again. */
12003 if (fonts_changed_p)
12004 goto retry;
12005
12006 /* Prevent various kinds of signals during display update.
12007 stdio is not robust about handling signals,
12008 which can cause an apparent I/O error. */
12009 if (interrupt_input)
12010 unrequest_sigio ();
12011 STOP_POLLING;
12012
12013 if (FRAME_VISIBLE_P (sf) && !FRAME_OBSCURED_P (sf))
12014 {
12015 if (hscroll_windows (selected_window))
12016 goto retry;
12017
12018 XWINDOW (selected_window)->must_be_updated_p = 1;
12019 pending = update_frame (sf, 0, 0);
12020 }
12021
12022 /* We may have called echo_area_display at the top of this
12023 function. If the echo area is on another frame, that may
12024 have put text on a frame other than the selected one, so the
12025 above call to update_frame would not have caught it. Catch
12026 it here. */
12027 mini_window = FRAME_MINIBUF_WINDOW (sf);
12028 mini_frame = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
12029
12030 if (mini_frame != sf && FRAME_WINDOW_P (mini_frame))
12031 {
12032 XWINDOW (mini_window)->must_be_updated_p = 1;
12033 pending |= update_frame (mini_frame, 0, 0);
12034 if (!pending && hscroll_windows (mini_window))
12035 goto retry;
12036 }
12037 }
12038
12039 /* If display was paused because of pending input, make sure we do a
12040 thorough update the next time. */
12041 if (pending)
12042 {
12043 /* Prevent the optimization at the beginning of
12044 redisplay_internal that tries a single-line update of the
12045 line containing the cursor in the selected window. */
12046 CHARPOS (this_line_start_pos) = 0;
12047
12048 /* Let the overlay arrow be updated the next time. */
12049 update_overlay_arrows (0);
12050
12051 /* If we pause after scrolling, some rows in the current
12052 matrices of some windows are not valid. */
12053 if (!WINDOW_FULL_WIDTH_P (w)
12054 && !FRAME_WINDOW_P (XFRAME (w->frame)))
12055 update_mode_lines = 1;
12056 }
12057 else
12058 {
12059 if (!consider_all_windows_p)
12060 {
12061 /* This has already been done above if
12062 consider_all_windows_p is set. */
12063 mark_window_display_accurate_1 (w, 1);
12064
12065 /* Say overlay arrows are up to date. */
12066 update_overlay_arrows (1);
12067
12068 if (FRAME_TERMINAL (sf)->frame_up_to_date_hook != 0)
12069 FRAME_TERMINAL (sf)->frame_up_to_date_hook (sf);
12070 }
12071
12072 update_mode_lines = 0;
12073 windows_or_buffers_changed = 0;
12074 cursor_type_changed = 0;
12075 }
12076
12077 /* Start SIGIO interrupts coming again. Having them off during the
12078 code above makes it less likely one will discard output, but not
12079 impossible, since there might be stuff in the system buffer here.
12080 But it is much hairier to try to do anything about that. */
12081 if (interrupt_input)
12082 request_sigio ();
12083 RESUME_POLLING;
12084
12085 /* If a frame has become visible which was not before, redisplay
12086 again, so that we display it. Expose events for such a frame
12087 (which it gets when becoming visible) don't call the parts of
12088 redisplay constructing glyphs, so simply exposing a frame won't
12089 display anything in this case. So, we have to display these
12090 frames here explicitly. */
12091 if (!pending)
12092 {
12093 Lisp_Object tail, frame;
12094 int new_count = 0;
12095
12096 FOR_EACH_FRAME (tail, frame)
12097 {
12098 int this_is_visible = 0;
12099
12100 if (XFRAME (frame)->visible)
12101 this_is_visible = 1;
12102 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
12103 if (XFRAME (frame)->visible)
12104 this_is_visible = 1;
12105
12106 if (this_is_visible)
12107 new_count++;
12108 }
12109
12110 if (new_count != number_of_visible_frames)
12111 windows_or_buffers_changed++;
12112 }
12113
12114 /* Change frame size now if a change is pending. */
12115 do_pending_window_change (1);
12116
12117 /* If we just did a pending size change, or have additional
12118 visible frames, or selected_window changed, redisplay again. */
12119 if ((windows_or_buffers_changed && !pending)
12120 || (WINDOWP (selected_window) && (w = XWINDOW (selected_window)) != sw))
12121 goto retry;
12122
12123 /* Clear the face and image caches.
12124
12125 We used to do this only if consider_all_windows_p. But the cache
12126 needs to be cleared if a timer creates images in the current
12127 buffer (e.g. the test case in Bug#6230). */
12128
12129 if (clear_face_cache_count > CLEAR_FACE_CACHE_COUNT)
12130 {
12131 clear_face_cache (0);
12132 clear_face_cache_count = 0;
12133 }
12134
12135 #ifdef HAVE_WINDOW_SYSTEM
12136 if (clear_image_cache_count > CLEAR_IMAGE_CACHE_COUNT)
12137 {
12138 clear_image_caches (Qnil);
12139 clear_image_cache_count = 0;
12140 }
12141 #endif /* HAVE_WINDOW_SYSTEM */
12142
12143 end_of_redisplay:
12144 unbind_to (count, Qnil);
12145 RESUME_POLLING;
12146 }
12147
12148
12149 /* Redisplay, but leave alone any recent echo area message unless
12150 another message has been requested in its place.
12151
12152 This is useful in situations where you need to redisplay but no
12153 user action has occurred, making it inappropriate for the message
12154 area to be cleared. See tracking_off and
12155 wait_reading_process_output for examples of these situations.
12156
12157 FROM_WHERE is an integer saying from where this function was
12158 called. This is useful for debugging. */
12159
12160 void
12161 redisplay_preserve_echo_area (int from_where)
12162 {
12163 TRACE ((stderr, "redisplay_preserve_echo_area (%d)\n", from_where));
12164
12165 if (!NILP (echo_area_buffer[1]))
12166 {
12167 /* We have a previously displayed message, but no current
12168 message. Redisplay the previous message. */
12169 display_last_displayed_message_p = 1;
12170 redisplay_internal (1);
12171 display_last_displayed_message_p = 0;
12172 }
12173 else
12174 redisplay_internal (1);
12175
12176 if (FRAME_RIF (SELECTED_FRAME ()) != NULL
12177 && FRAME_RIF (SELECTED_FRAME ())->flush_display_optional)
12178 FRAME_RIF (SELECTED_FRAME ())->flush_display_optional (NULL);
12179 }
12180
12181
12182 /* Function registered with record_unwind_protect in
12183 redisplay_internal. Reset redisplaying_p to the value it had
12184 before redisplay_internal was called, and clear
12185 prevent_freeing_realized_faces_p. It also selects the previously
12186 selected frame, unless it has been deleted (by an X connection
12187 failure during redisplay, for example). */
12188
12189 static Lisp_Object
12190 unwind_redisplay (Lisp_Object val)
12191 {
12192 Lisp_Object old_redisplaying_p, old_frame;
12193
12194 old_redisplaying_p = XCAR (val);
12195 redisplaying_p = XFASTINT (old_redisplaying_p);
12196 old_frame = XCDR (val);
12197 if (! EQ (old_frame, selected_frame)
12198 && FRAME_LIVE_P (XFRAME (old_frame)))
12199 select_frame_for_redisplay (old_frame);
12200 return Qnil;
12201 }
12202
12203
12204 /* Mark the display of window W as accurate or inaccurate. If
12205 ACCURATE_P is non-zero mark display of W as accurate. If
12206 ACCURATE_P is zero, arrange for W to be redisplayed the next time
12207 redisplay_internal is called. */
12208
12209 static void
12210 mark_window_display_accurate_1 (struct window *w, int accurate_p)
12211 {
12212 if (BUFFERP (w->buffer))
12213 {
12214 struct buffer *b = XBUFFER (w->buffer);
12215
12216 w->last_modified
12217 = make_number (accurate_p ? BUF_MODIFF (b) : 0);
12218 w->last_overlay_modified
12219 = make_number (accurate_p ? BUF_OVERLAY_MODIFF (b) : 0);
12220 w->last_had_star
12221 = BUF_MODIFF (b) > BUF_SAVE_MODIFF (b) ? Qt : Qnil;
12222
12223 if (accurate_p)
12224 {
12225 b->clip_changed = 0;
12226 b->prevent_redisplay_optimizations_p = 0;
12227
12228 BUF_UNCHANGED_MODIFIED (b) = BUF_MODIFF (b);
12229 BUF_OVERLAY_UNCHANGED_MODIFIED (b) = BUF_OVERLAY_MODIFF (b);
12230 BUF_BEG_UNCHANGED (b) = BUF_GPT (b) - BUF_BEG (b);
12231 BUF_END_UNCHANGED (b) = BUF_Z (b) - BUF_GPT (b);
12232
12233 w->current_matrix->buffer = b;
12234 w->current_matrix->begv = BUF_BEGV (b);
12235 w->current_matrix->zv = BUF_ZV (b);
12236
12237 w->last_cursor = w->cursor;
12238 w->last_cursor_off_p = w->cursor_off_p;
12239
12240 if (w == XWINDOW (selected_window))
12241 w->last_point = make_number (BUF_PT (b));
12242 else
12243 w->last_point = make_number (XMARKER (w->pointm)->charpos);
12244 }
12245 }
12246
12247 if (accurate_p)
12248 {
12249 w->window_end_valid = w->buffer;
12250 w->update_mode_line = Qnil;
12251 }
12252 }
12253
12254
12255 /* Mark the display of windows in the window tree rooted at WINDOW as
12256 accurate or inaccurate. If ACCURATE_P is non-zero mark display of
12257 windows as accurate. If ACCURATE_P is zero, arrange for windows to
12258 be redisplayed the next time redisplay_internal is called. */
12259
12260 void
12261 mark_window_display_accurate (Lisp_Object window, int accurate_p)
12262 {
12263 struct window *w;
12264
12265 for (; !NILP (window); window = w->next)
12266 {
12267 w = XWINDOW (window);
12268 mark_window_display_accurate_1 (w, accurate_p);
12269
12270 if (!NILP (w->vchild))
12271 mark_window_display_accurate (w->vchild, accurate_p);
12272 if (!NILP (w->hchild))
12273 mark_window_display_accurate (w->hchild, accurate_p);
12274 }
12275
12276 if (accurate_p)
12277 {
12278 update_overlay_arrows (1);
12279 }
12280 else
12281 {
12282 /* Force a thorough redisplay the next time by setting
12283 last_arrow_position and last_arrow_string to t, which is
12284 unequal to any useful value of Voverlay_arrow_... */
12285 update_overlay_arrows (-1);
12286 }
12287 }
12288
12289
12290 /* Return value in display table DP (Lisp_Char_Table *) for character
12291 C. Since a display table doesn't have any parent, we don't have to
12292 follow parent. Do not call this function directly but use the
12293 macro DISP_CHAR_VECTOR. */
12294
12295 Lisp_Object
12296 disp_char_vector (struct Lisp_Char_Table *dp, int c)
12297 {
12298 Lisp_Object val;
12299
12300 if (ASCII_CHAR_P (c))
12301 {
12302 val = dp->ascii;
12303 if (SUB_CHAR_TABLE_P (val))
12304 val = XSUB_CHAR_TABLE (val)->contents[c];
12305 }
12306 else
12307 {
12308 Lisp_Object table;
12309
12310 XSETCHAR_TABLE (table, dp);
12311 val = char_table_ref (table, c);
12312 }
12313 if (NILP (val))
12314 val = dp->defalt;
12315 return val;
12316 }
12317
12318
12319 \f
12320 /***********************************************************************
12321 Window Redisplay
12322 ***********************************************************************/
12323
12324 /* Redisplay all leaf windows in the window tree rooted at WINDOW. */
12325
12326 static void
12327 redisplay_windows (Lisp_Object window)
12328 {
12329 while (!NILP (window))
12330 {
12331 struct window *w = XWINDOW (window);
12332
12333 if (!NILP (w->hchild))
12334 redisplay_windows (w->hchild);
12335 else if (!NILP (w->vchild))
12336 redisplay_windows (w->vchild);
12337 else if (!NILP (w->buffer))
12338 {
12339 displayed_buffer = XBUFFER (w->buffer);
12340 /* Use list_of_error, not Qerror, so that
12341 we catch only errors and don't run the debugger. */
12342 internal_condition_case_1 (redisplay_window_0, window,
12343 list_of_error,
12344 redisplay_window_error);
12345 }
12346
12347 window = w->next;
12348 }
12349 }
12350
12351 static Lisp_Object
12352 redisplay_window_error (Lisp_Object ignore)
12353 {
12354 displayed_buffer->display_error_modiff = BUF_MODIFF (displayed_buffer);
12355 return Qnil;
12356 }
12357
12358 static Lisp_Object
12359 redisplay_window_0 (Lisp_Object window)
12360 {
12361 if (displayed_buffer->display_error_modiff < BUF_MODIFF (displayed_buffer))
12362 redisplay_window (window, 0);
12363 return Qnil;
12364 }
12365
12366 static Lisp_Object
12367 redisplay_window_1 (Lisp_Object window)
12368 {
12369 if (displayed_buffer->display_error_modiff < BUF_MODIFF (displayed_buffer))
12370 redisplay_window (window, 1);
12371 return Qnil;
12372 }
12373 \f
12374
12375 /* Set cursor position of W. PT is assumed to be displayed in ROW.
12376 DELTA and DELTA_BYTES are the numbers of characters and bytes by
12377 which positions recorded in ROW differ from current buffer
12378 positions.
12379
12380 Return 0 if cursor is not on this row, 1 otherwise. */
12381
12382 int
12383 set_cursor_from_row (struct window *w, struct glyph_row *row,
12384 struct glyph_matrix *matrix,
12385 EMACS_INT delta, EMACS_INT delta_bytes,
12386 int dy, int dvpos)
12387 {
12388 struct glyph *glyph = row->glyphs[TEXT_AREA];
12389 struct glyph *end = glyph + row->used[TEXT_AREA];
12390 struct glyph *cursor = NULL;
12391 /* The last known character position in row. */
12392 EMACS_INT last_pos = MATRIX_ROW_START_CHARPOS (row) + delta;
12393 int x = row->x;
12394 EMACS_INT pt_old = PT - delta;
12395 EMACS_INT pos_before = MATRIX_ROW_START_CHARPOS (row) + delta;
12396 EMACS_INT pos_after = MATRIX_ROW_END_CHARPOS (row) + delta;
12397 struct glyph *glyph_before = glyph - 1, *glyph_after = end;
12398 /* A glyph beyond the edge of TEXT_AREA which we should never
12399 touch. */
12400 struct glyph *glyphs_end = end;
12401 /* Non-zero means we've found a match for cursor position, but that
12402 glyph has the avoid_cursor_p flag set. */
12403 int match_with_avoid_cursor = 0;
12404 /* Non-zero means we've seen at least one glyph that came from a
12405 display string. */
12406 int string_seen = 0;
12407 /* Largest and smalles buffer positions seen so far during scan of
12408 glyph row. */
12409 EMACS_INT bpos_max = pos_before;
12410 EMACS_INT bpos_min = pos_after;
12411 /* Last buffer position covered by an overlay string with an integer
12412 `cursor' property. */
12413 EMACS_INT bpos_covered = 0;
12414
12415 /* Skip over glyphs not having an object at the start and the end of
12416 the row. These are special glyphs like truncation marks on
12417 terminal frames. */
12418 if (row->displays_text_p)
12419 {
12420 if (!row->reversed_p)
12421 {
12422 while (glyph < end
12423 && INTEGERP (glyph->object)
12424 && glyph->charpos < 0)
12425 {
12426 x += glyph->pixel_width;
12427 ++glyph;
12428 }
12429 while (end > glyph
12430 && INTEGERP ((end - 1)->object)
12431 /* CHARPOS is zero for blanks and stretch glyphs
12432 inserted by extend_face_to_end_of_line. */
12433 && (end - 1)->charpos <= 0)
12434 --end;
12435 glyph_before = glyph - 1;
12436 glyph_after = end;
12437 }
12438 else
12439 {
12440 struct glyph *g;
12441
12442 /* If the glyph row is reversed, we need to process it from back
12443 to front, so swap the edge pointers. */
12444 glyphs_end = end = glyph - 1;
12445 glyph += row->used[TEXT_AREA] - 1;
12446
12447 while (glyph > end + 1
12448 && INTEGERP (glyph->object)
12449 && glyph->charpos < 0)
12450 {
12451 --glyph;
12452 x -= glyph->pixel_width;
12453 }
12454 if (INTEGERP (glyph->object) && glyph->charpos < 0)
12455 --glyph;
12456 /* By default, in reversed rows we put the cursor on the
12457 rightmost (first in the reading order) glyph. */
12458 for (g = end + 1; g < glyph; g++)
12459 x += g->pixel_width;
12460 while (end < glyph
12461 && INTEGERP ((end + 1)->object)
12462 && (end + 1)->charpos <= 0)
12463 ++end;
12464 glyph_before = glyph + 1;
12465 glyph_after = end;
12466 }
12467 }
12468 else if (row->reversed_p)
12469 {
12470 /* In R2L rows that don't display text, put the cursor on the
12471 rightmost glyph. Case in point: an empty last line that is
12472 part of an R2L paragraph. */
12473 cursor = end - 1;
12474 /* Avoid placing the cursor on the last glyph of the row, where
12475 on terminal frames we hold the vertical border between
12476 adjacent windows. */
12477 if (!FRAME_WINDOW_P (WINDOW_XFRAME (w))
12478 && !WINDOW_RIGHTMOST_P (w)
12479 && cursor == row->glyphs[LAST_AREA] - 1)
12480 cursor--;
12481 x = -1; /* will be computed below, at label compute_x */
12482 }
12483
12484 /* Step 1: Try to find the glyph whose character position
12485 corresponds to point. If that's not possible, find 2 glyphs
12486 whose character positions are the closest to point, one before
12487 point, the other after it. */
12488 if (!row->reversed_p)
12489 while (/* not marched to end of glyph row */
12490 glyph < end
12491 /* glyph was not inserted by redisplay for internal purposes */
12492 && !INTEGERP (glyph->object))
12493 {
12494 if (BUFFERP (glyph->object))
12495 {
12496 EMACS_INT dpos = glyph->charpos - pt_old;
12497
12498 if (glyph->charpos > bpos_max)
12499 bpos_max = glyph->charpos;
12500 if (glyph->charpos < bpos_min)
12501 bpos_min = glyph->charpos;
12502 if (!glyph->avoid_cursor_p)
12503 {
12504 /* If we hit point, we've found the glyph on which to
12505 display the cursor. */
12506 if (dpos == 0)
12507 {
12508 match_with_avoid_cursor = 0;
12509 break;
12510 }
12511 /* See if we've found a better approximation to
12512 POS_BEFORE or to POS_AFTER. Note that we want the
12513 first (leftmost) glyph of all those that are the
12514 closest from below, and the last (rightmost) of all
12515 those from above. */
12516 if (0 > dpos && dpos > pos_before - pt_old)
12517 {
12518 pos_before = glyph->charpos;
12519 glyph_before = glyph;
12520 }
12521 else if (0 < dpos && dpos <= pos_after - pt_old)
12522 {
12523 pos_after = glyph->charpos;
12524 glyph_after = glyph;
12525 }
12526 }
12527 else if (dpos == 0)
12528 match_with_avoid_cursor = 1;
12529 }
12530 else if (STRINGP (glyph->object))
12531 {
12532 Lisp_Object chprop;
12533 EMACS_INT glyph_pos = glyph->charpos;
12534
12535 chprop = Fget_char_property (make_number (glyph_pos), Qcursor,
12536 glyph->object);
12537 if (INTEGERP (chprop))
12538 {
12539 bpos_covered = bpos_max + XINT (chprop);
12540 /* If the `cursor' property covers buffer positions up
12541 to and including point, we should display cursor on
12542 this glyph. Note that overlays and text properties
12543 with string values stop bidi reordering, so every
12544 buffer position to the left of the string is always
12545 smaller than any position to the right of the
12546 string. Therefore, if a `cursor' property on one
12547 of the string's characters has an integer value, we
12548 will break out of the loop below _before_ we get to
12549 the position match above. IOW, integer values of
12550 the `cursor' property override the "exact match for
12551 point" strategy of positioning the cursor. */
12552 /* Implementation note: bpos_max == pt_old when, e.g.,
12553 we are in an empty line, where bpos_max is set to
12554 MATRIX_ROW_START_CHARPOS, see above. */
12555 if (bpos_max <= pt_old && bpos_covered >= pt_old)
12556 {
12557 cursor = glyph;
12558 break;
12559 }
12560 }
12561
12562 string_seen = 1;
12563 }
12564 x += glyph->pixel_width;
12565 ++glyph;
12566 }
12567 else if (glyph > end) /* row is reversed */
12568 while (!INTEGERP (glyph->object))
12569 {
12570 if (BUFFERP (glyph->object))
12571 {
12572 EMACS_INT dpos = glyph->charpos - pt_old;
12573
12574 if (glyph->charpos > bpos_max)
12575 bpos_max = glyph->charpos;
12576 if (glyph->charpos < bpos_min)
12577 bpos_min = glyph->charpos;
12578 if (!glyph->avoid_cursor_p)
12579 {
12580 if (dpos == 0)
12581 {
12582 match_with_avoid_cursor = 0;
12583 break;
12584 }
12585 if (0 > dpos && dpos > pos_before - pt_old)
12586 {
12587 pos_before = glyph->charpos;
12588 glyph_before = glyph;
12589 }
12590 else if (0 < dpos && dpos <= pos_after - pt_old)
12591 {
12592 pos_after = glyph->charpos;
12593 glyph_after = glyph;
12594 }
12595 }
12596 else if (dpos == 0)
12597 match_with_avoid_cursor = 1;
12598 }
12599 else if (STRINGP (glyph->object))
12600 {
12601 Lisp_Object chprop;
12602 EMACS_INT glyph_pos = glyph->charpos;
12603
12604 chprop = Fget_char_property (make_number (glyph_pos), Qcursor,
12605 glyph->object);
12606 if (INTEGERP (chprop))
12607 {
12608 bpos_covered = bpos_max + XINT (chprop);
12609 /* If the `cursor' property covers buffer positions up
12610 to and including point, we should display cursor on
12611 this glyph. */
12612 if (bpos_max <= pt_old && bpos_covered >= pt_old)
12613 {
12614 cursor = glyph;
12615 break;
12616 }
12617 }
12618 string_seen = 1;
12619 }
12620 --glyph;
12621 if (glyph == glyphs_end) /* don't dereference outside TEXT_AREA */
12622 {
12623 x--; /* can't use any pixel_width */
12624 break;
12625 }
12626 x -= glyph->pixel_width;
12627 }
12628
12629 /* Step 2: If we didn't find an exact match for point, we need to
12630 look for a proper place to put the cursor among glyphs between
12631 GLYPH_BEFORE and GLYPH_AFTER. */
12632 if (!((row->reversed_p ? glyph > glyphs_end : glyph < glyphs_end)
12633 && BUFFERP (glyph->object) && glyph->charpos == pt_old)
12634 && bpos_covered < pt_old)
12635 {
12636 /* An empty line has a single glyph whose OBJECT is zero and
12637 whose CHARPOS is the position of a newline on that line.
12638 Note that on a TTY, there are more glyphs after that, which
12639 were produced by extend_face_to_end_of_line, but their
12640 CHARPOS is zero or negative. */
12641 int empty_line_p =
12642 (row->reversed_p ? glyph > glyphs_end : glyph < glyphs_end)
12643 && INTEGERP (glyph->object) && glyph->charpos > 0;
12644
12645 if (row->ends_in_ellipsis_p && pos_after == last_pos)
12646 {
12647 EMACS_INT ellipsis_pos;
12648
12649 /* Scan back over the ellipsis glyphs. */
12650 if (!row->reversed_p)
12651 {
12652 ellipsis_pos = (glyph - 1)->charpos;
12653 while (glyph > row->glyphs[TEXT_AREA]
12654 && (glyph - 1)->charpos == ellipsis_pos)
12655 glyph--, x -= glyph->pixel_width;
12656 /* That loop always goes one position too far, including
12657 the glyph before the ellipsis. So scan forward over
12658 that one. */
12659 x += glyph->pixel_width;
12660 glyph++;
12661 }
12662 else /* row is reversed */
12663 {
12664 ellipsis_pos = (glyph + 1)->charpos;
12665 while (glyph < row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] - 1
12666 && (glyph + 1)->charpos == ellipsis_pos)
12667 glyph++, x += glyph->pixel_width;
12668 x -= glyph->pixel_width;
12669 glyph--;
12670 }
12671 }
12672 else if (match_with_avoid_cursor
12673 /* A truncated row may not include PT among its
12674 character positions. Setting the cursor inside the
12675 scroll margin will trigger recalculation of hscroll
12676 in hscroll_window_tree. */
12677 || (row->truncated_on_left_p && pt_old < bpos_min)
12678 || (row->truncated_on_right_p && pt_old > bpos_max)
12679 /* Zero-width characters produce no glyphs. */
12680 || (!string_seen
12681 && !empty_line_p
12682 && (row->reversed_p
12683 ? glyph_after > glyphs_end
12684 : glyph_after < glyphs_end)))
12685 {
12686 cursor = glyph_after;
12687 x = -1;
12688 }
12689 else if (string_seen)
12690 {
12691 int incr = row->reversed_p ? -1 : +1;
12692
12693 /* Need to find the glyph that came out of a string which is
12694 present at point. That glyph is somewhere between
12695 GLYPH_BEFORE and GLYPH_AFTER, and it came from a string
12696 positioned between POS_BEFORE and POS_AFTER in the
12697 buffer. */
12698 struct glyph *stop = glyph_after;
12699 EMACS_INT pos = pos_before;
12700
12701 x = -1;
12702 for (glyph = glyph_before + incr;
12703 row->reversed_p ? glyph > stop : glyph < stop; )
12704 {
12705
12706 /* Any glyphs that come from the buffer are here because
12707 of bidi reordering. Skip them, and only pay
12708 attention to glyphs that came from some string. */
12709 if (STRINGP (glyph->object))
12710 {
12711 Lisp_Object str;
12712 EMACS_INT tem;
12713
12714 str = glyph->object;
12715 tem = string_buffer_position_lim (w, str, pos, pos_after, 0);
12716 if (tem == 0 /* from overlay */
12717 || pos <= tem)
12718 {
12719 /* If the string from which this glyph came is
12720 found in the buffer at point, then we've
12721 found the glyph we've been looking for. If
12722 it comes from an overlay (tem == 0), and it
12723 has the `cursor' property on one of its
12724 glyphs, record that glyph as a candidate for
12725 displaying the cursor. (As in the
12726 unidirectional version, we will display the
12727 cursor on the last candidate we find.) */
12728 if (tem == 0 || tem == pt_old)
12729 {
12730 /* The glyphs from this string could have
12731 been reordered. Find the one with the
12732 smallest string position. Or there could
12733 be a character in the string with the
12734 `cursor' property, which means display
12735 cursor on that character's glyph. */
12736 EMACS_INT strpos = glyph->charpos;
12737
12738 if (tem)
12739 cursor = glyph;
12740 for ( ;
12741 (row->reversed_p ? glyph > stop : glyph < stop)
12742 && EQ (glyph->object, str);
12743 glyph += incr)
12744 {
12745 Lisp_Object cprop;
12746 EMACS_INT gpos = glyph->charpos;
12747
12748 cprop = Fget_char_property (make_number (gpos),
12749 Qcursor,
12750 glyph->object);
12751 if (!NILP (cprop))
12752 {
12753 cursor = glyph;
12754 break;
12755 }
12756 if (tem && glyph->charpos < strpos)
12757 {
12758 strpos = glyph->charpos;
12759 cursor = glyph;
12760 }
12761 }
12762
12763 if (tem == pt_old)
12764 goto compute_x;
12765 }
12766 if (tem)
12767 pos = tem + 1; /* don't find previous instances */
12768 }
12769 /* This string is not what we want; skip all of the
12770 glyphs that came from it. */
12771 while ((row->reversed_p ? glyph > stop : glyph < stop)
12772 && EQ (glyph->object, str))
12773 glyph += incr;
12774 }
12775 else
12776 glyph += incr;
12777 }
12778
12779 /* If we reached the end of the line, and END was from a string,
12780 the cursor is not on this line. */
12781 if (cursor == NULL
12782 && (row->reversed_p ? glyph <= end : glyph >= end)
12783 && STRINGP (end->object)
12784 && row->continued_p)
12785 return 0;
12786 }
12787 }
12788
12789 compute_x:
12790 if (cursor != NULL)
12791 glyph = cursor;
12792 if (x < 0)
12793 {
12794 struct glyph *g;
12795
12796 /* Need to compute x that corresponds to GLYPH. */
12797 for (g = row->glyphs[TEXT_AREA], x = row->x; g < glyph; g++)
12798 {
12799 if (g >= row->glyphs[TEXT_AREA] + row->used[TEXT_AREA])
12800 abort ();
12801 x += g->pixel_width;
12802 }
12803 }
12804
12805 /* ROW could be part of a continued line, which, under bidi
12806 reordering, might have other rows whose start and end charpos
12807 occlude point. Only set w->cursor if we found a better
12808 approximation to the cursor position than we have from previously
12809 examined candidate rows belonging to the same continued line. */
12810 if (/* we already have a candidate row */
12811 w->cursor.vpos >= 0
12812 /* that candidate is not the row we are processing */
12813 && MATRIX_ROW (matrix, w->cursor.vpos) != row
12814 /* the row we are processing is part of a continued line */
12815 && (row->continued_p || MATRIX_ROW_CONTINUATION_LINE_P (row))
12816 /* Make sure cursor.vpos specifies a row whose start and end
12817 charpos occlude point. This is because some callers of this
12818 function leave cursor.vpos at the row where the cursor was
12819 displayed during the last redisplay cycle. */
12820 && MATRIX_ROW_START_CHARPOS (MATRIX_ROW (matrix, w->cursor.vpos)) <= pt_old
12821 && pt_old < MATRIX_ROW_END_CHARPOS (MATRIX_ROW (matrix, w->cursor.vpos)))
12822 {
12823 struct glyph *g1 =
12824 MATRIX_ROW_GLYPH_START (matrix, w->cursor.vpos) + w->cursor.hpos;
12825
12826 /* Don't consider glyphs that are outside TEXT_AREA. */
12827 if (!(row->reversed_p ? glyph > glyphs_end : glyph < glyphs_end))
12828 return 0;
12829 /* Keep the candidate whose buffer position is the closest to
12830 point. */
12831 if (/* previous candidate is a glyph in TEXT_AREA of that row */
12832 w->cursor.hpos >= 0
12833 && w->cursor.hpos < MATRIX_ROW_USED (matrix, w->cursor.vpos)
12834 && BUFFERP (g1->object)
12835 && (g1->charpos == pt_old /* an exact match always wins */
12836 || (BUFFERP (glyph->object)
12837 && eabs (g1->charpos - pt_old)
12838 < eabs (glyph->charpos - pt_old))))
12839 return 0;
12840 /* If this candidate gives an exact match, use that. */
12841 if (!(BUFFERP (glyph->object) && glyph->charpos == pt_old)
12842 /* Otherwise, keep the candidate that comes from a row
12843 spanning less buffer positions. This may win when one or
12844 both candidate positions are on glyphs that came from
12845 display strings, for which we cannot compare buffer
12846 positions. */
12847 && MATRIX_ROW_END_CHARPOS (MATRIX_ROW (matrix, w->cursor.vpos))
12848 - MATRIX_ROW_START_CHARPOS (MATRIX_ROW (matrix, w->cursor.vpos))
12849 < MATRIX_ROW_END_CHARPOS (row) - MATRIX_ROW_START_CHARPOS (row))
12850 return 0;
12851 }
12852 w->cursor.hpos = glyph - row->glyphs[TEXT_AREA];
12853 w->cursor.x = x;
12854 w->cursor.vpos = MATRIX_ROW_VPOS (row, matrix) + dvpos;
12855 w->cursor.y = row->y + dy;
12856
12857 if (w == XWINDOW (selected_window))
12858 {
12859 if (!row->continued_p
12860 && !MATRIX_ROW_CONTINUATION_LINE_P (row)
12861 && row->x == 0)
12862 {
12863 this_line_buffer = XBUFFER (w->buffer);
12864
12865 CHARPOS (this_line_start_pos)
12866 = MATRIX_ROW_START_CHARPOS (row) + delta;
12867 BYTEPOS (this_line_start_pos)
12868 = MATRIX_ROW_START_BYTEPOS (row) + delta_bytes;
12869
12870 CHARPOS (this_line_end_pos)
12871 = Z - (MATRIX_ROW_END_CHARPOS (row) + delta);
12872 BYTEPOS (this_line_end_pos)
12873 = Z_BYTE - (MATRIX_ROW_END_BYTEPOS (row) + delta_bytes);
12874
12875 this_line_y = w->cursor.y;
12876 this_line_pixel_height = row->height;
12877 this_line_vpos = w->cursor.vpos;
12878 this_line_start_x = row->x;
12879 }
12880 else
12881 CHARPOS (this_line_start_pos) = 0;
12882 }
12883
12884 return 1;
12885 }
12886
12887
12888 /* Run window scroll functions, if any, for WINDOW with new window
12889 start STARTP. Sets the window start of WINDOW to that position.
12890
12891 We assume that the window's buffer is really current. */
12892
12893 static INLINE struct text_pos
12894 run_window_scroll_functions (Lisp_Object window, struct text_pos startp)
12895 {
12896 struct window *w = XWINDOW (window);
12897 SET_MARKER_FROM_TEXT_POS (w->start, startp);
12898
12899 if (current_buffer != XBUFFER (w->buffer))
12900 abort ();
12901
12902 if (!NILP (Vwindow_scroll_functions))
12903 {
12904 run_hook_with_args_2 (Qwindow_scroll_functions, window,
12905 make_number (CHARPOS (startp)));
12906 SET_TEXT_POS_FROM_MARKER (startp, w->start);
12907 /* In case the hook functions switch buffers. */
12908 if (current_buffer != XBUFFER (w->buffer))
12909 set_buffer_internal_1 (XBUFFER (w->buffer));
12910 }
12911
12912 return startp;
12913 }
12914
12915
12916 /* Make sure the line containing the cursor is fully visible.
12917 A value of 1 means there is nothing to be done.
12918 (Either the line is fully visible, or it cannot be made so,
12919 or we cannot tell.)
12920
12921 If FORCE_P is non-zero, return 0 even if partial visible cursor row
12922 is higher than window.
12923
12924 A value of 0 means the caller should do scrolling
12925 as if point had gone off the screen. */
12926
12927 static int
12928 cursor_row_fully_visible_p (struct window *w, int force_p, int current_matrix_p)
12929 {
12930 struct glyph_matrix *matrix;
12931 struct glyph_row *row;
12932 int window_height;
12933
12934 if (!make_cursor_line_fully_visible_p)
12935 return 1;
12936
12937 /* It's not always possible to find the cursor, e.g, when a window
12938 is full of overlay strings. Don't do anything in that case. */
12939 if (w->cursor.vpos < 0)
12940 return 1;
12941
12942 matrix = current_matrix_p ? w->current_matrix : w->desired_matrix;
12943 row = MATRIX_ROW (matrix, w->cursor.vpos);
12944
12945 /* If the cursor row is not partially visible, there's nothing to do. */
12946 if (!MATRIX_ROW_PARTIALLY_VISIBLE_P (w, row))
12947 return 1;
12948
12949 /* If the row the cursor is in is taller than the window's height,
12950 it's not clear what to do, so do nothing. */
12951 window_height = window_box_height (w);
12952 if (row->height >= window_height)
12953 {
12954 if (!force_p || MINI_WINDOW_P (w)
12955 || w->vscroll || w->cursor.vpos == 0)
12956 return 1;
12957 }
12958 return 0;
12959 }
12960
12961
12962 /* Try scrolling PT into view in window WINDOW. JUST_THIS_ONE_P
12963 non-zero means only WINDOW is redisplayed in redisplay_internal.
12964 TEMP_SCROLL_STEP has the same meaning as emacs_scroll_step, and is used
12965 in redisplay_window to bring a partially visible line into view in
12966 the case that only the cursor has moved.
12967
12968 LAST_LINE_MISFIT should be nonzero if we're scrolling because the
12969 last screen line's vertical height extends past the end of the screen.
12970
12971 Value is
12972
12973 1 if scrolling succeeded
12974
12975 0 if scrolling didn't find point.
12976
12977 -1 if new fonts have been loaded so that we must interrupt
12978 redisplay, adjust glyph matrices, and try again. */
12979
12980 enum
12981 {
12982 SCROLLING_SUCCESS,
12983 SCROLLING_FAILED,
12984 SCROLLING_NEED_LARGER_MATRICES
12985 };
12986
12987 static int
12988 try_scrolling (Lisp_Object window, int just_this_one_p,
12989 EMACS_INT arg_scroll_conservatively, EMACS_INT scroll_step,
12990 int temp_scroll_step, int last_line_misfit)
12991 {
12992 struct window *w = XWINDOW (window);
12993 struct frame *f = XFRAME (w->frame);
12994 struct text_pos pos, startp;
12995 struct it it;
12996 int this_scroll_margin, scroll_max, rc, height;
12997 int dy = 0, amount_to_scroll = 0, scroll_down_p = 0;
12998 int extra_scroll_margin_lines = last_line_misfit ? 1 : 0;
12999 Lisp_Object aggressive;
13000 int scroll_limit = INT_MAX / FRAME_LINE_HEIGHT (f);
13001
13002 #if GLYPH_DEBUG
13003 debug_method_add (w, "try_scrolling");
13004 #endif
13005
13006 SET_TEXT_POS_FROM_MARKER (startp, w->start);
13007
13008 /* Compute scroll margin height in pixels. We scroll when point is
13009 within this distance from the top or bottom of the window. */
13010 if (scroll_margin > 0)
13011 this_scroll_margin = min (scroll_margin, WINDOW_TOTAL_LINES (w) / 4)
13012 * FRAME_LINE_HEIGHT (f);
13013 else
13014 this_scroll_margin = 0;
13015
13016 /* Force arg_scroll_conservatively to have a reasonable value, to avoid
13017 overflow while computing how much to scroll. Note that the user
13018 can supply scroll-conservatively equal to `most-positive-fixnum',
13019 which can be larger than INT_MAX. */
13020 if (arg_scroll_conservatively > scroll_limit)
13021 {
13022 arg_scroll_conservatively = scroll_limit;
13023 scroll_max = INT_MAX;
13024 }
13025 else if (scroll_step || arg_scroll_conservatively || temp_scroll_step)
13026 /* Compute how much we should try to scroll maximally to bring
13027 point into view. */
13028 scroll_max = (max (scroll_step,
13029 max (arg_scroll_conservatively, temp_scroll_step))
13030 * FRAME_LINE_HEIGHT (f));
13031 else if (NUMBERP (BVAR (current_buffer, scroll_down_aggressively))
13032 || NUMBERP (BVAR (current_buffer, scroll_up_aggressively)))
13033 /* We're trying to scroll because of aggressive scrolling but no
13034 scroll_step is set. Choose an arbitrary one. */
13035 scroll_max = 10 * FRAME_LINE_HEIGHT (f);
13036 else
13037 scroll_max = 0;
13038
13039 too_near_end:
13040
13041 /* Decide whether to scroll down. */
13042 if (PT > CHARPOS (startp))
13043 {
13044 int scroll_margin_y;
13045
13046 /* Compute the pixel ypos of the scroll margin, then move it to
13047 either that ypos or PT, whichever comes first. */
13048 start_display (&it, w, startp);
13049 scroll_margin_y = it.last_visible_y - this_scroll_margin
13050 - FRAME_LINE_HEIGHT (f) * extra_scroll_margin_lines;
13051 move_it_to (&it, PT, -1, scroll_margin_y - 1, -1,
13052 (MOVE_TO_POS | MOVE_TO_Y));
13053
13054 if (PT > CHARPOS (it.current.pos))
13055 {
13056 int y0 = line_bottom_y (&it);
13057 /* Compute how many pixels below window bottom to stop searching
13058 for PT. This avoids costly search for PT that is far away if
13059 the user limited scrolling by a small number of lines, but
13060 always finds PT if arg_scroll_conservatively is set to a large
13061 number, such as most-positive-fixnum. */
13062 int slack = max (scroll_max, 10 * FRAME_LINE_HEIGHT (f));
13063 int y_to_move =
13064 slack >= INT_MAX - it.last_visible_y
13065 ? INT_MAX
13066 : it.last_visible_y + slack;
13067
13068 /* Compute the distance from the scroll margin to PT or to
13069 the scroll limit, whichever comes first. This should
13070 include the height of the cursor line, to make that line
13071 fully visible. */
13072 move_it_to (&it, PT, -1, y_to_move,
13073 -1, MOVE_TO_POS | MOVE_TO_Y);
13074 dy = line_bottom_y (&it) - y0;
13075
13076 if (dy > scroll_max)
13077 return SCROLLING_FAILED;
13078
13079 scroll_down_p = 1;
13080 }
13081 }
13082
13083 if (scroll_down_p)
13084 {
13085 /* Point is in or below the bottom scroll margin, so move the
13086 window start down. If scrolling conservatively, move it just
13087 enough down to make point visible. If scroll_step is set,
13088 move it down by scroll_step. */
13089 if (arg_scroll_conservatively)
13090 amount_to_scroll
13091 = min (max (dy, FRAME_LINE_HEIGHT (f)),
13092 FRAME_LINE_HEIGHT (f) * arg_scroll_conservatively);
13093 else if (scroll_step || temp_scroll_step)
13094 amount_to_scroll = scroll_max;
13095 else
13096 {
13097 aggressive = BVAR (current_buffer, scroll_up_aggressively);
13098 height = WINDOW_BOX_TEXT_HEIGHT (w);
13099 if (NUMBERP (aggressive))
13100 {
13101 double float_amount = XFLOATINT (aggressive) * height;
13102 amount_to_scroll = float_amount;
13103 if (amount_to_scroll == 0 && float_amount > 0)
13104 amount_to_scroll = 1;
13105 }
13106 }
13107
13108 if (amount_to_scroll <= 0)
13109 return SCROLLING_FAILED;
13110
13111 start_display (&it, w, startp);
13112 if (scroll_max < INT_MAX)
13113 move_it_vertically (&it, amount_to_scroll);
13114 else
13115 {
13116 /* Extra precision for users who set scroll-conservatively
13117 to most-positive-fixnum: make sure the amount we scroll
13118 the window start is never less than amount_to_scroll,
13119 which was computed as distance from window bottom to
13120 point. This matters when lines at window top and lines
13121 below window bottom have different height. */
13122 struct it it1 = it;
13123 /* We use a temporary it1 because line_bottom_y can modify
13124 its argument, if it moves one line down; see there. */
13125 int start_y = line_bottom_y (&it1);
13126
13127 do {
13128 move_it_by_lines (&it, 1, 1);
13129 it1 = it;
13130 } while (line_bottom_y (&it1) - start_y < amount_to_scroll);
13131 }
13132
13133 /* If STARTP is unchanged, move it down another screen line. */
13134 if (CHARPOS (it.current.pos) == CHARPOS (startp))
13135 move_it_by_lines (&it, 1, 1);
13136 startp = it.current.pos;
13137 }
13138 else
13139 {
13140 struct text_pos scroll_margin_pos = startp;
13141
13142 /* See if point is inside the scroll margin at the top of the
13143 window. */
13144 if (this_scroll_margin)
13145 {
13146 start_display (&it, w, startp);
13147 move_it_vertically (&it, this_scroll_margin);
13148 scroll_margin_pos = it.current.pos;
13149 }
13150
13151 if (PT < CHARPOS (scroll_margin_pos))
13152 {
13153 /* Point is in the scroll margin at the top of the window or
13154 above what is displayed in the window. */
13155 int y0;
13156
13157 /* Compute the vertical distance from PT to the scroll
13158 margin position. Give up if distance is greater than
13159 scroll_max. */
13160 SET_TEXT_POS (pos, PT, PT_BYTE);
13161 start_display (&it, w, pos);
13162 y0 = it.current_y;
13163 move_it_to (&it, CHARPOS (scroll_margin_pos), 0,
13164 it.last_visible_y, -1,
13165 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y);
13166 dy = it.current_y - y0;
13167 if (dy > scroll_max)
13168 return SCROLLING_FAILED;
13169
13170 /* Compute new window start. */
13171 start_display (&it, w, startp);
13172
13173 if (arg_scroll_conservatively)
13174 amount_to_scroll
13175 = max (dy, FRAME_LINE_HEIGHT (f) * max (scroll_step, temp_scroll_step));
13176 else if (scroll_step || temp_scroll_step)
13177 amount_to_scroll = scroll_max;
13178 else
13179 {
13180 aggressive = BVAR (current_buffer, scroll_down_aggressively);
13181 height = WINDOW_BOX_TEXT_HEIGHT (w);
13182 if (NUMBERP (aggressive))
13183 {
13184 double float_amount = XFLOATINT (aggressive) * height;
13185 amount_to_scroll = float_amount;
13186 if (amount_to_scroll == 0 && float_amount > 0)
13187 amount_to_scroll = 1;
13188 }
13189 }
13190
13191 if (amount_to_scroll <= 0)
13192 return SCROLLING_FAILED;
13193
13194 move_it_vertically_backward (&it, amount_to_scroll);
13195 startp = it.current.pos;
13196 }
13197 }
13198
13199 /* Run window scroll functions. */
13200 startp = run_window_scroll_functions (window, startp);
13201
13202 /* Display the window. Give up if new fonts are loaded, or if point
13203 doesn't appear. */
13204 if (!try_window (window, startp, 0))
13205 rc = SCROLLING_NEED_LARGER_MATRICES;
13206 else if (w->cursor.vpos < 0)
13207 {
13208 clear_glyph_matrix (w->desired_matrix);
13209 rc = SCROLLING_FAILED;
13210 }
13211 else
13212 {
13213 /* Maybe forget recorded base line for line number display. */
13214 if (!just_this_one_p
13215 || current_buffer->clip_changed
13216 || BEG_UNCHANGED < CHARPOS (startp))
13217 w->base_line_number = Qnil;
13218
13219 /* If cursor ends up on a partially visible line,
13220 treat that as being off the bottom of the screen. */
13221 if (! cursor_row_fully_visible_p (w, extra_scroll_margin_lines <= 1, 0)
13222 /* It's possible that the cursor is on the first line of the
13223 buffer, which is partially obscured due to a vscroll
13224 (Bug#7537). In that case, avoid looping forever . */
13225 && extra_scroll_margin_lines < w->desired_matrix->nrows - 1)
13226 {
13227 clear_glyph_matrix (w->desired_matrix);
13228 ++extra_scroll_margin_lines;
13229 goto too_near_end;
13230 }
13231 rc = SCROLLING_SUCCESS;
13232 }
13233
13234 return rc;
13235 }
13236
13237
13238 /* Compute a suitable window start for window W if display of W starts
13239 on a continuation line. Value is non-zero if a new window start
13240 was computed.
13241
13242 The new window start will be computed, based on W's width, starting
13243 from the start of the continued line. It is the start of the
13244 screen line with the minimum distance from the old start W->start. */
13245
13246 static int
13247 compute_window_start_on_continuation_line (struct window *w)
13248 {
13249 struct text_pos pos, start_pos;
13250 int window_start_changed_p = 0;
13251
13252 SET_TEXT_POS_FROM_MARKER (start_pos, w->start);
13253
13254 /* If window start is on a continuation line... Window start may be
13255 < BEGV in case there's invisible text at the start of the
13256 buffer (M-x rmail, for example). */
13257 if (CHARPOS (start_pos) > BEGV
13258 && FETCH_BYTE (BYTEPOS (start_pos) - 1) != '\n')
13259 {
13260 struct it it;
13261 struct glyph_row *row;
13262
13263 /* Handle the case that the window start is out of range. */
13264 if (CHARPOS (start_pos) < BEGV)
13265 SET_TEXT_POS (start_pos, BEGV, BEGV_BYTE);
13266 else if (CHARPOS (start_pos) > ZV)
13267 SET_TEXT_POS (start_pos, ZV, ZV_BYTE);
13268
13269 /* Find the start of the continued line. This should be fast
13270 because scan_buffer is fast (newline cache). */
13271 row = w->desired_matrix->rows + (WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0);
13272 init_iterator (&it, w, CHARPOS (start_pos), BYTEPOS (start_pos),
13273 row, DEFAULT_FACE_ID);
13274 reseat_at_previous_visible_line_start (&it);
13275
13276 /* If the line start is "too far" away from the window start,
13277 say it takes too much time to compute a new window start. */
13278 if (CHARPOS (start_pos) - IT_CHARPOS (it)
13279 < WINDOW_TOTAL_LINES (w) * WINDOW_TOTAL_COLS (w))
13280 {
13281 int min_distance, distance;
13282
13283 /* Move forward by display lines to find the new window
13284 start. If window width was enlarged, the new start can
13285 be expected to be > the old start. If window width was
13286 decreased, the new window start will be < the old start.
13287 So, we're looking for the display line start with the
13288 minimum distance from the old window start. */
13289 pos = it.current.pos;
13290 min_distance = INFINITY;
13291 while ((distance = eabs (CHARPOS (start_pos) - IT_CHARPOS (it))),
13292 distance < min_distance)
13293 {
13294 min_distance = distance;
13295 pos = it.current.pos;
13296 move_it_by_lines (&it, 1, 0);
13297 }
13298
13299 /* Set the window start there. */
13300 SET_MARKER_FROM_TEXT_POS (w->start, pos);
13301 window_start_changed_p = 1;
13302 }
13303 }
13304
13305 return window_start_changed_p;
13306 }
13307
13308
13309 /* Try cursor movement in case text has not changed in window WINDOW,
13310 with window start STARTP. Value is
13311
13312 CURSOR_MOVEMENT_SUCCESS if successful
13313
13314 CURSOR_MOVEMENT_CANNOT_BE_USED if this method cannot be used
13315
13316 CURSOR_MOVEMENT_MUST_SCROLL if we know we have to scroll the
13317 display. *SCROLL_STEP is set to 1, under certain circumstances, if
13318 we want to scroll as if scroll-step were set to 1. See the code.
13319
13320 CURSOR_MOVEMENT_NEED_LARGER_MATRICES if we need larger matrices, in
13321 which case we have to abort this redisplay, and adjust matrices
13322 first. */
13323
13324 enum
13325 {
13326 CURSOR_MOVEMENT_SUCCESS,
13327 CURSOR_MOVEMENT_CANNOT_BE_USED,
13328 CURSOR_MOVEMENT_MUST_SCROLL,
13329 CURSOR_MOVEMENT_NEED_LARGER_MATRICES
13330 };
13331
13332 static int
13333 try_cursor_movement (Lisp_Object window, struct text_pos startp, int *scroll_step)
13334 {
13335 struct window *w = XWINDOW (window);
13336 struct frame *f = XFRAME (w->frame);
13337 int rc = CURSOR_MOVEMENT_CANNOT_BE_USED;
13338
13339 #if GLYPH_DEBUG
13340 if (inhibit_try_cursor_movement)
13341 return rc;
13342 #endif
13343
13344 /* Handle case where text has not changed, only point, and it has
13345 not moved off the frame. */
13346 if (/* Point may be in this window. */
13347 PT >= CHARPOS (startp)
13348 /* Selective display hasn't changed. */
13349 && !current_buffer->clip_changed
13350 /* Function force-mode-line-update is used to force a thorough
13351 redisplay. It sets either windows_or_buffers_changed or
13352 update_mode_lines. So don't take a shortcut here for these
13353 cases. */
13354 && !update_mode_lines
13355 && !windows_or_buffers_changed
13356 && !cursor_type_changed
13357 /* Can't use this case if highlighting a region. When a
13358 region exists, cursor movement has to do more than just
13359 set the cursor. */
13360 && !(!NILP (Vtransient_mark_mode)
13361 && !NILP (BVAR (current_buffer, mark_active)))
13362 && NILP (w->region_showing)
13363 && NILP (Vshow_trailing_whitespace)
13364 /* Right after splitting windows, last_point may be nil. */
13365 && INTEGERP (w->last_point)
13366 /* This code is not used for mini-buffer for the sake of the case
13367 of redisplaying to replace an echo area message; since in
13368 that case the mini-buffer contents per se are usually
13369 unchanged. This code is of no real use in the mini-buffer
13370 since the handling of this_line_start_pos, etc., in redisplay
13371 handles the same cases. */
13372 && !EQ (window, minibuf_window)
13373 /* When splitting windows or for new windows, it happens that
13374 redisplay is called with a nil window_end_vpos or one being
13375 larger than the window. This should really be fixed in
13376 window.c. I don't have this on my list, now, so we do
13377 approximately the same as the old redisplay code. --gerd. */
13378 && INTEGERP (w->window_end_vpos)
13379 && XFASTINT (w->window_end_vpos) < w->current_matrix->nrows
13380 && (FRAME_WINDOW_P (f)
13381 || !overlay_arrow_in_current_buffer_p ()))
13382 {
13383 int this_scroll_margin, top_scroll_margin;
13384 struct glyph_row *row = NULL;
13385
13386 #if GLYPH_DEBUG
13387 debug_method_add (w, "cursor movement");
13388 #endif
13389
13390 /* Scroll if point within this distance from the top or bottom
13391 of the window. This is a pixel value. */
13392 if (scroll_margin > 0)
13393 {
13394 this_scroll_margin = min (scroll_margin, WINDOW_TOTAL_LINES (w) / 4);
13395 this_scroll_margin *= FRAME_LINE_HEIGHT (f);
13396 }
13397 else
13398 this_scroll_margin = 0;
13399
13400 top_scroll_margin = this_scroll_margin;
13401 if (WINDOW_WANTS_HEADER_LINE_P (w))
13402 top_scroll_margin += CURRENT_HEADER_LINE_HEIGHT (w);
13403
13404 /* Start with the row the cursor was displayed during the last
13405 not paused redisplay. Give up if that row is not valid. */
13406 if (w->last_cursor.vpos < 0
13407 || w->last_cursor.vpos >= w->current_matrix->nrows)
13408 rc = CURSOR_MOVEMENT_MUST_SCROLL;
13409 else
13410 {
13411 row = MATRIX_ROW (w->current_matrix, w->last_cursor.vpos);
13412 if (row->mode_line_p)
13413 ++row;
13414 if (!row->enabled_p)
13415 rc = CURSOR_MOVEMENT_MUST_SCROLL;
13416 }
13417
13418 if (rc == CURSOR_MOVEMENT_CANNOT_BE_USED)
13419 {
13420 int scroll_p = 0, must_scroll = 0;
13421 int last_y = window_text_bottom_y (w) - this_scroll_margin;
13422
13423 if (PT > XFASTINT (w->last_point))
13424 {
13425 /* Point has moved forward. */
13426 while (MATRIX_ROW_END_CHARPOS (row) < PT
13427 && MATRIX_ROW_BOTTOM_Y (row) < last_y)
13428 {
13429 xassert (row->enabled_p);
13430 ++row;
13431 }
13432
13433 /* If the end position of a row equals the start
13434 position of the next row, and PT is at that position,
13435 we would rather display cursor in the next line. */
13436 while (MATRIX_ROW_BOTTOM_Y (row) < last_y
13437 && MATRIX_ROW_END_CHARPOS (row) == PT
13438 && row < w->current_matrix->rows
13439 + w->current_matrix->nrows - 1
13440 && MATRIX_ROW_START_CHARPOS (row+1) == PT
13441 && !cursor_row_p (w, row))
13442 ++row;
13443
13444 /* If within the scroll margin, scroll. Note that
13445 MATRIX_ROW_BOTTOM_Y gives the pixel position at which
13446 the next line would be drawn, and that
13447 this_scroll_margin can be zero. */
13448 if (MATRIX_ROW_BOTTOM_Y (row) > last_y
13449 || PT > MATRIX_ROW_END_CHARPOS (row)
13450 /* Line is completely visible last line in window
13451 and PT is to be set in the next line. */
13452 || (MATRIX_ROW_BOTTOM_Y (row) == last_y
13453 && PT == MATRIX_ROW_END_CHARPOS (row)
13454 && !row->ends_at_zv_p
13455 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)))
13456 scroll_p = 1;
13457 }
13458 else if (PT < XFASTINT (w->last_point))
13459 {
13460 /* Cursor has to be moved backward. Note that PT >=
13461 CHARPOS (startp) because of the outer if-statement. */
13462 while (!row->mode_line_p
13463 && (MATRIX_ROW_START_CHARPOS (row) > PT
13464 || (MATRIX_ROW_START_CHARPOS (row) == PT
13465 && (MATRIX_ROW_STARTS_IN_MIDDLE_OF_CHAR_P (row)
13466 || (/* STARTS_IN_MIDDLE_OF_STRING_P (row) */
13467 row > w->current_matrix->rows
13468 && (row-1)->ends_in_newline_from_string_p))))
13469 && (row->y > top_scroll_margin
13470 || CHARPOS (startp) == BEGV))
13471 {
13472 xassert (row->enabled_p);
13473 --row;
13474 }
13475
13476 /* Consider the following case: Window starts at BEGV,
13477 there is invisible, intangible text at BEGV, so that
13478 display starts at some point START > BEGV. It can
13479 happen that we are called with PT somewhere between
13480 BEGV and START. Try to handle that case. */
13481 if (row < w->current_matrix->rows
13482 || row->mode_line_p)
13483 {
13484 row = w->current_matrix->rows;
13485 if (row->mode_line_p)
13486 ++row;
13487 }
13488
13489 /* Due to newlines in overlay strings, we may have to
13490 skip forward over overlay strings. */
13491 while (MATRIX_ROW_BOTTOM_Y (row) < last_y
13492 && MATRIX_ROW_END_CHARPOS (row) == PT
13493 && !cursor_row_p (w, row))
13494 ++row;
13495
13496 /* If within the scroll margin, scroll. */
13497 if (row->y < top_scroll_margin
13498 && CHARPOS (startp) != BEGV)
13499 scroll_p = 1;
13500 }
13501 else
13502 {
13503 /* Cursor did not move. So don't scroll even if cursor line
13504 is partially visible, as it was so before. */
13505 rc = CURSOR_MOVEMENT_SUCCESS;
13506 }
13507
13508 if (PT < MATRIX_ROW_START_CHARPOS (row)
13509 || PT > MATRIX_ROW_END_CHARPOS (row))
13510 {
13511 /* if PT is not in the glyph row, give up. */
13512 rc = CURSOR_MOVEMENT_MUST_SCROLL;
13513 must_scroll = 1;
13514 }
13515 else if (rc != CURSOR_MOVEMENT_SUCCESS
13516 && !NILP (BVAR (XBUFFER (w->buffer), bidi_display_reordering)))
13517 {
13518 /* If rows are bidi-reordered and point moved, back up
13519 until we find a row that does not belong to a
13520 continuation line. This is because we must consider
13521 all rows of a continued line as candidates for the
13522 new cursor positioning, since row start and end
13523 positions change non-linearly with vertical position
13524 in such rows. */
13525 /* FIXME: Revisit this when glyph ``spilling'' in
13526 continuation lines' rows is implemented for
13527 bidi-reordered rows. */
13528 while (MATRIX_ROW_CONTINUATION_LINE_P (row))
13529 {
13530 xassert (row->enabled_p);
13531 --row;
13532 /* If we hit the beginning of the displayed portion
13533 without finding the first row of a continued
13534 line, give up. */
13535 if (row <= w->current_matrix->rows)
13536 {
13537 rc = CURSOR_MOVEMENT_MUST_SCROLL;
13538 break;
13539 }
13540
13541 }
13542 }
13543 if (must_scroll)
13544 ;
13545 else if (rc != CURSOR_MOVEMENT_SUCCESS
13546 && MATRIX_ROW_PARTIALLY_VISIBLE_P (w, row)
13547 && make_cursor_line_fully_visible_p)
13548 {
13549 if (PT == MATRIX_ROW_END_CHARPOS (row)
13550 && !row->ends_at_zv_p
13551 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row))
13552 rc = CURSOR_MOVEMENT_MUST_SCROLL;
13553 else if (row->height > window_box_height (w))
13554 {
13555 /* If we end up in a partially visible line, let's
13556 make it fully visible, except when it's taller
13557 than the window, in which case we can't do much
13558 about it. */
13559 *scroll_step = 1;
13560 rc = CURSOR_MOVEMENT_MUST_SCROLL;
13561 }
13562 else
13563 {
13564 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
13565 if (!cursor_row_fully_visible_p (w, 0, 1))
13566 rc = CURSOR_MOVEMENT_MUST_SCROLL;
13567 else
13568 rc = CURSOR_MOVEMENT_SUCCESS;
13569 }
13570 }
13571 else if (scroll_p)
13572 rc = CURSOR_MOVEMENT_MUST_SCROLL;
13573 else if (rc != CURSOR_MOVEMENT_SUCCESS
13574 && !NILP (BVAR (XBUFFER (w->buffer), bidi_display_reordering)))
13575 {
13576 /* With bidi-reordered rows, there could be more than
13577 one candidate row whose start and end positions
13578 occlude point. We need to let set_cursor_from_row
13579 find the best candidate. */
13580 /* FIXME: Revisit this when glyph ``spilling'' in
13581 continuation lines' rows is implemented for
13582 bidi-reordered rows. */
13583 int rv = 0;
13584
13585 do
13586 {
13587 if (MATRIX_ROW_START_CHARPOS (row) <= PT
13588 && PT <= MATRIX_ROW_END_CHARPOS (row)
13589 && cursor_row_p (w, row))
13590 rv |= set_cursor_from_row (w, row, w->current_matrix,
13591 0, 0, 0, 0);
13592 /* As soon as we've found the first suitable row
13593 whose ends_at_zv_p flag is set, we are done. */
13594 if (rv
13595 && MATRIX_ROW (w->current_matrix, w->cursor.vpos)->ends_at_zv_p)
13596 {
13597 rc = CURSOR_MOVEMENT_SUCCESS;
13598 break;
13599 }
13600 ++row;
13601 }
13602 while ((MATRIX_ROW_CONTINUATION_LINE_P (row)
13603 && MATRIX_ROW_BOTTOM_Y (row) <= last_y)
13604 || (MATRIX_ROW_START_CHARPOS (row) == PT
13605 && MATRIX_ROW_BOTTOM_Y (row) < last_y));
13606 /* If we didn't find any candidate rows, or exited the
13607 loop before all the candidates were examined, signal
13608 to the caller that this method failed. */
13609 if (rc != CURSOR_MOVEMENT_SUCCESS
13610 && (!rv || MATRIX_ROW_CONTINUATION_LINE_P (row)))
13611 rc = CURSOR_MOVEMENT_MUST_SCROLL;
13612 else if (rv)
13613 rc = CURSOR_MOVEMENT_SUCCESS;
13614 }
13615 else
13616 {
13617 do
13618 {
13619 if (set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0))
13620 {
13621 rc = CURSOR_MOVEMENT_SUCCESS;
13622 break;
13623 }
13624 ++row;
13625 }
13626 while (MATRIX_ROW_BOTTOM_Y (row) < last_y
13627 && MATRIX_ROW_START_CHARPOS (row) == PT
13628 && cursor_row_p (w, row));
13629 }
13630 }
13631 }
13632
13633 return rc;
13634 }
13635
13636 void
13637 set_vertical_scroll_bar (struct window *w)
13638 {
13639 EMACS_INT start, end, whole;
13640
13641 /* Calculate the start and end positions for the current window.
13642 At some point, it would be nice to choose between scrollbars
13643 which reflect the whole buffer size, with special markers
13644 indicating narrowing, and scrollbars which reflect only the
13645 visible region.
13646
13647 Note that mini-buffers sometimes aren't displaying any text. */
13648 if (!MINI_WINDOW_P (w)
13649 || (w == XWINDOW (minibuf_window)
13650 && NILP (echo_area_buffer[0])))
13651 {
13652 struct buffer *buf = XBUFFER (w->buffer);
13653 whole = BUF_ZV (buf) - BUF_BEGV (buf);
13654 start = marker_position (w->start) - BUF_BEGV (buf);
13655 /* I don't think this is guaranteed to be right. For the
13656 moment, we'll pretend it is. */
13657 end = BUF_Z (buf) - XFASTINT (w->window_end_pos) - BUF_BEGV (buf);
13658
13659 if (end < start)
13660 end = start;
13661 if (whole < (end - start))
13662 whole = end - start;
13663 }
13664 else
13665 start = end = whole = 0;
13666
13667 /* Indicate what this scroll bar ought to be displaying now. */
13668 if (FRAME_TERMINAL (XFRAME (w->frame))->set_vertical_scroll_bar_hook)
13669 (*FRAME_TERMINAL (XFRAME (w->frame))->set_vertical_scroll_bar_hook)
13670 (w, end - start, whole, start);
13671 }
13672
13673
13674 /* Redisplay leaf window WINDOW. JUST_THIS_ONE_P non-zero means only
13675 selected_window is redisplayed.
13676
13677 We can return without actually redisplaying the window if
13678 fonts_changed_p is nonzero. In that case, redisplay_internal will
13679 retry. */
13680
13681 static void
13682 redisplay_window (Lisp_Object window, int just_this_one_p)
13683 {
13684 struct window *w = XWINDOW (window);
13685 struct frame *f = XFRAME (w->frame);
13686 struct buffer *buffer = XBUFFER (w->buffer);
13687 struct buffer *old = current_buffer;
13688 struct text_pos lpoint, opoint, startp;
13689 int update_mode_line;
13690 int tem;
13691 struct it it;
13692 /* Record it now because it's overwritten. */
13693 int current_matrix_up_to_date_p = 0;
13694 int used_current_matrix_p = 0;
13695 /* This is less strict than current_matrix_up_to_date_p.
13696 It indictes that the buffer contents and narrowing are unchanged. */
13697 int buffer_unchanged_p = 0;
13698 int temp_scroll_step = 0;
13699 int count = SPECPDL_INDEX ();
13700 int rc;
13701 int centering_position = -1;
13702 int last_line_misfit = 0;
13703 EMACS_INT beg_unchanged, end_unchanged;
13704
13705 SET_TEXT_POS (lpoint, PT, PT_BYTE);
13706 opoint = lpoint;
13707
13708 /* W must be a leaf window here. */
13709 xassert (!NILP (w->buffer));
13710 #if GLYPH_DEBUG
13711 *w->desired_matrix->method = 0;
13712 #endif
13713
13714 restart:
13715 reconsider_clip_changes (w, buffer);
13716
13717 /* Has the mode line to be updated? */
13718 update_mode_line = (!NILP (w->update_mode_line)
13719 || update_mode_lines
13720 || buffer->clip_changed
13721 || buffer->prevent_redisplay_optimizations_p);
13722
13723 if (MINI_WINDOW_P (w))
13724 {
13725 if (w == XWINDOW (echo_area_window)
13726 && !NILP (echo_area_buffer[0]))
13727 {
13728 if (update_mode_line)
13729 /* We may have to update a tty frame's menu bar or a
13730 tool-bar. Example `M-x C-h C-h C-g'. */
13731 goto finish_menu_bars;
13732 else
13733 /* We've already displayed the echo area glyphs in this window. */
13734 goto finish_scroll_bars;
13735 }
13736 else if ((w != XWINDOW (minibuf_window)
13737 || minibuf_level == 0)
13738 /* When buffer is nonempty, redisplay window normally. */
13739 && BUF_Z (XBUFFER (w->buffer)) == BUF_BEG (XBUFFER (w->buffer))
13740 /* Quail displays non-mini buffers in minibuffer window.
13741 In that case, redisplay the window normally. */
13742 && !NILP (Fmemq (w->buffer, Vminibuffer_list)))
13743 {
13744 /* W is a mini-buffer window, but it's not active, so clear
13745 it. */
13746 int yb = window_text_bottom_y (w);
13747 struct glyph_row *row;
13748 int y;
13749
13750 for (y = 0, row = w->desired_matrix->rows;
13751 y < yb;
13752 y += row->height, ++row)
13753 blank_row (w, row, y);
13754 goto finish_scroll_bars;
13755 }
13756
13757 clear_glyph_matrix (w->desired_matrix);
13758 }
13759
13760 /* Otherwise set up data on this window; select its buffer and point
13761 value. */
13762 /* Really select the buffer, for the sake of buffer-local
13763 variables. */
13764 set_buffer_internal_1 (XBUFFER (w->buffer));
13765
13766 current_matrix_up_to_date_p
13767 = (!NILP (w->window_end_valid)
13768 && !current_buffer->clip_changed
13769 && !current_buffer->prevent_redisplay_optimizations_p
13770 && XFASTINT (w->last_modified) >= MODIFF
13771 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF);
13772
13773 /* Run the window-bottom-change-functions
13774 if it is possible that the text on the screen has changed
13775 (either due to modification of the text, or any other reason). */
13776 if (!current_matrix_up_to_date_p
13777 && !NILP (Vwindow_text_change_functions))
13778 {
13779 safe_run_hooks (Qwindow_text_change_functions);
13780 goto restart;
13781 }
13782
13783 beg_unchanged = BEG_UNCHANGED;
13784 end_unchanged = END_UNCHANGED;
13785
13786 SET_TEXT_POS (opoint, PT, PT_BYTE);
13787
13788 specbind (Qinhibit_point_motion_hooks, Qt);
13789
13790 buffer_unchanged_p
13791 = (!NILP (w->window_end_valid)
13792 && !current_buffer->clip_changed
13793 && XFASTINT (w->last_modified) >= MODIFF
13794 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF);
13795
13796 /* When windows_or_buffers_changed is non-zero, we can't rely on
13797 the window end being valid, so set it to nil there. */
13798 if (windows_or_buffers_changed)
13799 {
13800 /* If window starts on a continuation line, maybe adjust the
13801 window start in case the window's width changed. */
13802 if (XMARKER (w->start)->buffer == current_buffer)
13803 compute_window_start_on_continuation_line (w);
13804
13805 w->window_end_valid = Qnil;
13806 }
13807
13808 /* Some sanity checks. */
13809 CHECK_WINDOW_END (w);
13810 if (Z == Z_BYTE && CHARPOS (opoint) != BYTEPOS (opoint))
13811 abort ();
13812 if (BYTEPOS (opoint) < CHARPOS (opoint))
13813 abort ();
13814
13815 /* If %c is in mode line, update it if needed. */
13816 if (!NILP (w->column_number_displayed)
13817 /* This alternative quickly identifies a common case
13818 where no change is needed. */
13819 && !(PT == XFASTINT (w->last_point)
13820 && XFASTINT (w->last_modified) >= MODIFF
13821 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF)
13822 && (XFASTINT (w->column_number_displayed) != current_column ()))
13823 update_mode_line = 1;
13824
13825 /* Count number of windows showing the selected buffer. An indirect
13826 buffer counts as its base buffer. */
13827 if (!just_this_one_p)
13828 {
13829 struct buffer *current_base, *window_base;
13830 current_base = current_buffer;
13831 window_base = XBUFFER (XWINDOW (selected_window)->buffer);
13832 if (current_base->base_buffer)
13833 current_base = current_base->base_buffer;
13834 if (window_base->base_buffer)
13835 window_base = window_base->base_buffer;
13836 if (current_base == window_base)
13837 buffer_shared++;
13838 }
13839
13840 /* Point refers normally to the selected window. For any other
13841 window, set up appropriate value. */
13842 if (!EQ (window, selected_window))
13843 {
13844 EMACS_INT new_pt = XMARKER (w->pointm)->charpos;
13845 EMACS_INT new_pt_byte = marker_byte_position (w->pointm);
13846 if (new_pt < BEGV)
13847 {
13848 new_pt = BEGV;
13849 new_pt_byte = BEGV_BYTE;
13850 set_marker_both (w->pointm, Qnil, BEGV, BEGV_BYTE);
13851 }
13852 else if (new_pt > (ZV - 1))
13853 {
13854 new_pt = ZV;
13855 new_pt_byte = ZV_BYTE;
13856 set_marker_both (w->pointm, Qnil, ZV, ZV_BYTE);
13857 }
13858
13859 /* We don't use SET_PT so that the point-motion hooks don't run. */
13860 TEMP_SET_PT_BOTH (new_pt, new_pt_byte);
13861 }
13862
13863 /* If any of the character widths specified in the display table
13864 have changed, invalidate the width run cache. It's true that
13865 this may be a bit late to catch such changes, but the rest of
13866 redisplay goes (non-fatally) haywire when the display table is
13867 changed, so why should we worry about doing any better? */
13868 if (current_buffer->width_run_cache)
13869 {
13870 struct Lisp_Char_Table *disptab = buffer_display_table ();
13871
13872 if (! disptab_matches_widthtab (disptab,
13873 XVECTOR (BVAR (current_buffer, width_table))))
13874 {
13875 invalidate_region_cache (current_buffer,
13876 current_buffer->width_run_cache,
13877 BEG, Z);
13878 recompute_width_table (current_buffer, disptab);
13879 }
13880 }
13881
13882 /* If window-start is screwed up, choose a new one. */
13883 if (XMARKER (w->start)->buffer != current_buffer)
13884 goto recenter;
13885
13886 SET_TEXT_POS_FROM_MARKER (startp, w->start);
13887
13888 /* If someone specified a new starting point but did not insist,
13889 check whether it can be used. */
13890 if (!NILP (w->optional_new_start)
13891 && CHARPOS (startp) >= BEGV
13892 && CHARPOS (startp) <= ZV)
13893 {
13894 w->optional_new_start = Qnil;
13895 start_display (&it, w, startp);
13896 move_it_to (&it, PT, 0, it.last_visible_y, -1,
13897 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y);
13898 if (IT_CHARPOS (it) == PT)
13899 w->force_start = Qt;
13900 /* IT may overshoot PT if text at PT is invisible. */
13901 else if (IT_CHARPOS (it) > PT && CHARPOS (startp) <= PT)
13902 w->force_start = Qt;
13903 }
13904
13905 force_start:
13906
13907 /* Handle case where place to start displaying has been specified,
13908 unless the specified location is outside the accessible range. */
13909 if (!NILP (w->force_start)
13910 || w->frozen_window_start_p)
13911 {
13912 /* We set this later on if we have to adjust point. */
13913 int new_vpos = -1;
13914
13915 w->force_start = Qnil;
13916 w->vscroll = 0;
13917 w->window_end_valid = Qnil;
13918
13919 /* Forget any recorded base line for line number display. */
13920 if (!buffer_unchanged_p)
13921 w->base_line_number = Qnil;
13922
13923 /* Redisplay the mode line. Select the buffer properly for that.
13924 Also, run the hook window-scroll-functions
13925 because we have scrolled. */
13926 /* Note, we do this after clearing force_start because
13927 if there's an error, it is better to forget about force_start
13928 than to get into an infinite loop calling the hook functions
13929 and having them get more errors. */
13930 if (!update_mode_line
13931 || ! NILP (Vwindow_scroll_functions))
13932 {
13933 update_mode_line = 1;
13934 w->update_mode_line = Qt;
13935 startp = run_window_scroll_functions (window, startp);
13936 }
13937
13938 w->last_modified = make_number (0);
13939 w->last_overlay_modified = make_number (0);
13940 if (CHARPOS (startp) < BEGV)
13941 SET_TEXT_POS (startp, BEGV, BEGV_BYTE);
13942 else if (CHARPOS (startp) > ZV)
13943 SET_TEXT_POS (startp, ZV, ZV_BYTE);
13944
13945 /* Redisplay, then check if cursor has been set during the
13946 redisplay. Give up if new fonts were loaded. */
13947 /* We used to issue a CHECK_MARGINS argument to try_window here,
13948 but this causes scrolling to fail when point begins inside
13949 the scroll margin (bug#148) -- cyd */
13950 if (!try_window (window, startp, 0))
13951 {
13952 w->force_start = Qt;
13953 clear_glyph_matrix (w->desired_matrix);
13954 goto need_larger_matrices;
13955 }
13956
13957 if (w->cursor.vpos < 0 && !w->frozen_window_start_p)
13958 {
13959 /* If point does not appear, try to move point so it does
13960 appear. The desired matrix has been built above, so we
13961 can use it here. */
13962 new_vpos = window_box_height (w) / 2;
13963 }
13964
13965 if (!cursor_row_fully_visible_p (w, 0, 0))
13966 {
13967 /* Point does appear, but on a line partly visible at end of window.
13968 Move it back to a fully-visible line. */
13969 new_vpos = window_box_height (w);
13970 }
13971
13972 /* If we need to move point for either of the above reasons,
13973 now actually do it. */
13974 if (new_vpos >= 0)
13975 {
13976 struct glyph_row *row;
13977
13978 row = MATRIX_FIRST_TEXT_ROW (w->desired_matrix);
13979 while (MATRIX_ROW_BOTTOM_Y (row) < new_vpos)
13980 ++row;
13981
13982 TEMP_SET_PT_BOTH (MATRIX_ROW_START_CHARPOS (row),
13983 MATRIX_ROW_START_BYTEPOS (row));
13984
13985 if (w != XWINDOW (selected_window))
13986 set_marker_both (w->pointm, Qnil, PT, PT_BYTE);
13987 else if (current_buffer == old)
13988 SET_TEXT_POS (lpoint, PT, PT_BYTE);
13989
13990 set_cursor_from_row (w, row, w->desired_matrix, 0, 0, 0, 0);
13991
13992 /* If we are highlighting the region, then we just changed
13993 the region, so redisplay to show it. */
13994 if (!NILP (Vtransient_mark_mode)
13995 && !NILP (BVAR (current_buffer, mark_active)))
13996 {
13997 clear_glyph_matrix (w->desired_matrix);
13998 if (!try_window (window, startp, 0))
13999 goto need_larger_matrices;
14000 }
14001 }
14002
14003 #if GLYPH_DEBUG
14004 debug_method_add (w, "forced window start");
14005 #endif
14006 goto done;
14007 }
14008
14009 /* Handle case where text has not changed, only point, and it has
14010 not moved off the frame, and we are not retrying after hscroll.
14011 (current_matrix_up_to_date_p is nonzero when retrying.) */
14012 if (current_matrix_up_to_date_p
14013 && (rc = try_cursor_movement (window, startp, &temp_scroll_step),
14014 rc != CURSOR_MOVEMENT_CANNOT_BE_USED))
14015 {
14016 switch (rc)
14017 {
14018 case CURSOR_MOVEMENT_SUCCESS:
14019 used_current_matrix_p = 1;
14020 goto done;
14021
14022 case CURSOR_MOVEMENT_MUST_SCROLL:
14023 goto try_to_scroll;
14024
14025 default:
14026 abort ();
14027 }
14028 }
14029 /* If current starting point was originally the beginning of a line
14030 but no longer is, find a new starting point. */
14031 else if (!NILP (w->start_at_line_beg)
14032 && !(CHARPOS (startp) <= BEGV
14033 || FETCH_BYTE (BYTEPOS (startp) - 1) == '\n'))
14034 {
14035 #if GLYPH_DEBUG
14036 debug_method_add (w, "recenter 1");
14037 #endif
14038 goto recenter;
14039 }
14040
14041 /* Try scrolling with try_window_id. Value is > 0 if update has
14042 been done, it is -1 if we know that the same window start will
14043 not work. It is 0 if unsuccessful for some other reason. */
14044 else if ((tem = try_window_id (w)) != 0)
14045 {
14046 #if GLYPH_DEBUG
14047 debug_method_add (w, "try_window_id %d", tem);
14048 #endif
14049
14050 if (fonts_changed_p)
14051 goto need_larger_matrices;
14052 if (tem > 0)
14053 goto done;
14054
14055 /* Otherwise try_window_id has returned -1 which means that we
14056 don't want the alternative below this comment to execute. */
14057 }
14058 else if (CHARPOS (startp) >= BEGV
14059 && CHARPOS (startp) <= ZV
14060 && PT >= CHARPOS (startp)
14061 && (CHARPOS (startp) < ZV
14062 /* Avoid starting at end of buffer. */
14063 || CHARPOS (startp) == BEGV
14064 || (XFASTINT (w->last_modified) >= MODIFF
14065 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF)))
14066 {
14067
14068 /* If first window line is a continuation line, and window start
14069 is inside the modified region, but the first change is before
14070 current window start, we must select a new window start.
14071
14072 However, if this is the result of a down-mouse event (e.g. by
14073 extending the mouse-drag-overlay), we don't want to select a
14074 new window start, since that would change the position under
14075 the mouse, resulting in an unwanted mouse-movement rather
14076 than a simple mouse-click. */
14077 if (NILP (w->start_at_line_beg)
14078 && NILP (do_mouse_tracking)
14079 && CHARPOS (startp) > BEGV
14080 && CHARPOS (startp) > BEG + beg_unchanged
14081 && CHARPOS (startp) <= Z - end_unchanged
14082 /* Even if w->start_at_line_beg is nil, a new window may
14083 start at a line_beg, since that's how set_buffer_window
14084 sets it. So, we need to check the return value of
14085 compute_window_start_on_continuation_line. (See also
14086 bug#197). */
14087 && XMARKER (w->start)->buffer == current_buffer
14088 && compute_window_start_on_continuation_line (w))
14089 {
14090 w->force_start = Qt;
14091 SET_TEXT_POS_FROM_MARKER (startp, w->start);
14092 goto force_start;
14093 }
14094
14095 #if GLYPH_DEBUG
14096 debug_method_add (w, "same window start");
14097 #endif
14098
14099 /* Try to redisplay starting at same place as before.
14100 If point has not moved off frame, accept the results. */
14101 if (!current_matrix_up_to_date_p
14102 /* Don't use try_window_reusing_current_matrix in this case
14103 because a window scroll function can have changed the
14104 buffer. */
14105 || !NILP (Vwindow_scroll_functions)
14106 || MINI_WINDOW_P (w)
14107 || !(used_current_matrix_p
14108 = try_window_reusing_current_matrix (w)))
14109 {
14110 IF_DEBUG (debug_method_add (w, "1"));
14111 if (try_window (window, startp, TRY_WINDOW_CHECK_MARGINS) < 0)
14112 /* -1 means we need to scroll.
14113 0 means we need new matrices, but fonts_changed_p
14114 is set in that case, so we will detect it below. */
14115 goto try_to_scroll;
14116 }
14117
14118 if (fonts_changed_p)
14119 goto need_larger_matrices;
14120
14121 if (w->cursor.vpos >= 0)
14122 {
14123 if (!just_this_one_p
14124 || current_buffer->clip_changed
14125 || BEG_UNCHANGED < CHARPOS (startp))
14126 /* Forget any recorded base line for line number display. */
14127 w->base_line_number = Qnil;
14128
14129 if (!cursor_row_fully_visible_p (w, 1, 0))
14130 {
14131 clear_glyph_matrix (w->desired_matrix);
14132 last_line_misfit = 1;
14133 }
14134 /* Drop through and scroll. */
14135 else
14136 goto done;
14137 }
14138 else
14139 clear_glyph_matrix (w->desired_matrix);
14140 }
14141
14142 try_to_scroll:
14143
14144 w->last_modified = make_number (0);
14145 w->last_overlay_modified = make_number (0);
14146
14147 /* Redisplay the mode line. Select the buffer properly for that. */
14148 if (!update_mode_line)
14149 {
14150 update_mode_line = 1;
14151 w->update_mode_line = Qt;
14152 }
14153
14154 /* Try to scroll by specified few lines. */
14155 if ((scroll_conservatively
14156 || emacs_scroll_step
14157 || temp_scroll_step
14158 || NUMBERP (BVAR (current_buffer, scroll_up_aggressively))
14159 || NUMBERP (BVAR (current_buffer, scroll_down_aggressively)))
14160 && !current_buffer->clip_changed
14161 && CHARPOS (startp) >= BEGV
14162 && CHARPOS (startp) <= ZV)
14163 {
14164 /* The function returns -1 if new fonts were loaded, 1 if
14165 successful, 0 if not successful. */
14166 int ss = try_scrolling (window, just_this_one_p,
14167 scroll_conservatively,
14168 emacs_scroll_step,
14169 temp_scroll_step, last_line_misfit);
14170 switch (ss)
14171 {
14172 case SCROLLING_SUCCESS:
14173 goto done;
14174
14175 case SCROLLING_NEED_LARGER_MATRICES:
14176 goto need_larger_matrices;
14177
14178 case SCROLLING_FAILED:
14179 break;
14180
14181 default:
14182 abort ();
14183 }
14184 }
14185
14186 /* Finally, just choose place to start which centers point */
14187
14188 recenter:
14189 if (centering_position < 0)
14190 centering_position = window_box_height (w) / 2;
14191
14192 #if GLYPH_DEBUG
14193 debug_method_add (w, "recenter");
14194 #endif
14195
14196 /* w->vscroll = 0; */
14197
14198 /* Forget any previously recorded base line for line number display. */
14199 if (!buffer_unchanged_p)
14200 w->base_line_number = Qnil;
14201
14202 /* Move backward half the height of the window. */
14203 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
14204 it.current_y = it.last_visible_y;
14205 move_it_vertically_backward (&it, centering_position);
14206 xassert (IT_CHARPOS (it) >= BEGV);
14207
14208 /* The function move_it_vertically_backward may move over more
14209 than the specified y-distance. If it->w is small, e.g. a
14210 mini-buffer window, we may end up in front of the window's
14211 display area. Start displaying at the start of the line
14212 containing PT in this case. */
14213 if (it.current_y <= 0)
14214 {
14215 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
14216 move_it_vertically_backward (&it, 0);
14217 it.current_y = 0;
14218 }
14219
14220 it.current_x = it.hpos = 0;
14221
14222 /* Set startp here explicitly in case that helps avoid an infinite loop
14223 in case the window-scroll-functions functions get errors. */
14224 set_marker_both (w->start, Qnil, IT_CHARPOS (it), IT_BYTEPOS (it));
14225
14226 /* Run scroll hooks. */
14227 startp = run_window_scroll_functions (window, it.current.pos);
14228
14229 /* Redisplay the window. */
14230 if (!current_matrix_up_to_date_p
14231 || windows_or_buffers_changed
14232 || cursor_type_changed
14233 /* Don't use try_window_reusing_current_matrix in this case
14234 because it can have changed the buffer. */
14235 || !NILP (Vwindow_scroll_functions)
14236 || !just_this_one_p
14237 || MINI_WINDOW_P (w)
14238 || !(used_current_matrix_p
14239 = try_window_reusing_current_matrix (w)))
14240 try_window (window, startp, 0);
14241
14242 /* If new fonts have been loaded (due to fontsets), give up. We
14243 have to start a new redisplay since we need to re-adjust glyph
14244 matrices. */
14245 if (fonts_changed_p)
14246 goto need_larger_matrices;
14247
14248 /* If cursor did not appear assume that the middle of the window is
14249 in the first line of the window. Do it again with the next line.
14250 (Imagine a window of height 100, displaying two lines of height
14251 60. Moving back 50 from it->last_visible_y will end in the first
14252 line.) */
14253 if (w->cursor.vpos < 0)
14254 {
14255 if (!NILP (w->window_end_valid)
14256 && PT >= Z - XFASTINT (w->window_end_pos))
14257 {
14258 clear_glyph_matrix (w->desired_matrix);
14259 move_it_by_lines (&it, 1, 0);
14260 try_window (window, it.current.pos, 0);
14261 }
14262 else if (PT < IT_CHARPOS (it))
14263 {
14264 clear_glyph_matrix (w->desired_matrix);
14265 move_it_by_lines (&it, -1, 0);
14266 try_window (window, it.current.pos, 0);
14267 }
14268 else
14269 {
14270 /* Not much we can do about it. */
14271 }
14272 }
14273
14274 /* Consider the following case: Window starts at BEGV, there is
14275 invisible, intangible text at BEGV, so that display starts at
14276 some point START > BEGV. It can happen that we are called with
14277 PT somewhere between BEGV and START. Try to handle that case. */
14278 if (w->cursor.vpos < 0)
14279 {
14280 struct glyph_row *row = w->current_matrix->rows;
14281 if (row->mode_line_p)
14282 ++row;
14283 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
14284 }
14285
14286 if (!cursor_row_fully_visible_p (w, 0, 0))
14287 {
14288 /* If vscroll is enabled, disable it and try again. */
14289 if (w->vscroll)
14290 {
14291 w->vscroll = 0;
14292 clear_glyph_matrix (w->desired_matrix);
14293 goto recenter;
14294 }
14295
14296 /* If centering point failed to make the whole line visible,
14297 put point at the top instead. That has to make the whole line
14298 visible, if it can be done. */
14299 if (centering_position == 0)
14300 goto done;
14301
14302 clear_glyph_matrix (w->desired_matrix);
14303 centering_position = 0;
14304 goto recenter;
14305 }
14306
14307 done:
14308
14309 SET_TEXT_POS_FROM_MARKER (startp, w->start);
14310 w->start_at_line_beg = ((CHARPOS (startp) == BEGV
14311 || FETCH_BYTE (BYTEPOS (startp) - 1) == '\n')
14312 ? Qt : Qnil);
14313
14314 /* Display the mode line, if we must. */
14315 if ((update_mode_line
14316 /* If window not full width, must redo its mode line
14317 if (a) the window to its side is being redone and
14318 (b) we do a frame-based redisplay. This is a consequence
14319 of how inverted lines are drawn in frame-based redisplay. */
14320 || (!just_this_one_p
14321 && !FRAME_WINDOW_P (f)
14322 && !WINDOW_FULL_WIDTH_P (w))
14323 /* Line number to display. */
14324 || INTEGERP (w->base_line_pos)
14325 /* Column number is displayed and different from the one displayed. */
14326 || (!NILP (w->column_number_displayed)
14327 && (XFASTINT (w->column_number_displayed) != current_column ())))
14328 /* This means that the window has a mode line. */
14329 && (WINDOW_WANTS_MODELINE_P (w)
14330 || WINDOW_WANTS_HEADER_LINE_P (w)))
14331 {
14332 display_mode_lines (w);
14333
14334 /* If mode line height has changed, arrange for a thorough
14335 immediate redisplay using the correct mode line height. */
14336 if (WINDOW_WANTS_MODELINE_P (w)
14337 && CURRENT_MODE_LINE_HEIGHT (w) != DESIRED_MODE_LINE_HEIGHT (w))
14338 {
14339 fonts_changed_p = 1;
14340 MATRIX_MODE_LINE_ROW (w->current_matrix)->height
14341 = DESIRED_MODE_LINE_HEIGHT (w);
14342 }
14343
14344 /* If header line height has changed, arrange for a thorough
14345 immediate redisplay using the correct header line height. */
14346 if (WINDOW_WANTS_HEADER_LINE_P (w)
14347 && CURRENT_HEADER_LINE_HEIGHT (w) != DESIRED_HEADER_LINE_HEIGHT (w))
14348 {
14349 fonts_changed_p = 1;
14350 MATRIX_HEADER_LINE_ROW (w->current_matrix)->height
14351 = DESIRED_HEADER_LINE_HEIGHT (w);
14352 }
14353
14354 if (fonts_changed_p)
14355 goto need_larger_matrices;
14356 }
14357
14358 if (!line_number_displayed
14359 && !BUFFERP (w->base_line_pos))
14360 {
14361 w->base_line_pos = Qnil;
14362 w->base_line_number = Qnil;
14363 }
14364
14365 finish_menu_bars:
14366
14367 /* When we reach a frame's selected window, redo the frame's menu bar. */
14368 if (update_mode_line
14369 && EQ (FRAME_SELECTED_WINDOW (f), window))
14370 {
14371 int redisplay_menu_p = 0;
14372 int redisplay_tool_bar_p = 0;
14373
14374 if (FRAME_WINDOW_P (f))
14375 {
14376 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
14377 || defined (HAVE_NS) || defined (USE_GTK)
14378 redisplay_menu_p = FRAME_EXTERNAL_MENU_BAR (f);
14379 #else
14380 redisplay_menu_p = FRAME_MENU_BAR_LINES (f) > 0;
14381 #endif
14382 }
14383 else
14384 redisplay_menu_p = FRAME_MENU_BAR_LINES (f) > 0;
14385
14386 if (redisplay_menu_p)
14387 display_menu_bar (w);
14388
14389 #ifdef HAVE_WINDOW_SYSTEM
14390 if (FRAME_WINDOW_P (f))
14391 {
14392 #if defined (USE_GTK) || defined (HAVE_NS)
14393 redisplay_tool_bar_p = FRAME_EXTERNAL_TOOL_BAR (f);
14394 #else
14395 redisplay_tool_bar_p = WINDOWP (f->tool_bar_window)
14396 && (FRAME_TOOL_BAR_LINES (f) > 0
14397 || !NILP (Vauto_resize_tool_bars));
14398 #endif
14399
14400 if (redisplay_tool_bar_p && redisplay_tool_bar (f))
14401 {
14402 ignore_mouse_drag_p = 1;
14403 }
14404 }
14405 #endif
14406 }
14407
14408 #ifdef HAVE_WINDOW_SYSTEM
14409 if (FRAME_WINDOW_P (f)
14410 && update_window_fringes (w, (just_this_one_p
14411 || (!used_current_matrix_p && !overlay_arrow_seen)
14412 || w->pseudo_window_p)))
14413 {
14414 update_begin (f);
14415 BLOCK_INPUT;
14416 if (draw_window_fringes (w, 1))
14417 x_draw_vertical_border (w);
14418 UNBLOCK_INPUT;
14419 update_end (f);
14420 }
14421 #endif /* HAVE_WINDOW_SYSTEM */
14422
14423 /* We go to this label, with fonts_changed_p nonzero,
14424 if it is necessary to try again using larger glyph matrices.
14425 We have to redeem the scroll bar even in this case,
14426 because the loop in redisplay_internal expects that. */
14427 need_larger_matrices:
14428 ;
14429 finish_scroll_bars:
14430
14431 if (WINDOW_HAS_VERTICAL_SCROLL_BAR (w))
14432 {
14433 /* Set the thumb's position and size. */
14434 set_vertical_scroll_bar (w);
14435
14436 /* Note that we actually used the scroll bar attached to this
14437 window, so it shouldn't be deleted at the end of redisplay. */
14438 if (FRAME_TERMINAL (f)->redeem_scroll_bar_hook)
14439 (*FRAME_TERMINAL (f)->redeem_scroll_bar_hook) (w);
14440 }
14441
14442 /* Restore current_buffer and value of point in it. The window
14443 update may have changed the buffer, so first make sure `opoint'
14444 is still valid (Bug#6177). */
14445 if (CHARPOS (opoint) < BEGV)
14446 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
14447 else if (CHARPOS (opoint) > ZV)
14448 TEMP_SET_PT_BOTH (Z, Z_BYTE);
14449 else
14450 TEMP_SET_PT_BOTH (CHARPOS (opoint), BYTEPOS (opoint));
14451
14452 set_buffer_internal_1 (old);
14453 /* Avoid an abort in TEMP_SET_PT_BOTH if the buffer has become
14454 shorter. This can be caused by log truncation in *Messages*. */
14455 if (CHARPOS (lpoint) <= ZV)
14456 TEMP_SET_PT_BOTH (CHARPOS (lpoint), BYTEPOS (lpoint));
14457
14458 unbind_to (count, Qnil);
14459 }
14460
14461
14462 /* Build the complete desired matrix of WINDOW with a window start
14463 buffer position POS.
14464
14465 Value is 1 if successful. It is zero if fonts were loaded during
14466 redisplay which makes re-adjusting glyph matrices necessary, and -1
14467 if point would appear in the scroll margins.
14468 (We check the former only if TRY_WINDOW_IGNORE_FONTS_CHANGE is
14469 unset in FLAGS, and the latter only if TRY_WINDOW_CHECK_MARGINS is
14470 set in FLAGS.) */
14471
14472 int
14473 try_window (Lisp_Object window, struct text_pos pos, int flags)
14474 {
14475 struct window *w = XWINDOW (window);
14476 struct it it;
14477 struct glyph_row *last_text_row = NULL;
14478 struct frame *f = XFRAME (w->frame);
14479
14480 /* Make POS the new window start. */
14481 set_marker_both (w->start, Qnil, CHARPOS (pos), BYTEPOS (pos));
14482
14483 /* Mark cursor position as unknown. No overlay arrow seen. */
14484 w->cursor.vpos = -1;
14485 overlay_arrow_seen = 0;
14486
14487 /* Initialize iterator and info to start at POS. */
14488 start_display (&it, w, pos);
14489
14490 /* Display all lines of W. */
14491 while (it.current_y < it.last_visible_y)
14492 {
14493 if (display_line (&it))
14494 last_text_row = it.glyph_row - 1;
14495 if (fonts_changed_p && !(flags & TRY_WINDOW_IGNORE_FONTS_CHANGE))
14496 return 0;
14497 }
14498
14499 /* Don't let the cursor end in the scroll margins. */
14500 if ((flags & TRY_WINDOW_CHECK_MARGINS)
14501 && !MINI_WINDOW_P (w))
14502 {
14503 int this_scroll_margin;
14504
14505 if (scroll_margin > 0)
14506 {
14507 this_scroll_margin = min (scroll_margin, WINDOW_TOTAL_LINES (w) / 4);
14508 this_scroll_margin *= FRAME_LINE_HEIGHT (f);
14509 }
14510 else
14511 this_scroll_margin = 0;
14512
14513 if ((w->cursor.y >= 0 /* not vscrolled */
14514 && w->cursor.y < this_scroll_margin
14515 && CHARPOS (pos) > BEGV
14516 && IT_CHARPOS (it) < ZV)
14517 /* rms: considering make_cursor_line_fully_visible_p here
14518 seems to give wrong results. We don't want to recenter
14519 when the last line is partly visible, we want to allow
14520 that case to be handled in the usual way. */
14521 || w->cursor.y > it.last_visible_y - this_scroll_margin - 1)
14522 {
14523 w->cursor.vpos = -1;
14524 clear_glyph_matrix (w->desired_matrix);
14525 return -1;
14526 }
14527 }
14528
14529 /* If bottom moved off end of frame, change mode line percentage. */
14530 if (XFASTINT (w->window_end_pos) <= 0
14531 && Z != IT_CHARPOS (it))
14532 w->update_mode_line = Qt;
14533
14534 /* Set window_end_pos to the offset of the last character displayed
14535 on the window from the end of current_buffer. Set
14536 window_end_vpos to its row number. */
14537 if (last_text_row)
14538 {
14539 xassert (MATRIX_ROW_DISPLAYS_TEXT_P (last_text_row));
14540 w->window_end_bytepos
14541 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row);
14542 w->window_end_pos
14543 = make_number (Z - MATRIX_ROW_END_CHARPOS (last_text_row));
14544 w->window_end_vpos
14545 = make_number (MATRIX_ROW_VPOS (last_text_row, w->desired_matrix));
14546 xassert (MATRIX_ROW (w->desired_matrix, XFASTINT (w->window_end_vpos))
14547 ->displays_text_p);
14548 }
14549 else
14550 {
14551 w->window_end_bytepos = Z_BYTE - ZV_BYTE;
14552 w->window_end_pos = make_number (Z - ZV);
14553 w->window_end_vpos = make_number (0);
14554 }
14555
14556 /* But that is not valid info until redisplay finishes. */
14557 w->window_end_valid = Qnil;
14558 return 1;
14559 }
14560
14561
14562 \f
14563 /************************************************************************
14564 Window redisplay reusing current matrix when buffer has not changed
14565 ************************************************************************/
14566
14567 /* Try redisplay of window W showing an unchanged buffer with a
14568 different window start than the last time it was displayed by
14569 reusing its current matrix. Value is non-zero if successful.
14570 W->start is the new window start. */
14571
14572 static int
14573 try_window_reusing_current_matrix (struct window *w)
14574 {
14575 struct frame *f = XFRAME (w->frame);
14576 struct glyph_row *bottom_row;
14577 struct it it;
14578 struct run run;
14579 struct text_pos start, new_start;
14580 int nrows_scrolled, i;
14581 struct glyph_row *last_text_row;
14582 struct glyph_row *last_reused_text_row;
14583 struct glyph_row *start_row;
14584 int start_vpos, min_y, max_y;
14585
14586 #if GLYPH_DEBUG
14587 if (inhibit_try_window_reusing)
14588 return 0;
14589 #endif
14590
14591 if (/* This function doesn't handle terminal frames. */
14592 !FRAME_WINDOW_P (f)
14593 /* Don't try to reuse the display if windows have been split
14594 or such. */
14595 || windows_or_buffers_changed
14596 || cursor_type_changed)
14597 return 0;
14598
14599 /* Can't do this if region may have changed. */
14600 if ((!NILP (Vtransient_mark_mode)
14601 && !NILP (BVAR (current_buffer, mark_active)))
14602 || !NILP (w->region_showing)
14603 || !NILP (Vshow_trailing_whitespace))
14604 return 0;
14605
14606 /* If top-line visibility has changed, give up. */
14607 if (WINDOW_WANTS_HEADER_LINE_P (w)
14608 != MATRIX_HEADER_LINE_ROW (w->current_matrix)->mode_line_p)
14609 return 0;
14610
14611 /* Give up if old or new display is scrolled vertically. We could
14612 make this function handle this, but right now it doesn't. */
14613 start_row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
14614 if (w->vscroll || MATRIX_ROW_PARTIALLY_VISIBLE_P (w, start_row))
14615 return 0;
14616
14617 /* The variable new_start now holds the new window start. The old
14618 start `start' can be determined from the current matrix. */
14619 SET_TEXT_POS_FROM_MARKER (new_start, w->start);
14620 start = start_row->minpos;
14621 start_vpos = MATRIX_ROW_VPOS (start_row, w->current_matrix);
14622
14623 /* Clear the desired matrix for the display below. */
14624 clear_glyph_matrix (w->desired_matrix);
14625
14626 if (CHARPOS (new_start) <= CHARPOS (start))
14627 {
14628 int first_row_y;
14629
14630 /* Don't use this method if the display starts with an ellipsis
14631 displayed for invisible text. It's not easy to handle that case
14632 below, and it's certainly not worth the effort since this is
14633 not a frequent case. */
14634 if (in_ellipses_for_invisible_text_p (&start_row->start, w))
14635 return 0;
14636
14637 IF_DEBUG (debug_method_add (w, "twu1"));
14638
14639 /* Display up to a row that can be reused. The variable
14640 last_text_row is set to the last row displayed that displays
14641 text. Note that it.vpos == 0 if or if not there is a
14642 header-line; it's not the same as the MATRIX_ROW_VPOS! */
14643 start_display (&it, w, new_start);
14644 first_row_y = it.current_y;
14645 w->cursor.vpos = -1;
14646 last_text_row = last_reused_text_row = NULL;
14647
14648 while (it.current_y < it.last_visible_y
14649 && !fonts_changed_p)
14650 {
14651 /* If we have reached into the characters in the START row,
14652 that means the line boundaries have changed. So we
14653 can't start copying with the row START. Maybe it will
14654 work to start copying with the following row. */
14655 while (IT_CHARPOS (it) > CHARPOS (start))
14656 {
14657 /* Advance to the next row as the "start". */
14658 start_row++;
14659 start = start_row->minpos;
14660 /* If there are no more rows to try, or just one, give up. */
14661 if (start_row == MATRIX_MODE_LINE_ROW (w->current_matrix) - 1
14662 || w->vscroll || MATRIX_ROW_PARTIALLY_VISIBLE_P (w, start_row)
14663 || CHARPOS (start) == ZV)
14664 {
14665 clear_glyph_matrix (w->desired_matrix);
14666 return 0;
14667 }
14668
14669 start_vpos = MATRIX_ROW_VPOS (start_row, w->current_matrix);
14670 }
14671 /* If we have reached alignment,
14672 we can copy the rest of the rows. */
14673 if (IT_CHARPOS (it) == CHARPOS (start))
14674 break;
14675
14676 if (display_line (&it))
14677 last_text_row = it.glyph_row - 1;
14678 }
14679
14680 /* A value of current_y < last_visible_y means that we stopped
14681 at the previous window start, which in turn means that we
14682 have at least one reusable row. */
14683 if (it.current_y < it.last_visible_y)
14684 {
14685 struct glyph_row *row;
14686
14687 /* IT.vpos always starts from 0; it counts text lines. */
14688 nrows_scrolled = it.vpos - (start_row - MATRIX_FIRST_TEXT_ROW (w->current_matrix));
14689
14690 /* Find PT if not already found in the lines displayed. */
14691 if (w->cursor.vpos < 0)
14692 {
14693 int dy = it.current_y - start_row->y;
14694
14695 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
14696 row = row_containing_pos (w, PT, row, NULL, dy);
14697 if (row)
14698 set_cursor_from_row (w, row, w->current_matrix, 0, 0,
14699 dy, nrows_scrolled);
14700 else
14701 {
14702 clear_glyph_matrix (w->desired_matrix);
14703 return 0;
14704 }
14705 }
14706
14707 /* Scroll the display. Do it before the current matrix is
14708 changed. The problem here is that update has not yet
14709 run, i.e. part of the current matrix is not up to date.
14710 scroll_run_hook will clear the cursor, and use the
14711 current matrix to get the height of the row the cursor is
14712 in. */
14713 run.current_y = start_row->y;
14714 run.desired_y = it.current_y;
14715 run.height = it.last_visible_y - it.current_y;
14716
14717 if (run.height > 0 && run.current_y != run.desired_y)
14718 {
14719 update_begin (f);
14720 FRAME_RIF (f)->update_window_begin_hook (w);
14721 FRAME_RIF (f)->clear_window_mouse_face (w);
14722 FRAME_RIF (f)->scroll_run_hook (w, &run);
14723 FRAME_RIF (f)->update_window_end_hook (w, 0, 0);
14724 update_end (f);
14725 }
14726
14727 /* Shift current matrix down by nrows_scrolled lines. */
14728 bottom_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
14729 rotate_matrix (w->current_matrix,
14730 start_vpos,
14731 MATRIX_ROW_VPOS (bottom_row, w->current_matrix),
14732 nrows_scrolled);
14733
14734 /* Disable lines that must be updated. */
14735 for (i = 0; i < nrows_scrolled; ++i)
14736 (start_row + i)->enabled_p = 0;
14737
14738 /* Re-compute Y positions. */
14739 min_y = WINDOW_HEADER_LINE_HEIGHT (w);
14740 max_y = it.last_visible_y;
14741 for (row = start_row + nrows_scrolled;
14742 row < bottom_row;
14743 ++row)
14744 {
14745 row->y = it.current_y;
14746 row->visible_height = row->height;
14747
14748 if (row->y < min_y)
14749 row->visible_height -= min_y - row->y;
14750 if (row->y + row->height > max_y)
14751 row->visible_height -= row->y + row->height - max_y;
14752 row->redraw_fringe_bitmaps_p = 1;
14753
14754 it.current_y += row->height;
14755
14756 if (MATRIX_ROW_DISPLAYS_TEXT_P (row))
14757 last_reused_text_row = row;
14758 if (MATRIX_ROW_BOTTOM_Y (row) >= it.last_visible_y)
14759 break;
14760 }
14761
14762 /* Disable lines in the current matrix which are now
14763 below the window. */
14764 for (++row; row < bottom_row; ++row)
14765 row->enabled_p = row->mode_line_p = 0;
14766 }
14767
14768 /* Update window_end_pos etc.; last_reused_text_row is the last
14769 reused row from the current matrix containing text, if any.
14770 The value of last_text_row is the last displayed line
14771 containing text. */
14772 if (last_reused_text_row)
14773 {
14774 w->window_end_bytepos
14775 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_reused_text_row);
14776 w->window_end_pos
14777 = make_number (Z - MATRIX_ROW_END_CHARPOS (last_reused_text_row));
14778 w->window_end_vpos
14779 = make_number (MATRIX_ROW_VPOS (last_reused_text_row,
14780 w->current_matrix));
14781 }
14782 else if (last_text_row)
14783 {
14784 w->window_end_bytepos
14785 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row);
14786 w->window_end_pos
14787 = make_number (Z - MATRIX_ROW_END_CHARPOS (last_text_row));
14788 w->window_end_vpos
14789 = make_number (MATRIX_ROW_VPOS (last_text_row, w->desired_matrix));
14790 }
14791 else
14792 {
14793 /* This window must be completely empty. */
14794 w->window_end_bytepos = Z_BYTE - ZV_BYTE;
14795 w->window_end_pos = make_number (Z - ZV);
14796 w->window_end_vpos = make_number (0);
14797 }
14798 w->window_end_valid = Qnil;
14799
14800 /* Update hint: don't try scrolling again in update_window. */
14801 w->desired_matrix->no_scrolling_p = 1;
14802
14803 #if GLYPH_DEBUG
14804 debug_method_add (w, "try_window_reusing_current_matrix 1");
14805 #endif
14806 return 1;
14807 }
14808 else if (CHARPOS (new_start) > CHARPOS (start))
14809 {
14810 struct glyph_row *pt_row, *row;
14811 struct glyph_row *first_reusable_row;
14812 struct glyph_row *first_row_to_display;
14813 int dy;
14814 int yb = window_text_bottom_y (w);
14815
14816 /* Find the row starting at new_start, if there is one. Don't
14817 reuse a partially visible line at the end. */
14818 first_reusable_row = start_row;
14819 while (first_reusable_row->enabled_p
14820 && MATRIX_ROW_BOTTOM_Y (first_reusable_row) < yb
14821 && (MATRIX_ROW_START_CHARPOS (first_reusable_row)
14822 < CHARPOS (new_start)))
14823 ++first_reusable_row;
14824
14825 /* Give up if there is no row to reuse. */
14826 if (MATRIX_ROW_BOTTOM_Y (first_reusable_row) >= yb
14827 || !first_reusable_row->enabled_p
14828 || (MATRIX_ROW_START_CHARPOS (first_reusable_row)
14829 != CHARPOS (new_start)))
14830 return 0;
14831
14832 /* We can reuse fully visible rows beginning with
14833 first_reusable_row to the end of the window. Set
14834 first_row_to_display to the first row that cannot be reused.
14835 Set pt_row to the row containing point, if there is any. */
14836 pt_row = NULL;
14837 for (first_row_to_display = first_reusable_row;
14838 MATRIX_ROW_BOTTOM_Y (first_row_to_display) < yb;
14839 ++first_row_to_display)
14840 {
14841 if (PT >= MATRIX_ROW_START_CHARPOS (first_row_to_display)
14842 && PT < MATRIX_ROW_END_CHARPOS (first_row_to_display))
14843 pt_row = first_row_to_display;
14844 }
14845
14846 /* Start displaying at the start of first_row_to_display. */
14847 xassert (first_row_to_display->y < yb);
14848 init_to_row_start (&it, w, first_row_to_display);
14849
14850 nrows_scrolled = (MATRIX_ROW_VPOS (first_reusable_row, w->current_matrix)
14851 - start_vpos);
14852 it.vpos = (MATRIX_ROW_VPOS (first_row_to_display, w->current_matrix)
14853 - nrows_scrolled);
14854 it.current_y = (first_row_to_display->y - first_reusable_row->y
14855 + WINDOW_HEADER_LINE_HEIGHT (w));
14856
14857 /* Display lines beginning with first_row_to_display in the
14858 desired matrix. Set last_text_row to the last row displayed
14859 that displays text. */
14860 it.glyph_row = MATRIX_ROW (w->desired_matrix, it.vpos);
14861 if (pt_row == NULL)
14862 w->cursor.vpos = -1;
14863 last_text_row = NULL;
14864 while (it.current_y < it.last_visible_y && !fonts_changed_p)
14865 if (display_line (&it))
14866 last_text_row = it.glyph_row - 1;
14867
14868 /* If point is in a reused row, adjust y and vpos of the cursor
14869 position. */
14870 if (pt_row)
14871 {
14872 w->cursor.vpos -= nrows_scrolled;
14873 w->cursor.y -= first_reusable_row->y - start_row->y;
14874 }
14875
14876 /* Give up if point isn't in a row displayed or reused. (This
14877 also handles the case where w->cursor.vpos < nrows_scrolled
14878 after the calls to display_line, which can happen with scroll
14879 margins. See bug#1295.) */
14880 if (w->cursor.vpos < 0)
14881 {
14882 clear_glyph_matrix (w->desired_matrix);
14883 return 0;
14884 }
14885
14886 /* Scroll the display. */
14887 run.current_y = first_reusable_row->y;
14888 run.desired_y = WINDOW_HEADER_LINE_HEIGHT (w);
14889 run.height = it.last_visible_y - run.current_y;
14890 dy = run.current_y - run.desired_y;
14891
14892 if (run.height)
14893 {
14894 update_begin (f);
14895 FRAME_RIF (f)->update_window_begin_hook (w);
14896 FRAME_RIF (f)->clear_window_mouse_face (w);
14897 FRAME_RIF (f)->scroll_run_hook (w, &run);
14898 FRAME_RIF (f)->update_window_end_hook (w, 0, 0);
14899 update_end (f);
14900 }
14901
14902 /* Adjust Y positions of reused rows. */
14903 bottom_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
14904 min_y = WINDOW_HEADER_LINE_HEIGHT (w);
14905 max_y = it.last_visible_y;
14906 for (row = first_reusable_row; row < first_row_to_display; ++row)
14907 {
14908 row->y -= dy;
14909 row->visible_height = row->height;
14910 if (row->y < min_y)
14911 row->visible_height -= min_y - row->y;
14912 if (row->y + row->height > max_y)
14913 row->visible_height -= row->y + row->height - max_y;
14914 row->redraw_fringe_bitmaps_p = 1;
14915 }
14916
14917 /* Scroll the current matrix. */
14918 xassert (nrows_scrolled > 0);
14919 rotate_matrix (w->current_matrix,
14920 start_vpos,
14921 MATRIX_ROW_VPOS (bottom_row, w->current_matrix),
14922 -nrows_scrolled);
14923
14924 /* Disable rows not reused. */
14925 for (row -= nrows_scrolled; row < bottom_row; ++row)
14926 row->enabled_p = 0;
14927
14928 /* Point may have moved to a different line, so we cannot assume that
14929 the previous cursor position is valid; locate the correct row. */
14930 if (pt_row)
14931 {
14932 for (row = MATRIX_ROW (w->current_matrix, w->cursor.vpos);
14933 row < bottom_row && PT >= MATRIX_ROW_END_CHARPOS (row);
14934 row++)
14935 {
14936 w->cursor.vpos++;
14937 w->cursor.y = row->y;
14938 }
14939 if (row < bottom_row)
14940 {
14941 struct glyph *glyph = row->glyphs[TEXT_AREA] + w->cursor.hpos;
14942 struct glyph *end = glyph + row->used[TEXT_AREA];
14943
14944 /* Can't use this optimization with bidi-reordered glyph
14945 rows, unless cursor is already at point. */
14946 if (!NILP (BVAR (XBUFFER (w->buffer), bidi_display_reordering)))
14947 {
14948 if (!(w->cursor.hpos >= 0
14949 && w->cursor.hpos < row->used[TEXT_AREA]
14950 && BUFFERP (glyph->object)
14951 && glyph->charpos == PT))
14952 return 0;
14953 }
14954 else
14955 for (; glyph < end
14956 && (!BUFFERP (glyph->object)
14957 || glyph->charpos < PT);
14958 glyph++)
14959 {
14960 w->cursor.hpos++;
14961 w->cursor.x += glyph->pixel_width;
14962 }
14963 }
14964 }
14965
14966 /* Adjust window end. A null value of last_text_row means that
14967 the window end is in reused rows which in turn means that
14968 only its vpos can have changed. */
14969 if (last_text_row)
14970 {
14971 w->window_end_bytepos
14972 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row);
14973 w->window_end_pos
14974 = make_number (Z - MATRIX_ROW_END_CHARPOS (last_text_row));
14975 w->window_end_vpos
14976 = make_number (MATRIX_ROW_VPOS (last_text_row, w->desired_matrix));
14977 }
14978 else
14979 {
14980 w->window_end_vpos
14981 = make_number (XFASTINT (w->window_end_vpos) - nrows_scrolled);
14982 }
14983
14984 w->window_end_valid = Qnil;
14985 w->desired_matrix->no_scrolling_p = 1;
14986
14987 #if GLYPH_DEBUG
14988 debug_method_add (w, "try_window_reusing_current_matrix 2");
14989 #endif
14990 return 1;
14991 }
14992
14993 return 0;
14994 }
14995
14996
14997 \f
14998 /************************************************************************
14999 Window redisplay reusing current matrix when buffer has changed
15000 ************************************************************************/
15001
15002 static struct glyph_row *find_last_unchanged_at_beg_row (struct window *);
15003 static struct glyph_row *find_first_unchanged_at_end_row (struct window *,
15004 EMACS_INT *, EMACS_INT *);
15005 static struct glyph_row *
15006 find_last_row_displaying_text (struct glyph_matrix *, struct it *,
15007 struct glyph_row *);
15008
15009
15010 /* Return the last row in MATRIX displaying text. If row START is
15011 non-null, start searching with that row. IT gives the dimensions
15012 of the display. Value is null if matrix is empty; otherwise it is
15013 a pointer to the row found. */
15014
15015 static struct glyph_row *
15016 find_last_row_displaying_text (struct glyph_matrix *matrix, struct it *it,
15017 struct glyph_row *start)
15018 {
15019 struct glyph_row *row, *row_found;
15020
15021 /* Set row_found to the last row in IT->w's current matrix
15022 displaying text. The loop looks funny but think of partially
15023 visible lines. */
15024 row_found = NULL;
15025 row = start ? start : MATRIX_FIRST_TEXT_ROW (matrix);
15026 while (MATRIX_ROW_DISPLAYS_TEXT_P (row))
15027 {
15028 xassert (row->enabled_p);
15029 row_found = row;
15030 if (MATRIX_ROW_BOTTOM_Y (row) >= it->last_visible_y)
15031 break;
15032 ++row;
15033 }
15034
15035 return row_found;
15036 }
15037
15038
15039 /* Return the last row in the current matrix of W that is not affected
15040 by changes at the start of current_buffer that occurred since W's
15041 current matrix was built. Value is null if no such row exists.
15042
15043 BEG_UNCHANGED us the number of characters unchanged at the start of
15044 current_buffer. BEG + BEG_UNCHANGED is the buffer position of the
15045 first changed character in current_buffer. Characters at positions <
15046 BEG + BEG_UNCHANGED are at the same buffer positions as they were
15047 when the current matrix was built. */
15048
15049 static struct glyph_row *
15050 find_last_unchanged_at_beg_row (struct window *w)
15051 {
15052 EMACS_INT first_changed_pos = BEG + BEG_UNCHANGED;
15053 struct glyph_row *row;
15054 struct glyph_row *row_found = NULL;
15055 int yb = window_text_bottom_y (w);
15056
15057 /* Find the last row displaying unchanged text. */
15058 for (row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
15059 MATRIX_ROW_DISPLAYS_TEXT_P (row)
15060 && MATRIX_ROW_START_CHARPOS (row) < first_changed_pos;
15061 ++row)
15062 {
15063 if (/* If row ends before first_changed_pos, it is unchanged,
15064 except in some case. */
15065 MATRIX_ROW_END_CHARPOS (row) <= first_changed_pos
15066 /* When row ends in ZV and we write at ZV it is not
15067 unchanged. */
15068 && !row->ends_at_zv_p
15069 /* When first_changed_pos is the end of a continued line,
15070 row is not unchanged because it may be no longer
15071 continued. */
15072 && !(MATRIX_ROW_END_CHARPOS (row) == first_changed_pos
15073 && (row->continued_p
15074 || row->exact_window_width_line_p)))
15075 row_found = row;
15076
15077 /* Stop if last visible row. */
15078 if (MATRIX_ROW_BOTTOM_Y (row) >= yb)
15079 break;
15080 }
15081
15082 return row_found;
15083 }
15084
15085
15086 /* Find the first glyph row in the current matrix of W that is not
15087 affected by changes at the end of current_buffer since the
15088 time W's current matrix was built.
15089
15090 Return in *DELTA the number of chars by which buffer positions in
15091 unchanged text at the end of current_buffer must be adjusted.
15092
15093 Return in *DELTA_BYTES the corresponding number of bytes.
15094
15095 Value is null if no such row exists, i.e. all rows are affected by
15096 changes. */
15097
15098 static struct glyph_row *
15099 find_first_unchanged_at_end_row (struct window *w,
15100 EMACS_INT *delta, EMACS_INT *delta_bytes)
15101 {
15102 struct glyph_row *row;
15103 struct glyph_row *row_found = NULL;
15104
15105 *delta = *delta_bytes = 0;
15106
15107 /* Display must not have been paused, otherwise the current matrix
15108 is not up to date. */
15109 eassert (!NILP (w->window_end_valid));
15110
15111 /* A value of window_end_pos >= END_UNCHANGED means that the window
15112 end is in the range of changed text. If so, there is no
15113 unchanged row at the end of W's current matrix. */
15114 if (XFASTINT (w->window_end_pos) >= END_UNCHANGED)
15115 return NULL;
15116
15117 /* Set row to the last row in W's current matrix displaying text. */
15118 row = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos));
15119
15120 /* If matrix is entirely empty, no unchanged row exists. */
15121 if (MATRIX_ROW_DISPLAYS_TEXT_P (row))
15122 {
15123 /* The value of row is the last glyph row in the matrix having a
15124 meaningful buffer position in it. The end position of row
15125 corresponds to window_end_pos. This allows us to translate
15126 buffer positions in the current matrix to current buffer
15127 positions for characters not in changed text. */
15128 EMACS_INT Z_old =
15129 MATRIX_ROW_END_CHARPOS (row) + XFASTINT (w->window_end_pos);
15130 EMACS_INT Z_BYTE_old =
15131 MATRIX_ROW_END_BYTEPOS (row) + w->window_end_bytepos;
15132 EMACS_INT last_unchanged_pos, last_unchanged_pos_old;
15133 struct glyph_row *first_text_row
15134 = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
15135
15136 *delta = Z - Z_old;
15137 *delta_bytes = Z_BYTE - Z_BYTE_old;
15138
15139 /* Set last_unchanged_pos to the buffer position of the last
15140 character in the buffer that has not been changed. Z is the
15141 index + 1 of the last character in current_buffer, i.e. by
15142 subtracting END_UNCHANGED we get the index of the last
15143 unchanged character, and we have to add BEG to get its buffer
15144 position. */
15145 last_unchanged_pos = Z - END_UNCHANGED + BEG;
15146 last_unchanged_pos_old = last_unchanged_pos - *delta;
15147
15148 /* Search backward from ROW for a row displaying a line that
15149 starts at a minimum position >= last_unchanged_pos_old. */
15150 for (; row > first_text_row; --row)
15151 {
15152 /* This used to abort, but it can happen.
15153 It is ok to just stop the search instead here. KFS. */
15154 if (!row->enabled_p || !MATRIX_ROW_DISPLAYS_TEXT_P (row))
15155 break;
15156
15157 if (MATRIX_ROW_START_CHARPOS (row) >= last_unchanged_pos_old)
15158 row_found = row;
15159 }
15160 }
15161
15162 eassert (!row_found || MATRIX_ROW_DISPLAYS_TEXT_P (row_found));
15163
15164 return row_found;
15165 }
15166
15167
15168 /* Make sure that glyph rows in the current matrix of window W
15169 reference the same glyph memory as corresponding rows in the
15170 frame's frame matrix. This function is called after scrolling W's
15171 current matrix on a terminal frame in try_window_id and
15172 try_window_reusing_current_matrix. */
15173
15174 static void
15175 sync_frame_with_window_matrix_rows (struct window *w)
15176 {
15177 struct frame *f = XFRAME (w->frame);
15178 struct glyph_row *window_row, *window_row_end, *frame_row;
15179
15180 /* Preconditions: W must be a leaf window and full-width. Its frame
15181 must have a frame matrix. */
15182 xassert (NILP (w->hchild) && NILP (w->vchild));
15183 xassert (WINDOW_FULL_WIDTH_P (w));
15184 xassert (!FRAME_WINDOW_P (f));
15185
15186 /* If W is a full-width window, glyph pointers in W's current matrix
15187 have, by definition, to be the same as glyph pointers in the
15188 corresponding frame matrix. Note that frame matrices have no
15189 marginal areas (see build_frame_matrix). */
15190 window_row = w->current_matrix->rows;
15191 window_row_end = window_row + w->current_matrix->nrows;
15192 frame_row = f->current_matrix->rows + WINDOW_TOP_EDGE_LINE (w);
15193 while (window_row < window_row_end)
15194 {
15195 struct glyph *start = window_row->glyphs[LEFT_MARGIN_AREA];
15196 struct glyph *end = window_row->glyphs[LAST_AREA];
15197
15198 frame_row->glyphs[LEFT_MARGIN_AREA] = start;
15199 frame_row->glyphs[TEXT_AREA] = start;
15200 frame_row->glyphs[RIGHT_MARGIN_AREA] = end;
15201 frame_row->glyphs[LAST_AREA] = end;
15202
15203 /* Disable frame rows whose corresponding window rows have
15204 been disabled in try_window_id. */
15205 if (!window_row->enabled_p)
15206 frame_row->enabled_p = 0;
15207
15208 ++window_row, ++frame_row;
15209 }
15210 }
15211
15212
15213 /* Find the glyph row in window W containing CHARPOS. Consider all
15214 rows between START and END (not inclusive). END null means search
15215 all rows to the end of the display area of W. Value is the row
15216 containing CHARPOS or null. */
15217
15218 struct glyph_row *
15219 row_containing_pos (struct window *w, EMACS_INT charpos,
15220 struct glyph_row *start, struct glyph_row *end, int dy)
15221 {
15222 struct glyph_row *row = start;
15223 struct glyph_row *best_row = NULL;
15224 EMACS_INT mindif = BUF_ZV (XBUFFER (w->buffer)) + 1;
15225 int last_y;
15226
15227 /* If we happen to start on a header-line, skip that. */
15228 if (row->mode_line_p)
15229 ++row;
15230
15231 if ((end && row >= end) || !row->enabled_p)
15232 return NULL;
15233
15234 last_y = window_text_bottom_y (w) - dy;
15235
15236 while (1)
15237 {
15238 /* Give up if we have gone too far. */
15239 if (end && row >= end)
15240 return NULL;
15241 /* This formerly returned if they were equal.
15242 I think that both quantities are of a "last plus one" type;
15243 if so, when they are equal, the row is within the screen. -- rms. */
15244 if (MATRIX_ROW_BOTTOM_Y (row) > last_y)
15245 return NULL;
15246
15247 /* If it is in this row, return this row. */
15248 if (! (MATRIX_ROW_END_CHARPOS (row) < charpos
15249 || (MATRIX_ROW_END_CHARPOS (row) == charpos
15250 /* The end position of a row equals the start
15251 position of the next row. If CHARPOS is there, we
15252 would rather display it in the next line, except
15253 when this line ends in ZV. */
15254 && !row->ends_at_zv_p
15255 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)))
15256 && charpos >= MATRIX_ROW_START_CHARPOS (row))
15257 {
15258 struct glyph *g;
15259
15260 if (NILP (BVAR (XBUFFER (w->buffer), bidi_display_reordering))
15261 || (!best_row && !row->continued_p))
15262 return row;
15263 /* In bidi-reordered rows, there could be several rows
15264 occluding point, all of them belonging to the same
15265 continued line. We need to find the row which fits
15266 CHARPOS the best. */
15267 for (g = row->glyphs[TEXT_AREA];
15268 g < row->glyphs[TEXT_AREA] + row->used[TEXT_AREA];
15269 g++)
15270 {
15271 if (!STRINGP (g->object))
15272 {
15273 if (g->charpos > 0 && eabs (g->charpos - charpos) < mindif)
15274 {
15275 mindif = eabs (g->charpos - charpos);
15276 best_row = row;
15277 /* Exact match always wins. */
15278 if (mindif == 0)
15279 return best_row;
15280 }
15281 }
15282 }
15283 }
15284 else if (best_row && !row->continued_p)
15285 return best_row;
15286 ++row;
15287 }
15288 }
15289
15290
15291 /* Try to redisplay window W by reusing its existing display. W's
15292 current matrix must be up to date when this function is called,
15293 i.e. window_end_valid must not be nil.
15294
15295 Value is
15296
15297 1 if display has been updated
15298 0 if otherwise unsuccessful
15299 -1 if redisplay with same window start is known not to succeed
15300
15301 The following steps are performed:
15302
15303 1. Find the last row in the current matrix of W that is not
15304 affected by changes at the start of current_buffer. If no such row
15305 is found, give up.
15306
15307 2. Find the first row in W's current matrix that is not affected by
15308 changes at the end of current_buffer. Maybe there is no such row.
15309
15310 3. Display lines beginning with the row + 1 found in step 1 to the
15311 row found in step 2 or, if step 2 didn't find a row, to the end of
15312 the window.
15313
15314 4. If cursor is not known to appear on the window, give up.
15315
15316 5. If display stopped at the row found in step 2, scroll the
15317 display and current matrix as needed.
15318
15319 6. Maybe display some lines at the end of W, if we must. This can
15320 happen under various circumstances, like a partially visible line
15321 becoming fully visible, or because newly displayed lines are displayed
15322 in smaller font sizes.
15323
15324 7. Update W's window end information. */
15325
15326 static int
15327 try_window_id (struct window *w)
15328 {
15329 struct frame *f = XFRAME (w->frame);
15330 struct glyph_matrix *current_matrix = w->current_matrix;
15331 struct glyph_matrix *desired_matrix = w->desired_matrix;
15332 struct glyph_row *last_unchanged_at_beg_row;
15333 struct glyph_row *first_unchanged_at_end_row;
15334 struct glyph_row *row;
15335 struct glyph_row *bottom_row;
15336 int bottom_vpos;
15337 struct it it;
15338 EMACS_INT delta = 0, delta_bytes = 0, stop_pos;
15339 int dvpos, dy;
15340 struct text_pos start_pos;
15341 struct run run;
15342 int first_unchanged_at_end_vpos = 0;
15343 struct glyph_row *last_text_row, *last_text_row_at_end;
15344 struct text_pos start;
15345 EMACS_INT first_changed_charpos, last_changed_charpos;
15346
15347 #if GLYPH_DEBUG
15348 if (inhibit_try_window_id)
15349 return 0;
15350 #endif
15351
15352 /* This is handy for debugging. */
15353 #if 0
15354 #define GIVE_UP(X) \
15355 do { \
15356 fprintf (stderr, "try_window_id give up %d\n", (X)); \
15357 return 0; \
15358 } while (0)
15359 #else
15360 #define GIVE_UP(X) return 0
15361 #endif
15362
15363 SET_TEXT_POS_FROM_MARKER (start, w->start);
15364
15365 /* Don't use this for mini-windows because these can show
15366 messages and mini-buffers, and we don't handle that here. */
15367 if (MINI_WINDOW_P (w))
15368 GIVE_UP (1);
15369
15370 /* This flag is used to prevent redisplay optimizations. */
15371 if (windows_or_buffers_changed || cursor_type_changed)
15372 GIVE_UP (2);
15373
15374 /* Verify that narrowing has not changed.
15375 Also verify that we were not told to prevent redisplay optimizations.
15376 It would be nice to further
15377 reduce the number of cases where this prevents try_window_id. */
15378 if (current_buffer->clip_changed
15379 || current_buffer->prevent_redisplay_optimizations_p)
15380 GIVE_UP (3);
15381
15382 /* Window must either use window-based redisplay or be full width. */
15383 if (!FRAME_WINDOW_P (f)
15384 && (!FRAME_LINE_INS_DEL_OK (f)
15385 || !WINDOW_FULL_WIDTH_P (w)))
15386 GIVE_UP (4);
15387
15388 /* Give up if point is known NOT to appear in W. */
15389 if (PT < CHARPOS (start))
15390 GIVE_UP (5);
15391
15392 /* Another way to prevent redisplay optimizations. */
15393 if (XFASTINT (w->last_modified) == 0)
15394 GIVE_UP (6);
15395
15396 /* Verify that window is not hscrolled. */
15397 if (XFASTINT (w->hscroll) != 0)
15398 GIVE_UP (7);
15399
15400 /* Verify that display wasn't paused. */
15401 if (NILP (w->window_end_valid))
15402 GIVE_UP (8);
15403
15404 /* Can't use this if highlighting a region because a cursor movement
15405 will do more than just set the cursor. */
15406 if (!NILP (Vtransient_mark_mode)
15407 && !NILP (BVAR (current_buffer, mark_active)))
15408 GIVE_UP (9);
15409
15410 /* Likewise if highlighting trailing whitespace. */
15411 if (!NILP (Vshow_trailing_whitespace))
15412 GIVE_UP (11);
15413
15414 /* Likewise if showing a region. */
15415 if (!NILP (w->region_showing))
15416 GIVE_UP (10);
15417
15418 /* Can't use this if overlay arrow position and/or string have
15419 changed. */
15420 if (overlay_arrows_changed_p ())
15421 GIVE_UP (12);
15422
15423 /* When word-wrap is on, adding a space to the first word of a
15424 wrapped line can change the wrap position, altering the line
15425 above it. It might be worthwhile to handle this more
15426 intelligently, but for now just redisplay from scratch. */
15427 if (!NILP (BVAR (XBUFFER (w->buffer), word_wrap)))
15428 GIVE_UP (21);
15429
15430 /* Under bidi reordering, adding or deleting a character in the
15431 beginning of a paragraph, before the first strong directional
15432 character, can change the base direction of the paragraph (unless
15433 the buffer specifies a fixed paragraph direction), which will
15434 require to redisplay the whole paragraph. It might be worthwhile
15435 to find the paragraph limits and widen the range of redisplayed
15436 lines to that, but for now just give up this optimization and
15437 redisplay from scratch. */
15438 if (!NILP (BVAR (XBUFFER (w->buffer), bidi_display_reordering))
15439 && NILP (BVAR (XBUFFER (w->buffer), bidi_paragraph_direction)))
15440 GIVE_UP (22);
15441
15442 /* Make sure beg_unchanged and end_unchanged are up to date. Do it
15443 only if buffer has really changed. The reason is that the gap is
15444 initially at Z for freshly visited files. The code below would
15445 set end_unchanged to 0 in that case. */
15446 if (MODIFF > SAVE_MODIFF
15447 /* This seems to happen sometimes after saving a buffer. */
15448 || BEG_UNCHANGED + END_UNCHANGED > Z_BYTE)
15449 {
15450 if (GPT - BEG < BEG_UNCHANGED)
15451 BEG_UNCHANGED = GPT - BEG;
15452 if (Z - GPT < END_UNCHANGED)
15453 END_UNCHANGED = Z - GPT;
15454 }
15455
15456 /* The position of the first and last character that has been changed. */
15457 first_changed_charpos = BEG + BEG_UNCHANGED;
15458 last_changed_charpos = Z - END_UNCHANGED;
15459
15460 /* If window starts after a line end, and the last change is in
15461 front of that newline, then changes don't affect the display.
15462 This case happens with stealth-fontification. Note that although
15463 the display is unchanged, glyph positions in the matrix have to
15464 be adjusted, of course. */
15465 row = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos));
15466 if (MATRIX_ROW_DISPLAYS_TEXT_P (row)
15467 && ((last_changed_charpos < CHARPOS (start)
15468 && CHARPOS (start) == BEGV)
15469 || (last_changed_charpos < CHARPOS (start) - 1
15470 && FETCH_BYTE (BYTEPOS (start) - 1) == '\n')))
15471 {
15472 EMACS_INT Z_old, Z_delta, Z_BYTE_old, Z_delta_bytes;
15473 struct glyph_row *r0;
15474
15475 /* Compute how many chars/bytes have been added to or removed
15476 from the buffer. */
15477 Z_old = MATRIX_ROW_END_CHARPOS (row) + XFASTINT (w->window_end_pos);
15478 Z_BYTE_old = MATRIX_ROW_END_BYTEPOS (row) + w->window_end_bytepos;
15479 Z_delta = Z - Z_old;
15480 Z_delta_bytes = Z_BYTE - Z_BYTE_old;
15481
15482 /* Give up if PT is not in the window. Note that it already has
15483 been checked at the start of try_window_id that PT is not in
15484 front of the window start. */
15485 if (PT >= MATRIX_ROW_END_CHARPOS (row) + Z_delta)
15486 GIVE_UP (13);
15487
15488 /* If window start is unchanged, we can reuse the whole matrix
15489 as is, after adjusting glyph positions. No need to compute
15490 the window end again, since its offset from Z hasn't changed. */
15491 r0 = MATRIX_FIRST_TEXT_ROW (current_matrix);
15492 if (CHARPOS (start) == MATRIX_ROW_START_CHARPOS (r0) + Z_delta
15493 && BYTEPOS (start) == MATRIX_ROW_START_BYTEPOS (r0) + Z_delta_bytes
15494 /* PT must not be in a partially visible line. */
15495 && !(PT >= MATRIX_ROW_START_CHARPOS (row) + Z_delta
15496 && MATRIX_ROW_BOTTOM_Y (row) > window_text_bottom_y (w)))
15497 {
15498 /* Adjust positions in the glyph matrix. */
15499 if (Z_delta || Z_delta_bytes)
15500 {
15501 struct glyph_row *r1
15502 = MATRIX_BOTTOM_TEXT_ROW (current_matrix, w);
15503 increment_matrix_positions (w->current_matrix,
15504 MATRIX_ROW_VPOS (r0, current_matrix),
15505 MATRIX_ROW_VPOS (r1, current_matrix),
15506 Z_delta, Z_delta_bytes);
15507 }
15508
15509 /* Set the cursor. */
15510 row = row_containing_pos (w, PT, r0, NULL, 0);
15511 if (row)
15512 set_cursor_from_row (w, row, current_matrix, 0, 0, 0, 0);
15513 else
15514 abort ();
15515 return 1;
15516 }
15517 }
15518
15519 /* Handle the case that changes are all below what is displayed in
15520 the window, and that PT is in the window. This shortcut cannot
15521 be taken if ZV is visible in the window, and text has been added
15522 there that is visible in the window. */
15523 if (first_changed_charpos >= MATRIX_ROW_END_CHARPOS (row)
15524 /* ZV is not visible in the window, or there are no
15525 changes at ZV, actually. */
15526 && (current_matrix->zv > MATRIX_ROW_END_CHARPOS (row)
15527 || first_changed_charpos == last_changed_charpos))
15528 {
15529 struct glyph_row *r0;
15530
15531 /* Give up if PT is not in the window. Note that it already has
15532 been checked at the start of try_window_id that PT is not in
15533 front of the window start. */
15534 if (PT >= MATRIX_ROW_END_CHARPOS (row))
15535 GIVE_UP (14);
15536
15537 /* If window start is unchanged, we can reuse the whole matrix
15538 as is, without changing glyph positions since no text has
15539 been added/removed in front of the window end. */
15540 r0 = MATRIX_FIRST_TEXT_ROW (current_matrix);
15541 if (TEXT_POS_EQUAL_P (start, r0->minpos)
15542 /* PT must not be in a partially visible line. */
15543 && !(PT >= MATRIX_ROW_START_CHARPOS (row)
15544 && MATRIX_ROW_BOTTOM_Y (row) > window_text_bottom_y (w)))
15545 {
15546 /* We have to compute the window end anew since text
15547 could have been added/removed after it. */
15548 w->window_end_pos
15549 = make_number (Z - MATRIX_ROW_END_CHARPOS (row));
15550 w->window_end_bytepos
15551 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (row);
15552
15553 /* Set the cursor. */
15554 row = row_containing_pos (w, PT, r0, NULL, 0);
15555 if (row)
15556 set_cursor_from_row (w, row, current_matrix, 0, 0, 0, 0);
15557 else
15558 abort ();
15559 return 2;
15560 }
15561 }
15562
15563 /* Give up if window start is in the changed area.
15564
15565 The condition used to read
15566
15567 (BEG_UNCHANGED + END_UNCHANGED != Z - BEG && ...)
15568
15569 but why that was tested escapes me at the moment. */
15570 if (CHARPOS (start) >= first_changed_charpos
15571 && CHARPOS (start) <= last_changed_charpos)
15572 GIVE_UP (15);
15573
15574 /* Check that window start agrees with the start of the first glyph
15575 row in its current matrix. Check this after we know the window
15576 start is not in changed text, otherwise positions would not be
15577 comparable. */
15578 row = MATRIX_FIRST_TEXT_ROW (current_matrix);
15579 if (!TEXT_POS_EQUAL_P (start, row->minpos))
15580 GIVE_UP (16);
15581
15582 /* Give up if the window ends in strings. Overlay strings
15583 at the end are difficult to handle, so don't try. */
15584 row = MATRIX_ROW (current_matrix, XFASTINT (w->window_end_vpos));
15585 if (MATRIX_ROW_START_CHARPOS (row) == MATRIX_ROW_END_CHARPOS (row))
15586 GIVE_UP (20);
15587
15588 /* Compute the position at which we have to start displaying new
15589 lines. Some of the lines at the top of the window might be
15590 reusable because they are not displaying changed text. Find the
15591 last row in W's current matrix not affected by changes at the
15592 start of current_buffer. Value is null if changes start in the
15593 first line of window. */
15594 last_unchanged_at_beg_row = find_last_unchanged_at_beg_row (w);
15595 if (last_unchanged_at_beg_row)
15596 {
15597 /* Avoid starting to display in the moddle of a character, a TAB
15598 for instance. This is easier than to set up the iterator
15599 exactly, and it's not a frequent case, so the additional
15600 effort wouldn't really pay off. */
15601 while ((MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (last_unchanged_at_beg_row)
15602 || last_unchanged_at_beg_row->ends_in_newline_from_string_p)
15603 && last_unchanged_at_beg_row > w->current_matrix->rows)
15604 --last_unchanged_at_beg_row;
15605
15606 if (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (last_unchanged_at_beg_row))
15607 GIVE_UP (17);
15608
15609 if (init_to_row_end (&it, w, last_unchanged_at_beg_row) == 0)
15610 GIVE_UP (18);
15611 start_pos = it.current.pos;
15612
15613 /* Start displaying new lines in the desired matrix at the same
15614 vpos we would use in the current matrix, i.e. below
15615 last_unchanged_at_beg_row. */
15616 it.vpos = 1 + MATRIX_ROW_VPOS (last_unchanged_at_beg_row,
15617 current_matrix);
15618 it.glyph_row = MATRIX_ROW (desired_matrix, it.vpos);
15619 it.current_y = MATRIX_ROW_BOTTOM_Y (last_unchanged_at_beg_row);
15620
15621 xassert (it.hpos == 0 && it.current_x == 0);
15622 }
15623 else
15624 {
15625 /* There are no reusable lines at the start of the window.
15626 Start displaying in the first text line. */
15627 start_display (&it, w, start);
15628 it.vpos = it.first_vpos;
15629 start_pos = it.current.pos;
15630 }
15631
15632 /* Find the first row that is not affected by changes at the end of
15633 the buffer. Value will be null if there is no unchanged row, in
15634 which case we must redisplay to the end of the window. delta
15635 will be set to the value by which buffer positions beginning with
15636 first_unchanged_at_end_row have to be adjusted due to text
15637 changes. */
15638 first_unchanged_at_end_row
15639 = find_first_unchanged_at_end_row (w, &delta, &delta_bytes);
15640 IF_DEBUG (debug_delta = delta);
15641 IF_DEBUG (debug_delta_bytes = delta_bytes);
15642
15643 /* Set stop_pos to the buffer position up to which we will have to
15644 display new lines. If first_unchanged_at_end_row != NULL, this
15645 is the buffer position of the start of the line displayed in that
15646 row. For first_unchanged_at_end_row == NULL, use 0 to indicate
15647 that we don't stop at a buffer position. */
15648 stop_pos = 0;
15649 if (first_unchanged_at_end_row)
15650 {
15651 xassert (last_unchanged_at_beg_row == NULL
15652 || first_unchanged_at_end_row >= last_unchanged_at_beg_row);
15653
15654 /* If this is a continuation line, move forward to the next one
15655 that isn't. Changes in lines above affect this line.
15656 Caution: this may move first_unchanged_at_end_row to a row
15657 not displaying text. */
15658 while (MATRIX_ROW_CONTINUATION_LINE_P (first_unchanged_at_end_row)
15659 && MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row)
15660 && (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row)
15661 < it.last_visible_y))
15662 ++first_unchanged_at_end_row;
15663
15664 if (!MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row)
15665 || (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row)
15666 >= it.last_visible_y))
15667 first_unchanged_at_end_row = NULL;
15668 else
15669 {
15670 stop_pos = (MATRIX_ROW_START_CHARPOS (first_unchanged_at_end_row)
15671 + delta);
15672 first_unchanged_at_end_vpos
15673 = MATRIX_ROW_VPOS (first_unchanged_at_end_row, current_matrix);
15674 xassert (stop_pos >= Z - END_UNCHANGED);
15675 }
15676 }
15677 else if (last_unchanged_at_beg_row == NULL)
15678 GIVE_UP (19);
15679
15680
15681 #if GLYPH_DEBUG
15682
15683 /* Either there is no unchanged row at the end, or the one we have
15684 now displays text. This is a necessary condition for the window
15685 end pos calculation at the end of this function. */
15686 xassert (first_unchanged_at_end_row == NULL
15687 || MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row));
15688
15689 debug_last_unchanged_at_beg_vpos
15690 = (last_unchanged_at_beg_row
15691 ? MATRIX_ROW_VPOS (last_unchanged_at_beg_row, current_matrix)
15692 : -1);
15693 debug_first_unchanged_at_end_vpos = first_unchanged_at_end_vpos;
15694
15695 #endif /* GLYPH_DEBUG != 0 */
15696
15697
15698 /* Display new lines. Set last_text_row to the last new line
15699 displayed which has text on it, i.e. might end up as being the
15700 line where the window_end_vpos is. */
15701 w->cursor.vpos = -1;
15702 last_text_row = NULL;
15703 overlay_arrow_seen = 0;
15704 while (it.current_y < it.last_visible_y
15705 && !fonts_changed_p
15706 && (first_unchanged_at_end_row == NULL
15707 || IT_CHARPOS (it) < stop_pos))
15708 {
15709 if (display_line (&it))
15710 last_text_row = it.glyph_row - 1;
15711 }
15712
15713 if (fonts_changed_p)
15714 return -1;
15715
15716
15717 /* Compute differences in buffer positions, y-positions etc. for
15718 lines reused at the bottom of the window. Compute what we can
15719 scroll. */
15720 if (first_unchanged_at_end_row
15721 /* No lines reused because we displayed everything up to the
15722 bottom of the window. */
15723 && it.current_y < it.last_visible_y)
15724 {
15725 dvpos = (it.vpos
15726 - MATRIX_ROW_VPOS (first_unchanged_at_end_row,
15727 current_matrix));
15728 dy = it.current_y - first_unchanged_at_end_row->y;
15729 run.current_y = first_unchanged_at_end_row->y;
15730 run.desired_y = run.current_y + dy;
15731 run.height = it.last_visible_y - max (run.current_y, run.desired_y);
15732 }
15733 else
15734 {
15735 delta = delta_bytes = dvpos = dy
15736 = run.current_y = run.desired_y = run.height = 0;
15737 first_unchanged_at_end_row = NULL;
15738 }
15739 IF_DEBUG (debug_dvpos = dvpos; debug_dy = dy);
15740
15741
15742 /* Find the cursor if not already found. We have to decide whether
15743 PT will appear on this window (it sometimes doesn't, but this is
15744 not a very frequent case.) This decision has to be made before
15745 the current matrix is altered. A value of cursor.vpos < 0 means
15746 that PT is either in one of the lines beginning at
15747 first_unchanged_at_end_row or below the window. Don't care for
15748 lines that might be displayed later at the window end; as
15749 mentioned, this is not a frequent case. */
15750 if (w->cursor.vpos < 0)
15751 {
15752 /* Cursor in unchanged rows at the top? */
15753 if (PT < CHARPOS (start_pos)
15754 && last_unchanged_at_beg_row)
15755 {
15756 row = row_containing_pos (w, PT,
15757 MATRIX_FIRST_TEXT_ROW (w->current_matrix),
15758 last_unchanged_at_beg_row + 1, 0);
15759 if (row)
15760 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
15761 }
15762
15763 /* Start from first_unchanged_at_end_row looking for PT. */
15764 else if (first_unchanged_at_end_row)
15765 {
15766 row = row_containing_pos (w, PT - delta,
15767 first_unchanged_at_end_row, NULL, 0);
15768 if (row)
15769 set_cursor_from_row (w, row, w->current_matrix, delta,
15770 delta_bytes, dy, dvpos);
15771 }
15772
15773 /* Give up if cursor was not found. */
15774 if (w->cursor.vpos < 0)
15775 {
15776 clear_glyph_matrix (w->desired_matrix);
15777 return -1;
15778 }
15779 }
15780
15781 /* Don't let the cursor end in the scroll margins. */
15782 {
15783 int this_scroll_margin, cursor_height;
15784
15785 this_scroll_margin = max (0, scroll_margin);
15786 this_scroll_margin = min (this_scroll_margin, WINDOW_TOTAL_LINES (w) / 4);
15787 this_scroll_margin *= FRAME_LINE_HEIGHT (it.f);
15788 cursor_height = MATRIX_ROW (w->desired_matrix, w->cursor.vpos)->height;
15789
15790 if ((w->cursor.y < this_scroll_margin
15791 && CHARPOS (start) > BEGV)
15792 /* Old redisplay didn't take scroll margin into account at the bottom,
15793 but then global-hl-line-mode doesn't scroll. KFS 2004-06-14 */
15794 || (w->cursor.y + (make_cursor_line_fully_visible_p
15795 ? cursor_height + this_scroll_margin
15796 : 1)) > it.last_visible_y)
15797 {
15798 w->cursor.vpos = -1;
15799 clear_glyph_matrix (w->desired_matrix);
15800 return -1;
15801 }
15802 }
15803
15804 /* Scroll the display. Do it before changing the current matrix so
15805 that xterm.c doesn't get confused about where the cursor glyph is
15806 found. */
15807 if (dy && run.height)
15808 {
15809 update_begin (f);
15810
15811 if (FRAME_WINDOW_P (f))
15812 {
15813 FRAME_RIF (f)->update_window_begin_hook (w);
15814 FRAME_RIF (f)->clear_window_mouse_face (w);
15815 FRAME_RIF (f)->scroll_run_hook (w, &run);
15816 FRAME_RIF (f)->update_window_end_hook (w, 0, 0);
15817 }
15818 else
15819 {
15820 /* Terminal frame. In this case, dvpos gives the number of
15821 lines to scroll by; dvpos < 0 means scroll up. */
15822 int from_vpos
15823 = MATRIX_ROW_VPOS (first_unchanged_at_end_row, w->current_matrix);
15824 int from = WINDOW_TOP_EDGE_LINE (w) + from_vpos;
15825 int end = (WINDOW_TOP_EDGE_LINE (w)
15826 + (WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0)
15827 + window_internal_height (w));
15828
15829 #if defined (HAVE_GPM) || defined (MSDOS)
15830 x_clear_window_mouse_face (w);
15831 #endif
15832 /* Perform the operation on the screen. */
15833 if (dvpos > 0)
15834 {
15835 /* Scroll last_unchanged_at_beg_row to the end of the
15836 window down dvpos lines. */
15837 set_terminal_window (f, end);
15838
15839 /* On dumb terminals delete dvpos lines at the end
15840 before inserting dvpos empty lines. */
15841 if (!FRAME_SCROLL_REGION_OK (f))
15842 ins_del_lines (f, end - dvpos, -dvpos);
15843
15844 /* Insert dvpos empty lines in front of
15845 last_unchanged_at_beg_row. */
15846 ins_del_lines (f, from, dvpos);
15847 }
15848 else if (dvpos < 0)
15849 {
15850 /* Scroll up last_unchanged_at_beg_vpos to the end of
15851 the window to last_unchanged_at_beg_vpos - |dvpos|. */
15852 set_terminal_window (f, end);
15853
15854 /* Delete dvpos lines in front of
15855 last_unchanged_at_beg_vpos. ins_del_lines will set
15856 the cursor to the given vpos and emit |dvpos| delete
15857 line sequences. */
15858 ins_del_lines (f, from + dvpos, dvpos);
15859
15860 /* On a dumb terminal insert dvpos empty lines at the
15861 end. */
15862 if (!FRAME_SCROLL_REGION_OK (f))
15863 ins_del_lines (f, end + dvpos, -dvpos);
15864 }
15865
15866 set_terminal_window (f, 0);
15867 }
15868
15869 update_end (f);
15870 }
15871
15872 /* Shift reused rows of the current matrix to the right position.
15873 BOTTOM_ROW is the last + 1 row in the current matrix reserved for
15874 text. */
15875 bottom_row = MATRIX_BOTTOM_TEXT_ROW (current_matrix, w);
15876 bottom_vpos = MATRIX_ROW_VPOS (bottom_row, current_matrix);
15877 if (dvpos < 0)
15878 {
15879 rotate_matrix (current_matrix, first_unchanged_at_end_vpos + dvpos,
15880 bottom_vpos, dvpos);
15881 enable_glyph_matrix_rows (current_matrix, bottom_vpos + dvpos,
15882 bottom_vpos, 0);
15883 }
15884 else if (dvpos > 0)
15885 {
15886 rotate_matrix (current_matrix, first_unchanged_at_end_vpos,
15887 bottom_vpos, dvpos);
15888 enable_glyph_matrix_rows (current_matrix, first_unchanged_at_end_vpos,
15889 first_unchanged_at_end_vpos + dvpos, 0);
15890 }
15891
15892 /* For frame-based redisplay, make sure that current frame and window
15893 matrix are in sync with respect to glyph memory. */
15894 if (!FRAME_WINDOW_P (f))
15895 sync_frame_with_window_matrix_rows (w);
15896
15897 /* Adjust buffer positions in reused rows. */
15898 if (delta || delta_bytes)
15899 increment_matrix_positions (current_matrix,
15900 first_unchanged_at_end_vpos + dvpos,
15901 bottom_vpos, delta, delta_bytes);
15902
15903 /* Adjust Y positions. */
15904 if (dy)
15905 shift_glyph_matrix (w, current_matrix,
15906 first_unchanged_at_end_vpos + dvpos,
15907 bottom_vpos, dy);
15908
15909 if (first_unchanged_at_end_row)
15910 {
15911 first_unchanged_at_end_row += dvpos;
15912 if (first_unchanged_at_end_row->y >= it.last_visible_y
15913 || !MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row))
15914 first_unchanged_at_end_row = NULL;
15915 }
15916
15917 /* If scrolling up, there may be some lines to display at the end of
15918 the window. */
15919 last_text_row_at_end = NULL;
15920 if (dy < 0)
15921 {
15922 /* Scrolling up can leave for example a partially visible line
15923 at the end of the window to be redisplayed. */
15924 /* Set last_row to the glyph row in the current matrix where the
15925 window end line is found. It has been moved up or down in
15926 the matrix by dvpos. */
15927 int last_vpos = XFASTINT (w->window_end_vpos) + dvpos;
15928 struct glyph_row *last_row = MATRIX_ROW (current_matrix, last_vpos);
15929
15930 /* If last_row is the window end line, it should display text. */
15931 xassert (last_row->displays_text_p);
15932
15933 /* If window end line was partially visible before, begin
15934 displaying at that line. Otherwise begin displaying with the
15935 line following it. */
15936 if (MATRIX_ROW_BOTTOM_Y (last_row) - dy >= it.last_visible_y)
15937 {
15938 init_to_row_start (&it, w, last_row);
15939 it.vpos = last_vpos;
15940 it.current_y = last_row->y;
15941 }
15942 else
15943 {
15944 init_to_row_end (&it, w, last_row);
15945 it.vpos = 1 + last_vpos;
15946 it.current_y = MATRIX_ROW_BOTTOM_Y (last_row);
15947 ++last_row;
15948 }
15949
15950 /* We may start in a continuation line. If so, we have to
15951 get the right continuation_lines_width and current_x. */
15952 it.continuation_lines_width = last_row->continuation_lines_width;
15953 it.hpos = it.current_x = 0;
15954
15955 /* Display the rest of the lines at the window end. */
15956 it.glyph_row = MATRIX_ROW (desired_matrix, it.vpos);
15957 while (it.current_y < it.last_visible_y
15958 && !fonts_changed_p)
15959 {
15960 /* Is it always sure that the display agrees with lines in
15961 the current matrix? I don't think so, so we mark rows
15962 displayed invalid in the current matrix by setting their
15963 enabled_p flag to zero. */
15964 MATRIX_ROW (w->current_matrix, it.vpos)->enabled_p = 0;
15965 if (display_line (&it))
15966 last_text_row_at_end = it.glyph_row - 1;
15967 }
15968 }
15969
15970 /* Update window_end_pos and window_end_vpos. */
15971 if (first_unchanged_at_end_row
15972 && !last_text_row_at_end)
15973 {
15974 /* Window end line if one of the preserved rows from the current
15975 matrix. Set row to the last row displaying text in current
15976 matrix starting at first_unchanged_at_end_row, after
15977 scrolling. */
15978 xassert (first_unchanged_at_end_row->displays_text_p);
15979 row = find_last_row_displaying_text (w->current_matrix, &it,
15980 first_unchanged_at_end_row);
15981 xassert (row && MATRIX_ROW_DISPLAYS_TEXT_P (row));
15982
15983 w->window_end_pos = make_number (Z - MATRIX_ROW_END_CHARPOS (row));
15984 w->window_end_bytepos = Z_BYTE - MATRIX_ROW_END_BYTEPOS (row);
15985 w->window_end_vpos
15986 = make_number (MATRIX_ROW_VPOS (row, w->current_matrix));
15987 xassert (w->window_end_bytepos >= 0);
15988 IF_DEBUG (debug_method_add (w, "A"));
15989 }
15990 else if (last_text_row_at_end)
15991 {
15992 w->window_end_pos
15993 = make_number (Z - MATRIX_ROW_END_CHARPOS (last_text_row_at_end));
15994 w->window_end_bytepos
15995 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row_at_end);
15996 w->window_end_vpos
15997 = make_number (MATRIX_ROW_VPOS (last_text_row_at_end, desired_matrix));
15998 xassert (w->window_end_bytepos >= 0);
15999 IF_DEBUG (debug_method_add (w, "B"));
16000 }
16001 else if (last_text_row)
16002 {
16003 /* We have displayed either to the end of the window or at the
16004 end of the window, i.e. the last row with text is to be found
16005 in the desired matrix. */
16006 w->window_end_pos
16007 = make_number (Z - MATRIX_ROW_END_CHARPOS (last_text_row));
16008 w->window_end_bytepos
16009 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row);
16010 w->window_end_vpos
16011 = make_number (MATRIX_ROW_VPOS (last_text_row, desired_matrix));
16012 xassert (w->window_end_bytepos >= 0);
16013 }
16014 else if (first_unchanged_at_end_row == NULL
16015 && last_text_row == NULL
16016 && last_text_row_at_end == NULL)
16017 {
16018 /* Displayed to end of window, but no line containing text was
16019 displayed. Lines were deleted at the end of the window. */
16020 int first_vpos = WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0;
16021 int vpos = XFASTINT (w->window_end_vpos);
16022 struct glyph_row *current_row = current_matrix->rows + vpos;
16023 struct glyph_row *desired_row = desired_matrix->rows + vpos;
16024
16025 for (row = NULL;
16026 row == NULL && vpos >= first_vpos;
16027 --vpos, --current_row, --desired_row)
16028 {
16029 if (desired_row->enabled_p)
16030 {
16031 if (desired_row->displays_text_p)
16032 row = desired_row;
16033 }
16034 else if (current_row->displays_text_p)
16035 row = current_row;
16036 }
16037
16038 xassert (row != NULL);
16039 w->window_end_vpos = make_number (vpos + 1);
16040 w->window_end_pos = make_number (Z - MATRIX_ROW_END_CHARPOS (row));
16041 w->window_end_bytepos = Z_BYTE - MATRIX_ROW_END_BYTEPOS (row);
16042 xassert (w->window_end_bytepos >= 0);
16043 IF_DEBUG (debug_method_add (w, "C"));
16044 }
16045 else
16046 abort ();
16047
16048 IF_DEBUG (debug_end_pos = XFASTINT (w->window_end_pos);
16049 debug_end_vpos = XFASTINT (w->window_end_vpos));
16050
16051 /* Record that display has not been completed. */
16052 w->window_end_valid = Qnil;
16053 w->desired_matrix->no_scrolling_p = 1;
16054 return 3;
16055
16056 #undef GIVE_UP
16057 }
16058
16059
16060 \f
16061 /***********************************************************************
16062 More debugging support
16063 ***********************************************************************/
16064
16065 #if GLYPH_DEBUG
16066
16067 void dump_glyph_row (struct glyph_row *, int, int);
16068 void dump_glyph_matrix (struct glyph_matrix *, int);
16069 void dump_glyph (struct glyph_row *, struct glyph *, int);
16070
16071
16072 /* Dump the contents of glyph matrix MATRIX on stderr.
16073
16074 GLYPHS 0 means don't show glyph contents.
16075 GLYPHS 1 means show glyphs in short form
16076 GLYPHS > 1 means show glyphs in long form. */
16077
16078 void
16079 dump_glyph_matrix (matrix, glyphs)
16080 struct glyph_matrix *matrix;
16081 int glyphs;
16082 {
16083 int i;
16084 for (i = 0; i < matrix->nrows; ++i)
16085 dump_glyph_row (MATRIX_ROW (matrix, i), i, glyphs);
16086 }
16087
16088
16089 /* Dump contents of glyph GLYPH to stderr. ROW and AREA are
16090 the glyph row and area where the glyph comes from. */
16091
16092 void
16093 dump_glyph (row, glyph, area)
16094 struct glyph_row *row;
16095 struct glyph *glyph;
16096 int area;
16097 {
16098 if (glyph->type == CHAR_GLYPH)
16099 {
16100 fprintf (stderr,
16101 " %5d %4c %6d %c %3d 0x%05x %c %4d %1.1d%1.1d\n",
16102 glyph - row->glyphs[TEXT_AREA],
16103 'C',
16104 glyph->charpos,
16105 (BUFFERP (glyph->object)
16106 ? 'B'
16107 : (STRINGP (glyph->object)
16108 ? 'S'
16109 : '-')),
16110 glyph->pixel_width,
16111 glyph->u.ch,
16112 (glyph->u.ch < 0x80 && glyph->u.ch >= ' '
16113 ? glyph->u.ch
16114 : '.'),
16115 glyph->face_id,
16116 glyph->left_box_line_p,
16117 glyph->right_box_line_p);
16118 }
16119 else if (glyph->type == STRETCH_GLYPH)
16120 {
16121 fprintf (stderr,
16122 " %5d %4c %6d %c %3d 0x%05x %c %4d %1.1d%1.1d\n",
16123 glyph - row->glyphs[TEXT_AREA],
16124 'S',
16125 glyph->charpos,
16126 (BUFFERP (glyph->object)
16127 ? 'B'
16128 : (STRINGP (glyph->object)
16129 ? 'S'
16130 : '-')),
16131 glyph->pixel_width,
16132 0,
16133 '.',
16134 glyph->face_id,
16135 glyph->left_box_line_p,
16136 glyph->right_box_line_p);
16137 }
16138 else if (glyph->type == IMAGE_GLYPH)
16139 {
16140 fprintf (stderr,
16141 " %5d %4c %6d %c %3d 0x%05x %c %4d %1.1d%1.1d\n",
16142 glyph - row->glyphs[TEXT_AREA],
16143 'I',
16144 glyph->charpos,
16145 (BUFFERP (glyph->object)
16146 ? 'B'
16147 : (STRINGP (glyph->object)
16148 ? 'S'
16149 : '-')),
16150 glyph->pixel_width,
16151 glyph->u.img_id,
16152 '.',
16153 glyph->face_id,
16154 glyph->left_box_line_p,
16155 glyph->right_box_line_p);
16156 }
16157 else if (glyph->type == COMPOSITE_GLYPH)
16158 {
16159 fprintf (stderr,
16160 " %5d %4c %6d %c %3d 0x%05x",
16161 glyph - row->glyphs[TEXT_AREA],
16162 '+',
16163 glyph->charpos,
16164 (BUFFERP (glyph->object)
16165 ? 'B'
16166 : (STRINGP (glyph->object)
16167 ? 'S'
16168 : '-')),
16169 glyph->pixel_width,
16170 glyph->u.cmp.id);
16171 if (glyph->u.cmp.automatic)
16172 fprintf (stderr,
16173 "[%d-%d]",
16174 glyph->slice.cmp.from, glyph->slice.cmp.to);
16175 fprintf (stderr, " . %4d %1.1d%1.1d\n",
16176 glyph->face_id,
16177 glyph->left_box_line_p,
16178 glyph->right_box_line_p);
16179 }
16180 }
16181
16182
16183 /* Dump the contents of glyph row at VPOS in MATRIX to stderr.
16184 GLYPHS 0 means don't show glyph contents.
16185 GLYPHS 1 means show glyphs in short form
16186 GLYPHS > 1 means show glyphs in long form. */
16187
16188 void
16189 dump_glyph_row (row, vpos, glyphs)
16190 struct glyph_row *row;
16191 int vpos, glyphs;
16192 {
16193 if (glyphs != 1)
16194 {
16195 fprintf (stderr, "Row Start End Used oE><\\CTZFesm X Y W H V A P\n");
16196 fprintf (stderr, "======================================================================\n");
16197
16198 fprintf (stderr, "%3d %5d %5d %4d %1.1d%1.1d%1.1d%1.1d\
16199 %1.1d%1.1d%1.1d%1.1d%1.1d%1.1d%1.1d%1.1d %4d %4d %4d %4d %4d %4d %4d\n",
16200 vpos,
16201 MATRIX_ROW_START_CHARPOS (row),
16202 MATRIX_ROW_END_CHARPOS (row),
16203 row->used[TEXT_AREA],
16204 row->contains_overlapping_glyphs_p,
16205 row->enabled_p,
16206 row->truncated_on_left_p,
16207 row->truncated_on_right_p,
16208 row->continued_p,
16209 MATRIX_ROW_CONTINUATION_LINE_P (row),
16210 row->displays_text_p,
16211 row->ends_at_zv_p,
16212 row->fill_line_p,
16213 row->ends_in_middle_of_char_p,
16214 row->starts_in_middle_of_char_p,
16215 row->mouse_face_p,
16216 row->x,
16217 row->y,
16218 row->pixel_width,
16219 row->height,
16220 row->visible_height,
16221 row->ascent,
16222 row->phys_ascent);
16223 fprintf (stderr, "%9d %5d\t%5d\n", row->start.overlay_string_index,
16224 row->end.overlay_string_index,
16225 row->continuation_lines_width);
16226 fprintf (stderr, "%9d %5d\n",
16227 CHARPOS (row->start.string_pos),
16228 CHARPOS (row->end.string_pos));
16229 fprintf (stderr, "%9d %5d\n", row->start.dpvec_index,
16230 row->end.dpvec_index);
16231 }
16232
16233 if (glyphs > 1)
16234 {
16235 int area;
16236
16237 for (area = LEFT_MARGIN_AREA; area < LAST_AREA; ++area)
16238 {
16239 struct glyph *glyph = row->glyphs[area];
16240 struct glyph *glyph_end = glyph + row->used[area];
16241
16242 /* Glyph for a line end in text. */
16243 if (area == TEXT_AREA && glyph == glyph_end && glyph->charpos > 0)
16244 ++glyph_end;
16245
16246 if (glyph < glyph_end)
16247 fprintf (stderr, " Glyph Type Pos O W Code C Face LR\n");
16248
16249 for (; glyph < glyph_end; ++glyph)
16250 dump_glyph (row, glyph, area);
16251 }
16252 }
16253 else if (glyphs == 1)
16254 {
16255 int area;
16256
16257 for (area = LEFT_MARGIN_AREA; area < LAST_AREA; ++area)
16258 {
16259 char *s = (char *) alloca (row->used[area] + 1);
16260 int i;
16261
16262 for (i = 0; i < row->used[area]; ++i)
16263 {
16264 struct glyph *glyph = row->glyphs[area] + i;
16265 if (glyph->type == CHAR_GLYPH
16266 && glyph->u.ch < 0x80
16267 && glyph->u.ch >= ' ')
16268 s[i] = glyph->u.ch;
16269 else
16270 s[i] = '.';
16271 }
16272
16273 s[i] = '\0';
16274 fprintf (stderr, "%3d: (%d) '%s'\n", vpos, row->enabled_p, s);
16275 }
16276 }
16277 }
16278
16279
16280 DEFUN ("dump-glyph-matrix", Fdump_glyph_matrix,
16281 Sdump_glyph_matrix, 0, 1, "p",
16282 doc: /* Dump the current matrix of the selected window to stderr.
16283 Shows contents of glyph row structures. With non-nil
16284 parameter GLYPHS, dump glyphs as well. If GLYPHS is 1 show
16285 glyphs in short form, otherwise show glyphs in long form. */)
16286 (Lisp_Object glyphs)
16287 {
16288 struct window *w = XWINDOW (selected_window);
16289 struct buffer *buffer = XBUFFER (w->buffer);
16290
16291 fprintf (stderr, "PT = %d, BEGV = %d. ZV = %d\n",
16292 BUF_PT (buffer), BUF_BEGV (buffer), BUF_ZV (buffer));
16293 fprintf (stderr, "Cursor x = %d, y = %d, hpos = %d, vpos = %d\n",
16294 w->cursor.x, w->cursor.y, w->cursor.hpos, w->cursor.vpos);
16295 fprintf (stderr, "=============================================\n");
16296 dump_glyph_matrix (w->current_matrix,
16297 NILP (glyphs) ? 0 : XINT (glyphs));
16298 return Qnil;
16299 }
16300
16301
16302 DEFUN ("dump-frame-glyph-matrix", Fdump_frame_glyph_matrix,
16303 Sdump_frame_glyph_matrix, 0, 0, "", doc: /* */)
16304 (void)
16305 {
16306 struct frame *f = XFRAME (selected_frame);
16307 dump_glyph_matrix (f->current_matrix, 1);
16308 return Qnil;
16309 }
16310
16311
16312 DEFUN ("dump-glyph-row", Fdump_glyph_row, Sdump_glyph_row, 1, 2, "",
16313 doc: /* Dump glyph row ROW to stderr.
16314 GLYPH 0 means don't dump glyphs.
16315 GLYPH 1 means dump glyphs in short form.
16316 GLYPH > 1 or omitted means dump glyphs in long form. */)
16317 (Lisp_Object row, Lisp_Object glyphs)
16318 {
16319 struct glyph_matrix *matrix;
16320 int vpos;
16321
16322 CHECK_NUMBER (row);
16323 matrix = XWINDOW (selected_window)->current_matrix;
16324 vpos = XINT (row);
16325 if (vpos >= 0 && vpos < matrix->nrows)
16326 dump_glyph_row (MATRIX_ROW (matrix, vpos),
16327 vpos,
16328 INTEGERP (glyphs) ? XINT (glyphs) : 2);
16329 return Qnil;
16330 }
16331
16332
16333 DEFUN ("dump-tool-bar-row", Fdump_tool_bar_row, Sdump_tool_bar_row, 1, 2, "",
16334 doc: /* Dump glyph row ROW of the tool-bar of the current frame to stderr.
16335 GLYPH 0 means don't dump glyphs.
16336 GLYPH 1 means dump glyphs in short form.
16337 GLYPH > 1 or omitted means dump glyphs in long form. */)
16338 (Lisp_Object row, Lisp_Object glyphs)
16339 {
16340 struct frame *sf = SELECTED_FRAME ();
16341 struct glyph_matrix *m = XWINDOW (sf->tool_bar_window)->current_matrix;
16342 int vpos;
16343
16344 CHECK_NUMBER (row);
16345 vpos = XINT (row);
16346 if (vpos >= 0 && vpos < m->nrows)
16347 dump_glyph_row (MATRIX_ROW (m, vpos), vpos,
16348 INTEGERP (glyphs) ? XINT (glyphs) : 2);
16349 return Qnil;
16350 }
16351
16352
16353 DEFUN ("trace-redisplay", Ftrace_redisplay, Strace_redisplay, 0, 1, "P",
16354 doc: /* Toggle tracing of redisplay.
16355 With ARG, turn tracing on if and only if ARG is positive. */)
16356 (Lisp_Object arg)
16357 {
16358 if (NILP (arg))
16359 trace_redisplay_p = !trace_redisplay_p;
16360 else
16361 {
16362 arg = Fprefix_numeric_value (arg);
16363 trace_redisplay_p = XINT (arg) > 0;
16364 }
16365
16366 return Qnil;
16367 }
16368
16369
16370 DEFUN ("trace-to-stderr", Ftrace_to_stderr, Strace_to_stderr, 1, MANY, "",
16371 doc: /* Like `format', but print result to stderr.
16372 usage: (trace-to-stderr STRING &rest OBJECTS) */)
16373 (int nargs, Lisp_Object *args)
16374 {
16375 Lisp_Object s = Fformat (nargs, args);
16376 fprintf (stderr, "%s", SDATA (s));
16377 return Qnil;
16378 }
16379
16380 #endif /* GLYPH_DEBUG */
16381
16382
16383 \f
16384 /***********************************************************************
16385 Building Desired Matrix Rows
16386 ***********************************************************************/
16387
16388 /* Return a temporary glyph row holding the glyphs of an overlay arrow.
16389 Used for non-window-redisplay windows, and for windows w/o left fringe. */
16390
16391 static struct glyph_row *
16392 get_overlay_arrow_glyph_row (struct window *w, Lisp_Object overlay_arrow_string)
16393 {
16394 struct frame *f = XFRAME (WINDOW_FRAME (w));
16395 struct buffer *buffer = XBUFFER (w->buffer);
16396 struct buffer *old = current_buffer;
16397 const unsigned char *arrow_string = SDATA (overlay_arrow_string);
16398 int arrow_len = SCHARS (overlay_arrow_string);
16399 const unsigned char *arrow_end = arrow_string + arrow_len;
16400 const unsigned char *p;
16401 struct it it;
16402 int multibyte_p;
16403 int n_glyphs_before;
16404
16405 set_buffer_temp (buffer);
16406 init_iterator (&it, w, -1, -1, &scratch_glyph_row, DEFAULT_FACE_ID);
16407 it.glyph_row->used[TEXT_AREA] = 0;
16408 SET_TEXT_POS (it.position, 0, 0);
16409
16410 multibyte_p = !NILP (BVAR (buffer, enable_multibyte_characters));
16411 p = arrow_string;
16412 while (p < arrow_end)
16413 {
16414 Lisp_Object face, ilisp;
16415
16416 /* Get the next character. */
16417 if (multibyte_p)
16418 it.c = it.char_to_display = string_char_and_length (p, &it.len);
16419 else
16420 {
16421 it.c = it.char_to_display = *p, it.len = 1;
16422 if (! ASCII_CHAR_P (it.c))
16423 it.char_to_display = BYTE8_TO_CHAR (it.c);
16424 }
16425 p += it.len;
16426
16427 /* Get its face. */
16428 ilisp = make_number (p - arrow_string);
16429 face = Fget_text_property (ilisp, Qface, overlay_arrow_string);
16430 it.face_id = compute_char_face (f, it.char_to_display, face);
16431
16432 /* Compute its width, get its glyphs. */
16433 n_glyphs_before = it.glyph_row->used[TEXT_AREA];
16434 SET_TEXT_POS (it.position, -1, -1);
16435 PRODUCE_GLYPHS (&it);
16436
16437 /* If this character doesn't fit any more in the line, we have
16438 to remove some glyphs. */
16439 if (it.current_x > it.last_visible_x)
16440 {
16441 it.glyph_row->used[TEXT_AREA] = n_glyphs_before;
16442 break;
16443 }
16444 }
16445
16446 set_buffer_temp (old);
16447 return it.glyph_row;
16448 }
16449
16450
16451 /* Insert truncation glyphs at the start of IT->glyph_row. Truncation
16452 glyphs are only inserted for terminal frames since we can't really
16453 win with truncation glyphs when partially visible glyphs are
16454 involved. Which glyphs to insert is determined by
16455 produce_special_glyphs. */
16456
16457 static void
16458 insert_left_trunc_glyphs (struct it *it)
16459 {
16460 struct it truncate_it;
16461 struct glyph *from, *end, *to, *toend;
16462
16463 xassert (!FRAME_WINDOW_P (it->f));
16464
16465 /* Get the truncation glyphs. */
16466 truncate_it = *it;
16467 truncate_it.current_x = 0;
16468 truncate_it.face_id = DEFAULT_FACE_ID;
16469 truncate_it.glyph_row = &scratch_glyph_row;
16470 truncate_it.glyph_row->used[TEXT_AREA] = 0;
16471 CHARPOS (truncate_it.position) = BYTEPOS (truncate_it.position) = -1;
16472 truncate_it.object = make_number (0);
16473 produce_special_glyphs (&truncate_it, IT_TRUNCATION);
16474
16475 /* Overwrite glyphs from IT with truncation glyphs. */
16476 if (!it->glyph_row->reversed_p)
16477 {
16478 from = truncate_it.glyph_row->glyphs[TEXT_AREA];
16479 end = from + truncate_it.glyph_row->used[TEXT_AREA];
16480 to = it->glyph_row->glyphs[TEXT_AREA];
16481 toend = to + it->glyph_row->used[TEXT_AREA];
16482
16483 while (from < end)
16484 *to++ = *from++;
16485
16486 /* There may be padding glyphs left over. Overwrite them too. */
16487 while (to < toend && CHAR_GLYPH_PADDING_P (*to))
16488 {
16489 from = truncate_it.glyph_row->glyphs[TEXT_AREA];
16490 while (from < end)
16491 *to++ = *from++;
16492 }
16493
16494 if (to > toend)
16495 it->glyph_row->used[TEXT_AREA] = to - it->glyph_row->glyphs[TEXT_AREA];
16496 }
16497 else
16498 {
16499 /* In R2L rows, overwrite the last (rightmost) glyphs, and do
16500 that back to front. */
16501 end = truncate_it.glyph_row->glyphs[TEXT_AREA];
16502 from = end + truncate_it.glyph_row->used[TEXT_AREA] - 1;
16503 toend = it->glyph_row->glyphs[TEXT_AREA];
16504 to = toend + it->glyph_row->used[TEXT_AREA] - 1;
16505
16506 while (from >= end && to >= toend)
16507 *to-- = *from--;
16508 while (to >= toend && CHAR_GLYPH_PADDING_P (*to))
16509 {
16510 from =
16511 truncate_it.glyph_row->glyphs[TEXT_AREA]
16512 + truncate_it.glyph_row->used[TEXT_AREA] - 1;
16513 while (from >= end && to >= toend)
16514 *to-- = *from--;
16515 }
16516 if (from >= end)
16517 {
16518 /* Need to free some room before prepending additional
16519 glyphs. */
16520 int move_by = from - end + 1;
16521 struct glyph *g0 = it->glyph_row->glyphs[TEXT_AREA];
16522 struct glyph *g = g0 + it->glyph_row->used[TEXT_AREA] - 1;
16523
16524 for ( ; g >= g0; g--)
16525 g[move_by] = *g;
16526 while (from >= end)
16527 *to-- = *from--;
16528 it->glyph_row->used[TEXT_AREA] += move_by;
16529 }
16530 }
16531 }
16532
16533
16534 /* Compute the pixel height and width of IT->glyph_row.
16535
16536 Most of the time, ascent and height of a display line will be equal
16537 to the max_ascent and max_height values of the display iterator
16538 structure. This is not the case if
16539
16540 1. We hit ZV without displaying anything. In this case, max_ascent
16541 and max_height will be zero.
16542
16543 2. We have some glyphs that don't contribute to the line height.
16544 (The glyph row flag contributes_to_line_height_p is for future
16545 pixmap extensions).
16546
16547 The first case is easily covered by using default values because in
16548 these cases, the line height does not really matter, except that it
16549 must not be zero. */
16550
16551 static void
16552 compute_line_metrics (struct it *it)
16553 {
16554 struct glyph_row *row = it->glyph_row;
16555
16556 if (FRAME_WINDOW_P (it->f))
16557 {
16558 int i, min_y, max_y;
16559
16560 /* The line may consist of one space only, that was added to
16561 place the cursor on it. If so, the row's height hasn't been
16562 computed yet. */
16563 if (row->height == 0)
16564 {
16565 if (it->max_ascent + it->max_descent == 0)
16566 it->max_descent = it->max_phys_descent = FRAME_LINE_HEIGHT (it->f);
16567 row->ascent = it->max_ascent;
16568 row->height = it->max_ascent + it->max_descent;
16569 row->phys_ascent = it->max_phys_ascent;
16570 row->phys_height = it->max_phys_ascent + it->max_phys_descent;
16571 row->extra_line_spacing = it->max_extra_line_spacing;
16572 }
16573
16574 /* Compute the width of this line. */
16575 row->pixel_width = row->x;
16576 for (i = 0; i < row->used[TEXT_AREA]; ++i)
16577 row->pixel_width += row->glyphs[TEXT_AREA][i].pixel_width;
16578
16579 xassert (row->pixel_width >= 0);
16580 xassert (row->ascent >= 0 && row->height > 0);
16581
16582 row->overlapping_p = (MATRIX_ROW_OVERLAPS_SUCC_P (row)
16583 || MATRIX_ROW_OVERLAPS_PRED_P (row));
16584
16585 /* If first line's physical ascent is larger than its logical
16586 ascent, use the physical ascent, and make the row taller.
16587 This makes accented characters fully visible. */
16588 if (row == MATRIX_FIRST_TEXT_ROW (it->w->desired_matrix)
16589 && row->phys_ascent > row->ascent)
16590 {
16591 row->height += row->phys_ascent - row->ascent;
16592 row->ascent = row->phys_ascent;
16593 }
16594
16595 /* Compute how much of the line is visible. */
16596 row->visible_height = row->height;
16597
16598 min_y = WINDOW_HEADER_LINE_HEIGHT (it->w);
16599 max_y = WINDOW_BOX_HEIGHT_NO_MODE_LINE (it->w);
16600
16601 if (row->y < min_y)
16602 row->visible_height -= min_y - row->y;
16603 if (row->y + row->height > max_y)
16604 row->visible_height -= row->y + row->height - max_y;
16605 }
16606 else
16607 {
16608 row->pixel_width = row->used[TEXT_AREA];
16609 if (row->continued_p)
16610 row->pixel_width -= it->continuation_pixel_width;
16611 else if (row->truncated_on_right_p)
16612 row->pixel_width -= it->truncation_pixel_width;
16613 row->ascent = row->phys_ascent = 0;
16614 row->height = row->phys_height = row->visible_height = 1;
16615 row->extra_line_spacing = 0;
16616 }
16617
16618 /* Compute a hash code for this row. */
16619 {
16620 int area, i;
16621 row->hash = 0;
16622 for (area = LEFT_MARGIN_AREA; area < LAST_AREA; ++area)
16623 for (i = 0; i < row->used[area]; ++i)
16624 row->hash = ((((row->hash << 4) + (row->hash >> 24)) & 0x0fffffff)
16625 + row->glyphs[area][i].u.val
16626 + row->glyphs[area][i].face_id
16627 + row->glyphs[area][i].padding_p
16628 + (row->glyphs[area][i].type << 2));
16629 }
16630
16631 it->max_ascent = it->max_descent = 0;
16632 it->max_phys_ascent = it->max_phys_descent = 0;
16633 }
16634
16635
16636 /* Append one space to the glyph row of iterator IT if doing a
16637 window-based redisplay. The space has the same face as
16638 IT->face_id. Value is non-zero if a space was added.
16639
16640 This function is called to make sure that there is always one glyph
16641 at the end of a glyph row that the cursor can be set on under
16642 window-systems. (If there weren't such a glyph we would not know
16643 how wide and tall a box cursor should be displayed).
16644
16645 At the same time this space let's a nicely handle clearing to the
16646 end of the line if the row ends in italic text. */
16647
16648 static int
16649 append_space_for_newline (struct it *it, int default_face_p)
16650 {
16651 if (FRAME_WINDOW_P (it->f))
16652 {
16653 int n = it->glyph_row->used[TEXT_AREA];
16654
16655 if (it->glyph_row->glyphs[TEXT_AREA] + n
16656 < it->glyph_row->glyphs[1 + TEXT_AREA])
16657 {
16658 /* Save some values that must not be changed.
16659 Must save IT->c and IT->len because otherwise
16660 ITERATOR_AT_END_P wouldn't work anymore after
16661 append_space_for_newline has been called. */
16662 enum display_element_type saved_what = it->what;
16663 int saved_c = it->c, saved_len = it->len;
16664 int saved_char_to_display = it->char_to_display;
16665 int saved_x = it->current_x;
16666 int saved_face_id = it->face_id;
16667 struct text_pos saved_pos;
16668 Lisp_Object saved_object;
16669 struct face *face;
16670
16671 saved_object = it->object;
16672 saved_pos = it->position;
16673
16674 it->what = IT_CHARACTER;
16675 memset (&it->position, 0, sizeof it->position);
16676 it->object = make_number (0);
16677 it->c = it->char_to_display = ' ';
16678 it->len = 1;
16679
16680 if (default_face_p)
16681 it->face_id = DEFAULT_FACE_ID;
16682 else if (it->face_before_selective_p)
16683 it->face_id = it->saved_face_id;
16684 face = FACE_FROM_ID (it->f, it->face_id);
16685 it->face_id = FACE_FOR_CHAR (it->f, face, 0, -1, Qnil);
16686
16687 PRODUCE_GLYPHS (it);
16688
16689 it->override_ascent = -1;
16690 it->constrain_row_ascent_descent_p = 0;
16691 it->current_x = saved_x;
16692 it->object = saved_object;
16693 it->position = saved_pos;
16694 it->what = saved_what;
16695 it->face_id = saved_face_id;
16696 it->len = saved_len;
16697 it->c = saved_c;
16698 it->char_to_display = saved_char_to_display;
16699 return 1;
16700 }
16701 }
16702
16703 return 0;
16704 }
16705
16706
16707 /* Extend the face of the last glyph in the text area of IT->glyph_row
16708 to the end of the display line. Called from display_line. If the
16709 glyph row is empty, add a space glyph to it so that we know the
16710 face to draw. Set the glyph row flag fill_line_p. If the glyph
16711 row is R2L, prepend a stretch glyph to cover the empty space to the
16712 left of the leftmost glyph. */
16713
16714 static void
16715 extend_face_to_end_of_line (struct it *it)
16716 {
16717 struct face *face;
16718 struct frame *f = it->f;
16719
16720 /* If line is already filled, do nothing. Non window-system frames
16721 get a grace of one more ``pixel'' because their characters are
16722 1-``pixel'' wide, so they hit the equality too early. This grace
16723 is needed only for R2L rows that are not continued, to produce
16724 one extra blank where we could display the cursor. */
16725 if (it->current_x >= it->last_visible_x
16726 + (!FRAME_WINDOW_P (f)
16727 && it->glyph_row->reversed_p
16728 && !it->glyph_row->continued_p))
16729 return;
16730
16731 /* Face extension extends the background and box of IT->face_id
16732 to the end of the line. If the background equals the background
16733 of the frame, we don't have to do anything. */
16734 if (it->face_before_selective_p)
16735 face = FACE_FROM_ID (f, it->saved_face_id);
16736 else
16737 face = FACE_FROM_ID (f, it->face_id);
16738
16739 if (FRAME_WINDOW_P (f)
16740 && it->glyph_row->displays_text_p
16741 && face->box == FACE_NO_BOX
16742 && face->background == FRAME_BACKGROUND_PIXEL (f)
16743 && !face->stipple
16744 && !it->glyph_row->reversed_p)
16745 return;
16746
16747 /* Set the glyph row flag indicating that the face of the last glyph
16748 in the text area has to be drawn to the end of the text area. */
16749 it->glyph_row->fill_line_p = 1;
16750
16751 /* If current character of IT is not ASCII, make sure we have the
16752 ASCII face. This will be automatically undone the next time
16753 get_next_display_element returns a multibyte character. Note
16754 that the character will always be single byte in unibyte
16755 text. */
16756 if (!ASCII_CHAR_P (it->c))
16757 {
16758 it->face_id = FACE_FOR_CHAR (f, face, 0, -1, Qnil);
16759 }
16760
16761 if (FRAME_WINDOW_P (f))
16762 {
16763 /* If the row is empty, add a space with the current face of IT,
16764 so that we know which face to draw. */
16765 if (it->glyph_row->used[TEXT_AREA] == 0)
16766 {
16767 it->glyph_row->glyphs[TEXT_AREA][0] = space_glyph;
16768 it->glyph_row->glyphs[TEXT_AREA][0].face_id = it->face_id;
16769 it->glyph_row->used[TEXT_AREA] = 1;
16770 }
16771 #ifdef HAVE_WINDOW_SYSTEM
16772 if (it->glyph_row->reversed_p)
16773 {
16774 /* Prepend a stretch glyph to the row, such that the
16775 rightmost glyph will be drawn flushed all the way to the
16776 right margin of the window. The stretch glyph that will
16777 occupy the empty space, if any, to the left of the
16778 glyphs. */
16779 struct font *font = face->font ? face->font : FRAME_FONT (f);
16780 struct glyph *row_start = it->glyph_row->glyphs[TEXT_AREA];
16781 struct glyph *row_end = row_start + it->glyph_row->used[TEXT_AREA];
16782 struct glyph *g;
16783 int row_width, stretch_ascent, stretch_width;
16784 struct text_pos saved_pos;
16785 int saved_face_id, saved_avoid_cursor;
16786
16787 for (row_width = 0, g = row_start; g < row_end; g++)
16788 row_width += g->pixel_width;
16789 stretch_width = window_box_width (it->w, TEXT_AREA) - row_width;
16790 if (stretch_width > 0)
16791 {
16792 stretch_ascent =
16793 (((it->ascent + it->descent)
16794 * FONT_BASE (font)) / FONT_HEIGHT (font));
16795 saved_pos = it->position;
16796 memset (&it->position, 0, sizeof it->position);
16797 saved_avoid_cursor = it->avoid_cursor_p;
16798 it->avoid_cursor_p = 1;
16799 saved_face_id = it->face_id;
16800 /* The last row's stretch glyph should get the default
16801 face, to avoid painting the rest of the window with
16802 the region face, if the region ends at ZV. */
16803 if (it->glyph_row->ends_at_zv_p)
16804 it->face_id = DEFAULT_FACE_ID;
16805 else
16806 it->face_id = face->id;
16807 append_stretch_glyph (it, make_number (0), stretch_width,
16808 it->ascent + it->descent, stretch_ascent);
16809 it->position = saved_pos;
16810 it->avoid_cursor_p = saved_avoid_cursor;
16811 it->face_id = saved_face_id;
16812 }
16813 }
16814 #endif /* HAVE_WINDOW_SYSTEM */
16815 }
16816 else
16817 {
16818 /* Save some values that must not be changed. */
16819 int saved_x = it->current_x;
16820 struct text_pos saved_pos;
16821 Lisp_Object saved_object;
16822 enum display_element_type saved_what = it->what;
16823 int saved_face_id = it->face_id;
16824
16825 saved_object = it->object;
16826 saved_pos = it->position;
16827
16828 it->what = IT_CHARACTER;
16829 memset (&it->position, 0, sizeof it->position);
16830 it->object = make_number (0);
16831 it->c = it->char_to_display = ' ';
16832 it->len = 1;
16833 /* The last row's blank glyphs should get the default face, to
16834 avoid painting the rest of the window with the region face,
16835 if the region ends at ZV. */
16836 if (it->glyph_row->ends_at_zv_p)
16837 it->face_id = DEFAULT_FACE_ID;
16838 else
16839 it->face_id = face->id;
16840
16841 PRODUCE_GLYPHS (it);
16842
16843 while (it->current_x <= it->last_visible_x)
16844 PRODUCE_GLYPHS (it);
16845
16846 /* Don't count these blanks really. It would let us insert a left
16847 truncation glyph below and make us set the cursor on them, maybe. */
16848 it->current_x = saved_x;
16849 it->object = saved_object;
16850 it->position = saved_pos;
16851 it->what = saved_what;
16852 it->face_id = saved_face_id;
16853 }
16854 }
16855
16856
16857 /* Value is non-zero if text starting at CHARPOS in current_buffer is
16858 trailing whitespace. */
16859
16860 static int
16861 trailing_whitespace_p (EMACS_INT charpos)
16862 {
16863 EMACS_INT bytepos = CHAR_TO_BYTE (charpos);
16864 int c = 0;
16865
16866 while (bytepos < ZV_BYTE
16867 && (c = FETCH_CHAR (bytepos),
16868 c == ' ' || c == '\t'))
16869 ++bytepos;
16870
16871 if (bytepos >= ZV_BYTE || c == '\n' || c == '\r')
16872 {
16873 if (bytepos != PT_BYTE)
16874 return 1;
16875 }
16876 return 0;
16877 }
16878
16879
16880 /* Highlight trailing whitespace, if any, in ROW. */
16881
16882 void
16883 highlight_trailing_whitespace (struct frame *f, struct glyph_row *row)
16884 {
16885 int used = row->used[TEXT_AREA];
16886
16887 if (used)
16888 {
16889 struct glyph *start = row->glyphs[TEXT_AREA];
16890 struct glyph *glyph = start + used - 1;
16891
16892 if (row->reversed_p)
16893 {
16894 /* Right-to-left rows need to be processed in the opposite
16895 direction, so swap the edge pointers. */
16896 glyph = start;
16897 start = row->glyphs[TEXT_AREA] + used - 1;
16898 }
16899
16900 /* Skip over glyphs inserted to display the cursor at the
16901 end of a line, for extending the face of the last glyph
16902 to the end of the line on terminals, and for truncation
16903 and continuation glyphs. */
16904 if (!row->reversed_p)
16905 {
16906 while (glyph >= start
16907 && glyph->type == CHAR_GLYPH
16908 && INTEGERP (glyph->object))
16909 --glyph;
16910 }
16911 else
16912 {
16913 while (glyph <= start
16914 && glyph->type == CHAR_GLYPH
16915 && INTEGERP (glyph->object))
16916 ++glyph;
16917 }
16918
16919 /* If last glyph is a space or stretch, and it's trailing
16920 whitespace, set the face of all trailing whitespace glyphs in
16921 IT->glyph_row to `trailing-whitespace'. */
16922 if ((row->reversed_p ? glyph <= start : glyph >= start)
16923 && BUFFERP (glyph->object)
16924 && (glyph->type == STRETCH_GLYPH
16925 || (glyph->type == CHAR_GLYPH
16926 && glyph->u.ch == ' '))
16927 && trailing_whitespace_p (glyph->charpos))
16928 {
16929 int face_id = lookup_named_face (f, Qtrailing_whitespace, 0);
16930 if (face_id < 0)
16931 return;
16932
16933 if (!row->reversed_p)
16934 {
16935 while (glyph >= start
16936 && BUFFERP (glyph->object)
16937 && (glyph->type == STRETCH_GLYPH
16938 || (glyph->type == CHAR_GLYPH
16939 && glyph->u.ch == ' ')))
16940 (glyph--)->face_id = face_id;
16941 }
16942 else
16943 {
16944 while (glyph <= start
16945 && BUFFERP (glyph->object)
16946 && (glyph->type == STRETCH_GLYPH
16947 || (glyph->type == CHAR_GLYPH
16948 && glyph->u.ch == ' ')))
16949 (glyph++)->face_id = face_id;
16950 }
16951 }
16952 }
16953 }
16954
16955
16956 /* Value is non-zero if glyph row ROW in window W should be
16957 used to hold the cursor. */
16958
16959 static int
16960 cursor_row_p (struct window *w, struct glyph_row *row)
16961 {
16962 int result = 1;
16963
16964 if (PT == CHARPOS (row->end.pos))
16965 {
16966 /* Suppose the row ends on a string.
16967 Unless the row is continued, that means it ends on a newline
16968 in the string. If it's anything other than a display string
16969 (e.g. a before-string from an overlay), we don't want the
16970 cursor there. (This heuristic seems to give the optimal
16971 behavior for the various types of multi-line strings.) */
16972 if (CHARPOS (row->end.string_pos) >= 0)
16973 {
16974 if (row->continued_p)
16975 result = 1;
16976 else
16977 {
16978 /* Check for `display' property. */
16979 struct glyph *beg = row->glyphs[TEXT_AREA];
16980 struct glyph *end = beg + row->used[TEXT_AREA] - 1;
16981 struct glyph *glyph;
16982
16983 result = 0;
16984 for (glyph = end; glyph >= beg; --glyph)
16985 if (STRINGP (glyph->object))
16986 {
16987 Lisp_Object prop
16988 = Fget_char_property (make_number (PT),
16989 Qdisplay, Qnil);
16990 result =
16991 (!NILP (prop)
16992 && display_prop_string_p (prop, glyph->object));
16993 break;
16994 }
16995 }
16996 }
16997 else if (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row))
16998 {
16999 /* If the row ends in middle of a real character,
17000 and the line is continued, we want the cursor here.
17001 That's because CHARPOS (ROW->end.pos) would equal
17002 PT if PT is before the character. */
17003 if (!row->ends_in_ellipsis_p)
17004 result = row->continued_p;
17005 else
17006 /* If the row ends in an ellipsis, then
17007 CHARPOS (ROW->end.pos) will equal point after the
17008 invisible text. We want that position to be displayed
17009 after the ellipsis. */
17010 result = 0;
17011 }
17012 /* If the row ends at ZV, display the cursor at the end of that
17013 row instead of at the start of the row below. */
17014 else if (row->ends_at_zv_p)
17015 result = 1;
17016 else
17017 result = 0;
17018 }
17019
17020 return result;
17021 }
17022
17023 \f
17024
17025 /* Push the display property PROP so that it will be rendered at the
17026 current position in IT. Return 1 if PROP was successfully pushed,
17027 0 otherwise. */
17028
17029 static int
17030 push_display_prop (struct it *it, Lisp_Object prop)
17031 {
17032 push_it (it);
17033
17034 if (STRINGP (prop))
17035 {
17036 if (SCHARS (prop) == 0)
17037 {
17038 pop_it (it);
17039 return 0;
17040 }
17041
17042 it->string = prop;
17043 it->multibyte_p = STRING_MULTIBYTE (it->string);
17044 it->current.overlay_string_index = -1;
17045 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = 0;
17046 it->end_charpos = it->string_nchars = SCHARS (it->string);
17047 it->method = GET_FROM_STRING;
17048 it->stop_charpos = 0;
17049 }
17050 else if (CONSP (prop) && EQ (XCAR (prop), Qspace))
17051 {
17052 it->method = GET_FROM_STRETCH;
17053 it->object = prop;
17054 }
17055 #ifdef HAVE_WINDOW_SYSTEM
17056 else if (IMAGEP (prop))
17057 {
17058 it->what = IT_IMAGE;
17059 it->image_id = lookup_image (it->f, prop);
17060 it->method = GET_FROM_IMAGE;
17061 }
17062 #endif /* HAVE_WINDOW_SYSTEM */
17063 else
17064 {
17065 pop_it (it); /* bogus display property, give up */
17066 return 0;
17067 }
17068
17069 return 1;
17070 }
17071
17072 /* Return the character-property PROP at the current position in IT. */
17073
17074 static Lisp_Object
17075 get_it_property (struct it *it, Lisp_Object prop)
17076 {
17077 Lisp_Object position;
17078
17079 if (STRINGP (it->object))
17080 position = make_number (IT_STRING_CHARPOS (*it));
17081 else if (BUFFERP (it->object))
17082 position = make_number (IT_CHARPOS (*it));
17083 else
17084 return Qnil;
17085
17086 return Fget_char_property (position, prop, it->object);
17087 }
17088
17089 /* See if there's a line- or wrap-prefix, and if so, push it on IT. */
17090
17091 static void
17092 handle_line_prefix (struct it *it)
17093 {
17094 Lisp_Object prefix;
17095 if (it->continuation_lines_width > 0)
17096 {
17097 prefix = get_it_property (it, Qwrap_prefix);
17098 if (NILP (prefix))
17099 prefix = Vwrap_prefix;
17100 }
17101 else
17102 {
17103 prefix = get_it_property (it, Qline_prefix);
17104 if (NILP (prefix))
17105 prefix = Vline_prefix;
17106 }
17107 if (! NILP (prefix) && push_display_prop (it, prefix))
17108 {
17109 /* If the prefix is wider than the window, and we try to wrap
17110 it, it would acquire its own wrap prefix, and so on till the
17111 iterator stack overflows. So, don't wrap the prefix. */
17112 it->line_wrap = TRUNCATE;
17113 it->avoid_cursor_p = 1;
17114 }
17115 }
17116
17117 \f
17118
17119 /* Remove N glyphs at the start of a reversed IT->glyph_row. Called
17120 only for R2L lines from display_line, when it decides that too many
17121 glyphs were produced by PRODUCE_GLYPHS, and the line needs to be
17122 continued. */
17123 static void
17124 unproduce_glyphs (struct it *it, int n)
17125 {
17126 struct glyph *glyph, *end;
17127
17128 xassert (it->glyph_row);
17129 xassert (it->glyph_row->reversed_p);
17130 xassert (it->area == TEXT_AREA);
17131 xassert (n <= it->glyph_row->used[TEXT_AREA]);
17132
17133 if (n > it->glyph_row->used[TEXT_AREA])
17134 n = it->glyph_row->used[TEXT_AREA];
17135 glyph = it->glyph_row->glyphs[TEXT_AREA] + n;
17136 end = it->glyph_row->glyphs[TEXT_AREA] + it->glyph_row->used[TEXT_AREA];
17137 for ( ; glyph < end; glyph++)
17138 glyph[-n] = *glyph;
17139 }
17140
17141 /* Find the positions in a bidi-reordered ROW to serve as ROW->minpos
17142 and ROW->maxpos. */
17143 static void
17144 find_row_edges (struct it *it, struct glyph_row *row,
17145 EMACS_INT min_pos, EMACS_INT min_bpos,
17146 EMACS_INT max_pos, EMACS_INT max_bpos)
17147 {
17148 /* FIXME: Revisit this when glyph ``spilling'' in continuation
17149 lines' rows is implemented for bidi-reordered rows. */
17150
17151 /* ROW->minpos is the value of min_pos, the minimal buffer position
17152 we have in ROW. */
17153 if (min_pos <= ZV)
17154 SET_TEXT_POS (row->minpos, min_pos, min_bpos);
17155 else
17156 /* We didn't find _any_ valid buffer positions in any of the
17157 glyphs, so we must trust the iterator's computed positions. */
17158 row->minpos = row->start.pos;
17159 if (max_pos <= 0)
17160 {
17161 max_pos = CHARPOS (it->current.pos);
17162 max_bpos = BYTEPOS (it->current.pos);
17163 }
17164
17165 /* Here are the various use-cases for ending the row, and the
17166 corresponding values for ROW->maxpos:
17167
17168 Line ends in a newline from buffer eol_pos + 1
17169 Line is continued from buffer max_pos + 1
17170 Line is truncated on right it->current.pos
17171 Line ends in a newline from string max_pos
17172 Line is continued from string max_pos
17173 Line is continued from display vector max_pos
17174 Line is entirely from a string min_pos == max_pos
17175 Line is entirely from a display vector min_pos == max_pos
17176 Line that ends at ZV ZV
17177
17178 If you discover other use-cases, please add them here as
17179 appropriate. */
17180 if (row->ends_at_zv_p)
17181 row->maxpos = it->current.pos;
17182 else if (row->used[TEXT_AREA])
17183 {
17184 if (row->ends_in_newline_from_string_p)
17185 SET_TEXT_POS (row->maxpos, max_pos, max_bpos);
17186 else if (CHARPOS (it->eol_pos) > 0)
17187 SET_TEXT_POS (row->maxpos,
17188 CHARPOS (it->eol_pos) + 1, BYTEPOS (it->eol_pos) + 1);
17189 else if (row->continued_p)
17190 {
17191 /* If max_pos is different from IT's current position, it
17192 means IT->method does not belong to the display element
17193 at max_pos. However, it also means that the display
17194 element at max_pos was displayed in its entirety on this
17195 line, which is equivalent to saying that the next line
17196 starts at the next buffer position. */
17197 if (IT_CHARPOS (*it) == max_pos && it->method != GET_FROM_BUFFER)
17198 SET_TEXT_POS (row->maxpos, max_pos, max_bpos);
17199 else
17200 {
17201 INC_BOTH (max_pos, max_bpos);
17202 SET_TEXT_POS (row->maxpos, max_pos, max_bpos);
17203 }
17204 }
17205 else if (row->truncated_on_right_p)
17206 /* display_line already called reseat_at_next_visible_line_start,
17207 which puts the iterator at the beginning of the next line, in
17208 the logical order. */
17209 row->maxpos = it->current.pos;
17210 else if (max_pos == min_pos && it->method != GET_FROM_BUFFER)
17211 /* A line that is entirely from a string/image/stretch... */
17212 row->maxpos = row->minpos;
17213 else
17214 abort ();
17215 }
17216 else
17217 row->maxpos = it->current.pos;
17218 }
17219
17220 /* Construct the glyph row IT->glyph_row in the desired matrix of
17221 IT->w from text at the current position of IT. See dispextern.h
17222 for an overview of struct it. Value is non-zero if
17223 IT->glyph_row displays text, as opposed to a line displaying ZV
17224 only. */
17225
17226 static int
17227 display_line (struct it *it)
17228 {
17229 struct glyph_row *row = it->glyph_row;
17230 Lisp_Object overlay_arrow_string;
17231 struct it wrap_it;
17232 int may_wrap = 0, wrap_x IF_LINT (= 0);
17233 int wrap_row_used = -1;
17234 int wrap_row_ascent IF_LINT (= 0), wrap_row_height IF_LINT (= 0);
17235 int wrap_row_phys_ascent IF_LINT (= 0), wrap_row_phys_height IF_LINT (= 0);
17236 int wrap_row_extra_line_spacing IF_LINT (= 0);
17237 EMACS_INT wrap_row_min_pos IF_LINT (= 0), wrap_row_min_bpos IF_LINT (= 0);
17238 EMACS_INT wrap_row_max_pos IF_LINT (= 0), wrap_row_max_bpos IF_LINT (= 0);
17239 int cvpos;
17240 EMACS_INT min_pos = ZV + 1, max_pos = 0;
17241 EMACS_INT min_bpos IF_LINT (= 0), max_bpos IF_LINT (= 0);
17242
17243 /* We always start displaying at hpos zero even if hscrolled. */
17244 xassert (it->hpos == 0 && it->current_x == 0);
17245
17246 if (MATRIX_ROW_VPOS (row, it->w->desired_matrix)
17247 >= it->w->desired_matrix->nrows)
17248 {
17249 it->w->nrows_scale_factor++;
17250 fonts_changed_p = 1;
17251 return 0;
17252 }
17253
17254 /* Is IT->w showing the region? */
17255 it->w->region_showing = it->region_beg_charpos > 0 ? Qt : Qnil;
17256
17257 /* Clear the result glyph row and enable it. */
17258 prepare_desired_row (row);
17259
17260 row->y = it->current_y;
17261 row->start = it->start;
17262 row->continuation_lines_width = it->continuation_lines_width;
17263 row->displays_text_p = 1;
17264 row->starts_in_middle_of_char_p = it->starts_in_middle_of_char_p;
17265 it->starts_in_middle_of_char_p = 0;
17266
17267 /* Arrange the overlays nicely for our purposes. Usually, we call
17268 display_line on only one line at a time, in which case this
17269 can't really hurt too much, or we call it on lines which appear
17270 one after another in the buffer, in which case all calls to
17271 recenter_overlay_lists but the first will be pretty cheap. */
17272 recenter_overlay_lists (current_buffer, IT_CHARPOS (*it));
17273
17274 /* Move over display elements that are not visible because we are
17275 hscrolled. This may stop at an x-position < IT->first_visible_x
17276 if the first glyph is partially visible or if we hit a line end. */
17277 if (it->current_x < it->first_visible_x)
17278 {
17279 this_line_min_pos = row->start.pos;
17280 move_it_in_display_line_to (it, ZV, it->first_visible_x,
17281 MOVE_TO_POS | MOVE_TO_X);
17282 /* Record the smallest positions seen while we moved over
17283 display elements that are not visible. This is needed by
17284 redisplay_internal for optimizing the case where the cursor
17285 stays inside the same line. The rest of this function only
17286 considers positions that are actually displayed, so
17287 RECORD_MAX_MIN_POS will not otherwise record positions that
17288 are hscrolled to the left of the left edge of the window. */
17289 min_pos = CHARPOS (this_line_min_pos);
17290 min_bpos = BYTEPOS (this_line_min_pos);
17291 }
17292 else
17293 {
17294 /* We only do this when not calling `move_it_in_display_line_to'
17295 above, because move_it_in_display_line_to calls
17296 handle_line_prefix itself. */
17297 handle_line_prefix (it);
17298 }
17299
17300 /* Get the initial row height. This is either the height of the
17301 text hscrolled, if there is any, or zero. */
17302 row->ascent = it->max_ascent;
17303 row->height = it->max_ascent + it->max_descent;
17304 row->phys_ascent = it->max_phys_ascent;
17305 row->phys_height = it->max_phys_ascent + it->max_phys_descent;
17306 row->extra_line_spacing = it->max_extra_line_spacing;
17307
17308 /* Utility macro to record max and min buffer positions seen until now. */
17309 #define RECORD_MAX_MIN_POS(IT) \
17310 do \
17311 { \
17312 if (IT_CHARPOS (*(IT)) < min_pos) \
17313 { \
17314 min_pos = IT_CHARPOS (*(IT)); \
17315 min_bpos = IT_BYTEPOS (*(IT)); \
17316 } \
17317 if (IT_CHARPOS (*(IT)) > max_pos) \
17318 { \
17319 max_pos = IT_CHARPOS (*(IT)); \
17320 max_bpos = IT_BYTEPOS (*(IT)); \
17321 } \
17322 } \
17323 while (0)
17324
17325 /* Loop generating characters. The loop is left with IT on the next
17326 character to display. */
17327 while (1)
17328 {
17329 int n_glyphs_before, hpos_before, x_before;
17330 int x, nglyphs;
17331 int ascent = 0, descent = 0, phys_ascent = 0, phys_descent = 0;
17332
17333 /* Retrieve the next thing to display. Value is zero if end of
17334 buffer reached. */
17335 if (!get_next_display_element (it))
17336 {
17337 /* Maybe add a space at the end of this line that is used to
17338 display the cursor there under X. Set the charpos of the
17339 first glyph of blank lines not corresponding to any text
17340 to -1. */
17341 if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
17342 row->exact_window_width_line_p = 1;
17343 else if ((append_space_for_newline (it, 1) && row->used[TEXT_AREA] == 1)
17344 || row->used[TEXT_AREA] == 0)
17345 {
17346 row->glyphs[TEXT_AREA]->charpos = -1;
17347 row->displays_text_p = 0;
17348
17349 if (!NILP (BVAR (XBUFFER (it->w->buffer), indicate_empty_lines))
17350 && (!MINI_WINDOW_P (it->w)
17351 || (minibuf_level && EQ (it->window, minibuf_window))))
17352 row->indicate_empty_line_p = 1;
17353 }
17354
17355 it->continuation_lines_width = 0;
17356 row->ends_at_zv_p = 1;
17357 /* A row that displays right-to-left text must always have
17358 its last face extended all the way to the end of line,
17359 even if this row ends in ZV, because we still write to
17360 the screen left to right. */
17361 if (row->reversed_p)
17362 extend_face_to_end_of_line (it);
17363 break;
17364 }
17365
17366 /* Now, get the metrics of what we want to display. This also
17367 generates glyphs in `row' (which is IT->glyph_row). */
17368 n_glyphs_before = row->used[TEXT_AREA];
17369 x = it->current_x;
17370
17371 /* Remember the line height so far in case the next element doesn't
17372 fit on the line. */
17373 if (it->line_wrap != TRUNCATE)
17374 {
17375 ascent = it->max_ascent;
17376 descent = it->max_descent;
17377 phys_ascent = it->max_phys_ascent;
17378 phys_descent = it->max_phys_descent;
17379
17380 if (it->line_wrap == WORD_WRAP && it->area == TEXT_AREA)
17381 {
17382 if (IT_DISPLAYING_WHITESPACE (it))
17383 may_wrap = 1;
17384 else if (may_wrap)
17385 {
17386 wrap_it = *it;
17387 wrap_x = x;
17388 wrap_row_used = row->used[TEXT_AREA];
17389 wrap_row_ascent = row->ascent;
17390 wrap_row_height = row->height;
17391 wrap_row_phys_ascent = row->phys_ascent;
17392 wrap_row_phys_height = row->phys_height;
17393 wrap_row_extra_line_spacing = row->extra_line_spacing;
17394 wrap_row_min_pos = min_pos;
17395 wrap_row_min_bpos = min_bpos;
17396 wrap_row_max_pos = max_pos;
17397 wrap_row_max_bpos = max_bpos;
17398 may_wrap = 0;
17399 }
17400 }
17401 }
17402
17403 PRODUCE_GLYPHS (it);
17404
17405 /* If this display element was in marginal areas, continue with
17406 the next one. */
17407 if (it->area != TEXT_AREA)
17408 {
17409 row->ascent = max (row->ascent, it->max_ascent);
17410 row->height = max (row->height, it->max_ascent + it->max_descent);
17411 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
17412 row->phys_height = max (row->phys_height,
17413 it->max_phys_ascent + it->max_phys_descent);
17414 row->extra_line_spacing = max (row->extra_line_spacing,
17415 it->max_extra_line_spacing);
17416 set_iterator_to_next (it, 1);
17417 continue;
17418 }
17419
17420 /* Does the display element fit on the line? If we truncate
17421 lines, we should draw past the right edge of the window. If
17422 we don't truncate, we want to stop so that we can display the
17423 continuation glyph before the right margin. If lines are
17424 continued, there are two possible strategies for characters
17425 resulting in more than 1 glyph (e.g. tabs): Display as many
17426 glyphs as possible in this line and leave the rest for the
17427 continuation line, or display the whole element in the next
17428 line. Original redisplay did the former, so we do it also. */
17429 nglyphs = row->used[TEXT_AREA] - n_glyphs_before;
17430 hpos_before = it->hpos;
17431 x_before = x;
17432
17433 if (/* Not a newline. */
17434 nglyphs > 0
17435 /* Glyphs produced fit entirely in the line. */
17436 && it->current_x < it->last_visible_x)
17437 {
17438 it->hpos += nglyphs;
17439 row->ascent = max (row->ascent, it->max_ascent);
17440 row->height = max (row->height, it->max_ascent + it->max_descent);
17441 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
17442 row->phys_height = max (row->phys_height,
17443 it->max_phys_ascent + it->max_phys_descent);
17444 row->extra_line_spacing = max (row->extra_line_spacing,
17445 it->max_extra_line_spacing);
17446 if (it->current_x - it->pixel_width < it->first_visible_x)
17447 row->x = x - it->first_visible_x;
17448 /* Record the maximum and minimum buffer positions seen so
17449 far in glyphs that will be displayed by this row. */
17450 if (it->bidi_p)
17451 RECORD_MAX_MIN_POS (it);
17452 }
17453 else
17454 {
17455 int i, new_x;
17456 struct glyph *glyph;
17457
17458 for (i = 0; i < nglyphs; ++i, x = new_x)
17459 {
17460 glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i;
17461 new_x = x + glyph->pixel_width;
17462
17463 if (/* Lines are continued. */
17464 it->line_wrap != TRUNCATE
17465 && (/* Glyph doesn't fit on the line. */
17466 new_x > it->last_visible_x
17467 /* Or it fits exactly on a window system frame. */
17468 || (new_x == it->last_visible_x
17469 && FRAME_WINDOW_P (it->f))))
17470 {
17471 /* End of a continued line. */
17472
17473 if (it->hpos == 0
17474 || (new_x == it->last_visible_x
17475 && FRAME_WINDOW_P (it->f)))
17476 {
17477 /* Current glyph is the only one on the line or
17478 fits exactly on the line. We must continue
17479 the line because we can't draw the cursor
17480 after the glyph. */
17481 row->continued_p = 1;
17482 it->current_x = new_x;
17483 it->continuation_lines_width += new_x;
17484 ++it->hpos;
17485 /* Record the maximum and minimum buffer
17486 positions seen so far in glyphs that will be
17487 displayed by this row. */
17488 if (it->bidi_p)
17489 RECORD_MAX_MIN_POS (it);
17490 if (i == nglyphs - 1)
17491 {
17492 /* If line-wrap is on, check if a previous
17493 wrap point was found. */
17494 if (wrap_row_used > 0
17495 /* Even if there is a previous wrap
17496 point, continue the line here as
17497 usual, if (i) the previous character
17498 was a space or tab AND (ii) the
17499 current character is not. */
17500 && (!may_wrap
17501 || IT_DISPLAYING_WHITESPACE (it)))
17502 goto back_to_wrap;
17503
17504 set_iterator_to_next (it, 1);
17505 if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
17506 {
17507 if (!get_next_display_element (it))
17508 {
17509 row->exact_window_width_line_p = 1;
17510 it->continuation_lines_width = 0;
17511 row->continued_p = 0;
17512 row->ends_at_zv_p = 1;
17513 }
17514 else if (ITERATOR_AT_END_OF_LINE_P (it))
17515 {
17516 row->continued_p = 0;
17517 row->exact_window_width_line_p = 1;
17518 }
17519 }
17520 }
17521 }
17522 else if (CHAR_GLYPH_PADDING_P (*glyph)
17523 && !FRAME_WINDOW_P (it->f))
17524 {
17525 /* A padding glyph that doesn't fit on this line.
17526 This means the whole character doesn't fit
17527 on the line. */
17528 if (row->reversed_p)
17529 unproduce_glyphs (it, row->used[TEXT_AREA]
17530 - n_glyphs_before);
17531 row->used[TEXT_AREA] = n_glyphs_before;
17532
17533 /* Fill the rest of the row with continuation
17534 glyphs like in 20.x. */
17535 while (row->glyphs[TEXT_AREA] + row->used[TEXT_AREA]
17536 < row->glyphs[1 + TEXT_AREA])
17537 produce_special_glyphs (it, IT_CONTINUATION);
17538
17539 row->continued_p = 1;
17540 it->current_x = x_before;
17541 it->continuation_lines_width += x_before;
17542
17543 /* Restore the height to what it was before the
17544 element not fitting on the line. */
17545 it->max_ascent = ascent;
17546 it->max_descent = descent;
17547 it->max_phys_ascent = phys_ascent;
17548 it->max_phys_descent = phys_descent;
17549 }
17550 else if (wrap_row_used > 0)
17551 {
17552 back_to_wrap:
17553 if (row->reversed_p)
17554 unproduce_glyphs (it,
17555 row->used[TEXT_AREA] - wrap_row_used);
17556 *it = wrap_it;
17557 it->continuation_lines_width += wrap_x;
17558 row->used[TEXT_AREA] = wrap_row_used;
17559 row->ascent = wrap_row_ascent;
17560 row->height = wrap_row_height;
17561 row->phys_ascent = wrap_row_phys_ascent;
17562 row->phys_height = wrap_row_phys_height;
17563 row->extra_line_spacing = wrap_row_extra_line_spacing;
17564 min_pos = wrap_row_min_pos;
17565 min_bpos = wrap_row_min_bpos;
17566 max_pos = wrap_row_max_pos;
17567 max_bpos = wrap_row_max_bpos;
17568 row->continued_p = 1;
17569 row->ends_at_zv_p = 0;
17570 row->exact_window_width_line_p = 0;
17571 it->continuation_lines_width += x;
17572
17573 /* Make sure that a non-default face is extended
17574 up to the right margin of the window. */
17575 extend_face_to_end_of_line (it);
17576 }
17577 else if (it->c == '\t' && FRAME_WINDOW_P (it->f))
17578 {
17579 /* A TAB that extends past the right edge of the
17580 window. This produces a single glyph on
17581 window system frames. We leave the glyph in
17582 this row and let it fill the row, but don't
17583 consume the TAB. */
17584 it->continuation_lines_width += it->last_visible_x;
17585 row->ends_in_middle_of_char_p = 1;
17586 row->continued_p = 1;
17587 glyph->pixel_width = it->last_visible_x - x;
17588 it->starts_in_middle_of_char_p = 1;
17589 }
17590 else
17591 {
17592 /* Something other than a TAB that draws past
17593 the right edge of the window. Restore
17594 positions to values before the element. */
17595 if (row->reversed_p)
17596 unproduce_glyphs (it, row->used[TEXT_AREA]
17597 - (n_glyphs_before + i));
17598 row->used[TEXT_AREA] = n_glyphs_before + i;
17599
17600 /* Display continuation glyphs. */
17601 if (!FRAME_WINDOW_P (it->f))
17602 produce_special_glyphs (it, IT_CONTINUATION);
17603 row->continued_p = 1;
17604
17605 it->current_x = x_before;
17606 it->continuation_lines_width += x;
17607 extend_face_to_end_of_line (it);
17608
17609 if (nglyphs > 1 && i > 0)
17610 {
17611 row->ends_in_middle_of_char_p = 1;
17612 it->starts_in_middle_of_char_p = 1;
17613 }
17614
17615 /* Restore the height to what it was before the
17616 element not fitting on the line. */
17617 it->max_ascent = ascent;
17618 it->max_descent = descent;
17619 it->max_phys_ascent = phys_ascent;
17620 it->max_phys_descent = phys_descent;
17621 }
17622
17623 break;
17624 }
17625 else if (new_x > it->first_visible_x)
17626 {
17627 /* Increment number of glyphs actually displayed. */
17628 ++it->hpos;
17629
17630 /* Record the maximum and minimum buffer positions
17631 seen so far in glyphs that will be displayed by
17632 this row. */
17633 if (it->bidi_p)
17634 RECORD_MAX_MIN_POS (it);
17635
17636 if (x < it->first_visible_x)
17637 /* Glyph is partially visible, i.e. row starts at
17638 negative X position. */
17639 row->x = x - it->first_visible_x;
17640 }
17641 else
17642 {
17643 /* Glyph is completely off the left margin of the
17644 window. This should not happen because of the
17645 move_it_in_display_line at the start of this
17646 function, unless the text display area of the
17647 window is empty. */
17648 xassert (it->first_visible_x <= it->last_visible_x);
17649 }
17650 }
17651
17652 row->ascent = max (row->ascent, it->max_ascent);
17653 row->height = max (row->height, it->max_ascent + it->max_descent);
17654 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
17655 row->phys_height = max (row->phys_height,
17656 it->max_phys_ascent + it->max_phys_descent);
17657 row->extra_line_spacing = max (row->extra_line_spacing,
17658 it->max_extra_line_spacing);
17659
17660 /* End of this display line if row is continued. */
17661 if (row->continued_p || row->ends_at_zv_p)
17662 break;
17663 }
17664
17665 at_end_of_line:
17666 /* Is this a line end? If yes, we're also done, after making
17667 sure that a non-default face is extended up to the right
17668 margin of the window. */
17669 if (ITERATOR_AT_END_OF_LINE_P (it))
17670 {
17671 int used_before = row->used[TEXT_AREA];
17672
17673 row->ends_in_newline_from_string_p = STRINGP (it->object);
17674
17675 /* Add a space at the end of the line that is used to
17676 display the cursor there. */
17677 if (!IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
17678 append_space_for_newline (it, 0);
17679
17680 /* Extend the face to the end of the line. */
17681 extend_face_to_end_of_line (it);
17682
17683 /* Make sure we have the position. */
17684 if (used_before == 0)
17685 row->glyphs[TEXT_AREA]->charpos = CHARPOS (it->position);
17686
17687 /* Record the position of the newline, for use in
17688 find_row_edges. */
17689 it->eol_pos = it->current.pos;
17690
17691 /* Consume the line end. This skips over invisible lines. */
17692 set_iterator_to_next (it, 1);
17693 it->continuation_lines_width = 0;
17694 break;
17695 }
17696
17697 /* Proceed with next display element. Note that this skips
17698 over lines invisible because of selective display. */
17699 set_iterator_to_next (it, 1);
17700
17701 /* If we truncate lines, we are done when the last displayed
17702 glyphs reach past the right margin of the window. */
17703 if (it->line_wrap == TRUNCATE
17704 && (FRAME_WINDOW_P (it->f)
17705 ? (it->current_x >= it->last_visible_x)
17706 : (it->current_x > it->last_visible_x)))
17707 {
17708 /* Maybe add truncation glyphs. */
17709 if (!FRAME_WINDOW_P (it->f))
17710 {
17711 int i, n;
17712
17713 if (!row->reversed_p)
17714 {
17715 for (i = row->used[TEXT_AREA] - 1; i > 0; --i)
17716 if (!CHAR_GLYPH_PADDING_P (row->glyphs[TEXT_AREA][i]))
17717 break;
17718 }
17719 else
17720 {
17721 for (i = 0; i < row->used[TEXT_AREA]; i++)
17722 if (!CHAR_GLYPH_PADDING_P (row->glyphs[TEXT_AREA][i]))
17723 break;
17724 /* Remove any padding glyphs at the front of ROW, to
17725 make room for the truncation glyphs we will be
17726 adding below. The loop below always inserts at
17727 least one truncation glyph, so also remove the
17728 last glyph added to ROW. */
17729 unproduce_glyphs (it, i + 1);
17730 /* Adjust i for the loop below. */
17731 i = row->used[TEXT_AREA] - (i + 1);
17732 }
17733
17734 for (n = row->used[TEXT_AREA]; i < n; ++i)
17735 {
17736 row->used[TEXT_AREA] = i;
17737 produce_special_glyphs (it, IT_TRUNCATION);
17738 }
17739 }
17740 else if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
17741 {
17742 /* Don't truncate if we can overflow newline into fringe. */
17743 if (!get_next_display_element (it))
17744 {
17745 it->continuation_lines_width = 0;
17746 row->ends_at_zv_p = 1;
17747 row->exact_window_width_line_p = 1;
17748 break;
17749 }
17750 if (ITERATOR_AT_END_OF_LINE_P (it))
17751 {
17752 row->exact_window_width_line_p = 1;
17753 goto at_end_of_line;
17754 }
17755 }
17756
17757 row->truncated_on_right_p = 1;
17758 it->continuation_lines_width = 0;
17759 reseat_at_next_visible_line_start (it, 0);
17760 row->ends_at_zv_p = FETCH_BYTE (IT_BYTEPOS (*it) - 1) != '\n';
17761 it->hpos = hpos_before;
17762 it->current_x = x_before;
17763 break;
17764 }
17765 }
17766
17767 /* If line is not empty and hscrolled, maybe insert truncation glyphs
17768 at the left window margin. */
17769 if (it->first_visible_x
17770 && IT_CHARPOS (*it) != CHARPOS (row->start.pos))
17771 {
17772 if (!FRAME_WINDOW_P (it->f))
17773 insert_left_trunc_glyphs (it);
17774 row->truncated_on_left_p = 1;
17775 }
17776
17777 /* Remember the position at which this line ends.
17778
17779 BIDI Note: any code that needs MATRIX_ROW_START/END_CHARPOS
17780 cannot be before the call to find_row_edges below, since that is
17781 where these positions are determined. */
17782 row->end = it->current;
17783 if (!it->bidi_p)
17784 {
17785 row->minpos = row->start.pos;
17786 row->maxpos = row->end.pos;
17787 }
17788 else
17789 {
17790 /* ROW->minpos and ROW->maxpos must be the smallest and
17791 `1 + the largest' buffer positions in ROW. But if ROW was
17792 bidi-reordered, these two positions can be anywhere in the
17793 row, so we must determine them now. */
17794 find_row_edges (it, row, min_pos, min_bpos, max_pos, max_bpos);
17795 }
17796
17797 /* If the start of this line is the overlay arrow-position, then
17798 mark this glyph row as the one containing the overlay arrow.
17799 This is clearly a mess with variable size fonts. It would be
17800 better to let it be displayed like cursors under X. */
17801 if ((row->displays_text_p || !overlay_arrow_seen)
17802 && (overlay_arrow_string = overlay_arrow_at_row (it, row),
17803 !NILP (overlay_arrow_string)))
17804 {
17805 /* Overlay arrow in window redisplay is a fringe bitmap. */
17806 if (STRINGP (overlay_arrow_string))
17807 {
17808 struct glyph_row *arrow_row
17809 = get_overlay_arrow_glyph_row (it->w, overlay_arrow_string);
17810 struct glyph *glyph = arrow_row->glyphs[TEXT_AREA];
17811 struct glyph *arrow_end = glyph + arrow_row->used[TEXT_AREA];
17812 struct glyph *p = row->glyphs[TEXT_AREA];
17813 struct glyph *p2, *end;
17814
17815 /* Copy the arrow glyphs. */
17816 while (glyph < arrow_end)
17817 *p++ = *glyph++;
17818
17819 /* Throw away padding glyphs. */
17820 p2 = p;
17821 end = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA];
17822 while (p2 < end && CHAR_GLYPH_PADDING_P (*p2))
17823 ++p2;
17824 if (p2 > p)
17825 {
17826 while (p2 < end)
17827 *p++ = *p2++;
17828 row->used[TEXT_AREA] = p2 - row->glyphs[TEXT_AREA];
17829 }
17830 }
17831 else
17832 {
17833 xassert (INTEGERP (overlay_arrow_string));
17834 row->overlay_arrow_bitmap = XINT (overlay_arrow_string);
17835 }
17836 overlay_arrow_seen = 1;
17837 }
17838
17839 /* Compute pixel dimensions of this line. */
17840 compute_line_metrics (it);
17841
17842 /* Record whether this row ends inside an ellipsis. */
17843 row->ends_in_ellipsis_p
17844 = (it->method == GET_FROM_DISPLAY_VECTOR
17845 && it->ellipsis_p);
17846
17847 /* Save fringe bitmaps in this row. */
17848 row->left_user_fringe_bitmap = it->left_user_fringe_bitmap;
17849 row->left_user_fringe_face_id = it->left_user_fringe_face_id;
17850 row->right_user_fringe_bitmap = it->right_user_fringe_bitmap;
17851 row->right_user_fringe_face_id = it->right_user_fringe_face_id;
17852
17853 it->left_user_fringe_bitmap = 0;
17854 it->left_user_fringe_face_id = 0;
17855 it->right_user_fringe_bitmap = 0;
17856 it->right_user_fringe_face_id = 0;
17857
17858 /* Maybe set the cursor. */
17859 cvpos = it->w->cursor.vpos;
17860 if ((cvpos < 0
17861 /* In bidi-reordered rows, keep checking for proper cursor
17862 position even if one has been found already, because buffer
17863 positions in such rows change non-linearly with ROW->VPOS,
17864 when a line is continued. One exception: when we are at ZV,
17865 display cursor on the first suitable glyph row, since all
17866 the empty rows after that also have their position set to ZV. */
17867 /* FIXME: Revisit this when glyph ``spilling'' in continuation
17868 lines' rows is implemented for bidi-reordered rows. */
17869 || (it->bidi_p
17870 && !MATRIX_ROW (it->w->desired_matrix, cvpos)->ends_at_zv_p))
17871 && PT >= MATRIX_ROW_START_CHARPOS (row)
17872 && PT <= MATRIX_ROW_END_CHARPOS (row)
17873 && cursor_row_p (it->w, row))
17874 set_cursor_from_row (it->w, row, it->w->desired_matrix, 0, 0, 0, 0);
17875
17876 /* Highlight trailing whitespace. */
17877 if (!NILP (Vshow_trailing_whitespace))
17878 highlight_trailing_whitespace (it->f, it->glyph_row);
17879
17880 /* Prepare for the next line. This line starts horizontally at (X
17881 HPOS) = (0 0). Vertical positions are incremented. As a
17882 convenience for the caller, IT->glyph_row is set to the next
17883 row to be used. */
17884 it->current_x = it->hpos = 0;
17885 it->current_y += row->height;
17886 SET_TEXT_POS (it->eol_pos, 0, 0);
17887 ++it->vpos;
17888 ++it->glyph_row;
17889 /* The next row should by default use the same value of the
17890 reversed_p flag as this one. set_iterator_to_next decides when
17891 it's a new paragraph, and PRODUCE_GLYPHS recomputes the value of
17892 the flag accordingly. */
17893 if (it->glyph_row < MATRIX_BOTTOM_TEXT_ROW (it->w->desired_matrix, it->w))
17894 it->glyph_row->reversed_p = row->reversed_p;
17895 it->start = row->end;
17896 return row->displays_text_p;
17897
17898 #undef RECORD_MAX_MIN_POS
17899 }
17900
17901 DEFUN ("current-bidi-paragraph-direction", Fcurrent_bidi_paragraph_direction,
17902 Scurrent_bidi_paragraph_direction, 0, 1, 0,
17903 doc: /* Return paragraph direction at point in BUFFER.
17904 Value is either `left-to-right' or `right-to-left'.
17905 If BUFFER is omitted or nil, it defaults to the current buffer.
17906
17907 Paragraph direction determines how the text in the paragraph is displayed.
17908 In left-to-right paragraphs, text begins at the left margin of the window
17909 and the reading direction is generally left to right. In right-to-left
17910 paragraphs, text begins at the right margin and is read from right to left.
17911
17912 See also `bidi-paragraph-direction'. */)
17913 (Lisp_Object buffer)
17914 {
17915 struct buffer *buf = current_buffer;
17916 struct buffer *old = buf;
17917
17918 if (! NILP (buffer))
17919 {
17920 CHECK_BUFFER (buffer);
17921 buf = XBUFFER (buffer);
17922 }
17923
17924 if (NILP (BVAR (buf, bidi_display_reordering)))
17925 return Qleft_to_right;
17926 else if (!NILP (BVAR (buf, bidi_paragraph_direction)))
17927 return BVAR (buf, bidi_paragraph_direction);
17928 else
17929 {
17930 /* Determine the direction from buffer text. We could try to
17931 use current_matrix if it is up to date, but this seems fast
17932 enough as it is. */
17933 struct bidi_it itb;
17934 EMACS_INT pos = BUF_PT (buf);
17935 EMACS_INT bytepos = BUF_PT_BYTE (buf);
17936 int c;
17937
17938 set_buffer_temp (buf);
17939 /* bidi_paragraph_init finds the base direction of the paragraph
17940 by searching forward from paragraph start. We need the base
17941 direction of the current or _previous_ paragraph, so we need
17942 to make sure we are within that paragraph. To that end, find
17943 the previous non-empty line. */
17944 if (pos >= ZV && pos > BEGV)
17945 {
17946 pos--;
17947 bytepos = CHAR_TO_BYTE (pos);
17948 }
17949 while ((c = FETCH_BYTE (bytepos)) == '\n'
17950 || c == ' ' || c == '\t' || c == '\f')
17951 {
17952 if (bytepos <= BEGV_BYTE)
17953 break;
17954 bytepos--;
17955 pos--;
17956 }
17957 while (!CHAR_HEAD_P (FETCH_BYTE (bytepos)))
17958 bytepos--;
17959 itb.charpos = pos;
17960 itb.bytepos = bytepos;
17961 itb.first_elt = 1;
17962 itb.separator_limit = -1;
17963 itb.paragraph_dir = NEUTRAL_DIR;
17964
17965 bidi_paragraph_init (NEUTRAL_DIR, &itb, 1);
17966 set_buffer_temp (old);
17967 switch (itb.paragraph_dir)
17968 {
17969 case L2R:
17970 return Qleft_to_right;
17971 break;
17972 case R2L:
17973 return Qright_to_left;
17974 break;
17975 default:
17976 abort ();
17977 }
17978 }
17979 }
17980
17981
17982 \f
17983 /***********************************************************************
17984 Menu Bar
17985 ***********************************************************************/
17986
17987 /* Redisplay the menu bar in the frame for window W.
17988
17989 The menu bar of X frames that don't have X toolkit support is
17990 displayed in a special window W->frame->menu_bar_window.
17991
17992 The menu bar of terminal frames is treated specially as far as
17993 glyph matrices are concerned. Menu bar lines are not part of
17994 windows, so the update is done directly on the frame matrix rows
17995 for the menu bar. */
17996
17997 static void
17998 display_menu_bar (struct window *w)
17999 {
18000 struct frame *f = XFRAME (WINDOW_FRAME (w));
18001 struct it it;
18002 Lisp_Object items;
18003 int i;
18004
18005 /* Don't do all this for graphical frames. */
18006 #ifdef HAVE_NTGUI
18007 if (FRAME_W32_P (f))
18008 return;
18009 #endif
18010 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
18011 if (FRAME_X_P (f))
18012 return;
18013 #endif
18014
18015 #ifdef HAVE_NS
18016 if (FRAME_NS_P (f))
18017 return;
18018 #endif /* HAVE_NS */
18019
18020 #ifdef USE_X_TOOLKIT
18021 xassert (!FRAME_WINDOW_P (f));
18022 init_iterator (&it, w, -1, -1, f->desired_matrix->rows, MENU_FACE_ID);
18023 it.first_visible_x = 0;
18024 it.last_visible_x = FRAME_TOTAL_COLS (f) * FRAME_COLUMN_WIDTH (f);
18025 #else /* not USE_X_TOOLKIT */
18026 if (FRAME_WINDOW_P (f))
18027 {
18028 /* Menu bar lines are displayed in the desired matrix of the
18029 dummy window menu_bar_window. */
18030 struct window *menu_w;
18031 xassert (WINDOWP (f->menu_bar_window));
18032 menu_w = XWINDOW (f->menu_bar_window);
18033 init_iterator (&it, menu_w, -1, -1, menu_w->desired_matrix->rows,
18034 MENU_FACE_ID);
18035 it.first_visible_x = 0;
18036 it.last_visible_x = FRAME_TOTAL_COLS (f) * FRAME_COLUMN_WIDTH (f);
18037 }
18038 else
18039 {
18040 /* This is a TTY frame, i.e. character hpos/vpos are used as
18041 pixel x/y. */
18042 init_iterator (&it, w, -1, -1, f->desired_matrix->rows,
18043 MENU_FACE_ID);
18044 it.first_visible_x = 0;
18045 it.last_visible_x = FRAME_COLS (f);
18046 }
18047 #endif /* not USE_X_TOOLKIT */
18048
18049 if (! mode_line_inverse_video)
18050 /* Force the menu-bar to be displayed in the default face. */
18051 it.base_face_id = it.face_id = DEFAULT_FACE_ID;
18052
18053 /* Clear all rows of the menu bar. */
18054 for (i = 0; i < FRAME_MENU_BAR_LINES (f); ++i)
18055 {
18056 struct glyph_row *row = it.glyph_row + i;
18057 clear_glyph_row (row);
18058 row->enabled_p = 1;
18059 row->full_width_p = 1;
18060 }
18061
18062 /* Display all items of the menu bar. */
18063 items = FRAME_MENU_BAR_ITEMS (it.f);
18064 for (i = 0; i < XVECTOR (items)->size; i += 4)
18065 {
18066 Lisp_Object string;
18067
18068 /* Stop at nil string. */
18069 string = AREF (items, i + 1);
18070 if (NILP (string))
18071 break;
18072
18073 /* Remember where item was displayed. */
18074 ASET (items, i + 3, make_number (it.hpos));
18075
18076 /* Display the item, pad with one space. */
18077 if (it.current_x < it.last_visible_x)
18078 display_string (NULL, string, Qnil, 0, 0, &it,
18079 SCHARS (string) + 1, 0, 0, -1);
18080 }
18081
18082 /* Fill out the line with spaces. */
18083 if (it.current_x < it.last_visible_x)
18084 display_string ("", Qnil, Qnil, 0, 0, &it, -1, 0, 0, -1);
18085
18086 /* Compute the total height of the lines. */
18087 compute_line_metrics (&it);
18088 }
18089
18090
18091 \f
18092 /***********************************************************************
18093 Mode Line
18094 ***********************************************************************/
18095
18096 /* Redisplay mode lines in the window tree whose root is WINDOW. If
18097 FORCE is non-zero, redisplay mode lines unconditionally.
18098 Otherwise, redisplay only mode lines that are garbaged. Value is
18099 the number of windows whose mode lines were redisplayed. */
18100
18101 static int
18102 redisplay_mode_lines (Lisp_Object window, int force)
18103 {
18104 int nwindows = 0;
18105
18106 while (!NILP (window))
18107 {
18108 struct window *w = XWINDOW (window);
18109
18110 if (WINDOWP (w->hchild))
18111 nwindows += redisplay_mode_lines (w->hchild, force);
18112 else if (WINDOWP (w->vchild))
18113 nwindows += redisplay_mode_lines (w->vchild, force);
18114 else if (force
18115 || FRAME_GARBAGED_P (XFRAME (w->frame))
18116 || !MATRIX_MODE_LINE_ROW (w->current_matrix)->enabled_p)
18117 {
18118 struct text_pos lpoint;
18119 struct buffer *old = current_buffer;
18120
18121 /* Set the window's buffer for the mode line display. */
18122 SET_TEXT_POS (lpoint, PT, PT_BYTE);
18123 set_buffer_internal_1 (XBUFFER (w->buffer));
18124
18125 /* Point refers normally to the selected window. For any
18126 other window, set up appropriate value. */
18127 if (!EQ (window, selected_window))
18128 {
18129 struct text_pos pt;
18130
18131 SET_TEXT_POS_FROM_MARKER (pt, w->pointm);
18132 if (CHARPOS (pt) < BEGV)
18133 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
18134 else if (CHARPOS (pt) > (ZV - 1))
18135 TEMP_SET_PT_BOTH (ZV, ZV_BYTE);
18136 else
18137 TEMP_SET_PT_BOTH (CHARPOS (pt), BYTEPOS (pt));
18138 }
18139
18140 /* Display mode lines. */
18141 clear_glyph_matrix (w->desired_matrix);
18142 if (display_mode_lines (w))
18143 {
18144 ++nwindows;
18145 w->must_be_updated_p = 1;
18146 }
18147
18148 /* Restore old settings. */
18149 set_buffer_internal_1 (old);
18150 TEMP_SET_PT_BOTH (CHARPOS (lpoint), BYTEPOS (lpoint));
18151 }
18152
18153 window = w->next;
18154 }
18155
18156 return nwindows;
18157 }
18158
18159
18160 /* Display the mode and/or header line of window W. Value is the
18161 sum number of mode lines and header lines displayed. */
18162
18163 static int
18164 display_mode_lines (struct window *w)
18165 {
18166 Lisp_Object old_selected_window, old_selected_frame;
18167 int n = 0;
18168
18169 old_selected_frame = selected_frame;
18170 selected_frame = w->frame;
18171 old_selected_window = selected_window;
18172 XSETWINDOW (selected_window, w);
18173
18174 /* These will be set while the mode line specs are processed. */
18175 line_number_displayed = 0;
18176 w->column_number_displayed = Qnil;
18177
18178 if (WINDOW_WANTS_MODELINE_P (w))
18179 {
18180 struct window *sel_w = XWINDOW (old_selected_window);
18181
18182 /* Select mode line face based on the real selected window. */
18183 display_mode_line (w, CURRENT_MODE_LINE_FACE_ID_3 (sel_w, sel_w, w),
18184 BVAR (current_buffer, mode_line_format));
18185 ++n;
18186 }
18187
18188 if (WINDOW_WANTS_HEADER_LINE_P (w))
18189 {
18190 display_mode_line (w, HEADER_LINE_FACE_ID,
18191 BVAR (current_buffer, header_line_format));
18192 ++n;
18193 }
18194
18195 selected_frame = old_selected_frame;
18196 selected_window = old_selected_window;
18197 return n;
18198 }
18199
18200
18201 /* Display mode or header line of window W. FACE_ID specifies which
18202 line to display; it is either MODE_LINE_FACE_ID or
18203 HEADER_LINE_FACE_ID. FORMAT is the mode/header line format to
18204 display. Value is the pixel height of the mode/header line
18205 displayed. */
18206
18207 static int
18208 display_mode_line (struct window *w, enum face_id face_id, Lisp_Object format)
18209 {
18210 struct it it;
18211 struct face *face;
18212 int count = SPECPDL_INDEX ();
18213
18214 init_iterator (&it, w, -1, -1, NULL, face_id);
18215 /* Don't extend on a previously drawn mode-line.
18216 This may happen if called from pos_visible_p. */
18217 it.glyph_row->enabled_p = 0;
18218 prepare_desired_row (it.glyph_row);
18219
18220 it.glyph_row->mode_line_p = 1;
18221
18222 if (! mode_line_inverse_video)
18223 /* Force the mode-line to be displayed in the default face. */
18224 it.base_face_id = it.face_id = DEFAULT_FACE_ID;
18225
18226 record_unwind_protect (unwind_format_mode_line,
18227 format_mode_line_unwind_data (NULL, Qnil, 0));
18228
18229 mode_line_target = MODE_LINE_DISPLAY;
18230
18231 /* Temporarily make frame's keyboard the current kboard so that
18232 kboard-local variables in the mode_line_format will get the right
18233 values. */
18234 push_kboard (FRAME_KBOARD (it.f));
18235 record_unwind_save_match_data ();
18236 display_mode_element (&it, 0, 0, 0, format, Qnil, 0);
18237 pop_kboard ();
18238
18239 unbind_to (count, Qnil);
18240
18241 /* Fill up with spaces. */
18242 display_string (" ", Qnil, Qnil, 0, 0, &it, 10000, -1, -1, 0);
18243
18244 compute_line_metrics (&it);
18245 it.glyph_row->full_width_p = 1;
18246 it.glyph_row->continued_p = 0;
18247 it.glyph_row->truncated_on_left_p = 0;
18248 it.glyph_row->truncated_on_right_p = 0;
18249
18250 /* Make a 3D mode-line have a shadow at its right end. */
18251 face = FACE_FROM_ID (it.f, face_id);
18252 extend_face_to_end_of_line (&it);
18253 if (face->box != FACE_NO_BOX)
18254 {
18255 struct glyph *last = (it.glyph_row->glyphs[TEXT_AREA]
18256 + it.glyph_row->used[TEXT_AREA] - 1);
18257 last->right_box_line_p = 1;
18258 }
18259
18260 return it.glyph_row->height;
18261 }
18262
18263 /* Move element ELT in LIST to the front of LIST.
18264 Return the updated list. */
18265
18266 static Lisp_Object
18267 move_elt_to_front (Lisp_Object elt, Lisp_Object list)
18268 {
18269 register Lisp_Object tail, prev;
18270 register Lisp_Object tem;
18271
18272 tail = list;
18273 prev = Qnil;
18274 while (CONSP (tail))
18275 {
18276 tem = XCAR (tail);
18277
18278 if (EQ (elt, tem))
18279 {
18280 /* Splice out the link TAIL. */
18281 if (NILP (prev))
18282 list = XCDR (tail);
18283 else
18284 Fsetcdr (prev, XCDR (tail));
18285
18286 /* Now make it the first. */
18287 Fsetcdr (tail, list);
18288 return tail;
18289 }
18290 else
18291 prev = tail;
18292 tail = XCDR (tail);
18293 QUIT;
18294 }
18295
18296 /* Not found--return unchanged LIST. */
18297 return list;
18298 }
18299
18300 /* Contribute ELT to the mode line for window IT->w. How it
18301 translates into text depends on its data type.
18302
18303 IT describes the display environment in which we display, as usual.
18304
18305 DEPTH is the depth in recursion. It is used to prevent
18306 infinite recursion here.
18307
18308 FIELD_WIDTH is the number of characters the display of ELT should
18309 occupy in the mode line, and PRECISION is the maximum number of
18310 characters to display from ELT's representation. See
18311 display_string for details.
18312
18313 Returns the hpos of the end of the text generated by ELT.
18314
18315 PROPS is a property list to add to any string we encounter.
18316
18317 If RISKY is nonzero, remove (disregard) any properties in any string
18318 we encounter, and ignore :eval and :propertize.
18319
18320 The global variable `mode_line_target' determines whether the
18321 output is passed to `store_mode_line_noprop',
18322 `store_mode_line_string', or `display_string'. */
18323
18324 static int
18325 display_mode_element (struct it *it, int depth, int field_width, int precision,
18326 Lisp_Object elt, Lisp_Object props, int risky)
18327 {
18328 int n = 0, field, prec;
18329 int literal = 0;
18330
18331 tail_recurse:
18332 if (depth > 100)
18333 elt = build_string ("*too-deep*");
18334
18335 depth++;
18336
18337 switch (SWITCH_ENUM_CAST (XTYPE (elt)))
18338 {
18339 case Lisp_String:
18340 {
18341 /* A string: output it and check for %-constructs within it. */
18342 unsigned char c;
18343 EMACS_INT offset = 0;
18344
18345 if (SCHARS (elt) > 0
18346 && (!NILP (props) || risky))
18347 {
18348 Lisp_Object oprops, aelt;
18349 oprops = Ftext_properties_at (make_number (0), elt);
18350
18351 /* If the starting string's properties are not what
18352 we want, translate the string. Also, if the string
18353 is risky, do that anyway. */
18354
18355 if (NILP (Fequal (props, oprops)) || risky)
18356 {
18357 /* If the starting string has properties,
18358 merge the specified ones onto the existing ones. */
18359 if (! NILP (oprops) && !risky)
18360 {
18361 Lisp_Object tem;
18362
18363 oprops = Fcopy_sequence (oprops);
18364 tem = props;
18365 while (CONSP (tem))
18366 {
18367 oprops = Fplist_put (oprops, XCAR (tem),
18368 XCAR (XCDR (tem)));
18369 tem = XCDR (XCDR (tem));
18370 }
18371 props = oprops;
18372 }
18373
18374 aelt = Fassoc (elt, mode_line_proptrans_alist);
18375 if (! NILP (aelt) && !NILP (Fequal (props, XCDR (aelt))))
18376 {
18377 /* AELT is what we want. Move it to the front
18378 without consing. */
18379 elt = XCAR (aelt);
18380 mode_line_proptrans_alist
18381 = move_elt_to_front (aelt, mode_line_proptrans_alist);
18382 }
18383 else
18384 {
18385 Lisp_Object tem;
18386
18387 /* If AELT has the wrong props, it is useless.
18388 so get rid of it. */
18389 if (! NILP (aelt))
18390 mode_line_proptrans_alist
18391 = Fdelq (aelt, mode_line_proptrans_alist);
18392
18393 elt = Fcopy_sequence (elt);
18394 Fset_text_properties (make_number (0), Flength (elt),
18395 props, elt);
18396 /* Add this item to mode_line_proptrans_alist. */
18397 mode_line_proptrans_alist
18398 = Fcons (Fcons (elt, props),
18399 mode_line_proptrans_alist);
18400 /* Truncate mode_line_proptrans_alist
18401 to at most 50 elements. */
18402 tem = Fnthcdr (make_number (50),
18403 mode_line_proptrans_alist);
18404 if (! NILP (tem))
18405 XSETCDR (tem, Qnil);
18406 }
18407 }
18408 }
18409
18410 offset = 0;
18411
18412 if (literal)
18413 {
18414 prec = precision - n;
18415 switch (mode_line_target)
18416 {
18417 case MODE_LINE_NOPROP:
18418 case MODE_LINE_TITLE:
18419 n += store_mode_line_noprop (SSDATA (elt), -1, prec);
18420 break;
18421 case MODE_LINE_STRING:
18422 n += store_mode_line_string (NULL, elt, 1, 0, prec, Qnil);
18423 break;
18424 case MODE_LINE_DISPLAY:
18425 n += display_string (NULL, elt, Qnil, 0, 0, it,
18426 0, prec, 0, STRING_MULTIBYTE (elt));
18427 break;
18428 }
18429
18430 break;
18431 }
18432
18433 /* Handle the non-literal case. */
18434
18435 while ((precision <= 0 || n < precision)
18436 && SREF (elt, offset) != 0
18437 && (mode_line_target != MODE_LINE_DISPLAY
18438 || it->current_x < it->last_visible_x))
18439 {
18440 EMACS_INT last_offset = offset;
18441
18442 /* Advance to end of string or next format specifier. */
18443 while ((c = SREF (elt, offset++)) != '\0' && c != '%')
18444 ;
18445
18446 if (offset - 1 != last_offset)
18447 {
18448 EMACS_INT nchars, nbytes;
18449
18450 /* Output to end of string or up to '%'. Field width
18451 is length of string. Don't output more than
18452 PRECISION allows us. */
18453 offset--;
18454
18455 prec = c_string_width (SDATA (elt) + last_offset,
18456 offset - last_offset, precision - n,
18457 &nchars, &nbytes);
18458
18459 switch (mode_line_target)
18460 {
18461 case MODE_LINE_NOPROP:
18462 case MODE_LINE_TITLE:
18463 n += store_mode_line_noprop (SSDATA (elt) + last_offset, 0, prec);
18464 break;
18465 case MODE_LINE_STRING:
18466 {
18467 EMACS_INT bytepos = last_offset;
18468 EMACS_INT charpos = string_byte_to_char (elt, bytepos);
18469 EMACS_INT endpos = (precision <= 0
18470 ? string_byte_to_char (elt, offset)
18471 : charpos + nchars);
18472
18473 n += store_mode_line_string (NULL,
18474 Fsubstring (elt, make_number (charpos),
18475 make_number (endpos)),
18476 0, 0, 0, Qnil);
18477 }
18478 break;
18479 case MODE_LINE_DISPLAY:
18480 {
18481 EMACS_INT bytepos = last_offset;
18482 EMACS_INT charpos = string_byte_to_char (elt, bytepos);
18483
18484 if (precision <= 0)
18485 nchars = string_byte_to_char (elt, offset) - charpos;
18486 n += display_string (NULL, elt, Qnil, 0, charpos,
18487 it, 0, nchars, 0,
18488 STRING_MULTIBYTE (elt));
18489 }
18490 break;
18491 }
18492 }
18493 else /* c == '%' */
18494 {
18495 EMACS_INT percent_position = offset;
18496
18497 /* Get the specified minimum width. Zero means
18498 don't pad. */
18499 field = 0;
18500 while ((c = SREF (elt, offset++)) >= '0' && c <= '9')
18501 field = field * 10 + c - '0';
18502
18503 /* Don't pad beyond the total padding allowed. */
18504 if (field_width - n > 0 && field > field_width - n)
18505 field = field_width - n;
18506
18507 /* Note that either PRECISION <= 0 or N < PRECISION. */
18508 prec = precision - n;
18509
18510 if (c == 'M')
18511 n += display_mode_element (it, depth, field, prec,
18512 Vglobal_mode_string, props,
18513 risky);
18514 else if (c != 0)
18515 {
18516 int multibyte;
18517 EMACS_INT bytepos, charpos;
18518 const char *spec;
18519 Lisp_Object string;
18520
18521 bytepos = percent_position;
18522 charpos = (STRING_MULTIBYTE (elt)
18523 ? string_byte_to_char (elt, bytepos)
18524 : bytepos);
18525 spec = decode_mode_spec (it->w, c, field, prec, &string);
18526 multibyte = STRINGP (string) && STRING_MULTIBYTE (string);
18527
18528 switch (mode_line_target)
18529 {
18530 case MODE_LINE_NOPROP:
18531 case MODE_LINE_TITLE:
18532 n += store_mode_line_noprop (spec, field, prec);
18533 break;
18534 case MODE_LINE_STRING:
18535 {
18536 int len = strlen (spec);
18537 Lisp_Object tem = make_string (spec, len);
18538 props = Ftext_properties_at (make_number (charpos), elt);
18539 /* Should only keep face property in props */
18540 n += store_mode_line_string (NULL, tem, 0, field, prec, props);
18541 }
18542 break;
18543 case MODE_LINE_DISPLAY:
18544 {
18545 int nglyphs_before, nwritten;
18546
18547 nglyphs_before = it->glyph_row->used[TEXT_AREA];
18548 nwritten = display_string (spec, string, elt,
18549 charpos, 0, it,
18550 field, prec, 0,
18551 multibyte);
18552
18553 /* Assign to the glyphs written above the
18554 string where the `%x' came from, position
18555 of the `%'. */
18556 if (nwritten > 0)
18557 {
18558 struct glyph *glyph
18559 = (it->glyph_row->glyphs[TEXT_AREA]
18560 + nglyphs_before);
18561 int i;
18562
18563 for (i = 0; i < nwritten; ++i)
18564 {
18565 glyph[i].object = elt;
18566 glyph[i].charpos = charpos;
18567 }
18568
18569 n += nwritten;
18570 }
18571 }
18572 break;
18573 }
18574 }
18575 else /* c == 0 */
18576 break;
18577 }
18578 }
18579 }
18580 break;
18581
18582 case Lisp_Symbol:
18583 /* A symbol: process the value of the symbol recursively
18584 as if it appeared here directly. Avoid error if symbol void.
18585 Special case: if value of symbol is a string, output the string
18586 literally. */
18587 {
18588 register Lisp_Object tem;
18589
18590 /* If the variable is not marked as risky to set
18591 then its contents are risky to use. */
18592 if (NILP (Fget (elt, Qrisky_local_variable)))
18593 risky = 1;
18594
18595 tem = Fboundp (elt);
18596 if (!NILP (tem))
18597 {
18598 tem = Fsymbol_value (elt);
18599 /* If value is a string, output that string literally:
18600 don't check for % within it. */
18601 if (STRINGP (tem))
18602 literal = 1;
18603
18604 if (!EQ (tem, elt))
18605 {
18606 /* Give up right away for nil or t. */
18607 elt = tem;
18608 goto tail_recurse;
18609 }
18610 }
18611 }
18612 break;
18613
18614 case Lisp_Cons:
18615 {
18616 register Lisp_Object car, tem;
18617
18618 /* A cons cell: five distinct cases.
18619 If first element is :eval or :propertize, do something special.
18620 If first element is a string or a cons, process all the elements
18621 and effectively concatenate them.
18622 If first element is a negative number, truncate displaying cdr to
18623 at most that many characters. If positive, pad (with spaces)
18624 to at least that many characters.
18625 If first element is a symbol, process the cadr or caddr recursively
18626 according to whether the symbol's value is non-nil or nil. */
18627 car = XCAR (elt);
18628 if (EQ (car, QCeval))
18629 {
18630 /* An element of the form (:eval FORM) means evaluate FORM
18631 and use the result as mode line elements. */
18632
18633 if (risky)
18634 break;
18635
18636 if (CONSP (XCDR (elt)))
18637 {
18638 Lisp_Object spec;
18639 spec = safe_eval (XCAR (XCDR (elt)));
18640 n += display_mode_element (it, depth, field_width - n,
18641 precision - n, spec, props,
18642 risky);
18643 }
18644 }
18645 else if (EQ (car, QCpropertize))
18646 {
18647 /* An element of the form (:propertize ELT PROPS...)
18648 means display ELT but applying properties PROPS. */
18649
18650 if (risky)
18651 break;
18652
18653 if (CONSP (XCDR (elt)))
18654 n += display_mode_element (it, depth, field_width - n,
18655 precision - n, XCAR (XCDR (elt)),
18656 XCDR (XCDR (elt)), risky);
18657 }
18658 else if (SYMBOLP (car))
18659 {
18660 tem = Fboundp (car);
18661 elt = XCDR (elt);
18662 if (!CONSP (elt))
18663 goto invalid;
18664 /* elt is now the cdr, and we know it is a cons cell.
18665 Use its car if CAR has a non-nil value. */
18666 if (!NILP (tem))
18667 {
18668 tem = Fsymbol_value (car);
18669 if (!NILP (tem))
18670 {
18671 elt = XCAR (elt);
18672 goto tail_recurse;
18673 }
18674 }
18675 /* Symbol's value is nil (or symbol is unbound)
18676 Get the cddr of the original list
18677 and if possible find the caddr and use that. */
18678 elt = XCDR (elt);
18679 if (NILP (elt))
18680 break;
18681 else if (!CONSP (elt))
18682 goto invalid;
18683 elt = XCAR (elt);
18684 goto tail_recurse;
18685 }
18686 else if (INTEGERP (car))
18687 {
18688 register int lim = XINT (car);
18689 elt = XCDR (elt);
18690 if (lim < 0)
18691 {
18692 /* Negative int means reduce maximum width. */
18693 if (precision <= 0)
18694 precision = -lim;
18695 else
18696 precision = min (precision, -lim);
18697 }
18698 else if (lim > 0)
18699 {
18700 /* Padding specified. Don't let it be more than
18701 current maximum. */
18702 if (precision > 0)
18703 lim = min (precision, lim);
18704
18705 /* If that's more padding than already wanted, queue it.
18706 But don't reduce padding already specified even if
18707 that is beyond the current truncation point. */
18708 field_width = max (lim, field_width);
18709 }
18710 goto tail_recurse;
18711 }
18712 else if (STRINGP (car) || CONSP (car))
18713 {
18714 Lisp_Object halftail = elt;
18715 int len = 0;
18716
18717 while (CONSP (elt)
18718 && (precision <= 0 || n < precision))
18719 {
18720 n += display_mode_element (it, depth,
18721 /* Do padding only after the last
18722 element in the list. */
18723 (! CONSP (XCDR (elt))
18724 ? field_width - n
18725 : 0),
18726 precision - n, XCAR (elt),
18727 props, risky);
18728 elt = XCDR (elt);
18729 len++;
18730 if ((len & 1) == 0)
18731 halftail = XCDR (halftail);
18732 /* Check for cycle. */
18733 if (EQ (halftail, elt))
18734 break;
18735 }
18736 }
18737 }
18738 break;
18739
18740 default:
18741 invalid:
18742 elt = build_string ("*invalid*");
18743 goto tail_recurse;
18744 }
18745
18746 /* Pad to FIELD_WIDTH. */
18747 if (field_width > 0 && n < field_width)
18748 {
18749 switch (mode_line_target)
18750 {
18751 case MODE_LINE_NOPROP:
18752 case MODE_LINE_TITLE:
18753 n += store_mode_line_noprop ("", field_width - n, 0);
18754 break;
18755 case MODE_LINE_STRING:
18756 n += store_mode_line_string ("", Qnil, 0, field_width - n, 0, Qnil);
18757 break;
18758 case MODE_LINE_DISPLAY:
18759 n += display_string ("", Qnil, Qnil, 0, 0, it, field_width - n,
18760 0, 0, 0);
18761 break;
18762 }
18763 }
18764
18765 return n;
18766 }
18767
18768 /* Store a mode-line string element in mode_line_string_list.
18769
18770 If STRING is non-null, display that C string. Otherwise, the Lisp
18771 string LISP_STRING is displayed.
18772
18773 FIELD_WIDTH is the minimum number of output glyphs to produce.
18774 If STRING has fewer characters than FIELD_WIDTH, pad to the right
18775 with spaces. FIELD_WIDTH <= 0 means don't pad.
18776
18777 PRECISION is the maximum number of characters to output from
18778 STRING. PRECISION <= 0 means don't truncate the string.
18779
18780 If COPY_STRING is non-zero, make a copy of LISP_STRING before adding
18781 properties to the string.
18782
18783 PROPS are the properties to add to the string.
18784 The mode_line_string_face face property is always added to the string.
18785 */
18786
18787 static int
18788 store_mode_line_string (const char *string, Lisp_Object lisp_string, int copy_string,
18789 int field_width, int precision, Lisp_Object props)
18790 {
18791 EMACS_INT len;
18792 int n = 0;
18793
18794 if (string != NULL)
18795 {
18796 len = strlen (string);
18797 if (precision > 0 && len > precision)
18798 len = precision;
18799 lisp_string = make_string (string, len);
18800 if (NILP (props))
18801 props = mode_line_string_face_prop;
18802 else if (!NILP (mode_line_string_face))
18803 {
18804 Lisp_Object face = Fplist_get (props, Qface);
18805 props = Fcopy_sequence (props);
18806 if (NILP (face))
18807 face = mode_line_string_face;
18808 else
18809 face = Fcons (face, Fcons (mode_line_string_face, Qnil));
18810 props = Fplist_put (props, Qface, face);
18811 }
18812 Fadd_text_properties (make_number (0), make_number (len),
18813 props, lisp_string);
18814 }
18815 else
18816 {
18817 len = XFASTINT (Flength (lisp_string));
18818 if (precision > 0 && len > precision)
18819 {
18820 len = precision;
18821 lisp_string = Fsubstring (lisp_string, make_number (0), make_number (len));
18822 precision = -1;
18823 }
18824 if (!NILP (mode_line_string_face))
18825 {
18826 Lisp_Object face;
18827 if (NILP (props))
18828 props = Ftext_properties_at (make_number (0), lisp_string);
18829 face = Fplist_get (props, Qface);
18830 if (NILP (face))
18831 face = mode_line_string_face;
18832 else
18833 face = Fcons (face, Fcons (mode_line_string_face, Qnil));
18834 props = Fcons (Qface, Fcons (face, Qnil));
18835 if (copy_string)
18836 lisp_string = Fcopy_sequence (lisp_string);
18837 }
18838 if (!NILP (props))
18839 Fadd_text_properties (make_number (0), make_number (len),
18840 props, lisp_string);
18841 }
18842
18843 if (len > 0)
18844 {
18845 mode_line_string_list = Fcons (lisp_string, mode_line_string_list);
18846 n += len;
18847 }
18848
18849 if (field_width > len)
18850 {
18851 field_width -= len;
18852 lisp_string = Fmake_string (make_number (field_width), make_number (' '));
18853 if (!NILP (props))
18854 Fadd_text_properties (make_number (0), make_number (field_width),
18855 props, lisp_string);
18856 mode_line_string_list = Fcons (lisp_string, mode_line_string_list);
18857 n += field_width;
18858 }
18859
18860 return n;
18861 }
18862
18863
18864 DEFUN ("format-mode-line", Fformat_mode_line, Sformat_mode_line,
18865 1, 4, 0,
18866 doc: /* Format a string out of a mode line format specification.
18867 First arg FORMAT specifies the mode line format (see `mode-line-format'
18868 for details) to use.
18869
18870 By default, the format is evaluated for the currently selected window.
18871
18872 Optional second arg FACE specifies the face property to put on all
18873 characters for which no face is specified. The value nil means the
18874 default face. The value t means whatever face the window's mode line
18875 currently uses (either `mode-line' or `mode-line-inactive',
18876 depending on whether the window is the selected window or not).
18877 An integer value means the value string has no text
18878 properties.
18879
18880 Optional third and fourth args WINDOW and BUFFER specify the window
18881 and buffer to use as the context for the formatting (defaults
18882 are the selected window and the WINDOW's buffer). */)
18883 (Lisp_Object format, Lisp_Object face,
18884 Lisp_Object window, Lisp_Object buffer)
18885 {
18886 struct it it;
18887 int len;
18888 struct window *w;
18889 struct buffer *old_buffer = NULL;
18890 int face_id;
18891 int no_props = INTEGERP (face);
18892 int count = SPECPDL_INDEX ();
18893 Lisp_Object str;
18894 int string_start = 0;
18895
18896 if (NILP (window))
18897 window = selected_window;
18898 CHECK_WINDOW (window);
18899 w = XWINDOW (window);
18900
18901 if (NILP (buffer))
18902 buffer = w->buffer;
18903 CHECK_BUFFER (buffer);
18904
18905 /* Make formatting the modeline a non-op when noninteractive, otherwise
18906 there will be problems later caused by a partially initialized frame. */
18907 if (NILP (format) || noninteractive)
18908 return empty_unibyte_string;
18909
18910 if (no_props)
18911 face = Qnil;
18912
18913 face_id = (NILP (face) || EQ (face, Qdefault)) ? DEFAULT_FACE_ID
18914 : EQ (face, Qt) ? (EQ (window, selected_window)
18915 ? MODE_LINE_FACE_ID : MODE_LINE_INACTIVE_FACE_ID)
18916 : EQ (face, Qmode_line) ? MODE_LINE_FACE_ID
18917 : EQ (face, Qmode_line_inactive) ? MODE_LINE_INACTIVE_FACE_ID
18918 : EQ (face, Qheader_line) ? HEADER_LINE_FACE_ID
18919 : EQ (face, Qtool_bar) ? TOOL_BAR_FACE_ID
18920 : DEFAULT_FACE_ID;
18921
18922 if (XBUFFER (buffer) != current_buffer)
18923 old_buffer = current_buffer;
18924
18925 /* Save things including mode_line_proptrans_alist,
18926 and set that to nil so that we don't alter the outer value. */
18927 record_unwind_protect (unwind_format_mode_line,
18928 format_mode_line_unwind_data
18929 (old_buffer, selected_window, 1));
18930 mode_line_proptrans_alist = Qnil;
18931
18932 Fselect_window (window, Qt);
18933 if (old_buffer)
18934 set_buffer_internal_1 (XBUFFER (buffer));
18935
18936 init_iterator (&it, w, -1, -1, NULL, face_id);
18937
18938 if (no_props)
18939 {
18940 mode_line_target = MODE_LINE_NOPROP;
18941 mode_line_string_face_prop = Qnil;
18942 mode_line_string_list = Qnil;
18943 string_start = MODE_LINE_NOPROP_LEN (0);
18944 }
18945 else
18946 {
18947 mode_line_target = MODE_LINE_STRING;
18948 mode_line_string_list = Qnil;
18949 mode_line_string_face = face;
18950 mode_line_string_face_prop
18951 = (NILP (face) ? Qnil : Fcons (Qface, Fcons (face, Qnil)));
18952 }
18953
18954 push_kboard (FRAME_KBOARD (it.f));
18955 display_mode_element (&it, 0, 0, 0, format, Qnil, 0);
18956 pop_kboard ();
18957
18958 if (no_props)
18959 {
18960 len = MODE_LINE_NOPROP_LEN (string_start);
18961 str = make_string (mode_line_noprop_buf + string_start, len);
18962 }
18963 else
18964 {
18965 mode_line_string_list = Fnreverse (mode_line_string_list);
18966 str = Fmapconcat (intern ("identity"), mode_line_string_list,
18967 empty_unibyte_string);
18968 }
18969
18970 unbind_to (count, Qnil);
18971 return str;
18972 }
18973
18974 /* Write a null-terminated, right justified decimal representation of
18975 the positive integer D to BUF using a minimal field width WIDTH. */
18976
18977 static void
18978 pint2str (register char *buf, register int width, register EMACS_INT d)
18979 {
18980 register char *p = buf;
18981
18982 if (d <= 0)
18983 *p++ = '0';
18984 else
18985 {
18986 while (d > 0)
18987 {
18988 *p++ = d % 10 + '0';
18989 d /= 10;
18990 }
18991 }
18992
18993 for (width -= (int) (p - buf); width > 0; --width)
18994 *p++ = ' ';
18995 *p-- = '\0';
18996 while (p > buf)
18997 {
18998 d = *buf;
18999 *buf++ = *p;
19000 *p-- = d;
19001 }
19002 }
19003
19004 /* Write a null-terminated, right justified decimal and "human
19005 readable" representation of the nonnegative integer D to BUF using
19006 a minimal field width WIDTH. D should be smaller than 999.5e24. */
19007
19008 static const char power_letter[] =
19009 {
19010 0, /* not used */
19011 'k', /* kilo */
19012 'M', /* mega */
19013 'G', /* giga */
19014 'T', /* tera */
19015 'P', /* peta */
19016 'E', /* exa */
19017 'Z', /* zetta */
19018 'Y' /* yotta */
19019 };
19020
19021 static void
19022 pint2hrstr (char *buf, int width, int d)
19023 {
19024 /* We aim to represent the nonnegative integer D as
19025 QUOTIENT.TENTHS * 10 ^ (3 * EXPONENT). */
19026 int quotient = d;
19027 int remainder = 0;
19028 /* -1 means: do not use TENTHS. */
19029 int tenths = -1;
19030 int exponent = 0;
19031
19032 /* Length of QUOTIENT.TENTHS as a string. */
19033 int length;
19034
19035 char * psuffix;
19036 char * p;
19037
19038 if (1000 <= quotient)
19039 {
19040 /* Scale to the appropriate EXPONENT. */
19041 do
19042 {
19043 remainder = quotient % 1000;
19044 quotient /= 1000;
19045 exponent++;
19046 }
19047 while (1000 <= quotient);
19048
19049 /* Round to nearest and decide whether to use TENTHS or not. */
19050 if (quotient <= 9)
19051 {
19052 tenths = remainder / 100;
19053 if (50 <= remainder % 100)
19054 {
19055 if (tenths < 9)
19056 tenths++;
19057 else
19058 {
19059 quotient++;
19060 if (quotient == 10)
19061 tenths = -1;
19062 else
19063 tenths = 0;
19064 }
19065 }
19066 }
19067 else
19068 if (500 <= remainder)
19069 {
19070 if (quotient < 999)
19071 quotient++;
19072 else
19073 {
19074 quotient = 1;
19075 exponent++;
19076 tenths = 0;
19077 }
19078 }
19079 }
19080
19081 /* Calculate the LENGTH of QUOTIENT.TENTHS as a string. */
19082 if (tenths == -1 && quotient <= 99)
19083 if (quotient <= 9)
19084 length = 1;
19085 else
19086 length = 2;
19087 else
19088 length = 3;
19089 p = psuffix = buf + max (width, length);
19090
19091 /* Print EXPONENT. */
19092 if (exponent)
19093 *psuffix++ = power_letter[exponent];
19094 *psuffix = '\0';
19095
19096 /* Print TENTHS. */
19097 if (tenths >= 0)
19098 {
19099 *--p = '0' + tenths;
19100 *--p = '.';
19101 }
19102
19103 /* Print QUOTIENT. */
19104 do
19105 {
19106 int digit = quotient % 10;
19107 *--p = '0' + digit;
19108 }
19109 while ((quotient /= 10) != 0);
19110
19111 /* Print leading spaces. */
19112 while (buf < p)
19113 *--p = ' ';
19114 }
19115
19116 /* Set a mnemonic character for coding_system (Lisp symbol) in BUF.
19117 If EOL_FLAG is 1, set also a mnemonic character for end-of-line
19118 type of CODING_SYSTEM. Return updated pointer into BUF. */
19119
19120 static unsigned char invalid_eol_type[] = "(*invalid*)";
19121
19122 static char *
19123 decode_mode_spec_coding (Lisp_Object coding_system, register char *buf, int eol_flag)
19124 {
19125 Lisp_Object val;
19126 int multibyte = !NILP (BVAR (current_buffer, enable_multibyte_characters));
19127 const unsigned char *eol_str;
19128 int eol_str_len;
19129 /* The EOL conversion we are using. */
19130 Lisp_Object eoltype;
19131
19132 val = CODING_SYSTEM_SPEC (coding_system);
19133 eoltype = Qnil;
19134
19135 if (!VECTORP (val)) /* Not yet decided. */
19136 {
19137 if (multibyte)
19138 *buf++ = '-';
19139 if (eol_flag)
19140 eoltype = eol_mnemonic_undecided;
19141 /* Don't mention EOL conversion if it isn't decided. */
19142 }
19143 else
19144 {
19145 Lisp_Object attrs;
19146 Lisp_Object eolvalue;
19147
19148 attrs = AREF (val, 0);
19149 eolvalue = AREF (val, 2);
19150
19151 if (multibyte)
19152 *buf++ = XFASTINT (CODING_ATTR_MNEMONIC (attrs));
19153
19154 if (eol_flag)
19155 {
19156 /* The EOL conversion that is normal on this system. */
19157
19158 if (NILP (eolvalue)) /* Not yet decided. */
19159 eoltype = eol_mnemonic_undecided;
19160 else if (VECTORP (eolvalue)) /* Not yet decided. */
19161 eoltype = eol_mnemonic_undecided;
19162 else /* eolvalue is Qunix, Qdos, or Qmac. */
19163 eoltype = (EQ (eolvalue, Qunix)
19164 ? eol_mnemonic_unix
19165 : (EQ (eolvalue, Qdos) == 1
19166 ? eol_mnemonic_dos : eol_mnemonic_mac));
19167 }
19168 }
19169
19170 if (eol_flag)
19171 {
19172 /* Mention the EOL conversion if it is not the usual one. */
19173 if (STRINGP (eoltype))
19174 {
19175 eol_str = SDATA (eoltype);
19176 eol_str_len = SBYTES (eoltype);
19177 }
19178 else if (CHARACTERP (eoltype))
19179 {
19180 unsigned char *tmp = (unsigned char *) alloca (MAX_MULTIBYTE_LENGTH);
19181 eol_str_len = CHAR_STRING (XINT (eoltype), tmp);
19182 eol_str = tmp;
19183 }
19184 else
19185 {
19186 eol_str = invalid_eol_type;
19187 eol_str_len = sizeof (invalid_eol_type) - 1;
19188 }
19189 memcpy (buf, eol_str, eol_str_len);
19190 buf += eol_str_len;
19191 }
19192
19193 return buf;
19194 }
19195
19196 /* Return a string for the output of a mode line %-spec for window W,
19197 generated by character C. PRECISION >= 0 means don't return a
19198 string longer than that value. FIELD_WIDTH > 0 means pad the
19199 string returned with spaces to that value. Return a Lisp string in
19200 *STRING if the resulting string is taken from that Lisp string.
19201
19202 Note we operate on the current buffer for most purposes,
19203 the exception being w->base_line_pos. */
19204
19205 static char lots_of_dashes[] = "--------------------------------------------------------------------------------------------------------------------------------------------";
19206
19207 static const char *
19208 decode_mode_spec (struct window *w, register int c, int field_width,
19209 int precision, Lisp_Object *string)
19210 {
19211 Lisp_Object obj;
19212 struct frame *f = XFRAME (WINDOW_FRAME (w));
19213 char *decode_mode_spec_buf = f->decode_mode_spec_buffer;
19214 struct buffer *b = current_buffer;
19215
19216 obj = Qnil;
19217 *string = Qnil;
19218
19219 switch (c)
19220 {
19221 case '*':
19222 if (!NILP (BVAR (b, read_only)))
19223 return "%";
19224 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
19225 return "*";
19226 return "-";
19227
19228 case '+':
19229 /* This differs from %* only for a modified read-only buffer. */
19230 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
19231 return "*";
19232 if (!NILP (BVAR (b, read_only)))
19233 return "%";
19234 return "-";
19235
19236 case '&':
19237 /* This differs from %* in ignoring read-only-ness. */
19238 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
19239 return "*";
19240 return "-";
19241
19242 case '%':
19243 return "%";
19244
19245 case '[':
19246 {
19247 int i;
19248 char *p;
19249
19250 if (command_loop_level > 5)
19251 return "[[[... ";
19252 p = decode_mode_spec_buf;
19253 for (i = 0; i < command_loop_level; i++)
19254 *p++ = '[';
19255 *p = 0;
19256 return decode_mode_spec_buf;
19257 }
19258
19259 case ']':
19260 {
19261 int i;
19262 char *p;
19263
19264 if (command_loop_level > 5)
19265 return " ...]]]";
19266 p = decode_mode_spec_buf;
19267 for (i = 0; i < command_loop_level; i++)
19268 *p++ = ']';
19269 *p = 0;
19270 return decode_mode_spec_buf;
19271 }
19272
19273 case '-':
19274 {
19275 register int i;
19276
19277 /* Let lots_of_dashes be a string of infinite length. */
19278 if (mode_line_target == MODE_LINE_NOPROP ||
19279 mode_line_target == MODE_LINE_STRING)
19280 return "--";
19281 if (field_width <= 0
19282 || field_width > sizeof (lots_of_dashes))
19283 {
19284 for (i = 0; i < FRAME_MESSAGE_BUF_SIZE (f) - 1; ++i)
19285 decode_mode_spec_buf[i] = '-';
19286 decode_mode_spec_buf[i] = '\0';
19287 return decode_mode_spec_buf;
19288 }
19289 else
19290 return lots_of_dashes;
19291 }
19292
19293 case 'b':
19294 obj = BVAR (b, name);
19295 break;
19296
19297 case 'c':
19298 /* %c and %l are ignored in `frame-title-format'.
19299 (In redisplay_internal, the frame title is drawn _before_ the
19300 windows are updated, so the stuff which depends on actual
19301 window contents (such as %l) may fail to render properly, or
19302 even crash emacs.) */
19303 if (mode_line_target == MODE_LINE_TITLE)
19304 return "";
19305 else
19306 {
19307 EMACS_INT col = current_column ();
19308 w->column_number_displayed = make_number (col);
19309 pint2str (decode_mode_spec_buf, field_width, col);
19310 return decode_mode_spec_buf;
19311 }
19312
19313 case 'e':
19314 #ifndef SYSTEM_MALLOC
19315 {
19316 if (NILP (Vmemory_full))
19317 return "";
19318 else
19319 return "!MEM FULL! ";
19320 }
19321 #else
19322 return "";
19323 #endif
19324
19325 case 'F':
19326 /* %F displays the frame name. */
19327 if (!NILP (f->title))
19328 return SSDATA (f->title);
19329 if (f->explicit_name || ! FRAME_WINDOW_P (f))
19330 return SSDATA (f->name);
19331 return "Emacs";
19332
19333 case 'f':
19334 obj = BVAR (b, filename);
19335 break;
19336
19337 case 'i':
19338 {
19339 EMACS_INT size = ZV - BEGV;
19340 pint2str (decode_mode_spec_buf, field_width, size);
19341 return decode_mode_spec_buf;
19342 }
19343
19344 case 'I':
19345 {
19346 EMACS_INT size = ZV - BEGV;
19347 pint2hrstr (decode_mode_spec_buf, field_width, size);
19348 return decode_mode_spec_buf;
19349 }
19350
19351 case 'l':
19352 {
19353 EMACS_INT startpos, startpos_byte, line, linepos, linepos_byte;
19354 int topline, nlines, height;
19355 EMACS_INT junk;
19356
19357 /* %c and %l are ignored in `frame-title-format'. */
19358 if (mode_line_target == MODE_LINE_TITLE)
19359 return "";
19360
19361 startpos = XMARKER (w->start)->charpos;
19362 startpos_byte = marker_byte_position (w->start);
19363 height = WINDOW_TOTAL_LINES (w);
19364
19365 /* If we decided that this buffer isn't suitable for line numbers,
19366 don't forget that too fast. */
19367 if (EQ (w->base_line_pos, w->buffer))
19368 goto no_value;
19369 /* But do forget it, if the window shows a different buffer now. */
19370 else if (BUFFERP (w->base_line_pos))
19371 w->base_line_pos = Qnil;
19372
19373 /* If the buffer is very big, don't waste time. */
19374 if (INTEGERP (Vline_number_display_limit)
19375 && BUF_ZV (b) - BUF_BEGV (b) > XINT (Vline_number_display_limit))
19376 {
19377 w->base_line_pos = Qnil;
19378 w->base_line_number = Qnil;
19379 goto no_value;
19380 }
19381
19382 if (INTEGERP (w->base_line_number)
19383 && INTEGERP (w->base_line_pos)
19384 && XFASTINT (w->base_line_pos) <= startpos)
19385 {
19386 line = XFASTINT (w->base_line_number);
19387 linepos = XFASTINT (w->base_line_pos);
19388 linepos_byte = buf_charpos_to_bytepos (b, linepos);
19389 }
19390 else
19391 {
19392 line = 1;
19393 linepos = BUF_BEGV (b);
19394 linepos_byte = BUF_BEGV_BYTE (b);
19395 }
19396
19397 /* Count lines from base line to window start position. */
19398 nlines = display_count_lines (linepos, linepos_byte,
19399 startpos_byte,
19400 startpos, &junk);
19401
19402 topline = nlines + line;
19403
19404 /* Determine a new base line, if the old one is too close
19405 or too far away, or if we did not have one.
19406 "Too close" means it's plausible a scroll-down would
19407 go back past it. */
19408 if (startpos == BUF_BEGV (b))
19409 {
19410 w->base_line_number = make_number (topline);
19411 w->base_line_pos = make_number (BUF_BEGV (b));
19412 }
19413 else if (nlines < height + 25 || nlines > height * 3 + 50
19414 || linepos == BUF_BEGV (b))
19415 {
19416 EMACS_INT limit = BUF_BEGV (b);
19417 EMACS_INT limit_byte = BUF_BEGV_BYTE (b);
19418 EMACS_INT position;
19419 int distance = (height * 2 + 30) * line_number_display_limit_width;
19420
19421 if (startpos - distance > limit)
19422 {
19423 limit = startpos - distance;
19424 limit_byte = CHAR_TO_BYTE (limit);
19425 }
19426
19427 nlines = display_count_lines (startpos, startpos_byte,
19428 limit_byte,
19429 - (height * 2 + 30),
19430 &position);
19431 /* If we couldn't find the lines we wanted within
19432 line_number_display_limit_width chars per line,
19433 give up on line numbers for this window. */
19434 if (position == limit_byte && limit == startpos - distance)
19435 {
19436 w->base_line_pos = w->buffer;
19437 w->base_line_number = Qnil;
19438 goto no_value;
19439 }
19440
19441 w->base_line_number = make_number (topline - nlines);
19442 w->base_line_pos = make_number (BYTE_TO_CHAR (position));
19443 }
19444
19445 /* Now count lines from the start pos to point. */
19446 nlines = display_count_lines (startpos, startpos_byte,
19447 PT_BYTE, PT, &junk);
19448
19449 /* Record that we did display the line number. */
19450 line_number_displayed = 1;
19451
19452 /* Make the string to show. */
19453 pint2str (decode_mode_spec_buf, field_width, topline + nlines);
19454 return decode_mode_spec_buf;
19455 no_value:
19456 {
19457 char* p = decode_mode_spec_buf;
19458 int pad = field_width - 2;
19459 while (pad-- > 0)
19460 *p++ = ' ';
19461 *p++ = '?';
19462 *p++ = '?';
19463 *p = '\0';
19464 return decode_mode_spec_buf;
19465 }
19466 }
19467 break;
19468
19469 case 'm':
19470 obj = BVAR (b, mode_name);
19471 break;
19472
19473 case 'n':
19474 if (BUF_BEGV (b) > BUF_BEG (b) || BUF_ZV (b) < BUF_Z (b))
19475 return " Narrow";
19476 break;
19477
19478 case 'p':
19479 {
19480 EMACS_INT pos = marker_position (w->start);
19481 EMACS_INT total = BUF_ZV (b) - BUF_BEGV (b);
19482
19483 if (XFASTINT (w->window_end_pos) <= BUF_Z (b) - BUF_ZV (b))
19484 {
19485 if (pos <= BUF_BEGV (b))
19486 return "All";
19487 else
19488 return "Bottom";
19489 }
19490 else if (pos <= BUF_BEGV (b))
19491 return "Top";
19492 else
19493 {
19494 if (total > 1000000)
19495 /* Do it differently for a large value, to avoid overflow. */
19496 total = ((pos - BUF_BEGV (b)) + (total / 100) - 1) / (total / 100);
19497 else
19498 total = ((pos - BUF_BEGV (b)) * 100 + total - 1) / total;
19499 /* We can't normally display a 3-digit number,
19500 so get us a 2-digit number that is close. */
19501 if (total == 100)
19502 total = 99;
19503 sprintf (decode_mode_spec_buf, "%2ld%%", (long)total);
19504 return decode_mode_spec_buf;
19505 }
19506 }
19507
19508 /* Display percentage of size above the bottom of the screen. */
19509 case 'P':
19510 {
19511 EMACS_INT toppos = marker_position (w->start);
19512 EMACS_INT botpos = BUF_Z (b) - XFASTINT (w->window_end_pos);
19513 EMACS_INT total = BUF_ZV (b) - BUF_BEGV (b);
19514
19515 if (botpos >= BUF_ZV (b))
19516 {
19517 if (toppos <= BUF_BEGV (b))
19518 return "All";
19519 else
19520 return "Bottom";
19521 }
19522 else
19523 {
19524 if (total > 1000000)
19525 /* Do it differently for a large value, to avoid overflow. */
19526 total = ((botpos - BUF_BEGV (b)) + (total / 100) - 1) / (total / 100);
19527 else
19528 total = ((botpos - BUF_BEGV (b)) * 100 + total - 1) / total;
19529 /* We can't normally display a 3-digit number,
19530 so get us a 2-digit number that is close. */
19531 if (total == 100)
19532 total = 99;
19533 if (toppos <= BUF_BEGV (b))
19534 sprintf (decode_mode_spec_buf, "Top%2ld%%", (long)total);
19535 else
19536 sprintf (decode_mode_spec_buf, "%2ld%%", (long)total);
19537 return decode_mode_spec_buf;
19538 }
19539 }
19540
19541 case 's':
19542 /* status of process */
19543 obj = Fget_buffer_process (Fcurrent_buffer ());
19544 if (NILP (obj))
19545 return "no process";
19546 #ifndef MSDOS
19547 obj = Fsymbol_name (Fprocess_status (obj));
19548 #endif
19549 break;
19550
19551 case '@':
19552 {
19553 int count = inhibit_garbage_collection ();
19554 Lisp_Object val = call1 (intern ("file-remote-p"),
19555 BVAR (current_buffer, directory));
19556 unbind_to (count, Qnil);
19557
19558 if (NILP (val))
19559 return "-";
19560 else
19561 return "@";
19562 }
19563
19564 case 't': /* indicate TEXT or BINARY */
19565 return "T";
19566
19567 case 'z':
19568 /* coding-system (not including end-of-line format) */
19569 case 'Z':
19570 /* coding-system (including end-of-line type) */
19571 {
19572 int eol_flag = (c == 'Z');
19573 char *p = decode_mode_spec_buf;
19574
19575 if (! FRAME_WINDOW_P (f))
19576 {
19577 /* No need to mention EOL here--the terminal never needs
19578 to do EOL conversion. */
19579 p = decode_mode_spec_coding (CODING_ID_NAME
19580 (FRAME_KEYBOARD_CODING (f)->id),
19581 p, 0);
19582 p = decode_mode_spec_coding (CODING_ID_NAME
19583 (FRAME_TERMINAL_CODING (f)->id),
19584 p, 0);
19585 }
19586 p = decode_mode_spec_coding (BVAR (b, buffer_file_coding_system),
19587 p, eol_flag);
19588
19589 #if 0 /* This proves to be annoying; I think we can do without. -- rms. */
19590 #ifdef subprocesses
19591 obj = Fget_buffer_process (Fcurrent_buffer ());
19592 if (PROCESSP (obj))
19593 {
19594 p = decode_mode_spec_coding (XPROCESS (obj)->decode_coding_system,
19595 p, eol_flag);
19596 p = decode_mode_spec_coding (XPROCESS (obj)->encode_coding_system,
19597 p, eol_flag);
19598 }
19599 #endif /* subprocesses */
19600 #endif /* 0 */
19601 *p = 0;
19602 return decode_mode_spec_buf;
19603 }
19604 }
19605
19606 if (STRINGP (obj))
19607 {
19608 *string = obj;
19609 return SSDATA (obj);
19610 }
19611 else
19612 return "";
19613 }
19614
19615
19616 /* Count up to COUNT lines starting from START / START_BYTE.
19617 But don't go beyond LIMIT_BYTE.
19618 Return the number of lines thus found (always nonnegative).
19619
19620 Set *BYTE_POS_PTR to 1 if we found COUNT lines, 0 if we hit LIMIT. */
19621
19622 static int
19623 display_count_lines (EMACS_INT start, EMACS_INT start_byte,
19624 EMACS_INT limit_byte, int count,
19625 EMACS_INT *byte_pos_ptr)
19626 {
19627 register unsigned char *cursor;
19628 unsigned char *base;
19629
19630 register int ceiling;
19631 register unsigned char *ceiling_addr;
19632 int orig_count = count;
19633
19634 /* If we are not in selective display mode,
19635 check only for newlines. */
19636 int selective_display = (!NILP (BVAR (current_buffer, selective_display))
19637 && !INTEGERP (BVAR (current_buffer, selective_display)));
19638
19639 if (count > 0)
19640 {
19641 while (start_byte < limit_byte)
19642 {
19643 ceiling = BUFFER_CEILING_OF (start_byte);
19644 ceiling = min (limit_byte - 1, ceiling);
19645 ceiling_addr = BYTE_POS_ADDR (ceiling) + 1;
19646 base = (cursor = BYTE_POS_ADDR (start_byte));
19647 while (1)
19648 {
19649 if (selective_display)
19650 while (*cursor != '\n' && *cursor != 015 && ++cursor != ceiling_addr)
19651 ;
19652 else
19653 while (*cursor != '\n' && ++cursor != ceiling_addr)
19654 ;
19655
19656 if (cursor != ceiling_addr)
19657 {
19658 if (--count == 0)
19659 {
19660 start_byte += cursor - base + 1;
19661 *byte_pos_ptr = start_byte;
19662 return orig_count;
19663 }
19664 else
19665 if (++cursor == ceiling_addr)
19666 break;
19667 }
19668 else
19669 break;
19670 }
19671 start_byte += cursor - base;
19672 }
19673 }
19674 else
19675 {
19676 while (start_byte > limit_byte)
19677 {
19678 ceiling = BUFFER_FLOOR_OF (start_byte - 1);
19679 ceiling = max (limit_byte, ceiling);
19680 ceiling_addr = BYTE_POS_ADDR (ceiling) - 1;
19681 base = (cursor = BYTE_POS_ADDR (start_byte - 1) + 1);
19682 while (1)
19683 {
19684 if (selective_display)
19685 while (--cursor != ceiling_addr
19686 && *cursor != '\n' && *cursor != 015)
19687 ;
19688 else
19689 while (--cursor != ceiling_addr && *cursor != '\n')
19690 ;
19691
19692 if (cursor != ceiling_addr)
19693 {
19694 if (++count == 0)
19695 {
19696 start_byte += cursor - base + 1;
19697 *byte_pos_ptr = start_byte;
19698 /* When scanning backwards, we should
19699 not count the newline posterior to which we stop. */
19700 return - orig_count - 1;
19701 }
19702 }
19703 else
19704 break;
19705 }
19706 /* Here we add 1 to compensate for the last decrement
19707 of CURSOR, which took it past the valid range. */
19708 start_byte += cursor - base + 1;
19709 }
19710 }
19711
19712 *byte_pos_ptr = limit_byte;
19713
19714 if (count < 0)
19715 return - orig_count + count;
19716 return orig_count - count;
19717
19718 }
19719
19720
19721 \f
19722 /***********************************************************************
19723 Displaying strings
19724 ***********************************************************************/
19725
19726 /* Display a NUL-terminated string, starting with index START.
19727
19728 If STRING is non-null, display that C string. Otherwise, the Lisp
19729 string LISP_STRING is displayed. There's a case that STRING is
19730 non-null and LISP_STRING is not nil. It means STRING is a string
19731 data of LISP_STRING. In that case, we display LISP_STRING while
19732 ignoring its text properties.
19733
19734 If FACE_STRING is not nil, FACE_STRING_POS is a position in
19735 FACE_STRING. Display STRING or LISP_STRING with the face at
19736 FACE_STRING_POS in FACE_STRING:
19737
19738 Display the string in the environment given by IT, but use the
19739 standard display table, temporarily.
19740
19741 FIELD_WIDTH is the minimum number of output glyphs to produce.
19742 If STRING has fewer characters than FIELD_WIDTH, pad to the right
19743 with spaces. If STRING has more characters, more than FIELD_WIDTH
19744 glyphs will be produced. FIELD_WIDTH <= 0 means don't pad.
19745
19746 PRECISION is the maximum number of characters to output from
19747 STRING. PRECISION < 0 means don't truncate the string.
19748
19749 This is roughly equivalent to printf format specifiers:
19750
19751 FIELD_WIDTH PRECISION PRINTF
19752 ----------------------------------------
19753 -1 -1 %s
19754 -1 10 %.10s
19755 10 -1 %10s
19756 20 10 %20.10s
19757
19758 MULTIBYTE zero means do not display multibyte chars, > 0 means do
19759 display them, and < 0 means obey the current buffer's value of
19760 enable_multibyte_characters.
19761
19762 Value is the number of columns displayed. */
19763
19764 static int
19765 display_string (const char *string, Lisp_Object lisp_string, Lisp_Object face_string,
19766 EMACS_INT face_string_pos, EMACS_INT start, struct it *it,
19767 int field_width, int precision, int max_x, int multibyte)
19768 {
19769 int hpos_at_start = it->hpos;
19770 int saved_face_id = it->face_id;
19771 struct glyph_row *row = it->glyph_row;
19772
19773 /* Initialize the iterator IT for iteration over STRING beginning
19774 with index START. */
19775 reseat_to_string (it, NILP (lisp_string) ? string : NULL, lisp_string, start,
19776 precision, field_width, multibyte);
19777 if (string && STRINGP (lisp_string))
19778 /* LISP_STRING is the one returned by decode_mode_spec. We should
19779 ignore its text properties. */
19780 it->stop_charpos = -1;
19781
19782 /* If displaying STRING, set up the face of the iterator
19783 from LISP_STRING, if that's given. */
19784 if (STRINGP (face_string))
19785 {
19786 EMACS_INT endptr;
19787 struct face *face;
19788
19789 it->face_id
19790 = face_at_string_position (it->w, face_string, face_string_pos,
19791 0, it->region_beg_charpos,
19792 it->region_end_charpos,
19793 &endptr, it->base_face_id, 0);
19794 face = FACE_FROM_ID (it->f, it->face_id);
19795 it->face_box_p = face->box != FACE_NO_BOX;
19796 }
19797
19798 /* Set max_x to the maximum allowed X position. Don't let it go
19799 beyond the right edge of the window. */
19800 if (max_x <= 0)
19801 max_x = it->last_visible_x;
19802 else
19803 max_x = min (max_x, it->last_visible_x);
19804
19805 /* Skip over display elements that are not visible. because IT->w is
19806 hscrolled. */
19807 if (it->current_x < it->first_visible_x)
19808 move_it_in_display_line_to (it, 100000, it->first_visible_x,
19809 MOVE_TO_POS | MOVE_TO_X);
19810
19811 row->ascent = it->max_ascent;
19812 row->height = it->max_ascent + it->max_descent;
19813 row->phys_ascent = it->max_phys_ascent;
19814 row->phys_height = it->max_phys_ascent + it->max_phys_descent;
19815 row->extra_line_spacing = it->max_extra_line_spacing;
19816
19817 /* This condition is for the case that we are called with current_x
19818 past last_visible_x. */
19819 while (it->current_x < max_x)
19820 {
19821 int x_before, x, n_glyphs_before, i, nglyphs;
19822
19823 /* Get the next display element. */
19824 if (!get_next_display_element (it))
19825 break;
19826
19827 /* Produce glyphs. */
19828 x_before = it->current_x;
19829 n_glyphs_before = it->glyph_row->used[TEXT_AREA];
19830 PRODUCE_GLYPHS (it);
19831
19832 nglyphs = it->glyph_row->used[TEXT_AREA] - n_glyphs_before;
19833 i = 0;
19834 x = x_before;
19835 while (i < nglyphs)
19836 {
19837 struct glyph *glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i;
19838
19839 if (it->line_wrap != TRUNCATE
19840 && x + glyph->pixel_width > max_x)
19841 {
19842 /* End of continued line or max_x reached. */
19843 if (CHAR_GLYPH_PADDING_P (*glyph))
19844 {
19845 /* A wide character is unbreakable. */
19846 it->glyph_row->used[TEXT_AREA] = n_glyphs_before;
19847 it->current_x = x_before;
19848 }
19849 else
19850 {
19851 it->glyph_row->used[TEXT_AREA] = n_glyphs_before + i;
19852 it->current_x = x;
19853 }
19854 break;
19855 }
19856 else if (x + glyph->pixel_width >= it->first_visible_x)
19857 {
19858 /* Glyph is at least partially visible. */
19859 ++it->hpos;
19860 if (x < it->first_visible_x)
19861 it->glyph_row->x = x - it->first_visible_x;
19862 }
19863 else
19864 {
19865 /* Glyph is off the left margin of the display area.
19866 Should not happen. */
19867 abort ();
19868 }
19869
19870 row->ascent = max (row->ascent, it->max_ascent);
19871 row->height = max (row->height, it->max_ascent + it->max_descent);
19872 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
19873 row->phys_height = max (row->phys_height,
19874 it->max_phys_ascent + it->max_phys_descent);
19875 row->extra_line_spacing = max (row->extra_line_spacing,
19876 it->max_extra_line_spacing);
19877 x += glyph->pixel_width;
19878 ++i;
19879 }
19880
19881 /* Stop if max_x reached. */
19882 if (i < nglyphs)
19883 break;
19884
19885 /* Stop at line ends. */
19886 if (ITERATOR_AT_END_OF_LINE_P (it))
19887 {
19888 it->continuation_lines_width = 0;
19889 break;
19890 }
19891
19892 set_iterator_to_next (it, 1);
19893
19894 /* Stop if truncating at the right edge. */
19895 if (it->line_wrap == TRUNCATE
19896 && it->current_x >= it->last_visible_x)
19897 {
19898 /* Add truncation mark, but don't do it if the line is
19899 truncated at a padding space. */
19900 if (IT_CHARPOS (*it) < it->string_nchars)
19901 {
19902 if (!FRAME_WINDOW_P (it->f))
19903 {
19904 int ii, n;
19905
19906 if (it->current_x > it->last_visible_x)
19907 {
19908 for (ii = row->used[TEXT_AREA] - 1; ii > 0; --ii)
19909 if (!CHAR_GLYPH_PADDING_P (row->glyphs[TEXT_AREA][ii]))
19910 break;
19911 for (n = row->used[TEXT_AREA]; ii < n; ++ii)
19912 {
19913 row->used[TEXT_AREA] = ii;
19914 produce_special_glyphs (it, IT_TRUNCATION);
19915 }
19916 }
19917 produce_special_glyphs (it, IT_TRUNCATION);
19918 }
19919 it->glyph_row->truncated_on_right_p = 1;
19920 }
19921 break;
19922 }
19923 }
19924
19925 /* Maybe insert a truncation at the left. */
19926 if (it->first_visible_x
19927 && IT_CHARPOS (*it) > 0)
19928 {
19929 if (!FRAME_WINDOW_P (it->f))
19930 insert_left_trunc_glyphs (it);
19931 it->glyph_row->truncated_on_left_p = 1;
19932 }
19933
19934 it->face_id = saved_face_id;
19935
19936 /* Value is number of columns displayed. */
19937 return it->hpos - hpos_at_start;
19938 }
19939
19940
19941 \f
19942 /* This is like a combination of memq and assq. Return 1/2 if PROPVAL
19943 appears as an element of LIST or as the car of an element of LIST.
19944 If PROPVAL is a list, compare each element against LIST in that
19945 way, and return 1/2 if any element of PROPVAL is found in LIST.
19946 Otherwise return 0. This function cannot quit.
19947 The return value is 2 if the text is invisible but with an ellipsis
19948 and 1 if it's invisible and without an ellipsis. */
19949
19950 int
19951 invisible_p (register Lisp_Object propval, Lisp_Object list)
19952 {
19953 register Lisp_Object tail, proptail;
19954
19955 for (tail = list; CONSP (tail); tail = XCDR (tail))
19956 {
19957 register Lisp_Object tem;
19958 tem = XCAR (tail);
19959 if (EQ (propval, tem))
19960 return 1;
19961 if (CONSP (tem) && EQ (propval, XCAR (tem)))
19962 return NILP (XCDR (tem)) ? 1 : 2;
19963 }
19964
19965 if (CONSP (propval))
19966 {
19967 for (proptail = propval; CONSP (proptail); proptail = XCDR (proptail))
19968 {
19969 Lisp_Object propelt;
19970 propelt = XCAR (proptail);
19971 for (tail = list; CONSP (tail); tail = XCDR (tail))
19972 {
19973 register Lisp_Object tem;
19974 tem = XCAR (tail);
19975 if (EQ (propelt, tem))
19976 return 1;
19977 if (CONSP (tem) && EQ (propelt, XCAR (tem)))
19978 return NILP (XCDR (tem)) ? 1 : 2;
19979 }
19980 }
19981 }
19982
19983 return 0;
19984 }
19985
19986 DEFUN ("invisible-p", Finvisible_p, Sinvisible_p, 1, 1, 0,
19987 doc: /* Non-nil if the property makes the text invisible.
19988 POS-OR-PROP can be a marker or number, in which case it is taken to be
19989 a position in the current buffer and the value of the `invisible' property
19990 is checked; or it can be some other value, which is then presumed to be the
19991 value of the `invisible' property of the text of interest.
19992 The non-nil value returned can be t for truly invisible text or something
19993 else if the text is replaced by an ellipsis. */)
19994 (Lisp_Object pos_or_prop)
19995 {
19996 Lisp_Object prop
19997 = (NATNUMP (pos_or_prop) || MARKERP (pos_or_prop)
19998 ? Fget_char_property (pos_or_prop, Qinvisible, Qnil)
19999 : pos_or_prop);
20000 int invis = TEXT_PROP_MEANS_INVISIBLE (prop);
20001 return (invis == 0 ? Qnil
20002 : invis == 1 ? Qt
20003 : make_number (invis));
20004 }
20005
20006 /* Calculate a width or height in pixels from a specification using
20007 the following elements:
20008
20009 SPEC ::=
20010 NUM - a (fractional) multiple of the default font width/height
20011 (NUM) - specifies exactly NUM pixels
20012 UNIT - a fixed number of pixels, see below.
20013 ELEMENT - size of a display element in pixels, see below.
20014 (NUM . SPEC) - equals NUM * SPEC
20015 (+ SPEC SPEC ...) - add pixel values
20016 (- SPEC SPEC ...) - subtract pixel values
20017 (- SPEC) - negate pixel value
20018
20019 NUM ::=
20020 INT or FLOAT - a number constant
20021 SYMBOL - use symbol's (buffer local) variable binding.
20022
20023 UNIT ::=
20024 in - pixels per inch *)
20025 mm - pixels per 1/1000 meter *)
20026 cm - pixels per 1/100 meter *)
20027 width - width of current font in pixels.
20028 height - height of current font in pixels.
20029
20030 *) using the ratio(s) defined in display-pixels-per-inch.
20031
20032 ELEMENT ::=
20033
20034 left-fringe - left fringe width in pixels
20035 right-fringe - right fringe width in pixels
20036
20037 left-margin - left margin width in pixels
20038 right-margin - right margin width in pixels
20039
20040 scroll-bar - scroll-bar area width in pixels
20041
20042 Examples:
20043
20044 Pixels corresponding to 5 inches:
20045 (5 . in)
20046
20047 Total width of non-text areas on left side of window (if scroll-bar is on left):
20048 '(space :width (+ left-fringe left-margin scroll-bar))
20049
20050 Align to first text column (in header line):
20051 '(space :align-to 0)
20052
20053 Align to middle of text area minus half the width of variable `my-image'
20054 containing a loaded image:
20055 '(space :align-to (0.5 . (- text my-image)))
20056
20057 Width of left margin minus width of 1 character in the default font:
20058 '(space :width (- left-margin 1))
20059
20060 Width of left margin minus width of 2 characters in the current font:
20061 '(space :width (- left-margin (2 . width)))
20062
20063 Center 1 character over left-margin (in header line):
20064 '(space :align-to (+ left-margin (0.5 . left-margin) -0.5))
20065
20066 Different ways to express width of left fringe plus left margin minus one pixel:
20067 '(space :width (- (+ left-fringe left-margin) (1)))
20068 '(space :width (+ left-fringe left-margin (- (1))))
20069 '(space :width (+ left-fringe left-margin (-1)))
20070
20071 */
20072
20073 #define NUMVAL(X) \
20074 ((INTEGERP (X) || FLOATP (X)) \
20075 ? XFLOATINT (X) \
20076 : - 1)
20077
20078 int
20079 calc_pixel_width_or_height (double *res, struct it *it, Lisp_Object prop,
20080 struct font *font, int width_p, int *align_to)
20081 {
20082 double pixels;
20083
20084 #define OK_PIXELS(val) ((*res = (double)(val)), 1)
20085 #define OK_ALIGN_TO(val) ((*align_to = (int)(val)), 1)
20086
20087 if (NILP (prop))
20088 return OK_PIXELS (0);
20089
20090 xassert (FRAME_LIVE_P (it->f));
20091
20092 if (SYMBOLP (prop))
20093 {
20094 if (SCHARS (SYMBOL_NAME (prop)) == 2)
20095 {
20096 char *unit = SSDATA (SYMBOL_NAME (prop));
20097
20098 if (unit[0] == 'i' && unit[1] == 'n')
20099 pixels = 1.0;
20100 else if (unit[0] == 'm' && unit[1] == 'm')
20101 pixels = 25.4;
20102 else if (unit[0] == 'c' && unit[1] == 'm')
20103 pixels = 2.54;
20104 else
20105 pixels = 0;
20106 if (pixels > 0)
20107 {
20108 double ppi;
20109 #ifdef HAVE_WINDOW_SYSTEM
20110 if (FRAME_WINDOW_P (it->f)
20111 && (ppi = (width_p
20112 ? FRAME_X_DISPLAY_INFO (it->f)->resx
20113 : FRAME_X_DISPLAY_INFO (it->f)->resy),
20114 ppi > 0))
20115 return OK_PIXELS (ppi / pixels);
20116 #endif
20117
20118 if ((ppi = NUMVAL (Vdisplay_pixels_per_inch), ppi > 0)
20119 || (CONSP (Vdisplay_pixels_per_inch)
20120 && (ppi = (width_p
20121 ? NUMVAL (XCAR (Vdisplay_pixels_per_inch))
20122 : NUMVAL (XCDR (Vdisplay_pixels_per_inch))),
20123 ppi > 0)))
20124 return OK_PIXELS (ppi / pixels);
20125
20126 return 0;
20127 }
20128 }
20129
20130 #ifdef HAVE_WINDOW_SYSTEM
20131 if (EQ (prop, Qheight))
20132 return OK_PIXELS (font ? FONT_HEIGHT (font) : FRAME_LINE_HEIGHT (it->f));
20133 if (EQ (prop, Qwidth))
20134 return OK_PIXELS (font ? FONT_WIDTH (font) : FRAME_COLUMN_WIDTH (it->f));
20135 #else
20136 if (EQ (prop, Qheight) || EQ (prop, Qwidth))
20137 return OK_PIXELS (1);
20138 #endif
20139
20140 if (EQ (prop, Qtext))
20141 return OK_PIXELS (width_p
20142 ? window_box_width (it->w, TEXT_AREA)
20143 : WINDOW_BOX_HEIGHT_NO_MODE_LINE (it->w));
20144
20145 if (align_to && *align_to < 0)
20146 {
20147 *res = 0;
20148 if (EQ (prop, Qleft))
20149 return OK_ALIGN_TO (window_box_left_offset (it->w, TEXT_AREA));
20150 if (EQ (prop, Qright))
20151 return OK_ALIGN_TO (window_box_right_offset (it->w, TEXT_AREA));
20152 if (EQ (prop, Qcenter))
20153 return OK_ALIGN_TO (window_box_left_offset (it->w, TEXT_AREA)
20154 + window_box_width (it->w, TEXT_AREA) / 2);
20155 if (EQ (prop, Qleft_fringe))
20156 return OK_ALIGN_TO (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it->w)
20157 ? WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (it->w)
20158 : window_box_right_offset (it->w, LEFT_MARGIN_AREA));
20159 if (EQ (prop, Qright_fringe))
20160 return OK_ALIGN_TO (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it->w)
20161 ? window_box_right_offset (it->w, RIGHT_MARGIN_AREA)
20162 : window_box_right_offset (it->w, TEXT_AREA));
20163 if (EQ (prop, Qleft_margin))
20164 return OK_ALIGN_TO (window_box_left_offset (it->w, LEFT_MARGIN_AREA));
20165 if (EQ (prop, Qright_margin))
20166 return OK_ALIGN_TO (window_box_left_offset (it->w, RIGHT_MARGIN_AREA));
20167 if (EQ (prop, Qscroll_bar))
20168 return OK_ALIGN_TO (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (it->w)
20169 ? 0
20170 : (window_box_right_offset (it->w, RIGHT_MARGIN_AREA)
20171 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it->w)
20172 ? WINDOW_RIGHT_FRINGE_WIDTH (it->w)
20173 : 0)));
20174 }
20175 else
20176 {
20177 if (EQ (prop, Qleft_fringe))
20178 return OK_PIXELS (WINDOW_LEFT_FRINGE_WIDTH (it->w));
20179 if (EQ (prop, Qright_fringe))
20180 return OK_PIXELS (WINDOW_RIGHT_FRINGE_WIDTH (it->w));
20181 if (EQ (prop, Qleft_margin))
20182 return OK_PIXELS (WINDOW_LEFT_MARGIN_WIDTH (it->w));
20183 if (EQ (prop, Qright_margin))
20184 return OK_PIXELS (WINDOW_RIGHT_MARGIN_WIDTH (it->w));
20185 if (EQ (prop, Qscroll_bar))
20186 return OK_PIXELS (WINDOW_SCROLL_BAR_AREA_WIDTH (it->w));
20187 }
20188
20189 prop = Fbuffer_local_value (prop, it->w->buffer);
20190 }
20191
20192 if (INTEGERP (prop) || FLOATP (prop))
20193 {
20194 int base_unit = (width_p
20195 ? FRAME_COLUMN_WIDTH (it->f)
20196 : FRAME_LINE_HEIGHT (it->f));
20197 return OK_PIXELS (XFLOATINT (prop) * base_unit);
20198 }
20199
20200 if (CONSP (prop))
20201 {
20202 Lisp_Object car = XCAR (prop);
20203 Lisp_Object cdr = XCDR (prop);
20204
20205 if (SYMBOLP (car))
20206 {
20207 #ifdef HAVE_WINDOW_SYSTEM
20208 if (FRAME_WINDOW_P (it->f)
20209 && valid_image_p (prop))
20210 {
20211 int id = lookup_image (it->f, prop);
20212 struct image *img = IMAGE_FROM_ID (it->f, id);
20213
20214 return OK_PIXELS (width_p ? img->width : img->height);
20215 }
20216 #endif
20217 if (EQ (car, Qplus) || EQ (car, Qminus))
20218 {
20219 int first = 1;
20220 double px;
20221
20222 pixels = 0;
20223 while (CONSP (cdr))
20224 {
20225 if (!calc_pixel_width_or_height (&px, it, XCAR (cdr),
20226 font, width_p, align_to))
20227 return 0;
20228 if (first)
20229 pixels = (EQ (car, Qplus) ? px : -px), first = 0;
20230 else
20231 pixels += px;
20232 cdr = XCDR (cdr);
20233 }
20234 if (EQ (car, Qminus))
20235 pixels = -pixels;
20236 return OK_PIXELS (pixels);
20237 }
20238
20239 car = Fbuffer_local_value (car, it->w->buffer);
20240 }
20241
20242 if (INTEGERP (car) || FLOATP (car))
20243 {
20244 double fact;
20245 pixels = XFLOATINT (car);
20246 if (NILP (cdr))
20247 return OK_PIXELS (pixels);
20248 if (calc_pixel_width_or_height (&fact, it, cdr,
20249 font, width_p, align_to))
20250 return OK_PIXELS (pixels * fact);
20251 return 0;
20252 }
20253
20254 return 0;
20255 }
20256
20257 return 0;
20258 }
20259
20260 \f
20261 /***********************************************************************
20262 Glyph Display
20263 ***********************************************************************/
20264
20265 #ifdef HAVE_WINDOW_SYSTEM
20266
20267 #if GLYPH_DEBUG
20268
20269 void
20270 dump_glyph_string (s)
20271 struct glyph_string *s;
20272 {
20273 fprintf (stderr, "glyph string\n");
20274 fprintf (stderr, " x, y, w, h = %d, %d, %d, %d\n",
20275 s->x, s->y, s->width, s->height);
20276 fprintf (stderr, " ybase = %d\n", s->ybase);
20277 fprintf (stderr, " hl = %d\n", s->hl);
20278 fprintf (stderr, " left overhang = %d, right = %d\n",
20279 s->left_overhang, s->right_overhang);
20280 fprintf (stderr, " nchars = %d\n", s->nchars);
20281 fprintf (stderr, " extends to end of line = %d\n",
20282 s->extends_to_end_of_line_p);
20283 fprintf (stderr, " font height = %d\n", FONT_HEIGHT (s->font));
20284 fprintf (stderr, " bg width = %d\n", s->background_width);
20285 }
20286
20287 #endif /* GLYPH_DEBUG */
20288
20289 /* Initialize glyph string S. CHAR2B is a suitably allocated vector
20290 of XChar2b structures for S; it can't be allocated in
20291 init_glyph_string because it must be allocated via `alloca'. W
20292 is the window on which S is drawn. ROW and AREA are the glyph row
20293 and area within the row from which S is constructed. START is the
20294 index of the first glyph structure covered by S. HL is a
20295 face-override for drawing S. */
20296
20297 #ifdef HAVE_NTGUI
20298 #define OPTIONAL_HDC(hdc) HDC hdc,
20299 #define DECLARE_HDC(hdc) HDC hdc;
20300 #define ALLOCATE_HDC(hdc, f) hdc = get_frame_dc ((f))
20301 #define RELEASE_HDC(hdc, f) release_frame_dc ((f), (hdc))
20302 #endif
20303
20304 #ifndef OPTIONAL_HDC
20305 #define OPTIONAL_HDC(hdc)
20306 #define DECLARE_HDC(hdc)
20307 #define ALLOCATE_HDC(hdc, f)
20308 #define RELEASE_HDC(hdc, f)
20309 #endif
20310
20311 static void
20312 init_glyph_string (struct glyph_string *s,
20313 OPTIONAL_HDC (hdc)
20314 XChar2b *char2b, struct window *w, struct glyph_row *row,
20315 enum glyph_row_area area, int start, enum draw_glyphs_face hl)
20316 {
20317 memset (s, 0, sizeof *s);
20318 s->w = w;
20319 s->f = XFRAME (w->frame);
20320 #ifdef HAVE_NTGUI
20321 s->hdc = hdc;
20322 #endif
20323 s->display = FRAME_X_DISPLAY (s->f);
20324 s->window = FRAME_X_WINDOW (s->f);
20325 s->char2b = char2b;
20326 s->hl = hl;
20327 s->row = row;
20328 s->area = area;
20329 s->first_glyph = row->glyphs[area] + start;
20330 s->height = row->height;
20331 s->y = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
20332 s->ybase = s->y + row->ascent;
20333 }
20334
20335
20336 /* Append the list of glyph strings with head H and tail T to the list
20337 with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the result. */
20338
20339 static INLINE void
20340 append_glyph_string_lists (struct glyph_string **head, struct glyph_string **tail,
20341 struct glyph_string *h, struct glyph_string *t)
20342 {
20343 if (h)
20344 {
20345 if (*head)
20346 (*tail)->next = h;
20347 else
20348 *head = h;
20349 h->prev = *tail;
20350 *tail = t;
20351 }
20352 }
20353
20354
20355 /* Prepend the list of glyph strings with head H and tail T to the
20356 list with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the
20357 result. */
20358
20359 static INLINE void
20360 prepend_glyph_string_lists (struct glyph_string **head, struct glyph_string **tail,
20361 struct glyph_string *h, struct glyph_string *t)
20362 {
20363 if (h)
20364 {
20365 if (*head)
20366 (*head)->prev = t;
20367 else
20368 *tail = t;
20369 t->next = *head;
20370 *head = h;
20371 }
20372 }
20373
20374
20375 /* Append glyph string S to the list with head *HEAD and tail *TAIL.
20376 Set *HEAD and *TAIL to the resulting list. */
20377
20378 static INLINE void
20379 append_glyph_string (struct glyph_string **head, struct glyph_string **tail,
20380 struct glyph_string *s)
20381 {
20382 s->next = s->prev = NULL;
20383 append_glyph_string_lists (head, tail, s, s);
20384 }
20385
20386
20387 /* Get face and two-byte form of character C in face FACE_ID on frame
20388 F. The encoding of C is returned in *CHAR2B. MULTIBYTE_P non-zero
20389 means we want to display multibyte text. DISPLAY_P non-zero means
20390 make sure that X resources for the face returned are allocated.
20391 Value is a pointer to a realized face that is ready for display if
20392 DISPLAY_P is non-zero. */
20393
20394 static INLINE struct face *
20395 get_char_face_and_encoding (struct frame *f, int c, int face_id,
20396 XChar2b *char2b, int multibyte_p, int display_p)
20397 {
20398 struct face *face = FACE_FROM_ID (f, face_id);
20399
20400 if (face->font)
20401 {
20402 unsigned code = face->font->driver->encode_char (face->font, c);
20403
20404 if (code != FONT_INVALID_CODE)
20405 STORE_XCHAR2B (char2b, (code >> 8), (code & 0xFF));
20406 else
20407 STORE_XCHAR2B (char2b, 0, 0);
20408 }
20409
20410 /* Make sure X resources of the face are allocated. */
20411 #ifdef HAVE_X_WINDOWS
20412 if (display_p)
20413 #endif
20414 {
20415 xassert (face != NULL);
20416 PREPARE_FACE_FOR_DISPLAY (f, face);
20417 }
20418
20419 return face;
20420 }
20421
20422
20423 /* Get face and two-byte form of character glyph GLYPH on frame F.
20424 The encoding of GLYPH->u.ch is returned in *CHAR2B. Value is
20425 a pointer to a realized face that is ready for display. */
20426
20427 static INLINE struct face *
20428 get_glyph_face_and_encoding (struct frame *f, struct glyph *glyph,
20429 XChar2b *char2b, int *two_byte_p)
20430 {
20431 struct face *face;
20432
20433 xassert (glyph->type == CHAR_GLYPH);
20434 face = FACE_FROM_ID (f, glyph->face_id);
20435
20436 if (two_byte_p)
20437 *two_byte_p = 0;
20438
20439 if (face->font)
20440 {
20441 unsigned code;
20442
20443 if (CHAR_BYTE8_P (glyph->u.ch))
20444 code = CHAR_TO_BYTE8 (glyph->u.ch);
20445 else
20446 code = face->font->driver->encode_char (face->font, glyph->u.ch);
20447
20448 if (code != FONT_INVALID_CODE)
20449 STORE_XCHAR2B (char2b, (code >> 8), (code & 0xFF));
20450 else
20451 STORE_XCHAR2B (char2b, 0, 0);
20452 }
20453
20454 /* Make sure X resources of the face are allocated. */
20455 xassert (face != NULL);
20456 PREPARE_FACE_FOR_DISPLAY (f, face);
20457 return face;
20458 }
20459
20460
20461 /* Get glyph code of character C in FONT in the two-byte form CHAR2B.
20462 Retunr 1 if FONT has a glyph for C, otherwise return 0. */
20463
20464 static INLINE int
20465 get_char_glyph_code (int c, struct font *font, XChar2b *char2b)
20466 {
20467 unsigned code;
20468
20469 if (CHAR_BYTE8_P (c))
20470 code = CHAR_TO_BYTE8 (c);
20471 else
20472 code = font->driver->encode_char (font, c);
20473
20474 if (code == FONT_INVALID_CODE)
20475 return 0;
20476 STORE_XCHAR2B (char2b, (code >> 8), (code & 0xFF));
20477 return 1;
20478 }
20479
20480
20481 /* Fill glyph string S with composition components specified by S->cmp.
20482
20483 BASE_FACE is the base face of the composition.
20484 S->cmp_from is the index of the first component for S.
20485
20486 OVERLAPS non-zero means S should draw the foreground only, and use
20487 its physical height for clipping. See also draw_glyphs.
20488
20489 Value is the index of a component not in S. */
20490
20491 static int
20492 fill_composite_glyph_string (struct glyph_string *s, struct face *base_face,
20493 int overlaps)
20494 {
20495 int i;
20496 /* For all glyphs of this composition, starting at the offset
20497 S->cmp_from, until we reach the end of the definition or encounter a
20498 glyph that requires the different face, add it to S. */
20499 struct face *face;
20500
20501 xassert (s);
20502
20503 s->for_overlaps = overlaps;
20504 s->face = NULL;
20505 s->font = NULL;
20506 for (i = s->cmp_from; i < s->cmp->glyph_len; i++)
20507 {
20508 int c = COMPOSITION_GLYPH (s->cmp, i);
20509
20510 if (c != '\t')
20511 {
20512 int face_id = FACE_FOR_CHAR (s->f, base_face->ascii_face, c,
20513 -1, Qnil);
20514
20515 face = get_char_face_and_encoding (s->f, c, face_id,
20516 s->char2b + i, 1, 1);
20517 if (face)
20518 {
20519 if (! s->face)
20520 {
20521 s->face = face;
20522 s->font = s->face->font;
20523 }
20524 else if (s->face != face)
20525 break;
20526 }
20527 }
20528 ++s->nchars;
20529 }
20530 s->cmp_to = i;
20531
20532 /* All glyph strings for the same composition has the same width,
20533 i.e. the width set for the first component of the composition. */
20534 s->width = s->first_glyph->pixel_width;
20535
20536 /* If the specified font could not be loaded, use the frame's
20537 default font, but record the fact that we couldn't load it in
20538 the glyph string so that we can draw rectangles for the
20539 characters of the glyph string. */
20540 if (s->font == NULL)
20541 {
20542 s->font_not_found_p = 1;
20543 s->font = FRAME_FONT (s->f);
20544 }
20545
20546 /* Adjust base line for subscript/superscript text. */
20547 s->ybase += s->first_glyph->voffset;
20548
20549 /* This glyph string must always be drawn with 16-bit functions. */
20550 s->two_byte_p = 1;
20551
20552 return s->cmp_to;
20553 }
20554
20555 static int
20556 fill_gstring_glyph_string (struct glyph_string *s, int face_id,
20557 int start, int end, int overlaps)
20558 {
20559 struct glyph *glyph, *last;
20560 Lisp_Object lgstring;
20561 int i;
20562
20563 s->for_overlaps = overlaps;
20564 glyph = s->row->glyphs[s->area] + start;
20565 last = s->row->glyphs[s->area] + end;
20566 s->cmp_id = glyph->u.cmp.id;
20567 s->cmp_from = glyph->slice.cmp.from;
20568 s->cmp_to = glyph->slice.cmp.to + 1;
20569 s->face = FACE_FROM_ID (s->f, face_id);
20570 lgstring = composition_gstring_from_id (s->cmp_id);
20571 s->font = XFONT_OBJECT (LGSTRING_FONT (lgstring));
20572 glyph++;
20573 while (glyph < last
20574 && glyph->u.cmp.automatic
20575 && glyph->u.cmp.id == s->cmp_id
20576 && s->cmp_to == glyph->slice.cmp.from)
20577 s->cmp_to = (glyph++)->slice.cmp.to + 1;
20578
20579 for (i = s->cmp_from; i < s->cmp_to; i++)
20580 {
20581 Lisp_Object lglyph = LGSTRING_GLYPH (lgstring, i);
20582 unsigned code = LGLYPH_CODE (lglyph);
20583
20584 STORE_XCHAR2B ((s->char2b + i), code >> 8, code & 0xFF);
20585 }
20586 s->width = composition_gstring_width (lgstring, s->cmp_from, s->cmp_to, NULL);
20587 return glyph - s->row->glyphs[s->area];
20588 }
20589
20590
20591 /* Fill glyph string S from a sequence glyphs for glyphless characters.
20592 See the comment of fill_glyph_string for arguments.
20593 Value is the index of the first glyph not in S. */
20594
20595
20596 static int
20597 fill_glyphless_glyph_string (struct glyph_string *s, int face_id,
20598 int start, int end, int overlaps)
20599 {
20600 struct glyph *glyph, *last;
20601 int voffset;
20602
20603 xassert (s->first_glyph->type == GLYPHLESS_GLYPH);
20604 s->for_overlaps = overlaps;
20605 glyph = s->row->glyphs[s->area] + start;
20606 last = s->row->glyphs[s->area] + end;
20607 voffset = glyph->voffset;
20608 s->face = FACE_FROM_ID (s->f, face_id);
20609 s->font = s->face->font;
20610 s->nchars = 1;
20611 s->width = glyph->pixel_width;
20612 glyph++;
20613 while (glyph < last
20614 && glyph->type == GLYPHLESS_GLYPH
20615 && glyph->voffset == voffset
20616 && glyph->face_id == face_id)
20617 {
20618 s->nchars++;
20619 s->width += glyph->pixel_width;
20620 glyph++;
20621 }
20622 s->ybase += voffset;
20623 return glyph - s->row->glyphs[s->area];
20624 }
20625
20626
20627 /* Fill glyph string S from a sequence of character glyphs.
20628
20629 FACE_ID is the face id of the string. START is the index of the
20630 first glyph to consider, END is the index of the last + 1.
20631 OVERLAPS non-zero means S should draw the foreground only, and use
20632 its physical height for clipping. See also draw_glyphs.
20633
20634 Value is the index of the first glyph not in S. */
20635
20636 static int
20637 fill_glyph_string (struct glyph_string *s, int face_id,
20638 int start, int end, int overlaps)
20639 {
20640 struct glyph *glyph, *last;
20641 int voffset;
20642 int glyph_not_available_p;
20643
20644 xassert (s->f == XFRAME (s->w->frame));
20645 xassert (s->nchars == 0);
20646 xassert (start >= 0 && end > start);
20647
20648 s->for_overlaps = overlaps;
20649 glyph = s->row->glyphs[s->area] + start;
20650 last = s->row->glyphs[s->area] + end;
20651 voffset = glyph->voffset;
20652 s->padding_p = glyph->padding_p;
20653 glyph_not_available_p = glyph->glyph_not_available_p;
20654
20655 while (glyph < last
20656 && glyph->type == CHAR_GLYPH
20657 && glyph->voffset == voffset
20658 /* Same face id implies same font, nowadays. */
20659 && glyph->face_id == face_id
20660 && glyph->glyph_not_available_p == glyph_not_available_p)
20661 {
20662 int two_byte_p;
20663
20664 s->face = get_glyph_face_and_encoding (s->f, glyph,
20665 s->char2b + s->nchars,
20666 &two_byte_p);
20667 s->two_byte_p = two_byte_p;
20668 ++s->nchars;
20669 xassert (s->nchars <= end - start);
20670 s->width += glyph->pixel_width;
20671 if (glyph++->padding_p != s->padding_p)
20672 break;
20673 }
20674
20675 s->font = s->face->font;
20676
20677 /* If the specified font could not be loaded, use the frame's font,
20678 but record the fact that we couldn't load it in
20679 S->font_not_found_p so that we can draw rectangles for the
20680 characters of the glyph string. */
20681 if (s->font == NULL || glyph_not_available_p)
20682 {
20683 s->font_not_found_p = 1;
20684 s->font = FRAME_FONT (s->f);
20685 }
20686
20687 /* Adjust base line for subscript/superscript text. */
20688 s->ybase += voffset;
20689
20690 xassert (s->face && s->face->gc);
20691 return glyph - s->row->glyphs[s->area];
20692 }
20693
20694
20695 /* Fill glyph string S from image glyph S->first_glyph. */
20696
20697 static void
20698 fill_image_glyph_string (struct glyph_string *s)
20699 {
20700 xassert (s->first_glyph->type == IMAGE_GLYPH);
20701 s->img = IMAGE_FROM_ID (s->f, s->first_glyph->u.img_id);
20702 xassert (s->img);
20703 s->slice = s->first_glyph->slice.img;
20704 s->face = FACE_FROM_ID (s->f, s->first_glyph->face_id);
20705 s->font = s->face->font;
20706 s->width = s->first_glyph->pixel_width;
20707
20708 /* Adjust base line for subscript/superscript text. */
20709 s->ybase += s->first_glyph->voffset;
20710 }
20711
20712
20713 /* Fill glyph string S from a sequence of stretch glyphs.
20714
20715 ROW is the glyph row in which the glyphs are found, AREA is the
20716 area within the row. START is the index of the first glyph to
20717 consider, END is the index of the last + 1.
20718
20719 Value is the index of the first glyph not in S. */
20720
20721 static int
20722 fill_stretch_glyph_string (struct glyph_string *s, struct glyph_row *row,
20723 enum glyph_row_area area, int start, int end)
20724 {
20725 struct glyph *glyph, *last;
20726 int voffset, face_id;
20727
20728 xassert (s->first_glyph->type == STRETCH_GLYPH);
20729
20730 glyph = s->row->glyphs[s->area] + start;
20731 last = s->row->glyphs[s->area] + end;
20732 face_id = glyph->face_id;
20733 s->face = FACE_FROM_ID (s->f, face_id);
20734 s->font = s->face->font;
20735 s->width = glyph->pixel_width;
20736 s->nchars = 1;
20737 voffset = glyph->voffset;
20738
20739 for (++glyph;
20740 (glyph < last
20741 && glyph->type == STRETCH_GLYPH
20742 && glyph->voffset == voffset
20743 && glyph->face_id == face_id);
20744 ++glyph)
20745 s->width += glyph->pixel_width;
20746
20747 /* Adjust base line for subscript/superscript text. */
20748 s->ybase += voffset;
20749
20750 /* The case that face->gc == 0 is handled when drawing the glyph
20751 string by calling PREPARE_FACE_FOR_DISPLAY. */
20752 xassert (s->face);
20753 return glyph - s->row->glyphs[s->area];
20754 }
20755
20756 static struct font_metrics *
20757 get_per_char_metric (struct frame *f, struct font *font, XChar2b *char2b)
20758 {
20759 static struct font_metrics metrics;
20760 unsigned code = (XCHAR2B_BYTE1 (char2b) << 8) | XCHAR2B_BYTE2 (char2b);
20761
20762 if (! font || code == FONT_INVALID_CODE)
20763 return NULL;
20764 font->driver->text_extents (font, &code, 1, &metrics);
20765 return &metrics;
20766 }
20767
20768 /* EXPORT for RIF:
20769 Set *LEFT and *RIGHT to the left and right overhang of GLYPH on
20770 frame F. Overhangs of glyphs other than type CHAR_GLYPH are
20771 assumed to be zero. */
20772
20773 void
20774 x_get_glyph_overhangs (struct glyph *glyph, struct frame *f, int *left, int *right)
20775 {
20776 *left = *right = 0;
20777
20778 if (glyph->type == CHAR_GLYPH)
20779 {
20780 struct face *face;
20781 XChar2b char2b;
20782 struct font_metrics *pcm;
20783
20784 face = get_glyph_face_and_encoding (f, glyph, &char2b, NULL);
20785 if (face->font && (pcm = get_per_char_metric (f, face->font, &char2b)))
20786 {
20787 if (pcm->rbearing > pcm->width)
20788 *right = pcm->rbearing - pcm->width;
20789 if (pcm->lbearing < 0)
20790 *left = -pcm->lbearing;
20791 }
20792 }
20793 else if (glyph->type == COMPOSITE_GLYPH)
20794 {
20795 if (! glyph->u.cmp.automatic)
20796 {
20797 struct composition *cmp = composition_table[glyph->u.cmp.id];
20798
20799 if (cmp->rbearing > cmp->pixel_width)
20800 *right = cmp->rbearing - cmp->pixel_width;
20801 if (cmp->lbearing < 0)
20802 *left = - cmp->lbearing;
20803 }
20804 else
20805 {
20806 Lisp_Object gstring = composition_gstring_from_id (glyph->u.cmp.id);
20807 struct font_metrics metrics;
20808
20809 composition_gstring_width (gstring, glyph->slice.cmp.from,
20810 glyph->slice.cmp.to + 1, &metrics);
20811 if (metrics.rbearing > metrics.width)
20812 *right = metrics.rbearing - metrics.width;
20813 if (metrics.lbearing < 0)
20814 *left = - metrics.lbearing;
20815 }
20816 }
20817 }
20818
20819
20820 /* Return the index of the first glyph preceding glyph string S that
20821 is overwritten by S because of S's left overhang. Value is -1
20822 if no glyphs are overwritten. */
20823
20824 static int
20825 left_overwritten (struct glyph_string *s)
20826 {
20827 int k;
20828
20829 if (s->left_overhang)
20830 {
20831 int x = 0, i;
20832 struct glyph *glyphs = s->row->glyphs[s->area];
20833 int first = s->first_glyph - glyphs;
20834
20835 for (i = first - 1; i >= 0 && x > -s->left_overhang; --i)
20836 x -= glyphs[i].pixel_width;
20837
20838 k = i + 1;
20839 }
20840 else
20841 k = -1;
20842
20843 return k;
20844 }
20845
20846
20847 /* Return the index of the first glyph preceding glyph string S that
20848 is overwriting S because of its right overhang. Value is -1 if no
20849 glyph in front of S overwrites S. */
20850
20851 static int
20852 left_overwriting (struct glyph_string *s)
20853 {
20854 int i, k, x;
20855 struct glyph *glyphs = s->row->glyphs[s->area];
20856 int first = s->first_glyph - glyphs;
20857
20858 k = -1;
20859 x = 0;
20860 for (i = first - 1; i >= 0; --i)
20861 {
20862 int left, right;
20863 x_get_glyph_overhangs (glyphs + i, s->f, &left, &right);
20864 if (x + right > 0)
20865 k = i;
20866 x -= glyphs[i].pixel_width;
20867 }
20868
20869 return k;
20870 }
20871
20872
20873 /* Return the index of the last glyph following glyph string S that is
20874 overwritten by S because of S's right overhang. Value is -1 if
20875 no such glyph is found. */
20876
20877 static int
20878 right_overwritten (struct glyph_string *s)
20879 {
20880 int k = -1;
20881
20882 if (s->right_overhang)
20883 {
20884 int x = 0, i;
20885 struct glyph *glyphs = s->row->glyphs[s->area];
20886 int first = (s->first_glyph - glyphs) + (s->cmp ? 1 : s->nchars);
20887 int end = s->row->used[s->area];
20888
20889 for (i = first; i < end && s->right_overhang > x; ++i)
20890 x += glyphs[i].pixel_width;
20891
20892 k = i;
20893 }
20894
20895 return k;
20896 }
20897
20898
20899 /* Return the index of the last glyph following glyph string S that
20900 overwrites S because of its left overhang. Value is negative
20901 if no such glyph is found. */
20902
20903 static int
20904 right_overwriting (struct glyph_string *s)
20905 {
20906 int i, k, x;
20907 int end = s->row->used[s->area];
20908 struct glyph *glyphs = s->row->glyphs[s->area];
20909 int first = (s->first_glyph - glyphs) + (s->cmp ? 1 : s->nchars);
20910
20911 k = -1;
20912 x = 0;
20913 for (i = first; i < end; ++i)
20914 {
20915 int left, right;
20916 x_get_glyph_overhangs (glyphs + i, s->f, &left, &right);
20917 if (x - left < 0)
20918 k = i;
20919 x += glyphs[i].pixel_width;
20920 }
20921
20922 return k;
20923 }
20924
20925
20926 /* Set background width of glyph string S. START is the index of the
20927 first glyph following S. LAST_X is the right-most x-position + 1
20928 in the drawing area. */
20929
20930 static INLINE void
20931 set_glyph_string_background_width (struct glyph_string *s, int start, int last_x)
20932 {
20933 /* If the face of this glyph string has to be drawn to the end of
20934 the drawing area, set S->extends_to_end_of_line_p. */
20935
20936 if (start == s->row->used[s->area]
20937 && s->area == TEXT_AREA
20938 && ((s->row->fill_line_p
20939 && (s->hl == DRAW_NORMAL_TEXT
20940 || s->hl == DRAW_IMAGE_RAISED
20941 || s->hl == DRAW_IMAGE_SUNKEN))
20942 || s->hl == DRAW_MOUSE_FACE))
20943 s->extends_to_end_of_line_p = 1;
20944
20945 /* If S extends its face to the end of the line, set its
20946 background_width to the distance to the right edge of the drawing
20947 area. */
20948 if (s->extends_to_end_of_line_p)
20949 s->background_width = last_x - s->x + 1;
20950 else
20951 s->background_width = s->width;
20952 }
20953
20954
20955 /* Compute overhangs and x-positions for glyph string S and its
20956 predecessors, or successors. X is the starting x-position for S.
20957 BACKWARD_P non-zero means process predecessors. */
20958
20959 static void
20960 compute_overhangs_and_x (struct glyph_string *s, int x, int backward_p)
20961 {
20962 if (backward_p)
20963 {
20964 while (s)
20965 {
20966 if (FRAME_RIF (s->f)->compute_glyph_string_overhangs)
20967 FRAME_RIF (s->f)->compute_glyph_string_overhangs (s);
20968 x -= s->width;
20969 s->x = x;
20970 s = s->prev;
20971 }
20972 }
20973 else
20974 {
20975 while (s)
20976 {
20977 if (FRAME_RIF (s->f)->compute_glyph_string_overhangs)
20978 FRAME_RIF (s->f)->compute_glyph_string_overhangs (s);
20979 s->x = x;
20980 x += s->width;
20981 s = s->next;
20982 }
20983 }
20984 }
20985
20986
20987
20988 /* The following macros are only called from draw_glyphs below.
20989 They reference the following parameters of that function directly:
20990 `w', `row', `area', and `overlap_p'
20991 as well as the following local variables:
20992 `s', `f', and `hdc' (in W32) */
20993
20994 #ifdef HAVE_NTGUI
20995 /* On W32, silently add local `hdc' variable to argument list of
20996 init_glyph_string. */
20997 #define INIT_GLYPH_STRING(s, char2b, w, row, area, start, hl) \
20998 init_glyph_string (s, hdc, char2b, w, row, area, start, hl)
20999 #else
21000 #define INIT_GLYPH_STRING(s, char2b, w, row, area, start, hl) \
21001 init_glyph_string (s, char2b, w, row, area, start, hl)
21002 #endif
21003
21004 /* Add a glyph string for a stretch glyph to the list of strings
21005 between HEAD and TAIL. START is the index of the stretch glyph in
21006 row area AREA of glyph row ROW. END is the index of the last glyph
21007 in that glyph row area. X is the current output position assigned
21008 to the new glyph string constructed. HL overrides that face of the
21009 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
21010 is the right-most x-position of the drawing area. */
21011
21012 /* SunOS 4 bundled cc, barfed on continuations in the arg lists here
21013 and below -- keep them on one line. */
21014 #define BUILD_STRETCH_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
21015 do \
21016 { \
21017 s = (struct glyph_string *) alloca (sizeof *s); \
21018 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
21019 START = fill_stretch_glyph_string (s, row, area, START, END); \
21020 append_glyph_string (&HEAD, &TAIL, s); \
21021 s->x = (X); \
21022 } \
21023 while (0)
21024
21025
21026 /* Add a glyph string for an image glyph to the list of strings
21027 between HEAD and TAIL. START is the index of the image glyph in
21028 row area AREA of glyph row ROW. END is the index of the last glyph
21029 in that glyph row area. X is the current output position assigned
21030 to the new glyph string constructed. HL overrides that face of the
21031 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
21032 is the right-most x-position of the drawing area. */
21033
21034 #define BUILD_IMAGE_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
21035 do \
21036 { \
21037 s = (struct glyph_string *) alloca (sizeof *s); \
21038 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
21039 fill_image_glyph_string (s); \
21040 append_glyph_string (&HEAD, &TAIL, s); \
21041 ++START; \
21042 s->x = (X); \
21043 } \
21044 while (0)
21045
21046
21047 /* Add a glyph string for a sequence of character glyphs to the list
21048 of strings between HEAD and TAIL. START is the index of the first
21049 glyph in row area AREA of glyph row ROW that is part of the new
21050 glyph string. END is the index of the last glyph in that glyph row
21051 area. X is the current output position assigned to the new glyph
21052 string constructed. HL overrides that face of the glyph; e.g. it
21053 is DRAW_CURSOR if a cursor has to be drawn. LAST_X is the
21054 right-most x-position of the drawing area. */
21055
21056 #define BUILD_CHAR_GLYPH_STRINGS(START, END, HEAD, TAIL, HL, X, LAST_X) \
21057 do \
21058 { \
21059 int face_id; \
21060 XChar2b *char2b; \
21061 \
21062 face_id = (row)->glyphs[area][START].face_id; \
21063 \
21064 s = (struct glyph_string *) alloca (sizeof *s); \
21065 char2b = (XChar2b *) alloca ((END - START) * sizeof *char2b); \
21066 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
21067 append_glyph_string (&HEAD, &TAIL, s); \
21068 s->x = (X); \
21069 START = fill_glyph_string (s, face_id, START, END, overlaps); \
21070 } \
21071 while (0)
21072
21073
21074 /* Add a glyph string for a composite sequence to the list of strings
21075 between HEAD and TAIL. START is the index of the first glyph in
21076 row area AREA of glyph row ROW that is part of the new glyph
21077 string. END is the index of the last glyph in that glyph row area.
21078 X is the current output position assigned to the new glyph string
21079 constructed. HL overrides that face of the glyph; e.g. it is
21080 DRAW_CURSOR if a cursor has to be drawn. LAST_X is the right-most
21081 x-position of the drawing area. */
21082
21083 #define BUILD_COMPOSITE_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
21084 do { \
21085 int face_id = (row)->glyphs[area][START].face_id; \
21086 struct face *base_face = FACE_FROM_ID (f, face_id); \
21087 int cmp_id = (row)->glyphs[area][START].u.cmp.id; \
21088 struct composition *cmp = composition_table[cmp_id]; \
21089 XChar2b *char2b; \
21090 struct glyph_string *first_s IF_LINT (= NULL); \
21091 int n; \
21092 \
21093 char2b = (XChar2b *) alloca ((sizeof *char2b) * cmp->glyph_len); \
21094 \
21095 /* Make glyph_strings for each glyph sequence that is drawable by \
21096 the same face, and append them to HEAD/TAIL. */ \
21097 for (n = 0; n < cmp->glyph_len;) \
21098 { \
21099 s = (struct glyph_string *) alloca (sizeof *s); \
21100 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
21101 append_glyph_string (&(HEAD), &(TAIL), s); \
21102 s->cmp = cmp; \
21103 s->cmp_from = n; \
21104 s->x = (X); \
21105 if (n == 0) \
21106 first_s = s; \
21107 n = fill_composite_glyph_string (s, base_face, overlaps); \
21108 } \
21109 \
21110 ++START; \
21111 s = first_s; \
21112 } while (0)
21113
21114
21115 /* Add a glyph string for a glyph-string sequence to the list of strings
21116 between HEAD and TAIL. */
21117
21118 #define BUILD_GSTRING_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
21119 do { \
21120 int face_id; \
21121 XChar2b *char2b; \
21122 Lisp_Object gstring; \
21123 \
21124 face_id = (row)->glyphs[area][START].face_id; \
21125 gstring = (composition_gstring_from_id \
21126 ((row)->glyphs[area][START].u.cmp.id)); \
21127 s = (struct glyph_string *) alloca (sizeof *s); \
21128 char2b = (XChar2b *) alloca ((sizeof *char2b) \
21129 * LGSTRING_GLYPH_LEN (gstring)); \
21130 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
21131 append_glyph_string (&(HEAD), &(TAIL), s); \
21132 s->x = (X); \
21133 START = fill_gstring_glyph_string (s, face_id, START, END, overlaps); \
21134 } while (0)
21135
21136
21137 /* Add a glyph string for a sequence of glyphless character's glyphs
21138 to the list of strings between HEAD and TAIL. The meanings of
21139 arguments are the same as those of BUILD_CHAR_GLYPH_STRINGS. */
21140
21141 #define BUILD_GLYPHLESS_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
21142 do \
21143 { \
21144 int face_id; \
21145 \
21146 face_id = (row)->glyphs[area][START].face_id; \
21147 \
21148 s = (struct glyph_string *) alloca (sizeof *s); \
21149 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
21150 append_glyph_string (&HEAD, &TAIL, s); \
21151 s->x = (X); \
21152 START = fill_glyphless_glyph_string (s, face_id, START, END, \
21153 overlaps); \
21154 } \
21155 while (0)
21156
21157
21158 /* Build a list of glyph strings between HEAD and TAIL for the glyphs
21159 of AREA of glyph row ROW on window W between indices START and END.
21160 HL overrides the face for drawing glyph strings, e.g. it is
21161 DRAW_CURSOR to draw a cursor. X and LAST_X are start and end
21162 x-positions of the drawing area.
21163
21164 This is an ugly monster macro construct because we must use alloca
21165 to allocate glyph strings (because draw_glyphs can be called
21166 asynchronously). */
21167
21168 #define BUILD_GLYPH_STRINGS(START, END, HEAD, TAIL, HL, X, LAST_X) \
21169 do \
21170 { \
21171 HEAD = TAIL = NULL; \
21172 while (START < END) \
21173 { \
21174 struct glyph *first_glyph = (row)->glyphs[area] + START; \
21175 switch (first_glyph->type) \
21176 { \
21177 case CHAR_GLYPH: \
21178 BUILD_CHAR_GLYPH_STRINGS (START, END, HEAD, TAIL, \
21179 HL, X, LAST_X); \
21180 break; \
21181 \
21182 case COMPOSITE_GLYPH: \
21183 if (first_glyph->u.cmp.automatic) \
21184 BUILD_GSTRING_GLYPH_STRING (START, END, HEAD, TAIL, \
21185 HL, X, LAST_X); \
21186 else \
21187 BUILD_COMPOSITE_GLYPH_STRING (START, END, HEAD, TAIL, \
21188 HL, X, LAST_X); \
21189 break; \
21190 \
21191 case STRETCH_GLYPH: \
21192 BUILD_STRETCH_GLYPH_STRING (START, END, HEAD, TAIL, \
21193 HL, X, LAST_X); \
21194 break; \
21195 \
21196 case IMAGE_GLYPH: \
21197 BUILD_IMAGE_GLYPH_STRING (START, END, HEAD, TAIL, \
21198 HL, X, LAST_X); \
21199 break; \
21200 \
21201 case GLYPHLESS_GLYPH: \
21202 BUILD_GLYPHLESS_GLYPH_STRING (START, END, HEAD, TAIL, \
21203 HL, X, LAST_X); \
21204 break; \
21205 \
21206 default: \
21207 abort (); \
21208 } \
21209 \
21210 if (s) \
21211 { \
21212 set_glyph_string_background_width (s, START, LAST_X); \
21213 (X) += s->width; \
21214 } \
21215 } \
21216 } while (0)
21217
21218
21219 /* Draw glyphs between START and END in AREA of ROW on window W,
21220 starting at x-position X. X is relative to AREA in W. HL is a
21221 face-override with the following meaning:
21222
21223 DRAW_NORMAL_TEXT draw normally
21224 DRAW_CURSOR draw in cursor face
21225 DRAW_MOUSE_FACE draw in mouse face.
21226 DRAW_INVERSE_VIDEO draw in mode line face
21227 DRAW_IMAGE_SUNKEN draw an image with a sunken relief around it
21228 DRAW_IMAGE_RAISED draw an image with a raised relief around it
21229
21230 If OVERLAPS is non-zero, draw only the foreground of characters and
21231 clip to the physical height of ROW. Non-zero value also defines
21232 the overlapping part to be drawn:
21233
21234 OVERLAPS_PRED overlap with preceding rows
21235 OVERLAPS_SUCC overlap with succeeding rows
21236 OVERLAPS_BOTH overlap with both preceding/succeeding rows
21237 OVERLAPS_ERASED_CURSOR overlap with erased cursor area
21238
21239 Value is the x-position reached, relative to AREA of W. */
21240
21241 static int
21242 draw_glyphs (struct window *w, int x, struct glyph_row *row,
21243 enum glyph_row_area area, EMACS_INT start, EMACS_INT end,
21244 enum draw_glyphs_face hl, int overlaps)
21245 {
21246 struct glyph_string *head, *tail;
21247 struct glyph_string *s;
21248 struct glyph_string *clip_head = NULL, *clip_tail = NULL;
21249 int i, j, x_reached, last_x, area_left = 0;
21250 struct frame *f = XFRAME (WINDOW_FRAME (w));
21251 DECLARE_HDC (hdc);
21252
21253 ALLOCATE_HDC (hdc, f);
21254
21255 /* Let's rather be paranoid than getting a SEGV. */
21256 end = min (end, row->used[area]);
21257 start = max (0, start);
21258 start = min (end, start);
21259
21260 /* Translate X to frame coordinates. Set last_x to the right
21261 end of the drawing area. */
21262 if (row->full_width_p)
21263 {
21264 /* X is relative to the left edge of W, without scroll bars
21265 or fringes. */
21266 area_left = WINDOW_LEFT_EDGE_X (w);
21267 last_x = WINDOW_LEFT_EDGE_X (w) + WINDOW_TOTAL_WIDTH (w);
21268 }
21269 else
21270 {
21271 area_left = window_box_left (w, area);
21272 last_x = area_left + window_box_width (w, area);
21273 }
21274 x += area_left;
21275
21276 /* Build a doubly-linked list of glyph_string structures between
21277 head and tail from what we have to draw. Note that the macro
21278 BUILD_GLYPH_STRINGS will modify its start parameter. That's
21279 the reason we use a separate variable `i'. */
21280 i = start;
21281 BUILD_GLYPH_STRINGS (i, end, head, tail, hl, x, last_x);
21282 if (tail)
21283 x_reached = tail->x + tail->background_width;
21284 else
21285 x_reached = x;
21286
21287 /* If there are any glyphs with lbearing < 0 or rbearing > width in
21288 the row, redraw some glyphs in front or following the glyph
21289 strings built above. */
21290 if (head && !overlaps && row->contains_overlapping_glyphs_p)
21291 {
21292 struct glyph_string *h, *t;
21293 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
21294 int mouse_beg_col IF_LINT (= 0), mouse_end_col IF_LINT (= 0);
21295 int check_mouse_face = 0;
21296 int dummy_x = 0;
21297
21298 /* If mouse highlighting is on, we may need to draw adjacent
21299 glyphs using mouse-face highlighting. */
21300 if (area == TEXT_AREA && row->mouse_face_p)
21301 {
21302 struct glyph_row *mouse_beg_row, *mouse_end_row;
21303
21304 mouse_beg_row = MATRIX_ROW (w->current_matrix, hlinfo->mouse_face_beg_row);
21305 mouse_end_row = MATRIX_ROW (w->current_matrix, hlinfo->mouse_face_end_row);
21306
21307 if (row >= mouse_beg_row && row <= mouse_end_row)
21308 {
21309 check_mouse_face = 1;
21310 mouse_beg_col = (row == mouse_beg_row)
21311 ? hlinfo->mouse_face_beg_col : 0;
21312 mouse_end_col = (row == mouse_end_row)
21313 ? hlinfo->mouse_face_end_col
21314 : row->used[TEXT_AREA];
21315 }
21316 }
21317
21318 /* Compute overhangs for all glyph strings. */
21319 if (FRAME_RIF (f)->compute_glyph_string_overhangs)
21320 for (s = head; s; s = s->next)
21321 FRAME_RIF (f)->compute_glyph_string_overhangs (s);
21322
21323 /* Prepend glyph strings for glyphs in front of the first glyph
21324 string that are overwritten because of the first glyph
21325 string's left overhang. The background of all strings
21326 prepended must be drawn because the first glyph string
21327 draws over it. */
21328 i = left_overwritten (head);
21329 if (i >= 0)
21330 {
21331 enum draw_glyphs_face overlap_hl;
21332
21333 /* If this row contains mouse highlighting, attempt to draw
21334 the overlapped glyphs with the correct highlight. This
21335 code fails if the overlap encompasses more than one glyph
21336 and mouse-highlight spans only some of these glyphs.
21337 However, making it work perfectly involves a lot more
21338 code, and I don't know if the pathological case occurs in
21339 practice, so we'll stick to this for now. --- cyd */
21340 if (check_mouse_face
21341 && mouse_beg_col < start && mouse_end_col > i)
21342 overlap_hl = DRAW_MOUSE_FACE;
21343 else
21344 overlap_hl = DRAW_NORMAL_TEXT;
21345
21346 j = i;
21347 BUILD_GLYPH_STRINGS (j, start, h, t,
21348 overlap_hl, dummy_x, last_x);
21349 start = i;
21350 compute_overhangs_and_x (t, head->x, 1);
21351 prepend_glyph_string_lists (&head, &tail, h, t);
21352 clip_head = head;
21353 }
21354
21355 /* Prepend glyph strings for glyphs in front of the first glyph
21356 string that overwrite that glyph string because of their
21357 right overhang. For these strings, only the foreground must
21358 be drawn, because it draws over the glyph string at `head'.
21359 The background must not be drawn because this would overwrite
21360 right overhangs of preceding glyphs for which no glyph
21361 strings exist. */
21362 i = left_overwriting (head);
21363 if (i >= 0)
21364 {
21365 enum draw_glyphs_face overlap_hl;
21366
21367 if (check_mouse_face
21368 && mouse_beg_col < start && mouse_end_col > i)
21369 overlap_hl = DRAW_MOUSE_FACE;
21370 else
21371 overlap_hl = DRAW_NORMAL_TEXT;
21372
21373 clip_head = head;
21374 BUILD_GLYPH_STRINGS (i, start, h, t,
21375 overlap_hl, dummy_x, last_x);
21376 for (s = h; s; s = s->next)
21377 s->background_filled_p = 1;
21378 compute_overhangs_and_x (t, head->x, 1);
21379 prepend_glyph_string_lists (&head, &tail, h, t);
21380 }
21381
21382 /* Append glyphs strings for glyphs following the last glyph
21383 string tail that are overwritten by tail. The background of
21384 these strings has to be drawn because tail's foreground draws
21385 over it. */
21386 i = right_overwritten (tail);
21387 if (i >= 0)
21388 {
21389 enum draw_glyphs_face overlap_hl;
21390
21391 if (check_mouse_face
21392 && mouse_beg_col < i && mouse_end_col > end)
21393 overlap_hl = DRAW_MOUSE_FACE;
21394 else
21395 overlap_hl = DRAW_NORMAL_TEXT;
21396
21397 BUILD_GLYPH_STRINGS (end, i, h, t,
21398 overlap_hl, x, last_x);
21399 /* Because BUILD_GLYPH_STRINGS updates the first argument,
21400 we don't have `end = i;' here. */
21401 compute_overhangs_and_x (h, tail->x + tail->width, 0);
21402 append_glyph_string_lists (&head, &tail, h, t);
21403 clip_tail = tail;
21404 }
21405
21406 /* Append glyph strings for glyphs following the last glyph
21407 string tail that overwrite tail. The foreground of such
21408 glyphs has to be drawn because it writes into the background
21409 of tail. The background must not be drawn because it could
21410 paint over the foreground of following glyphs. */
21411 i = right_overwriting (tail);
21412 if (i >= 0)
21413 {
21414 enum draw_glyphs_face overlap_hl;
21415 if (check_mouse_face
21416 && mouse_beg_col < i && mouse_end_col > end)
21417 overlap_hl = DRAW_MOUSE_FACE;
21418 else
21419 overlap_hl = DRAW_NORMAL_TEXT;
21420
21421 clip_tail = tail;
21422 i++; /* We must include the Ith glyph. */
21423 BUILD_GLYPH_STRINGS (end, i, h, t,
21424 overlap_hl, x, last_x);
21425 for (s = h; s; s = s->next)
21426 s->background_filled_p = 1;
21427 compute_overhangs_and_x (h, tail->x + tail->width, 0);
21428 append_glyph_string_lists (&head, &tail, h, t);
21429 }
21430 if (clip_head || clip_tail)
21431 for (s = head; s; s = s->next)
21432 {
21433 s->clip_head = clip_head;
21434 s->clip_tail = clip_tail;
21435 }
21436 }
21437
21438 /* Draw all strings. */
21439 for (s = head; s; s = s->next)
21440 FRAME_RIF (f)->draw_glyph_string (s);
21441
21442 #ifndef HAVE_NS
21443 /* When focus a sole frame and move horizontally, this sets on_p to 0
21444 causing a failure to erase prev cursor position. */
21445 if (area == TEXT_AREA
21446 && !row->full_width_p
21447 /* When drawing overlapping rows, only the glyph strings'
21448 foreground is drawn, which doesn't erase a cursor
21449 completely. */
21450 && !overlaps)
21451 {
21452 int x0 = clip_head ? clip_head->x : (head ? head->x : x);
21453 int x1 = (clip_tail ? clip_tail->x + clip_tail->background_width
21454 : (tail ? tail->x + tail->background_width : x));
21455 x0 -= area_left;
21456 x1 -= area_left;
21457
21458 notice_overwritten_cursor (w, TEXT_AREA, x0, x1,
21459 row->y, MATRIX_ROW_BOTTOM_Y (row));
21460 }
21461 #endif
21462
21463 /* Value is the x-position up to which drawn, relative to AREA of W.
21464 This doesn't include parts drawn because of overhangs. */
21465 if (row->full_width_p)
21466 x_reached = FRAME_TO_WINDOW_PIXEL_X (w, x_reached);
21467 else
21468 x_reached -= area_left;
21469
21470 RELEASE_HDC (hdc, f);
21471
21472 return x_reached;
21473 }
21474
21475 /* Expand row matrix if too narrow. Don't expand if area
21476 is not present. */
21477
21478 #define IT_EXPAND_MATRIX_WIDTH(it, area) \
21479 { \
21480 if (!fonts_changed_p \
21481 && (it->glyph_row->glyphs[area] \
21482 < it->glyph_row->glyphs[area + 1])) \
21483 { \
21484 it->w->ncols_scale_factor++; \
21485 fonts_changed_p = 1; \
21486 } \
21487 }
21488
21489 /* Store one glyph for IT->char_to_display in IT->glyph_row.
21490 Called from x_produce_glyphs when IT->glyph_row is non-null. */
21491
21492 static INLINE void
21493 append_glyph (struct it *it)
21494 {
21495 struct glyph *glyph;
21496 enum glyph_row_area area = it->area;
21497
21498 xassert (it->glyph_row);
21499 xassert (it->char_to_display != '\n' && it->char_to_display != '\t');
21500
21501 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
21502 if (glyph < it->glyph_row->glyphs[area + 1])
21503 {
21504 /* If the glyph row is reversed, we need to prepend the glyph
21505 rather than append it. */
21506 if (it->glyph_row->reversed_p && area == TEXT_AREA)
21507 {
21508 struct glyph *g;
21509
21510 /* Make room for the additional glyph. */
21511 for (g = glyph - 1; g >= it->glyph_row->glyphs[area]; g--)
21512 g[1] = *g;
21513 glyph = it->glyph_row->glyphs[area];
21514 }
21515 glyph->charpos = CHARPOS (it->position);
21516 glyph->object = it->object;
21517 if (it->pixel_width > 0)
21518 {
21519 glyph->pixel_width = it->pixel_width;
21520 glyph->padding_p = 0;
21521 }
21522 else
21523 {
21524 /* Assure at least 1-pixel width. Otherwise, cursor can't
21525 be displayed correctly. */
21526 glyph->pixel_width = 1;
21527 glyph->padding_p = 1;
21528 }
21529 glyph->ascent = it->ascent;
21530 glyph->descent = it->descent;
21531 glyph->voffset = it->voffset;
21532 glyph->type = CHAR_GLYPH;
21533 glyph->avoid_cursor_p = it->avoid_cursor_p;
21534 glyph->multibyte_p = it->multibyte_p;
21535 glyph->left_box_line_p = it->start_of_box_run_p;
21536 glyph->right_box_line_p = it->end_of_box_run_p;
21537 glyph->overlaps_vertically_p = (it->phys_ascent > it->ascent
21538 || it->phys_descent > it->descent);
21539 glyph->glyph_not_available_p = it->glyph_not_available_p;
21540 glyph->face_id = it->face_id;
21541 glyph->u.ch = it->char_to_display;
21542 glyph->slice.img = null_glyph_slice;
21543 glyph->font_type = FONT_TYPE_UNKNOWN;
21544 if (it->bidi_p)
21545 {
21546 glyph->resolved_level = it->bidi_it.resolved_level;
21547 if ((it->bidi_it.type & 7) != it->bidi_it.type)
21548 abort ();
21549 glyph->bidi_type = it->bidi_it.type;
21550 }
21551 else
21552 {
21553 glyph->resolved_level = 0;
21554 glyph->bidi_type = UNKNOWN_BT;
21555 }
21556 ++it->glyph_row->used[area];
21557 }
21558 else
21559 IT_EXPAND_MATRIX_WIDTH (it, area);
21560 }
21561
21562 /* Store one glyph for the composition IT->cmp_it.id in
21563 IT->glyph_row. Called from x_produce_glyphs when IT->glyph_row is
21564 non-null. */
21565
21566 static INLINE void
21567 append_composite_glyph (struct it *it)
21568 {
21569 struct glyph *glyph;
21570 enum glyph_row_area area = it->area;
21571
21572 xassert (it->glyph_row);
21573
21574 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
21575 if (glyph < it->glyph_row->glyphs[area + 1])
21576 {
21577 /* If the glyph row is reversed, we need to prepend the glyph
21578 rather than append it. */
21579 if (it->glyph_row->reversed_p && it->area == TEXT_AREA)
21580 {
21581 struct glyph *g;
21582
21583 /* Make room for the new glyph. */
21584 for (g = glyph - 1; g >= it->glyph_row->glyphs[it->area]; g--)
21585 g[1] = *g;
21586 glyph = it->glyph_row->glyphs[it->area];
21587 }
21588 glyph->charpos = it->cmp_it.charpos;
21589 glyph->object = it->object;
21590 glyph->pixel_width = it->pixel_width;
21591 glyph->ascent = it->ascent;
21592 glyph->descent = it->descent;
21593 glyph->voffset = it->voffset;
21594 glyph->type = COMPOSITE_GLYPH;
21595 if (it->cmp_it.ch < 0)
21596 {
21597 glyph->u.cmp.automatic = 0;
21598 glyph->u.cmp.id = it->cmp_it.id;
21599 glyph->slice.cmp.from = glyph->slice.cmp.to = 0;
21600 }
21601 else
21602 {
21603 glyph->u.cmp.automatic = 1;
21604 glyph->u.cmp.id = it->cmp_it.id;
21605 glyph->slice.cmp.from = it->cmp_it.from;
21606 glyph->slice.cmp.to = it->cmp_it.to - 1;
21607 }
21608 glyph->avoid_cursor_p = it->avoid_cursor_p;
21609 glyph->multibyte_p = it->multibyte_p;
21610 glyph->left_box_line_p = it->start_of_box_run_p;
21611 glyph->right_box_line_p = it->end_of_box_run_p;
21612 glyph->overlaps_vertically_p = (it->phys_ascent > it->ascent
21613 || it->phys_descent > it->descent);
21614 glyph->padding_p = 0;
21615 glyph->glyph_not_available_p = 0;
21616 glyph->face_id = it->face_id;
21617 glyph->font_type = FONT_TYPE_UNKNOWN;
21618 if (it->bidi_p)
21619 {
21620 glyph->resolved_level = it->bidi_it.resolved_level;
21621 if ((it->bidi_it.type & 7) != it->bidi_it.type)
21622 abort ();
21623 glyph->bidi_type = it->bidi_it.type;
21624 }
21625 ++it->glyph_row->used[area];
21626 }
21627 else
21628 IT_EXPAND_MATRIX_WIDTH (it, area);
21629 }
21630
21631
21632 /* Change IT->ascent and IT->height according to the setting of
21633 IT->voffset. */
21634
21635 static INLINE void
21636 take_vertical_position_into_account (struct it *it)
21637 {
21638 if (it->voffset)
21639 {
21640 if (it->voffset < 0)
21641 /* Increase the ascent so that we can display the text higher
21642 in the line. */
21643 it->ascent -= it->voffset;
21644 else
21645 /* Increase the descent so that we can display the text lower
21646 in the line. */
21647 it->descent += it->voffset;
21648 }
21649 }
21650
21651
21652 /* Produce glyphs/get display metrics for the image IT is loaded with.
21653 See the description of struct display_iterator in dispextern.h for
21654 an overview of struct display_iterator. */
21655
21656 static void
21657 produce_image_glyph (struct it *it)
21658 {
21659 struct image *img;
21660 struct face *face;
21661 int glyph_ascent, crop;
21662 struct glyph_slice slice;
21663
21664 xassert (it->what == IT_IMAGE);
21665
21666 face = FACE_FROM_ID (it->f, it->face_id);
21667 xassert (face);
21668 /* Make sure X resources of the face is loaded. */
21669 PREPARE_FACE_FOR_DISPLAY (it->f, face);
21670
21671 if (it->image_id < 0)
21672 {
21673 /* Fringe bitmap. */
21674 it->ascent = it->phys_ascent = 0;
21675 it->descent = it->phys_descent = 0;
21676 it->pixel_width = 0;
21677 it->nglyphs = 0;
21678 return;
21679 }
21680
21681 img = IMAGE_FROM_ID (it->f, it->image_id);
21682 xassert (img);
21683 /* Make sure X resources of the image is loaded. */
21684 prepare_image_for_display (it->f, img);
21685
21686 slice.x = slice.y = 0;
21687 slice.width = img->width;
21688 slice.height = img->height;
21689
21690 if (INTEGERP (it->slice.x))
21691 slice.x = XINT (it->slice.x);
21692 else if (FLOATP (it->slice.x))
21693 slice.x = XFLOAT_DATA (it->slice.x) * img->width;
21694
21695 if (INTEGERP (it->slice.y))
21696 slice.y = XINT (it->slice.y);
21697 else if (FLOATP (it->slice.y))
21698 slice.y = XFLOAT_DATA (it->slice.y) * img->height;
21699
21700 if (INTEGERP (it->slice.width))
21701 slice.width = XINT (it->slice.width);
21702 else if (FLOATP (it->slice.width))
21703 slice.width = XFLOAT_DATA (it->slice.width) * img->width;
21704
21705 if (INTEGERP (it->slice.height))
21706 slice.height = XINT (it->slice.height);
21707 else if (FLOATP (it->slice.height))
21708 slice.height = XFLOAT_DATA (it->slice.height) * img->height;
21709
21710 if (slice.x >= img->width)
21711 slice.x = img->width;
21712 if (slice.y >= img->height)
21713 slice.y = img->height;
21714 if (slice.x + slice.width >= img->width)
21715 slice.width = img->width - slice.x;
21716 if (slice.y + slice.height > img->height)
21717 slice.height = img->height - slice.y;
21718
21719 if (slice.width == 0 || slice.height == 0)
21720 return;
21721
21722 it->ascent = it->phys_ascent = glyph_ascent = image_ascent (img, face, &slice);
21723
21724 it->descent = slice.height - glyph_ascent;
21725 if (slice.y == 0)
21726 it->descent += img->vmargin;
21727 if (slice.y + slice.height == img->height)
21728 it->descent += img->vmargin;
21729 it->phys_descent = it->descent;
21730
21731 it->pixel_width = slice.width;
21732 if (slice.x == 0)
21733 it->pixel_width += img->hmargin;
21734 if (slice.x + slice.width == img->width)
21735 it->pixel_width += img->hmargin;
21736
21737 /* It's quite possible for images to have an ascent greater than
21738 their height, so don't get confused in that case. */
21739 if (it->descent < 0)
21740 it->descent = 0;
21741
21742 it->nglyphs = 1;
21743
21744 if (face->box != FACE_NO_BOX)
21745 {
21746 if (face->box_line_width > 0)
21747 {
21748 if (slice.y == 0)
21749 it->ascent += face->box_line_width;
21750 if (slice.y + slice.height == img->height)
21751 it->descent += face->box_line_width;
21752 }
21753
21754 if (it->start_of_box_run_p && slice.x == 0)
21755 it->pixel_width += eabs (face->box_line_width);
21756 if (it->end_of_box_run_p && slice.x + slice.width == img->width)
21757 it->pixel_width += eabs (face->box_line_width);
21758 }
21759
21760 take_vertical_position_into_account (it);
21761
21762 /* Automatically crop wide image glyphs at right edge so we can
21763 draw the cursor on same display row. */
21764 if ((crop = it->pixel_width - (it->last_visible_x - it->current_x), crop > 0)
21765 && (it->hpos == 0 || it->pixel_width > it->last_visible_x / 4))
21766 {
21767 it->pixel_width -= crop;
21768 slice.width -= crop;
21769 }
21770
21771 if (it->glyph_row)
21772 {
21773 struct glyph *glyph;
21774 enum glyph_row_area area = it->area;
21775
21776 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
21777 if (glyph < it->glyph_row->glyphs[area + 1])
21778 {
21779 glyph->charpos = CHARPOS (it->position);
21780 glyph->object = it->object;
21781 glyph->pixel_width = it->pixel_width;
21782 glyph->ascent = glyph_ascent;
21783 glyph->descent = it->descent;
21784 glyph->voffset = it->voffset;
21785 glyph->type = IMAGE_GLYPH;
21786 glyph->avoid_cursor_p = it->avoid_cursor_p;
21787 glyph->multibyte_p = it->multibyte_p;
21788 glyph->left_box_line_p = it->start_of_box_run_p;
21789 glyph->right_box_line_p = it->end_of_box_run_p;
21790 glyph->overlaps_vertically_p = 0;
21791 glyph->padding_p = 0;
21792 glyph->glyph_not_available_p = 0;
21793 glyph->face_id = it->face_id;
21794 glyph->u.img_id = img->id;
21795 glyph->slice.img = slice;
21796 glyph->font_type = FONT_TYPE_UNKNOWN;
21797 if (it->bidi_p)
21798 {
21799 glyph->resolved_level = it->bidi_it.resolved_level;
21800 if ((it->bidi_it.type & 7) != it->bidi_it.type)
21801 abort ();
21802 glyph->bidi_type = it->bidi_it.type;
21803 }
21804 ++it->glyph_row->used[area];
21805 }
21806 else
21807 IT_EXPAND_MATRIX_WIDTH (it, area);
21808 }
21809 }
21810
21811
21812 /* Append a stretch glyph to IT->glyph_row. OBJECT is the source
21813 of the glyph, WIDTH and HEIGHT are the width and height of the
21814 stretch. ASCENT is the ascent of the glyph (0 <= ASCENT <= HEIGHT). */
21815
21816 static void
21817 append_stretch_glyph (struct it *it, Lisp_Object object,
21818 int width, int height, int ascent)
21819 {
21820 struct glyph *glyph;
21821 enum glyph_row_area area = it->area;
21822
21823 xassert (ascent >= 0 && ascent <= height);
21824
21825 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
21826 if (glyph < it->glyph_row->glyphs[area + 1])
21827 {
21828 /* If the glyph row is reversed, we need to prepend the glyph
21829 rather than append it. */
21830 if (it->glyph_row->reversed_p && area == TEXT_AREA)
21831 {
21832 struct glyph *g;
21833
21834 /* Make room for the additional glyph. */
21835 for (g = glyph - 1; g >= it->glyph_row->glyphs[area]; g--)
21836 g[1] = *g;
21837 glyph = it->glyph_row->glyphs[area];
21838 }
21839 glyph->charpos = CHARPOS (it->position);
21840 glyph->object = object;
21841 glyph->pixel_width = width;
21842 glyph->ascent = ascent;
21843 glyph->descent = height - ascent;
21844 glyph->voffset = it->voffset;
21845 glyph->type = STRETCH_GLYPH;
21846 glyph->avoid_cursor_p = it->avoid_cursor_p;
21847 glyph->multibyte_p = it->multibyte_p;
21848 glyph->left_box_line_p = it->start_of_box_run_p;
21849 glyph->right_box_line_p = it->end_of_box_run_p;
21850 glyph->overlaps_vertically_p = 0;
21851 glyph->padding_p = 0;
21852 glyph->glyph_not_available_p = 0;
21853 glyph->face_id = it->face_id;
21854 glyph->u.stretch.ascent = ascent;
21855 glyph->u.stretch.height = height;
21856 glyph->slice.img = null_glyph_slice;
21857 glyph->font_type = FONT_TYPE_UNKNOWN;
21858 if (it->bidi_p)
21859 {
21860 glyph->resolved_level = it->bidi_it.resolved_level;
21861 if ((it->bidi_it.type & 7) != it->bidi_it.type)
21862 abort ();
21863 glyph->bidi_type = it->bidi_it.type;
21864 }
21865 else
21866 {
21867 glyph->resolved_level = 0;
21868 glyph->bidi_type = UNKNOWN_BT;
21869 }
21870 ++it->glyph_row->used[area];
21871 }
21872 else
21873 IT_EXPAND_MATRIX_WIDTH (it, area);
21874 }
21875
21876
21877 /* Produce a stretch glyph for iterator IT. IT->object is the value
21878 of the glyph property displayed. The value must be a list
21879 `(space KEYWORD VALUE ...)' with the following KEYWORD/VALUE pairs
21880 being recognized:
21881
21882 1. `:width WIDTH' specifies that the space should be WIDTH *
21883 canonical char width wide. WIDTH may be an integer or floating
21884 point number.
21885
21886 2. `:relative-width FACTOR' specifies that the width of the stretch
21887 should be computed from the width of the first character having the
21888 `glyph' property, and should be FACTOR times that width.
21889
21890 3. `:align-to HPOS' specifies that the space should be wide enough
21891 to reach HPOS, a value in canonical character units.
21892
21893 Exactly one of the above pairs must be present.
21894
21895 4. `:height HEIGHT' specifies that the height of the stretch produced
21896 should be HEIGHT, measured in canonical character units.
21897
21898 5. `:relative-height FACTOR' specifies that the height of the
21899 stretch should be FACTOR times the height of the characters having
21900 the glyph property.
21901
21902 Either none or exactly one of 4 or 5 must be present.
21903
21904 6. `:ascent ASCENT' specifies that ASCENT percent of the height
21905 of the stretch should be used for the ascent of the stretch.
21906 ASCENT must be in the range 0 <= ASCENT <= 100. */
21907
21908 static void
21909 produce_stretch_glyph (struct it *it)
21910 {
21911 /* (space :width WIDTH :height HEIGHT ...) */
21912 Lisp_Object prop, plist;
21913 int width = 0, height = 0, align_to = -1;
21914 int zero_width_ok_p = 0, zero_height_ok_p = 0;
21915 int ascent = 0;
21916 double tem;
21917 struct face *face = FACE_FROM_ID (it->f, it->face_id);
21918 struct font *font = face->font ? face->font : FRAME_FONT (it->f);
21919
21920 PREPARE_FACE_FOR_DISPLAY (it->f, face);
21921
21922 /* List should start with `space'. */
21923 xassert (CONSP (it->object) && EQ (XCAR (it->object), Qspace));
21924 plist = XCDR (it->object);
21925
21926 /* Compute the width of the stretch. */
21927 if ((prop = Fplist_get (plist, QCwidth), !NILP (prop))
21928 && calc_pixel_width_or_height (&tem, it, prop, font, 1, 0))
21929 {
21930 /* Absolute width `:width WIDTH' specified and valid. */
21931 zero_width_ok_p = 1;
21932 width = (int)tem;
21933 }
21934 else if (prop = Fplist_get (plist, QCrelative_width),
21935 NUMVAL (prop) > 0)
21936 {
21937 /* Relative width `:relative-width FACTOR' specified and valid.
21938 Compute the width of the characters having the `glyph'
21939 property. */
21940 struct it it2;
21941 unsigned char *p = BYTE_POS_ADDR (IT_BYTEPOS (*it));
21942
21943 it2 = *it;
21944 if (it->multibyte_p)
21945 it2.c = it2.char_to_display = STRING_CHAR_AND_LENGTH (p, it2.len);
21946 else
21947 {
21948 it2.c = it2.char_to_display = *p, it2.len = 1;
21949 if (! ASCII_CHAR_P (it2.c))
21950 it2.char_to_display = BYTE8_TO_CHAR (it2.c);
21951 }
21952
21953 it2.glyph_row = NULL;
21954 it2.what = IT_CHARACTER;
21955 x_produce_glyphs (&it2);
21956 width = NUMVAL (prop) * it2.pixel_width;
21957 }
21958 else if ((prop = Fplist_get (plist, QCalign_to), !NILP (prop))
21959 && calc_pixel_width_or_height (&tem, it, prop, font, 1, &align_to))
21960 {
21961 if (it->glyph_row == NULL || !it->glyph_row->mode_line_p)
21962 align_to = (align_to < 0
21963 ? 0
21964 : align_to - window_box_left_offset (it->w, TEXT_AREA));
21965 else if (align_to < 0)
21966 align_to = window_box_left_offset (it->w, TEXT_AREA);
21967 width = max (0, (int)tem + align_to - it->current_x);
21968 zero_width_ok_p = 1;
21969 }
21970 else
21971 /* Nothing specified -> width defaults to canonical char width. */
21972 width = FRAME_COLUMN_WIDTH (it->f);
21973
21974 if (width <= 0 && (width < 0 || !zero_width_ok_p))
21975 width = 1;
21976
21977 /* Compute height. */
21978 if ((prop = Fplist_get (plist, QCheight), !NILP (prop))
21979 && calc_pixel_width_or_height (&tem, it, prop, font, 0, 0))
21980 {
21981 height = (int)tem;
21982 zero_height_ok_p = 1;
21983 }
21984 else if (prop = Fplist_get (plist, QCrelative_height),
21985 NUMVAL (prop) > 0)
21986 height = FONT_HEIGHT (font) * NUMVAL (prop);
21987 else
21988 height = FONT_HEIGHT (font);
21989
21990 if (height <= 0 && (height < 0 || !zero_height_ok_p))
21991 height = 1;
21992
21993 /* Compute percentage of height used for ascent. If
21994 `:ascent ASCENT' is present and valid, use that. Otherwise,
21995 derive the ascent from the font in use. */
21996 if (prop = Fplist_get (plist, QCascent),
21997 NUMVAL (prop) > 0 && NUMVAL (prop) <= 100)
21998 ascent = height * NUMVAL (prop) / 100.0;
21999 else if (!NILP (prop)
22000 && calc_pixel_width_or_height (&tem, it, prop, font, 0, 0))
22001 ascent = min (max (0, (int)tem), height);
22002 else
22003 ascent = (height * FONT_BASE (font)) / FONT_HEIGHT (font);
22004
22005 if (width > 0 && it->line_wrap != TRUNCATE
22006 && it->current_x + width > it->last_visible_x)
22007 width = it->last_visible_x - it->current_x - 1;
22008
22009 if (width > 0 && height > 0 && it->glyph_row)
22010 {
22011 Lisp_Object object = it->stack[it->sp - 1].string;
22012 if (!STRINGP (object))
22013 object = it->w->buffer;
22014 append_stretch_glyph (it, object, width, height, ascent);
22015 }
22016
22017 it->pixel_width = width;
22018 it->ascent = it->phys_ascent = ascent;
22019 it->descent = it->phys_descent = height - it->ascent;
22020 it->nglyphs = width > 0 && height > 0 ? 1 : 0;
22021
22022 take_vertical_position_into_account (it);
22023 }
22024
22025 /* Calculate line-height and line-spacing properties.
22026 An integer value specifies explicit pixel value.
22027 A float value specifies relative value to current face height.
22028 A cons (float . face-name) specifies relative value to
22029 height of specified face font.
22030
22031 Returns height in pixels, or nil. */
22032
22033
22034 static Lisp_Object
22035 calc_line_height_property (struct it *it, Lisp_Object val, struct font *font,
22036 int boff, int override)
22037 {
22038 Lisp_Object face_name = Qnil;
22039 int ascent, descent, height;
22040
22041 if (NILP (val) || INTEGERP (val) || (override && EQ (val, Qt)))
22042 return val;
22043
22044 if (CONSP (val))
22045 {
22046 face_name = XCAR (val);
22047 val = XCDR (val);
22048 if (!NUMBERP (val))
22049 val = make_number (1);
22050 if (NILP (face_name))
22051 {
22052 height = it->ascent + it->descent;
22053 goto scale;
22054 }
22055 }
22056
22057 if (NILP (face_name))
22058 {
22059 font = FRAME_FONT (it->f);
22060 boff = FRAME_BASELINE_OFFSET (it->f);
22061 }
22062 else if (EQ (face_name, Qt))
22063 {
22064 override = 0;
22065 }
22066 else
22067 {
22068 int face_id;
22069 struct face *face;
22070
22071 face_id = lookup_named_face (it->f, face_name, 0);
22072 if (face_id < 0)
22073 return make_number (-1);
22074
22075 face = FACE_FROM_ID (it->f, face_id);
22076 font = face->font;
22077 if (font == NULL)
22078 return make_number (-1);
22079 boff = font->baseline_offset;
22080 if (font->vertical_centering)
22081 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
22082 }
22083
22084 ascent = FONT_BASE (font) + boff;
22085 descent = FONT_DESCENT (font) - boff;
22086
22087 if (override)
22088 {
22089 it->override_ascent = ascent;
22090 it->override_descent = descent;
22091 it->override_boff = boff;
22092 }
22093
22094 height = ascent + descent;
22095
22096 scale:
22097 if (FLOATP (val))
22098 height = (int)(XFLOAT_DATA (val) * height);
22099 else if (INTEGERP (val))
22100 height *= XINT (val);
22101
22102 return make_number (height);
22103 }
22104
22105
22106 /* Append a glyph for a glyphless character to IT->glyph_row. FACE_ID
22107 is a face ID to be used for the glyph. FOR_NO_FONT is nonzero if
22108 and only if this is for a character for which no font was found.
22109
22110 If the display method (it->glyphless_method) is
22111 GLYPHLESS_DISPLAY_ACRONYM or GLYPHLESS_DISPLAY_HEX_CODE, LEN is a
22112 length of the acronym or the hexadecimal string, UPPER_XOFF and
22113 UPPER_YOFF are pixel offsets for the upper part of the string,
22114 LOWER_XOFF and LOWER_YOFF are for the lower part.
22115
22116 For the other display methods, LEN through LOWER_YOFF are zero. */
22117
22118 static void
22119 append_glyphless_glyph (struct it *it, int face_id, int for_no_font, int len,
22120 short upper_xoff, short upper_yoff,
22121 short lower_xoff, short lower_yoff)
22122 {
22123 struct glyph *glyph;
22124 enum glyph_row_area area = it->area;
22125
22126 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
22127 if (glyph < it->glyph_row->glyphs[area + 1])
22128 {
22129 /* If the glyph row is reversed, we need to prepend the glyph
22130 rather than append it. */
22131 if (it->glyph_row->reversed_p && area == TEXT_AREA)
22132 {
22133 struct glyph *g;
22134
22135 /* Make room for the additional glyph. */
22136 for (g = glyph - 1; g >= it->glyph_row->glyphs[area]; g--)
22137 g[1] = *g;
22138 glyph = it->glyph_row->glyphs[area];
22139 }
22140 glyph->charpos = CHARPOS (it->position);
22141 glyph->object = it->object;
22142 glyph->pixel_width = it->pixel_width;
22143 glyph->ascent = it->ascent;
22144 glyph->descent = it->descent;
22145 glyph->voffset = it->voffset;
22146 glyph->type = GLYPHLESS_GLYPH;
22147 glyph->u.glyphless.method = it->glyphless_method;
22148 glyph->u.glyphless.for_no_font = for_no_font;
22149 glyph->u.glyphless.len = len;
22150 glyph->u.glyphless.ch = it->c;
22151 glyph->slice.glyphless.upper_xoff = upper_xoff;
22152 glyph->slice.glyphless.upper_yoff = upper_yoff;
22153 glyph->slice.glyphless.lower_xoff = lower_xoff;
22154 glyph->slice.glyphless.lower_yoff = lower_yoff;
22155 glyph->avoid_cursor_p = it->avoid_cursor_p;
22156 glyph->multibyte_p = it->multibyte_p;
22157 glyph->left_box_line_p = it->start_of_box_run_p;
22158 glyph->right_box_line_p = it->end_of_box_run_p;
22159 glyph->overlaps_vertically_p = (it->phys_ascent > it->ascent
22160 || it->phys_descent > it->descent);
22161 glyph->padding_p = 0;
22162 glyph->glyph_not_available_p = 0;
22163 glyph->face_id = face_id;
22164 glyph->font_type = FONT_TYPE_UNKNOWN;
22165 if (it->bidi_p)
22166 {
22167 glyph->resolved_level = it->bidi_it.resolved_level;
22168 if ((it->bidi_it.type & 7) != it->bidi_it.type)
22169 abort ();
22170 glyph->bidi_type = it->bidi_it.type;
22171 }
22172 ++it->glyph_row->used[area];
22173 }
22174 else
22175 IT_EXPAND_MATRIX_WIDTH (it, area);
22176 }
22177
22178
22179 /* Produce a glyph for a glyphless character for iterator IT.
22180 IT->glyphless_method specifies which method to use for displaying
22181 the character. See the description of enum
22182 glyphless_display_method in dispextern.h for the detail.
22183
22184 FOR_NO_FONT is nonzero if and only if this is for a character for
22185 which no font was found. ACRONYM, if non-nil, is an acronym string
22186 for the character. */
22187
22188 static void
22189 produce_glyphless_glyph (struct it *it, int for_no_font, Lisp_Object acronym)
22190 {
22191 int face_id;
22192 struct face *face;
22193 struct font *font;
22194 int base_width, base_height, width, height;
22195 short upper_xoff, upper_yoff, lower_xoff, lower_yoff;
22196 int len;
22197
22198 /* Get the metrics of the base font. We always refer to the current
22199 ASCII face. */
22200 face = FACE_FROM_ID (it->f, it->face_id)->ascii_face;
22201 font = face->font ? face->font : FRAME_FONT (it->f);
22202 it->ascent = FONT_BASE (font) + font->baseline_offset;
22203 it->descent = FONT_DESCENT (font) - font->baseline_offset;
22204 base_height = it->ascent + it->descent;
22205 base_width = font->average_width;
22206
22207 /* Get a face ID for the glyph by utilizing a cache (the same way as
22208 doen for `escape-glyph' in get_next_display_element). */
22209 if (it->f == last_glyphless_glyph_frame
22210 && it->face_id == last_glyphless_glyph_face_id)
22211 {
22212 face_id = last_glyphless_glyph_merged_face_id;
22213 }
22214 else
22215 {
22216 /* Merge the `glyphless-char' face into the current face. */
22217 face_id = merge_faces (it->f, Qglyphless_char, 0, it->face_id);
22218 last_glyphless_glyph_frame = it->f;
22219 last_glyphless_glyph_face_id = it->face_id;
22220 last_glyphless_glyph_merged_face_id = face_id;
22221 }
22222
22223 if (it->glyphless_method == GLYPHLESS_DISPLAY_THIN_SPACE)
22224 {
22225 it->pixel_width = THIN_SPACE_WIDTH;
22226 len = 0;
22227 upper_xoff = upper_yoff = lower_xoff = lower_yoff = 0;
22228 }
22229 else if (it->glyphless_method == GLYPHLESS_DISPLAY_EMPTY_BOX)
22230 {
22231 width = CHAR_WIDTH (it->c);
22232 if (width == 0)
22233 width = 1;
22234 else if (width > 4)
22235 width = 4;
22236 it->pixel_width = base_width * width;
22237 len = 0;
22238 upper_xoff = upper_yoff = lower_xoff = lower_yoff = 0;
22239 }
22240 else
22241 {
22242 char buf[7];
22243 const char *str;
22244 unsigned int code[6];
22245 int upper_len;
22246 int ascent, descent;
22247 struct font_metrics metrics_upper, metrics_lower;
22248
22249 face = FACE_FROM_ID (it->f, face_id);
22250 font = face->font ? face->font : FRAME_FONT (it->f);
22251 PREPARE_FACE_FOR_DISPLAY (it->f, face);
22252
22253 if (it->glyphless_method == GLYPHLESS_DISPLAY_ACRONYM)
22254 {
22255 if (! STRINGP (acronym) && CHAR_TABLE_P (Vglyphless_char_display))
22256 acronym = CHAR_TABLE_REF (Vglyphless_char_display, it->c);
22257 str = STRINGP (acronym) ? SSDATA (acronym) : "";
22258 }
22259 else
22260 {
22261 xassert (it->glyphless_method == GLYPHLESS_DISPLAY_HEX_CODE);
22262 sprintf (buf, "%0*X", it->c < 0x10000 ? 4 : 6, it->c);
22263 str = buf;
22264 }
22265 for (len = 0; str[len] && ASCII_BYTE_P (str[len]); len++)
22266 code[len] = font->driver->encode_char (font, str[len]);
22267 upper_len = (len + 1) / 2;
22268 font->driver->text_extents (font, code, upper_len,
22269 &metrics_upper);
22270 font->driver->text_extents (font, code + upper_len, len - upper_len,
22271 &metrics_lower);
22272
22273
22274
22275 /* +4 is for vertical bars of a box plus 1-pixel spaces at both side. */
22276 width = max (metrics_upper.width, metrics_lower.width) + 4;
22277 upper_xoff = upper_yoff = 2; /* the typical case */
22278 if (base_width >= width)
22279 {
22280 /* Align the upper to the left, the lower to the right. */
22281 it->pixel_width = base_width;
22282 lower_xoff = base_width - 2 - metrics_lower.width;
22283 }
22284 else
22285 {
22286 /* Center the shorter one. */
22287 it->pixel_width = width;
22288 if (metrics_upper.width >= metrics_lower.width)
22289 lower_xoff = (width - metrics_lower.width) / 2;
22290 else
22291 {
22292 /* FIXME: This code doesn't look right. It formerly was
22293 missing the "lower_xoff = 0;", which couldn't have
22294 been right since it left lower_xoff uninitialized. */
22295 lower_xoff = 0;
22296 upper_xoff = (width - metrics_upper.width) / 2;
22297 }
22298 }
22299
22300 /* +5 is for horizontal bars of a box plus 1-pixel spaces at
22301 top, bottom, and between upper and lower strings. */
22302 height = (metrics_upper.ascent + metrics_upper.descent
22303 + metrics_lower.ascent + metrics_lower.descent) + 5;
22304 /* Center vertically.
22305 H:base_height, D:base_descent
22306 h:height, ld:lower_descent, la:lower_ascent, ud:upper_descent
22307
22308 ascent = - (D - H/2 - h/2 + 1); "+ 1" for rounding up
22309 descent = D - H/2 + h/2;
22310 lower_yoff = descent - 2 - ld;
22311 upper_yoff = lower_yoff - la - 1 - ud; */
22312 ascent = - (it->descent - (base_height + height + 1) / 2);
22313 descent = it->descent - (base_height - height) / 2;
22314 lower_yoff = descent - 2 - metrics_lower.descent;
22315 upper_yoff = (lower_yoff - metrics_lower.ascent - 1
22316 - metrics_upper.descent);
22317 /* Don't make the height shorter than the base height. */
22318 if (height > base_height)
22319 {
22320 it->ascent = ascent;
22321 it->descent = descent;
22322 }
22323 }
22324
22325 it->phys_ascent = it->ascent;
22326 it->phys_descent = it->descent;
22327 if (it->glyph_row)
22328 append_glyphless_glyph (it, face_id, for_no_font, len,
22329 upper_xoff, upper_yoff,
22330 lower_xoff, lower_yoff);
22331 it->nglyphs = 1;
22332 take_vertical_position_into_account (it);
22333 }
22334
22335
22336 /* RIF:
22337 Produce glyphs/get display metrics for the display element IT is
22338 loaded with. See the description of struct it in dispextern.h
22339 for an overview of struct it. */
22340
22341 void
22342 x_produce_glyphs (struct it *it)
22343 {
22344 int extra_line_spacing = it->extra_line_spacing;
22345
22346 it->glyph_not_available_p = 0;
22347
22348 if (it->what == IT_CHARACTER)
22349 {
22350 XChar2b char2b;
22351 struct face *face = FACE_FROM_ID (it->f, it->face_id);
22352 struct font *font = face->font;
22353 struct font_metrics *pcm = NULL;
22354 int boff; /* baseline offset */
22355
22356 if (font == NULL)
22357 {
22358 /* When no suitable font is found, display this character by
22359 the method specified in the first extra slot of
22360 Vglyphless_char_display. */
22361 Lisp_Object acronym = lookup_glyphless_char_display (-1, it);
22362
22363 xassert (it->what == IT_GLYPHLESS);
22364 produce_glyphless_glyph (it, 1, STRINGP (acronym) ? acronym : Qnil);
22365 goto done;
22366 }
22367
22368 boff = font->baseline_offset;
22369 if (font->vertical_centering)
22370 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
22371
22372 if (it->char_to_display != '\n' && it->char_to_display != '\t')
22373 {
22374 int stretched_p;
22375
22376 it->nglyphs = 1;
22377
22378 if (it->override_ascent >= 0)
22379 {
22380 it->ascent = it->override_ascent;
22381 it->descent = it->override_descent;
22382 boff = it->override_boff;
22383 }
22384 else
22385 {
22386 it->ascent = FONT_BASE (font) + boff;
22387 it->descent = FONT_DESCENT (font) - boff;
22388 }
22389
22390 if (get_char_glyph_code (it->char_to_display, font, &char2b))
22391 {
22392 pcm = get_per_char_metric (it->f, font, &char2b);
22393 if (pcm->width == 0
22394 && pcm->rbearing == 0 && pcm->lbearing == 0)
22395 pcm = NULL;
22396 }
22397
22398 if (pcm)
22399 {
22400 it->phys_ascent = pcm->ascent + boff;
22401 it->phys_descent = pcm->descent - boff;
22402 it->pixel_width = pcm->width;
22403 }
22404 else
22405 {
22406 it->glyph_not_available_p = 1;
22407 it->phys_ascent = it->ascent;
22408 it->phys_descent = it->descent;
22409 it->pixel_width = font->space_width;
22410 }
22411
22412 if (it->constrain_row_ascent_descent_p)
22413 {
22414 if (it->descent > it->max_descent)
22415 {
22416 it->ascent += it->descent - it->max_descent;
22417 it->descent = it->max_descent;
22418 }
22419 if (it->ascent > it->max_ascent)
22420 {
22421 it->descent = min (it->max_descent, it->descent + it->ascent - it->max_ascent);
22422 it->ascent = it->max_ascent;
22423 }
22424 it->phys_ascent = min (it->phys_ascent, it->ascent);
22425 it->phys_descent = min (it->phys_descent, it->descent);
22426 extra_line_spacing = 0;
22427 }
22428
22429 /* If this is a space inside a region of text with
22430 `space-width' property, change its width. */
22431 stretched_p = it->char_to_display == ' ' && !NILP (it->space_width);
22432 if (stretched_p)
22433 it->pixel_width *= XFLOATINT (it->space_width);
22434
22435 /* If face has a box, add the box thickness to the character
22436 height. If character has a box line to the left and/or
22437 right, add the box line width to the character's width. */
22438 if (face->box != FACE_NO_BOX)
22439 {
22440 int thick = face->box_line_width;
22441
22442 if (thick > 0)
22443 {
22444 it->ascent += thick;
22445 it->descent += thick;
22446 }
22447 else
22448 thick = -thick;
22449
22450 if (it->start_of_box_run_p)
22451 it->pixel_width += thick;
22452 if (it->end_of_box_run_p)
22453 it->pixel_width += thick;
22454 }
22455
22456 /* If face has an overline, add the height of the overline
22457 (1 pixel) and a 1 pixel margin to the character height. */
22458 if (face->overline_p)
22459 it->ascent += overline_margin;
22460
22461 if (it->constrain_row_ascent_descent_p)
22462 {
22463 if (it->ascent > it->max_ascent)
22464 it->ascent = it->max_ascent;
22465 if (it->descent > it->max_descent)
22466 it->descent = it->max_descent;
22467 }
22468
22469 take_vertical_position_into_account (it);
22470
22471 /* If we have to actually produce glyphs, do it. */
22472 if (it->glyph_row)
22473 {
22474 if (stretched_p)
22475 {
22476 /* Translate a space with a `space-width' property
22477 into a stretch glyph. */
22478 int ascent = (((it->ascent + it->descent) * FONT_BASE (font))
22479 / FONT_HEIGHT (font));
22480 append_stretch_glyph (it, it->object, it->pixel_width,
22481 it->ascent + it->descent, ascent);
22482 }
22483 else
22484 append_glyph (it);
22485
22486 /* If characters with lbearing or rbearing are displayed
22487 in this line, record that fact in a flag of the
22488 glyph row. This is used to optimize X output code. */
22489 if (pcm && (pcm->lbearing < 0 || pcm->rbearing > pcm->width))
22490 it->glyph_row->contains_overlapping_glyphs_p = 1;
22491 }
22492 if (! stretched_p && it->pixel_width == 0)
22493 /* We assure that all visible glyphs have at least 1-pixel
22494 width. */
22495 it->pixel_width = 1;
22496 }
22497 else if (it->char_to_display == '\n')
22498 {
22499 /* A newline has no width, but we need the height of the
22500 line. But if previous part of the line sets a height,
22501 don't increase that height */
22502
22503 Lisp_Object height;
22504 Lisp_Object total_height = Qnil;
22505
22506 it->override_ascent = -1;
22507 it->pixel_width = 0;
22508 it->nglyphs = 0;
22509
22510 height = get_it_property (it, Qline_height);
22511 /* Split (line-height total-height) list */
22512 if (CONSP (height)
22513 && CONSP (XCDR (height))
22514 && NILP (XCDR (XCDR (height))))
22515 {
22516 total_height = XCAR (XCDR (height));
22517 height = XCAR (height);
22518 }
22519 height = calc_line_height_property (it, height, font, boff, 1);
22520
22521 if (it->override_ascent >= 0)
22522 {
22523 it->ascent = it->override_ascent;
22524 it->descent = it->override_descent;
22525 boff = it->override_boff;
22526 }
22527 else
22528 {
22529 it->ascent = FONT_BASE (font) + boff;
22530 it->descent = FONT_DESCENT (font) - boff;
22531 }
22532
22533 if (EQ (height, Qt))
22534 {
22535 if (it->descent > it->max_descent)
22536 {
22537 it->ascent += it->descent - it->max_descent;
22538 it->descent = it->max_descent;
22539 }
22540 if (it->ascent > it->max_ascent)
22541 {
22542 it->descent = min (it->max_descent, it->descent + it->ascent - it->max_ascent);
22543 it->ascent = it->max_ascent;
22544 }
22545 it->phys_ascent = min (it->phys_ascent, it->ascent);
22546 it->phys_descent = min (it->phys_descent, it->descent);
22547 it->constrain_row_ascent_descent_p = 1;
22548 extra_line_spacing = 0;
22549 }
22550 else
22551 {
22552 Lisp_Object spacing;
22553
22554 it->phys_ascent = it->ascent;
22555 it->phys_descent = it->descent;
22556
22557 if ((it->max_ascent > 0 || it->max_descent > 0)
22558 && face->box != FACE_NO_BOX
22559 && face->box_line_width > 0)
22560 {
22561 it->ascent += face->box_line_width;
22562 it->descent += face->box_line_width;
22563 }
22564 if (!NILP (height)
22565 && XINT (height) > it->ascent + it->descent)
22566 it->ascent = XINT (height) - it->descent;
22567
22568 if (!NILP (total_height))
22569 spacing = calc_line_height_property (it, total_height, font, boff, 0);
22570 else
22571 {
22572 spacing = get_it_property (it, Qline_spacing);
22573 spacing = calc_line_height_property (it, spacing, font, boff, 0);
22574 }
22575 if (INTEGERP (spacing))
22576 {
22577 extra_line_spacing = XINT (spacing);
22578 if (!NILP (total_height))
22579 extra_line_spacing -= (it->phys_ascent + it->phys_descent);
22580 }
22581 }
22582 }
22583 else /* i.e. (it->char_to_display == '\t') */
22584 {
22585 if (font->space_width > 0)
22586 {
22587 int tab_width = it->tab_width * font->space_width;
22588 int x = it->current_x + it->continuation_lines_width;
22589 int next_tab_x = ((1 + x + tab_width - 1) / tab_width) * tab_width;
22590
22591 /* If the distance from the current position to the next tab
22592 stop is less than a space character width, use the
22593 tab stop after that. */
22594 if (next_tab_x - x < font->space_width)
22595 next_tab_x += tab_width;
22596
22597 it->pixel_width = next_tab_x - x;
22598 it->nglyphs = 1;
22599 it->ascent = it->phys_ascent = FONT_BASE (font) + boff;
22600 it->descent = it->phys_descent = FONT_DESCENT (font) - boff;
22601
22602 if (it->glyph_row)
22603 {
22604 append_stretch_glyph (it, it->object, it->pixel_width,
22605 it->ascent + it->descent, it->ascent);
22606 }
22607 }
22608 else
22609 {
22610 it->pixel_width = 0;
22611 it->nglyphs = 1;
22612 }
22613 }
22614 }
22615 else if (it->what == IT_COMPOSITION && it->cmp_it.ch < 0)
22616 {
22617 /* A static composition.
22618
22619 Note: A composition is represented as one glyph in the
22620 glyph matrix. There are no padding glyphs.
22621
22622 Important note: pixel_width, ascent, and descent are the
22623 values of what is drawn by draw_glyphs (i.e. the values of
22624 the overall glyphs composed). */
22625 struct face *face = FACE_FROM_ID (it->f, it->face_id);
22626 int boff; /* baseline offset */
22627 struct composition *cmp = composition_table[it->cmp_it.id];
22628 int glyph_len = cmp->glyph_len;
22629 struct font *font = face->font;
22630
22631 it->nglyphs = 1;
22632
22633 /* If we have not yet calculated pixel size data of glyphs of
22634 the composition for the current face font, calculate them
22635 now. Theoretically, we have to check all fonts for the
22636 glyphs, but that requires much time and memory space. So,
22637 here we check only the font of the first glyph. This may
22638 lead to incorrect display, but it's very rare, and C-l
22639 (recenter-top-bottom) can correct the display anyway. */
22640 if (! cmp->font || cmp->font != font)
22641 {
22642 /* Ascent and descent of the font of the first character
22643 of this composition (adjusted by baseline offset).
22644 Ascent and descent of overall glyphs should not be less
22645 than these, respectively. */
22646 int font_ascent, font_descent, font_height;
22647 /* Bounding box of the overall glyphs. */
22648 int leftmost, rightmost, lowest, highest;
22649 int lbearing, rbearing;
22650 int i, width, ascent, descent;
22651 int left_padded = 0, right_padded = 0;
22652 int c;
22653 XChar2b char2b;
22654 struct font_metrics *pcm;
22655 int font_not_found_p;
22656 EMACS_INT pos;
22657
22658 for (glyph_len = cmp->glyph_len; glyph_len > 0; glyph_len--)
22659 if ((c = COMPOSITION_GLYPH (cmp, glyph_len - 1)) != '\t')
22660 break;
22661 if (glyph_len < cmp->glyph_len)
22662 right_padded = 1;
22663 for (i = 0; i < glyph_len; i++)
22664 {
22665 if ((c = COMPOSITION_GLYPH (cmp, i)) != '\t')
22666 break;
22667 cmp->offsets[i * 2] = cmp->offsets[i * 2 + 1] = 0;
22668 }
22669 if (i > 0)
22670 left_padded = 1;
22671
22672 pos = (STRINGP (it->string) ? IT_STRING_CHARPOS (*it)
22673 : IT_CHARPOS (*it));
22674 /* If no suitable font is found, use the default font. */
22675 font_not_found_p = font == NULL;
22676 if (font_not_found_p)
22677 {
22678 face = face->ascii_face;
22679 font = face->font;
22680 }
22681 boff = font->baseline_offset;
22682 if (font->vertical_centering)
22683 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
22684 font_ascent = FONT_BASE (font) + boff;
22685 font_descent = FONT_DESCENT (font) - boff;
22686 font_height = FONT_HEIGHT (font);
22687
22688 cmp->font = (void *) font;
22689
22690 pcm = NULL;
22691 if (! font_not_found_p)
22692 {
22693 get_char_face_and_encoding (it->f, c, it->face_id,
22694 &char2b, it->multibyte_p, 0);
22695 pcm = get_per_char_metric (it->f, font, &char2b);
22696 }
22697
22698 /* Initialize the bounding box. */
22699 if (pcm)
22700 {
22701 width = pcm->width;
22702 ascent = pcm->ascent;
22703 descent = pcm->descent;
22704 lbearing = pcm->lbearing;
22705 rbearing = pcm->rbearing;
22706 }
22707 else
22708 {
22709 width = font->space_width;
22710 ascent = FONT_BASE (font);
22711 descent = FONT_DESCENT (font);
22712 lbearing = 0;
22713 rbearing = width;
22714 }
22715
22716 rightmost = width;
22717 leftmost = 0;
22718 lowest = - descent + boff;
22719 highest = ascent + boff;
22720
22721 if (! font_not_found_p
22722 && font->default_ascent
22723 && CHAR_TABLE_P (Vuse_default_ascent)
22724 && !NILP (Faref (Vuse_default_ascent,
22725 make_number (it->char_to_display))))
22726 highest = font->default_ascent + boff;
22727
22728 /* Draw the first glyph at the normal position. It may be
22729 shifted to right later if some other glyphs are drawn
22730 at the left. */
22731 cmp->offsets[i * 2] = 0;
22732 cmp->offsets[i * 2 + 1] = boff;
22733 cmp->lbearing = lbearing;
22734 cmp->rbearing = rbearing;
22735
22736 /* Set cmp->offsets for the remaining glyphs. */
22737 for (i++; i < glyph_len; i++)
22738 {
22739 int left, right, btm, top;
22740 int ch = COMPOSITION_GLYPH (cmp, i);
22741 int face_id;
22742 struct face *this_face;
22743 int this_boff;
22744
22745 if (ch == '\t')
22746 ch = ' ';
22747 face_id = FACE_FOR_CHAR (it->f, face, ch, pos, it->string);
22748 this_face = FACE_FROM_ID (it->f, face_id);
22749 font = this_face->font;
22750
22751 if (font == NULL)
22752 pcm = NULL;
22753 else
22754 {
22755 this_boff = font->baseline_offset;
22756 if (font->vertical_centering)
22757 this_boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
22758 get_char_face_and_encoding (it->f, ch, face_id,
22759 &char2b, it->multibyte_p, 0);
22760 pcm = get_per_char_metric (it->f, font, &char2b);
22761 }
22762 if (! pcm)
22763 cmp->offsets[i * 2] = cmp->offsets[i * 2 + 1] = 0;
22764 else
22765 {
22766 width = pcm->width;
22767 ascent = pcm->ascent;
22768 descent = pcm->descent;
22769 lbearing = pcm->lbearing;
22770 rbearing = pcm->rbearing;
22771 if (cmp->method != COMPOSITION_WITH_RULE_ALTCHARS)
22772 {
22773 /* Relative composition with or without
22774 alternate chars. */
22775 left = (leftmost + rightmost - width) / 2;
22776 btm = - descent + boff;
22777 if (font->relative_compose
22778 && (! CHAR_TABLE_P (Vignore_relative_composition)
22779 || NILP (Faref (Vignore_relative_composition,
22780 make_number (ch)))))
22781 {
22782
22783 if (- descent >= font->relative_compose)
22784 /* One extra pixel between two glyphs. */
22785 btm = highest + 1;
22786 else if (ascent <= 0)
22787 /* One extra pixel between two glyphs. */
22788 btm = lowest - 1 - ascent - descent;
22789 }
22790 }
22791 else
22792 {
22793 /* A composition rule is specified by an integer
22794 value that encodes global and new reference
22795 points (GREF and NREF). GREF and NREF are
22796 specified by numbers as below:
22797
22798 0---1---2 -- ascent
22799 | |
22800 | |
22801 | |
22802 9--10--11 -- center
22803 | |
22804 ---3---4---5--- baseline
22805 | |
22806 6---7---8 -- descent
22807 */
22808 int rule = COMPOSITION_RULE (cmp, i);
22809 int gref, nref, grefx, grefy, nrefx, nrefy, xoff, yoff;
22810
22811 COMPOSITION_DECODE_RULE (rule, gref, nref, xoff, yoff);
22812 grefx = gref % 3, nrefx = nref % 3;
22813 grefy = gref / 3, nrefy = nref / 3;
22814 if (xoff)
22815 xoff = font_height * (xoff - 128) / 256;
22816 if (yoff)
22817 yoff = font_height * (yoff - 128) / 256;
22818
22819 left = (leftmost
22820 + grefx * (rightmost - leftmost) / 2
22821 - nrefx * width / 2
22822 + xoff);
22823
22824 btm = ((grefy == 0 ? highest
22825 : grefy == 1 ? 0
22826 : grefy == 2 ? lowest
22827 : (highest + lowest) / 2)
22828 - (nrefy == 0 ? ascent + descent
22829 : nrefy == 1 ? descent - boff
22830 : nrefy == 2 ? 0
22831 : (ascent + descent) / 2)
22832 + yoff);
22833 }
22834
22835 cmp->offsets[i * 2] = left;
22836 cmp->offsets[i * 2 + 1] = btm + descent;
22837
22838 /* Update the bounding box of the overall glyphs. */
22839 if (width > 0)
22840 {
22841 right = left + width;
22842 if (left < leftmost)
22843 leftmost = left;
22844 if (right > rightmost)
22845 rightmost = right;
22846 }
22847 top = btm + descent + ascent;
22848 if (top > highest)
22849 highest = top;
22850 if (btm < lowest)
22851 lowest = btm;
22852
22853 if (cmp->lbearing > left + lbearing)
22854 cmp->lbearing = left + lbearing;
22855 if (cmp->rbearing < left + rbearing)
22856 cmp->rbearing = left + rbearing;
22857 }
22858 }
22859
22860 /* If there are glyphs whose x-offsets are negative,
22861 shift all glyphs to the right and make all x-offsets
22862 non-negative. */
22863 if (leftmost < 0)
22864 {
22865 for (i = 0; i < cmp->glyph_len; i++)
22866 cmp->offsets[i * 2] -= leftmost;
22867 rightmost -= leftmost;
22868 cmp->lbearing -= leftmost;
22869 cmp->rbearing -= leftmost;
22870 }
22871
22872 if (left_padded && cmp->lbearing < 0)
22873 {
22874 for (i = 0; i < cmp->glyph_len; i++)
22875 cmp->offsets[i * 2] -= cmp->lbearing;
22876 rightmost -= cmp->lbearing;
22877 cmp->rbearing -= cmp->lbearing;
22878 cmp->lbearing = 0;
22879 }
22880 if (right_padded && rightmost < cmp->rbearing)
22881 {
22882 rightmost = cmp->rbearing;
22883 }
22884
22885 cmp->pixel_width = rightmost;
22886 cmp->ascent = highest;
22887 cmp->descent = - lowest;
22888 if (cmp->ascent < font_ascent)
22889 cmp->ascent = font_ascent;
22890 if (cmp->descent < font_descent)
22891 cmp->descent = font_descent;
22892 }
22893
22894 if (it->glyph_row
22895 && (cmp->lbearing < 0
22896 || cmp->rbearing > cmp->pixel_width))
22897 it->glyph_row->contains_overlapping_glyphs_p = 1;
22898
22899 it->pixel_width = cmp->pixel_width;
22900 it->ascent = it->phys_ascent = cmp->ascent;
22901 it->descent = it->phys_descent = cmp->descent;
22902 if (face->box != FACE_NO_BOX)
22903 {
22904 int thick = face->box_line_width;
22905
22906 if (thick > 0)
22907 {
22908 it->ascent += thick;
22909 it->descent += thick;
22910 }
22911 else
22912 thick = - thick;
22913
22914 if (it->start_of_box_run_p)
22915 it->pixel_width += thick;
22916 if (it->end_of_box_run_p)
22917 it->pixel_width += thick;
22918 }
22919
22920 /* If face has an overline, add the height of the overline
22921 (1 pixel) and a 1 pixel margin to the character height. */
22922 if (face->overline_p)
22923 it->ascent += overline_margin;
22924
22925 take_vertical_position_into_account (it);
22926 if (it->ascent < 0)
22927 it->ascent = 0;
22928 if (it->descent < 0)
22929 it->descent = 0;
22930
22931 if (it->glyph_row)
22932 append_composite_glyph (it);
22933 }
22934 else if (it->what == IT_COMPOSITION)
22935 {
22936 /* A dynamic (automatic) composition. */
22937 struct face *face = FACE_FROM_ID (it->f, it->face_id);
22938 Lisp_Object gstring;
22939 struct font_metrics metrics;
22940
22941 gstring = composition_gstring_from_id (it->cmp_it.id);
22942 it->pixel_width
22943 = composition_gstring_width (gstring, it->cmp_it.from, it->cmp_it.to,
22944 &metrics);
22945 if (it->glyph_row
22946 && (metrics.lbearing < 0 || metrics.rbearing > metrics.width))
22947 it->glyph_row->contains_overlapping_glyphs_p = 1;
22948 it->ascent = it->phys_ascent = metrics.ascent;
22949 it->descent = it->phys_descent = metrics.descent;
22950 if (face->box != FACE_NO_BOX)
22951 {
22952 int thick = face->box_line_width;
22953
22954 if (thick > 0)
22955 {
22956 it->ascent += thick;
22957 it->descent += thick;
22958 }
22959 else
22960 thick = - thick;
22961
22962 if (it->start_of_box_run_p)
22963 it->pixel_width += thick;
22964 if (it->end_of_box_run_p)
22965 it->pixel_width += thick;
22966 }
22967 /* If face has an overline, add the height of the overline
22968 (1 pixel) and a 1 pixel margin to the character height. */
22969 if (face->overline_p)
22970 it->ascent += overline_margin;
22971 take_vertical_position_into_account (it);
22972 if (it->ascent < 0)
22973 it->ascent = 0;
22974 if (it->descent < 0)
22975 it->descent = 0;
22976
22977 if (it->glyph_row)
22978 append_composite_glyph (it);
22979 }
22980 else if (it->what == IT_GLYPHLESS)
22981 produce_glyphless_glyph (it, 0, Qnil);
22982 else if (it->what == IT_IMAGE)
22983 produce_image_glyph (it);
22984 else if (it->what == IT_STRETCH)
22985 produce_stretch_glyph (it);
22986
22987 done:
22988 /* Accumulate dimensions. Note: can't assume that it->descent > 0
22989 because this isn't true for images with `:ascent 100'. */
22990 xassert (it->ascent >= 0 && it->descent >= 0);
22991 if (it->area == TEXT_AREA)
22992 it->current_x += it->pixel_width;
22993
22994 if (extra_line_spacing > 0)
22995 {
22996 it->descent += extra_line_spacing;
22997 if (extra_line_spacing > it->max_extra_line_spacing)
22998 it->max_extra_line_spacing = extra_line_spacing;
22999 }
23000
23001 it->max_ascent = max (it->max_ascent, it->ascent);
23002 it->max_descent = max (it->max_descent, it->descent);
23003 it->max_phys_ascent = max (it->max_phys_ascent, it->phys_ascent);
23004 it->max_phys_descent = max (it->max_phys_descent, it->phys_descent);
23005 }
23006
23007 /* EXPORT for RIF:
23008 Output LEN glyphs starting at START at the nominal cursor position.
23009 Advance the nominal cursor over the text. The global variable
23010 updated_window contains the window being updated, updated_row is
23011 the glyph row being updated, and updated_area is the area of that
23012 row being updated. */
23013
23014 void
23015 x_write_glyphs (struct glyph *start, int len)
23016 {
23017 int x, hpos;
23018
23019 xassert (updated_window && updated_row);
23020 BLOCK_INPUT;
23021
23022 /* Write glyphs. */
23023
23024 hpos = start - updated_row->glyphs[updated_area];
23025 x = draw_glyphs (updated_window, output_cursor.x,
23026 updated_row, updated_area,
23027 hpos, hpos + len,
23028 DRAW_NORMAL_TEXT, 0);
23029
23030 /* Invalidate old phys cursor if the glyph at its hpos is redrawn. */
23031 if (updated_area == TEXT_AREA
23032 && updated_window->phys_cursor_on_p
23033 && updated_window->phys_cursor.vpos == output_cursor.vpos
23034 && updated_window->phys_cursor.hpos >= hpos
23035 && updated_window->phys_cursor.hpos < hpos + len)
23036 updated_window->phys_cursor_on_p = 0;
23037
23038 UNBLOCK_INPUT;
23039
23040 /* Advance the output cursor. */
23041 output_cursor.hpos += len;
23042 output_cursor.x = x;
23043 }
23044
23045
23046 /* EXPORT for RIF:
23047 Insert LEN glyphs from START at the nominal cursor position. */
23048
23049 void
23050 x_insert_glyphs (struct glyph *start, int len)
23051 {
23052 struct frame *f;
23053 struct window *w;
23054 int line_height, shift_by_width, shifted_region_width;
23055 struct glyph_row *row;
23056 struct glyph *glyph;
23057 int frame_x, frame_y;
23058 EMACS_INT hpos;
23059
23060 xassert (updated_window && updated_row);
23061 BLOCK_INPUT;
23062 w = updated_window;
23063 f = XFRAME (WINDOW_FRAME (w));
23064
23065 /* Get the height of the line we are in. */
23066 row = updated_row;
23067 line_height = row->height;
23068
23069 /* Get the width of the glyphs to insert. */
23070 shift_by_width = 0;
23071 for (glyph = start; glyph < start + len; ++glyph)
23072 shift_by_width += glyph->pixel_width;
23073
23074 /* Get the width of the region to shift right. */
23075 shifted_region_width = (window_box_width (w, updated_area)
23076 - output_cursor.x
23077 - shift_by_width);
23078
23079 /* Shift right. */
23080 frame_x = window_box_left (w, updated_area) + output_cursor.x;
23081 frame_y = WINDOW_TO_FRAME_PIXEL_Y (w, output_cursor.y);
23082
23083 FRAME_RIF (f)->shift_glyphs_for_insert (f, frame_x, frame_y, shifted_region_width,
23084 line_height, shift_by_width);
23085
23086 /* Write the glyphs. */
23087 hpos = start - row->glyphs[updated_area];
23088 draw_glyphs (w, output_cursor.x, row, updated_area,
23089 hpos, hpos + len,
23090 DRAW_NORMAL_TEXT, 0);
23091
23092 /* Advance the output cursor. */
23093 output_cursor.hpos += len;
23094 output_cursor.x += shift_by_width;
23095 UNBLOCK_INPUT;
23096 }
23097
23098
23099 /* EXPORT for RIF:
23100 Erase the current text line from the nominal cursor position
23101 (inclusive) to pixel column TO_X (exclusive). The idea is that
23102 everything from TO_X onward is already erased.
23103
23104 TO_X is a pixel position relative to updated_area of
23105 updated_window. TO_X == -1 means clear to the end of this area. */
23106
23107 void
23108 x_clear_end_of_line (int to_x)
23109 {
23110 struct frame *f;
23111 struct window *w = updated_window;
23112 int max_x, min_y, max_y;
23113 int from_x, from_y, to_y;
23114
23115 xassert (updated_window && updated_row);
23116 f = XFRAME (w->frame);
23117
23118 if (updated_row->full_width_p)
23119 max_x = WINDOW_TOTAL_WIDTH (w);
23120 else
23121 max_x = window_box_width (w, updated_area);
23122 max_y = window_text_bottom_y (w);
23123
23124 /* TO_X == 0 means don't do anything. TO_X < 0 means clear to end
23125 of window. For TO_X > 0, truncate to end of drawing area. */
23126 if (to_x == 0)
23127 return;
23128 else if (to_x < 0)
23129 to_x = max_x;
23130 else
23131 to_x = min (to_x, max_x);
23132
23133 to_y = min (max_y, output_cursor.y + updated_row->height);
23134
23135 /* Notice if the cursor will be cleared by this operation. */
23136 if (!updated_row->full_width_p)
23137 notice_overwritten_cursor (w, updated_area,
23138 output_cursor.x, -1,
23139 updated_row->y,
23140 MATRIX_ROW_BOTTOM_Y (updated_row));
23141
23142 from_x = output_cursor.x;
23143
23144 /* Translate to frame coordinates. */
23145 if (updated_row->full_width_p)
23146 {
23147 from_x = WINDOW_TO_FRAME_PIXEL_X (w, from_x);
23148 to_x = WINDOW_TO_FRAME_PIXEL_X (w, to_x);
23149 }
23150 else
23151 {
23152 int area_left = window_box_left (w, updated_area);
23153 from_x += area_left;
23154 to_x += area_left;
23155 }
23156
23157 min_y = WINDOW_HEADER_LINE_HEIGHT (w);
23158 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, max (min_y, output_cursor.y));
23159 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, to_y);
23160
23161 /* Prevent inadvertently clearing to end of the X window. */
23162 if (to_x > from_x && to_y > from_y)
23163 {
23164 BLOCK_INPUT;
23165 FRAME_RIF (f)->clear_frame_area (f, from_x, from_y,
23166 to_x - from_x, to_y - from_y);
23167 UNBLOCK_INPUT;
23168 }
23169 }
23170
23171 #endif /* HAVE_WINDOW_SYSTEM */
23172
23173
23174 \f
23175 /***********************************************************************
23176 Cursor types
23177 ***********************************************************************/
23178
23179 /* Value is the internal representation of the specified cursor type
23180 ARG. If type is BAR_CURSOR, return in *WIDTH the specified width
23181 of the bar cursor. */
23182
23183 static enum text_cursor_kinds
23184 get_specified_cursor_type (Lisp_Object arg, int *width)
23185 {
23186 enum text_cursor_kinds type;
23187
23188 if (NILP (arg))
23189 return NO_CURSOR;
23190
23191 if (EQ (arg, Qbox))
23192 return FILLED_BOX_CURSOR;
23193
23194 if (EQ (arg, Qhollow))
23195 return HOLLOW_BOX_CURSOR;
23196
23197 if (EQ (arg, Qbar))
23198 {
23199 *width = 2;
23200 return BAR_CURSOR;
23201 }
23202
23203 if (CONSP (arg)
23204 && EQ (XCAR (arg), Qbar)
23205 && INTEGERP (XCDR (arg))
23206 && XINT (XCDR (arg)) >= 0)
23207 {
23208 *width = XINT (XCDR (arg));
23209 return BAR_CURSOR;
23210 }
23211
23212 if (EQ (arg, Qhbar))
23213 {
23214 *width = 2;
23215 return HBAR_CURSOR;
23216 }
23217
23218 if (CONSP (arg)
23219 && EQ (XCAR (arg), Qhbar)
23220 && INTEGERP (XCDR (arg))
23221 && XINT (XCDR (arg)) >= 0)
23222 {
23223 *width = XINT (XCDR (arg));
23224 return HBAR_CURSOR;
23225 }
23226
23227 /* Treat anything unknown as "hollow box cursor".
23228 It was bad to signal an error; people have trouble fixing
23229 .Xdefaults with Emacs, when it has something bad in it. */
23230 type = HOLLOW_BOX_CURSOR;
23231
23232 return type;
23233 }
23234
23235 /* Set the default cursor types for specified frame. */
23236 void
23237 set_frame_cursor_types (struct frame *f, Lisp_Object arg)
23238 {
23239 int width = 1;
23240 Lisp_Object tem;
23241
23242 FRAME_DESIRED_CURSOR (f) = get_specified_cursor_type (arg, &width);
23243 FRAME_CURSOR_WIDTH (f) = width;
23244
23245 /* By default, set up the blink-off state depending on the on-state. */
23246
23247 tem = Fassoc (arg, Vblink_cursor_alist);
23248 if (!NILP (tem))
23249 {
23250 FRAME_BLINK_OFF_CURSOR (f)
23251 = get_specified_cursor_type (XCDR (tem), &width);
23252 FRAME_BLINK_OFF_CURSOR_WIDTH (f) = width;
23253 }
23254 else
23255 FRAME_BLINK_OFF_CURSOR (f) = DEFAULT_CURSOR;
23256 }
23257
23258
23259 #ifdef HAVE_WINDOW_SYSTEM
23260
23261 /* Return the cursor we want to be displayed in window W. Return
23262 width of bar/hbar cursor through WIDTH arg. Return with
23263 ACTIVE_CURSOR arg set to 1 if cursor in window W is `active'
23264 (i.e. if the `system caret' should track this cursor).
23265
23266 In a mini-buffer window, we want the cursor only to appear if we
23267 are reading input from this window. For the selected window, we
23268 want the cursor type given by the frame parameter or buffer local
23269 setting of cursor-type. If explicitly marked off, draw no cursor.
23270 In all other cases, we want a hollow box cursor. */
23271
23272 static enum text_cursor_kinds
23273 get_window_cursor_type (struct window *w, struct glyph *glyph, int *width,
23274 int *active_cursor)
23275 {
23276 struct frame *f = XFRAME (w->frame);
23277 struct buffer *b = XBUFFER (w->buffer);
23278 int cursor_type = DEFAULT_CURSOR;
23279 Lisp_Object alt_cursor;
23280 int non_selected = 0;
23281
23282 *active_cursor = 1;
23283
23284 /* Echo area */
23285 if (cursor_in_echo_area
23286 && FRAME_HAS_MINIBUF_P (f)
23287 && EQ (FRAME_MINIBUF_WINDOW (f), echo_area_window))
23288 {
23289 if (w == XWINDOW (echo_area_window))
23290 {
23291 if (EQ (BVAR (b, cursor_type), Qt) || NILP (BVAR (b, cursor_type)))
23292 {
23293 *width = FRAME_CURSOR_WIDTH (f);
23294 return FRAME_DESIRED_CURSOR (f);
23295 }
23296 else
23297 return get_specified_cursor_type (BVAR (b, cursor_type), width);
23298 }
23299
23300 *active_cursor = 0;
23301 non_selected = 1;
23302 }
23303
23304 /* Detect a nonselected window or nonselected frame. */
23305 else if (w != XWINDOW (f->selected_window)
23306 || f != FRAME_X_DISPLAY_INFO (f)->x_highlight_frame)
23307 {
23308 *active_cursor = 0;
23309
23310 if (MINI_WINDOW_P (w) && minibuf_level == 0)
23311 return NO_CURSOR;
23312
23313 non_selected = 1;
23314 }
23315
23316 /* Never display a cursor in a window in which cursor-type is nil. */
23317 if (NILP (BVAR (b, cursor_type)))
23318 return NO_CURSOR;
23319
23320 /* Get the normal cursor type for this window. */
23321 if (EQ (BVAR (b, cursor_type), Qt))
23322 {
23323 cursor_type = FRAME_DESIRED_CURSOR (f);
23324 *width = FRAME_CURSOR_WIDTH (f);
23325 }
23326 else
23327 cursor_type = get_specified_cursor_type (BVAR (b, cursor_type), width);
23328
23329 /* Use cursor-in-non-selected-windows instead
23330 for non-selected window or frame. */
23331 if (non_selected)
23332 {
23333 alt_cursor = BVAR (b, cursor_in_non_selected_windows);
23334 if (!EQ (Qt, alt_cursor))
23335 return get_specified_cursor_type (alt_cursor, width);
23336 /* t means modify the normal cursor type. */
23337 if (cursor_type == FILLED_BOX_CURSOR)
23338 cursor_type = HOLLOW_BOX_CURSOR;
23339 else if (cursor_type == BAR_CURSOR && *width > 1)
23340 --*width;
23341 return cursor_type;
23342 }
23343
23344 /* Use normal cursor if not blinked off. */
23345 if (!w->cursor_off_p)
23346 {
23347 if (glyph != NULL && glyph->type == IMAGE_GLYPH)
23348 {
23349 if (cursor_type == FILLED_BOX_CURSOR)
23350 {
23351 /* Using a block cursor on large images can be very annoying.
23352 So use a hollow cursor for "large" images.
23353 If image is not transparent (no mask), also use hollow cursor. */
23354 struct image *img = IMAGE_FROM_ID (f, glyph->u.img_id);
23355 if (img != NULL && IMAGEP (img->spec))
23356 {
23357 /* Arbitrarily, interpret "Large" as >32x32 and >NxN
23358 where N = size of default frame font size.
23359 This should cover most of the "tiny" icons people may use. */
23360 if (!img->mask
23361 || img->width > max (32, WINDOW_FRAME_COLUMN_WIDTH (w))
23362 || img->height > max (32, WINDOW_FRAME_LINE_HEIGHT (w)))
23363 cursor_type = HOLLOW_BOX_CURSOR;
23364 }
23365 }
23366 else if (cursor_type != NO_CURSOR)
23367 {
23368 /* Display current only supports BOX and HOLLOW cursors for images.
23369 So for now, unconditionally use a HOLLOW cursor when cursor is
23370 not a solid box cursor. */
23371 cursor_type = HOLLOW_BOX_CURSOR;
23372 }
23373 }
23374 return cursor_type;
23375 }
23376
23377 /* Cursor is blinked off, so determine how to "toggle" it. */
23378
23379 /* First look for an entry matching the buffer's cursor-type in blink-cursor-alist. */
23380 if ((alt_cursor = Fassoc (BVAR (b, cursor_type), Vblink_cursor_alist), !NILP (alt_cursor)))
23381 return get_specified_cursor_type (XCDR (alt_cursor), width);
23382
23383 /* Then see if frame has specified a specific blink off cursor type. */
23384 if (FRAME_BLINK_OFF_CURSOR (f) != DEFAULT_CURSOR)
23385 {
23386 *width = FRAME_BLINK_OFF_CURSOR_WIDTH (f);
23387 return FRAME_BLINK_OFF_CURSOR (f);
23388 }
23389
23390 #if 0
23391 /* Some people liked having a permanently visible blinking cursor,
23392 while others had very strong opinions against it. So it was
23393 decided to remove it. KFS 2003-09-03 */
23394
23395 /* Finally perform built-in cursor blinking:
23396 filled box <-> hollow box
23397 wide [h]bar <-> narrow [h]bar
23398 narrow [h]bar <-> no cursor
23399 other type <-> no cursor */
23400
23401 if (cursor_type == FILLED_BOX_CURSOR)
23402 return HOLLOW_BOX_CURSOR;
23403
23404 if ((cursor_type == BAR_CURSOR || cursor_type == HBAR_CURSOR) && *width > 1)
23405 {
23406 *width = 1;
23407 return cursor_type;
23408 }
23409 #endif
23410
23411 return NO_CURSOR;
23412 }
23413
23414
23415 /* Notice when the text cursor of window W has been completely
23416 overwritten by a drawing operation that outputs glyphs in AREA
23417 starting at X0 and ending at X1 in the line starting at Y0 and
23418 ending at Y1. X coordinates are area-relative. X1 < 0 means all
23419 the rest of the line after X0 has been written. Y coordinates
23420 are window-relative. */
23421
23422 static void
23423 notice_overwritten_cursor (struct window *w, enum glyph_row_area area,
23424 int x0, int x1, int y0, int y1)
23425 {
23426 int cx0, cx1, cy0, cy1;
23427 struct glyph_row *row;
23428
23429 if (!w->phys_cursor_on_p)
23430 return;
23431 if (area != TEXT_AREA)
23432 return;
23433
23434 if (w->phys_cursor.vpos < 0
23435 || w->phys_cursor.vpos >= w->current_matrix->nrows
23436 || (row = w->current_matrix->rows + w->phys_cursor.vpos,
23437 !(row->enabled_p && row->displays_text_p)))
23438 return;
23439
23440 if (row->cursor_in_fringe_p)
23441 {
23442 row->cursor_in_fringe_p = 0;
23443 draw_fringe_bitmap (w, row, row->reversed_p);
23444 w->phys_cursor_on_p = 0;
23445 return;
23446 }
23447
23448 cx0 = w->phys_cursor.x;
23449 cx1 = cx0 + w->phys_cursor_width;
23450 if (x0 > cx0 || (x1 >= 0 && x1 < cx1))
23451 return;
23452
23453 /* The cursor image will be completely removed from the
23454 screen if the output area intersects the cursor area in
23455 y-direction. When we draw in [y0 y1[, and some part of
23456 the cursor is at y < y0, that part must have been drawn
23457 before. When scrolling, the cursor is erased before
23458 actually scrolling, so we don't come here. When not
23459 scrolling, the rows above the old cursor row must have
23460 changed, and in this case these rows must have written
23461 over the cursor image.
23462
23463 Likewise if part of the cursor is below y1, with the
23464 exception of the cursor being in the first blank row at
23465 the buffer and window end because update_text_area
23466 doesn't draw that row. (Except when it does, but
23467 that's handled in update_text_area.) */
23468
23469 cy0 = w->phys_cursor.y;
23470 cy1 = cy0 + w->phys_cursor_height;
23471 if ((y0 < cy0 || y0 >= cy1) && (y1 <= cy0 || y1 >= cy1))
23472 return;
23473
23474 w->phys_cursor_on_p = 0;
23475 }
23476
23477 #endif /* HAVE_WINDOW_SYSTEM */
23478
23479 \f
23480 /************************************************************************
23481 Mouse Face
23482 ************************************************************************/
23483
23484 #ifdef HAVE_WINDOW_SYSTEM
23485
23486 /* EXPORT for RIF:
23487 Fix the display of area AREA of overlapping row ROW in window W
23488 with respect to the overlapping part OVERLAPS. */
23489
23490 void
23491 x_fix_overlapping_area (struct window *w, struct glyph_row *row,
23492 enum glyph_row_area area, int overlaps)
23493 {
23494 int i, x;
23495
23496 BLOCK_INPUT;
23497
23498 x = 0;
23499 for (i = 0; i < row->used[area];)
23500 {
23501 if (row->glyphs[area][i].overlaps_vertically_p)
23502 {
23503 int start = i, start_x = x;
23504
23505 do
23506 {
23507 x += row->glyphs[area][i].pixel_width;
23508 ++i;
23509 }
23510 while (i < row->used[area]
23511 && row->glyphs[area][i].overlaps_vertically_p);
23512
23513 draw_glyphs (w, start_x, row, area,
23514 start, i,
23515 DRAW_NORMAL_TEXT, overlaps);
23516 }
23517 else
23518 {
23519 x += row->glyphs[area][i].pixel_width;
23520 ++i;
23521 }
23522 }
23523
23524 UNBLOCK_INPUT;
23525 }
23526
23527
23528 /* EXPORT:
23529 Draw the cursor glyph of window W in glyph row ROW. See the
23530 comment of draw_glyphs for the meaning of HL. */
23531
23532 void
23533 draw_phys_cursor_glyph (struct window *w, struct glyph_row *row,
23534 enum draw_glyphs_face hl)
23535 {
23536 /* If cursor hpos is out of bounds, don't draw garbage. This can
23537 happen in mini-buffer windows when switching between echo area
23538 glyphs and mini-buffer. */
23539 if ((row->reversed_p
23540 ? (w->phys_cursor.hpos >= 0)
23541 : (w->phys_cursor.hpos < row->used[TEXT_AREA])))
23542 {
23543 int on_p = w->phys_cursor_on_p;
23544 int x1;
23545 x1 = draw_glyphs (w, w->phys_cursor.x, row, TEXT_AREA,
23546 w->phys_cursor.hpos, w->phys_cursor.hpos + 1,
23547 hl, 0);
23548 w->phys_cursor_on_p = on_p;
23549
23550 if (hl == DRAW_CURSOR)
23551 w->phys_cursor_width = x1 - w->phys_cursor.x;
23552 /* When we erase the cursor, and ROW is overlapped by other
23553 rows, make sure that these overlapping parts of other rows
23554 are redrawn. */
23555 else if (hl == DRAW_NORMAL_TEXT && row->overlapped_p)
23556 {
23557 w->phys_cursor_width = x1 - w->phys_cursor.x;
23558
23559 if (row > w->current_matrix->rows
23560 && MATRIX_ROW_OVERLAPS_SUCC_P (row - 1))
23561 x_fix_overlapping_area (w, row - 1, TEXT_AREA,
23562 OVERLAPS_ERASED_CURSOR);
23563
23564 if (MATRIX_ROW_BOTTOM_Y (row) < window_text_bottom_y (w)
23565 && MATRIX_ROW_OVERLAPS_PRED_P (row + 1))
23566 x_fix_overlapping_area (w, row + 1, TEXT_AREA,
23567 OVERLAPS_ERASED_CURSOR);
23568 }
23569 }
23570 }
23571
23572
23573 /* EXPORT:
23574 Erase the image of a cursor of window W from the screen. */
23575
23576 void
23577 erase_phys_cursor (struct window *w)
23578 {
23579 struct frame *f = XFRAME (w->frame);
23580 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
23581 int hpos = w->phys_cursor.hpos;
23582 int vpos = w->phys_cursor.vpos;
23583 int mouse_face_here_p = 0;
23584 struct glyph_matrix *active_glyphs = w->current_matrix;
23585 struct glyph_row *cursor_row;
23586 struct glyph *cursor_glyph;
23587 enum draw_glyphs_face hl;
23588
23589 /* No cursor displayed or row invalidated => nothing to do on the
23590 screen. */
23591 if (w->phys_cursor_type == NO_CURSOR)
23592 goto mark_cursor_off;
23593
23594 /* VPOS >= active_glyphs->nrows means that window has been resized.
23595 Don't bother to erase the cursor. */
23596 if (vpos >= active_glyphs->nrows)
23597 goto mark_cursor_off;
23598
23599 /* If row containing cursor is marked invalid, there is nothing we
23600 can do. */
23601 cursor_row = MATRIX_ROW (active_glyphs, vpos);
23602 if (!cursor_row->enabled_p)
23603 goto mark_cursor_off;
23604
23605 /* If line spacing is > 0, old cursor may only be partially visible in
23606 window after split-window. So adjust visible height. */
23607 cursor_row->visible_height = min (cursor_row->visible_height,
23608 window_text_bottom_y (w) - cursor_row->y);
23609
23610 /* If row is completely invisible, don't attempt to delete a cursor which
23611 isn't there. This can happen if cursor is at top of a window, and
23612 we switch to a buffer with a header line in that window. */
23613 if (cursor_row->visible_height <= 0)
23614 goto mark_cursor_off;
23615
23616 /* If cursor is in the fringe, erase by drawing actual bitmap there. */
23617 if (cursor_row->cursor_in_fringe_p)
23618 {
23619 cursor_row->cursor_in_fringe_p = 0;
23620 draw_fringe_bitmap (w, cursor_row, cursor_row->reversed_p);
23621 goto mark_cursor_off;
23622 }
23623
23624 /* This can happen when the new row is shorter than the old one.
23625 In this case, either draw_glyphs or clear_end_of_line
23626 should have cleared the cursor. Note that we wouldn't be
23627 able to erase the cursor in this case because we don't have a
23628 cursor glyph at hand. */
23629 if ((cursor_row->reversed_p
23630 ? (w->phys_cursor.hpos < 0)
23631 : (w->phys_cursor.hpos >= cursor_row->used[TEXT_AREA])))
23632 goto mark_cursor_off;
23633
23634 /* If the cursor is in the mouse face area, redisplay that when
23635 we clear the cursor. */
23636 if (! NILP (hlinfo->mouse_face_window)
23637 && coords_in_mouse_face_p (w, hpos, vpos)
23638 /* Don't redraw the cursor's spot in mouse face if it is at the
23639 end of a line (on a newline). The cursor appears there, but
23640 mouse highlighting does not. */
23641 && cursor_row->used[TEXT_AREA] > hpos && hpos >= 0)
23642 mouse_face_here_p = 1;
23643
23644 /* Maybe clear the display under the cursor. */
23645 if (w->phys_cursor_type == HOLLOW_BOX_CURSOR)
23646 {
23647 int x, y, left_x;
23648 int header_line_height = WINDOW_HEADER_LINE_HEIGHT (w);
23649 int width;
23650
23651 cursor_glyph = get_phys_cursor_glyph (w);
23652 if (cursor_glyph == NULL)
23653 goto mark_cursor_off;
23654
23655 width = cursor_glyph->pixel_width;
23656 left_x = window_box_left_offset (w, TEXT_AREA);
23657 x = w->phys_cursor.x;
23658 if (x < left_x)
23659 width -= left_x - x;
23660 width = min (width, window_box_width (w, TEXT_AREA) - x);
23661 y = WINDOW_TO_FRAME_PIXEL_Y (w, max (header_line_height, cursor_row->y));
23662 x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, max (x, left_x));
23663
23664 if (width > 0)
23665 FRAME_RIF (f)->clear_frame_area (f, x, y, width, cursor_row->visible_height);
23666 }
23667
23668 /* Erase the cursor by redrawing the character underneath it. */
23669 if (mouse_face_here_p)
23670 hl = DRAW_MOUSE_FACE;
23671 else
23672 hl = DRAW_NORMAL_TEXT;
23673 draw_phys_cursor_glyph (w, cursor_row, hl);
23674
23675 mark_cursor_off:
23676 w->phys_cursor_on_p = 0;
23677 w->phys_cursor_type = NO_CURSOR;
23678 }
23679
23680
23681 /* EXPORT:
23682 Display or clear cursor of window W. If ON is zero, clear the
23683 cursor. If it is non-zero, display the cursor. If ON is nonzero,
23684 where to put the cursor is specified by HPOS, VPOS, X and Y. */
23685
23686 void
23687 display_and_set_cursor (struct window *w, int on,
23688 int hpos, int vpos, int x, int y)
23689 {
23690 struct frame *f = XFRAME (w->frame);
23691 int new_cursor_type;
23692 int new_cursor_width;
23693 int active_cursor;
23694 struct glyph_row *glyph_row;
23695 struct glyph *glyph;
23696
23697 /* This is pointless on invisible frames, and dangerous on garbaged
23698 windows and frames; in the latter case, the frame or window may
23699 be in the midst of changing its size, and x and y may be off the
23700 window. */
23701 if (! FRAME_VISIBLE_P (f)
23702 || FRAME_GARBAGED_P (f)
23703 || vpos >= w->current_matrix->nrows
23704 || hpos >= w->current_matrix->matrix_w)
23705 return;
23706
23707 /* If cursor is off and we want it off, return quickly. */
23708 if (!on && !w->phys_cursor_on_p)
23709 return;
23710
23711 glyph_row = MATRIX_ROW (w->current_matrix, vpos);
23712 /* If cursor row is not enabled, we don't really know where to
23713 display the cursor. */
23714 if (!glyph_row->enabled_p)
23715 {
23716 w->phys_cursor_on_p = 0;
23717 return;
23718 }
23719
23720 glyph = NULL;
23721 if (!glyph_row->exact_window_width_line_p
23722 || (0 <= hpos && hpos < glyph_row->used[TEXT_AREA]))
23723 glyph = glyph_row->glyphs[TEXT_AREA] + hpos;
23724
23725 xassert (interrupt_input_blocked);
23726
23727 /* Set new_cursor_type to the cursor we want to be displayed. */
23728 new_cursor_type = get_window_cursor_type (w, glyph,
23729 &new_cursor_width, &active_cursor);
23730
23731 /* If cursor is currently being shown and we don't want it to be or
23732 it is in the wrong place, or the cursor type is not what we want,
23733 erase it. */
23734 if (w->phys_cursor_on_p
23735 && (!on
23736 || w->phys_cursor.x != x
23737 || w->phys_cursor.y != y
23738 || new_cursor_type != w->phys_cursor_type
23739 || ((new_cursor_type == BAR_CURSOR || new_cursor_type == HBAR_CURSOR)
23740 && new_cursor_width != w->phys_cursor_width)))
23741 erase_phys_cursor (w);
23742
23743 /* Don't check phys_cursor_on_p here because that flag is only set
23744 to zero in some cases where we know that the cursor has been
23745 completely erased, to avoid the extra work of erasing the cursor
23746 twice. In other words, phys_cursor_on_p can be 1 and the cursor
23747 still not be visible, or it has only been partly erased. */
23748 if (on)
23749 {
23750 w->phys_cursor_ascent = glyph_row->ascent;
23751 w->phys_cursor_height = glyph_row->height;
23752
23753 /* Set phys_cursor_.* before x_draw_.* is called because some
23754 of them may need the information. */
23755 w->phys_cursor.x = x;
23756 w->phys_cursor.y = glyph_row->y;
23757 w->phys_cursor.hpos = hpos;
23758 w->phys_cursor.vpos = vpos;
23759 }
23760
23761 FRAME_RIF (f)->draw_window_cursor (w, glyph_row, x, y,
23762 new_cursor_type, new_cursor_width,
23763 on, active_cursor);
23764 }
23765
23766
23767 /* Switch the display of W's cursor on or off, according to the value
23768 of ON. */
23769
23770 static void
23771 update_window_cursor (struct window *w, int on)
23772 {
23773 /* Don't update cursor in windows whose frame is in the process
23774 of being deleted. */
23775 if (w->current_matrix)
23776 {
23777 BLOCK_INPUT;
23778 display_and_set_cursor (w, on, w->phys_cursor.hpos, w->phys_cursor.vpos,
23779 w->phys_cursor.x, w->phys_cursor.y);
23780 UNBLOCK_INPUT;
23781 }
23782 }
23783
23784
23785 /* Call update_window_cursor with parameter ON_P on all leaf windows
23786 in the window tree rooted at W. */
23787
23788 static void
23789 update_cursor_in_window_tree (struct window *w, int on_p)
23790 {
23791 while (w)
23792 {
23793 if (!NILP (w->hchild))
23794 update_cursor_in_window_tree (XWINDOW (w->hchild), on_p);
23795 else if (!NILP (w->vchild))
23796 update_cursor_in_window_tree (XWINDOW (w->vchild), on_p);
23797 else
23798 update_window_cursor (w, on_p);
23799
23800 w = NILP (w->next) ? 0 : XWINDOW (w->next);
23801 }
23802 }
23803
23804
23805 /* EXPORT:
23806 Display the cursor on window W, or clear it, according to ON_P.
23807 Don't change the cursor's position. */
23808
23809 void
23810 x_update_cursor (struct frame *f, int on_p)
23811 {
23812 update_cursor_in_window_tree (XWINDOW (f->root_window), on_p);
23813 }
23814
23815
23816 /* EXPORT:
23817 Clear the cursor of window W to background color, and mark the
23818 cursor as not shown. This is used when the text where the cursor
23819 is about to be rewritten. */
23820
23821 void
23822 x_clear_cursor (struct window *w)
23823 {
23824 if (FRAME_VISIBLE_P (XFRAME (w->frame)) && w->phys_cursor_on_p)
23825 update_window_cursor (w, 0);
23826 }
23827
23828 #endif /* HAVE_WINDOW_SYSTEM */
23829
23830 /* Implementation of draw_row_with_mouse_face for GUI sessions, GPM,
23831 and MSDOS. */
23832 void
23833 draw_row_with_mouse_face (struct window *w, int start_x, struct glyph_row *row,
23834 int start_hpos, int end_hpos,
23835 enum draw_glyphs_face draw)
23836 {
23837 #ifdef HAVE_WINDOW_SYSTEM
23838 if (FRAME_WINDOW_P (XFRAME (w->frame)))
23839 {
23840 draw_glyphs (w, start_x, row, TEXT_AREA, start_hpos, end_hpos, draw, 0);
23841 return;
23842 }
23843 #endif
23844 #if defined (HAVE_GPM) || defined (MSDOS)
23845 tty_draw_row_with_mouse_face (w, row, start_hpos, end_hpos, draw);
23846 #endif
23847 }
23848
23849 /* EXPORT:
23850 Display the active region described by mouse_face_* according to DRAW. */
23851
23852 void
23853 show_mouse_face (Mouse_HLInfo *hlinfo, enum draw_glyphs_face draw)
23854 {
23855 struct window *w = XWINDOW (hlinfo->mouse_face_window);
23856 struct frame *f = XFRAME (WINDOW_FRAME (w));
23857
23858 if (/* If window is in the process of being destroyed, don't bother
23859 to do anything. */
23860 w->current_matrix != NULL
23861 /* Don't update mouse highlight if hidden */
23862 && (draw != DRAW_MOUSE_FACE || !hlinfo->mouse_face_hidden)
23863 /* Recognize when we are called to operate on rows that don't exist
23864 anymore. This can happen when a window is split. */
23865 && hlinfo->mouse_face_end_row < w->current_matrix->nrows)
23866 {
23867 int phys_cursor_on_p = w->phys_cursor_on_p;
23868 struct glyph_row *row, *first, *last;
23869
23870 first = MATRIX_ROW (w->current_matrix, hlinfo->mouse_face_beg_row);
23871 last = MATRIX_ROW (w->current_matrix, hlinfo->mouse_face_end_row);
23872
23873 for (row = first; row <= last && row->enabled_p; ++row)
23874 {
23875 int start_hpos, end_hpos, start_x;
23876
23877 /* For all but the first row, the highlight starts at column 0. */
23878 if (row == first)
23879 {
23880 /* R2L rows have BEG and END in reversed order, but the
23881 screen drawing geometry is always left to right. So
23882 we need to mirror the beginning and end of the
23883 highlighted area in R2L rows. */
23884 if (!row->reversed_p)
23885 {
23886 start_hpos = hlinfo->mouse_face_beg_col;
23887 start_x = hlinfo->mouse_face_beg_x;
23888 }
23889 else if (row == last)
23890 {
23891 start_hpos = hlinfo->mouse_face_end_col;
23892 start_x = hlinfo->mouse_face_end_x;
23893 }
23894 else
23895 {
23896 start_hpos = 0;
23897 start_x = 0;
23898 }
23899 }
23900 else if (row->reversed_p && row == last)
23901 {
23902 start_hpos = hlinfo->mouse_face_end_col;
23903 start_x = hlinfo->mouse_face_end_x;
23904 }
23905 else
23906 {
23907 start_hpos = 0;
23908 start_x = 0;
23909 }
23910
23911 if (row == last)
23912 {
23913 if (!row->reversed_p)
23914 end_hpos = hlinfo->mouse_face_end_col;
23915 else if (row == first)
23916 end_hpos = hlinfo->mouse_face_beg_col;
23917 else
23918 {
23919 end_hpos = row->used[TEXT_AREA];
23920 if (draw == DRAW_NORMAL_TEXT)
23921 row->fill_line_p = 1; /* Clear to end of line */
23922 }
23923 }
23924 else if (row->reversed_p && row == first)
23925 end_hpos = hlinfo->mouse_face_beg_col;
23926 else
23927 {
23928 end_hpos = row->used[TEXT_AREA];
23929 if (draw == DRAW_NORMAL_TEXT)
23930 row->fill_line_p = 1; /* Clear to end of line */
23931 }
23932
23933 if (end_hpos > start_hpos)
23934 {
23935 draw_row_with_mouse_face (w, start_x, row,
23936 start_hpos, end_hpos, draw);
23937
23938 row->mouse_face_p
23939 = draw == DRAW_MOUSE_FACE || draw == DRAW_IMAGE_RAISED;
23940 }
23941 }
23942
23943 #ifdef HAVE_WINDOW_SYSTEM
23944 /* When we've written over the cursor, arrange for it to
23945 be displayed again. */
23946 if (FRAME_WINDOW_P (f)
23947 && phys_cursor_on_p && !w->phys_cursor_on_p)
23948 {
23949 BLOCK_INPUT;
23950 display_and_set_cursor (w, 1,
23951 w->phys_cursor.hpos, w->phys_cursor.vpos,
23952 w->phys_cursor.x, w->phys_cursor.y);
23953 UNBLOCK_INPUT;
23954 }
23955 #endif /* HAVE_WINDOW_SYSTEM */
23956 }
23957
23958 #ifdef HAVE_WINDOW_SYSTEM
23959 /* Change the mouse cursor. */
23960 if (FRAME_WINDOW_P (f))
23961 {
23962 if (draw == DRAW_NORMAL_TEXT
23963 && !EQ (hlinfo->mouse_face_window, f->tool_bar_window))
23964 FRAME_RIF (f)->define_frame_cursor (f, FRAME_X_OUTPUT (f)->text_cursor);
23965 else if (draw == DRAW_MOUSE_FACE)
23966 FRAME_RIF (f)->define_frame_cursor (f, FRAME_X_OUTPUT (f)->hand_cursor);
23967 else
23968 FRAME_RIF (f)->define_frame_cursor (f, FRAME_X_OUTPUT (f)->nontext_cursor);
23969 }
23970 #endif /* HAVE_WINDOW_SYSTEM */
23971 }
23972
23973 /* EXPORT:
23974 Clear out the mouse-highlighted active region.
23975 Redraw it un-highlighted first. Value is non-zero if mouse
23976 face was actually drawn unhighlighted. */
23977
23978 int
23979 clear_mouse_face (Mouse_HLInfo *hlinfo)
23980 {
23981 int cleared = 0;
23982
23983 if (!hlinfo->mouse_face_hidden && !NILP (hlinfo->mouse_face_window))
23984 {
23985 show_mouse_face (hlinfo, DRAW_NORMAL_TEXT);
23986 cleared = 1;
23987 }
23988
23989 hlinfo->mouse_face_beg_row = hlinfo->mouse_face_beg_col = -1;
23990 hlinfo->mouse_face_end_row = hlinfo->mouse_face_end_col = -1;
23991 hlinfo->mouse_face_window = Qnil;
23992 hlinfo->mouse_face_overlay = Qnil;
23993 return cleared;
23994 }
23995
23996 /* Return non-zero if the coordinates HPOS and VPOS on windows W are
23997 within the mouse face on that window. */
23998 static int
23999 coords_in_mouse_face_p (struct window *w, int hpos, int vpos)
24000 {
24001 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (XFRAME (w->frame));
24002
24003 /* Quickly resolve the easy cases. */
24004 if (!(WINDOWP (hlinfo->mouse_face_window)
24005 && XWINDOW (hlinfo->mouse_face_window) == w))
24006 return 0;
24007 if (vpos < hlinfo->mouse_face_beg_row
24008 || vpos > hlinfo->mouse_face_end_row)
24009 return 0;
24010 if (vpos > hlinfo->mouse_face_beg_row
24011 && vpos < hlinfo->mouse_face_end_row)
24012 return 1;
24013
24014 if (!MATRIX_ROW (w->current_matrix, vpos)->reversed_p)
24015 {
24016 if (hlinfo->mouse_face_beg_row == hlinfo->mouse_face_end_row)
24017 {
24018 if (hlinfo->mouse_face_beg_col <= hpos && hpos < hlinfo->mouse_face_end_col)
24019 return 1;
24020 }
24021 else if ((vpos == hlinfo->mouse_face_beg_row
24022 && hpos >= hlinfo->mouse_face_beg_col)
24023 || (vpos == hlinfo->mouse_face_end_row
24024 && hpos < hlinfo->mouse_face_end_col))
24025 return 1;
24026 }
24027 else
24028 {
24029 if (hlinfo->mouse_face_beg_row == hlinfo->mouse_face_end_row)
24030 {
24031 if (hlinfo->mouse_face_end_col < hpos && hpos <= hlinfo->mouse_face_beg_col)
24032 return 1;
24033 }
24034 else if ((vpos == hlinfo->mouse_face_beg_row
24035 && hpos <= hlinfo->mouse_face_beg_col)
24036 || (vpos == hlinfo->mouse_face_end_row
24037 && hpos > hlinfo->mouse_face_end_col))
24038 return 1;
24039 }
24040 return 0;
24041 }
24042
24043
24044 /* EXPORT:
24045 Non-zero if physical cursor of window W is within mouse face. */
24046
24047 int
24048 cursor_in_mouse_face_p (struct window *w)
24049 {
24050 return coords_in_mouse_face_p (w, w->phys_cursor.hpos, w->phys_cursor.vpos);
24051 }
24052
24053
24054 \f
24055 /* Find the glyph rows START_ROW and END_ROW of window W that display
24056 characters between buffer positions START_CHARPOS and END_CHARPOS
24057 (excluding END_CHARPOS). This is similar to row_containing_pos,
24058 but is more accurate when bidi reordering makes buffer positions
24059 change non-linearly with glyph rows. */
24060 static void
24061 rows_from_pos_range (struct window *w,
24062 EMACS_INT start_charpos, EMACS_INT end_charpos,
24063 struct glyph_row **start, struct glyph_row **end)
24064 {
24065 struct glyph_row *first = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
24066 int last_y = window_text_bottom_y (w);
24067 struct glyph_row *row;
24068
24069 *start = NULL;
24070 *end = NULL;
24071
24072 while (!first->enabled_p
24073 && first < MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w))
24074 first++;
24075
24076 /* Find the START row. */
24077 for (row = first;
24078 row->enabled_p && MATRIX_ROW_BOTTOM_Y (row) <= last_y;
24079 row++)
24080 {
24081 /* A row can potentially be the START row if the range of the
24082 characters it displays intersects the range
24083 [START_CHARPOS..END_CHARPOS). */
24084 if (! ((start_charpos < MATRIX_ROW_START_CHARPOS (row)
24085 && end_charpos < MATRIX_ROW_START_CHARPOS (row))
24086 /* See the commentary in row_containing_pos, for the
24087 explanation of the complicated way to check whether
24088 some position is beyond the end of the characters
24089 displayed by a row. */
24090 || ((start_charpos > MATRIX_ROW_END_CHARPOS (row)
24091 || (start_charpos == MATRIX_ROW_END_CHARPOS (row)
24092 && !row->ends_at_zv_p
24093 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)))
24094 && (end_charpos > MATRIX_ROW_END_CHARPOS (row)
24095 || (end_charpos == MATRIX_ROW_END_CHARPOS (row)
24096 && !row->ends_at_zv_p
24097 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row))))))
24098 {
24099 /* Found a candidate row. Now make sure at least one of the
24100 glyphs it displays has a charpos from the range
24101 [START_CHARPOS..END_CHARPOS).
24102
24103 This is not obvious because bidi reordering could make
24104 buffer positions of a row be 1,2,3,102,101,100, and if we
24105 want to highlight characters in [50..60), we don't want
24106 this row, even though [50..60) does intersect [1..103),
24107 the range of character positions given by the row's start
24108 and end positions. */
24109 struct glyph *g = row->glyphs[TEXT_AREA];
24110 struct glyph *e = g + row->used[TEXT_AREA];
24111
24112 while (g < e)
24113 {
24114 if (BUFFERP (g->object)
24115 && start_charpos <= g->charpos && g->charpos < end_charpos)
24116 *start = row;
24117 g++;
24118 }
24119 if (*start)
24120 break;
24121 }
24122 }
24123
24124 /* Find the END row. */
24125 if (!*start
24126 /* If the last row is partially visible, start looking for END
24127 from that row, instead of starting from FIRST. */
24128 && !(row->enabled_p
24129 && row->y < last_y && MATRIX_ROW_BOTTOM_Y (row) > last_y))
24130 row = first;
24131 for ( ; row->enabled_p && MATRIX_ROW_BOTTOM_Y (row) <= last_y; row++)
24132 {
24133 struct glyph_row *next = row + 1;
24134
24135 if (!next->enabled_p
24136 || next >= MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w)
24137 /* The first row >= START whose range of displayed characters
24138 does NOT intersect the range [START_CHARPOS..END_CHARPOS]
24139 is the row END + 1. */
24140 || (start_charpos < MATRIX_ROW_START_CHARPOS (next)
24141 && end_charpos < MATRIX_ROW_START_CHARPOS (next))
24142 || ((start_charpos > MATRIX_ROW_END_CHARPOS (next)
24143 || (start_charpos == MATRIX_ROW_END_CHARPOS (next)
24144 && !next->ends_at_zv_p
24145 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (next)))
24146 && (end_charpos > MATRIX_ROW_END_CHARPOS (next)
24147 || (end_charpos == MATRIX_ROW_END_CHARPOS (next)
24148 && !next->ends_at_zv_p
24149 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (next)))))
24150 {
24151 *end = row;
24152 break;
24153 }
24154 else
24155 {
24156 /* If the next row's edges intersect [START_CHARPOS..END_CHARPOS],
24157 but none of the characters it displays are in the range, it is
24158 also END + 1. */
24159 struct glyph *g = next->glyphs[TEXT_AREA];
24160 struct glyph *e = g + next->used[TEXT_AREA];
24161
24162 while (g < e)
24163 {
24164 if (BUFFERP (g->object)
24165 && start_charpos <= g->charpos && g->charpos < end_charpos)
24166 break;
24167 g++;
24168 }
24169 if (g == e)
24170 {
24171 *end = row;
24172 break;
24173 }
24174 }
24175 }
24176 }
24177
24178 /* This function sets the mouse_face_* elements of HLINFO, assuming
24179 the mouse cursor is on a glyph with buffer charpos MOUSE_CHARPOS in
24180 window WINDOW. START_CHARPOS and END_CHARPOS are buffer positions
24181 for the overlay or run of text properties specifying the mouse
24182 face. BEFORE_STRING and AFTER_STRING, if non-nil, are a
24183 before-string and after-string that must also be highlighted.
24184 COVER_STRING, if non-nil, is a display string that may cover some
24185 or all of the highlighted text. */
24186
24187 static void
24188 mouse_face_from_buffer_pos (Lisp_Object window,
24189 Mouse_HLInfo *hlinfo,
24190 EMACS_INT mouse_charpos,
24191 EMACS_INT start_charpos,
24192 EMACS_INT end_charpos,
24193 Lisp_Object before_string,
24194 Lisp_Object after_string,
24195 Lisp_Object cover_string)
24196 {
24197 struct window *w = XWINDOW (window);
24198 struct glyph_row *first = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
24199 struct glyph_row *r1, *r2;
24200 struct glyph *glyph, *end;
24201 EMACS_INT ignore, pos;
24202 int x;
24203
24204 xassert (NILP (cover_string) || STRINGP (cover_string));
24205 xassert (NILP (before_string) || STRINGP (before_string));
24206 xassert (NILP (after_string) || STRINGP (after_string));
24207
24208 /* Find the rows corresponding to START_CHARPOS and END_CHARPOS. */
24209 rows_from_pos_range (w, start_charpos, end_charpos, &r1, &r2);
24210 if (r1 == NULL)
24211 r1 = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos));
24212 /* If the before-string or display-string contains newlines,
24213 rows_from_pos_range skips to its last row. Move back. */
24214 if (!NILP (before_string) || !NILP (cover_string))
24215 {
24216 struct glyph_row *prev;
24217 while ((prev = r1 - 1, prev >= first)
24218 && MATRIX_ROW_END_CHARPOS (prev) == start_charpos
24219 && prev->used[TEXT_AREA] > 0)
24220 {
24221 struct glyph *beg = prev->glyphs[TEXT_AREA];
24222 glyph = beg + prev->used[TEXT_AREA];
24223 while (--glyph >= beg && INTEGERP (glyph->object));
24224 if (glyph < beg
24225 || !(EQ (glyph->object, before_string)
24226 || EQ (glyph->object, cover_string)))
24227 break;
24228 r1 = prev;
24229 }
24230 }
24231 if (r2 == NULL)
24232 {
24233 r2 = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos));
24234 hlinfo->mouse_face_past_end = 1;
24235 }
24236 else if (!NILP (after_string))
24237 {
24238 /* If the after-string has newlines, advance to its last row. */
24239 struct glyph_row *next;
24240 struct glyph_row *last
24241 = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos));
24242
24243 for (next = r2 + 1;
24244 next <= last
24245 && next->used[TEXT_AREA] > 0
24246 && EQ (next->glyphs[TEXT_AREA]->object, after_string);
24247 ++next)
24248 r2 = next;
24249 }
24250 /* The rest of the display engine assumes that mouse_face_beg_row is
24251 either above below mouse_face_end_row or identical to it. But
24252 with bidi-reordered continued lines, the row for START_CHARPOS
24253 could be below the row for END_CHARPOS. If so, swap the rows and
24254 store them in correct order. */
24255 if (r1->y > r2->y)
24256 {
24257 struct glyph_row *tem = r2;
24258
24259 r2 = r1;
24260 r1 = tem;
24261 }
24262
24263 hlinfo->mouse_face_beg_y = r1->y;
24264 hlinfo->mouse_face_beg_row = MATRIX_ROW_VPOS (r1, w->current_matrix);
24265 hlinfo->mouse_face_end_y = r2->y;
24266 hlinfo->mouse_face_end_row = MATRIX_ROW_VPOS (r2, w->current_matrix);
24267
24268 /* For a bidi-reordered row, the positions of BEFORE_STRING,
24269 AFTER_STRING, COVER_STRING, START_CHARPOS, and END_CHARPOS
24270 could be anywhere in the row and in any order. The strategy
24271 below is to find the leftmost and the rightmost glyph that
24272 belongs to either of these 3 strings, or whose position is
24273 between START_CHARPOS and END_CHARPOS, and highlight all the
24274 glyphs between those two. This may cover more than just the text
24275 between START_CHARPOS and END_CHARPOS if the range of characters
24276 strides the bidi level boundary, e.g. if the beginning is in R2L
24277 text while the end is in L2R text or vice versa. */
24278 if (!r1->reversed_p)
24279 {
24280 /* This row is in a left to right paragraph. Scan it left to
24281 right. */
24282 glyph = r1->glyphs[TEXT_AREA];
24283 end = glyph + r1->used[TEXT_AREA];
24284 x = r1->x;
24285
24286 /* Skip truncation glyphs at the start of the glyph row. */
24287 if (r1->displays_text_p)
24288 for (; glyph < end
24289 && INTEGERP (glyph->object)
24290 && glyph->charpos < 0;
24291 ++glyph)
24292 x += glyph->pixel_width;
24293
24294 /* Scan the glyph row, looking for BEFORE_STRING, AFTER_STRING,
24295 or COVER_STRING, and the first glyph from buffer whose
24296 position is between START_CHARPOS and END_CHARPOS. */
24297 for (; glyph < end
24298 && !INTEGERP (glyph->object)
24299 && !EQ (glyph->object, cover_string)
24300 && !(BUFFERP (glyph->object)
24301 && (glyph->charpos >= start_charpos
24302 && glyph->charpos < end_charpos));
24303 ++glyph)
24304 {
24305 /* BEFORE_STRING or AFTER_STRING are only relevant if they
24306 are present at buffer positions between START_CHARPOS and
24307 END_CHARPOS, or if they come from an overlay. */
24308 if (EQ (glyph->object, before_string))
24309 {
24310 pos = string_buffer_position (w, before_string,
24311 start_charpos);
24312 /* If pos == 0, it means before_string came from an
24313 overlay, not from a buffer position. */
24314 if (!pos || (pos >= start_charpos && pos < end_charpos))
24315 break;
24316 }
24317 else if (EQ (glyph->object, after_string))
24318 {
24319 pos = string_buffer_position (w, after_string, end_charpos);
24320 if (!pos || (pos >= start_charpos && pos < end_charpos))
24321 break;
24322 }
24323 x += glyph->pixel_width;
24324 }
24325 hlinfo->mouse_face_beg_x = x;
24326 hlinfo->mouse_face_beg_col = glyph - r1->glyphs[TEXT_AREA];
24327 }
24328 else
24329 {
24330 /* This row is in a right to left paragraph. Scan it right to
24331 left. */
24332 struct glyph *g;
24333
24334 end = r1->glyphs[TEXT_AREA] - 1;
24335 glyph = end + r1->used[TEXT_AREA];
24336
24337 /* Skip truncation glyphs at the start of the glyph row. */
24338 if (r1->displays_text_p)
24339 for (; glyph > end
24340 && INTEGERP (glyph->object)
24341 && glyph->charpos < 0;
24342 --glyph)
24343 ;
24344
24345 /* Scan the glyph row, looking for BEFORE_STRING, AFTER_STRING,
24346 or COVER_STRING, and the first glyph from buffer whose
24347 position is between START_CHARPOS and END_CHARPOS. */
24348 for (; glyph > end
24349 && !INTEGERP (glyph->object)
24350 && !EQ (glyph->object, cover_string)
24351 && !(BUFFERP (glyph->object)
24352 && (glyph->charpos >= start_charpos
24353 && glyph->charpos < end_charpos));
24354 --glyph)
24355 {
24356 /* BEFORE_STRING or AFTER_STRING are only relevant if they
24357 are present at buffer positions between START_CHARPOS and
24358 END_CHARPOS, or if they come from an overlay. */
24359 if (EQ (glyph->object, before_string))
24360 {
24361 pos = string_buffer_position (w, before_string, start_charpos);
24362 /* If pos == 0, it means before_string came from an
24363 overlay, not from a buffer position. */
24364 if (!pos || (pos >= start_charpos && pos < end_charpos))
24365 break;
24366 }
24367 else if (EQ (glyph->object, after_string))
24368 {
24369 pos = string_buffer_position (w, after_string, end_charpos);
24370 if (!pos || (pos >= start_charpos && pos < end_charpos))
24371 break;
24372 }
24373 }
24374
24375 glyph++; /* first glyph to the right of the highlighted area */
24376 for (g = r1->glyphs[TEXT_AREA], x = r1->x; g < glyph; g++)
24377 x += g->pixel_width;
24378 hlinfo->mouse_face_beg_x = x;
24379 hlinfo->mouse_face_beg_col = glyph - r1->glyphs[TEXT_AREA];
24380 }
24381
24382 /* If the highlight ends in a different row, compute GLYPH and END
24383 for the end row. Otherwise, reuse the values computed above for
24384 the row where the highlight begins. */
24385 if (r2 != r1)
24386 {
24387 if (!r2->reversed_p)
24388 {
24389 glyph = r2->glyphs[TEXT_AREA];
24390 end = glyph + r2->used[TEXT_AREA];
24391 x = r2->x;
24392 }
24393 else
24394 {
24395 end = r2->glyphs[TEXT_AREA] - 1;
24396 glyph = end + r2->used[TEXT_AREA];
24397 }
24398 }
24399
24400 if (!r2->reversed_p)
24401 {
24402 /* Skip truncation and continuation glyphs near the end of the
24403 row, and also blanks and stretch glyphs inserted by
24404 extend_face_to_end_of_line. */
24405 while (end > glyph
24406 && INTEGERP ((end - 1)->object)
24407 && (end - 1)->charpos <= 0)
24408 --end;
24409 /* Scan the rest of the glyph row from the end, looking for the
24410 first glyph that comes from BEFORE_STRING, AFTER_STRING, or
24411 COVER_STRING, or whose position is between START_CHARPOS
24412 and END_CHARPOS */
24413 for (--end;
24414 end > glyph
24415 && !INTEGERP (end->object)
24416 && !EQ (end->object, cover_string)
24417 && !(BUFFERP (end->object)
24418 && (end->charpos >= start_charpos
24419 && end->charpos < end_charpos));
24420 --end)
24421 {
24422 /* BEFORE_STRING or AFTER_STRING are only relevant if they
24423 are present at buffer positions between START_CHARPOS and
24424 END_CHARPOS, or if they come from an overlay. */
24425 if (EQ (end->object, before_string))
24426 {
24427 pos = string_buffer_position (w, before_string, start_charpos);
24428 if (!pos || (pos >= start_charpos && pos < end_charpos))
24429 break;
24430 }
24431 else if (EQ (end->object, after_string))
24432 {
24433 pos = string_buffer_position (w, after_string, end_charpos);
24434 if (!pos || (pos >= start_charpos && pos < end_charpos))
24435 break;
24436 }
24437 }
24438 /* Find the X coordinate of the last glyph to be highlighted. */
24439 for (; glyph <= end; ++glyph)
24440 x += glyph->pixel_width;
24441
24442 hlinfo->mouse_face_end_x = x;
24443 hlinfo->mouse_face_end_col = glyph - r2->glyphs[TEXT_AREA];
24444 }
24445 else
24446 {
24447 /* Skip truncation and continuation glyphs near the end of the
24448 row, and also blanks and stretch glyphs inserted by
24449 extend_face_to_end_of_line. */
24450 x = r2->x;
24451 end++;
24452 while (end < glyph
24453 && INTEGERP (end->object)
24454 && end->charpos <= 0)
24455 {
24456 x += end->pixel_width;
24457 ++end;
24458 }
24459 /* Scan the rest of the glyph row from the end, looking for the
24460 first glyph that comes from BEFORE_STRING, AFTER_STRING, or
24461 COVER_STRING, or whose position is between START_CHARPOS
24462 and END_CHARPOS */
24463 for ( ;
24464 end < glyph
24465 && !INTEGERP (end->object)
24466 && !EQ (end->object, cover_string)
24467 && !(BUFFERP (end->object)
24468 && (end->charpos >= start_charpos
24469 && end->charpos < end_charpos));
24470 ++end)
24471 {
24472 /* BEFORE_STRING or AFTER_STRING are only relevant if they
24473 are present at buffer positions between START_CHARPOS and
24474 END_CHARPOS, or if they come from an overlay. */
24475 if (EQ (end->object, before_string))
24476 {
24477 pos = string_buffer_position (w, before_string, start_charpos);
24478 if (!pos || (pos >= start_charpos && pos < end_charpos))
24479 break;
24480 }
24481 else if (EQ (end->object, after_string))
24482 {
24483 pos = string_buffer_position (w, after_string, end_charpos);
24484 if (!pos || (pos >= start_charpos && pos < end_charpos))
24485 break;
24486 }
24487 x += end->pixel_width;
24488 }
24489 hlinfo->mouse_face_end_x = x;
24490 hlinfo->mouse_face_end_col = end - r2->glyphs[TEXT_AREA];
24491 }
24492
24493 hlinfo->mouse_face_window = window;
24494 hlinfo->mouse_face_face_id
24495 = face_at_buffer_position (w, mouse_charpos, 0, 0, &ignore,
24496 mouse_charpos + 1,
24497 !hlinfo->mouse_face_hidden, -1);
24498 show_mouse_face (hlinfo, DRAW_MOUSE_FACE);
24499 }
24500
24501 /* The following function is not used anymore (replaced with
24502 mouse_face_from_string_pos), but I leave it here for the time
24503 being, in case someone would. */
24504
24505 #if 0 /* not used */
24506
24507 /* Find the position of the glyph for position POS in OBJECT in
24508 window W's current matrix, and return in *X, *Y the pixel
24509 coordinates, and return in *HPOS, *VPOS the column/row of the glyph.
24510
24511 RIGHT_P non-zero means return the position of the right edge of the
24512 glyph, RIGHT_P zero means return the left edge position.
24513
24514 If no glyph for POS exists in the matrix, return the position of
24515 the glyph with the next smaller position that is in the matrix, if
24516 RIGHT_P is zero. If RIGHT_P is non-zero, and no glyph for POS
24517 exists in the matrix, return the position of the glyph with the
24518 next larger position in OBJECT.
24519
24520 Value is non-zero if a glyph was found. */
24521
24522 static int
24523 fast_find_string_pos (struct window *w, EMACS_INT pos, Lisp_Object object,
24524 int *hpos, int *vpos, int *x, int *y, int right_p)
24525 {
24526 int yb = window_text_bottom_y (w);
24527 struct glyph_row *r;
24528 struct glyph *best_glyph = NULL;
24529 struct glyph_row *best_row = NULL;
24530 int best_x = 0;
24531
24532 for (r = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
24533 r->enabled_p && r->y < yb;
24534 ++r)
24535 {
24536 struct glyph *g = r->glyphs[TEXT_AREA];
24537 struct glyph *e = g + r->used[TEXT_AREA];
24538 int gx;
24539
24540 for (gx = r->x; g < e; gx += g->pixel_width, ++g)
24541 if (EQ (g->object, object))
24542 {
24543 if (g->charpos == pos)
24544 {
24545 best_glyph = g;
24546 best_x = gx;
24547 best_row = r;
24548 goto found;
24549 }
24550 else if (best_glyph == NULL
24551 || ((eabs (g->charpos - pos)
24552 < eabs (best_glyph->charpos - pos))
24553 && (right_p
24554 ? g->charpos < pos
24555 : g->charpos > pos)))
24556 {
24557 best_glyph = g;
24558 best_x = gx;
24559 best_row = r;
24560 }
24561 }
24562 }
24563
24564 found:
24565
24566 if (best_glyph)
24567 {
24568 *x = best_x;
24569 *hpos = best_glyph - best_row->glyphs[TEXT_AREA];
24570
24571 if (right_p)
24572 {
24573 *x += best_glyph->pixel_width;
24574 ++*hpos;
24575 }
24576
24577 *y = best_row->y;
24578 *vpos = best_row - w->current_matrix->rows;
24579 }
24580
24581 return best_glyph != NULL;
24582 }
24583 #endif /* not used */
24584
24585 /* Find the positions of the first and the last glyphs in window W's
24586 current matrix that occlude positions [STARTPOS..ENDPOS] in OBJECT
24587 (assumed to be a string), and return in HLINFO's mouse_face_*
24588 members the pixel and column/row coordinates of those glyphs. */
24589
24590 static void
24591 mouse_face_from_string_pos (struct window *w, Mouse_HLInfo *hlinfo,
24592 Lisp_Object object,
24593 EMACS_INT startpos, EMACS_INT endpos)
24594 {
24595 int yb = window_text_bottom_y (w);
24596 struct glyph_row *r;
24597 struct glyph *g, *e;
24598 int gx;
24599 int found = 0;
24600
24601 /* Find the glyph row with at least one position in the range
24602 [STARTPOS..ENDPOS], and the first glyph in that row whose
24603 position belongs to that range. */
24604 for (r = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
24605 r->enabled_p && r->y < yb;
24606 ++r)
24607 {
24608 if (!r->reversed_p)
24609 {
24610 g = r->glyphs[TEXT_AREA];
24611 e = g + r->used[TEXT_AREA];
24612 for (gx = r->x; g < e; gx += g->pixel_width, ++g)
24613 if (EQ (g->object, object)
24614 && startpos <= g->charpos && g->charpos <= endpos)
24615 {
24616 hlinfo->mouse_face_beg_row = r - w->current_matrix->rows;
24617 hlinfo->mouse_face_beg_y = r->y;
24618 hlinfo->mouse_face_beg_col = g - r->glyphs[TEXT_AREA];
24619 hlinfo->mouse_face_beg_x = gx;
24620 found = 1;
24621 break;
24622 }
24623 }
24624 else
24625 {
24626 struct glyph *g1;
24627
24628 e = r->glyphs[TEXT_AREA];
24629 g = e + r->used[TEXT_AREA];
24630 for ( ; g > e; --g)
24631 if (EQ ((g-1)->object, object)
24632 && startpos <= (g-1)->charpos && (g-1)->charpos <= endpos)
24633 {
24634 hlinfo->mouse_face_beg_row = r - w->current_matrix->rows;
24635 hlinfo->mouse_face_beg_y = r->y;
24636 hlinfo->mouse_face_beg_col = g - r->glyphs[TEXT_AREA];
24637 for (gx = r->x, g1 = r->glyphs[TEXT_AREA]; g1 < g; ++g1)
24638 gx += g1->pixel_width;
24639 hlinfo->mouse_face_beg_x = gx;
24640 found = 1;
24641 break;
24642 }
24643 }
24644 if (found)
24645 break;
24646 }
24647
24648 if (!found)
24649 return;
24650
24651 /* Starting with the next row, look for the first row which does NOT
24652 include any glyphs whose positions are in the range. */
24653 for (++r; r->enabled_p && r->y < yb; ++r)
24654 {
24655 g = r->glyphs[TEXT_AREA];
24656 e = g + r->used[TEXT_AREA];
24657 found = 0;
24658 for ( ; g < e; ++g)
24659 if (EQ (g->object, object)
24660 && startpos <= g->charpos && g->charpos <= endpos)
24661 {
24662 found = 1;
24663 break;
24664 }
24665 if (!found)
24666 break;
24667 }
24668
24669 /* The highlighted region ends on the previous row. */
24670 r--;
24671
24672 /* Set the end row and its vertical pixel coordinate. */
24673 hlinfo->mouse_face_end_row = r - w->current_matrix->rows;
24674 hlinfo->mouse_face_end_y = r->y;
24675
24676 /* Compute and set the end column and the end column's horizontal
24677 pixel coordinate. */
24678 if (!r->reversed_p)
24679 {
24680 g = r->glyphs[TEXT_AREA];
24681 e = g + r->used[TEXT_AREA];
24682 for ( ; e > g; --e)
24683 if (EQ ((e-1)->object, object)
24684 && startpos <= (e-1)->charpos && (e-1)->charpos <= endpos)
24685 break;
24686 hlinfo->mouse_face_end_col = e - g;
24687
24688 for (gx = r->x; g < e; ++g)
24689 gx += g->pixel_width;
24690 hlinfo->mouse_face_end_x = gx;
24691 }
24692 else
24693 {
24694 e = r->glyphs[TEXT_AREA];
24695 g = e + r->used[TEXT_AREA];
24696 for (gx = r->x ; e < g; ++e)
24697 {
24698 if (EQ (e->object, object)
24699 && startpos <= e->charpos && e->charpos <= endpos)
24700 break;
24701 gx += e->pixel_width;
24702 }
24703 hlinfo->mouse_face_end_col = e - r->glyphs[TEXT_AREA];
24704 hlinfo->mouse_face_end_x = gx;
24705 }
24706 }
24707
24708 #ifdef HAVE_WINDOW_SYSTEM
24709
24710 /* See if position X, Y is within a hot-spot of an image. */
24711
24712 static int
24713 on_hot_spot_p (Lisp_Object hot_spot, int x, int y)
24714 {
24715 if (!CONSP (hot_spot))
24716 return 0;
24717
24718 if (EQ (XCAR (hot_spot), Qrect))
24719 {
24720 /* CDR is (Top-Left . Bottom-Right) = ((x0 . y0) . (x1 . y1)) */
24721 Lisp_Object rect = XCDR (hot_spot);
24722 Lisp_Object tem;
24723 if (!CONSP (rect))
24724 return 0;
24725 if (!CONSP (XCAR (rect)))
24726 return 0;
24727 if (!CONSP (XCDR (rect)))
24728 return 0;
24729 if (!(tem = XCAR (XCAR (rect)), INTEGERP (tem) && x >= XINT (tem)))
24730 return 0;
24731 if (!(tem = XCDR (XCAR (rect)), INTEGERP (tem) && y >= XINT (tem)))
24732 return 0;
24733 if (!(tem = XCAR (XCDR (rect)), INTEGERP (tem) && x <= XINT (tem)))
24734 return 0;
24735 if (!(tem = XCDR (XCDR (rect)), INTEGERP (tem) && y <= XINT (tem)))
24736 return 0;
24737 return 1;
24738 }
24739 else if (EQ (XCAR (hot_spot), Qcircle))
24740 {
24741 /* CDR is (Center . Radius) = ((x0 . y0) . r) */
24742 Lisp_Object circ = XCDR (hot_spot);
24743 Lisp_Object lr, lx0, ly0;
24744 if (CONSP (circ)
24745 && CONSP (XCAR (circ))
24746 && (lr = XCDR (circ), INTEGERP (lr) || FLOATP (lr))
24747 && (lx0 = XCAR (XCAR (circ)), INTEGERP (lx0))
24748 && (ly0 = XCDR (XCAR (circ)), INTEGERP (ly0)))
24749 {
24750 double r = XFLOATINT (lr);
24751 double dx = XINT (lx0) - x;
24752 double dy = XINT (ly0) - y;
24753 return (dx * dx + dy * dy <= r * r);
24754 }
24755 }
24756 else if (EQ (XCAR (hot_spot), Qpoly))
24757 {
24758 /* CDR is [x0 y0 x1 y1 x2 y2 ...x(n-1) y(n-1)] */
24759 if (VECTORP (XCDR (hot_spot)))
24760 {
24761 struct Lisp_Vector *v = XVECTOR (XCDR (hot_spot));
24762 Lisp_Object *poly = v->contents;
24763 int n = v->size;
24764 int i;
24765 int inside = 0;
24766 Lisp_Object lx, ly;
24767 int x0, y0;
24768
24769 /* Need an even number of coordinates, and at least 3 edges. */
24770 if (n < 6 || n & 1)
24771 return 0;
24772
24773 /* Count edge segments intersecting line from (X,Y) to (X,infinity).
24774 If count is odd, we are inside polygon. Pixels on edges
24775 may or may not be included depending on actual geometry of the
24776 polygon. */
24777 if ((lx = poly[n-2], !INTEGERP (lx))
24778 || (ly = poly[n-1], !INTEGERP (lx)))
24779 return 0;
24780 x0 = XINT (lx), y0 = XINT (ly);
24781 for (i = 0; i < n; i += 2)
24782 {
24783 int x1 = x0, y1 = y0;
24784 if ((lx = poly[i], !INTEGERP (lx))
24785 || (ly = poly[i+1], !INTEGERP (ly)))
24786 return 0;
24787 x0 = XINT (lx), y0 = XINT (ly);
24788
24789 /* Does this segment cross the X line? */
24790 if (x0 >= x)
24791 {
24792 if (x1 >= x)
24793 continue;
24794 }
24795 else if (x1 < x)
24796 continue;
24797 if (y > y0 && y > y1)
24798 continue;
24799 if (y < y0 + ((y1 - y0) * (x - x0)) / (x1 - x0))
24800 inside = !inside;
24801 }
24802 return inside;
24803 }
24804 }
24805 return 0;
24806 }
24807
24808 Lisp_Object
24809 find_hot_spot (Lisp_Object map, int x, int y)
24810 {
24811 while (CONSP (map))
24812 {
24813 if (CONSP (XCAR (map))
24814 && on_hot_spot_p (XCAR (XCAR (map)), x, y))
24815 return XCAR (map);
24816 map = XCDR (map);
24817 }
24818
24819 return Qnil;
24820 }
24821
24822 DEFUN ("lookup-image-map", Flookup_image_map, Slookup_image_map,
24823 3, 3, 0,
24824 doc: /* Lookup in image map MAP coordinates X and Y.
24825 An image map is an alist where each element has the format (AREA ID PLIST).
24826 An AREA is specified as either a rectangle, a circle, or a polygon:
24827 A rectangle is a cons (rect . ((x0 . y0) . (x1 . y1))) specifying the
24828 pixel coordinates of the upper left and bottom right corners.
24829 A circle is a cons (circle . ((x0 . y0) . r)) specifying the center
24830 and the radius of the circle; r may be a float or integer.
24831 A polygon is a cons (poly . [x0 y0 x1 y1 ...]) where each pair in the
24832 vector describes one corner in the polygon.
24833 Returns the alist element for the first matching AREA in MAP. */)
24834 (Lisp_Object map, Lisp_Object x, Lisp_Object y)
24835 {
24836 if (NILP (map))
24837 return Qnil;
24838
24839 CHECK_NUMBER (x);
24840 CHECK_NUMBER (y);
24841
24842 return find_hot_spot (map, XINT (x), XINT (y));
24843 }
24844
24845
24846 /* Display frame CURSOR, optionally using shape defined by POINTER. */
24847 static void
24848 define_frame_cursor1 (struct frame *f, Cursor cursor, Lisp_Object pointer)
24849 {
24850 /* Do not change cursor shape while dragging mouse. */
24851 if (!NILP (do_mouse_tracking))
24852 return;
24853
24854 if (!NILP (pointer))
24855 {
24856 if (EQ (pointer, Qarrow))
24857 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
24858 else if (EQ (pointer, Qhand))
24859 cursor = FRAME_X_OUTPUT (f)->hand_cursor;
24860 else if (EQ (pointer, Qtext))
24861 cursor = FRAME_X_OUTPUT (f)->text_cursor;
24862 else if (EQ (pointer, intern ("hdrag")))
24863 cursor = FRAME_X_OUTPUT (f)->horizontal_drag_cursor;
24864 #ifdef HAVE_X_WINDOWS
24865 else if (EQ (pointer, intern ("vdrag")))
24866 cursor = FRAME_X_DISPLAY_INFO (f)->vertical_scroll_bar_cursor;
24867 #endif
24868 else if (EQ (pointer, intern ("hourglass")))
24869 cursor = FRAME_X_OUTPUT (f)->hourglass_cursor;
24870 else if (EQ (pointer, Qmodeline))
24871 cursor = FRAME_X_OUTPUT (f)->modeline_cursor;
24872 else
24873 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
24874 }
24875
24876 if (cursor != No_Cursor)
24877 FRAME_RIF (f)->define_frame_cursor (f, cursor);
24878 }
24879
24880 #endif /* HAVE_WINDOW_SYSTEM */
24881
24882 /* Take proper action when mouse has moved to the mode or header line
24883 or marginal area AREA of window W, x-position X and y-position Y.
24884 X is relative to the start of the text display area of W, so the
24885 width of bitmap areas and scroll bars must be subtracted to get a
24886 position relative to the start of the mode line. */
24887
24888 static void
24889 note_mode_line_or_margin_highlight (Lisp_Object window, int x, int y,
24890 enum window_part area)
24891 {
24892 struct window *w = XWINDOW (window);
24893 struct frame *f = XFRAME (w->frame);
24894 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
24895 #ifdef HAVE_WINDOW_SYSTEM
24896 Display_Info *dpyinfo;
24897 #endif
24898 Cursor cursor = No_Cursor;
24899 Lisp_Object pointer = Qnil;
24900 int dx, dy, width, height;
24901 EMACS_INT charpos;
24902 Lisp_Object string, object = Qnil;
24903 Lisp_Object pos, help;
24904
24905 Lisp_Object mouse_face;
24906 int original_x_pixel = x;
24907 struct glyph * glyph = NULL, * row_start_glyph = NULL;
24908 struct glyph_row *row;
24909
24910 if (area == ON_MODE_LINE || area == ON_HEADER_LINE)
24911 {
24912 int x0;
24913 struct glyph *end;
24914
24915 /* Kludge alert: mode_line_string takes X/Y in pixels, but
24916 returns them in row/column units! */
24917 string = mode_line_string (w, area, &x, &y, &charpos,
24918 &object, &dx, &dy, &width, &height);
24919
24920 row = (area == ON_MODE_LINE
24921 ? MATRIX_MODE_LINE_ROW (w->current_matrix)
24922 : MATRIX_HEADER_LINE_ROW (w->current_matrix));
24923
24924 /* Find the glyph under the mouse pointer. */
24925 if (row->mode_line_p && row->enabled_p)
24926 {
24927 glyph = row_start_glyph = row->glyphs[TEXT_AREA];
24928 end = glyph + row->used[TEXT_AREA];
24929
24930 for (x0 = original_x_pixel;
24931 glyph < end && x0 >= glyph->pixel_width;
24932 ++glyph)
24933 x0 -= glyph->pixel_width;
24934
24935 if (glyph >= end)
24936 glyph = NULL;
24937 }
24938 }
24939 else
24940 {
24941 x -= WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w);
24942 /* Kludge alert: marginal_area_string takes X/Y in pixels, but
24943 returns them in row/column units! */
24944 string = marginal_area_string (w, area, &x, &y, &charpos,
24945 &object, &dx, &dy, &width, &height);
24946 }
24947
24948 help = Qnil;
24949
24950 #ifdef HAVE_WINDOW_SYSTEM
24951 if (IMAGEP (object))
24952 {
24953 Lisp_Object image_map, hotspot;
24954 if ((image_map = Fplist_get (XCDR (object), QCmap),
24955 !NILP (image_map))
24956 && (hotspot = find_hot_spot (image_map, dx, dy),
24957 CONSP (hotspot))
24958 && (hotspot = XCDR (hotspot), CONSP (hotspot)))
24959 {
24960 Lisp_Object area_id, plist;
24961
24962 area_id = XCAR (hotspot);
24963 /* Could check AREA_ID to see if we enter/leave this hot-spot.
24964 If so, we could look for mouse-enter, mouse-leave
24965 properties in PLIST (and do something...). */
24966 hotspot = XCDR (hotspot);
24967 if (CONSP (hotspot)
24968 && (plist = XCAR (hotspot), CONSP (plist)))
24969 {
24970 pointer = Fplist_get (plist, Qpointer);
24971 if (NILP (pointer))
24972 pointer = Qhand;
24973 help = Fplist_get (plist, Qhelp_echo);
24974 if (!NILP (help))
24975 {
24976 help_echo_string = help;
24977 /* Is this correct? ++kfs */
24978 XSETWINDOW (help_echo_window, w);
24979 help_echo_object = w->buffer;
24980 help_echo_pos = charpos;
24981 }
24982 }
24983 }
24984 if (NILP (pointer))
24985 pointer = Fplist_get (XCDR (object), QCpointer);
24986 }
24987 #endif /* HAVE_WINDOW_SYSTEM */
24988
24989 if (STRINGP (string))
24990 {
24991 pos = make_number (charpos);
24992 /* If we're on a string with `help-echo' text property, arrange
24993 for the help to be displayed. This is done by setting the
24994 global variable help_echo_string to the help string. */
24995 if (NILP (help))
24996 {
24997 help = Fget_text_property (pos, Qhelp_echo, string);
24998 if (!NILP (help))
24999 {
25000 help_echo_string = help;
25001 XSETWINDOW (help_echo_window, w);
25002 help_echo_object = string;
25003 help_echo_pos = charpos;
25004 }
25005 }
25006
25007 #ifdef HAVE_WINDOW_SYSTEM
25008 if (FRAME_WINDOW_P (f))
25009 {
25010 dpyinfo = FRAME_X_DISPLAY_INFO (f);
25011 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
25012 if (NILP (pointer))
25013 pointer = Fget_text_property (pos, Qpointer, string);
25014
25015 /* Change the mouse pointer according to what is under X/Y. */
25016 if (NILP (pointer)
25017 && ((area == ON_MODE_LINE) || (area == ON_HEADER_LINE)))
25018 {
25019 Lisp_Object map;
25020 map = Fget_text_property (pos, Qlocal_map, string);
25021 if (!KEYMAPP (map))
25022 map = Fget_text_property (pos, Qkeymap, string);
25023 if (!KEYMAPP (map))
25024 cursor = dpyinfo->vertical_scroll_bar_cursor;
25025 }
25026 }
25027 #endif
25028
25029 /* Change the mouse face according to what is under X/Y. */
25030 mouse_face = Fget_text_property (pos, Qmouse_face, string);
25031 if (!NILP (mouse_face)
25032 && ((area == ON_MODE_LINE) || (area == ON_HEADER_LINE))
25033 && glyph)
25034 {
25035 Lisp_Object b, e;
25036
25037 struct glyph * tmp_glyph;
25038
25039 int gpos;
25040 int gseq_length;
25041 int total_pixel_width;
25042 EMACS_INT begpos, endpos, ignore;
25043
25044 int vpos, hpos;
25045
25046 b = Fprevious_single_property_change (make_number (charpos + 1),
25047 Qmouse_face, string, Qnil);
25048 if (NILP (b))
25049 begpos = 0;
25050 else
25051 begpos = XINT (b);
25052
25053 e = Fnext_single_property_change (pos, Qmouse_face, string, Qnil);
25054 if (NILP (e))
25055 endpos = SCHARS (string);
25056 else
25057 endpos = XINT (e);
25058
25059 /* Calculate the glyph position GPOS of GLYPH in the
25060 displayed string, relative to the beginning of the
25061 highlighted part of the string.
25062
25063 Note: GPOS is different from CHARPOS. CHARPOS is the
25064 position of GLYPH in the internal string object. A mode
25065 line string format has structures which are converted to
25066 a flattened string by the Emacs Lisp interpreter. The
25067 internal string is an element of those structures. The
25068 displayed string is the flattened string. */
25069 tmp_glyph = row_start_glyph;
25070 while (tmp_glyph < glyph
25071 && (!(EQ (tmp_glyph->object, glyph->object)
25072 && begpos <= tmp_glyph->charpos
25073 && tmp_glyph->charpos < endpos)))
25074 tmp_glyph++;
25075 gpos = glyph - tmp_glyph;
25076
25077 /* Calculate the length GSEQ_LENGTH of the glyph sequence of
25078 the highlighted part of the displayed string to which
25079 GLYPH belongs. Note: GSEQ_LENGTH is different from
25080 SCHARS (STRING), because the latter returns the length of
25081 the internal string. */
25082 for (tmp_glyph = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] - 1;
25083 tmp_glyph > glyph
25084 && (!(EQ (tmp_glyph->object, glyph->object)
25085 && begpos <= tmp_glyph->charpos
25086 && tmp_glyph->charpos < endpos));
25087 tmp_glyph--)
25088 ;
25089 gseq_length = gpos + (tmp_glyph - glyph) + 1;
25090
25091 /* Calculate the total pixel width of all the glyphs between
25092 the beginning of the highlighted area and GLYPH. */
25093 total_pixel_width = 0;
25094 for (tmp_glyph = glyph - gpos; tmp_glyph != glyph; tmp_glyph++)
25095 total_pixel_width += tmp_glyph->pixel_width;
25096
25097 /* Pre calculation of re-rendering position. Note: X is in
25098 column units here, after the call to mode_line_string or
25099 marginal_area_string. */
25100 hpos = x - gpos;
25101 vpos = (area == ON_MODE_LINE
25102 ? (w->current_matrix)->nrows - 1
25103 : 0);
25104
25105 /* If GLYPH's position is included in the region that is
25106 already drawn in mouse face, we have nothing to do. */
25107 if ( EQ (window, hlinfo->mouse_face_window)
25108 && (!row->reversed_p
25109 ? (hlinfo->mouse_face_beg_col <= hpos
25110 && hpos < hlinfo->mouse_face_end_col)
25111 /* In R2L rows we swap BEG and END, see below. */
25112 : (hlinfo->mouse_face_end_col <= hpos
25113 && hpos < hlinfo->mouse_face_beg_col))
25114 && hlinfo->mouse_face_beg_row == vpos )
25115 return;
25116
25117 if (clear_mouse_face (hlinfo))
25118 cursor = No_Cursor;
25119
25120 if (!row->reversed_p)
25121 {
25122 hlinfo->mouse_face_beg_col = hpos;
25123 hlinfo->mouse_face_beg_x = original_x_pixel
25124 - (total_pixel_width + dx);
25125 hlinfo->mouse_face_end_col = hpos + gseq_length;
25126 hlinfo->mouse_face_end_x = 0;
25127 }
25128 else
25129 {
25130 /* In R2L rows, show_mouse_face expects BEG and END
25131 coordinates to be swapped. */
25132 hlinfo->mouse_face_end_col = hpos;
25133 hlinfo->mouse_face_end_x = original_x_pixel
25134 - (total_pixel_width + dx);
25135 hlinfo->mouse_face_beg_col = hpos + gseq_length;
25136 hlinfo->mouse_face_beg_x = 0;
25137 }
25138
25139 hlinfo->mouse_face_beg_row = vpos;
25140 hlinfo->mouse_face_end_row = hlinfo->mouse_face_beg_row;
25141 hlinfo->mouse_face_beg_y = 0;
25142 hlinfo->mouse_face_end_y = 0;
25143 hlinfo->mouse_face_past_end = 0;
25144 hlinfo->mouse_face_window = window;
25145
25146 hlinfo->mouse_face_face_id = face_at_string_position (w, string,
25147 charpos,
25148 0, 0, 0,
25149 &ignore,
25150 glyph->face_id,
25151 1);
25152 show_mouse_face (hlinfo, DRAW_MOUSE_FACE);
25153
25154 if (NILP (pointer))
25155 pointer = Qhand;
25156 }
25157 else if ((area == ON_MODE_LINE) || (area == ON_HEADER_LINE))
25158 clear_mouse_face (hlinfo);
25159 }
25160 #ifdef HAVE_WINDOW_SYSTEM
25161 if (FRAME_WINDOW_P (f))
25162 define_frame_cursor1 (f, cursor, pointer);
25163 #endif
25164 }
25165
25166
25167 /* EXPORT:
25168 Take proper action when the mouse has moved to position X, Y on
25169 frame F as regards highlighting characters that have mouse-face
25170 properties. Also de-highlighting chars where the mouse was before.
25171 X and Y can be negative or out of range. */
25172
25173 void
25174 note_mouse_highlight (struct frame *f, int x, int y)
25175 {
25176 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
25177 enum window_part part;
25178 Lisp_Object window;
25179 struct window *w;
25180 Cursor cursor = No_Cursor;
25181 Lisp_Object pointer = Qnil; /* Takes precedence over cursor! */
25182 struct buffer *b;
25183
25184 /* When a menu is active, don't highlight because this looks odd. */
25185 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NS) || defined (MSDOS)
25186 if (popup_activated ())
25187 return;
25188 #endif
25189
25190 if (NILP (Vmouse_highlight)
25191 || !f->glyphs_initialized_p
25192 || f->pointer_invisible)
25193 return;
25194
25195 hlinfo->mouse_face_mouse_x = x;
25196 hlinfo->mouse_face_mouse_y = y;
25197 hlinfo->mouse_face_mouse_frame = f;
25198
25199 if (hlinfo->mouse_face_defer)
25200 return;
25201
25202 if (gc_in_progress)
25203 {
25204 hlinfo->mouse_face_deferred_gc = 1;
25205 return;
25206 }
25207
25208 /* Which window is that in? */
25209 window = window_from_coordinates (f, x, y, &part, 1);
25210
25211 /* If we were displaying active text in another window, clear that.
25212 Also clear if we move out of text area in same window. */
25213 if (! EQ (window, hlinfo->mouse_face_window)
25214 || (part != ON_TEXT && part != ON_MODE_LINE && part != ON_HEADER_LINE
25215 && !NILP (hlinfo->mouse_face_window)))
25216 clear_mouse_face (hlinfo);
25217
25218 /* Not on a window -> return. */
25219 if (!WINDOWP (window))
25220 return;
25221
25222 /* Reset help_echo_string. It will get recomputed below. */
25223 help_echo_string = Qnil;
25224
25225 /* Convert to window-relative pixel coordinates. */
25226 w = XWINDOW (window);
25227 frame_to_window_pixel_xy (w, &x, &y);
25228
25229 #ifdef HAVE_WINDOW_SYSTEM
25230 /* Handle tool-bar window differently since it doesn't display a
25231 buffer. */
25232 if (EQ (window, f->tool_bar_window))
25233 {
25234 note_tool_bar_highlight (f, x, y);
25235 return;
25236 }
25237 #endif
25238
25239 /* Mouse is on the mode, header line or margin? */
25240 if (part == ON_MODE_LINE || part == ON_HEADER_LINE
25241 || part == ON_LEFT_MARGIN || part == ON_RIGHT_MARGIN)
25242 {
25243 note_mode_line_or_margin_highlight (window, x, y, part);
25244 return;
25245 }
25246
25247 #ifdef HAVE_WINDOW_SYSTEM
25248 if (part == ON_VERTICAL_BORDER)
25249 {
25250 cursor = FRAME_X_OUTPUT (f)->horizontal_drag_cursor;
25251 help_echo_string = build_string ("drag-mouse-1: resize");
25252 }
25253 else if (part == ON_LEFT_FRINGE || part == ON_RIGHT_FRINGE
25254 || part == ON_SCROLL_BAR)
25255 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
25256 else
25257 cursor = FRAME_X_OUTPUT (f)->text_cursor;
25258 #endif
25259
25260 /* Are we in a window whose display is up to date?
25261 And verify the buffer's text has not changed. */
25262 b = XBUFFER (w->buffer);
25263 if (part == ON_TEXT
25264 && EQ (w->window_end_valid, w->buffer)
25265 && XFASTINT (w->last_modified) == BUF_MODIFF (b)
25266 && XFASTINT (w->last_overlay_modified) == BUF_OVERLAY_MODIFF (b))
25267 {
25268 int hpos, vpos, i, dx, dy, area;
25269 EMACS_INT pos;
25270 struct glyph *glyph;
25271 Lisp_Object object;
25272 Lisp_Object mouse_face = Qnil, position;
25273 Lisp_Object *overlay_vec = NULL;
25274 int noverlays;
25275 struct buffer *obuf;
25276 EMACS_INT obegv, ozv;
25277 int same_region;
25278
25279 /* Find the glyph under X/Y. */
25280 glyph = x_y_to_hpos_vpos (w, x, y, &hpos, &vpos, &dx, &dy, &area);
25281
25282 #ifdef HAVE_WINDOW_SYSTEM
25283 /* Look for :pointer property on image. */
25284 if (glyph != NULL && glyph->type == IMAGE_GLYPH)
25285 {
25286 struct image *img = IMAGE_FROM_ID (f, glyph->u.img_id);
25287 if (img != NULL && IMAGEP (img->spec))
25288 {
25289 Lisp_Object image_map, hotspot;
25290 if ((image_map = Fplist_get (XCDR (img->spec), QCmap),
25291 !NILP (image_map))
25292 && (hotspot = find_hot_spot (image_map,
25293 glyph->slice.img.x + dx,
25294 glyph->slice.img.y + dy),
25295 CONSP (hotspot))
25296 && (hotspot = XCDR (hotspot), CONSP (hotspot)))
25297 {
25298 Lisp_Object area_id, plist;
25299
25300 area_id = XCAR (hotspot);
25301 /* Could check AREA_ID to see if we enter/leave this hot-spot.
25302 If so, we could look for mouse-enter, mouse-leave
25303 properties in PLIST (and do something...). */
25304 hotspot = XCDR (hotspot);
25305 if (CONSP (hotspot)
25306 && (plist = XCAR (hotspot), CONSP (plist)))
25307 {
25308 pointer = Fplist_get (plist, Qpointer);
25309 if (NILP (pointer))
25310 pointer = Qhand;
25311 help_echo_string = Fplist_get (plist, Qhelp_echo);
25312 if (!NILP (help_echo_string))
25313 {
25314 help_echo_window = window;
25315 help_echo_object = glyph->object;
25316 help_echo_pos = glyph->charpos;
25317 }
25318 }
25319 }
25320 if (NILP (pointer))
25321 pointer = Fplist_get (XCDR (img->spec), QCpointer);
25322 }
25323 }
25324 #endif /* HAVE_WINDOW_SYSTEM */
25325
25326 /* Clear mouse face if X/Y not over text. */
25327 if (glyph == NULL
25328 || area != TEXT_AREA
25329 || !MATRIX_ROW (w->current_matrix, vpos)->displays_text_p
25330 /* Glyph's OBJECT is an integer for glyphs inserted by the
25331 display engine for its internal purposes, like truncation
25332 and continuation glyphs and blanks beyond the end of
25333 line's text on text terminals. If we are over such a
25334 glyph, we are not over any text. */
25335 || INTEGERP (glyph->object)
25336 /* R2L rows have a stretch glyph at their front, which
25337 stands for no text, whereas L2R rows have no glyphs at
25338 all beyond the end of text. Treat such stretch glyphs
25339 like we do with NULL glyphs in L2R rows. */
25340 || (MATRIX_ROW (w->current_matrix, vpos)->reversed_p
25341 && glyph == MATRIX_ROW (w->current_matrix, vpos)->glyphs[TEXT_AREA]
25342 && glyph->type == STRETCH_GLYPH
25343 && glyph->avoid_cursor_p))
25344 {
25345 if (clear_mouse_face (hlinfo))
25346 cursor = No_Cursor;
25347 #ifdef HAVE_WINDOW_SYSTEM
25348 if (FRAME_WINDOW_P (f) && NILP (pointer))
25349 {
25350 if (area != TEXT_AREA)
25351 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
25352 else
25353 pointer = Vvoid_text_area_pointer;
25354 }
25355 #endif
25356 goto set_cursor;
25357 }
25358
25359 pos = glyph->charpos;
25360 object = glyph->object;
25361 if (!STRINGP (object) && !BUFFERP (object))
25362 goto set_cursor;
25363
25364 /* If we get an out-of-range value, return now; avoid an error. */
25365 if (BUFFERP (object) && pos > BUF_Z (b))
25366 goto set_cursor;
25367
25368 /* Make the window's buffer temporarily current for
25369 overlays_at and compute_char_face. */
25370 obuf = current_buffer;
25371 current_buffer = b;
25372 obegv = BEGV;
25373 ozv = ZV;
25374 BEGV = BEG;
25375 ZV = Z;
25376
25377 /* Is this char mouse-active or does it have help-echo? */
25378 position = make_number (pos);
25379
25380 if (BUFFERP (object))
25381 {
25382 /* Put all the overlays we want in a vector in overlay_vec. */
25383 GET_OVERLAYS_AT (pos, overlay_vec, noverlays, NULL, 0);
25384 /* Sort overlays into increasing priority order. */
25385 noverlays = sort_overlays (overlay_vec, noverlays, w);
25386 }
25387 else
25388 noverlays = 0;
25389
25390 same_region = coords_in_mouse_face_p (w, hpos, vpos);
25391
25392 if (same_region)
25393 cursor = No_Cursor;
25394
25395 /* Check mouse-face highlighting. */
25396 if (! same_region
25397 /* If there exists an overlay with mouse-face overlapping
25398 the one we are currently highlighting, we have to
25399 check if we enter the overlapping overlay, and then
25400 highlight only that. */
25401 || (OVERLAYP (hlinfo->mouse_face_overlay)
25402 && mouse_face_overlay_overlaps (hlinfo->mouse_face_overlay)))
25403 {
25404 /* Find the highest priority overlay with a mouse-face. */
25405 Lisp_Object overlay = Qnil;
25406 for (i = noverlays - 1; i >= 0 && NILP (overlay); --i)
25407 {
25408 mouse_face = Foverlay_get (overlay_vec[i], Qmouse_face);
25409 if (!NILP (mouse_face))
25410 overlay = overlay_vec[i];
25411 }
25412
25413 /* If we're highlighting the same overlay as before, there's
25414 no need to do that again. */
25415 if (!NILP (overlay) && EQ (overlay, hlinfo->mouse_face_overlay))
25416 goto check_help_echo;
25417 hlinfo->mouse_face_overlay = overlay;
25418
25419 /* Clear the display of the old active region, if any. */
25420 if (clear_mouse_face (hlinfo))
25421 cursor = No_Cursor;
25422
25423 /* If no overlay applies, get a text property. */
25424 if (NILP (overlay))
25425 mouse_face = Fget_text_property (position, Qmouse_face, object);
25426
25427 /* Next, compute the bounds of the mouse highlighting and
25428 display it. */
25429 if (!NILP (mouse_face) && STRINGP (object))
25430 {
25431 /* The mouse-highlighting comes from a display string
25432 with a mouse-face. */
25433 Lisp_Object s, e;
25434 EMACS_INT ignore;
25435
25436 s = Fprevious_single_property_change
25437 (make_number (pos + 1), Qmouse_face, object, Qnil);
25438 e = Fnext_single_property_change
25439 (position, Qmouse_face, object, Qnil);
25440 if (NILP (s))
25441 s = make_number (0);
25442 if (NILP (e))
25443 e = make_number (SCHARS (object) - 1);
25444 mouse_face_from_string_pos (w, hlinfo, object,
25445 XINT (s), XINT (e));
25446 hlinfo->mouse_face_past_end = 0;
25447 hlinfo->mouse_face_window = window;
25448 hlinfo->mouse_face_face_id
25449 = face_at_string_position (w, object, pos, 0, 0, 0, &ignore,
25450 glyph->face_id, 1);
25451 show_mouse_face (hlinfo, DRAW_MOUSE_FACE);
25452 cursor = No_Cursor;
25453 }
25454 else
25455 {
25456 /* The mouse-highlighting, if any, comes from an overlay
25457 or text property in the buffer. */
25458 Lisp_Object buffer IF_LINT (= Qnil);
25459 Lisp_Object cover_string IF_LINT (= Qnil);
25460
25461 if (STRINGP (object))
25462 {
25463 /* If we are on a display string with no mouse-face,
25464 check if the text under it has one. */
25465 struct glyph_row *r = MATRIX_ROW (w->current_matrix, vpos);
25466 EMACS_INT start = MATRIX_ROW_START_CHARPOS (r);
25467 pos = string_buffer_position (w, object, start);
25468 if (pos > 0)
25469 {
25470 mouse_face = get_char_property_and_overlay
25471 (make_number (pos), Qmouse_face, w->buffer, &overlay);
25472 buffer = w->buffer;
25473 cover_string = object;
25474 }
25475 }
25476 else
25477 {
25478 buffer = object;
25479 cover_string = Qnil;
25480 }
25481
25482 if (!NILP (mouse_face))
25483 {
25484 Lisp_Object before, after;
25485 Lisp_Object before_string, after_string;
25486 /* To correctly find the limits of mouse highlight
25487 in a bidi-reordered buffer, we must not use the
25488 optimization of limiting the search in
25489 previous-single-property-change and
25490 next-single-property-change, because
25491 rows_from_pos_range needs the real start and end
25492 positions to DTRT in this case. That's because
25493 the first row visible in a window does not
25494 necessarily display the character whose position
25495 is the smallest. */
25496 Lisp_Object lim1 =
25497 NILP (BVAR (XBUFFER (buffer), bidi_display_reordering))
25498 ? Fmarker_position (w->start)
25499 : Qnil;
25500 Lisp_Object lim2 =
25501 NILP (BVAR (XBUFFER (buffer), bidi_display_reordering))
25502 ? make_number (BUF_Z (XBUFFER (buffer))
25503 - XFASTINT (w->window_end_pos))
25504 : Qnil;
25505
25506 if (NILP (overlay))
25507 {
25508 /* Handle the text property case. */
25509 before = Fprevious_single_property_change
25510 (make_number (pos + 1), Qmouse_face, buffer, lim1);
25511 after = Fnext_single_property_change
25512 (make_number (pos), Qmouse_face, buffer, lim2);
25513 before_string = after_string = Qnil;
25514 }
25515 else
25516 {
25517 /* Handle the overlay case. */
25518 before = Foverlay_start (overlay);
25519 after = Foverlay_end (overlay);
25520 before_string = Foverlay_get (overlay, Qbefore_string);
25521 after_string = Foverlay_get (overlay, Qafter_string);
25522
25523 if (!STRINGP (before_string)) before_string = Qnil;
25524 if (!STRINGP (after_string)) after_string = Qnil;
25525 }
25526
25527 mouse_face_from_buffer_pos (window, hlinfo, pos,
25528 XFASTINT (before),
25529 XFASTINT (after),
25530 before_string, after_string,
25531 cover_string);
25532 cursor = No_Cursor;
25533 }
25534 }
25535 }
25536
25537 check_help_echo:
25538
25539 /* Look for a `help-echo' property. */
25540 if (NILP (help_echo_string)) {
25541 Lisp_Object help, overlay;
25542
25543 /* Check overlays first. */
25544 help = overlay = Qnil;
25545 for (i = noverlays - 1; i >= 0 && NILP (help); --i)
25546 {
25547 overlay = overlay_vec[i];
25548 help = Foverlay_get (overlay, Qhelp_echo);
25549 }
25550
25551 if (!NILP (help))
25552 {
25553 help_echo_string = help;
25554 help_echo_window = window;
25555 help_echo_object = overlay;
25556 help_echo_pos = pos;
25557 }
25558 else
25559 {
25560 Lisp_Object obj = glyph->object;
25561 EMACS_INT charpos = glyph->charpos;
25562
25563 /* Try text properties. */
25564 if (STRINGP (obj)
25565 && charpos >= 0
25566 && charpos < SCHARS (obj))
25567 {
25568 help = Fget_text_property (make_number (charpos),
25569 Qhelp_echo, obj);
25570 if (NILP (help))
25571 {
25572 /* If the string itself doesn't specify a help-echo,
25573 see if the buffer text ``under'' it does. */
25574 struct glyph_row *r
25575 = MATRIX_ROW (w->current_matrix, vpos);
25576 EMACS_INT start = MATRIX_ROW_START_CHARPOS (r);
25577 EMACS_INT p = string_buffer_position (w, obj, start);
25578 if (p > 0)
25579 {
25580 help = Fget_char_property (make_number (p),
25581 Qhelp_echo, w->buffer);
25582 if (!NILP (help))
25583 {
25584 charpos = p;
25585 obj = w->buffer;
25586 }
25587 }
25588 }
25589 }
25590 else if (BUFFERP (obj)
25591 && charpos >= BEGV
25592 && charpos < ZV)
25593 help = Fget_text_property (make_number (charpos), Qhelp_echo,
25594 obj);
25595
25596 if (!NILP (help))
25597 {
25598 help_echo_string = help;
25599 help_echo_window = window;
25600 help_echo_object = obj;
25601 help_echo_pos = charpos;
25602 }
25603 }
25604 }
25605
25606 #ifdef HAVE_WINDOW_SYSTEM
25607 /* Look for a `pointer' property. */
25608 if (FRAME_WINDOW_P (f) && NILP (pointer))
25609 {
25610 /* Check overlays first. */
25611 for (i = noverlays - 1; i >= 0 && NILP (pointer); --i)
25612 pointer = Foverlay_get (overlay_vec[i], Qpointer);
25613
25614 if (NILP (pointer))
25615 {
25616 Lisp_Object obj = glyph->object;
25617 EMACS_INT charpos = glyph->charpos;
25618
25619 /* Try text properties. */
25620 if (STRINGP (obj)
25621 && charpos >= 0
25622 && charpos < SCHARS (obj))
25623 {
25624 pointer = Fget_text_property (make_number (charpos),
25625 Qpointer, obj);
25626 if (NILP (pointer))
25627 {
25628 /* If the string itself doesn't specify a pointer,
25629 see if the buffer text ``under'' it does. */
25630 struct glyph_row *r
25631 = MATRIX_ROW (w->current_matrix, vpos);
25632 EMACS_INT start = MATRIX_ROW_START_CHARPOS (r);
25633 EMACS_INT p = string_buffer_position (w, obj, start);
25634 if (p > 0)
25635 pointer = Fget_char_property (make_number (p),
25636 Qpointer, w->buffer);
25637 }
25638 }
25639 else if (BUFFERP (obj)
25640 && charpos >= BEGV
25641 && charpos < ZV)
25642 pointer = Fget_text_property (make_number (charpos),
25643 Qpointer, obj);
25644 }
25645 }
25646 #endif /* HAVE_WINDOW_SYSTEM */
25647
25648 BEGV = obegv;
25649 ZV = ozv;
25650 current_buffer = obuf;
25651 }
25652
25653 set_cursor:
25654
25655 #ifdef HAVE_WINDOW_SYSTEM
25656 if (FRAME_WINDOW_P (f))
25657 define_frame_cursor1 (f, cursor, pointer);
25658 #else
25659 /* This is here to prevent a compiler error, about "label at end of
25660 compound statement". */
25661 return;
25662 #endif
25663 }
25664
25665
25666 /* EXPORT for RIF:
25667 Clear any mouse-face on window W. This function is part of the
25668 redisplay interface, and is called from try_window_id and similar
25669 functions to ensure the mouse-highlight is off. */
25670
25671 void
25672 x_clear_window_mouse_face (struct window *w)
25673 {
25674 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (XFRAME (w->frame));
25675 Lisp_Object window;
25676
25677 BLOCK_INPUT;
25678 XSETWINDOW (window, w);
25679 if (EQ (window, hlinfo->mouse_face_window))
25680 clear_mouse_face (hlinfo);
25681 UNBLOCK_INPUT;
25682 }
25683
25684
25685 /* EXPORT:
25686 Just discard the mouse face information for frame F, if any.
25687 This is used when the size of F is changed. */
25688
25689 void
25690 cancel_mouse_face (struct frame *f)
25691 {
25692 Lisp_Object window;
25693 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
25694
25695 window = hlinfo->mouse_face_window;
25696 if (! NILP (window) && XFRAME (XWINDOW (window)->frame) == f)
25697 {
25698 hlinfo->mouse_face_beg_row = hlinfo->mouse_face_beg_col = -1;
25699 hlinfo->mouse_face_end_row = hlinfo->mouse_face_end_col = -1;
25700 hlinfo->mouse_face_window = Qnil;
25701 }
25702 }
25703
25704
25705 \f
25706 /***********************************************************************
25707 Exposure Events
25708 ***********************************************************************/
25709
25710 #ifdef HAVE_WINDOW_SYSTEM
25711
25712 /* Redraw the part of glyph row area AREA of glyph row ROW on window W
25713 which intersects rectangle R. R is in window-relative coordinates. */
25714
25715 static void
25716 expose_area (struct window *w, struct glyph_row *row, XRectangle *r,
25717 enum glyph_row_area area)
25718 {
25719 struct glyph *first = row->glyphs[area];
25720 struct glyph *end = row->glyphs[area] + row->used[area];
25721 struct glyph *last;
25722 int first_x, start_x, x;
25723
25724 if (area == TEXT_AREA && row->fill_line_p)
25725 /* If row extends face to end of line write the whole line. */
25726 draw_glyphs (w, 0, row, area,
25727 0, row->used[area],
25728 DRAW_NORMAL_TEXT, 0);
25729 else
25730 {
25731 /* Set START_X to the window-relative start position for drawing glyphs of
25732 AREA. The first glyph of the text area can be partially visible.
25733 The first glyphs of other areas cannot. */
25734 start_x = window_box_left_offset (w, area);
25735 x = start_x;
25736 if (area == TEXT_AREA)
25737 x += row->x;
25738
25739 /* Find the first glyph that must be redrawn. */
25740 while (first < end
25741 && x + first->pixel_width < r->x)
25742 {
25743 x += first->pixel_width;
25744 ++first;
25745 }
25746
25747 /* Find the last one. */
25748 last = first;
25749 first_x = x;
25750 while (last < end
25751 && x < r->x + r->width)
25752 {
25753 x += last->pixel_width;
25754 ++last;
25755 }
25756
25757 /* Repaint. */
25758 if (last > first)
25759 draw_glyphs (w, first_x - start_x, row, area,
25760 first - row->glyphs[area], last - row->glyphs[area],
25761 DRAW_NORMAL_TEXT, 0);
25762 }
25763 }
25764
25765
25766 /* Redraw the parts of the glyph row ROW on window W intersecting
25767 rectangle R. R is in window-relative coordinates. Value is
25768 non-zero if mouse-face was overwritten. */
25769
25770 static int
25771 expose_line (struct window *w, struct glyph_row *row, XRectangle *r)
25772 {
25773 xassert (row->enabled_p);
25774
25775 if (row->mode_line_p || w->pseudo_window_p)
25776 draw_glyphs (w, 0, row, TEXT_AREA,
25777 0, row->used[TEXT_AREA],
25778 DRAW_NORMAL_TEXT, 0);
25779 else
25780 {
25781 if (row->used[LEFT_MARGIN_AREA])
25782 expose_area (w, row, r, LEFT_MARGIN_AREA);
25783 if (row->used[TEXT_AREA])
25784 expose_area (w, row, r, TEXT_AREA);
25785 if (row->used[RIGHT_MARGIN_AREA])
25786 expose_area (w, row, r, RIGHT_MARGIN_AREA);
25787 draw_row_fringe_bitmaps (w, row);
25788 }
25789
25790 return row->mouse_face_p;
25791 }
25792
25793
25794 /* Redraw those parts of glyphs rows during expose event handling that
25795 overlap other rows. Redrawing of an exposed line writes over parts
25796 of lines overlapping that exposed line; this function fixes that.
25797
25798 W is the window being exposed. FIRST_OVERLAPPING_ROW is the first
25799 row in W's current matrix that is exposed and overlaps other rows.
25800 LAST_OVERLAPPING_ROW is the last such row. */
25801
25802 static void
25803 expose_overlaps (struct window *w,
25804 struct glyph_row *first_overlapping_row,
25805 struct glyph_row *last_overlapping_row,
25806 XRectangle *r)
25807 {
25808 struct glyph_row *row;
25809
25810 for (row = first_overlapping_row; row <= last_overlapping_row; ++row)
25811 if (row->overlapping_p)
25812 {
25813 xassert (row->enabled_p && !row->mode_line_p);
25814
25815 row->clip = r;
25816 if (row->used[LEFT_MARGIN_AREA])
25817 x_fix_overlapping_area (w, row, LEFT_MARGIN_AREA, OVERLAPS_BOTH);
25818
25819 if (row->used[TEXT_AREA])
25820 x_fix_overlapping_area (w, row, TEXT_AREA, OVERLAPS_BOTH);
25821
25822 if (row->used[RIGHT_MARGIN_AREA])
25823 x_fix_overlapping_area (w, row, RIGHT_MARGIN_AREA, OVERLAPS_BOTH);
25824 row->clip = NULL;
25825 }
25826 }
25827
25828
25829 /* Return non-zero if W's cursor intersects rectangle R. */
25830
25831 static int
25832 phys_cursor_in_rect_p (struct window *w, XRectangle *r)
25833 {
25834 XRectangle cr, result;
25835 struct glyph *cursor_glyph;
25836 struct glyph_row *row;
25837
25838 if (w->phys_cursor.vpos >= 0
25839 && w->phys_cursor.vpos < w->current_matrix->nrows
25840 && (row = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos),
25841 row->enabled_p)
25842 && row->cursor_in_fringe_p)
25843 {
25844 /* Cursor is in the fringe. */
25845 cr.x = window_box_right_offset (w,
25846 (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
25847 ? RIGHT_MARGIN_AREA
25848 : TEXT_AREA));
25849 cr.y = row->y;
25850 cr.width = WINDOW_RIGHT_FRINGE_WIDTH (w);
25851 cr.height = row->height;
25852 return x_intersect_rectangles (&cr, r, &result);
25853 }
25854
25855 cursor_glyph = get_phys_cursor_glyph (w);
25856 if (cursor_glyph)
25857 {
25858 /* r is relative to W's box, but w->phys_cursor.x is relative
25859 to left edge of W's TEXT area. Adjust it. */
25860 cr.x = window_box_left_offset (w, TEXT_AREA) + w->phys_cursor.x;
25861 cr.y = w->phys_cursor.y;
25862 cr.width = cursor_glyph->pixel_width;
25863 cr.height = w->phys_cursor_height;
25864 /* ++KFS: W32 version used W32-specific IntersectRect here, but
25865 I assume the effect is the same -- and this is portable. */
25866 return x_intersect_rectangles (&cr, r, &result);
25867 }
25868 /* If we don't understand the format, pretend we're not in the hot-spot. */
25869 return 0;
25870 }
25871
25872
25873 /* EXPORT:
25874 Draw a vertical window border to the right of window W if W doesn't
25875 have vertical scroll bars. */
25876
25877 void
25878 x_draw_vertical_border (struct window *w)
25879 {
25880 struct frame *f = XFRAME (WINDOW_FRAME (w));
25881
25882 /* We could do better, if we knew what type of scroll-bar the adjacent
25883 windows (on either side) have... But we don't :-(
25884 However, I think this works ok. ++KFS 2003-04-25 */
25885
25886 /* Redraw borders between horizontally adjacent windows. Don't
25887 do it for frames with vertical scroll bars because either the
25888 right scroll bar of a window, or the left scroll bar of its
25889 neighbor will suffice as a border. */
25890 if (FRAME_HAS_VERTICAL_SCROLL_BARS (XFRAME (w->frame)))
25891 return;
25892
25893 if (!WINDOW_RIGHTMOST_P (w)
25894 && !WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w))
25895 {
25896 int x0, x1, y0, y1;
25897
25898 window_box_edges (w, -1, &x0, &y0, &x1, &y1);
25899 y1 -= 1;
25900
25901 if (WINDOW_LEFT_FRINGE_WIDTH (w) == 0)
25902 x1 -= 1;
25903
25904 FRAME_RIF (f)->draw_vertical_window_border (w, x1, y0, y1);
25905 }
25906 else if (!WINDOW_LEFTMOST_P (w)
25907 && !WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w))
25908 {
25909 int x0, x1, y0, y1;
25910
25911 window_box_edges (w, -1, &x0, &y0, &x1, &y1);
25912 y1 -= 1;
25913
25914 if (WINDOW_LEFT_FRINGE_WIDTH (w) == 0)
25915 x0 -= 1;
25916
25917 FRAME_RIF (f)->draw_vertical_window_border (w, x0, y0, y1);
25918 }
25919 }
25920
25921
25922 /* Redraw the part of window W intersection rectangle FR. Pixel
25923 coordinates in FR are frame-relative. Call this function with
25924 input blocked. Value is non-zero if the exposure overwrites
25925 mouse-face. */
25926
25927 static int
25928 expose_window (struct window *w, XRectangle *fr)
25929 {
25930 struct frame *f = XFRAME (w->frame);
25931 XRectangle wr, r;
25932 int mouse_face_overwritten_p = 0;
25933
25934 /* If window is not yet fully initialized, do nothing. This can
25935 happen when toolkit scroll bars are used and a window is split.
25936 Reconfiguring the scroll bar will generate an expose for a newly
25937 created window. */
25938 if (w->current_matrix == NULL)
25939 return 0;
25940
25941 /* When we're currently updating the window, display and current
25942 matrix usually don't agree. Arrange for a thorough display
25943 later. */
25944 if (w == updated_window)
25945 {
25946 SET_FRAME_GARBAGED (f);
25947 return 0;
25948 }
25949
25950 /* Frame-relative pixel rectangle of W. */
25951 wr.x = WINDOW_LEFT_EDGE_X (w);
25952 wr.y = WINDOW_TOP_EDGE_Y (w);
25953 wr.width = WINDOW_TOTAL_WIDTH (w);
25954 wr.height = WINDOW_TOTAL_HEIGHT (w);
25955
25956 if (x_intersect_rectangles (fr, &wr, &r))
25957 {
25958 int yb = window_text_bottom_y (w);
25959 struct glyph_row *row;
25960 int cursor_cleared_p;
25961 struct glyph_row *first_overlapping_row, *last_overlapping_row;
25962
25963 TRACE ((stderr, "expose_window (%d, %d, %d, %d)\n",
25964 r.x, r.y, r.width, r.height));
25965
25966 /* Convert to window coordinates. */
25967 r.x -= WINDOW_LEFT_EDGE_X (w);
25968 r.y -= WINDOW_TOP_EDGE_Y (w);
25969
25970 /* Turn off the cursor. */
25971 if (!w->pseudo_window_p
25972 && phys_cursor_in_rect_p (w, &r))
25973 {
25974 x_clear_cursor (w);
25975 cursor_cleared_p = 1;
25976 }
25977 else
25978 cursor_cleared_p = 0;
25979
25980 /* Update lines intersecting rectangle R. */
25981 first_overlapping_row = last_overlapping_row = NULL;
25982 for (row = w->current_matrix->rows;
25983 row->enabled_p;
25984 ++row)
25985 {
25986 int y0 = row->y;
25987 int y1 = MATRIX_ROW_BOTTOM_Y (row);
25988
25989 if ((y0 >= r.y && y0 < r.y + r.height)
25990 || (y1 > r.y && y1 < r.y + r.height)
25991 || (r.y >= y0 && r.y < y1)
25992 || (r.y + r.height > y0 && r.y + r.height < y1))
25993 {
25994 /* A header line may be overlapping, but there is no need
25995 to fix overlapping areas for them. KFS 2005-02-12 */
25996 if (row->overlapping_p && !row->mode_line_p)
25997 {
25998 if (first_overlapping_row == NULL)
25999 first_overlapping_row = row;
26000 last_overlapping_row = row;
26001 }
26002
26003 row->clip = fr;
26004 if (expose_line (w, row, &r))
26005 mouse_face_overwritten_p = 1;
26006 row->clip = NULL;
26007 }
26008 else if (row->overlapping_p)
26009 {
26010 /* We must redraw a row overlapping the exposed area. */
26011 if (y0 < r.y
26012 ? y0 + row->phys_height > r.y
26013 : y0 + row->ascent - row->phys_ascent < r.y +r.height)
26014 {
26015 if (first_overlapping_row == NULL)
26016 first_overlapping_row = row;
26017 last_overlapping_row = row;
26018 }
26019 }
26020
26021 if (y1 >= yb)
26022 break;
26023 }
26024
26025 /* Display the mode line if there is one. */
26026 if (WINDOW_WANTS_MODELINE_P (w)
26027 && (row = MATRIX_MODE_LINE_ROW (w->current_matrix),
26028 row->enabled_p)
26029 && row->y < r.y + r.height)
26030 {
26031 if (expose_line (w, row, &r))
26032 mouse_face_overwritten_p = 1;
26033 }
26034
26035 if (!w->pseudo_window_p)
26036 {
26037 /* Fix the display of overlapping rows. */
26038 if (first_overlapping_row)
26039 expose_overlaps (w, first_overlapping_row, last_overlapping_row,
26040 fr);
26041
26042 /* Draw border between windows. */
26043 x_draw_vertical_border (w);
26044
26045 /* Turn the cursor on again. */
26046 if (cursor_cleared_p)
26047 update_window_cursor (w, 1);
26048 }
26049 }
26050
26051 return mouse_face_overwritten_p;
26052 }
26053
26054
26055
26056 /* Redraw (parts) of all windows in the window tree rooted at W that
26057 intersect R. R contains frame pixel coordinates. Value is
26058 non-zero if the exposure overwrites mouse-face. */
26059
26060 static int
26061 expose_window_tree (struct window *w, XRectangle *r)
26062 {
26063 struct frame *f = XFRAME (w->frame);
26064 int mouse_face_overwritten_p = 0;
26065
26066 while (w && !FRAME_GARBAGED_P (f))
26067 {
26068 if (!NILP (w->hchild))
26069 mouse_face_overwritten_p
26070 |= expose_window_tree (XWINDOW (w->hchild), r);
26071 else if (!NILP (w->vchild))
26072 mouse_face_overwritten_p
26073 |= expose_window_tree (XWINDOW (w->vchild), r);
26074 else
26075 mouse_face_overwritten_p |= expose_window (w, r);
26076
26077 w = NILP (w->next) ? NULL : XWINDOW (w->next);
26078 }
26079
26080 return mouse_face_overwritten_p;
26081 }
26082
26083
26084 /* EXPORT:
26085 Redisplay an exposed area of frame F. X and Y are the upper-left
26086 corner of the exposed rectangle. W and H are width and height of
26087 the exposed area. All are pixel values. W or H zero means redraw
26088 the entire frame. */
26089
26090 void
26091 expose_frame (struct frame *f, int x, int y, int w, int h)
26092 {
26093 XRectangle r;
26094 int mouse_face_overwritten_p = 0;
26095
26096 TRACE ((stderr, "expose_frame "));
26097
26098 /* No need to redraw if frame will be redrawn soon. */
26099 if (FRAME_GARBAGED_P (f))
26100 {
26101 TRACE ((stderr, " garbaged\n"));
26102 return;
26103 }
26104
26105 /* If basic faces haven't been realized yet, there is no point in
26106 trying to redraw anything. This can happen when we get an expose
26107 event while Emacs is starting, e.g. by moving another window. */
26108 if (FRAME_FACE_CACHE (f) == NULL
26109 || FRAME_FACE_CACHE (f)->used < BASIC_FACE_ID_SENTINEL)
26110 {
26111 TRACE ((stderr, " no faces\n"));
26112 return;
26113 }
26114
26115 if (w == 0 || h == 0)
26116 {
26117 r.x = r.y = 0;
26118 r.width = FRAME_COLUMN_WIDTH (f) * FRAME_COLS (f);
26119 r.height = FRAME_LINE_HEIGHT (f) * FRAME_LINES (f);
26120 }
26121 else
26122 {
26123 r.x = x;
26124 r.y = y;
26125 r.width = w;
26126 r.height = h;
26127 }
26128
26129 TRACE ((stderr, "(%d, %d, %d, %d)\n", r.x, r.y, r.width, r.height));
26130 mouse_face_overwritten_p = expose_window_tree (XWINDOW (f->root_window), &r);
26131
26132 if (WINDOWP (f->tool_bar_window))
26133 mouse_face_overwritten_p
26134 |= expose_window (XWINDOW (f->tool_bar_window), &r);
26135
26136 #ifdef HAVE_X_WINDOWS
26137 #ifndef MSDOS
26138 #ifndef USE_X_TOOLKIT
26139 if (WINDOWP (f->menu_bar_window))
26140 mouse_face_overwritten_p
26141 |= expose_window (XWINDOW (f->menu_bar_window), &r);
26142 #endif /* not USE_X_TOOLKIT */
26143 #endif
26144 #endif
26145
26146 /* Some window managers support a focus-follows-mouse style with
26147 delayed raising of frames. Imagine a partially obscured frame,
26148 and moving the mouse into partially obscured mouse-face on that
26149 frame. The visible part of the mouse-face will be highlighted,
26150 then the WM raises the obscured frame. With at least one WM, KDE
26151 2.1, Emacs is not getting any event for the raising of the frame
26152 (even tried with SubstructureRedirectMask), only Expose events.
26153 These expose events will draw text normally, i.e. not
26154 highlighted. Which means we must redo the highlight here.
26155 Subsume it under ``we love X''. --gerd 2001-08-15 */
26156 /* Included in Windows version because Windows most likely does not
26157 do the right thing if any third party tool offers
26158 focus-follows-mouse with delayed raise. --jason 2001-10-12 */
26159 if (mouse_face_overwritten_p && !FRAME_GARBAGED_P (f))
26160 {
26161 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
26162 if (f == hlinfo->mouse_face_mouse_frame)
26163 {
26164 int mouse_x = hlinfo->mouse_face_mouse_x;
26165 int mouse_y = hlinfo->mouse_face_mouse_y;
26166 clear_mouse_face (hlinfo);
26167 note_mouse_highlight (f, mouse_x, mouse_y);
26168 }
26169 }
26170 }
26171
26172
26173 /* EXPORT:
26174 Determine the intersection of two rectangles R1 and R2. Return
26175 the intersection in *RESULT. Value is non-zero if RESULT is not
26176 empty. */
26177
26178 int
26179 x_intersect_rectangles (XRectangle *r1, XRectangle *r2, XRectangle *result)
26180 {
26181 XRectangle *left, *right;
26182 XRectangle *upper, *lower;
26183 int intersection_p = 0;
26184
26185 /* Rearrange so that R1 is the left-most rectangle. */
26186 if (r1->x < r2->x)
26187 left = r1, right = r2;
26188 else
26189 left = r2, right = r1;
26190
26191 /* X0 of the intersection is right.x0, if this is inside R1,
26192 otherwise there is no intersection. */
26193 if (right->x <= left->x + left->width)
26194 {
26195 result->x = right->x;
26196
26197 /* The right end of the intersection is the minimum of the
26198 the right ends of left and right. */
26199 result->width = (min (left->x + left->width, right->x + right->width)
26200 - result->x);
26201
26202 /* Same game for Y. */
26203 if (r1->y < r2->y)
26204 upper = r1, lower = r2;
26205 else
26206 upper = r2, lower = r1;
26207
26208 /* The upper end of the intersection is lower.y0, if this is inside
26209 of upper. Otherwise, there is no intersection. */
26210 if (lower->y <= upper->y + upper->height)
26211 {
26212 result->y = lower->y;
26213
26214 /* The lower end of the intersection is the minimum of the lower
26215 ends of upper and lower. */
26216 result->height = (min (lower->y + lower->height,
26217 upper->y + upper->height)
26218 - result->y);
26219 intersection_p = 1;
26220 }
26221 }
26222
26223 return intersection_p;
26224 }
26225
26226 #endif /* HAVE_WINDOW_SYSTEM */
26227
26228 \f
26229 /***********************************************************************
26230 Initialization
26231 ***********************************************************************/
26232
26233 void
26234 syms_of_xdisp (void)
26235 {
26236 Vwith_echo_area_save_vector = Qnil;
26237 staticpro (&Vwith_echo_area_save_vector);
26238
26239 Vmessage_stack = Qnil;
26240 staticpro (&Vmessage_stack);
26241
26242 Qinhibit_redisplay = intern_c_string ("inhibit-redisplay");
26243 staticpro (&Qinhibit_redisplay);
26244
26245 message_dolog_marker1 = Fmake_marker ();
26246 staticpro (&message_dolog_marker1);
26247 message_dolog_marker2 = Fmake_marker ();
26248 staticpro (&message_dolog_marker2);
26249 message_dolog_marker3 = Fmake_marker ();
26250 staticpro (&message_dolog_marker3);
26251
26252 #if GLYPH_DEBUG
26253 defsubr (&Sdump_frame_glyph_matrix);
26254 defsubr (&Sdump_glyph_matrix);
26255 defsubr (&Sdump_glyph_row);
26256 defsubr (&Sdump_tool_bar_row);
26257 defsubr (&Strace_redisplay);
26258 defsubr (&Strace_to_stderr);
26259 #endif
26260 #ifdef HAVE_WINDOW_SYSTEM
26261 defsubr (&Stool_bar_lines_needed);
26262 defsubr (&Slookup_image_map);
26263 #endif
26264 defsubr (&Sformat_mode_line);
26265 defsubr (&Sinvisible_p);
26266 defsubr (&Scurrent_bidi_paragraph_direction);
26267
26268 staticpro (&Qmenu_bar_update_hook);
26269 Qmenu_bar_update_hook = intern_c_string ("menu-bar-update-hook");
26270
26271 staticpro (&Qoverriding_terminal_local_map);
26272 Qoverriding_terminal_local_map = intern_c_string ("overriding-terminal-local-map");
26273
26274 staticpro (&Qoverriding_local_map);
26275 Qoverriding_local_map = intern_c_string ("overriding-local-map");
26276
26277 staticpro (&Qwindow_scroll_functions);
26278 Qwindow_scroll_functions = intern_c_string ("window-scroll-functions");
26279
26280 staticpro (&Qwindow_text_change_functions);
26281 Qwindow_text_change_functions = intern_c_string ("window-text-change-functions");
26282
26283 staticpro (&Qredisplay_end_trigger_functions);
26284 Qredisplay_end_trigger_functions = intern_c_string ("redisplay-end-trigger-functions");
26285
26286 staticpro (&Qinhibit_point_motion_hooks);
26287 Qinhibit_point_motion_hooks = intern_c_string ("inhibit-point-motion-hooks");
26288
26289 Qeval = intern_c_string ("eval");
26290 staticpro (&Qeval);
26291
26292 QCdata = intern_c_string (":data");
26293 staticpro (&QCdata);
26294 Qdisplay = intern_c_string ("display");
26295 staticpro (&Qdisplay);
26296 Qspace_width = intern_c_string ("space-width");
26297 staticpro (&Qspace_width);
26298 Qraise = intern_c_string ("raise");
26299 staticpro (&Qraise);
26300 Qslice = intern_c_string ("slice");
26301 staticpro (&Qslice);
26302 Qspace = intern_c_string ("space");
26303 staticpro (&Qspace);
26304 Qmargin = intern_c_string ("margin");
26305 staticpro (&Qmargin);
26306 Qpointer = intern_c_string ("pointer");
26307 staticpro (&Qpointer);
26308 Qleft_margin = intern_c_string ("left-margin");
26309 staticpro (&Qleft_margin);
26310 Qright_margin = intern_c_string ("right-margin");
26311 staticpro (&Qright_margin);
26312 Qcenter = intern_c_string ("center");
26313 staticpro (&Qcenter);
26314 Qline_height = intern_c_string ("line-height");
26315 staticpro (&Qline_height);
26316 QCalign_to = intern_c_string (":align-to");
26317 staticpro (&QCalign_to);
26318 QCrelative_width = intern_c_string (":relative-width");
26319 staticpro (&QCrelative_width);
26320 QCrelative_height = intern_c_string (":relative-height");
26321 staticpro (&QCrelative_height);
26322 QCeval = intern_c_string (":eval");
26323 staticpro (&QCeval);
26324 QCpropertize = intern_c_string (":propertize");
26325 staticpro (&QCpropertize);
26326 QCfile = intern_c_string (":file");
26327 staticpro (&QCfile);
26328 Qfontified = intern_c_string ("fontified");
26329 staticpro (&Qfontified);
26330 Qfontification_functions = intern_c_string ("fontification-functions");
26331 staticpro (&Qfontification_functions);
26332 Qtrailing_whitespace = intern_c_string ("trailing-whitespace");
26333 staticpro (&Qtrailing_whitespace);
26334 Qescape_glyph = intern_c_string ("escape-glyph");
26335 staticpro (&Qescape_glyph);
26336 Qnobreak_space = intern_c_string ("nobreak-space");
26337 staticpro (&Qnobreak_space);
26338 Qimage = intern_c_string ("image");
26339 staticpro (&Qimage);
26340 Qtext = intern_c_string ("text");
26341 staticpro (&Qtext);
26342 Qboth = intern_c_string ("both");
26343 staticpro (&Qboth);
26344 Qboth_horiz = intern_c_string ("both-horiz");
26345 staticpro (&Qboth_horiz);
26346 Qtext_image_horiz = intern_c_string ("text-image-horiz");
26347 staticpro (&Qtext_image_horiz);
26348 QCmap = intern_c_string (":map");
26349 staticpro (&QCmap);
26350 QCpointer = intern_c_string (":pointer");
26351 staticpro (&QCpointer);
26352 Qrect = intern_c_string ("rect");
26353 staticpro (&Qrect);
26354 Qcircle = intern_c_string ("circle");
26355 staticpro (&Qcircle);
26356 Qpoly = intern_c_string ("poly");
26357 staticpro (&Qpoly);
26358 Qmessage_truncate_lines = intern_c_string ("message-truncate-lines");
26359 staticpro (&Qmessage_truncate_lines);
26360 Qgrow_only = intern_c_string ("grow-only");
26361 staticpro (&Qgrow_only);
26362 Qinhibit_menubar_update = intern_c_string ("inhibit-menubar-update");
26363 staticpro (&Qinhibit_menubar_update);
26364 Qinhibit_eval_during_redisplay = intern_c_string ("inhibit-eval-during-redisplay");
26365 staticpro (&Qinhibit_eval_during_redisplay);
26366 Qposition = intern_c_string ("position");
26367 staticpro (&Qposition);
26368 Qbuffer_position = intern_c_string ("buffer-position");
26369 staticpro (&Qbuffer_position);
26370 Qobject = intern_c_string ("object");
26371 staticpro (&Qobject);
26372 Qbar = intern_c_string ("bar");
26373 staticpro (&Qbar);
26374 Qhbar = intern_c_string ("hbar");
26375 staticpro (&Qhbar);
26376 Qbox = intern_c_string ("box");
26377 staticpro (&Qbox);
26378 Qhollow = intern_c_string ("hollow");
26379 staticpro (&Qhollow);
26380 Qhand = intern_c_string ("hand");
26381 staticpro (&Qhand);
26382 Qarrow = intern_c_string ("arrow");
26383 staticpro (&Qarrow);
26384 Qtext = intern_c_string ("text");
26385 staticpro (&Qtext);
26386 Qinhibit_free_realized_faces = intern_c_string ("inhibit-free-realized-faces");
26387 staticpro (&Qinhibit_free_realized_faces);
26388
26389 list_of_error = Fcons (Fcons (intern_c_string ("error"),
26390 Fcons (intern_c_string ("void-variable"), Qnil)),
26391 Qnil);
26392 staticpro (&list_of_error);
26393
26394 Qlast_arrow_position = intern_c_string ("last-arrow-position");
26395 staticpro (&Qlast_arrow_position);
26396 Qlast_arrow_string = intern_c_string ("last-arrow-string");
26397 staticpro (&Qlast_arrow_string);
26398
26399 Qoverlay_arrow_string = intern_c_string ("overlay-arrow-string");
26400 staticpro (&Qoverlay_arrow_string);
26401 Qoverlay_arrow_bitmap = intern_c_string ("overlay-arrow-bitmap");
26402 staticpro (&Qoverlay_arrow_bitmap);
26403
26404 echo_buffer[0] = echo_buffer[1] = Qnil;
26405 staticpro (&echo_buffer[0]);
26406 staticpro (&echo_buffer[1]);
26407
26408 echo_area_buffer[0] = echo_area_buffer[1] = Qnil;
26409 staticpro (&echo_area_buffer[0]);
26410 staticpro (&echo_area_buffer[1]);
26411
26412 Vmessages_buffer_name = make_pure_c_string ("*Messages*");
26413 staticpro (&Vmessages_buffer_name);
26414
26415 mode_line_proptrans_alist = Qnil;
26416 staticpro (&mode_line_proptrans_alist);
26417 mode_line_string_list = Qnil;
26418 staticpro (&mode_line_string_list);
26419 mode_line_string_face = Qnil;
26420 staticpro (&mode_line_string_face);
26421 mode_line_string_face_prop = Qnil;
26422 staticpro (&mode_line_string_face_prop);
26423 Vmode_line_unwind_vector = Qnil;
26424 staticpro (&Vmode_line_unwind_vector);
26425
26426 help_echo_string = Qnil;
26427 staticpro (&help_echo_string);
26428 help_echo_object = Qnil;
26429 staticpro (&help_echo_object);
26430 help_echo_window = Qnil;
26431 staticpro (&help_echo_window);
26432 previous_help_echo_string = Qnil;
26433 staticpro (&previous_help_echo_string);
26434 help_echo_pos = -1;
26435
26436 Qright_to_left = intern_c_string ("right-to-left");
26437 staticpro (&Qright_to_left);
26438 Qleft_to_right = intern_c_string ("left-to-right");
26439 staticpro (&Qleft_to_right);
26440
26441 #ifdef HAVE_WINDOW_SYSTEM
26442 DEFVAR_BOOL ("x-stretch-cursor", x_stretch_cursor_p,
26443 doc: /* *Non-nil means draw block cursor as wide as the glyph under it.
26444 For example, if a block cursor is over a tab, it will be drawn as
26445 wide as that tab on the display. */);
26446 x_stretch_cursor_p = 0;
26447 #endif
26448
26449 DEFVAR_LISP ("show-trailing-whitespace", Vshow_trailing_whitespace,
26450 doc: /* *Non-nil means highlight trailing whitespace.
26451 The face used for trailing whitespace is `trailing-whitespace'. */);
26452 Vshow_trailing_whitespace = Qnil;
26453
26454 DEFVAR_LISP ("nobreak-char-display", Vnobreak_char_display,
26455 doc: /* *Control highlighting of nobreak space and soft hyphen.
26456 A value of t means highlight the character itself (for nobreak space,
26457 use face `nobreak-space').
26458 A value of nil means no highlighting.
26459 Other values mean display the escape glyph followed by an ordinary
26460 space or ordinary hyphen. */);
26461 Vnobreak_char_display = Qt;
26462
26463 DEFVAR_LISP ("void-text-area-pointer", Vvoid_text_area_pointer,
26464 doc: /* *The pointer shape to show in void text areas.
26465 A value of nil means to show the text pointer. Other options are `arrow',
26466 `text', `hand', `vdrag', `hdrag', `modeline', and `hourglass'. */);
26467 Vvoid_text_area_pointer = Qarrow;
26468
26469 DEFVAR_LISP ("inhibit-redisplay", Vinhibit_redisplay,
26470 doc: /* Non-nil means don't actually do any redisplay.
26471 This is used for internal purposes. */);
26472 Vinhibit_redisplay = Qnil;
26473
26474 DEFVAR_LISP ("global-mode-string", Vglobal_mode_string,
26475 doc: /* String (or mode line construct) included (normally) in `mode-line-format'. */);
26476 Vglobal_mode_string = Qnil;
26477
26478 DEFVAR_LISP ("overlay-arrow-position", Voverlay_arrow_position,
26479 doc: /* Marker for where to display an arrow on top of the buffer text.
26480 This must be the beginning of a line in order to work.
26481 See also `overlay-arrow-string'. */);
26482 Voverlay_arrow_position = Qnil;
26483
26484 DEFVAR_LISP ("overlay-arrow-string", Voverlay_arrow_string,
26485 doc: /* String to display as an arrow in non-window frames.
26486 See also `overlay-arrow-position'. */);
26487 Voverlay_arrow_string = make_pure_c_string ("=>");
26488
26489 DEFVAR_LISP ("overlay-arrow-variable-list", Voverlay_arrow_variable_list,
26490 doc: /* List of variables (symbols) which hold markers for overlay arrows.
26491 The symbols on this list are examined during redisplay to determine
26492 where to display overlay arrows. */);
26493 Voverlay_arrow_variable_list
26494 = Fcons (intern_c_string ("overlay-arrow-position"), Qnil);
26495
26496 DEFVAR_INT ("scroll-step", emacs_scroll_step,
26497 doc: /* *The number of lines to try scrolling a window by when point moves out.
26498 If that fails to bring point back on frame, point is centered instead.
26499 If this is zero, point is always centered after it moves off frame.
26500 If you want scrolling to always be a line at a time, you should set
26501 `scroll-conservatively' to a large value rather than set this to 1. */);
26502
26503 DEFVAR_INT ("scroll-conservatively", scroll_conservatively,
26504 doc: /* *Scroll up to this many lines, to bring point back on screen.
26505 If point moves off-screen, redisplay will scroll by up to
26506 `scroll-conservatively' lines in order to bring point just barely
26507 onto the screen again. If that cannot be done, then redisplay
26508 recenters point as usual.
26509
26510 A value of zero means always recenter point if it moves off screen. */);
26511 scroll_conservatively = 0;
26512
26513 DEFVAR_INT ("scroll-margin", scroll_margin,
26514 doc: /* *Number of lines of margin at the top and bottom of a window.
26515 Recenter the window whenever point gets within this many lines
26516 of the top or bottom of the window. */);
26517 scroll_margin = 0;
26518
26519 DEFVAR_LISP ("display-pixels-per-inch", Vdisplay_pixels_per_inch,
26520 doc: /* Pixels per inch value for non-window system displays.
26521 Value is a number or a cons (WIDTH-DPI . HEIGHT-DPI). */);
26522 Vdisplay_pixels_per_inch = make_float (72.0);
26523
26524 #if GLYPH_DEBUG
26525 DEFVAR_INT ("debug-end-pos", debug_end_pos, doc: /* Don't ask. */);
26526 #endif
26527
26528 DEFVAR_LISP ("truncate-partial-width-windows",
26529 Vtruncate_partial_width_windows,
26530 doc: /* Non-nil means truncate lines in windows narrower than the frame.
26531 For an integer value, truncate lines in each window narrower than the
26532 full frame width, provided the window width is less than that integer;
26533 otherwise, respect the value of `truncate-lines'.
26534
26535 For any other non-nil value, truncate lines in all windows that do
26536 not span the full frame width.
26537
26538 A value of nil means to respect the value of `truncate-lines'.
26539
26540 If `word-wrap' is enabled, you might want to reduce this. */);
26541 Vtruncate_partial_width_windows = make_number (50);
26542
26543 DEFVAR_BOOL ("mode-line-inverse-video", mode_line_inverse_video,
26544 doc: /* When nil, display the mode-line/header-line/menu-bar in the default face.
26545 Any other value means to use the appropriate face, `mode-line',
26546 `header-line', or `menu' respectively. */);
26547 mode_line_inverse_video = 1;
26548
26549 DEFVAR_LISP ("line-number-display-limit", Vline_number_display_limit,
26550 doc: /* *Maximum buffer size for which line number should be displayed.
26551 If the buffer is bigger than this, the line number does not appear
26552 in the mode line. A value of nil means no limit. */);
26553 Vline_number_display_limit = Qnil;
26554
26555 DEFVAR_INT ("line-number-display-limit-width",
26556 line_number_display_limit_width,
26557 doc: /* *Maximum line width (in characters) for line number display.
26558 If the average length of the lines near point is bigger than this, then the
26559 line number may be omitted from the mode line. */);
26560 line_number_display_limit_width = 200;
26561
26562 DEFVAR_BOOL ("highlight-nonselected-windows", highlight_nonselected_windows,
26563 doc: /* *Non-nil means highlight region even in nonselected windows. */);
26564 highlight_nonselected_windows = 0;
26565
26566 DEFVAR_BOOL ("multiple-frames", multiple_frames,
26567 doc: /* Non-nil if more than one frame is visible on this display.
26568 Minibuffer-only frames don't count, but iconified frames do.
26569 This variable is not guaranteed to be accurate except while processing
26570 `frame-title-format' and `icon-title-format'. */);
26571
26572 DEFVAR_LISP ("frame-title-format", Vframe_title_format,
26573 doc: /* Template for displaying the title bar of visible frames.
26574 \(Assuming the window manager supports this feature.)
26575
26576 This variable has the same structure as `mode-line-format', except that
26577 the %c and %l constructs are ignored. It is used only on frames for
26578 which no explicit name has been set \(see `modify-frame-parameters'). */);
26579
26580 DEFVAR_LISP ("icon-title-format", Vicon_title_format,
26581 doc: /* Template for displaying the title bar of an iconified frame.
26582 \(Assuming the window manager supports this feature.)
26583 This variable has the same structure as `mode-line-format' (which see),
26584 and is used only on frames for which no explicit name has been set
26585 \(see `modify-frame-parameters'). */);
26586 Vicon_title_format
26587 = Vframe_title_format
26588 = pure_cons (intern_c_string ("multiple-frames"),
26589 pure_cons (make_pure_c_string ("%b"),
26590 pure_cons (pure_cons (empty_unibyte_string,
26591 pure_cons (intern_c_string ("invocation-name"),
26592 pure_cons (make_pure_c_string ("@"),
26593 pure_cons (intern_c_string ("system-name"),
26594 Qnil)))),
26595 Qnil)));
26596
26597 DEFVAR_LISP ("message-log-max", Vmessage_log_max,
26598 doc: /* Maximum number of lines to keep in the message log buffer.
26599 If nil, disable message logging. If t, log messages but don't truncate
26600 the buffer when it becomes large. */);
26601 Vmessage_log_max = make_number (100);
26602
26603 DEFVAR_LISP ("window-size-change-functions", Vwindow_size_change_functions,
26604 doc: /* Functions called before redisplay, if window sizes have changed.
26605 The value should be a list of functions that take one argument.
26606 Just before redisplay, for each frame, if any of its windows have changed
26607 size since the last redisplay, or have been split or deleted,
26608 all the functions in the list are called, with the frame as argument. */);
26609 Vwindow_size_change_functions = Qnil;
26610
26611 DEFVAR_LISP ("window-scroll-functions", Vwindow_scroll_functions,
26612 doc: /* List of functions to call before redisplaying a window with scrolling.
26613 Each function is called with two arguments, the window and its new
26614 display-start position. Note that these functions are also called by
26615 `set-window-buffer'. Also note that the value of `window-end' is not
26616 valid when these functions are called. */);
26617 Vwindow_scroll_functions = Qnil;
26618
26619 DEFVAR_LISP ("window-text-change-functions",
26620 Vwindow_text_change_functions,
26621 doc: /* Functions to call in redisplay when text in the window might change. */);
26622 Vwindow_text_change_functions = Qnil;
26623
26624 DEFVAR_LISP ("redisplay-end-trigger-functions", Vredisplay_end_trigger_functions,
26625 doc: /* Functions called when redisplay of a window reaches the end trigger.
26626 Each function is called with two arguments, the window and the end trigger value.
26627 See `set-window-redisplay-end-trigger'. */);
26628 Vredisplay_end_trigger_functions = Qnil;
26629
26630 DEFVAR_LISP ("mouse-autoselect-window", Vmouse_autoselect_window,
26631 doc: /* *Non-nil means autoselect window with mouse pointer.
26632 If nil, do not autoselect windows.
26633 A positive number means delay autoselection by that many seconds: a
26634 window is autoselected only after the mouse has remained in that
26635 window for the duration of the delay.
26636 A negative number has a similar effect, but causes windows to be
26637 autoselected only after the mouse has stopped moving. \(Because of
26638 the way Emacs compares mouse events, you will occasionally wait twice
26639 that time before the window gets selected.\)
26640 Any other value means to autoselect window instantaneously when the
26641 mouse pointer enters it.
26642
26643 Autoselection selects the minibuffer only if it is active, and never
26644 unselects the minibuffer if it is active.
26645
26646 When customizing this variable make sure that the actual value of
26647 `focus-follows-mouse' matches the behavior of your window manager. */);
26648 Vmouse_autoselect_window = Qnil;
26649
26650 DEFVAR_LISP ("auto-resize-tool-bars", Vauto_resize_tool_bars,
26651 doc: /* *Non-nil means automatically resize tool-bars.
26652 This dynamically changes the tool-bar's height to the minimum height
26653 that is needed to make all tool-bar items visible.
26654 If value is `grow-only', the tool-bar's height is only increased
26655 automatically; to decrease the tool-bar height, use \\[recenter]. */);
26656 Vauto_resize_tool_bars = Qt;
26657
26658 DEFVAR_BOOL ("auto-raise-tool-bar-buttons", auto_raise_tool_bar_buttons_p,
26659 doc: /* *Non-nil means raise tool-bar buttons when the mouse moves over them. */);
26660 auto_raise_tool_bar_buttons_p = 1;
26661
26662 DEFVAR_BOOL ("make-cursor-line-fully-visible", make_cursor_line_fully_visible_p,
26663 doc: /* *Non-nil means to scroll (recenter) cursor line if it is not fully visible. */);
26664 make_cursor_line_fully_visible_p = 1;
26665
26666 DEFVAR_LISP ("tool-bar-border", Vtool_bar_border,
26667 doc: /* *Border below tool-bar in pixels.
26668 If an integer, use it as the height of the border.
26669 If it is one of `internal-border-width' or `border-width', use the
26670 value of the corresponding frame parameter.
26671 Otherwise, no border is added below the tool-bar. */);
26672 Vtool_bar_border = Qinternal_border_width;
26673
26674 DEFVAR_LISP ("tool-bar-button-margin", Vtool_bar_button_margin,
26675 doc: /* *Margin around tool-bar buttons in pixels.
26676 If an integer, use that for both horizontal and vertical margins.
26677 Otherwise, value should be a pair of integers `(HORZ . VERT)' with
26678 HORZ specifying the horizontal margin, and VERT specifying the
26679 vertical margin. */);
26680 Vtool_bar_button_margin = make_number (DEFAULT_TOOL_BAR_BUTTON_MARGIN);
26681
26682 DEFVAR_INT ("tool-bar-button-relief", tool_bar_button_relief,
26683 doc: /* *Relief thickness of tool-bar buttons. */);
26684 tool_bar_button_relief = DEFAULT_TOOL_BAR_BUTTON_RELIEF;
26685
26686 DEFVAR_LISP ("tool-bar-style", Vtool_bar_style,
26687 doc: /* Tool bar style to use.
26688 It can be one of
26689 image - show images only
26690 text - show text only
26691 both - show both, text below image
26692 both-horiz - show text to the right of the image
26693 text-image-horiz - show text to the left of the image
26694 any other - use system default or image if no system default. */);
26695 Vtool_bar_style = Qnil;
26696
26697 DEFVAR_INT ("tool-bar-max-label-size", tool_bar_max_label_size,
26698 doc: /* *Maximum number of characters a label can have to be shown.
26699 The tool bar style must also show labels for this to have any effect, see
26700 `tool-bar-style'. */);
26701 tool_bar_max_label_size = DEFAULT_TOOL_BAR_LABEL_SIZE;
26702
26703 DEFVAR_LISP ("fontification-functions", Vfontification_functions,
26704 doc: /* List of functions to call to fontify regions of text.
26705 Each function is called with one argument POS. Functions must
26706 fontify a region starting at POS in the current buffer, and give
26707 fontified regions the property `fontified'. */);
26708 Vfontification_functions = Qnil;
26709 Fmake_variable_buffer_local (Qfontification_functions);
26710
26711 DEFVAR_BOOL ("unibyte-display-via-language-environment",
26712 unibyte_display_via_language_environment,
26713 doc: /* *Non-nil means display unibyte text according to language environment.
26714 Specifically, this means that raw bytes in the range 160-255 decimal
26715 are displayed by converting them to the equivalent multibyte characters
26716 according to the current language environment. As a result, they are
26717 displayed according to the current fontset.
26718
26719 Note that this variable affects only how these bytes are displayed,
26720 but does not change the fact they are interpreted as raw bytes. */);
26721 unibyte_display_via_language_environment = 0;
26722
26723 DEFVAR_LISP ("max-mini-window-height", Vmax_mini_window_height,
26724 doc: /* *Maximum height for resizing mini-windows.
26725 If a float, it specifies a fraction of the mini-window frame's height.
26726 If an integer, it specifies a number of lines. */);
26727 Vmax_mini_window_height = make_float (0.25);
26728
26729 DEFVAR_LISP ("resize-mini-windows", Vresize_mini_windows,
26730 doc: /* *How to resize mini-windows.
26731 A value of nil means don't automatically resize mini-windows.
26732 A value of t means resize them to fit the text displayed in them.
26733 A value of `grow-only', the default, means let mini-windows grow
26734 only, until their display becomes empty, at which point the windows
26735 go back to their normal size. */);
26736 Vresize_mini_windows = Qgrow_only;
26737
26738 DEFVAR_LISP ("blink-cursor-alist", Vblink_cursor_alist,
26739 doc: /* Alist specifying how to blink the cursor off.
26740 Each element has the form (ON-STATE . OFF-STATE). Whenever the
26741 `cursor-type' frame-parameter or variable equals ON-STATE,
26742 comparing using `equal', Emacs uses OFF-STATE to specify
26743 how to blink it off. ON-STATE and OFF-STATE are values for
26744 the `cursor-type' frame parameter.
26745
26746 If a frame's ON-STATE has no entry in this list,
26747 the frame's other specifications determine how to blink the cursor off. */);
26748 Vblink_cursor_alist = Qnil;
26749
26750 DEFVAR_BOOL ("auto-hscroll-mode", automatic_hscrolling_p,
26751 doc: /* Allow or disallow automatic horizontal scrolling of windows.
26752 If non-nil, windows are automatically scrolled horizontally to make
26753 point visible. */);
26754 automatic_hscrolling_p = 1;
26755 Qauto_hscroll_mode = intern_c_string ("auto-hscroll-mode");
26756 staticpro (&Qauto_hscroll_mode);
26757
26758 DEFVAR_INT ("hscroll-margin", hscroll_margin,
26759 doc: /* *How many columns away from the window edge point is allowed to get
26760 before automatic hscrolling will horizontally scroll the window. */);
26761 hscroll_margin = 5;
26762
26763 DEFVAR_LISP ("hscroll-step", Vhscroll_step,
26764 doc: /* *How many columns to scroll the window when point gets too close to the edge.
26765 When point is less than `hscroll-margin' columns from the window
26766 edge, automatic hscrolling will scroll the window by the amount of columns
26767 determined by this variable. If its value is a positive integer, scroll that
26768 many columns. If it's a positive floating-point number, it specifies the
26769 fraction of the window's width to scroll. If it's nil or zero, point will be
26770 centered horizontally after the scroll. Any other value, including negative
26771 numbers, are treated as if the value were zero.
26772
26773 Automatic hscrolling always moves point outside the scroll margin, so if
26774 point was more than scroll step columns inside the margin, the window will
26775 scroll more than the value given by the scroll step.
26776
26777 Note that the lower bound for automatic hscrolling specified by `scroll-left'
26778 and `scroll-right' overrides this variable's effect. */);
26779 Vhscroll_step = make_number (0);
26780
26781 DEFVAR_BOOL ("message-truncate-lines", message_truncate_lines,
26782 doc: /* If non-nil, messages are truncated instead of resizing the echo area.
26783 Bind this around calls to `message' to let it take effect. */);
26784 message_truncate_lines = 0;
26785
26786 DEFVAR_LISP ("menu-bar-update-hook", Vmenu_bar_update_hook,
26787 doc: /* Normal hook run to update the menu bar definitions.
26788 Redisplay runs this hook before it redisplays the menu bar.
26789 This is used to update submenus such as Buffers,
26790 whose contents depend on various data. */);
26791 Vmenu_bar_update_hook = Qnil;
26792
26793 DEFVAR_LISP ("menu-updating-frame", Vmenu_updating_frame,
26794 doc: /* Frame for which we are updating a menu.
26795 The enable predicate for a menu binding should check this variable. */);
26796 Vmenu_updating_frame = Qnil;
26797
26798 DEFVAR_BOOL ("inhibit-menubar-update", inhibit_menubar_update,
26799 doc: /* Non-nil means don't update menu bars. Internal use only. */);
26800 inhibit_menubar_update = 0;
26801
26802 DEFVAR_LISP ("wrap-prefix", Vwrap_prefix,
26803 doc: /* Prefix prepended to all continuation lines at display time.
26804 The value may be a string, an image, or a stretch-glyph; it is
26805 interpreted in the same way as the value of a `display' text property.
26806
26807 This variable is overridden by any `wrap-prefix' text or overlay
26808 property.
26809
26810 To add a prefix to non-continuation lines, use `line-prefix'. */);
26811 Vwrap_prefix = Qnil;
26812 staticpro (&Qwrap_prefix);
26813 Qwrap_prefix = intern_c_string ("wrap-prefix");
26814 Fmake_variable_buffer_local (Qwrap_prefix);
26815
26816 DEFVAR_LISP ("line-prefix", Vline_prefix,
26817 doc: /* Prefix prepended to all non-continuation lines at display time.
26818 The value may be a string, an image, or a stretch-glyph; it is
26819 interpreted in the same way as the value of a `display' text property.
26820
26821 This variable is overridden by any `line-prefix' text or overlay
26822 property.
26823
26824 To add a prefix to continuation lines, use `wrap-prefix'. */);
26825 Vline_prefix = Qnil;
26826 staticpro (&Qline_prefix);
26827 Qline_prefix = intern_c_string ("line-prefix");
26828 Fmake_variable_buffer_local (Qline_prefix);
26829
26830 DEFVAR_BOOL ("inhibit-eval-during-redisplay", inhibit_eval_during_redisplay,
26831 doc: /* Non-nil means don't eval Lisp during redisplay. */);
26832 inhibit_eval_during_redisplay = 0;
26833
26834 DEFVAR_BOOL ("inhibit-free-realized-faces", inhibit_free_realized_faces,
26835 doc: /* Non-nil means don't free realized faces. Internal use only. */);
26836 inhibit_free_realized_faces = 0;
26837
26838 #if GLYPH_DEBUG
26839 DEFVAR_BOOL ("inhibit-try-window-id", inhibit_try_window_id,
26840 doc: /* Inhibit try_window_id display optimization. */);
26841 inhibit_try_window_id = 0;
26842
26843 DEFVAR_BOOL ("inhibit-try-window-reusing", inhibit_try_window_reusing,
26844 doc: /* Inhibit try_window_reusing display optimization. */);
26845 inhibit_try_window_reusing = 0;
26846
26847 DEFVAR_BOOL ("inhibit-try-cursor-movement", inhibit_try_cursor_movement,
26848 doc: /* Inhibit try_cursor_movement display optimization. */);
26849 inhibit_try_cursor_movement = 0;
26850 #endif /* GLYPH_DEBUG */
26851
26852 DEFVAR_INT ("overline-margin", overline_margin,
26853 doc: /* *Space between overline and text, in pixels.
26854 The default value is 2: the height of the overline (1 pixel) plus 1 pixel
26855 margin to the caracter height. */);
26856 overline_margin = 2;
26857
26858 DEFVAR_INT ("underline-minimum-offset",
26859 underline_minimum_offset,
26860 doc: /* Minimum distance between baseline and underline.
26861 This can improve legibility of underlined text at small font sizes,
26862 particularly when using variable `x-use-underline-position-properties'
26863 with fonts that specify an UNDERLINE_POSITION relatively close to the
26864 baseline. The default value is 1. */);
26865 underline_minimum_offset = 1;
26866
26867 DEFVAR_BOOL ("display-hourglass", display_hourglass_p,
26868 doc: /* Non-nil means show an hourglass pointer, when Emacs is busy.
26869 This feature only works when on a window system that can change
26870 cursor shapes. */);
26871 display_hourglass_p = 1;
26872
26873 DEFVAR_LISP ("hourglass-delay", Vhourglass_delay,
26874 doc: /* *Seconds to wait before displaying an hourglass pointer when Emacs is busy. */);
26875 Vhourglass_delay = make_number (DEFAULT_HOURGLASS_DELAY);
26876
26877 hourglass_atimer = NULL;
26878 hourglass_shown_p = 0;
26879
26880 DEFSYM (Qglyphless_char, "glyphless-char");
26881 DEFSYM (Qhex_code, "hex-code");
26882 DEFSYM (Qempty_box, "empty-box");
26883 DEFSYM (Qthin_space, "thin-space");
26884 DEFSYM (Qzero_width, "zero-width");
26885
26886 DEFSYM (Qglyphless_char_display, "glyphless-char-display");
26887 /* Intern this now in case it isn't already done.
26888 Setting this variable twice is harmless.
26889 But don't staticpro it here--that is done in alloc.c. */
26890 Qchar_table_extra_slots = intern_c_string ("char-table-extra-slots");
26891 Fput (Qglyphless_char_display, Qchar_table_extra_slots, make_number (1));
26892
26893 DEFVAR_LISP ("glyphless-char-display", Vglyphless_char_display,
26894 doc: /* Char-table to control displaying of glyphless characters.
26895 Each element, if non-nil, is an ASCII acronym string (displayed in a box)
26896 or one of these symbols:
26897 hex-code: display the hexadecimal code of a character in a box
26898 empty-box: display as an empty box
26899 thin-space: display as 1-pixel width space
26900 zero-width: don't display
26901
26902 It has one extra slot to control the display of a character for which
26903 no font is found. The value of the slot is `hex-code' or `empty-box'.
26904 The default is `empty-box'. */);
26905 Vglyphless_char_display = Fmake_char_table (Qglyphless_char_display, Qnil);
26906 Fset_char_table_extra_slot (Vglyphless_char_display, make_number (0),
26907 Qempty_box);
26908 }
26909
26910
26911 /* Initialize this module when Emacs starts. */
26912
26913 void
26914 init_xdisp (void)
26915 {
26916 Lisp_Object root_window;
26917 struct window *mini_w;
26918
26919 current_header_line_height = current_mode_line_height = -1;
26920
26921 CHARPOS (this_line_start_pos) = 0;
26922
26923 mini_w = XWINDOW (minibuf_window);
26924 root_window = FRAME_ROOT_WINDOW (XFRAME (WINDOW_FRAME (mini_w)));
26925
26926 if (!noninteractive)
26927 {
26928 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (root_window)));
26929 int i;
26930
26931 XWINDOW (root_window)->top_line = make_number (FRAME_TOP_MARGIN (f));
26932 set_window_height (root_window,
26933 FRAME_LINES (f) - 1 - FRAME_TOP_MARGIN (f),
26934 0);
26935 mini_w->top_line = make_number (FRAME_LINES (f) - 1);
26936 set_window_height (minibuf_window, 1, 0);
26937
26938 XWINDOW (root_window)->total_cols = make_number (FRAME_COLS (f));
26939 mini_w->total_cols = make_number (FRAME_COLS (f));
26940
26941 scratch_glyph_row.glyphs[TEXT_AREA] = scratch_glyphs;
26942 scratch_glyph_row.glyphs[TEXT_AREA + 1]
26943 = scratch_glyphs + MAX_SCRATCH_GLYPHS;
26944
26945 /* The default ellipsis glyphs `...'. */
26946 for (i = 0; i < 3; ++i)
26947 default_invis_vector[i] = make_number ('.');
26948 }
26949
26950 {
26951 /* Allocate the buffer for frame titles.
26952 Also used for `format-mode-line'. */
26953 int size = 100;
26954 mode_line_noprop_buf = (char *) xmalloc (size);
26955 mode_line_noprop_buf_end = mode_line_noprop_buf + size;
26956 mode_line_noprop_ptr = mode_line_noprop_buf;
26957 mode_line_target = MODE_LINE_DISPLAY;
26958 }
26959
26960 help_echo_showing_p = 0;
26961 }
26962
26963 /* Since w32 does not support atimers, it defines its own implementation of
26964 the following three functions in w32fns.c. */
26965 #ifndef WINDOWSNT
26966
26967 /* Platform-independent portion of hourglass implementation. */
26968
26969 /* Return non-zero if houglass timer has been started or hourglass is shown. */
26970 int
26971 hourglass_started (void)
26972 {
26973 return hourglass_shown_p || hourglass_atimer != NULL;
26974 }
26975
26976 /* Cancel a currently active hourglass timer, and start a new one. */
26977 void
26978 start_hourglass (void)
26979 {
26980 #if defined (HAVE_WINDOW_SYSTEM)
26981 EMACS_TIME delay;
26982 int secs, usecs = 0;
26983
26984 cancel_hourglass ();
26985
26986 if (INTEGERP (Vhourglass_delay)
26987 && XINT (Vhourglass_delay) > 0)
26988 secs = XFASTINT (Vhourglass_delay);
26989 else if (FLOATP (Vhourglass_delay)
26990 && XFLOAT_DATA (Vhourglass_delay) > 0)
26991 {
26992 Lisp_Object tem;
26993 tem = Ftruncate (Vhourglass_delay, Qnil);
26994 secs = XFASTINT (tem);
26995 usecs = (XFLOAT_DATA (Vhourglass_delay) - secs) * 1000000;
26996 }
26997 else
26998 secs = DEFAULT_HOURGLASS_DELAY;
26999
27000 EMACS_SET_SECS_USECS (delay, secs, usecs);
27001 hourglass_atimer = start_atimer (ATIMER_RELATIVE, delay,
27002 show_hourglass, NULL);
27003 #endif
27004 }
27005
27006
27007 /* Cancel the hourglass cursor timer if active, hide a busy cursor if
27008 shown. */
27009 void
27010 cancel_hourglass (void)
27011 {
27012 #if defined (HAVE_WINDOW_SYSTEM)
27013 if (hourglass_atimer)
27014 {
27015 cancel_atimer (hourglass_atimer);
27016 hourglass_atimer = NULL;
27017 }
27018
27019 if (hourglass_shown_p)
27020 hide_hourglass ();
27021 #endif
27022 }
27023 #endif /* ! WINDOWSNT */