1 /* Display generation from window structure and buffer text.
3 Copyright (C) 1985-1988, 1993-1995, 1997-2011 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 /* New redisplay written by Gerd Moellmann <gerd@gnu.org>.
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
29 Updating the display is triggered by the Lisp interpreter when it
30 decides it's time to do it. This is done either automatically for
31 you as part of the interpreter's command loop or as the result of
32 calling Lisp functions like `sit-for'. The C function `redisplay'
33 in xdisp.c is the only entry into the inner redisplay code.
35 The following diagram shows how redisplay code is invoked. As you
36 can see, Lisp calls redisplay and vice versa. Under window systems
37 like X, some portions of the redisplay code are also called
38 asynchronously during mouse movement or expose events. It is very
39 important that these code parts do NOT use the C library (malloc,
40 free) because many C libraries under Unix are not reentrant. They
41 may also NOT call functions of the Lisp interpreter which could
42 change the interpreter's state. If you don't follow these rules,
43 you will encounter bugs which are very hard to explain.
45 +--------------+ redisplay +----------------+
46 | Lisp machine |---------------->| Redisplay code |<--+
47 +--------------+ (xdisp.c) +----------------+ |
49 +----------------------------------+ |
50 Don't use this path when called |
53 expose_window (asynchronous) |
55 X expose events -----+
57 What does redisplay do? Obviously, it has to figure out somehow what
58 has been changed since the last time the display has been updated,
59 and to make these changes visible. Preferably it would do that in
60 a moderately intelligent way, i.e. fast.
62 Changes in buffer text can be deduced from window and buffer
63 structures, and from some global variables like `beg_unchanged' and
64 `end_unchanged'. The contents of the display are additionally
65 recorded in a `glyph matrix', a two-dimensional matrix of glyph
66 structures. Each row in such a matrix corresponds to a line on the
67 display, and each glyph in a row corresponds to a column displaying
68 a character, an image, or what else. This matrix is called the
69 `current glyph matrix' or `current matrix' in redisplay
72 For buffer parts that have been changed since the last update, a
73 second glyph matrix is constructed, the so called `desired glyph
74 matrix' or short `desired matrix'. Current and desired matrix are
75 then compared to find a cheap way to update the display, e.g. by
76 reusing part of the display by scrolling lines.
78 You will find a lot of redisplay optimizations when you start
79 looking at the innards of redisplay. The overall goal of all these
80 optimizations is to make redisplay fast because it is done
81 frequently. Some of these optimizations are implemented by the
86 This function tries to update the display if the text in the
87 window did not change and did not scroll, only point moved, and
88 it did not move off the displayed portion of the text.
90 . try_window_reusing_current_matrix
92 This function reuses the current matrix of a window when text
93 has not changed, but the window start changed (e.g., due to
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.
104 This function performs the full redisplay of a single window
105 assuming that its fonts were not changed and that the cursor
106 will not end up in the scroll margins. (Loading fonts requires
107 re-adjustment of dimensions of glyph matrices, which makes this
108 method impossible to use.)
110 These optimizations are tried in sequence (some can be skipped if
111 it is known that they are not applicable). If none of the
112 optimizations were successful, redisplay calls redisplay_windows,
113 which performs a full redisplay of all windows.
117 Desired matrices are always built per Emacs window. The function
118 `display_line' is the central function to look at if you are
119 interested. It constructs one row in a desired matrix given an
120 iterator structure containing both a buffer position and a
121 description of the environment in which the text is to be
122 displayed. But this is too early, read on.
124 Characters and pixmaps displayed for a range of buffer text depend
125 on various settings of buffers and windows, on overlays and text
126 properties, on display tables, on selective display. The good news
127 is that all this hairy stuff is hidden behind a small set of
128 interface functions taking an iterator structure (struct it)
131 Iteration over things to be displayed is then simple. It is
132 started by initializing an iterator with a call to init_iterator,
133 passing it the buffer position where to start iteration. For
134 iteration over strings, pass -1 as the position to init_iterator,
135 and call reseat_to_string when the string is ready, to initialize
136 the iterator for that string. Thereafter, calls to
137 get_next_display_element fill the iterator structure with relevant
138 information about the next thing to display. Calls to
139 set_iterator_to_next move the iterator to the next thing.
141 Besides this, an iterator also contains information about the
142 display environment in which glyphs for display elements are to be
143 produced. It has fields for the width and height of the display,
144 the information whether long lines are truncated or continued, a
145 current X and Y position, and lots of other stuff you can better
148 Glyphs in a desired matrix are normally constructed in a loop
149 calling get_next_display_element and then PRODUCE_GLYPHS. The call
150 to PRODUCE_GLYPHS will fill the iterator structure with pixel
151 information about the element being displayed and at the same time
152 produce glyphs for it. If the display element fits on the line
153 being displayed, set_iterator_to_next is called next, otherwise the
154 glyphs produced are discarded. The function display_line is the
155 workhorse of filling glyph rows in the desired matrix with glyphs.
156 In addition to producing glyphs, it also handles line truncation
157 and continuation, word wrap, and cursor positioning (for the
158 latter, see also set_cursor_from_row).
162 That just couldn't be all, could it? What about terminal types not
163 supporting operations on sub-windows of the screen? To update the
164 display on such a terminal, window-based glyph matrices are not
165 well suited. To be able to reuse part of the display (scrolling
166 lines up and down), we must instead have a view of the whole
167 screen. This is what `frame matrices' are for. They are a trick.
169 Frames on terminals like above have a glyph pool. Windows on such
170 a frame sub-allocate their glyph memory from their frame's glyph
171 pool. The frame itself is given its own glyph matrices. By
172 coincidence---or maybe something else---rows in window glyph
173 matrices are slices of corresponding rows in frame matrices. Thus
174 writing to window matrices implicitly updates a frame matrix which
175 provides us with the view of the whole screen that we originally
176 wanted to have without having to move many bytes around. To be
177 honest, there is a little bit more done, but not much more. If you
178 plan to extend that code, take a look at dispnew.c. The function
179 build_frame_matrix is a good starting point.
181 Bidirectional display.
183 Bidirectional display adds quite some hair to this already complex
184 design. The good news are that a large portion of that hairy stuff
185 is hidden in bidi.c behind only 3 interfaces. bidi.c implements a
186 reordering engine which is called by set_iterator_to_next and
187 returns the next character to display in the visual order. See
188 commentary on bidi.c for more details. As far as redisplay is
189 concerned, the effect of calling bidi_move_to_visually_next, the
190 main interface of the reordering engine, is that the iterator gets
191 magically placed on the buffer or string position that is to be
192 displayed next. In other words, a linear iteration through the
193 buffer/string is replaced with a non-linear one. All the rest of
194 the redisplay is oblivious to the bidi reordering.
196 Well, almost oblivious---there are still complications, most of
197 them due to the fact that buffer and string positions no longer
198 change monotonously with glyph indices in a glyph row. Moreover,
199 for continued lines, the buffer positions may not even be
200 monotonously changing with vertical positions. Also, accounting
201 for face changes, overlays, etc. becomes more complex because
202 non-linear iteration could potentially skip many positions with
203 changes, and then cross them again on the way back...
205 One other prominent effect of bidirectional display is that some
206 paragraphs of text need to be displayed starting at the right
207 margin of the window---the so-called right-to-left, or R2L
208 paragraphs. R2L paragraphs are displayed with R2L glyph rows,
209 which have their reversed_p flag set. The bidi reordering engine
210 produces characters in such rows starting from the character which
211 should be the rightmost on display. PRODUCE_GLYPHS then reverses
212 the order, when it fills up the glyph row whose reversed_p flag is
213 set, by prepending each new glyph to what is already there, instead
214 of appending it. When the glyph row is complete, the function
215 extend_face_to_end_of_line fills the empty space to the left of the
216 leftmost character with special glyphs, which will display as,
217 well, empty. On text terminals, these special glyphs are simply
218 blank characters. On graphics terminals, there's a single stretch
219 glyph of a suitably computed width. Both the blanks and the
220 stretch glyph are given the face of the background of the line.
221 This way, the terminal-specific back-end can still draw the glyphs
222 left to right, even for R2L lines.
224 Bidirectional display and character compositions
226 Some scripts cannot be displayed by drawing each character
227 individually, because adjacent characters change each other's shape
228 on display. For example, Arabic and Indic scripts belong to this
231 Emacs display supports this by providing "character compositions",
232 most of which is implemented in composite.c. During the buffer
233 scan that delivers characters to PRODUCE_GLYPHS, if the next
234 character to be delivered is a composed character, the iteration
235 calls composition_reseat_it and next_element_from_composition. If
236 they succeed to compose the character with one or more of the
237 following characters, the whole sequence of characters that where
238 composed is recorded in the `struct composition_it' object that is
239 part of the buffer iterator. The composed sequence could produce
240 one or more font glyphs (called "grapheme clusters") on the screen.
241 Each of these grapheme clusters is then delivered to PRODUCE_GLYPHS
242 in the direction corresponding to the current bidi scan direction
243 (recorded in the scan_dir member of the `struct bidi_it' object
244 that is part of the buffer iterator). In particular, if the bidi
245 iterator currently scans the buffer backwards, the grapheme
246 clusters are delivered back to front. This reorders the grapheme
247 clusters as appropriate for the current bidi context. Note that
248 this means that the grapheme clusters are always stored in the
249 LGSTRING object (see composite.c) in the logical order.
251 Moving an iterator in bidirectional text
252 without producing glyphs
254 Note one important detail mentioned above: that the bidi reordering
255 engine, driven by the iterator, produces characters in R2L rows
256 starting at the character that will be the rightmost on display.
257 As far as the iterator is concerned, the geometry of such rows is
258 still left to right, i.e. the iterator "thinks" the first character
259 is at the leftmost pixel position. The iterator does not know that
260 PRODUCE_GLYPHS reverses the order of the glyphs that the iterator
261 delivers. This is important when functions from the the move_it_*
262 family are used to get to certain screen position or to match
263 screen coordinates with buffer coordinates: these functions use the
264 iterator geometry, which is left to right even in R2L paragraphs.
265 This works well with most callers of move_it_*, because they need
266 to get to a specific column, and columns are still numbered in the
267 reading order, i.e. the rightmost character in a R2L paragraph is
268 still column zero. But some callers do not get well with this; a
269 notable example is mouse clicks that need to find the character
270 that corresponds to certain pixel coordinates. See
271 buffer_posn_from_coords in dispnew.c for how this is handled. */
279 #include "keyboard.h"
282 #include "termchar.h"
283 #include "dispextern.h"
285 #include "character.h"
288 #include "commands.h"
292 #include "termhooks.h"
293 #include "termopts.h"
294 #include "intervals.h"
297 #include "region-cache.h"
300 #include "blockinput.h"
302 #ifdef HAVE_X_WINDOWS
317 #ifndef FRAME_X_OUTPUT
318 #define FRAME_X_OUTPUT(f) ((f)->output_data.x)
321 #define INFINITY 10000000
323 Lisp_Object Qoverriding_local_map
, Qoverriding_terminal_local_map
;
324 Lisp_Object Qwindow_scroll_functions
;
325 static Lisp_Object Qwindow_text_change_functions
;
326 static Lisp_Object Qredisplay_end_trigger_functions
;
327 Lisp_Object Qinhibit_point_motion_hooks
;
328 static Lisp_Object QCeval
, QCpropertize
;
329 Lisp_Object QCfile
, QCdata
;
330 static Lisp_Object Qfontified
;
331 static Lisp_Object Qgrow_only
;
332 static Lisp_Object Qinhibit_eval_during_redisplay
;
333 static Lisp_Object Qbuffer_position
, Qposition
, Qobject
;
334 static Lisp_Object Qright_to_left
, Qleft_to_right
;
337 Lisp_Object Qbar
, Qhbar
, Qbox
, Qhollow
;
340 static Lisp_Object Qarrow
, Qhand
;
343 /* Holds the list (error). */
344 static Lisp_Object list_of_error
;
346 static Lisp_Object Qfontification_functions
;
348 static Lisp_Object Qwrap_prefix
;
349 static Lisp_Object Qline_prefix
;
351 /* Non-nil means don't actually do any redisplay. */
353 Lisp_Object Qinhibit_redisplay
;
355 /* Names of text properties relevant for redisplay. */
357 Lisp_Object Qdisplay
;
359 Lisp_Object Qspace
, QCalign_to
;
360 static Lisp_Object QCrelative_width
, QCrelative_height
;
361 Lisp_Object Qleft_margin
, Qright_margin
;
362 static Lisp_Object Qspace_width
, Qraise
;
363 static Lisp_Object Qslice
;
365 static Lisp_Object Qmargin
, Qpointer
;
366 static Lisp_Object Qline_height
;
368 #ifdef HAVE_WINDOW_SYSTEM
370 /* Test if overflow newline into fringe. Called with iterator IT
371 at or past right window margin, and with IT->current_x set. */
373 #define IT_OVERFLOW_NEWLINE_INTO_FRINGE(IT) \
374 (!NILP (Voverflow_newline_into_fringe) \
375 && FRAME_WINDOW_P ((IT)->f) \
376 && ((IT)->bidi_it.paragraph_dir == R2L \
377 ? (WINDOW_LEFT_FRINGE_WIDTH ((IT)->w) > 0) \
378 : (WINDOW_RIGHT_FRINGE_WIDTH ((IT)->w) > 0)) \
379 && (IT)->current_x == (IT)->last_visible_x \
380 && (IT)->line_wrap != WORD_WRAP)
382 #else /* !HAVE_WINDOW_SYSTEM */
383 #define IT_OVERFLOW_NEWLINE_INTO_FRINGE(it) 0
384 #endif /* HAVE_WINDOW_SYSTEM */
386 /* Test if the display element loaded in IT is a space or tab
387 character. This is used to determine word wrapping. */
389 #define IT_DISPLAYING_WHITESPACE(it) \
390 (it->what == IT_CHARACTER && (it->c == ' ' || it->c == '\t'))
392 /* Name of the face used to highlight trailing whitespace. */
394 static Lisp_Object Qtrailing_whitespace
;
396 /* Name and number of the face used to highlight escape glyphs. */
398 static Lisp_Object Qescape_glyph
;
400 /* Name and number of the face used to highlight non-breaking spaces. */
402 static Lisp_Object Qnobreak_space
;
404 /* The symbol `image' which is the car of the lists used to represent
405 images in Lisp. Also a tool bar style. */
409 /* The image map types. */
411 static Lisp_Object QCpointer
;
412 static Lisp_Object Qrect
, Qcircle
, Qpoly
;
414 /* Tool bar styles */
415 Lisp_Object Qboth
, Qboth_horiz
, Qtext_image_horiz
;
417 /* Non-zero means print newline to stdout before next mini-buffer
420 int noninteractive_need_newline
;
422 /* Non-zero means print newline to message log before next message. */
424 static int message_log_need_newline
;
426 /* Three markers that message_dolog uses.
427 It could allocate them itself, but that causes trouble
428 in handling memory-full errors. */
429 static Lisp_Object message_dolog_marker1
;
430 static Lisp_Object message_dolog_marker2
;
431 static Lisp_Object message_dolog_marker3
;
433 /* The buffer position of the first character appearing entirely or
434 partially on the line of the selected window which contains the
435 cursor; <= 0 if not known. Set by set_cursor_from_row, used for
436 redisplay optimization in redisplay_internal. */
438 static struct text_pos this_line_start_pos
;
440 /* Number of characters past the end of the line above, including the
441 terminating newline. */
443 static struct text_pos this_line_end_pos
;
445 /* The vertical positions and the height of this line. */
447 static int this_line_vpos
;
448 static int this_line_y
;
449 static int this_line_pixel_height
;
451 /* X position at which this display line starts. Usually zero;
452 negative if first character is partially visible. */
454 static int this_line_start_x
;
456 /* The smallest character position seen by move_it_* functions as they
457 move across display lines. Used to set MATRIX_ROW_START_CHARPOS of
458 hscrolled lines, see display_line. */
460 static struct text_pos this_line_min_pos
;
462 /* Buffer that this_line_.* variables are referring to. */
464 static struct buffer
*this_line_buffer
;
467 /* Values of those variables at last redisplay are stored as
468 properties on `overlay-arrow-position' symbol. However, if
469 Voverlay_arrow_position is a marker, last-arrow-position is its
470 numerical position. */
472 static Lisp_Object Qlast_arrow_position
, Qlast_arrow_string
;
474 /* Alternative overlay-arrow-string and overlay-arrow-bitmap
475 properties on a symbol in overlay-arrow-variable-list. */
477 static Lisp_Object Qoverlay_arrow_string
, Qoverlay_arrow_bitmap
;
479 Lisp_Object Qmenu_bar_update_hook
;
481 /* Nonzero if an overlay arrow has been displayed in this window. */
483 static int overlay_arrow_seen
;
485 /* Number of windows showing the buffer of the selected window (or
486 another buffer with the same base buffer). keyboard.c refers to
491 /* Vector containing glyphs for an ellipsis `...'. */
493 static Lisp_Object default_invis_vector
[3];
495 /* This is the window where the echo area message was displayed. It
496 is always a mini-buffer window, but it may not be the same window
497 currently active as a mini-buffer. */
499 Lisp_Object echo_area_window
;
501 /* List of pairs (MESSAGE . MULTIBYTE). The function save_message
502 pushes the current message and the value of
503 message_enable_multibyte on the stack, the function restore_message
504 pops the stack and displays MESSAGE again. */
506 static Lisp_Object Vmessage_stack
;
508 /* Nonzero means multibyte characters were enabled when the echo area
509 message was specified. */
511 static int message_enable_multibyte
;
513 /* Nonzero if we should redraw the mode lines on the next redisplay. */
515 int update_mode_lines
;
517 /* Nonzero if window sizes or contents have changed since last
518 redisplay that finished. */
520 int windows_or_buffers_changed
;
522 /* Nonzero means a frame's cursor type has been changed. */
524 int cursor_type_changed
;
526 /* Nonzero after display_mode_line if %l was used and it displayed a
529 static int line_number_displayed
;
531 /* The name of the *Messages* buffer, a string. */
533 static Lisp_Object Vmessages_buffer_name
;
535 /* Current, index 0, and last displayed echo area message. Either
536 buffers from echo_buffers, or nil to indicate no message. */
538 Lisp_Object echo_area_buffer
[2];
540 /* The buffers referenced from echo_area_buffer. */
542 static Lisp_Object echo_buffer
[2];
544 /* A vector saved used in with_area_buffer to reduce consing. */
546 static Lisp_Object Vwith_echo_area_save_vector
;
548 /* Non-zero means display_echo_area should display the last echo area
549 message again. Set by redisplay_preserve_echo_area. */
551 static int display_last_displayed_message_p
;
553 /* Nonzero if echo area is being used by print; zero if being used by
556 static int message_buf_print
;
558 /* The symbol `inhibit-menubar-update' and its DEFVAR_BOOL variable. */
560 static Lisp_Object Qinhibit_menubar_update
;
561 static Lisp_Object Qmessage_truncate_lines
;
563 /* Set to 1 in clear_message to make redisplay_internal aware
564 of an emptied echo area. */
566 static int message_cleared_p
;
568 /* A scratch glyph row with contents used for generating truncation
569 glyphs. Also used in direct_output_for_insert. */
571 #define MAX_SCRATCH_GLYPHS 100
572 static struct glyph_row scratch_glyph_row
;
573 static struct glyph scratch_glyphs
[MAX_SCRATCH_GLYPHS
];
575 /* Ascent and height of the last line processed by move_it_to. */
577 static int last_max_ascent
, last_height
;
579 /* Non-zero if there's a help-echo in the echo area. */
581 int help_echo_showing_p
;
583 /* If >= 0, computed, exact values of mode-line and header-line height
584 to use in the macros CURRENT_MODE_LINE_HEIGHT and
585 CURRENT_HEADER_LINE_HEIGHT. */
587 int current_mode_line_height
, current_header_line_height
;
589 /* The maximum distance to look ahead for text properties. Values
590 that are too small let us call compute_char_face and similar
591 functions too often which is expensive. Values that are too large
592 let us call compute_char_face and alike too often because we
593 might not be interested in text properties that far away. */
595 #define TEXT_PROP_DISTANCE_LIMIT 100
597 /* SAVE_IT and RESTORE_IT are called when we save a snapshot of the
598 iterator state and later restore it. This is needed because the
599 bidi iterator on bidi.c keeps a stacked cache of its states, which
600 is really a singleton. When we use scratch iterator objects to
601 move around the buffer, we can cause the bidi cache to be pushed or
602 popped, and therefore we need to restore the cache state when we
603 return to the original iterator. */
604 #define SAVE_IT(ITCOPY,ITORIG,CACHE) \
609 CACHE = bidi_shelve_cache(); \
612 #define RESTORE_IT(pITORIG,pITCOPY,CACHE) \
614 if (pITORIG != pITCOPY) \
615 *(pITORIG) = *(pITCOPY); \
616 bidi_unshelve_cache (CACHE); \
622 /* Non-zero means print traces of redisplay if compiled with
625 int trace_redisplay_p
;
627 #endif /* GLYPH_DEBUG */
629 #ifdef DEBUG_TRACE_MOVE
630 /* Non-zero means trace with TRACE_MOVE to stderr. */
633 #define TRACE_MOVE(x) if (trace_move) fprintf x; else (void) 0
635 #define TRACE_MOVE(x) (void) 0
638 static Lisp_Object Qauto_hscroll_mode
;
640 /* Buffer being redisplayed -- for redisplay_window_error. */
642 static struct buffer
*displayed_buffer
;
644 /* Value returned from text property handlers (see below). */
649 HANDLED_RECOMPUTE_PROPS
,
650 HANDLED_OVERLAY_STRING_CONSUMED
,
654 /* A description of text properties that redisplay is interested
659 /* The name of the property. */
662 /* A unique index for the property. */
665 /* A handler function called to set up iterator IT from the property
666 at IT's current position. Value is used to steer handle_stop. */
667 enum prop_handled (*handler
) (struct it
*it
);
670 static enum prop_handled
handle_face_prop (struct it
*);
671 static enum prop_handled
handle_invisible_prop (struct it
*);
672 static enum prop_handled
handle_display_prop (struct it
*);
673 static enum prop_handled
handle_composition_prop (struct it
*);
674 static enum prop_handled
handle_overlay_change (struct it
*);
675 static enum prop_handled
handle_fontified_prop (struct it
*);
677 /* Properties handled by iterators. */
679 static struct props it_props
[] =
681 {&Qfontified
, FONTIFIED_PROP_IDX
, handle_fontified_prop
},
682 /* Handle `face' before `display' because some sub-properties of
683 `display' need to know the face. */
684 {&Qface
, FACE_PROP_IDX
, handle_face_prop
},
685 {&Qdisplay
, DISPLAY_PROP_IDX
, handle_display_prop
},
686 {&Qinvisible
, INVISIBLE_PROP_IDX
, handle_invisible_prop
},
687 {&Qcomposition
, COMPOSITION_PROP_IDX
, handle_composition_prop
},
691 /* Value is the position described by X. If X is a marker, value is
692 the marker_position of X. Otherwise, value is X. */
694 #define COERCE_MARKER(X) (MARKERP ((X)) ? Fmarker_position (X) : (X))
696 /* Enumeration returned by some move_it_.* functions internally. */
700 /* Not used. Undefined value. */
703 /* Move ended at the requested buffer position or ZV. */
704 MOVE_POS_MATCH_OR_ZV
,
706 /* Move ended at the requested X pixel position. */
709 /* Move within a line ended at the end of a line that must be
713 /* Move within a line ended at the end of a line that would
714 be displayed truncated. */
717 /* Move within a line ended at a line end. */
721 /* This counter is used to clear the face cache every once in a while
722 in redisplay_internal. It is incremented for each redisplay.
723 Every CLEAR_FACE_CACHE_COUNT full redisplays, the face cache is
726 #define CLEAR_FACE_CACHE_COUNT 500
727 static int clear_face_cache_count
;
729 /* Similarly for the image cache. */
731 #ifdef HAVE_WINDOW_SYSTEM
732 #define CLEAR_IMAGE_CACHE_COUNT 101
733 static int clear_image_cache_count
;
735 /* Null glyph slice */
736 static struct glyph_slice null_glyph_slice
= { 0, 0, 0, 0 };
739 /* Non-zero while redisplay_internal is in progress. */
743 static Lisp_Object Qinhibit_free_realized_faces
;
745 /* If a string, XTread_socket generates an event to display that string.
746 (The display is done in read_char.) */
748 Lisp_Object help_echo_string
;
749 Lisp_Object help_echo_window
;
750 Lisp_Object help_echo_object
;
751 EMACS_INT help_echo_pos
;
753 /* Temporary variable for XTread_socket. */
755 Lisp_Object previous_help_echo_string
;
757 /* Platform-independent portion of hourglass implementation. */
759 /* Non-zero means an hourglass cursor is currently shown. */
760 int hourglass_shown_p
;
762 /* If non-null, an asynchronous timer that, when it expires, displays
763 an hourglass cursor on all frames. */
764 struct atimer
*hourglass_atimer
;
766 /* Name of the face used to display glyphless characters. */
767 Lisp_Object Qglyphless_char
;
769 /* Symbol for the purpose of Vglyphless_char_display. */
770 static Lisp_Object Qglyphless_char_display
;
772 /* Method symbols for Vglyphless_char_display. */
773 static Lisp_Object Qhex_code
, Qempty_box
, Qthin_space
, Qzero_width
;
775 /* Default pixel width of `thin-space' display method. */
776 #define THIN_SPACE_WIDTH 1
778 /* Default number of seconds to wait before displaying an hourglass
780 #define DEFAULT_HOURGLASS_DELAY 1
783 /* Function prototypes. */
785 static void setup_for_ellipsis (struct it
*, int);
786 static void set_iterator_to_next (struct it
*, int);
787 static void mark_window_display_accurate_1 (struct window
*, int);
788 static int single_display_spec_string_p (Lisp_Object
, Lisp_Object
);
789 static int display_prop_string_p (Lisp_Object
, Lisp_Object
);
790 static int cursor_row_p (struct glyph_row
*);
791 static int redisplay_mode_lines (Lisp_Object
, int);
792 static char *decode_mode_spec_coding (Lisp_Object
, char *, int);
794 static Lisp_Object
get_it_property (struct it
*it
, Lisp_Object prop
);
796 static void handle_line_prefix (struct it
*);
798 static void pint2str (char *, int, EMACS_INT
);
799 static void pint2hrstr (char *, int, EMACS_INT
);
800 static struct text_pos
run_window_scroll_functions (Lisp_Object
,
802 static void reconsider_clip_changes (struct window
*, struct buffer
*);
803 static int text_outside_line_unchanged_p (struct window
*,
804 EMACS_INT
, EMACS_INT
);
805 static void store_mode_line_noprop_char (char);
806 static int store_mode_line_noprop (const char *, int, int);
807 static void handle_stop (struct it
*);
808 static void handle_stop_backwards (struct it
*, EMACS_INT
);
809 static void vmessage (const char *, va_list) ATTRIBUTE_FORMAT_PRINTF (1, 0);
810 static void ensure_echo_area_buffers (void);
811 static Lisp_Object
unwind_with_echo_area_buffer (Lisp_Object
);
812 static Lisp_Object
with_echo_area_buffer_unwind_data (struct window
*);
813 static int with_echo_area_buffer (struct window
*, int,
814 int (*) (EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
),
815 EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
);
816 static void clear_garbaged_frames (void);
817 static int current_message_1 (EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
);
818 static void pop_message (void);
819 static int truncate_message_1 (EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
);
820 static void set_message (const char *, Lisp_Object
, EMACS_INT
, int);
821 static int set_message_1 (EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
);
822 static int display_echo_area (struct window
*);
823 static int display_echo_area_1 (EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
);
824 static int resize_mini_window_1 (EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
);
825 static Lisp_Object
unwind_redisplay (Lisp_Object
);
826 static int string_char_and_length (const unsigned char *, int *);
827 static struct text_pos
display_prop_end (struct it
*, Lisp_Object
,
829 static int compute_window_start_on_continuation_line (struct window
*);
830 static Lisp_Object
safe_eval_handler (Lisp_Object
);
831 static void insert_left_trunc_glyphs (struct it
*);
832 static struct glyph_row
*get_overlay_arrow_glyph_row (struct window
*,
834 static void extend_face_to_end_of_line (struct it
*);
835 static int append_space_for_newline (struct it
*, int);
836 static int cursor_row_fully_visible_p (struct window
*, int, int);
837 static int try_scrolling (Lisp_Object
, int, EMACS_INT
, EMACS_INT
, int, int);
838 static int try_cursor_movement (Lisp_Object
, struct text_pos
, int *);
839 static int trailing_whitespace_p (EMACS_INT
);
840 static unsigned long int message_log_check_duplicate (EMACS_INT
, EMACS_INT
);
841 static void push_it (struct it
*, struct text_pos
*);
842 static void pop_it (struct it
*);
843 static void sync_frame_with_window_matrix_rows (struct window
*);
844 static void select_frame_for_redisplay (Lisp_Object
);
845 static void redisplay_internal (void);
846 static int echo_area_display (int);
847 static void redisplay_windows (Lisp_Object
);
848 static void redisplay_window (Lisp_Object
, int);
849 static Lisp_Object
redisplay_window_error (Lisp_Object
);
850 static Lisp_Object
redisplay_window_0 (Lisp_Object
);
851 static Lisp_Object
redisplay_window_1 (Lisp_Object
);
852 static int set_cursor_from_row (struct window
*, struct glyph_row
*,
853 struct glyph_matrix
*, EMACS_INT
, EMACS_INT
,
855 static int update_menu_bar (struct frame
*, int, int);
856 static int try_window_reusing_current_matrix (struct window
*);
857 static int try_window_id (struct window
*);
858 static int display_line (struct it
*);
859 static int display_mode_lines (struct window
*);
860 static int display_mode_line (struct window
*, enum face_id
, Lisp_Object
);
861 static int display_mode_element (struct it
*, int, int, int, Lisp_Object
, Lisp_Object
, int);
862 static int store_mode_line_string (const char *, Lisp_Object
, int, int, int, Lisp_Object
);
863 static const char *decode_mode_spec (struct window
*, int, int, Lisp_Object
*);
864 static void display_menu_bar (struct window
*);
865 static EMACS_INT
display_count_lines (EMACS_INT
, EMACS_INT
, EMACS_INT
,
867 static int display_string (const char *, Lisp_Object
, Lisp_Object
,
868 EMACS_INT
, EMACS_INT
, struct it
*, int, int, int, int);
869 static void compute_line_metrics (struct it
*);
870 static void run_redisplay_end_trigger_hook (struct it
*);
871 static int get_overlay_strings (struct it
*, EMACS_INT
);
872 static int get_overlay_strings_1 (struct it
*, EMACS_INT
, int);
873 static void next_overlay_string (struct it
*);
874 static void reseat (struct it
*, struct text_pos
, int);
875 static void reseat_1 (struct it
*, struct text_pos
, int);
876 static void back_to_previous_visible_line_start (struct it
*);
877 void reseat_at_previous_visible_line_start (struct it
*);
878 static void reseat_at_next_visible_line_start (struct it
*, int);
879 static int next_element_from_ellipsis (struct it
*);
880 static int next_element_from_display_vector (struct it
*);
881 static int next_element_from_string (struct it
*);
882 static int next_element_from_c_string (struct it
*);
883 static int next_element_from_buffer (struct it
*);
884 static int next_element_from_composition (struct it
*);
885 static int next_element_from_image (struct it
*);
886 static int next_element_from_stretch (struct it
*);
887 static void load_overlay_strings (struct it
*, EMACS_INT
);
888 static int init_from_display_pos (struct it
*, struct window
*,
889 struct display_pos
*);
890 static void reseat_to_string (struct it
*, const char *,
891 Lisp_Object
, EMACS_INT
, EMACS_INT
, int, int);
892 static int get_next_display_element (struct it
*);
893 static enum move_it_result
894 move_it_in_display_line_to (struct it
*, EMACS_INT
, int,
895 enum move_operation_enum
);
896 void move_it_vertically_backward (struct it
*, int);
897 static void init_to_row_start (struct it
*, struct window
*,
899 static int init_to_row_end (struct it
*, struct window
*,
901 static void back_to_previous_line_start (struct it
*);
902 static int forward_to_next_line_start (struct it
*, int *);
903 static struct text_pos
string_pos_nchars_ahead (struct text_pos
,
904 Lisp_Object
, EMACS_INT
);
905 static struct text_pos
string_pos (EMACS_INT
, Lisp_Object
);
906 static struct text_pos
c_string_pos (EMACS_INT
, const char *, int);
907 static EMACS_INT
number_of_chars (const char *, int);
908 static void compute_stop_pos (struct it
*);
909 static void compute_string_pos (struct text_pos
*, struct text_pos
,
911 static int face_before_or_after_it_pos (struct it
*, int);
912 static EMACS_INT
next_overlay_change (EMACS_INT
);
913 static int handle_display_spec (struct it
*, Lisp_Object
, Lisp_Object
,
914 Lisp_Object
, struct text_pos
*, EMACS_INT
, int);
915 static int handle_single_display_spec (struct it
*, Lisp_Object
,
916 Lisp_Object
, Lisp_Object
,
917 struct text_pos
*, EMACS_INT
, int, int);
918 static int underlying_face_id (struct it
*);
919 static int in_ellipses_for_invisible_text_p (struct display_pos
*,
922 #define face_before_it_pos(IT) face_before_or_after_it_pos ((IT), 1)
923 #define face_after_it_pos(IT) face_before_or_after_it_pos ((IT), 0)
925 #ifdef HAVE_WINDOW_SYSTEM
927 static void x_consider_frame_title (Lisp_Object
);
928 static int tool_bar_lines_needed (struct frame
*, int *);
929 static void update_tool_bar (struct frame
*, int);
930 static void build_desired_tool_bar_string (struct frame
*f
);
931 static int redisplay_tool_bar (struct frame
*);
932 static void display_tool_bar_line (struct it
*, int);
933 static void notice_overwritten_cursor (struct window
*,
936 static void append_stretch_glyph (struct it
*, Lisp_Object
,
940 #endif /* HAVE_WINDOW_SYSTEM */
942 static void show_mouse_face (Mouse_HLInfo
*, enum draw_glyphs_face
);
943 static int coords_in_mouse_face_p (struct window
*, int, int);
947 /***********************************************************************
948 Window display dimensions
949 ***********************************************************************/
951 /* Return the bottom boundary y-position for text lines in window W.
952 This is the first y position at which a line cannot start.
953 It is relative to the top of the window.
955 This is the height of W minus the height of a mode line, if any. */
958 window_text_bottom_y (struct window
*w
)
960 int height
= WINDOW_TOTAL_HEIGHT (w
);
962 if (WINDOW_WANTS_MODELINE_P (w
))
963 height
-= CURRENT_MODE_LINE_HEIGHT (w
);
967 /* Return the pixel width of display area AREA of window W. AREA < 0
968 means return the total width of W, not including fringes to
969 the left and right of the window. */
972 window_box_width (struct window
*w
, int area
)
974 int cols
= XFASTINT (w
->total_cols
);
977 if (!w
->pseudo_window_p
)
979 cols
-= WINDOW_SCROLL_BAR_COLS (w
);
981 if (area
== TEXT_AREA
)
983 if (INTEGERP (w
->left_margin_cols
))
984 cols
-= XFASTINT (w
->left_margin_cols
);
985 if (INTEGERP (w
->right_margin_cols
))
986 cols
-= XFASTINT (w
->right_margin_cols
);
987 pixels
= -WINDOW_TOTAL_FRINGE_WIDTH (w
);
989 else if (area
== LEFT_MARGIN_AREA
)
991 cols
= (INTEGERP (w
->left_margin_cols
)
992 ? XFASTINT (w
->left_margin_cols
) : 0);
995 else if (area
== RIGHT_MARGIN_AREA
)
997 cols
= (INTEGERP (w
->right_margin_cols
)
998 ? XFASTINT (w
->right_margin_cols
) : 0);
1003 return cols
* WINDOW_FRAME_COLUMN_WIDTH (w
) + pixels
;
1007 /* Return the pixel height of the display area of window W, not
1008 including mode lines of W, if any. */
1011 window_box_height (struct window
*w
)
1013 struct frame
*f
= XFRAME (w
->frame
);
1014 int height
= WINDOW_TOTAL_HEIGHT (w
);
1016 xassert (height
>= 0);
1018 /* Note: the code below that determines the mode-line/header-line
1019 height is essentially the same as that contained in the macro
1020 CURRENT_{MODE,HEADER}_LINE_HEIGHT, except that it checks whether
1021 the appropriate glyph row has its `mode_line_p' flag set,
1022 and if it doesn't, uses estimate_mode_line_height instead. */
1024 if (WINDOW_WANTS_MODELINE_P (w
))
1026 struct glyph_row
*ml_row
1027 = (w
->current_matrix
&& w
->current_matrix
->rows
1028 ? MATRIX_MODE_LINE_ROW (w
->current_matrix
)
1030 if (ml_row
&& ml_row
->mode_line_p
)
1031 height
-= ml_row
->height
;
1033 height
-= estimate_mode_line_height (f
, CURRENT_MODE_LINE_FACE_ID (w
));
1036 if (WINDOW_WANTS_HEADER_LINE_P (w
))
1038 struct glyph_row
*hl_row
1039 = (w
->current_matrix
&& w
->current_matrix
->rows
1040 ? MATRIX_HEADER_LINE_ROW (w
->current_matrix
)
1042 if (hl_row
&& hl_row
->mode_line_p
)
1043 height
-= hl_row
->height
;
1045 height
-= estimate_mode_line_height (f
, HEADER_LINE_FACE_ID
);
1048 /* With a very small font and a mode-line that's taller than
1049 default, we might end up with a negative height. */
1050 return max (0, height
);
1053 /* Return the window-relative coordinate of the left edge of display
1054 area AREA of window W. AREA < 0 means return the left edge of the
1055 whole window, to the right of the left fringe of W. */
1058 window_box_left_offset (struct window
*w
, int area
)
1062 if (w
->pseudo_window_p
)
1065 x
= WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w
);
1067 if (area
== TEXT_AREA
)
1068 x
+= (WINDOW_LEFT_FRINGE_WIDTH (w
)
1069 + window_box_width (w
, LEFT_MARGIN_AREA
));
1070 else if (area
== RIGHT_MARGIN_AREA
)
1071 x
+= (WINDOW_LEFT_FRINGE_WIDTH (w
)
1072 + window_box_width (w
, LEFT_MARGIN_AREA
)
1073 + window_box_width (w
, TEXT_AREA
)
1074 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
1076 : WINDOW_RIGHT_FRINGE_WIDTH (w
)));
1077 else if (area
== LEFT_MARGIN_AREA
1078 && WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
))
1079 x
+= WINDOW_LEFT_FRINGE_WIDTH (w
);
1085 /* Return the window-relative coordinate of the right edge of display
1086 area AREA of window W. AREA < 0 means return the right edge of the
1087 whole window, to the left of the right fringe of W. */
1090 window_box_right_offset (struct window
*w
, int area
)
1092 return window_box_left_offset (w
, area
) + window_box_width (w
, area
);
1095 /* Return the frame-relative coordinate of the left edge of display
1096 area AREA of window W. AREA < 0 means return the left edge of the
1097 whole window, to the right of the left fringe of W. */
1100 window_box_left (struct window
*w
, int area
)
1102 struct frame
*f
= XFRAME (w
->frame
);
1105 if (w
->pseudo_window_p
)
1106 return FRAME_INTERNAL_BORDER_WIDTH (f
);
1108 x
= (WINDOW_LEFT_EDGE_X (w
)
1109 + window_box_left_offset (w
, area
));
1115 /* Return the frame-relative coordinate of the right edge of display
1116 area AREA of window W. AREA < 0 means return the right edge of the
1117 whole window, to the left of the right fringe of W. */
1120 window_box_right (struct window
*w
, int area
)
1122 return window_box_left (w
, area
) + window_box_width (w
, area
);
1125 /* Get the bounding box of the display area AREA of window W, without
1126 mode lines, in frame-relative coordinates. AREA < 0 means the
1127 whole window, not including the left and right fringes of
1128 the window. Return in *BOX_X and *BOX_Y the frame-relative pixel
1129 coordinates of the upper-left corner of the box. Return in
1130 *BOX_WIDTH, and *BOX_HEIGHT the pixel width and height of the box. */
1133 window_box (struct window
*w
, int area
, int *box_x
, int *box_y
,
1134 int *box_width
, int *box_height
)
1137 *box_width
= window_box_width (w
, area
);
1139 *box_height
= window_box_height (w
);
1141 *box_x
= window_box_left (w
, area
);
1144 *box_y
= WINDOW_TOP_EDGE_Y (w
);
1145 if (WINDOW_WANTS_HEADER_LINE_P (w
))
1146 *box_y
+= CURRENT_HEADER_LINE_HEIGHT (w
);
1151 /* Get the bounding box of the display area AREA of window W, without
1152 mode lines. AREA < 0 means the whole window, not including the
1153 left and right fringe of the window. Return in *TOP_LEFT_X
1154 and TOP_LEFT_Y the frame-relative pixel coordinates of the
1155 upper-left corner of the box. Return in *BOTTOM_RIGHT_X, and
1156 *BOTTOM_RIGHT_Y the coordinates of the bottom-right corner of the
1160 window_box_edges (struct window
*w
, int area
, int *top_left_x
, int *top_left_y
,
1161 int *bottom_right_x
, int *bottom_right_y
)
1163 window_box (w
, area
, top_left_x
, top_left_y
, bottom_right_x
,
1165 *bottom_right_x
+= *top_left_x
;
1166 *bottom_right_y
+= *top_left_y
;
1171 /***********************************************************************
1173 ***********************************************************************/
1175 /* Return the bottom y-position of the line the iterator IT is in.
1176 This can modify IT's settings. */
1179 line_bottom_y (struct it
*it
)
1181 int line_height
= it
->max_ascent
+ it
->max_descent
;
1182 int line_top_y
= it
->current_y
;
1184 if (line_height
== 0)
1187 line_height
= last_height
;
1188 else if (IT_CHARPOS (*it
) < ZV
)
1190 move_it_by_lines (it
, 1);
1191 line_height
= (it
->max_ascent
|| it
->max_descent
1192 ? it
->max_ascent
+ it
->max_descent
1197 struct glyph_row
*row
= it
->glyph_row
;
1199 /* Use the default character height. */
1200 it
->glyph_row
= NULL
;
1201 it
->what
= IT_CHARACTER
;
1204 PRODUCE_GLYPHS (it
);
1205 line_height
= it
->ascent
+ it
->descent
;
1206 it
->glyph_row
= row
;
1210 return line_top_y
+ line_height
;
1214 /* Return 1 if position CHARPOS is visible in window W.
1215 CHARPOS < 0 means return info about WINDOW_END position.
1216 If visible, set *X and *Y to pixel coordinates of top left corner.
1217 Set *RTOP and *RBOT to pixel height of an invisible area of glyph at POS.
1218 Set *ROWH and *VPOS to row's visible height and VPOS (row number). */
1221 pos_visible_p (struct window
*w
, EMACS_INT charpos
, int *x
, int *y
,
1222 int *rtop
, int *rbot
, int *rowh
, int *vpos
)
1225 void *itdata
= bidi_shelve_cache ();
1226 struct text_pos top
;
1228 struct buffer
*old_buffer
= NULL
;
1230 if (FRAME_INITIAL_P (XFRAME (WINDOW_FRAME (w
))))
1233 if (XBUFFER (w
->buffer
) != current_buffer
)
1235 old_buffer
= current_buffer
;
1236 set_buffer_internal_1 (XBUFFER (w
->buffer
));
1239 SET_TEXT_POS_FROM_MARKER (top
, w
->start
);
1241 /* Compute exact mode line heights. */
1242 if (WINDOW_WANTS_MODELINE_P (w
))
1243 current_mode_line_height
1244 = display_mode_line (w
, CURRENT_MODE_LINE_FACE_ID (w
),
1245 BVAR (current_buffer
, mode_line_format
));
1247 if (WINDOW_WANTS_HEADER_LINE_P (w
))
1248 current_header_line_height
1249 = display_mode_line (w
, HEADER_LINE_FACE_ID
,
1250 BVAR (current_buffer
, header_line_format
));
1252 start_display (&it
, w
, top
);
1253 move_it_to (&it
, charpos
, -1, it
.last_visible_y
-1, -1,
1254 (charpos
>= 0 ? MOVE_TO_POS
: 0) | MOVE_TO_Y
);
1257 && (((!it
.bidi_p
|| it
.bidi_it
.scan_dir
== 1)
1258 && IT_CHARPOS (it
) >= charpos
)
1259 /* When scanning backwards under bidi iteration, move_it_to
1260 stops at or _before_ CHARPOS, because it stops at or to
1261 the _right_ of the character at CHARPOS. */
1262 || (it
.bidi_p
&& it
.bidi_it
.scan_dir
== -1
1263 && IT_CHARPOS (it
) <= charpos
)))
1265 /* We have reached CHARPOS, or passed it. How the call to
1266 move_it_to can overshoot: (i) If CHARPOS is on invisible text
1267 or covered by a display property, move_it_to stops at the end
1268 of the invisible text, to the right of CHARPOS. (ii) If
1269 CHARPOS is in a display vector, move_it_to stops on its last
1271 int top_x
= it
.current_x
;
1272 int top_y
= it
.current_y
;
1273 enum it_method it_method
= it
.method
;
1274 /* Calling line_bottom_y may change it.method, it.position, etc. */
1275 int bottom_y
= (last_height
= 0, line_bottom_y (&it
));
1276 int window_top_y
= WINDOW_HEADER_LINE_HEIGHT (w
);
1278 if (top_y
< window_top_y
)
1279 visible_p
= bottom_y
> window_top_y
;
1280 else if (top_y
< it
.last_visible_y
)
1284 if (it_method
== GET_FROM_DISPLAY_VECTOR
)
1286 /* We stopped on the last glyph of a display vector.
1287 Try and recompute. Hack alert! */
1288 if (charpos
< 2 || top
.charpos
>= charpos
)
1289 top_x
= it
.glyph_row
->x
;
1293 start_display (&it2
, w
, top
);
1294 move_it_to (&it2
, charpos
- 1, -1, -1, -1, MOVE_TO_POS
);
1295 get_next_display_element (&it2
);
1296 PRODUCE_GLYPHS (&it2
);
1297 if (ITERATOR_AT_END_OF_LINE_P (&it2
)
1298 || it2
.current_x
> it2
.last_visible_x
)
1299 top_x
= it
.glyph_row
->x
;
1302 top_x
= it2
.current_x
;
1303 top_y
= it2
.current_y
;
1309 *y
= max (top_y
+ max (0, it
.max_ascent
- it
.ascent
), window_top_y
);
1310 *rtop
= max (0, window_top_y
- top_y
);
1311 *rbot
= max (0, bottom_y
- it
.last_visible_y
);
1312 *rowh
= max (0, (min (bottom_y
, it
.last_visible_y
)
1313 - max (top_y
, window_top_y
)));
1319 /* We were asked to provide info about WINDOW_END. */
1321 void *it2data
= NULL
;
1323 SAVE_IT (it2
, it
, it2data
);
1324 if (IT_CHARPOS (it
) < ZV
&& FETCH_BYTE (IT_BYTEPOS (it
)) != '\n')
1325 move_it_by_lines (&it
, 1);
1326 if (charpos
< IT_CHARPOS (it
)
1327 || (it
.what
== IT_EOB
&& charpos
== IT_CHARPOS (it
)))
1330 RESTORE_IT (&it2
, &it2
, it2data
);
1331 move_it_to (&it2
, charpos
, -1, -1, -1, MOVE_TO_POS
);
1333 *y
= it2
.current_y
+ it2
.max_ascent
- it2
.ascent
;
1334 *rtop
= max (0, -it2
.current_y
);
1335 *rbot
= max (0, ((it2
.current_y
+ it2
.max_ascent
+ it2
.max_descent
)
1336 - it
.last_visible_y
));
1337 *rowh
= max (0, (min (it2
.current_y
+ it2
.max_ascent
+ it2
.max_descent
,
1339 - max (it2
.current_y
,
1340 WINDOW_HEADER_LINE_HEIGHT (w
))));
1346 bidi_unshelve_cache (itdata
);
1349 set_buffer_internal_1 (old_buffer
);
1351 current_header_line_height
= current_mode_line_height
= -1;
1353 if (visible_p
&& XFASTINT (w
->hscroll
) > 0)
1354 *x
-= XFASTINT (w
->hscroll
) * WINDOW_FRAME_COLUMN_WIDTH (w
);
1357 /* Debugging code. */
1359 fprintf (stderr
, "+pv pt=%d vs=%d --> x=%d y=%d rt=%d rb=%d rh=%d vp=%d\n",
1360 charpos
, w
->vscroll
, *x
, *y
, *rtop
, *rbot
, *rowh
, *vpos
);
1362 fprintf (stderr
, "-pv pt=%d vs=%d\n", charpos
, w
->vscroll
);
1369 /* Return the next character from STR. Return in *LEN the length of
1370 the character. This is like STRING_CHAR_AND_LENGTH but never
1371 returns an invalid character. If we find one, we return a `?', but
1372 with the length of the invalid character. */
1375 string_char_and_length (const unsigned char *str
, int *len
)
1379 c
= STRING_CHAR_AND_LENGTH (str
, *len
);
1380 if (!CHAR_VALID_P (c
, 1))
1381 /* We may not change the length here because other places in Emacs
1382 don't use this function, i.e. they silently accept invalid
1391 /* Given a position POS containing a valid character and byte position
1392 in STRING, return the position NCHARS ahead (NCHARS >= 0). */
1394 static struct text_pos
1395 string_pos_nchars_ahead (struct text_pos pos
, Lisp_Object string
, EMACS_INT nchars
)
1397 xassert (STRINGP (string
) && nchars
>= 0);
1399 if (STRING_MULTIBYTE (string
))
1401 const unsigned char *p
= SDATA (string
) + BYTEPOS (pos
);
1406 string_char_and_length (p
, &len
);
1409 BYTEPOS (pos
) += len
;
1413 SET_TEXT_POS (pos
, CHARPOS (pos
) + nchars
, BYTEPOS (pos
) + nchars
);
1419 /* Value is the text position, i.e. character and byte position,
1420 for character position CHARPOS in STRING. */
1422 static INLINE
struct text_pos
1423 string_pos (EMACS_INT charpos
, Lisp_Object string
)
1425 struct text_pos pos
;
1426 xassert (STRINGP (string
));
1427 xassert (charpos
>= 0);
1428 SET_TEXT_POS (pos
, charpos
, string_char_to_byte (string
, charpos
));
1433 /* Value is a text position, i.e. character and byte position, for
1434 character position CHARPOS in C string S. MULTIBYTE_P non-zero
1435 means recognize multibyte characters. */
1437 static struct text_pos
1438 c_string_pos (EMACS_INT charpos
, const char *s
, int multibyte_p
)
1440 struct text_pos pos
;
1442 xassert (s
!= NULL
);
1443 xassert (charpos
>= 0);
1449 SET_TEXT_POS (pos
, 0, 0);
1452 string_char_and_length ((const unsigned char *) s
, &len
);
1455 BYTEPOS (pos
) += len
;
1459 SET_TEXT_POS (pos
, charpos
, charpos
);
1465 /* Value is the number of characters in C string S. MULTIBYTE_P
1466 non-zero means recognize multibyte characters. */
1469 number_of_chars (const char *s
, int multibyte_p
)
1475 EMACS_INT rest
= strlen (s
);
1477 const unsigned char *p
= (const unsigned char *) s
;
1479 for (nchars
= 0; rest
> 0; ++nchars
)
1481 string_char_and_length (p
, &len
);
1482 rest
-= len
, p
+= len
;
1486 nchars
= strlen (s
);
1492 /* Compute byte position NEWPOS->bytepos corresponding to
1493 NEWPOS->charpos. POS is a known position in string STRING.
1494 NEWPOS->charpos must be >= POS.charpos. */
1497 compute_string_pos (struct text_pos
*newpos
, struct text_pos pos
, Lisp_Object string
)
1499 xassert (STRINGP (string
));
1500 xassert (CHARPOS (*newpos
) >= CHARPOS (pos
));
1502 if (STRING_MULTIBYTE (string
))
1503 *newpos
= string_pos_nchars_ahead (pos
, string
,
1504 CHARPOS (*newpos
) - CHARPOS (pos
));
1506 BYTEPOS (*newpos
) = CHARPOS (*newpos
);
1510 Return an estimation of the pixel height of mode or header lines on
1511 frame F. FACE_ID specifies what line's height to estimate. */
1514 estimate_mode_line_height (struct frame
*f
, enum face_id face_id
)
1516 #ifdef HAVE_WINDOW_SYSTEM
1517 if (FRAME_WINDOW_P (f
))
1519 int height
= FONT_HEIGHT (FRAME_FONT (f
));
1521 /* This function is called so early when Emacs starts that the face
1522 cache and mode line face are not yet initialized. */
1523 if (FRAME_FACE_CACHE (f
))
1525 struct face
*face
= FACE_FROM_ID (f
, face_id
);
1529 height
= FONT_HEIGHT (face
->font
);
1530 if (face
->box_line_width
> 0)
1531 height
+= 2 * face
->box_line_width
;
1542 /* Given a pixel position (PIX_X, PIX_Y) on frame F, return glyph
1543 co-ordinates in (*X, *Y). Set *BOUNDS to the rectangle that the
1544 glyph at X, Y occupies, if BOUNDS != 0. If NOCLIP is non-zero, do
1545 not force the value into range. */
1548 pixel_to_glyph_coords (FRAME_PTR f
, register int pix_x
, register int pix_y
,
1549 int *x
, int *y
, NativeRectangle
*bounds
, int noclip
)
1552 #ifdef HAVE_WINDOW_SYSTEM
1553 if (FRAME_WINDOW_P (f
))
1555 /* Arrange for the division in FRAME_PIXEL_X_TO_COL etc. to round down
1556 even for negative values. */
1558 pix_x
-= FRAME_COLUMN_WIDTH (f
) - 1;
1560 pix_y
-= FRAME_LINE_HEIGHT (f
) - 1;
1562 pix_x
= FRAME_PIXEL_X_TO_COL (f
, pix_x
);
1563 pix_y
= FRAME_PIXEL_Y_TO_LINE (f
, pix_y
);
1566 STORE_NATIVE_RECT (*bounds
,
1567 FRAME_COL_TO_PIXEL_X (f
, pix_x
),
1568 FRAME_LINE_TO_PIXEL_Y (f
, pix_y
),
1569 FRAME_COLUMN_WIDTH (f
) - 1,
1570 FRAME_LINE_HEIGHT (f
) - 1);
1576 else if (pix_x
> FRAME_TOTAL_COLS (f
))
1577 pix_x
= FRAME_TOTAL_COLS (f
);
1581 else if (pix_y
> FRAME_LINES (f
))
1582 pix_y
= FRAME_LINES (f
);
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
1602 x_y_to_hpos_vpos (struct window
*w
, int x
, int y
, int *hpos
, int *vpos
,
1603 int *dx
, int *dy
, int *area
)
1605 struct glyph
*glyph
, *end
;
1606 struct glyph_row
*row
= NULL
;
1609 /* Find row containing Y. Give up if some row is not enabled. */
1610 for (i
= 0; i
< w
->current_matrix
->nrows
; ++i
)
1612 row
= MATRIX_ROW (w
->current_matrix
, i
);
1613 if (!row
->enabled_p
)
1615 if (y
>= row
->y
&& y
< MATRIX_ROW_BOTTOM_Y (row
))
1622 /* Give up if Y is not in the window. */
1623 if (i
== w
->current_matrix
->nrows
)
1626 /* Get the glyph area containing X. */
1627 if (w
->pseudo_window_p
)
1634 if (x
< window_box_left_offset (w
, TEXT_AREA
))
1636 *area
= LEFT_MARGIN_AREA
;
1637 x0
= window_box_left_offset (w
, LEFT_MARGIN_AREA
);
1639 else if (x
< window_box_right_offset (w
, TEXT_AREA
))
1642 x0
= window_box_left_offset (w
, TEXT_AREA
) + min (row
->x
, 0);
1646 *area
= RIGHT_MARGIN_AREA
;
1647 x0
= window_box_left_offset (w
, RIGHT_MARGIN_AREA
);
1651 /* Find glyph containing X. */
1652 glyph
= row
->glyphs
[*area
];
1653 end
= glyph
+ row
->used
[*area
];
1655 while (glyph
< end
&& x
>= glyph
->pixel_width
)
1657 x
-= glyph
->pixel_width
;
1667 *dy
= y
- (row
->y
+ row
->ascent
- glyph
->ascent
);
1670 *hpos
= glyph
- row
->glyphs
[*area
];
1674 /* Convert frame-relative x/y to coordinates relative to window W.
1675 Takes pseudo-windows into account. */
1678 frame_to_window_pixel_xy (struct window
*w
, int *x
, int *y
)
1680 if (w
->pseudo_window_p
)
1682 /* A pseudo-window is always full-width, and starts at the
1683 left edge of the frame, plus a frame border. */
1684 struct frame
*f
= XFRAME (w
->frame
);
1685 *x
-= FRAME_INTERNAL_BORDER_WIDTH (f
);
1686 *y
= FRAME_TO_WINDOW_PIXEL_Y (w
, *y
);
1690 *x
-= WINDOW_LEFT_EDGE_X (w
);
1691 *y
= FRAME_TO_WINDOW_PIXEL_Y (w
, *y
);
1695 #ifdef HAVE_WINDOW_SYSTEM
1698 Return in RECTS[] at most N clipping rectangles for glyph string S.
1699 Return the number of stored rectangles. */
1702 get_glyph_string_clip_rects (struct glyph_string
*s
, NativeRectangle
*rects
, int n
)
1709 if (s
->row
->full_width_p
)
1711 /* Draw full-width. X coordinates are relative to S->w->left_col. */
1712 r
.x
= WINDOW_LEFT_EDGE_X (s
->w
);
1713 r
.width
= WINDOW_TOTAL_WIDTH (s
->w
);
1715 /* Unless displaying a mode or menu bar line, which are always
1716 fully visible, clip to the visible part of the row. */
1717 if (s
->w
->pseudo_window_p
)
1718 r
.height
= s
->row
->visible_height
;
1720 r
.height
= s
->height
;
1724 /* This is a text line that may be partially visible. */
1725 r
.x
= window_box_left (s
->w
, s
->area
);
1726 r
.width
= window_box_width (s
->w
, s
->area
);
1727 r
.height
= s
->row
->visible_height
;
1731 if (r
.x
< s
->clip_head
->x
)
1733 if (r
.width
>= s
->clip_head
->x
- r
.x
)
1734 r
.width
-= s
->clip_head
->x
- r
.x
;
1737 r
.x
= s
->clip_head
->x
;
1740 if (r
.x
+ r
.width
> s
->clip_tail
->x
+ s
->clip_tail
->background_width
)
1742 if (s
->clip_tail
->x
+ s
->clip_tail
->background_width
>= r
.x
)
1743 r
.width
= s
->clip_tail
->x
+ s
->clip_tail
->background_width
- r
.x
;
1748 /* If S draws overlapping rows, it's sufficient to use the top and
1749 bottom of the window for clipping because this glyph string
1750 intentionally draws over other lines. */
1751 if (s
->for_overlaps
)
1753 r
.y
= WINDOW_HEADER_LINE_HEIGHT (s
->w
);
1754 r
.height
= window_text_bottom_y (s
->w
) - r
.y
;
1756 /* Alas, the above simple strategy does not work for the
1757 environments with anti-aliased text: if the same text is
1758 drawn onto the same place multiple times, it gets thicker.
1759 If the overlap we are processing is for the erased cursor, we
1760 take the intersection with the rectagle of the cursor. */
1761 if (s
->for_overlaps
& OVERLAPS_ERASED_CURSOR
)
1763 XRectangle rc
, r_save
= r
;
1765 rc
.x
= WINDOW_TEXT_TO_FRAME_PIXEL_X (s
->w
, s
->w
->phys_cursor
.x
);
1766 rc
.y
= s
->w
->phys_cursor
.y
;
1767 rc
.width
= s
->w
->phys_cursor_width
;
1768 rc
.height
= s
->w
->phys_cursor_height
;
1770 x_intersect_rectangles (&r_save
, &rc
, &r
);
1775 /* Don't use S->y for clipping because it doesn't take partially
1776 visible lines into account. For example, it can be negative for
1777 partially visible lines at the top of a window. */
1778 if (!s
->row
->full_width_p
1779 && MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P (s
->w
, s
->row
))
1780 r
.y
= WINDOW_HEADER_LINE_HEIGHT (s
->w
);
1782 r
.y
= max (0, s
->row
->y
);
1785 r
.y
= WINDOW_TO_FRAME_PIXEL_Y (s
->w
, r
.y
);
1787 /* If drawing the cursor, don't let glyph draw outside its
1788 advertised boundaries. Cleartype does this under some circumstances. */
1789 if (s
->hl
== DRAW_CURSOR
)
1791 struct glyph
*glyph
= s
->first_glyph
;
1796 r
.width
-= s
->x
- r
.x
;
1799 r
.width
= min (r
.width
, glyph
->pixel_width
);
1801 /* If r.y is below window bottom, ensure that we still see a cursor. */
1802 height
= min (glyph
->ascent
+ glyph
->descent
,
1803 min (FRAME_LINE_HEIGHT (s
->f
), s
->row
->visible_height
));
1804 max_y
= window_text_bottom_y (s
->w
) - height
;
1805 max_y
= WINDOW_TO_FRAME_PIXEL_Y (s
->w
, max_y
);
1806 if (s
->ybase
- glyph
->ascent
> max_y
)
1813 /* Don't draw cursor glyph taller than our actual glyph. */
1814 height
= max (FRAME_LINE_HEIGHT (s
->f
), glyph
->ascent
+ glyph
->descent
);
1815 if (height
< r
.height
)
1817 max_y
= r
.y
+ r
.height
;
1818 r
.y
= min (max_y
, max (r
.y
, s
->ybase
+ glyph
->descent
- height
));
1819 r
.height
= min (max_y
- r
.y
, height
);
1826 XRectangle r_save
= r
;
1828 if (! x_intersect_rectangles (&r_save
, s
->row
->clip
, &r
))
1832 if ((s
->for_overlaps
& OVERLAPS_BOTH
) == 0
1833 || ((s
->for_overlaps
& OVERLAPS_BOTH
) == OVERLAPS_BOTH
&& n
== 1))
1835 #ifdef CONVERT_FROM_XRECT
1836 CONVERT_FROM_XRECT (r
, *rects
);
1844 /* If we are processing overlapping and allowed to return
1845 multiple clipping rectangles, we exclude the row of the glyph
1846 string from the clipping rectangle. This is to avoid drawing
1847 the same text on the environment with anti-aliasing. */
1848 #ifdef CONVERT_FROM_XRECT
1851 XRectangle
*rs
= rects
;
1853 int i
= 0, row_y
= WINDOW_TO_FRAME_PIXEL_Y (s
->w
, s
->row
->y
);
1855 if (s
->for_overlaps
& OVERLAPS_PRED
)
1858 if (r
.y
+ r
.height
> row_y
)
1861 rs
[i
].height
= row_y
- r
.y
;
1867 if (s
->for_overlaps
& OVERLAPS_SUCC
)
1870 if (r
.y
< row_y
+ s
->row
->visible_height
)
1872 if (r
.y
+ r
.height
> row_y
+ s
->row
->visible_height
)
1874 rs
[i
].y
= row_y
+ s
->row
->visible_height
;
1875 rs
[i
].height
= r
.y
+ r
.height
- rs
[i
].y
;
1884 #ifdef CONVERT_FROM_XRECT
1885 for (i
= 0; i
< n
; i
++)
1886 CONVERT_FROM_XRECT (rs
[i
], rects
[i
]);
1893 Return in *NR the clipping rectangle for glyph string S. */
1896 get_glyph_string_clip_rect (struct glyph_string
*s
, NativeRectangle
*nr
)
1898 get_glyph_string_clip_rects (s
, nr
, 1);
1903 Return the position and height of the phys cursor in window W.
1904 Set w->phys_cursor_width to width of phys cursor.
1908 get_phys_cursor_geometry (struct window
*w
, struct glyph_row
*row
,
1909 struct glyph
*glyph
, int *xp
, int *yp
, int *heightp
)
1911 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
1912 int x
, y
, wd
, h
, h0
, y0
;
1914 /* Compute the width of the rectangle to draw. If on a stretch
1915 glyph, and `x-stretch-block-cursor' is nil, don't draw a
1916 rectangle as wide as the glyph, but use a canonical character
1918 wd
= glyph
->pixel_width
- 1;
1919 #if defined(HAVE_NTGUI) || defined(HAVE_NS)
1923 x
= w
->phys_cursor
.x
;
1930 if (glyph
->type
== STRETCH_GLYPH
1931 && !x_stretch_cursor_p
)
1932 wd
= min (FRAME_COLUMN_WIDTH (f
), wd
);
1933 w
->phys_cursor_width
= wd
;
1935 y
= w
->phys_cursor
.y
+ row
->ascent
- glyph
->ascent
;
1937 /* If y is below window bottom, ensure that we still see a cursor. */
1938 h0
= min (FRAME_LINE_HEIGHT (f
), row
->visible_height
);
1940 h
= max (h0
, glyph
->ascent
+ glyph
->descent
);
1941 h0
= min (h0
, glyph
->ascent
+ glyph
->descent
);
1943 y0
= WINDOW_HEADER_LINE_HEIGHT (w
);
1946 h
= max (h
- (y0
- y
) + 1, h0
);
1951 y0
= window_text_bottom_y (w
) - h0
;
1959 *xp
= WINDOW_TEXT_TO_FRAME_PIXEL_X (w
, x
);
1960 *yp
= WINDOW_TO_FRAME_PIXEL_Y (w
, y
);
1965 * Remember which glyph the mouse is over.
1969 remember_mouse_glyph (struct frame
*f
, int gx
, int gy
, NativeRectangle
*rect
)
1973 struct glyph_row
*r
, *gr
, *end_row
;
1974 enum window_part part
;
1975 enum glyph_row_area area
;
1976 int x
, y
, width
, height
;
1978 /* Try to determine frame pixel position and size of the glyph under
1979 frame pixel coordinates X/Y on frame F. */
1981 if (!f
->glyphs_initialized_p
1982 || (window
= window_from_coordinates (f
, gx
, gy
, &part
, 0),
1985 width
= FRAME_SMALLEST_CHAR_WIDTH (f
);
1986 height
= FRAME_SMALLEST_FONT_HEIGHT (f
);
1990 w
= XWINDOW (window
);
1991 width
= WINDOW_FRAME_COLUMN_WIDTH (w
);
1992 height
= WINDOW_FRAME_LINE_HEIGHT (w
);
1994 x
= window_relative_x_coord (w
, part
, gx
);
1995 y
= gy
- WINDOW_TOP_EDGE_Y (w
);
1997 r
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
1998 end_row
= MATRIX_BOTTOM_TEXT_ROW (w
->current_matrix
, w
);
2000 if (w
->pseudo_window_p
)
2003 part
= ON_MODE_LINE
; /* Don't adjust margin. */
2009 case ON_LEFT_MARGIN
:
2010 area
= LEFT_MARGIN_AREA
;
2013 case ON_RIGHT_MARGIN
:
2014 area
= RIGHT_MARGIN_AREA
;
2017 case ON_HEADER_LINE
:
2019 gr
= (part
== ON_HEADER_LINE
2020 ? MATRIX_HEADER_LINE_ROW (w
->current_matrix
)
2021 : MATRIX_MODE_LINE_ROW (w
->current_matrix
));
2024 goto text_glyph_row_found
;
2031 for (; r
<= end_row
&& r
->enabled_p
; ++r
)
2032 if (r
->y
+ r
->height
> y
)
2038 text_glyph_row_found
:
2041 struct glyph
*g
= gr
->glyphs
[area
];
2042 struct glyph
*end
= g
+ gr
->used
[area
];
2044 height
= gr
->height
;
2045 for (gx
= gr
->x
; g
< end
; gx
+= g
->pixel_width
, ++g
)
2046 if (gx
+ g
->pixel_width
> x
)
2051 if (g
->type
== IMAGE_GLYPH
)
2053 /* Don't remember when mouse is over image, as
2054 image may have hot-spots. */
2055 STORE_NATIVE_RECT (*rect
, 0, 0, 0, 0);
2058 width
= g
->pixel_width
;
2062 /* Use nominal char spacing at end of line. */
2064 gx
+= (x
/ width
) * width
;
2067 if (part
!= ON_MODE_LINE
&& part
!= ON_HEADER_LINE
)
2068 gx
+= window_box_left_offset (w
, area
);
2072 /* Use nominal line height at end of window. */
2073 gx
= (x
/ width
) * width
;
2075 gy
+= (y
/ height
) * height
;
2079 case ON_LEFT_FRINGE
:
2080 gx
= (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
2081 ? WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w
)
2082 : window_box_right_offset (w
, LEFT_MARGIN_AREA
));
2083 width
= WINDOW_LEFT_FRINGE_WIDTH (w
);
2086 case ON_RIGHT_FRINGE
:
2087 gx
= (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
2088 ? window_box_right_offset (w
, RIGHT_MARGIN_AREA
)
2089 : window_box_right_offset (w
, TEXT_AREA
));
2090 width
= WINDOW_RIGHT_FRINGE_WIDTH (w
);
2094 gx
= (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w
)
2096 : (window_box_right_offset (w
, RIGHT_MARGIN_AREA
)
2097 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
2098 ? WINDOW_RIGHT_FRINGE_WIDTH (w
)
2100 width
= WINDOW_SCROLL_BAR_AREA_WIDTH (w
);
2104 for (; r
<= end_row
&& r
->enabled_p
; ++r
)
2105 if (r
->y
+ r
->height
> y
)
2112 height
= gr
->height
;
2115 /* Use nominal line height at end of window. */
2117 gy
+= (y
/ height
) * height
;
2124 /* If there is no glyph under the mouse, then we divide the screen
2125 into a grid of the smallest glyph in the frame, and use that
2128 /* Arrange for the division in FRAME_PIXEL_X_TO_COL etc. to
2129 round down even for negative values. */
2135 gx
= (gx
/ width
) * width
;
2136 gy
= (gy
/ height
) * height
;
2141 gx
+= WINDOW_LEFT_EDGE_X (w
);
2142 gy
+= WINDOW_TOP_EDGE_Y (w
);
2145 STORE_NATIVE_RECT (*rect
, gx
, gy
, width
, height
);
2147 /* Visible feedback for debugging. */
2150 XDrawRectangle (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2151 f
->output_data
.x
->normal_gc
,
2152 gx
, gy
, width
, height
);
2158 #endif /* HAVE_WINDOW_SYSTEM */
2161 /***********************************************************************
2162 Lisp form evaluation
2163 ***********************************************************************/
2165 /* Error handler for safe_eval and safe_call. */
2168 safe_eval_handler (Lisp_Object arg
)
2170 add_to_log ("Error during redisplay: %S", arg
, Qnil
);
2175 /* Evaluate SEXPR and return the result, or nil if something went
2176 wrong. Prevent redisplay during the evaluation. */
2178 /* Call function ARGS[0] with arguments ARGS[1] to ARGS[NARGS - 1].
2179 Return the result, or nil if something went wrong. Prevent
2180 redisplay during the evaluation. */
2183 safe_call (size_t nargs
, Lisp_Object
*args
)
2187 if (inhibit_eval_during_redisplay
)
2191 int count
= SPECPDL_INDEX ();
2192 struct gcpro gcpro1
;
2195 gcpro1
.nvars
= nargs
;
2196 specbind (Qinhibit_redisplay
, Qt
);
2197 /* Use Qt to ensure debugger does not run,
2198 so there is no possibility of wanting to redisplay. */
2199 val
= internal_condition_case_n (Ffuncall
, nargs
, args
, Qt
,
2202 val
= unbind_to (count
, val
);
2209 /* Call function FN with one argument ARG.
2210 Return the result, or nil if something went wrong. */
2213 safe_call1 (Lisp_Object fn
, Lisp_Object arg
)
2215 Lisp_Object args
[2];
2218 return safe_call (2, args
);
2221 static Lisp_Object Qeval
;
2224 safe_eval (Lisp_Object sexpr
)
2226 return safe_call1 (Qeval
, sexpr
);
2229 /* Call function FN with one argument ARG.
2230 Return the result, or nil if something went wrong. */
2233 safe_call2 (Lisp_Object fn
, Lisp_Object arg1
, Lisp_Object arg2
)
2235 Lisp_Object args
[3];
2239 return safe_call (3, args
);
2244 /***********************************************************************
2246 ***********************************************************************/
2250 /* Define CHECK_IT to perform sanity checks on iterators.
2251 This is for debugging. It is too slow to do unconditionally. */
2257 if (it
->method
== GET_FROM_STRING
)
2259 xassert (STRINGP (it
->string
));
2260 xassert (IT_STRING_CHARPOS (*it
) >= 0);
2264 xassert (IT_STRING_CHARPOS (*it
) < 0);
2265 if (it
->method
== GET_FROM_BUFFER
)
2267 /* Check that character and byte positions agree. */
2268 xassert (IT_CHARPOS (*it
) == BYTE_TO_CHAR (IT_BYTEPOS (*it
)));
2273 xassert (it
->current
.dpvec_index
>= 0);
2275 xassert (it
->current
.dpvec_index
< 0);
2278 #define CHECK_IT(IT) check_it ((IT))
2282 #define CHECK_IT(IT) (void) 0
2289 /* Check that the window end of window W is what we expect it
2290 to be---the last row in the current matrix displaying text. */
2293 check_window_end (w
)
2296 if (!MINI_WINDOW_P (w
)
2297 && !NILP (w
->window_end_valid
))
2299 struct glyph_row
*row
;
2300 xassert ((row
= MATRIX_ROW (w
->current_matrix
,
2301 XFASTINT (w
->window_end_vpos
)),
2303 || MATRIX_ROW_DISPLAYS_TEXT_P (row
)
2304 || MATRIX_ROW_VPOS (row
, w
->current_matrix
) == 0));
2308 #define CHECK_WINDOW_END(W) check_window_end ((W))
2310 #else /* not GLYPH_DEBUG */
2312 #define CHECK_WINDOW_END(W) (void) 0
2314 #endif /* not GLYPH_DEBUG */
2318 /***********************************************************************
2319 Iterator initialization
2320 ***********************************************************************/
2322 /* Initialize IT for displaying current_buffer in window W, starting
2323 at character position CHARPOS. CHARPOS < 0 means that no buffer
2324 position is specified which is useful when the iterator is assigned
2325 a position later. BYTEPOS is the byte position corresponding to
2326 CHARPOS. BYTEPOS < 0 means compute it from CHARPOS.
2328 If ROW is not null, calls to produce_glyphs with IT as parameter
2329 will produce glyphs in that row.
2331 BASE_FACE_ID is the id of a base face to use. It must be one of
2332 DEFAULT_FACE_ID for normal text, MODE_LINE_FACE_ID,
2333 MODE_LINE_INACTIVE_FACE_ID, or HEADER_LINE_FACE_ID for displaying
2334 mode lines, or TOOL_BAR_FACE_ID for displaying the tool-bar.
2336 If ROW is null and BASE_FACE_ID is equal to MODE_LINE_FACE_ID,
2337 MODE_LINE_INACTIVE_FACE_ID, or HEADER_LINE_FACE_ID, the iterator
2338 will be initialized to use the corresponding mode line glyph row of
2339 the desired matrix of W. */
2342 init_iterator (struct it
*it
, struct window
*w
,
2343 EMACS_INT charpos
, EMACS_INT bytepos
,
2344 struct glyph_row
*row
, enum face_id base_face_id
)
2346 int highlight_region_p
;
2347 enum face_id remapped_base_face_id
= base_face_id
;
2349 /* Some precondition checks. */
2350 xassert (w
!= NULL
&& it
!= NULL
);
2351 xassert (charpos
< 0 || (charpos
>= BUF_BEG (current_buffer
)
2354 /* If face attributes have been changed since the last redisplay,
2355 free realized faces now because they depend on face definitions
2356 that might have changed. Don't free faces while there might be
2357 desired matrices pending which reference these faces. */
2358 if (face_change_count
&& !inhibit_free_realized_faces
)
2360 face_change_count
= 0;
2361 free_all_realized_faces (Qnil
);
2364 /* Perhaps remap BASE_FACE_ID to a user-specified alternative. */
2365 if (! NILP (Vface_remapping_alist
))
2366 remapped_base_face_id
= lookup_basic_face (XFRAME (w
->frame
), base_face_id
);
2368 /* Use one of the mode line rows of W's desired matrix if
2372 if (base_face_id
== MODE_LINE_FACE_ID
2373 || base_face_id
== MODE_LINE_INACTIVE_FACE_ID
)
2374 row
= MATRIX_MODE_LINE_ROW (w
->desired_matrix
);
2375 else if (base_face_id
== HEADER_LINE_FACE_ID
)
2376 row
= MATRIX_HEADER_LINE_ROW (w
->desired_matrix
);
2380 memset (it
, 0, sizeof *it
);
2381 it
->current
.overlay_string_index
= -1;
2382 it
->current
.dpvec_index
= -1;
2383 it
->base_face_id
= remapped_base_face_id
;
2385 IT_STRING_CHARPOS (*it
) = IT_STRING_BYTEPOS (*it
) = -1;
2386 it
->paragraph_embedding
= L2R
;
2387 it
->bidi_it
.string
.lstring
= Qnil
;
2388 it
->bidi_it
.string
.s
= NULL
;
2389 it
->bidi_it
.string
.bufpos
= 0;
2391 /* The window in which we iterate over current_buffer: */
2392 XSETWINDOW (it
->window
, w
);
2394 it
->f
= XFRAME (w
->frame
);
2398 /* Extra space between lines (on window systems only). */
2399 if (base_face_id
== DEFAULT_FACE_ID
2400 && FRAME_WINDOW_P (it
->f
))
2402 if (NATNUMP (BVAR (current_buffer
, extra_line_spacing
)))
2403 it
->extra_line_spacing
= XFASTINT (BVAR (current_buffer
, extra_line_spacing
));
2404 else if (FLOATP (BVAR (current_buffer
, extra_line_spacing
)))
2405 it
->extra_line_spacing
= (XFLOAT_DATA (BVAR (current_buffer
, extra_line_spacing
))
2406 * FRAME_LINE_HEIGHT (it
->f
));
2407 else if (it
->f
->extra_line_spacing
> 0)
2408 it
->extra_line_spacing
= it
->f
->extra_line_spacing
;
2409 it
->max_extra_line_spacing
= 0;
2412 /* If realized faces have been removed, e.g. because of face
2413 attribute changes of named faces, recompute them. When running
2414 in batch mode, the face cache of the initial frame is null. If
2415 we happen to get called, make a dummy face cache. */
2416 if (FRAME_FACE_CACHE (it
->f
) == NULL
)
2417 init_frame_faces (it
->f
);
2418 if (FRAME_FACE_CACHE (it
->f
)->used
== 0)
2419 recompute_basic_faces (it
->f
);
2421 /* Current value of the `slice', `space-width', and 'height' properties. */
2422 it
->slice
.x
= it
->slice
.y
= it
->slice
.width
= it
->slice
.height
= Qnil
;
2423 it
->space_width
= Qnil
;
2424 it
->font_height
= Qnil
;
2425 it
->override_ascent
= -1;
2427 /* Are control characters displayed as `^C'? */
2428 it
->ctl_arrow_p
= !NILP (BVAR (current_buffer
, ctl_arrow
));
2430 /* -1 means everything between a CR and the following line end
2431 is invisible. >0 means lines indented more than this value are
2433 it
->selective
= (INTEGERP (BVAR (current_buffer
, selective_display
))
2434 ? XFASTINT (BVAR (current_buffer
, selective_display
))
2435 : (!NILP (BVAR (current_buffer
, selective_display
))
2437 it
->selective_display_ellipsis_p
2438 = !NILP (BVAR (current_buffer
, selective_display_ellipses
));
2440 /* Display table to use. */
2441 it
->dp
= window_display_table (w
);
2443 /* Are multibyte characters enabled in current_buffer? */
2444 it
->multibyte_p
= !NILP (BVAR (current_buffer
, enable_multibyte_characters
));
2446 /* Non-zero if we should highlight the region. */
2448 = (!NILP (Vtransient_mark_mode
)
2449 && !NILP (BVAR (current_buffer
, mark_active
))
2450 && XMARKER (BVAR (current_buffer
, mark
))->buffer
!= 0);
2452 /* Set IT->region_beg_charpos and IT->region_end_charpos to the
2453 start and end of a visible region in window IT->w. Set both to
2454 -1 to indicate no region. */
2455 if (highlight_region_p
2456 /* Maybe highlight only in selected window. */
2457 && (/* Either show region everywhere. */
2458 highlight_nonselected_windows
2459 /* Or show region in the selected window. */
2460 || w
== XWINDOW (selected_window
)
2461 /* Or show the region if we are in the mini-buffer and W is
2462 the window the mini-buffer refers to. */
2463 || (MINI_WINDOW_P (XWINDOW (selected_window
))
2464 && WINDOWP (minibuf_selected_window
)
2465 && w
== XWINDOW (minibuf_selected_window
))))
2467 EMACS_INT markpos
= marker_position (BVAR (current_buffer
, mark
));
2468 it
->region_beg_charpos
= min (PT
, markpos
);
2469 it
->region_end_charpos
= max (PT
, markpos
);
2472 it
->region_beg_charpos
= it
->region_end_charpos
= -1;
2474 /* Get the position at which the redisplay_end_trigger hook should
2475 be run, if it is to be run at all. */
2476 if (MARKERP (w
->redisplay_end_trigger
)
2477 && XMARKER (w
->redisplay_end_trigger
)->buffer
!= 0)
2478 it
->redisplay_end_trigger_charpos
2479 = marker_position (w
->redisplay_end_trigger
);
2480 else if (INTEGERP (w
->redisplay_end_trigger
))
2481 it
->redisplay_end_trigger_charpos
= XINT (w
->redisplay_end_trigger
);
2483 /* Correct bogus values of tab_width. */
2484 it
->tab_width
= XINT (BVAR (current_buffer
, tab_width
));
2485 if (it
->tab_width
<= 0 || it
->tab_width
> 1000)
2488 /* Are lines in the display truncated? */
2489 if (base_face_id
!= DEFAULT_FACE_ID
2490 || XINT (it
->w
->hscroll
)
2491 || (! WINDOW_FULL_WIDTH_P (it
->w
)
2492 && ((!NILP (Vtruncate_partial_width_windows
)
2493 && !INTEGERP (Vtruncate_partial_width_windows
))
2494 || (INTEGERP (Vtruncate_partial_width_windows
)
2495 && (WINDOW_TOTAL_COLS (it
->w
)
2496 < XINT (Vtruncate_partial_width_windows
))))))
2497 it
->line_wrap
= TRUNCATE
;
2498 else if (NILP (BVAR (current_buffer
, truncate_lines
)))
2499 it
->line_wrap
= NILP (BVAR (current_buffer
, word_wrap
))
2500 ? WINDOW_WRAP
: WORD_WRAP
;
2502 it
->line_wrap
= TRUNCATE
;
2504 /* Get dimensions of truncation and continuation glyphs. These are
2505 displayed as fringe bitmaps under X, so we don't need them for such
2507 if (!FRAME_WINDOW_P (it
->f
))
2509 if (it
->line_wrap
== TRUNCATE
)
2511 /* We will need the truncation glyph. */
2512 xassert (it
->glyph_row
== NULL
);
2513 produce_special_glyphs (it
, IT_TRUNCATION
);
2514 it
->truncation_pixel_width
= it
->pixel_width
;
2518 /* We will need the continuation glyph. */
2519 xassert (it
->glyph_row
== NULL
);
2520 produce_special_glyphs (it
, IT_CONTINUATION
);
2521 it
->continuation_pixel_width
= it
->pixel_width
;
2524 /* Reset these values to zero because the produce_special_glyphs
2525 above has changed them. */
2526 it
->pixel_width
= it
->ascent
= it
->descent
= 0;
2527 it
->phys_ascent
= it
->phys_descent
= 0;
2530 /* Set this after getting the dimensions of truncation and
2531 continuation glyphs, so that we don't produce glyphs when calling
2532 produce_special_glyphs, above. */
2533 it
->glyph_row
= row
;
2534 it
->area
= TEXT_AREA
;
2536 /* Forget any previous info about this row being reversed. */
2538 it
->glyph_row
->reversed_p
= 0;
2540 /* Get the dimensions of the display area. The display area
2541 consists of the visible window area plus a horizontally scrolled
2542 part to the left of the window. All x-values are relative to the
2543 start of this total display area. */
2544 if (base_face_id
!= DEFAULT_FACE_ID
)
2546 /* Mode lines, menu bar in terminal frames. */
2547 it
->first_visible_x
= 0;
2548 it
->last_visible_x
= WINDOW_TOTAL_WIDTH (w
);
2553 = XFASTINT (it
->w
->hscroll
) * FRAME_COLUMN_WIDTH (it
->f
);
2554 it
->last_visible_x
= (it
->first_visible_x
2555 + window_box_width (w
, TEXT_AREA
));
2557 /* If we truncate lines, leave room for the truncator glyph(s) at
2558 the right margin. Otherwise, leave room for the continuation
2559 glyph(s). Truncation and continuation glyphs are not inserted
2560 for window-based redisplay. */
2561 if (!FRAME_WINDOW_P (it
->f
))
2563 if (it
->line_wrap
== TRUNCATE
)
2564 it
->last_visible_x
-= it
->truncation_pixel_width
;
2566 it
->last_visible_x
-= it
->continuation_pixel_width
;
2569 it
->header_line_p
= WINDOW_WANTS_HEADER_LINE_P (w
);
2570 it
->current_y
= WINDOW_HEADER_LINE_HEIGHT (w
) + w
->vscroll
;
2573 /* Leave room for a border glyph. */
2574 if (!FRAME_WINDOW_P (it
->f
)
2575 && !WINDOW_RIGHTMOST_P (it
->w
))
2576 it
->last_visible_x
-= 1;
2578 it
->last_visible_y
= window_text_bottom_y (w
);
2580 /* For mode lines and alike, arrange for the first glyph having a
2581 left box line if the face specifies a box. */
2582 if (base_face_id
!= DEFAULT_FACE_ID
)
2586 it
->face_id
= remapped_base_face_id
;
2588 /* If we have a boxed mode line, make the first character appear
2589 with a left box line. */
2590 face
= FACE_FROM_ID (it
->f
, remapped_base_face_id
);
2591 if (face
->box
!= FACE_NO_BOX
)
2592 it
->start_of_box_run_p
= 1;
2595 /* If a buffer position was specified, set the iterator there,
2596 getting overlays and face properties from that position. */
2597 if (charpos
>= BUF_BEG (current_buffer
))
2599 it
->end_charpos
= ZV
;
2601 IT_CHARPOS (*it
) = charpos
;
2603 /* Compute byte position if not specified. */
2604 if (bytepos
< charpos
)
2605 IT_BYTEPOS (*it
) = CHAR_TO_BYTE (charpos
);
2607 IT_BYTEPOS (*it
) = bytepos
;
2609 it
->start
= it
->current
;
2610 /* Do we need to reorder bidirectional text? Not if this is a
2611 unibyte buffer: by definition, none of the single-byte
2612 characters are strong R2L, so no reordering is needed. And
2613 bidi.c doesn't support unibyte buffers anyway. */
2615 !NILP (BVAR (current_buffer
, bidi_display_reordering
))
2618 /* If we are to reorder bidirectional text, init the bidi
2622 /* Note the paragraph direction that this buffer wants to
2624 if (EQ (BVAR (current_buffer
, bidi_paragraph_direction
),
2626 it
->paragraph_embedding
= L2R
;
2627 else if (EQ (BVAR (current_buffer
, bidi_paragraph_direction
),
2629 it
->paragraph_embedding
= R2L
;
2631 it
->paragraph_embedding
= NEUTRAL_DIR
;
2632 bidi_unshelve_cache (NULL
);
2633 bidi_init_it (charpos
, IT_BYTEPOS (*it
), FRAME_WINDOW_P (it
->f
),
2637 /* Compute faces etc. */
2638 reseat (it
, it
->current
.pos
, 1);
2645 /* Initialize IT for the display of window W with window start POS. */
2648 start_display (struct it
*it
, struct window
*w
, struct text_pos pos
)
2650 struct glyph_row
*row
;
2651 int first_vpos
= WINDOW_WANTS_HEADER_LINE_P (w
) ? 1 : 0;
2653 row
= w
->desired_matrix
->rows
+ first_vpos
;
2654 init_iterator (it
, w
, CHARPOS (pos
), BYTEPOS (pos
), row
, DEFAULT_FACE_ID
);
2655 it
->first_vpos
= first_vpos
;
2657 /* Don't reseat to previous visible line start if current start
2658 position is in a string or image. */
2659 if (it
->method
== GET_FROM_BUFFER
&& it
->line_wrap
!= TRUNCATE
)
2661 int start_at_line_beg_p
;
2662 int first_y
= it
->current_y
;
2664 /* If window start is not at a line start, skip forward to POS to
2665 get the correct continuation lines width. */
2666 start_at_line_beg_p
= (CHARPOS (pos
) == BEGV
2667 || FETCH_BYTE (BYTEPOS (pos
) - 1) == '\n');
2668 if (!start_at_line_beg_p
)
2672 reseat_at_previous_visible_line_start (it
);
2673 move_it_to (it
, CHARPOS (pos
), -1, -1, -1, MOVE_TO_POS
);
2675 new_x
= it
->current_x
+ it
->pixel_width
;
2677 /* If lines are continued, this line may end in the middle
2678 of a multi-glyph character (e.g. a control character
2679 displayed as \003, or in the middle of an overlay
2680 string). In this case move_it_to above will not have
2681 taken us to the start of the continuation line but to the
2682 end of the continued line. */
2683 if (it
->current_x
> 0
2684 && it
->line_wrap
!= TRUNCATE
/* Lines are continued. */
2685 && (/* And glyph doesn't fit on the line. */
2686 new_x
> it
->last_visible_x
2687 /* Or it fits exactly and we're on a window
2689 || (new_x
== it
->last_visible_x
2690 && FRAME_WINDOW_P (it
->f
))))
2692 if (it
->current
.dpvec_index
>= 0
2693 || it
->current
.overlay_string_index
>= 0)
2695 set_iterator_to_next (it
, 1);
2696 move_it_in_display_line_to (it
, -1, -1, 0);
2699 it
->continuation_lines_width
+= it
->current_x
;
2702 /* We're starting a new display line, not affected by the
2703 height of the continued line, so clear the appropriate
2704 fields in the iterator structure. */
2705 it
->max_ascent
= it
->max_descent
= 0;
2706 it
->max_phys_ascent
= it
->max_phys_descent
= 0;
2708 it
->current_y
= first_y
;
2710 it
->current_x
= it
->hpos
= 0;
2716 /* Return 1 if POS is a position in ellipses displayed for invisible
2717 text. W is the window we display, for text property lookup. */
2720 in_ellipses_for_invisible_text_p (struct display_pos
*pos
, struct window
*w
)
2722 Lisp_Object prop
, window
;
2724 EMACS_INT charpos
= CHARPOS (pos
->pos
);
2726 /* If POS specifies a position in a display vector, this might
2727 be for an ellipsis displayed for invisible text. We won't
2728 get the iterator set up for delivering that ellipsis unless
2729 we make sure that it gets aware of the invisible text. */
2730 if (pos
->dpvec_index
>= 0
2731 && pos
->overlay_string_index
< 0
2732 && CHARPOS (pos
->string_pos
) < 0
2734 && (XSETWINDOW (window
, w
),
2735 prop
= Fget_char_property (make_number (charpos
),
2736 Qinvisible
, window
),
2737 !TEXT_PROP_MEANS_INVISIBLE (prop
)))
2739 prop
= Fget_char_property (make_number (charpos
- 1), Qinvisible
,
2741 ellipses_p
= 2 == TEXT_PROP_MEANS_INVISIBLE (prop
);
2748 /* Initialize IT for stepping through current_buffer in window W,
2749 starting at position POS that includes overlay string and display
2750 vector/ control character translation position information. Value
2751 is zero if there are overlay strings with newlines at POS. */
2754 init_from_display_pos (struct it
*it
, struct window
*w
, struct display_pos
*pos
)
2756 EMACS_INT charpos
= CHARPOS (pos
->pos
), bytepos
= BYTEPOS (pos
->pos
);
2757 int i
, overlay_strings_with_newlines
= 0;
2759 /* If POS specifies a position in a display vector, this might
2760 be for an ellipsis displayed for invisible text. We won't
2761 get the iterator set up for delivering that ellipsis unless
2762 we make sure that it gets aware of the invisible text. */
2763 if (in_ellipses_for_invisible_text_p (pos
, w
))
2769 /* Keep in mind: the call to reseat in init_iterator skips invisible
2770 text, so we might end up at a position different from POS. This
2771 is only a problem when POS is a row start after a newline and an
2772 overlay starts there with an after-string, and the overlay has an
2773 invisible property. Since we don't skip invisible text in
2774 display_line and elsewhere immediately after consuming the
2775 newline before the row start, such a POS will not be in a string,
2776 but the call to init_iterator below will move us to the
2778 init_iterator (it
, w
, charpos
, bytepos
, NULL
, DEFAULT_FACE_ID
);
2780 /* This only scans the current chunk -- it should scan all chunks.
2781 However, OVERLAY_STRING_CHUNK_SIZE has been increased from 3 in 21.1
2782 to 16 in 22.1 to make this a lesser problem. */
2783 for (i
= 0; i
< it
->n_overlay_strings
&& i
< OVERLAY_STRING_CHUNK_SIZE
; ++i
)
2785 const char *s
= SSDATA (it
->overlay_strings
[i
]);
2786 const char *e
= s
+ SBYTES (it
->overlay_strings
[i
]);
2788 while (s
< e
&& *s
!= '\n')
2793 overlay_strings_with_newlines
= 1;
2798 /* If position is within an overlay string, set up IT to the right
2800 if (pos
->overlay_string_index
>= 0)
2804 /* If the first overlay string happens to have a `display'
2805 property for an image, the iterator will be set up for that
2806 image, and we have to undo that setup first before we can
2807 correct the overlay string index. */
2808 if (it
->method
== GET_FROM_IMAGE
)
2811 /* We already have the first chunk of overlay strings in
2812 IT->overlay_strings. Load more until the one for
2813 pos->overlay_string_index is in IT->overlay_strings. */
2814 if (pos
->overlay_string_index
>= OVERLAY_STRING_CHUNK_SIZE
)
2816 int n
= pos
->overlay_string_index
/ OVERLAY_STRING_CHUNK_SIZE
;
2817 it
->current
.overlay_string_index
= 0;
2820 load_overlay_strings (it
, 0);
2821 it
->current
.overlay_string_index
+= OVERLAY_STRING_CHUNK_SIZE
;
2825 it
->current
.overlay_string_index
= pos
->overlay_string_index
;
2826 relative_index
= (it
->current
.overlay_string_index
2827 % OVERLAY_STRING_CHUNK_SIZE
);
2828 it
->string
= it
->overlay_strings
[relative_index
];
2829 xassert (STRINGP (it
->string
));
2830 it
->current
.string_pos
= pos
->string_pos
;
2831 it
->method
= GET_FROM_STRING
;
2834 if (CHARPOS (pos
->string_pos
) >= 0)
2836 /* Recorded position is not in an overlay string, but in another
2837 string. This can only be a string from a `display' property.
2838 IT should already be filled with that string. */
2839 it
->current
.string_pos
= pos
->string_pos
;
2840 xassert (STRINGP (it
->string
));
2843 /* Restore position in display vector translations, control
2844 character translations or ellipses. */
2845 if (pos
->dpvec_index
>= 0)
2847 if (it
->dpvec
== NULL
)
2848 get_next_display_element (it
);
2849 xassert (it
->dpvec
&& it
->current
.dpvec_index
== 0);
2850 it
->current
.dpvec_index
= pos
->dpvec_index
;
2854 return !overlay_strings_with_newlines
;
2858 /* Initialize IT for stepping through current_buffer in window W
2859 starting at ROW->start. */
2862 init_to_row_start (struct it
*it
, struct window
*w
, struct glyph_row
*row
)
2864 init_from_display_pos (it
, w
, &row
->start
);
2865 it
->start
= row
->start
;
2866 it
->continuation_lines_width
= row
->continuation_lines_width
;
2871 /* Initialize IT for stepping through current_buffer in window W
2872 starting in the line following ROW, i.e. starting at ROW->end.
2873 Value is zero if there are overlay strings with newlines at ROW's
2877 init_to_row_end (struct it
*it
, struct window
*w
, struct glyph_row
*row
)
2881 if (init_from_display_pos (it
, w
, &row
->end
))
2883 if (row
->continued_p
)
2884 it
->continuation_lines_width
2885 = row
->continuation_lines_width
+ row
->pixel_width
;
2896 /***********************************************************************
2898 ***********************************************************************/
2900 /* Called when IT reaches IT->stop_charpos. Handle text property and
2901 overlay changes. Set IT->stop_charpos to the next position where
2905 handle_stop (struct it
*it
)
2907 enum prop_handled handled
;
2908 int handle_overlay_change_p
;
2912 it
->current
.dpvec_index
= -1;
2913 handle_overlay_change_p
= !it
->ignore_overlay_strings_at_pos_p
;
2914 it
->ignore_overlay_strings_at_pos_p
= 0;
2917 /* Use face of preceding text for ellipsis (if invisible) */
2918 if (it
->selective_display_ellipsis_p
)
2919 it
->saved_face_id
= it
->face_id
;
2923 handled
= HANDLED_NORMALLY
;
2925 /* Call text property handlers. */
2926 for (p
= it_props
; p
->handler
; ++p
)
2928 handled
= p
->handler (it
);
2930 if (handled
== HANDLED_RECOMPUTE_PROPS
)
2932 else if (handled
== HANDLED_RETURN
)
2934 /* We still want to show before and after strings from
2935 overlays even if the actual buffer text is replaced. */
2936 if (!handle_overlay_change_p
2938 || !get_overlay_strings_1 (it
, 0, 0))
2941 setup_for_ellipsis (it
, 0);
2942 /* When handling a display spec, we might load an
2943 empty string. In that case, discard it here. We
2944 used to discard it in handle_single_display_spec,
2945 but that causes get_overlay_strings_1, above, to
2946 ignore overlay strings that we must check. */
2947 if (STRINGP (it
->string
) && !SCHARS (it
->string
))
2951 else if (STRINGP (it
->string
) && !SCHARS (it
->string
))
2955 it
->ignore_overlay_strings_at_pos_p
= 1;
2956 it
->string_from_display_prop_p
= 0;
2957 it
->from_disp_prop_p
= 0;
2958 handle_overlay_change_p
= 0;
2960 handled
= HANDLED_RECOMPUTE_PROPS
;
2963 else if (handled
== HANDLED_OVERLAY_STRING_CONSUMED
)
2964 handle_overlay_change_p
= 0;
2967 if (handled
!= HANDLED_RECOMPUTE_PROPS
)
2969 /* Don't check for overlay strings below when set to deliver
2970 characters from a display vector. */
2971 if (it
->method
== GET_FROM_DISPLAY_VECTOR
)
2972 handle_overlay_change_p
= 0;
2974 /* Handle overlay changes.
2975 This sets HANDLED to HANDLED_RECOMPUTE_PROPS
2976 if it finds overlays. */
2977 if (handle_overlay_change_p
)
2978 handled
= handle_overlay_change (it
);
2983 setup_for_ellipsis (it
, 0);
2987 while (handled
== HANDLED_RECOMPUTE_PROPS
);
2989 /* Determine where to stop next. */
2990 if (handled
== HANDLED_NORMALLY
)
2991 compute_stop_pos (it
);
2995 /* Compute IT->stop_charpos from text property and overlay change
2996 information for IT's current position. */
2999 compute_stop_pos (struct it
*it
)
3001 register INTERVAL iv
, next_iv
;
3002 Lisp_Object object
, limit
, position
;
3003 EMACS_INT charpos
, bytepos
;
3005 /* If nowhere else, stop at the end. */
3006 it
->stop_charpos
= it
->end_charpos
;
3008 if (STRINGP (it
->string
))
3010 /* Strings are usually short, so don't limit the search for
3012 object
= it
->string
;
3014 charpos
= IT_STRING_CHARPOS (*it
);
3015 bytepos
= IT_STRING_BYTEPOS (*it
);
3021 /* If next overlay change is in front of the current stop pos
3022 (which is IT->end_charpos), stop there. Note: value of
3023 next_overlay_change is point-max if no overlay change
3025 charpos
= IT_CHARPOS (*it
);
3026 bytepos
= IT_BYTEPOS (*it
);
3027 pos
= next_overlay_change (charpos
);
3028 if (pos
< it
->stop_charpos
)
3029 it
->stop_charpos
= pos
;
3031 /* If showing the region, we have to stop at the region
3032 start or end because the face might change there. */
3033 if (it
->region_beg_charpos
> 0)
3035 if (IT_CHARPOS (*it
) < it
->region_beg_charpos
)
3036 it
->stop_charpos
= min (it
->stop_charpos
, it
->region_beg_charpos
);
3037 else if (IT_CHARPOS (*it
) < it
->region_end_charpos
)
3038 it
->stop_charpos
= min (it
->stop_charpos
, it
->region_end_charpos
);
3041 /* Set up variables for computing the stop position from text
3042 property changes. */
3043 XSETBUFFER (object
, current_buffer
);
3044 limit
= make_number (IT_CHARPOS (*it
) + TEXT_PROP_DISTANCE_LIMIT
);
3047 /* Get the interval containing IT's position. Value is a null
3048 interval if there isn't such an interval. */
3049 position
= make_number (charpos
);
3050 iv
= validate_interval_range (object
, &position
, &position
, 0);
3051 if (!NULL_INTERVAL_P (iv
))
3053 Lisp_Object values_here
[LAST_PROP_IDX
];
3056 /* Get properties here. */
3057 for (p
= it_props
; p
->handler
; ++p
)
3058 values_here
[p
->idx
] = textget (iv
->plist
, *p
->name
);
3060 /* Look for an interval following iv that has different
3062 for (next_iv
= next_interval (iv
);
3063 (!NULL_INTERVAL_P (next_iv
)
3065 || XFASTINT (limit
) > next_iv
->position
));
3066 next_iv
= next_interval (next_iv
))
3068 for (p
= it_props
; p
->handler
; ++p
)
3070 Lisp_Object new_value
;
3072 new_value
= textget (next_iv
->plist
, *p
->name
);
3073 if (!EQ (values_here
[p
->idx
], new_value
))
3081 if (!NULL_INTERVAL_P (next_iv
))
3083 if (INTEGERP (limit
)
3084 && next_iv
->position
>= XFASTINT (limit
))
3085 /* No text property change up to limit. */
3086 it
->stop_charpos
= min (XFASTINT (limit
), it
->stop_charpos
);
3088 /* Text properties change in next_iv. */
3089 it
->stop_charpos
= min (it
->stop_charpos
, next_iv
->position
);
3093 if (it
->cmp_it
.id
< 0)
3095 EMACS_INT stoppos
= it
->end_charpos
;
3097 if (it
->bidi_p
&& it
->bidi_it
.scan_dir
< 0)
3099 composition_compute_stop_pos (&it
->cmp_it
, charpos
, bytepos
,
3100 stoppos
, it
->string
);
3103 xassert (STRINGP (it
->string
)
3104 || (it
->stop_charpos
>= BEGV
3105 && it
->stop_charpos
>= IT_CHARPOS (*it
)));
3109 /* Return the position of the next overlay change after POS in
3110 current_buffer. Value is point-max if no overlay change
3111 follows. This is like `next-overlay-change' but doesn't use
3115 next_overlay_change (EMACS_INT pos
)
3119 Lisp_Object
*overlays
;
3122 /* Get all overlays at the given position. */
3123 GET_OVERLAYS_AT (pos
, overlays
, noverlays
, &endpos
, 1);
3125 /* If any of these overlays ends before endpos,
3126 use its ending point instead. */
3127 for (i
= 0; i
< noverlays
; ++i
)
3132 oend
= OVERLAY_END (overlays
[i
]);
3133 oendpos
= OVERLAY_POSITION (oend
);
3134 endpos
= min (endpos
, oendpos
);
3140 /* Record one cached display string position found recently by
3141 compute_display_string_pos. */
3142 static EMACS_INT cached_disp_pos
;
3143 static struct buffer
*cached_disp_buffer
;
3144 static int cached_disp_modiff
;
3146 /* Return the character position of a display string at or after
3147 position specified by POSITION. If no display string exists at or
3148 after POSITION, return ZV. A display string is either an overlay
3149 with `display' property whose value is a string, or a `display'
3150 text property whose value is a string. STRING is data about the
3151 string to iterate; if STRING->lstring is nil, we are iterating a
3152 buffer. FRAME_WINDOW_P is non-zero when we are displaying a window
3155 compute_display_string_pos (struct text_pos
*position
,
3156 struct bidi_string_data
*string
, int frame_window_p
)
3158 /* OBJECT = nil means current buffer. */
3159 Lisp_Object object
=
3160 (string
&& STRINGP (string
->lstring
)) ? string
->lstring
: Qnil
;
3161 Lisp_Object pos
, spec
;
3162 int string_p
= (string
&& (STRINGP (string
->lstring
) || string
->s
));
3163 EMACS_INT eob
= string_p
? string
->schars
: ZV
;
3164 EMACS_INT begb
= string_p
? 0 : BEGV
;
3165 EMACS_INT bufpos
, charpos
= CHARPOS (*position
);
3166 struct text_pos tpos
;
3170 /* We don't support display properties whose values are strings
3171 that have display string properties. */
3172 || string
->from_disp_str
3173 /* C strings cannot have display properties. */
3174 || (string
->s
&& !STRINGP (object
)))
3177 /* Check the cached values. */
3178 if (!STRINGP (object
))
3183 b
= XBUFFER (object
);
3184 if (b
== cached_disp_buffer
3185 && BUF_MODIFF (b
) == cached_disp_modiff
3186 && charpos
<= cached_disp_pos
)
3187 return cached_disp_pos
;
3189 /* Record new values in the cache. */
3190 cached_disp_buffer
= b
;
3191 cached_disp_modiff
= BUF_MODIFF (b
);
3194 /* If the character at CHARPOS is where the display string begins,
3196 pos
= make_number (charpos
);
3197 if (STRINGP (object
))
3198 bufpos
= string
->bufpos
;
3202 if (!NILP (spec
= Fget_char_property (pos
, Qdisplay
, object
))
3204 || !EQ (Fget_char_property (make_number (charpos
- 1), Qdisplay
,
3207 && handle_display_spec (NULL
, spec
, object
, Qnil
, &tpos
, bufpos
,
3210 if (!STRINGP (object
))
3211 cached_disp_pos
= charpos
;
3215 /* Look forward for the first character with a `display' property
3216 that will replace the underlying text when displayed. */
3218 pos
= Fnext_single_char_property_change (pos
, Qdisplay
, object
, Qnil
);
3219 CHARPOS (tpos
) = XFASTINT (pos
);
3220 if (STRINGP (object
))
3221 BYTEPOS (tpos
) = string_char_to_byte (object
, CHARPOS (tpos
));
3223 BYTEPOS (tpos
) = CHAR_TO_BYTE (CHARPOS (tpos
));
3224 if (CHARPOS (tpos
) >= eob
)
3226 spec
= Fget_char_property (pos
, Qdisplay
, object
);
3227 if (!STRINGP (object
))
3228 bufpos
= CHARPOS (tpos
);
3229 } while (NILP (spec
)
3230 || !handle_display_spec (NULL
, spec
, object
, Qnil
, &tpos
, bufpos
,
3233 if (!STRINGP (object
))
3234 cached_disp_pos
= CHARPOS (tpos
);
3235 return CHARPOS (tpos
);
3238 /* Return the character position of the end of the display string that
3239 started at CHARPOS. A display string is either an overlay with
3240 `display' property whose value is a string or a `display' text
3241 property whose value is a string. */
3243 compute_display_string_end (EMACS_INT charpos
, struct bidi_string_data
*string
)
3245 /* OBJECT = nil means current buffer. */
3246 Lisp_Object object
=
3247 (string
&& STRINGP (string
->lstring
)) ? string
->lstring
: Qnil
;
3248 Lisp_Object pos
= make_number (charpos
);
3250 (STRINGP (object
) || (string
&& string
->s
)) ? string
->schars
: ZV
;
3252 if (charpos
>= eob
|| (string
->s
&& !STRINGP (object
)))
3255 if (NILP (Fget_char_property (pos
, Qdisplay
, object
)))
3258 /* Look forward for the first character where the `display' property
3260 pos
= Fnext_single_char_property_change (pos
, Qdisplay
, object
, Qnil
);
3262 return XFASTINT (pos
);
3267 /***********************************************************************
3269 ***********************************************************************/
3271 /* Handle changes in the `fontified' property of the current buffer by
3272 calling hook functions from Qfontification_functions to fontify
3275 static enum prop_handled
3276 handle_fontified_prop (struct it
*it
)
3278 Lisp_Object prop
, pos
;
3279 enum prop_handled handled
= HANDLED_NORMALLY
;
3281 if (!NILP (Vmemory_full
))
3284 /* Get the value of the `fontified' property at IT's current buffer
3285 position. (The `fontified' property doesn't have a special
3286 meaning in strings.) If the value is nil, call functions from
3287 Qfontification_functions. */
3288 if (!STRINGP (it
->string
)
3290 && !NILP (Vfontification_functions
)
3291 && !NILP (Vrun_hooks
)
3292 && (pos
= make_number (IT_CHARPOS (*it
)),
3293 prop
= Fget_char_property (pos
, Qfontified
, Qnil
),
3294 /* Ignore the special cased nil value always present at EOB since
3295 no amount of fontifying will be able to change it. */
3296 NILP (prop
) && IT_CHARPOS (*it
) < Z
))
3298 int count
= SPECPDL_INDEX ();
3300 struct buffer
*obuf
= current_buffer
;
3301 int begv
= BEGV
, zv
= ZV
;
3302 int old_clip_changed
= current_buffer
->clip_changed
;
3304 val
= Vfontification_functions
;
3305 specbind (Qfontification_functions
, Qnil
);
3307 xassert (it
->end_charpos
== ZV
);
3309 if (!CONSP (val
) || EQ (XCAR (val
), Qlambda
))
3310 safe_call1 (val
, pos
);
3313 Lisp_Object fns
, fn
;
3314 struct gcpro gcpro1
, gcpro2
;
3319 for (; CONSP (val
); val
= XCDR (val
))
3325 /* A value of t indicates this hook has a local
3326 binding; it means to run the global binding too.
3327 In a global value, t should not occur. If it
3328 does, we must ignore it to avoid an endless
3330 for (fns
= Fdefault_value (Qfontification_functions
);
3336 safe_call1 (fn
, pos
);
3340 safe_call1 (fn
, pos
);
3346 unbind_to (count
, Qnil
);
3348 /* Fontification functions routinely call `save-restriction'.
3349 Normally, this tags clip_changed, which can confuse redisplay
3350 (see discussion in Bug#6671). Since we don't perform any
3351 special handling of fontification changes in the case where
3352 `save-restriction' isn't called, there's no point doing so in
3353 this case either. So, if the buffer's restrictions are
3354 actually left unchanged, reset clip_changed. */
3355 if (obuf
== current_buffer
)
3357 if (begv
== BEGV
&& zv
== ZV
)
3358 current_buffer
->clip_changed
= old_clip_changed
;
3360 /* There isn't much we can reasonably do to protect against
3361 misbehaving fontification, but here's a fig leaf. */
3362 else if (!NILP (BVAR (obuf
, name
)))
3363 set_buffer_internal_1 (obuf
);
3365 /* The fontification code may have added/removed text.
3366 It could do even a lot worse, but let's at least protect against
3367 the most obvious case where only the text past `pos' gets changed',
3368 as is/was done in grep.el where some escapes sequences are turned
3369 into face properties (bug#7876). */
3370 it
->end_charpos
= ZV
;
3372 /* Return HANDLED_RECOMPUTE_PROPS only if function fontified
3373 something. This avoids an endless loop if they failed to
3374 fontify the text for which reason ever. */
3375 if (!NILP (Fget_char_property (pos
, Qfontified
, Qnil
)))
3376 handled
= HANDLED_RECOMPUTE_PROPS
;
3384 /***********************************************************************
3386 ***********************************************************************/
3388 /* Set up iterator IT from face properties at its current position.
3389 Called from handle_stop. */
3391 static enum prop_handled
3392 handle_face_prop (struct it
*it
)
3395 EMACS_INT next_stop
;
3397 if (!STRINGP (it
->string
))
3400 = face_at_buffer_position (it
->w
,
3402 it
->region_beg_charpos
,
3403 it
->region_end_charpos
,
3406 + TEXT_PROP_DISTANCE_LIMIT
),
3407 0, it
->base_face_id
);
3409 /* Is this a start of a run of characters with box face?
3410 Caveat: this can be called for a freshly initialized
3411 iterator; face_id is -1 in this case. We know that the new
3412 face will not change until limit, i.e. if the new face has a
3413 box, all characters up to limit will have one. But, as
3414 usual, we don't know whether limit is really the end. */
3415 if (new_face_id
!= it
->face_id
)
3417 struct face
*new_face
= FACE_FROM_ID (it
->f
, new_face_id
);
3419 /* If new face has a box but old face has not, this is
3420 the start of a run of characters with box, i.e. it has
3421 a shadow on the left side. The value of face_id of the
3422 iterator will be -1 if this is the initial call that gets
3423 the face. In this case, we have to look in front of IT's
3424 position and see whether there is a face != new_face_id. */
3425 it
->start_of_box_run_p
3426 = (new_face
->box
!= FACE_NO_BOX
3427 && (it
->face_id
>= 0
3428 || IT_CHARPOS (*it
) == BEG
3429 || new_face_id
!= face_before_it_pos (it
)));
3430 it
->face_box_p
= new_face
->box
!= FACE_NO_BOX
;
3438 Lisp_Object from_overlay
3439 = (it
->current
.overlay_string_index
>= 0
3440 ? it
->string_overlays
[it
->current
.overlay_string_index
]
3443 /* See if we got to this string directly or indirectly from
3444 an overlay property. That includes the before-string or
3445 after-string of an overlay, strings in display properties
3446 provided by an overlay, their text properties, etc.
3448 FROM_OVERLAY is the overlay that brought us here, or nil if none. */
3449 if (! NILP (from_overlay
))
3450 for (i
= it
->sp
- 1; i
>= 0; i
--)
3452 if (it
->stack
[i
].current
.overlay_string_index
>= 0)
3454 = it
->string_overlays
[it
->stack
[i
].current
.overlay_string_index
];
3455 else if (! NILP (it
->stack
[i
].from_overlay
))
3456 from_overlay
= it
->stack
[i
].from_overlay
;
3458 if (!NILP (from_overlay
))
3462 if (! NILP (from_overlay
))
3464 bufpos
= IT_CHARPOS (*it
);
3465 /* For a string from an overlay, the base face depends
3466 only on text properties and ignores overlays. */
3468 = face_for_overlay_string (it
->w
,
3470 it
->region_beg_charpos
,
3471 it
->region_end_charpos
,
3474 + TEXT_PROP_DISTANCE_LIMIT
),
3482 /* For strings from a `display' property, use the face at
3483 IT's current buffer position as the base face to merge
3484 with, so that overlay strings appear in the same face as
3485 surrounding text, unless they specify their own
3487 base_face_id
= underlying_face_id (it
);
3490 new_face_id
= face_at_string_position (it
->w
,
3492 IT_STRING_CHARPOS (*it
),
3494 it
->region_beg_charpos
,
3495 it
->region_end_charpos
,
3499 /* Is this a start of a run of characters with box? Caveat:
3500 this can be called for a freshly allocated iterator; face_id
3501 is -1 is this case. We know that the new face will not
3502 change until the next check pos, i.e. if the new face has a
3503 box, all characters up to that position will have a
3504 box. But, as usual, we don't know whether that position
3505 is really the end. */
3506 if (new_face_id
!= it
->face_id
)
3508 struct face
*new_face
= FACE_FROM_ID (it
->f
, new_face_id
);
3509 struct face
*old_face
= FACE_FROM_ID (it
->f
, it
->face_id
);
3511 /* If new face has a box but old face hasn't, this is the
3512 start of a run of characters with box, i.e. it has a
3513 shadow on the left side. */
3514 it
->start_of_box_run_p
3515 = new_face
->box
&& (old_face
== NULL
|| !old_face
->box
);
3516 it
->face_box_p
= new_face
->box
!= FACE_NO_BOX
;
3520 it
->face_id
= new_face_id
;
3521 return HANDLED_NORMALLY
;
3525 /* Return the ID of the face ``underlying'' IT's current position,
3526 which is in a string. If the iterator is associated with a
3527 buffer, return the face at IT's current buffer position.
3528 Otherwise, use the iterator's base_face_id. */
3531 underlying_face_id (struct it
*it
)
3533 int face_id
= it
->base_face_id
, i
;
3535 xassert (STRINGP (it
->string
));
3537 for (i
= it
->sp
- 1; i
>= 0; --i
)
3538 if (NILP (it
->stack
[i
].string
))
3539 face_id
= it
->stack
[i
].face_id
;
3545 /* Compute the face one character before or after the current position
3546 of IT, in the visual order. BEFORE_P non-zero means get the face
3547 in front (to the left in L2R paragraphs, to the right in R2L
3548 paragraphs) of IT's screen position. Value is the ID of the face. */
3551 face_before_or_after_it_pos (struct it
*it
, int before_p
)
3554 EMACS_INT next_check_charpos
;
3556 void *it_copy_data
= NULL
;
3558 xassert (it
->s
== NULL
);
3560 if (STRINGP (it
->string
))
3562 EMACS_INT bufpos
, charpos
;
3565 /* No face change past the end of the string (for the case
3566 we are padding with spaces). No face change before the
3568 if (IT_STRING_CHARPOS (*it
) >= SCHARS (it
->string
)
3569 || (IT_STRING_CHARPOS (*it
) == 0 && before_p
))
3574 /* Set charpos to the position before or after IT's current
3575 position, in the logical order, which in the non-bidi
3576 case is the same as the visual order. */
3578 charpos
= IT_STRING_CHARPOS (*it
) - 1;
3579 else if (it
->what
== IT_COMPOSITION
)
3580 /* For composition, we must check the character after the
3582 charpos
= IT_STRING_CHARPOS (*it
) + it
->cmp_it
.nchars
;
3584 charpos
= IT_STRING_CHARPOS (*it
) + 1;
3590 /* With bidi iteration, the character before the current
3591 in the visual order cannot be found by simple
3592 iteration, because "reverse" reordering is not
3593 supported. Instead, we need to use the move_it_*
3594 family of functions. */
3595 /* Ignore face changes before the first visible
3596 character on this display line. */
3597 if (it
->current_x
<= it
->first_visible_x
)
3599 SAVE_IT (it_copy
, *it
, it_copy_data
);
3600 /* Implementation note: Since move_it_in_display_line
3601 works in the iterator geometry, and thinks the first
3602 character is always the leftmost, even in R2L lines,
3603 we don't need to distinguish between the R2L and L2R
3605 move_it_in_display_line (&it_copy
, SCHARS (it_copy
.string
),
3606 it_copy
.current_x
- 1, MOVE_TO_X
);
3607 charpos
= IT_STRING_CHARPOS (it_copy
);
3608 RESTORE_IT (it
, it
, it_copy_data
);
3612 /* Set charpos to the string position of the character
3613 that comes after IT's current position in the visual
3615 int n
= (it
->what
== IT_COMPOSITION
? it
->cmp_it
.nchars
: 1);
3619 bidi_move_to_visually_next (&it_copy
.bidi_it
);
3621 charpos
= it_copy
.bidi_it
.charpos
;
3624 xassert (0 <= charpos
&& charpos
<= SCHARS (it
->string
));
3626 if (it
->current
.overlay_string_index
>= 0)
3627 bufpos
= IT_CHARPOS (*it
);
3631 base_face_id
= underlying_face_id (it
);
3633 /* Get the face for ASCII, or unibyte. */
3634 face_id
= face_at_string_position (it
->w
,
3638 it
->region_beg_charpos
,
3639 it
->region_end_charpos
,
3640 &next_check_charpos
,
3643 /* Correct the face for charsets different from ASCII. Do it
3644 for the multibyte case only. The face returned above is
3645 suitable for unibyte text if IT->string is unibyte. */
3646 if (STRING_MULTIBYTE (it
->string
))
3648 struct text_pos pos1
= string_pos (charpos
, it
->string
);
3649 const unsigned char *p
= SDATA (it
->string
) + BYTEPOS (pos1
);
3651 struct face
*face
= FACE_FROM_ID (it
->f
, face_id
);
3653 c
= string_char_and_length (p
, &len
);
3654 face_id
= FACE_FOR_CHAR (it
->f
, face
, c
, charpos
, it
->string
);
3659 struct text_pos pos
;
3661 if ((IT_CHARPOS (*it
) >= ZV
&& !before_p
)
3662 || (IT_CHARPOS (*it
) <= BEGV
&& before_p
))
3665 limit
= IT_CHARPOS (*it
) + TEXT_PROP_DISTANCE_LIMIT
;
3666 pos
= it
->current
.pos
;
3671 DEC_TEXT_POS (pos
, it
->multibyte_p
);
3674 if (it
->what
== IT_COMPOSITION
)
3676 /* For composition, we must check the position after
3678 pos
.charpos
+= it
->cmp_it
.nchars
;
3679 pos
.bytepos
+= it
->len
;
3682 INC_TEXT_POS (pos
, it
->multibyte_p
);
3689 /* With bidi iteration, the character before the current
3690 in the visual order cannot be found by simple
3691 iteration, because "reverse" reordering is not
3692 supported. Instead, we need to use the move_it_*
3693 family of functions. */
3694 /* Ignore face changes before the first visible
3695 character on this display line. */
3696 if (it
->current_x
<= it
->first_visible_x
)
3698 SAVE_IT (it_copy
, *it
, it_copy_data
);
3699 /* Implementation note: Since move_it_in_display_line
3700 works in the iterator geometry, and thinks the first
3701 character is always the leftmost, even in R2L lines,
3702 we don't need to distinguish between the R2L and L2R
3704 move_it_in_display_line (&it_copy
, ZV
,
3705 it_copy
.current_x
- 1, MOVE_TO_X
);
3706 pos
= it_copy
.current
.pos
;
3707 RESTORE_IT (it
, it
, it_copy_data
);
3711 /* Set charpos to the buffer position of the character
3712 that comes after IT's current position in the visual
3714 int n
= (it
->what
== IT_COMPOSITION
? it
->cmp_it
.nchars
: 1);
3718 bidi_move_to_visually_next (&it_copy
.bidi_it
);
3721 it_copy
.bidi_it
.charpos
, it_copy
.bidi_it
.bytepos
);
3724 xassert (BEGV
<= CHARPOS (pos
) && CHARPOS (pos
) <= ZV
);
3726 /* Determine face for CHARSET_ASCII, or unibyte. */
3727 face_id
= face_at_buffer_position (it
->w
,
3729 it
->region_beg_charpos
,
3730 it
->region_end_charpos
,
3731 &next_check_charpos
,
3734 /* Correct the face for charsets different from ASCII. Do it
3735 for the multibyte case only. The face returned above is
3736 suitable for unibyte text if current_buffer is unibyte. */
3737 if (it
->multibyte_p
)
3739 int c
= FETCH_MULTIBYTE_CHAR (BYTEPOS (pos
));
3740 struct face
*face
= FACE_FROM_ID (it
->f
, face_id
);
3741 face_id
= FACE_FOR_CHAR (it
->f
, face
, c
, CHARPOS (pos
), Qnil
);
3750 /***********************************************************************
3752 ***********************************************************************/
3754 /* Set up iterator IT from invisible properties at its current
3755 position. Called from handle_stop. */
3757 static enum prop_handled
3758 handle_invisible_prop (struct it
*it
)
3760 enum prop_handled handled
= HANDLED_NORMALLY
;
3762 if (STRINGP (it
->string
))
3764 Lisp_Object prop
, end_charpos
, limit
, charpos
;
3766 /* Get the value of the invisible text property at the
3767 current position. Value will be nil if there is no such
3769 charpos
= make_number (IT_STRING_CHARPOS (*it
));
3770 prop
= Fget_text_property (charpos
, Qinvisible
, it
->string
);
3773 && IT_STRING_CHARPOS (*it
) < it
->end_charpos
)
3777 handled
= HANDLED_RECOMPUTE_PROPS
;
3779 /* Get the position at which the next change of the
3780 invisible text property can be found in IT->string.
3781 Value will be nil if the property value is the same for
3782 all the rest of IT->string. */
3783 XSETINT (limit
, SCHARS (it
->string
));
3784 end_charpos
= Fnext_single_property_change (charpos
, Qinvisible
,
3787 /* Text at current position is invisible. The next
3788 change in the property is at position end_charpos.
3789 Move IT's current position to that position. */
3790 if (INTEGERP (end_charpos
)
3791 && (endpos
= XFASTINT (end_charpos
)) < XFASTINT (limit
))
3793 struct text_pos old
;
3796 old
= it
->current
.string_pos
;
3797 oldpos
= CHARPOS (old
);
3800 if (it
->bidi_it
.first_elt
3801 && it
->bidi_it
.charpos
< SCHARS (it
->string
))
3802 bidi_paragraph_init (it
->paragraph_embedding
,
3804 /* Bidi-iterate out of the invisible text. */
3807 bidi_move_to_visually_next (&it
->bidi_it
);
3809 while (oldpos
<= it
->bidi_it
.charpos
3810 && it
->bidi_it
.charpos
< endpos
);
3812 IT_STRING_CHARPOS (*it
) = it
->bidi_it
.charpos
;
3813 IT_STRING_BYTEPOS (*it
) = it
->bidi_it
.bytepos
;
3814 if (IT_CHARPOS (*it
) >= endpos
)
3815 it
->prev_stop
= endpos
;
3819 IT_STRING_CHARPOS (*it
) = XFASTINT (end_charpos
);
3820 compute_string_pos (&it
->current
.string_pos
, old
, it
->string
);
3825 /* The rest of the string is invisible. If this is an
3826 overlay string, proceed with the next overlay string
3827 or whatever comes and return a character from there. */
3828 if (it
->current
.overlay_string_index
>= 0)
3830 next_overlay_string (it
);
3831 /* Don't check for overlay strings when we just
3832 finished processing them. */
3833 handled
= HANDLED_OVERLAY_STRING_CONSUMED
;
3837 IT_STRING_CHARPOS (*it
) = SCHARS (it
->string
);
3838 IT_STRING_BYTEPOS (*it
) = SBYTES (it
->string
);
3846 EMACS_INT newpos
, next_stop
, start_charpos
, tem
;
3847 Lisp_Object pos
, prop
, overlay
;
3849 /* First of all, is there invisible text at this position? */
3850 tem
= start_charpos
= IT_CHARPOS (*it
);
3851 pos
= make_number (tem
);
3852 prop
= get_char_property_and_overlay (pos
, Qinvisible
, it
->window
,
3854 invis_p
= TEXT_PROP_MEANS_INVISIBLE (prop
);
3856 /* If we are on invisible text, skip over it. */
3857 if (invis_p
&& start_charpos
< it
->end_charpos
)
3859 /* Record whether we have to display an ellipsis for the
3861 int display_ellipsis_p
= invis_p
== 2;
3863 handled
= HANDLED_RECOMPUTE_PROPS
;
3865 /* Loop skipping over invisible text. The loop is left at
3866 ZV or with IT on the first char being visible again. */
3869 /* Try to skip some invisible text. Return value is the
3870 position reached which can be equal to where we start
3871 if there is nothing invisible there. This skips both
3872 over invisible text properties and overlays with
3873 invisible property. */
3874 newpos
= skip_invisible (tem
, &next_stop
, ZV
, it
->window
);
3876 /* If we skipped nothing at all we weren't at invisible
3877 text in the first place. If everything to the end of
3878 the buffer was skipped, end the loop. */
3879 if (newpos
== tem
|| newpos
>= ZV
)
3883 /* We skipped some characters but not necessarily
3884 all there are. Check if we ended up on visible
3885 text. Fget_char_property returns the property of
3886 the char before the given position, i.e. if we
3887 get invis_p = 0, this means that the char at
3888 newpos is visible. */
3889 pos
= make_number (newpos
);
3890 prop
= Fget_char_property (pos
, Qinvisible
, it
->window
);
3891 invis_p
= TEXT_PROP_MEANS_INVISIBLE (prop
);
3894 /* If we ended up on invisible text, proceed to
3895 skip starting with next_stop. */
3899 /* If there are adjacent invisible texts, don't lose the
3900 second one's ellipsis. */
3902 display_ellipsis_p
= 1;
3906 /* The position newpos is now either ZV or on visible text. */
3907 if (it
->bidi_p
&& newpos
< ZV
)
3909 /* With bidi iteration, the region of invisible text
3910 could start and/or end in the middle of a non-base
3911 embedding level. Therefore, we need to skip
3912 invisible text using the bidi iterator, starting at
3913 IT's current position, until we find ourselves
3914 outside the invisible text. Skipping invisible text
3915 _after_ bidi iteration avoids affecting the visual
3916 order of the displayed text when invisible properties
3917 are added or removed. */
3918 if (it
->bidi_it
.first_elt
&& it
->bidi_it
.charpos
< ZV
)
3920 /* If we were `reseat'ed to a new paragraph,
3921 determine the paragraph base direction. We need
3922 to do it now because next_element_from_buffer may
3923 not have a chance to do it, if we are going to
3924 skip any text at the beginning, which resets the
3926 bidi_paragraph_init (it
->paragraph_embedding
,
3931 bidi_move_to_visually_next (&it
->bidi_it
);
3933 while (it
->stop_charpos
<= it
->bidi_it
.charpos
3934 && it
->bidi_it
.charpos
< newpos
);
3935 IT_CHARPOS (*it
) = it
->bidi_it
.charpos
;
3936 IT_BYTEPOS (*it
) = it
->bidi_it
.bytepos
;
3937 /* If we overstepped NEWPOS, record its position in the
3938 iterator, so that we skip invisible text if later the
3939 bidi iteration lands us in the invisible region
3941 if (IT_CHARPOS (*it
) >= newpos
)
3942 it
->prev_stop
= newpos
;
3946 IT_CHARPOS (*it
) = newpos
;
3947 IT_BYTEPOS (*it
) = CHAR_TO_BYTE (newpos
);
3950 /* If there are before-strings at the start of invisible
3951 text, and the text is invisible because of a text
3952 property, arrange to show before-strings because 20.x did
3953 it that way. (If the text is invisible because of an
3954 overlay property instead of a text property, this is
3955 already handled in the overlay code.) */
3957 && get_overlay_strings (it
, it
->stop_charpos
))
3959 handled
= HANDLED_RECOMPUTE_PROPS
;
3960 it
->stack
[it
->sp
- 1].display_ellipsis_p
= display_ellipsis_p
;
3962 else if (display_ellipsis_p
)
3964 /* Make sure that the glyphs of the ellipsis will get
3965 correct `charpos' values. If we would not update
3966 it->position here, the glyphs would belong to the
3967 last visible character _before_ the invisible
3968 text, which confuses `set_cursor_from_row'.
3970 We use the last invisible position instead of the
3971 first because this way the cursor is always drawn on
3972 the first "." of the ellipsis, whenever PT is inside
3973 the invisible text. Otherwise the cursor would be
3974 placed _after_ the ellipsis when the point is after the
3975 first invisible character. */
3976 if (!STRINGP (it
->object
))
3978 it
->position
.charpos
= newpos
- 1;
3979 it
->position
.bytepos
= CHAR_TO_BYTE (it
->position
.charpos
);
3982 /* Let the ellipsis display before
3983 considering any properties of the following char.
3984 Fixes jasonr@gnu.org 01 Oct 07 bug. */
3985 handled
= HANDLED_RETURN
;
3994 /* Make iterator IT return `...' next.
3995 Replaces LEN characters from buffer. */
3998 setup_for_ellipsis (struct it
*it
, int len
)
4000 /* Use the display table definition for `...'. Invalid glyphs
4001 will be handled by the method returning elements from dpvec. */
4002 if (it
->dp
&& VECTORP (DISP_INVIS_VECTOR (it
->dp
)))
4004 struct Lisp_Vector
*v
= XVECTOR (DISP_INVIS_VECTOR (it
->dp
));
4005 it
->dpvec
= v
->contents
;
4006 it
->dpend
= v
->contents
+ v
->header
.size
;
4010 /* Default `...'. */
4011 it
->dpvec
= default_invis_vector
;
4012 it
->dpend
= default_invis_vector
+ 3;
4015 it
->dpvec_char_len
= len
;
4016 it
->current
.dpvec_index
= 0;
4017 it
->dpvec_face_id
= -1;
4019 /* Remember the current face id in case glyphs specify faces.
4020 IT's face is restored in set_iterator_to_next.
4021 saved_face_id was set to preceding char's face in handle_stop. */
4022 if (it
->saved_face_id
< 0 || it
->saved_face_id
!= it
->face_id
)
4023 it
->saved_face_id
= it
->face_id
= DEFAULT_FACE_ID
;
4025 it
->method
= GET_FROM_DISPLAY_VECTOR
;
4031 /***********************************************************************
4033 ***********************************************************************/
4035 /* Set up iterator IT from `display' property at its current position.
4036 Called from handle_stop.
4037 We return HANDLED_RETURN if some part of the display property
4038 overrides the display of the buffer text itself.
4039 Otherwise we return HANDLED_NORMALLY. */
4041 static enum prop_handled
4042 handle_display_prop (struct it
*it
)
4044 Lisp_Object propval
, object
, overlay
;
4045 struct text_pos
*position
;
4047 /* Nonzero if some property replaces the display of the text itself. */
4048 int display_replaced_p
= 0;
4050 if (STRINGP (it
->string
))
4052 object
= it
->string
;
4053 position
= &it
->current
.string_pos
;
4054 bufpos
= CHARPOS (it
->current
.pos
);
4058 XSETWINDOW (object
, it
->w
);
4059 position
= &it
->current
.pos
;
4060 bufpos
= CHARPOS (*position
);
4063 /* Reset those iterator values set from display property values. */
4064 it
->slice
.x
= it
->slice
.y
= it
->slice
.width
= it
->slice
.height
= Qnil
;
4065 it
->space_width
= Qnil
;
4066 it
->font_height
= Qnil
;
4069 /* We don't support recursive `display' properties, i.e. string
4070 values that have a string `display' property, that have a string
4071 `display' property etc. */
4072 if (!it
->string_from_display_prop_p
)
4073 it
->area
= TEXT_AREA
;
4075 propval
= get_char_property_and_overlay (make_number (position
->charpos
),
4076 Qdisplay
, object
, &overlay
);
4078 return HANDLED_NORMALLY
;
4079 /* Now OVERLAY is the overlay that gave us this property, or nil
4080 if it was a text property. */
4082 if (!STRINGP (it
->string
))
4083 object
= it
->w
->buffer
;
4085 display_replaced_p
= handle_display_spec (it
, propval
, object
, overlay
,
4087 FRAME_WINDOW_P (it
->f
));
4089 return display_replaced_p
? HANDLED_RETURN
: HANDLED_NORMALLY
;
4092 /* Subroutine of handle_display_prop. Returns non-zero if the display
4093 specification in SPEC is a replacing specification, i.e. it would
4094 replace the text covered by `display' property with something else,
4095 such as an image or a display string.
4097 See handle_single_display_spec for documentation of arguments.
4098 frame_window_p is non-zero if the window being redisplayed is on a
4099 GUI frame; this argument is used only if IT is NULL, see below.
4101 IT can be NULL, if this is called by the bidi reordering code
4102 through compute_display_string_pos, which see. In that case, this
4103 function only examines SPEC, but does not otherwise "handle" it, in
4104 the sense that it doesn't set up members of IT from the display
4107 handle_display_spec (struct it
*it
, Lisp_Object spec
, Lisp_Object object
,
4108 Lisp_Object overlay
, struct text_pos
*position
,
4109 EMACS_INT bufpos
, int frame_window_p
)
4111 int replacing_p
= 0;
4114 /* Simple specerties. */
4115 && !EQ (XCAR (spec
), Qimage
)
4116 && !EQ (XCAR (spec
), Qspace
)
4117 && !EQ (XCAR (spec
), Qwhen
)
4118 && !EQ (XCAR (spec
), Qslice
)
4119 && !EQ (XCAR (spec
), Qspace_width
)
4120 && !EQ (XCAR (spec
), Qheight
)
4121 && !EQ (XCAR (spec
), Qraise
)
4122 /* Marginal area specifications. */
4123 && !(CONSP (XCAR (spec
)) && EQ (XCAR (XCAR (spec
)), Qmargin
))
4124 && !EQ (XCAR (spec
), Qleft_fringe
)
4125 && !EQ (XCAR (spec
), Qright_fringe
)
4126 && !NILP (XCAR (spec
)))
4128 for (; CONSP (spec
); spec
= XCDR (spec
))
4130 if (handle_single_display_spec (it
, XCAR (spec
), object
, overlay
,
4131 position
, bufpos
, replacing_p
,
4135 /* If some text in a string is replaced, `position' no
4136 longer points to the position of `object'. */
4137 if (!it
|| STRINGP (object
))
4142 else if (VECTORP (spec
))
4145 for (i
= 0; i
< ASIZE (spec
); ++i
)
4146 if (handle_single_display_spec (it
, AREF (spec
, i
), object
, overlay
,
4147 position
, bufpos
, replacing_p
,
4151 /* If some text in a string is replaced, `position' no
4152 longer points to the position of `object'. */
4153 if (!it
|| STRINGP (object
))
4159 if (handle_single_display_spec (it
, spec
, object
, overlay
,
4160 position
, bufpos
, 0, frame_window_p
))
4167 /* Value is the position of the end of the `display' property starting
4168 at START_POS in OBJECT. */
4170 static struct text_pos
4171 display_prop_end (struct it
*it
, Lisp_Object object
, struct text_pos start_pos
)
4174 struct text_pos end_pos
;
4176 end
= Fnext_single_char_property_change (make_number (CHARPOS (start_pos
)),
4177 Qdisplay
, object
, Qnil
);
4178 CHARPOS (end_pos
) = XFASTINT (end
);
4179 if (STRINGP (object
))
4180 compute_string_pos (&end_pos
, start_pos
, it
->string
);
4182 BYTEPOS (end_pos
) = CHAR_TO_BYTE (XFASTINT (end
));
4188 /* Set up IT from a single `display' property specification SPEC. OBJECT
4189 is the object in which the `display' property was found. *POSITION
4190 is the position in OBJECT at which the `display' property was found.
4191 BUFPOS is the buffer position of OBJECT (different from POSITION if
4192 OBJECT is not a buffer). DISPLAY_REPLACED_P non-zero means that we
4193 previously saw a display specification which already replaced text
4194 display with something else, for example an image; we ignore such
4195 properties after the first one has been processed.
4197 OVERLAY is the overlay this `display' property came from,
4198 or nil if it was a text property.
4200 If SPEC is a `space' or `image' specification, and in some other
4201 cases too, set *POSITION to the position where the `display'
4204 If IT is NULL, only examine the property specification in SPEC, but
4205 don't set up IT. In that case, FRAME_WINDOW_P non-zero means SPEC
4206 is intended to be displayed in a window on a GUI frame.
4208 Value is non-zero if something was found which replaces the display
4209 of buffer or string text. */
4212 handle_single_display_spec (struct it
*it
, Lisp_Object spec
, Lisp_Object object
,
4213 Lisp_Object overlay
, struct text_pos
*position
,
4214 EMACS_INT bufpos
, int display_replaced_p
,
4218 Lisp_Object location
, value
;
4219 struct text_pos start_pos
= *position
;
4222 /* If SPEC is a list of the form `(when FORM . VALUE)', evaluate FORM.
4223 If the result is non-nil, use VALUE instead of SPEC. */
4225 if (CONSP (spec
) && EQ (XCAR (spec
), Qwhen
))
4234 if (!NILP (form
) && !EQ (form
, Qt
))
4236 int count
= SPECPDL_INDEX ();
4237 struct gcpro gcpro1
;
4239 /* Bind `object' to the object having the `display' property, a
4240 buffer or string. Bind `position' to the position in the
4241 object where the property was found, and `buffer-position'
4242 to the current position in the buffer. */
4245 XSETBUFFER (object
, current_buffer
);
4246 specbind (Qobject
, object
);
4247 specbind (Qposition
, make_number (CHARPOS (*position
)));
4248 specbind (Qbuffer_position
, make_number (bufpos
));
4250 form
= safe_eval (form
);
4252 unbind_to (count
, Qnil
);
4258 /* Handle `(height HEIGHT)' specifications. */
4260 && EQ (XCAR (spec
), Qheight
)
4261 && CONSP (XCDR (spec
)))
4265 if (!FRAME_WINDOW_P (it
->f
))
4268 it
->font_height
= XCAR (XCDR (spec
));
4269 if (!NILP (it
->font_height
))
4271 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
4272 int new_height
= -1;
4274 if (CONSP (it
->font_height
)
4275 && (EQ (XCAR (it
->font_height
), Qplus
)
4276 || EQ (XCAR (it
->font_height
), Qminus
))
4277 && CONSP (XCDR (it
->font_height
))
4278 && INTEGERP (XCAR (XCDR (it
->font_height
))))
4280 /* `(+ N)' or `(- N)' where N is an integer. */
4281 int steps
= XINT (XCAR (XCDR (it
->font_height
)));
4282 if (EQ (XCAR (it
->font_height
), Qplus
))
4284 it
->face_id
= smaller_face (it
->f
, it
->face_id
, steps
);
4286 else if (FUNCTIONP (it
->font_height
))
4288 /* Call function with current height as argument.
4289 Value is the new height. */
4291 height
= safe_call1 (it
->font_height
,
4292 face
->lface
[LFACE_HEIGHT_INDEX
]);
4293 if (NUMBERP (height
))
4294 new_height
= XFLOATINT (height
);
4296 else if (NUMBERP (it
->font_height
))
4298 /* Value is a multiple of the canonical char height. */
4301 f
= FACE_FROM_ID (it
->f
,
4302 lookup_basic_face (it
->f
, DEFAULT_FACE_ID
));
4303 new_height
= (XFLOATINT (it
->font_height
)
4304 * XINT (f
->lface
[LFACE_HEIGHT_INDEX
]));
4308 /* Evaluate IT->font_height with `height' bound to the
4309 current specified height to get the new height. */
4310 int count
= SPECPDL_INDEX ();
4312 specbind (Qheight
, face
->lface
[LFACE_HEIGHT_INDEX
]);
4313 value
= safe_eval (it
->font_height
);
4314 unbind_to (count
, Qnil
);
4316 if (NUMBERP (value
))
4317 new_height
= XFLOATINT (value
);
4321 it
->face_id
= face_with_height (it
->f
, it
->face_id
, new_height
);
4328 /* Handle `(space-width WIDTH)'. */
4330 && EQ (XCAR (spec
), Qspace_width
)
4331 && CONSP (XCDR (spec
)))
4335 if (!FRAME_WINDOW_P (it
->f
))
4338 value
= XCAR (XCDR (spec
));
4339 if (NUMBERP (value
) && XFLOATINT (value
) > 0)
4340 it
->space_width
= value
;
4346 /* Handle `(slice X Y WIDTH HEIGHT)'. */
4348 && EQ (XCAR (spec
), Qslice
))
4354 if (!FRAME_WINDOW_P (it
->f
))
4357 if (tem
= XCDR (spec
), CONSP (tem
))
4359 it
->slice
.x
= XCAR (tem
);
4360 if (tem
= XCDR (tem
), CONSP (tem
))
4362 it
->slice
.y
= XCAR (tem
);
4363 if (tem
= XCDR (tem
), CONSP (tem
))
4365 it
->slice
.width
= XCAR (tem
);
4366 if (tem
= XCDR (tem
), CONSP (tem
))
4367 it
->slice
.height
= XCAR (tem
);
4376 /* Handle `(raise FACTOR)'. */
4378 && EQ (XCAR (spec
), Qraise
)
4379 && CONSP (XCDR (spec
)))
4383 if (!FRAME_WINDOW_P (it
->f
))
4386 #ifdef HAVE_WINDOW_SYSTEM
4387 value
= XCAR (XCDR (spec
));
4388 if (NUMBERP (value
))
4390 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
4391 it
->voffset
= - (XFLOATINT (value
)
4392 * (FONT_HEIGHT (face
->font
)));
4394 #endif /* HAVE_WINDOW_SYSTEM */
4400 /* Don't handle the other kinds of display specifications
4401 inside a string that we got from a `display' property. */
4402 if (it
&& it
->string_from_display_prop_p
)
4405 /* Characters having this form of property are not displayed, so
4406 we have to find the end of the property. */
4409 start_pos
= *position
;
4410 *position
= display_prop_end (it
, object
, start_pos
);
4414 /* Stop the scan at that end position--we assume that all
4415 text properties change there. */
4417 it
->stop_charpos
= position
->charpos
;
4419 /* Handle `(left-fringe BITMAP [FACE])'
4420 and `(right-fringe BITMAP [FACE])'. */
4422 && (EQ (XCAR (spec
), Qleft_fringe
)
4423 || EQ (XCAR (spec
), Qright_fringe
))
4424 && CONSP (XCDR (spec
)))
4430 if (!FRAME_WINDOW_P (it
->f
))
4431 /* If we return here, POSITION has been advanced
4432 across the text with this property. */
4435 else if (!frame_window_p
)
4438 #ifdef HAVE_WINDOW_SYSTEM
4439 value
= XCAR (XCDR (spec
));
4440 if (!SYMBOLP (value
)
4441 || !(fringe_bitmap
= lookup_fringe_bitmap (value
)))
4442 /* If we return here, POSITION has been advanced
4443 across the text with this property. */
4448 int face_id
= lookup_basic_face (it
->f
, DEFAULT_FACE_ID
);;
4450 if (CONSP (XCDR (XCDR (spec
))))
4452 Lisp_Object face_name
= XCAR (XCDR (XCDR (spec
)));
4453 int face_id2
= lookup_derived_face (it
->f
, face_name
,
4459 /* Save current settings of IT so that we can restore them
4460 when we are finished with the glyph property value. */
4461 push_it (it
, position
);
4463 it
->area
= TEXT_AREA
;
4464 it
->what
= IT_IMAGE
;
4465 it
->image_id
= -1; /* no image */
4466 it
->position
= start_pos
;
4467 it
->object
= NILP (object
) ? it
->w
->buffer
: object
;
4468 it
->method
= GET_FROM_IMAGE
;
4469 it
->from_overlay
= Qnil
;
4470 it
->face_id
= face_id
;
4471 it
->from_disp_prop_p
= 1;
4473 /* Say that we haven't consumed the characters with
4474 `display' property yet. The call to pop_it in
4475 set_iterator_to_next will clean this up. */
4476 *position
= start_pos
;
4478 if (EQ (XCAR (spec
), Qleft_fringe
))
4480 it
->left_user_fringe_bitmap
= fringe_bitmap
;
4481 it
->left_user_fringe_face_id
= face_id
;
4485 it
->right_user_fringe_bitmap
= fringe_bitmap
;
4486 it
->right_user_fringe_face_id
= face_id
;
4489 #endif /* HAVE_WINDOW_SYSTEM */
4493 /* Prepare to handle `((margin left-margin) ...)',
4494 `((margin right-margin) ...)' and `((margin nil) ...)'
4495 prefixes for display specifications. */
4496 location
= Qunbound
;
4497 if (CONSP (spec
) && CONSP (XCAR (spec
)))
4501 value
= XCDR (spec
);
4503 value
= XCAR (value
);
4506 if (EQ (XCAR (tem
), Qmargin
)
4507 && (tem
= XCDR (tem
),
4508 tem
= CONSP (tem
) ? XCAR (tem
) : Qnil
,
4510 || EQ (tem
, Qleft_margin
)
4511 || EQ (tem
, Qright_margin
))))
4515 if (EQ (location
, Qunbound
))
4521 /* After this point, VALUE is the property after any
4522 margin prefix has been stripped. It must be a string,
4523 an image specification, or `(space ...)'.
4525 LOCATION specifies where to display: `left-margin',
4526 `right-margin' or nil. */
4528 valid_p
= (STRINGP (value
)
4529 #ifdef HAVE_WINDOW_SYSTEM
4530 || ((it
? FRAME_WINDOW_P (it
->f
) : frame_window_p
)
4531 && valid_image_p (value
))
4532 #endif /* not HAVE_WINDOW_SYSTEM */
4533 || (CONSP (value
) && EQ (XCAR (value
), Qspace
)));
4535 if (valid_p
&& !display_replaced_p
)
4540 /* Save current settings of IT so that we can restore them
4541 when we are finished with the glyph property value. */
4542 push_it (it
, position
);
4543 it
->from_overlay
= overlay
;
4544 it
->from_disp_prop_p
= 1;
4546 if (NILP (location
))
4547 it
->area
= TEXT_AREA
;
4548 else if (EQ (location
, Qleft_margin
))
4549 it
->area
= LEFT_MARGIN_AREA
;
4551 it
->area
= RIGHT_MARGIN_AREA
;
4553 if (STRINGP (value
))
4556 it
->multibyte_p
= STRING_MULTIBYTE (it
->string
);
4557 it
->current
.overlay_string_index
= -1;
4558 IT_STRING_CHARPOS (*it
) = IT_STRING_BYTEPOS (*it
) = 0;
4559 it
->end_charpos
= it
->string_nchars
= SCHARS (it
->string
);
4560 it
->method
= GET_FROM_STRING
;
4561 it
->stop_charpos
= 0;
4563 it
->base_level_stop
= 0;
4564 it
->string_from_display_prop_p
= 1;
4565 /* Say that we haven't consumed the characters with
4566 `display' property yet. The call to pop_it in
4567 set_iterator_to_next will clean this up. */
4568 if (BUFFERP (object
))
4569 *position
= start_pos
;
4571 /* Force paragraph direction to be that of the parent
4572 object. If the parent object's paragraph direction is
4573 not yet determined, default to L2R. */
4574 if (it
->bidi_p
&& it
->bidi_it
.paragraph_dir
== R2L
)
4575 it
->paragraph_embedding
= it
->bidi_it
.paragraph_dir
;
4577 it
->paragraph_embedding
= L2R
;
4579 /* Set up the bidi iterator for this display string. */
4582 it
->bidi_it
.string
.lstring
= it
->string
;
4583 it
->bidi_it
.string
.s
= NULL
;
4584 it
->bidi_it
.string
.schars
= it
->end_charpos
;
4585 it
->bidi_it
.string
.bufpos
= bufpos
;
4586 it
->bidi_it
.string
.from_disp_str
= 1;
4587 it
->bidi_it
.string
.unibyte
= !it
->multibyte_p
;
4588 bidi_init_it (0, 0, FRAME_WINDOW_P (it
->f
), &it
->bidi_it
);
4591 else if (CONSP (value
) && EQ (XCAR (value
), Qspace
))
4593 it
->method
= GET_FROM_STRETCH
;
4595 *position
= it
->position
= start_pos
;
4597 #ifdef HAVE_WINDOW_SYSTEM
4600 it
->what
= IT_IMAGE
;
4601 it
->image_id
= lookup_image (it
->f
, value
);
4602 it
->position
= start_pos
;
4603 it
->object
= NILP (object
) ? it
->w
->buffer
: object
;
4604 it
->method
= GET_FROM_IMAGE
;
4606 /* Say that we haven't consumed the characters with
4607 `display' property yet. The call to pop_it in
4608 set_iterator_to_next will clean this up. */
4609 *position
= start_pos
;
4611 #endif /* HAVE_WINDOW_SYSTEM */
4616 /* Invalid property or property not supported. Restore
4617 POSITION to what it was before. */
4618 *position
= start_pos
;
4622 /* Check if PROP is a display property value whose text should be
4623 treated as intangible. OVERLAY is the overlay from which PROP
4624 came, or nil if it came from a text property. CHARPOS and BYTEPOS
4625 specify the buffer position covered by PROP. */
4628 display_prop_intangible_p (Lisp_Object prop
, Lisp_Object overlay
,
4629 EMACS_INT charpos
, EMACS_INT bytepos
)
4631 int frame_window_p
= FRAME_WINDOW_P (XFRAME (selected_frame
));
4632 struct text_pos position
;
4634 SET_TEXT_POS (position
, charpos
, bytepos
);
4635 return handle_display_spec (NULL
, prop
, Qnil
, overlay
,
4636 &position
, charpos
, frame_window_p
);
4640 /* Return 1 if PROP is a display sub-property value containing STRING.
4642 Implementation note: this and the following function are really
4643 special cases of handle_display_spec and
4644 handle_single_display_spec, and should ideally use the same code.
4645 Until they do, these two pairs must be consistent and must be
4646 modified in sync. */
4649 single_display_spec_string_p (Lisp_Object prop
, Lisp_Object string
)
4651 if (EQ (string
, prop
))
4654 /* Skip over `when FORM'. */
4655 if (CONSP (prop
) && EQ (XCAR (prop
), Qwhen
))
4660 /* Actually, the condition following `when' should be eval'ed,
4661 like handle_single_display_spec does, and we should return
4662 zero if it evaluates to nil. However, this function is
4663 called only when the buffer was already displayed and some
4664 glyph in the glyph matrix was found to come from a display
4665 string. Therefore, the condition was already evaluated, and
4666 the result was non-nil, otherwise the display string wouldn't
4667 have been displayed and we would have never been called for
4668 this property. Thus, we can skip the evaluation and assume
4669 its result is non-nil. */
4674 /* Skip over `margin LOCATION'. */
4675 if (EQ (XCAR (prop
), Qmargin
))
4686 return EQ (prop
, string
) || (CONSP (prop
) && EQ (XCAR (prop
), string
));
4690 /* Return 1 if STRING appears in the `display' property PROP. */
4693 display_prop_string_p (Lisp_Object prop
, Lisp_Object string
)
4696 && !EQ (XCAR (prop
), Qwhen
)
4697 && !(CONSP (XCAR (prop
)) && EQ (Qmargin
, XCAR (XCAR (prop
)))))
4699 /* A list of sub-properties. */
4700 while (CONSP (prop
))
4702 if (single_display_spec_string_p (XCAR (prop
), string
))
4707 else if (VECTORP (prop
))
4709 /* A vector of sub-properties. */
4711 for (i
= 0; i
< ASIZE (prop
); ++i
)
4712 if (single_display_spec_string_p (AREF (prop
, i
), string
))
4716 return single_display_spec_string_p (prop
, string
);
4721 /* Look for STRING in overlays and text properties in the current
4722 buffer, between character positions FROM and TO (excluding TO).
4723 BACK_P non-zero means look back (in this case, TO is supposed to be
4725 Value is the first character position where STRING was found, or
4726 zero if it wasn't found before hitting TO.
4728 This function may only use code that doesn't eval because it is
4729 called asynchronously from note_mouse_highlight. */
4732 string_buffer_position_lim (Lisp_Object string
,
4733 EMACS_INT from
, EMACS_INT to
, int back_p
)
4735 Lisp_Object limit
, prop
, pos
;
4738 pos
= make_number (from
);
4740 if (!back_p
) /* looking forward */
4742 limit
= make_number (min (to
, ZV
));
4743 while (!found
&& !EQ (pos
, limit
))
4745 prop
= Fget_char_property (pos
, Qdisplay
, Qnil
);
4746 if (!NILP (prop
) && display_prop_string_p (prop
, string
))
4749 pos
= Fnext_single_char_property_change (pos
, Qdisplay
, Qnil
,
4753 else /* looking back */
4755 limit
= make_number (max (to
, BEGV
));
4756 while (!found
&& !EQ (pos
, limit
))
4758 prop
= Fget_char_property (pos
, Qdisplay
, Qnil
);
4759 if (!NILP (prop
) && display_prop_string_p (prop
, string
))
4762 pos
= Fprevious_single_char_property_change (pos
, Qdisplay
, Qnil
,
4767 return found
? XINT (pos
) : 0;
4770 /* Determine which buffer position in current buffer STRING comes from.
4771 AROUND_CHARPOS is an approximate position where it could come from.
4772 Value is the buffer position or 0 if it couldn't be determined.
4774 This function is necessary because we don't record buffer positions
4775 in glyphs generated from strings (to keep struct glyph small).
4776 This function may only use code that doesn't eval because it is
4777 called asynchronously from note_mouse_highlight. */
4780 string_buffer_position (Lisp_Object string
, EMACS_INT around_charpos
)
4782 const int MAX_DISTANCE
= 1000;
4783 EMACS_INT found
= string_buffer_position_lim (string
, around_charpos
,
4784 around_charpos
+ MAX_DISTANCE
,
4788 found
= string_buffer_position_lim (string
, around_charpos
,
4789 around_charpos
- MAX_DISTANCE
, 1);
4795 /***********************************************************************
4796 `composition' property
4797 ***********************************************************************/
4799 /* Set up iterator IT from `composition' property at its current
4800 position. Called from handle_stop. */
4802 static enum prop_handled
4803 handle_composition_prop (struct it
*it
)
4805 Lisp_Object prop
, string
;
4806 EMACS_INT pos
, pos_byte
, start
, end
;
4808 if (STRINGP (it
->string
))
4812 pos
= IT_STRING_CHARPOS (*it
);
4813 pos_byte
= IT_STRING_BYTEPOS (*it
);
4814 string
= it
->string
;
4815 s
= SDATA (string
) + pos_byte
;
4816 it
->c
= STRING_CHAR (s
);
4820 pos
= IT_CHARPOS (*it
);
4821 pos_byte
= IT_BYTEPOS (*it
);
4823 it
->c
= FETCH_CHAR (pos_byte
);
4826 /* If there's a valid composition and point is not inside of the
4827 composition (in the case that the composition is from the current
4828 buffer), draw a glyph composed from the composition components. */
4829 if (find_composition (pos
, -1, &start
, &end
, &prop
, string
)
4830 && COMPOSITION_VALID_P (start
, end
, prop
)
4831 && (STRINGP (it
->string
) || (PT
<= start
|| PT
>= end
)))
4835 if (STRINGP (it
->string
))
4836 pos_byte
= string_char_to_byte (it
->string
, start
);
4838 pos_byte
= CHAR_TO_BYTE (start
);
4840 it
->cmp_it
.id
= get_composition_id (start
, pos_byte
, end
- start
,
4843 if (it
->cmp_it
.id
>= 0)
4846 it
->cmp_it
.nchars
= COMPOSITION_LENGTH (prop
);
4847 it
->cmp_it
.nglyphs
= -1;
4851 return HANDLED_NORMALLY
;
4856 /***********************************************************************
4858 ***********************************************************************/
4860 /* The following structure is used to record overlay strings for
4861 later sorting in load_overlay_strings. */
4863 struct overlay_entry
4865 Lisp_Object overlay
;
4872 /* Set up iterator IT from overlay strings at its current position.
4873 Called from handle_stop. */
4875 static enum prop_handled
4876 handle_overlay_change (struct it
*it
)
4878 if (!STRINGP (it
->string
) && get_overlay_strings (it
, 0))
4879 return HANDLED_RECOMPUTE_PROPS
;
4881 return HANDLED_NORMALLY
;
4885 /* Set up the next overlay string for delivery by IT, if there is an
4886 overlay string to deliver. Called by set_iterator_to_next when the
4887 end of the current overlay string is reached. If there are more
4888 overlay strings to display, IT->string and
4889 IT->current.overlay_string_index are set appropriately here.
4890 Otherwise IT->string is set to nil. */
4893 next_overlay_string (struct it
*it
)
4895 ++it
->current
.overlay_string_index
;
4896 if (it
->current
.overlay_string_index
== it
->n_overlay_strings
)
4898 /* No more overlay strings. Restore IT's settings to what
4899 they were before overlay strings were processed, and
4900 continue to deliver from current_buffer. */
4902 it
->ellipsis_p
= (it
->stack
[it
->sp
- 1].display_ellipsis_p
!= 0);
4905 || (NILP (it
->string
)
4906 && it
->method
== GET_FROM_BUFFER
4907 && it
->stop_charpos
>= BEGV
4908 && it
->stop_charpos
<= it
->end_charpos
));
4909 it
->current
.overlay_string_index
= -1;
4910 it
->n_overlay_strings
= 0;
4911 it
->overlay_strings_charpos
= -1;
4913 /* If we're at the end of the buffer, record that we have
4914 processed the overlay strings there already, so that
4915 next_element_from_buffer doesn't try it again. */
4916 if (NILP (it
->string
) && IT_CHARPOS (*it
) >= it
->end_charpos
)
4917 it
->overlay_strings_at_end_processed_p
= 1;
4921 /* There are more overlay strings to process. If
4922 IT->current.overlay_string_index has advanced to a position
4923 where we must load IT->overlay_strings with more strings, do
4924 it. We must load at the IT->overlay_strings_charpos where
4925 IT->n_overlay_strings was originally computed; when invisible
4926 text is present, this might not be IT_CHARPOS (Bug#7016). */
4927 int i
= it
->current
.overlay_string_index
% OVERLAY_STRING_CHUNK_SIZE
;
4929 if (it
->current
.overlay_string_index
&& i
== 0)
4930 load_overlay_strings (it
, it
->overlay_strings_charpos
);
4932 /* Initialize IT to deliver display elements from the overlay
4934 it
->string
= it
->overlay_strings
[i
];
4935 it
->multibyte_p
= STRING_MULTIBYTE (it
->string
);
4936 SET_TEXT_POS (it
->current
.string_pos
, 0, 0);
4937 it
->method
= GET_FROM_STRING
;
4938 it
->stop_charpos
= 0;
4939 if (it
->cmp_it
.stop_pos
>= 0)
4940 it
->cmp_it
.stop_pos
= 0;
4942 it
->base_level_stop
= 0;
4944 /* Set up the bidi iterator for this overlay string. */
4947 it
->bidi_it
.string
.lstring
= it
->string
;
4948 it
->bidi_it
.string
.s
= NULL
;
4949 it
->bidi_it
.string
.schars
= SCHARS (it
->string
);
4950 it
->bidi_it
.string
.bufpos
= it
->overlay_strings_charpos
;
4951 it
->bidi_it
.string
.from_disp_str
= it
->string_from_display_prop_p
;
4952 it
->bidi_it
.string
.unibyte
= !it
->multibyte_p
;
4953 bidi_init_it (0, 0, FRAME_WINDOW_P (it
->f
), &it
->bidi_it
);
4961 /* Compare two overlay_entry structures E1 and E2. Used as a
4962 comparison function for qsort in load_overlay_strings. Overlay
4963 strings for the same position are sorted so that
4965 1. All after-strings come in front of before-strings, except
4966 when they come from the same overlay.
4968 2. Within after-strings, strings are sorted so that overlay strings
4969 from overlays with higher priorities come first.
4971 2. Within before-strings, strings are sorted so that overlay
4972 strings from overlays with higher priorities come last.
4974 Value is analogous to strcmp. */
4978 compare_overlay_entries (const void *e1
, const void *e2
)
4980 struct overlay_entry
*entry1
= (struct overlay_entry
*) e1
;
4981 struct overlay_entry
*entry2
= (struct overlay_entry
*) e2
;
4984 if (entry1
->after_string_p
!= entry2
->after_string_p
)
4986 /* Let after-strings appear in front of before-strings if
4987 they come from different overlays. */
4988 if (EQ (entry1
->overlay
, entry2
->overlay
))
4989 result
= entry1
->after_string_p
? 1 : -1;
4991 result
= entry1
->after_string_p
? -1 : 1;
4993 else if (entry1
->after_string_p
)
4994 /* After-strings sorted in order of decreasing priority. */
4995 result
= entry2
->priority
- entry1
->priority
;
4997 /* Before-strings sorted in order of increasing priority. */
4998 result
= entry1
->priority
- entry2
->priority
;
5004 /* Load the vector IT->overlay_strings with overlay strings from IT's
5005 current buffer position, or from CHARPOS if that is > 0. Set
5006 IT->n_overlays to the total number of overlay strings found.
5008 Overlay strings are processed OVERLAY_STRING_CHUNK_SIZE strings at
5009 a time. On entry into load_overlay_strings,
5010 IT->current.overlay_string_index gives the number of overlay
5011 strings that have already been loaded by previous calls to this
5014 IT->add_overlay_start contains an additional overlay start
5015 position to consider for taking overlay strings from, if non-zero.
5016 This position comes into play when the overlay has an `invisible'
5017 property, and both before and after-strings. When we've skipped to
5018 the end of the overlay, because of its `invisible' property, we
5019 nevertheless want its before-string to appear.
5020 IT->add_overlay_start will contain the overlay start position
5023 Overlay strings are sorted so that after-string strings come in
5024 front of before-string strings. Within before and after-strings,
5025 strings are sorted by overlay priority. See also function
5026 compare_overlay_entries. */
5029 load_overlay_strings (struct it
*it
, EMACS_INT charpos
)
5031 Lisp_Object overlay
, window
, str
, invisible
;
5032 struct Lisp_Overlay
*ov
;
5033 EMACS_INT start
, end
;
5035 int n
= 0, i
, j
, invis_p
;
5036 struct overlay_entry
*entries
5037 = (struct overlay_entry
*) alloca (size
* sizeof *entries
);
5040 charpos
= IT_CHARPOS (*it
);
5042 /* Append the overlay string STRING of overlay OVERLAY to vector
5043 `entries' which has size `size' and currently contains `n'
5044 elements. AFTER_P non-zero means STRING is an after-string of
5046 #define RECORD_OVERLAY_STRING(OVERLAY, STRING, AFTER_P) \
5049 Lisp_Object priority; \
5053 int new_size = 2 * size; \
5054 struct overlay_entry *old = entries; \
5056 (struct overlay_entry *) alloca (new_size \
5057 * sizeof *entries); \
5058 memcpy (entries, old, size * sizeof *entries); \
5062 entries[n].string = (STRING); \
5063 entries[n].overlay = (OVERLAY); \
5064 priority = Foverlay_get ((OVERLAY), Qpriority); \
5065 entries[n].priority = INTEGERP (priority) ? XINT (priority) : 0; \
5066 entries[n].after_string_p = (AFTER_P); \
5071 /* Process overlay before the overlay center. */
5072 for (ov
= current_buffer
->overlays_before
; ov
; ov
= ov
->next
)
5074 XSETMISC (overlay
, ov
);
5075 xassert (OVERLAYP (overlay
));
5076 start
= OVERLAY_POSITION (OVERLAY_START (overlay
));
5077 end
= OVERLAY_POSITION (OVERLAY_END (overlay
));
5082 /* Skip this overlay if it doesn't start or end at IT's current
5084 if (end
!= charpos
&& start
!= charpos
)
5087 /* Skip this overlay if it doesn't apply to IT->w. */
5088 window
= Foverlay_get (overlay
, Qwindow
);
5089 if (WINDOWP (window
) && XWINDOW (window
) != it
->w
)
5092 /* If the text ``under'' the overlay is invisible, both before-
5093 and after-strings from this overlay are visible; start and
5094 end position are indistinguishable. */
5095 invisible
= Foverlay_get (overlay
, Qinvisible
);
5096 invis_p
= TEXT_PROP_MEANS_INVISIBLE (invisible
);
5098 /* If overlay has a non-empty before-string, record it. */
5099 if ((start
== charpos
|| (end
== charpos
&& invis_p
))
5100 && (str
= Foverlay_get (overlay
, Qbefore_string
), STRINGP (str
))
5102 RECORD_OVERLAY_STRING (overlay
, str
, 0);
5104 /* If overlay has a non-empty after-string, record it. */
5105 if ((end
== charpos
|| (start
== charpos
&& invis_p
))
5106 && (str
= Foverlay_get (overlay
, Qafter_string
), STRINGP (str
))
5108 RECORD_OVERLAY_STRING (overlay
, str
, 1);
5111 /* Process overlays after the overlay center. */
5112 for (ov
= current_buffer
->overlays_after
; ov
; ov
= ov
->next
)
5114 XSETMISC (overlay
, ov
);
5115 xassert (OVERLAYP (overlay
));
5116 start
= OVERLAY_POSITION (OVERLAY_START (overlay
));
5117 end
= OVERLAY_POSITION (OVERLAY_END (overlay
));
5119 if (start
> charpos
)
5122 /* Skip this overlay if it doesn't start or end at IT's current
5124 if (end
!= charpos
&& start
!= charpos
)
5127 /* Skip this overlay if it doesn't apply to IT->w. */
5128 window
= Foverlay_get (overlay
, Qwindow
);
5129 if (WINDOWP (window
) && XWINDOW (window
) != it
->w
)
5132 /* If the text ``under'' the overlay is invisible, it has a zero
5133 dimension, and both before- and after-strings apply. */
5134 invisible
= Foverlay_get (overlay
, Qinvisible
);
5135 invis_p
= TEXT_PROP_MEANS_INVISIBLE (invisible
);
5137 /* If overlay has a non-empty before-string, record it. */
5138 if ((start
== charpos
|| (end
== charpos
&& invis_p
))
5139 && (str
= Foverlay_get (overlay
, Qbefore_string
), STRINGP (str
))
5141 RECORD_OVERLAY_STRING (overlay
, str
, 0);
5143 /* If overlay has a non-empty after-string, record it. */
5144 if ((end
== charpos
|| (start
== charpos
&& invis_p
))
5145 && (str
= Foverlay_get (overlay
, Qafter_string
), STRINGP (str
))
5147 RECORD_OVERLAY_STRING (overlay
, str
, 1);
5150 #undef RECORD_OVERLAY_STRING
5154 qsort (entries
, n
, sizeof *entries
, compare_overlay_entries
);
5156 /* Record number of overlay strings, and where we computed it. */
5157 it
->n_overlay_strings
= n
;
5158 it
->overlay_strings_charpos
= charpos
;
5160 /* IT->current.overlay_string_index is the number of overlay strings
5161 that have already been consumed by IT. Copy some of the
5162 remaining overlay strings to IT->overlay_strings. */
5164 j
= it
->current
.overlay_string_index
;
5165 while (i
< OVERLAY_STRING_CHUNK_SIZE
&& j
< n
)
5167 it
->overlay_strings
[i
] = entries
[j
].string
;
5168 it
->string_overlays
[i
++] = entries
[j
++].overlay
;
5175 /* Get the first chunk of overlay strings at IT's current buffer
5176 position, or at CHARPOS if that is > 0. Value is non-zero if at
5177 least one overlay string was found. */
5180 get_overlay_strings_1 (struct it
*it
, EMACS_INT charpos
, int compute_stop_p
)
5182 /* Get the first OVERLAY_STRING_CHUNK_SIZE overlay strings to
5183 process. This fills IT->overlay_strings with strings, and sets
5184 IT->n_overlay_strings to the total number of strings to process.
5185 IT->pos.overlay_string_index has to be set temporarily to zero
5186 because load_overlay_strings needs this; it must be set to -1
5187 when no overlay strings are found because a zero value would
5188 indicate a position in the first overlay string. */
5189 it
->current
.overlay_string_index
= 0;
5190 load_overlay_strings (it
, charpos
);
5192 /* If we found overlay strings, set up IT to deliver display
5193 elements from the first one. Otherwise set up IT to deliver
5194 from current_buffer. */
5195 if (it
->n_overlay_strings
)
5197 /* Make sure we know settings in current_buffer, so that we can
5198 restore meaningful values when we're done with the overlay
5201 compute_stop_pos (it
);
5202 xassert (it
->face_id
>= 0);
5204 /* Save IT's settings. They are restored after all overlay
5205 strings have been processed. */
5206 xassert (!compute_stop_p
|| it
->sp
== 0);
5208 /* When called from handle_stop, there might be an empty display
5209 string loaded. In that case, don't bother saving it. */
5210 if (!STRINGP (it
->string
) || SCHARS (it
->string
))
5213 /* Set up IT to deliver display elements from the first overlay
5215 IT_STRING_CHARPOS (*it
) = IT_STRING_BYTEPOS (*it
) = 0;
5216 it
->string
= it
->overlay_strings
[0];
5217 it
->from_overlay
= Qnil
;
5218 it
->stop_charpos
= 0;
5219 xassert (STRINGP (it
->string
));
5220 it
->end_charpos
= SCHARS (it
->string
);
5222 it
->base_level_stop
= 0;
5223 it
->multibyte_p
= STRING_MULTIBYTE (it
->string
);
5224 it
->method
= GET_FROM_STRING
;
5225 it
->from_disp_prop_p
= 0;
5227 /* Force paragraph direction to be that of the parent
5229 if (it
->bidi_p
&& it
->bidi_it
.paragraph_dir
== R2L
)
5230 it
->paragraph_embedding
= it
->bidi_it
.paragraph_dir
;
5232 it
->paragraph_embedding
= L2R
;
5234 /* Set up the bidi iterator for this overlay string. */
5237 EMACS_INT pos
= (charpos
> 0 ? charpos
: IT_CHARPOS (*it
));
5239 it
->bidi_it
.string
.lstring
= it
->string
;
5240 it
->bidi_it
.string
.s
= NULL
;
5241 it
->bidi_it
.string
.schars
= SCHARS (it
->string
);
5242 it
->bidi_it
.string
.bufpos
= pos
;
5243 it
->bidi_it
.string
.from_disp_str
= it
->string_from_display_prop_p
;
5244 it
->bidi_it
.string
.unibyte
= !it
->multibyte_p
;
5245 bidi_init_it (0, 0, FRAME_WINDOW_P (it
->f
), &it
->bidi_it
);
5250 it
->current
.overlay_string_index
= -1;
5255 get_overlay_strings (struct it
*it
, EMACS_INT charpos
)
5258 it
->method
= GET_FROM_BUFFER
;
5260 (void) get_overlay_strings_1 (it
, charpos
, 1);
5264 /* Value is non-zero if we found at least one overlay string. */
5265 return STRINGP (it
->string
);
5270 /***********************************************************************
5271 Saving and restoring state
5272 ***********************************************************************/
5274 /* Save current settings of IT on IT->stack. Called, for example,
5275 before setting up IT for an overlay string, to be able to restore
5276 IT's settings to what they were after the overlay string has been
5277 processed. If POSITION is non-NULL, it is the position to save on
5278 the stack instead of IT->position. */
5281 push_it (struct it
*it
, struct text_pos
*position
)
5283 struct iterator_stack_entry
*p
;
5285 xassert (it
->sp
< IT_STACK_SIZE
);
5286 p
= it
->stack
+ it
->sp
;
5288 p
->stop_charpos
= it
->stop_charpos
;
5289 p
->prev_stop
= it
->prev_stop
;
5290 p
->base_level_stop
= it
->base_level_stop
;
5291 p
->cmp_it
= it
->cmp_it
;
5292 xassert (it
->face_id
>= 0);
5293 p
->face_id
= it
->face_id
;
5294 p
->string
= it
->string
;
5295 p
->method
= it
->method
;
5296 p
->from_overlay
= it
->from_overlay
;
5299 case GET_FROM_IMAGE
:
5300 p
->u
.image
.object
= it
->object
;
5301 p
->u
.image
.image_id
= it
->image_id
;
5302 p
->u
.image
.slice
= it
->slice
;
5304 case GET_FROM_STRETCH
:
5305 p
->u
.stretch
.object
= it
->object
;
5308 p
->position
= position
? *position
: it
->position
;
5309 p
->current
= it
->current
;
5310 p
->end_charpos
= it
->end_charpos
;
5311 p
->string_nchars
= it
->string_nchars
;
5313 p
->multibyte_p
= it
->multibyte_p
;
5314 p
->avoid_cursor_p
= it
->avoid_cursor_p
;
5315 p
->space_width
= it
->space_width
;
5316 p
->font_height
= it
->font_height
;
5317 p
->voffset
= it
->voffset
;
5318 p
->string_from_display_prop_p
= it
->string_from_display_prop_p
;
5319 p
->display_ellipsis_p
= 0;
5320 p
->line_wrap
= it
->line_wrap
;
5321 p
->bidi_p
= it
->bidi_p
;
5322 p
->paragraph_embedding
= it
->paragraph_embedding
;
5323 p
->from_disp_prop_p
= it
->from_disp_prop_p
;
5326 /* Save the state of the bidi iterator as well. */
5328 bidi_push_it (&it
->bidi_it
);
5332 iterate_out_of_display_property (struct it
*it
)
5334 int buffer_p
= BUFFERP (it
->object
);
5335 EMACS_INT eob
= (buffer_p
? ZV
: it
->end_charpos
);
5336 EMACS_INT bob
= (buffer_p
? BEGV
: 0);
5338 /* Maybe initialize paragraph direction. If we are at the beginning
5339 of a new paragraph, next_element_from_buffer may not have a
5340 chance to do that. */
5341 if (it
->bidi_it
.first_elt
&& it
->bidi_it
.charpos
< eob
)
5342 bidi_paragraph_init (it
->paragraph_embedding
, &it
->bidi_it
, 1);
5343 /* prev_stop can be zero, so check against BEGV as well. */
5344 while (it
->bidi_it
.charpos
>= bob
5345 && it
->prev_stop
<= it
->bidi_it
.charpos
5346 && it
->bidi_it
.charpos
< CHARPOS (it
->position
))
5347 bidi_move_to_visually_next (&it
->bidi_it
);
5348 /* Record the stop_pos we just crossed, for when we cross it
5350 if (it
->bidi_it
.charpos
> CHARPOS (it
->position
))
5351 it
->prev_stop
= CHARPOS (it
->position
);
5352 /* If we ended up not where pop_it put us, resync IT's
5353 positional members with the bidi iterator. */
5354 if (it
->bidi_it
.charpos
!= CHARPOS (it
->position
))
5356 SET_TEXT_POS (it
->position
,
5357 it
->bidi_it
.charpos
, it
->bidi_it
.bytepos
);
5359 it
->current
.pos
= it
->position
;
5361 it
->current
.string_pos
= it
->position
;
5365 /* Restore IT's settings from IT->stack. Called, for example, when no
5366 more overlay strings must be processed, and we return to delivering
5367 display elements from a buffer, or when the end of a string from a
5368 `display' property is reached and we return to delivering display
5369 elements from an overlay string, or from a buffer. */
5372 pop_it (struct it
*it
)
5374 struct iterator_stack_entry
*p
;
5375 int from_display_prop
= it
->from_disp_prop_p
;
5377 xassert (it
->sp
> 0);
5379 p
= it
->stack
+ it
->sp
;
5380 it
->stop_charpos
= p
->stop_charpos
;
5381 it
->prev_stop
= p
->prev_stop
;
5382 it
->base_level_stop
= p
->base_level_stop
;
5383 it
->cmp_it
= p
->cmp_it
;
5384 it
->face_id
= p
->face_id
;
5385 it
->current
= p
->current
;
5386 it
->position
= p
->position
;
5387 it
->string
= p
->string
;
5388 it
->from_overlay
= p
->from_overlay
;
5389 if (NILP (it
->string
))
5390 SET_TEXT_POS (it
->current
.string_pos
, -1, -1);
5391 it
->method
= p
->method
;
5394 case GET_FROM_IMAGE
:
5395 it
->image_id
= p
->u
.image
.image_id
;
5396 it
->object
= p
->u
.image
.object
;
5397 it
->slice
= p
->u
.image
.slice
;
5399 case GET_FROM_STRETCH
:
5400 it
->object
= p
->u
.stretch
.object
;
5402 case GET_FROM_BUFFER
:
5403 it
->object
= it
->w
->buffer
;
5405 case GET_FROM_STRING
:
5406 it
->object
= it
->string
;
5408 case GET_FROM_DISPLAY_VECTOR
:
5410 it
->method
= GET_FROM_C_STRING
;
5411 else if (STRINGP (it
->string
))
5412 it
->method
= GET_FROM_STRING
;
5415 it
->method
= GET_FROM_BUFFER
;
5416 it
->object
= it
->w
->buffer
;
5419 it
->end_charpos
= p
->end_charpos
;
5420 it
->string_nchars
= p
->string_nchars
;
5422 it
->multibyte_p
= p
->multibyte_p
;
5423 it
->avoid_cursor_p
= p
->avoid_cursor_p
;
5424 it
->space_width
= p
->space_width
;
5425 it
->font_height
= p
->font_height
;
5426 it
->voffset
= p
->voffset
;
5427 it
->string_from_display_prop_p
= p
->string_from_display_prop_p
;
5428 it
->line_wrap
= p
->line_wrap
;
5429 it
->bidi_p
= p
->bidi_p
;
5430 it
->paragraph_embedding
= p
->paragraph_embedding
;
5431 it
->from_disp_prop_p
= p
->from_disp_prop_p
;
5434 bidi_pop_it (&it
->bidi_it
);
5435 /* Bidi-iterate until we get out of the portion of text, if any,
5436 covered by a `display' text property or by an overlay with
5437 `display' property. (We cannot just jump there, because the
5438 internal coherency of the bidi iterator state can not be
5439 preserved across such jumps.) We also must determine the
5440 paragraph base direction if the overlay we just processed is
5441 at the beginning of a new paragraph. */
5442 if (from_display_prop
5443 && (it
->method
== GET_FROM_BUFFER
|| it
->method
== GET_FROM_STRING
))
5444 iterate_out_of_display_property (it
);
5446 xassert ((BUFFERP (it
->object
)
5447 && IT_CHARPOS (*it
) == it
->bidi_it
.charpos
5448 && IT_BYTEPOS (*it
) == it
->bidi_it
.bytepos
)
5449 || (STRINGP (it
->object
)
5450 && IT_STRING_CHARPOS (*it
) == it
->bidi_it
.charpos
5451 && IT_STRING_BYTEPOS (*it
) == it
->bidi_it
.bytepos
));
5457 /***********************************************************************
5459 ***********************************************************************/
5461 /* Set IT's current position to the previous line start. */
5464 back_to_previous_line_start (struct it
*it
)
5466 IT_CHARPOS (*it
) = find_next_newline_no_quit (IT_CHARPOS (*it
) - 1, -1);
5467 IT_BYTEPOS (*it
) = CHAR_TO_BYTE (IT_CHARPOS (*it
));
5471 /* Move IT to the next line start.
5473 Value is non-zero if a newline was found. Set *SKIPPED_P to 1 if
5474 we skipped over part of the text (as opposed to moving the iterator
5475 continuously over the text). Otherwise, don't change the value
5478 Newlines may come from buffer text, overlay strings, or strings
5479 displayed via the `display' property. That's the reason we can't
5480 simply use find_next_newline_no_quit.
5482 Note that this function may not skip over invisible text that is so
5483 because of text properties and immediately follows a newline. If
5484 it would, function reseat_at_next_visible_line_start, when called
5485 from set_iterator_to_next, would effectively make invisible
5486 characters following a newline part of the wrong glyph row, which
5487 leads to wrong cursor motion. */
5490 forward_to_next_line_start (struct it
*it
, int *skipped_p
)
5492 int old_selective
, newline_found_p
, n
;
5493 const int MAX_NEWLINE_DISTANCE
= 500;
5495 /* If already on a newline, just consume it to avoid unintended
5496 skipping over invisible text below. */
5497 if (it
->what
== IT_CHARACTER
5499 && CHARPOS (it
->position
) == IT_CHARPOS (*it
))
5501 set_iterator_to_next (it
, 0);
5506 /* Don't handle selective display in the following. It's (a)
5507 unnecessary because it's done by the caller, and (b) leads to an
5508 infinite recursion because next_element_from_ellipsis indirectly
5509 calls this function. */
5510 old_selective
= it
->selective
;
5513 /* Scan for a newline within MAX_NEWLINE_DISTANCE display elements
5514 from buffer text. */
5515 for (n
= newline_found_p
= 0;
5516 !newline_found_p
&& n
< MAX_NEWLINE_DISTANCE
;
5517 n
+= STRINGP (it
->string
) ? 0 : 1)
5519 if (!get_next_display_element (it
))
5521 newline_found_p
= it
->what
== IT_CHARACTER
&& it
->c
== '\n';
5522 set_iterator_to_next (it
, 0);
5525 /* If we didn't find a newline near enough, see if we can use a
5527 if (!newline_found_p
)
5529 EMACS_INT start
= IT_CHARPOS (*it
);
5530 EMACS_INT limit
= find_next_newline_no_quit (start
, 1);
5533 xassert (!STRINGP (it
->string
));
5535 /* If we are not bidi-reordering, and there isn't any `display'
5536 property in sight, and no overlays, we can just use the
5537 position of the newline in buffer text. */
5539 && (it
->stop_charpos
>= limit
5540 || ((pos
= Fnext_single_property_change (make_number (start
),
5542 make_number (limit
)),
5544 && next_overlay_change (start
) == ZV
)))
5546 IT_CHARPOS (*it
) = limit
;
5547 IT_BYTEPOS (*it
) = CHAR_TO_BYTE (limit
);
5548 *skipped_p
= newline_found_p
= 1;
5552 while (get_next_display_element (it
)
5553 && !newline_found_p
)
5555 newline_found_p
= ITERATOR_AT_END_OF_LINE_P (it
);
5556 set_iterator_to_next (it
, 0);
5561 it
->selective
= old_selective
;
5562 return newline_found_p
;
5566 /* Set IT's current position to the previous visible line start. Skip
5567 invisible text that is so either due to text properties or due to
5568 selective display. Caution: this does not change IT->current_x and
5572 back_to_previous_visible_line_start (struct it
*it
)
5574 while (IT_CHARPOS (*it
) > BEGV
)
5576 back_to_previous_line_start (it
);
5578 if (IT_CHARPOS (*it
) <= BEGV
)
5581 /* If selective > 0, then lines indented more than its value are
5583 if (it
->selective
> 0
5584 && indented_beyond_p (IT_CHARPOS (*it
), IT_BYTEPOS (*it
),
5585 (double) it
->selective
)) /* iftc */
5588 /* Check the newline before point for invisibility. */
5591 prop
= Fget_char_property (make_number (IT_CHARPOS (*it
) - 1),
5592 Qinvisible
, it
->window
);
5593 if (TEXT_PROP_MEANS_INVISIBLE (prop
))
5597 if (IT_CHARPOS (*it
) <= BEGV
)
5602 void *it2data
= NULL
;
5605 Lisp_Object val
, overlay
;
5607 SAVE_IT (it2
, *it
, it2data
);
5609 /* If newline is part of a composition, continue from start of composition */
5610 if (find_composition (IT_CHARPOS (*it
), -1, &beg
, &end
, &val
, Qnil
)
5611 && beg
< IT_CHARPOS (*it
))
5614 /* If newline is replaced by a display property, find start of overlay
5615 or interval and continue search from that point. */
5616 pos
= --IT_CHARPOS (it2
);
5619 bidi_unshelve_cache (NULL
);
5620 it2
.string_from_display_prop_p
= 0;
5621 it2
.from_disp_prop_p
= 0;
5622 if (handle_display_prop (&it2
) == HANDLED_RETURN
5623 && !NILP (val
= get_char_property_and_overlay
5624 (make_number (pos
), Qdisplay
, Qnil
, &overlay
))
5625 && (OVERLAYP (overlay
)
5626 ? (beg
= OVERLAY_POSITION (OVERLAY_START (overlay
)))
5627 : get_property_and_range (pos
, Qdisplay
, &val
, &beg
, &end
, Qnil
)))
5629 RESTORE_IT (it
, it
, it2data
);
5633 /* Newline is not replaced by anything -- so we are done. */
5634 RESTORE_IT (it
, it
, it2data
);
5640 IT_CHARPOS (*it
) = beg
;
5641 IT_BYTEPOS (*it
) = buf_charpos_to_bytepos (current_buffer
, beg
);
5645 it
->continuation_lines_width
= 0;
5647 xassert (IT_CHARPOS (*it
) >= BEGV
);
5648 xassert (IT_CHARPOS (*it
) == BEGV
5649 || FETCH_BYTE (IT_BYTEPOS (*it
) - 1) == '\n');
5654 /* Reseat iterator IT at the previous visible line start. Skip
5655 invisible text that is so either due to text properties or due to
5656 selective display. At the end, update IT's overlay information,
5657 face information etc. */
5660 reseat_at_previous_visible_line_start (struct it
*it
)
5662 back_to_previous_visible_line_start (it
);
5663 reseat (it
, it
->current
.pos
, 1);
5668 /* Reseat iterator IT on the next visible line start in the current
5669 buffer. ON_NEWLINE_P non-zero means position IT on the newline
5670 preceding the line start. Skip over invisible text that is so
5671 because of selective display. Compute faces, overlays etc at the
5672 new position. Note that this function does not skip over text that
5673 is invisible because of text properties. */
5676 reseat_at_next_visible_line_start (struct it
*it
, int on_newline_p
)
5678 int newline_found_p
, skipped_p
= 0;
5680 newline_found_p
= forward_to_next_line_start (it
, &skipped_p
);
5682 /* Skip over lines that are invisible because they are indented
5683 more than the value of IT->selective. */
5684 if (it
->selective
> 0)
5685 while (IT_CHARPOS (*it
) < ZV
5686 && indented_beyond_p (IT_CHARPOS (*it
), IT_BYTEPOS (*it
),
5687 (double) it
->selective
)) /* iftc */
5689 xassert (IT_BYTEPOS (*it
) == BEGV
5690 || FETCH_BYTE (IT_BYTEPOS (*it
) - 1) == '\n');
5691 newline_found_p
= forward_to_next_line_start (it
, &skipped_p
);
5694 /* Position on the newline if that's what's requested. */
5695 if (on_newline_p
&& newline_found_p
)
5697 if (STRINGP (it
->string
))
5699 if (IT_STRING_CHARPOS (*it
) > 0)
5703 --IT_STRING_CHARPOS (*it
);
5704 --IT_STRING_BYTEPOS (*it
);
5707 /* Setting this flag will cause
5708 bidi_move_to_visually_next not to advance, but
5709 instead deliver the current character (newline),
5710 which is what the ON_NEWLINE_P flag wants. */
5711 it
->bidi_it
.first_elt
= 1;
5714 else if (IT_CHARPOS (*it
) > BEGV
)
5721 /* With bidi iteration, the call to `reseat' will cause
5722 bidi_move_to_visually_next deliver the current character,
5723 the newline, instead of advancing. */
5724 reseat (it
, it
->current
.pos
, 0);
5728 reseat (it
, it
->current
.pos
, 0);
5735 /***********************************************************************
5736 Changing an iterator's position
5737 ***********************************************************************/
5739 /* Change IT's current position to POS in current_buffer. If FORCE_P
5740 is non-zero, always check for text properties at the new position.
5741 Otherwise, text properties are only looked up if POS >=
5742 IT->check_charpos of a property. */
5745 reseat (struct it
*it
, struct text_pos pos
, int force_p
)
5747 EMACS_INT original_pos
= IT_CHARPOS (*it
);
5749 reseat_1 (it
, pos
, 0);
5751 /* Determine where to check text properties. Avoid doing it
5752 where possible because text property lookup is very expensive. */
5754 || CHARPOS (pos
) > it
->stop_charpos
5755 || CHARPOS (pos
) < original_pos
)
5759 /* For bidi iteration, we need to prime prev_stop and
5760 base_level_stop with our best estimations. */
5761 if (CHARPOS (pos
) < it
->prev_stop
)
5763 handle_stop_backwards (it
, BEGV
);
5764 if (CHARPOS (pos
) < it
->base_level_stop
)
5765 it
->base_level_stop
= 0;
5767 else if (CHARPOS (pos
) > it
->stop_charpos
5768 && it
->stop_charpos
>= BEGV
)
5769 handle_stop_backwards (it
, it
->stop_charpos
);
5776 it
->prev_stop
= it
->base_level_stop
= 0;
5785 /* Change IT's buffer position to POS. SET_STOP_P non-zero means set
5786 IT->stop_pos to POS, also. */
5789 reseat_1 (struct it
*it
, struct text_pos pos
, int set_stop_p
)
5791 /* Don't call this function when scanning a C string. */
5792 xassert (it
->s
== NULL
);
5794 /* POS must be a reasonable value. */
5795 xassert (CHARPOS (pos
) >= BEGV
&& CHARPOS (pos
) <= ZV
);
5797 it
->current
.pos
= it
->position
= pos
;
5798 it
->end_charpos
= ZV
;
5800 it
->current
.dpvec_index
= -1;
5801 it
->current
.overlay_string_index
= -1;
5802 IT_STRING_CHARPOS (*it
) = -1;
5803 IT_STRING_BYTEPOS (*it
) = -1;
5805 it
->method
= GET_FROM_BUFFER
;
5806 it
->object
= it
->w
->buffer
;
5807 it
->area
= TEXT_AREA
;
5808 it
->multibyte_p
= !NILP (BVAR (current_buffer
, enable_multibyte_characters
));
5810 it
->string_from_display_prop_p
= 0;
5811 it
->from_disp_prop_p
= 0;
5812 it
->face_before_selective_p
= 0;
5815 bidi_init_it (IT_CHARPOS (*it
), IT_BYTEPOS (*it
), FRAME_WINDOW_P (it
->f
),
5817 bidi_unshelve_cache (NULL
);
5818 it
->bidi_it
.paragraph_dir
= NEUTRAL_DIR
;
5819 it
->bidi_it
.string
.s
= NULL
;
5820 it
->bidi_it
.string
.lstring
= Qnil
;
5821 it
->bidi_it
.string
.bufpos
= 0;
5822 it
->bidi_it
.string
.unibyte
= 0;
5827 it
->stop_charpos
= CHARPOS (pos
);
5828 it
->base_level_stop
= CHARPOS (pos
);
5833 /* Set up IT for displaying a string, starting at CHARPOS in window W.
5834 If S is non-null, it is a C string to iterate over. Otherwise,
5835 STRING gives a Lisp string to iterate over.
5837 If PRECISION > 0, don't return more then PRECISION number of
5838 characters from the string.
5840 If FIELD_WIDTH > 0, return padding spaces until FIELD_WIDTH
5841 characters have been returned. FIELD_WIDTH < 0 means an infinite
5844 MULTIBYTE = 0 means disable processing of multibyte characters,
5845 MULTIBYTE > 0 means enable it,
5846 MULTIBYTE < 0 means use IT->multibyte_p.
5848 IT must be initialized via a prior call to init_iterator before
5849 calling this function. */
5852 reseat_to_string (struct it
*it
, const char *s
, Lisp_Object string
,
5853 EMACS_INT charpos
, EMACS_INT precision
, int field_width
,
5856 /* No region in strings. */
5857 it
->region_beg_charpos
= it
->region_end_charpos
= -1;
5859 /* No text property checks performed by default, but see below. */
5860 it
->stop_charpos
= -1;
5862 /* Set iterator position and end position. */
5863 memset (&it
->current
, 0, sizeof it
->current
);
5864 it
->current
.overlay_string_index
= -1;
5865 it
->current
.dpvec_index
= -1;
5866 xassert (charpos
>= 0);
5868 /* If STRING is specified, use its multibyteness, otherwise use the
5869 setting of MULTIBYTE, if specified. */
5871 it
->multibyte_p
= multibyte
> 0;
5873 /* Bidirectional reordering of strings is controlled by the default
5874 value of bidi-display-reordering. */
5875 it
->bidi_p
= !NILP (BVAR (&buffer_defaults
, bidi_display_reordering
));
5879 xassert (STRINGP (string
));
5880 it
->string
= string
;
5882 it
->end_charpos
= it
->string_nchars
= SCHARS (string
);
5883 it
->method
= GET_FROM_STRING
;
5884 it
->current
.string_pos
= string_pos (charpos
, string
);
5888 it
->bidi_it
.string
.lstring
= string
;
5889 it
->bidi_it
.string
.s
= NULL
;
5890 it
->bidi_it
.string
.schars
= it
->end_charpos
;
5891 it
->bidi_it
.string
.bufpos
= 0;
5892 it
->bidi_it
.string
.from_disp_str
= 0;
5893 it
->bidi_it
.string
.unibyte
= !it
->multibyte_p
;
5894 bidi_init_it (charpos
, IT_STRING_BYTEPOS (*it
),
5895 FRAME_WINDOW_P (it
->f
), &it
->bidi_it
);
5900 it
->s
= (const unsigned char *) s
;
5903 /* Note that we use IT->current.pos, not it->current.string_pos,
5904 for displaying C strings. */
5905 IT_STRING_CHARPOS (*it
) = IT_STRING_BYTEPOS (*it
) = -1;
5906 if (it
->multibyte_p
)
5908 it
->current
.pos
= c_string_pos (charpos
, s
, 1);
5909 it
->end_charpos
= it
->string_nchars
= number_of_chars (s
, 1);
5913 IT_CHARPOS (*it
) = IT_BYTEPOS (*it
) = charpos
;
5914 it
->end_charpos
= it
->string_nchars
= strlen (s
);
5919 it
->bidi_it
.string
.lstring
= Qnil
;
5920 it
->bidi_it
.string
.s
= s
;
5921 it
->bidi_it
.string
.schars
= it
->end_charpos
;
5922 it
->bidi_it
.string
.bufpos
= 0;
5923 it
->bidi_it
.string
.from_disp_str
= 0;
5924 it
->bidi_it
.string
.unibyte
= !it
->multibyte_p
;
5925 bidi_init_it (charpos
, IT_BYTEPOS (*it
), FRAME_WINDOW_P (it
->f
),
5928 it
->method
= GET_FROM_C_STRING
;
5931 /* PRECISION > 0 means don't return more than PRECISION characters
5933 if (precision
> 0 && it
->end_charpos
- charpos
> precision
)
5935 it
->end_charpos
= it
->string_nchars
= charpos
+ precision
;
5937 it
->bidi_it
.string
.schars
= it
->end_charpos
;
5940 /* FIELD_WIDTH > 0 means pad with spaces until FIELD_WIDTH
5941 characters have been returned. FIELD_WIDTH == 0 means don't pad,
5942 FIELD_WIDTH < 0 means infinite field width. This is useful for
5943 padding with `-' at the end of a mode line. */
5944 if (field_width
< 0)
5945 field_width
= INFINITY
;
5946 /* Implementation note: We deliberately don't enlarge
5947 it->bidi_it.string.schars here to fit it->end_charpos, because
5948 the bidi iterator cannot produce characters out of thin air. */
5949 if (field_width
> it
->end_charpos
- charpos
)
5950 it
->end_charpos
= charpos
+ field_width
;
5952 /* Use the standard display table for displaying strings. */
5953 if (DISP_TABLE_P (Vstandard_display_table
))
5954 it
->dp
= XCHAR_TABLE (Vstandard_display_table
);
5956 it
->stop_charpos
= charpos
;
5957 it
->prev_stop
= charpos
;
5958 it
->base_level_stop
= 0;
5961 it
->bidi_it
.first_elt
= 1;
5962 it
->bidi_it
.paragraph_dir
= NEUTRAL_DIR
;
5963 it
->bidi_it
.disp_pos
= -1;
5965 if (s
== NULL
&& it
->multibyte_p
)
5967 EMACS_INT endpos
= SCHARS (it
->string
);
5968 if (endpos
> it
->end_charpos
)
5969 endpos
= it
->end_charpos
;
5970 composition_compute_stop_pos (&it
->cmp_it
, charpos
, -1, endpos
,
5978 /***********************************************************************
5980 ***********************************************************************/
5982 /* Map enum it_method value to corresponding next_element_from_* function. */
5984 static int (* get_next_element
[NUM_IT_METHODS
]) (struct it
*it
) =
5986 next_element_from_buffer
,
5987 next_element_from_display_vector
,
5988 next_element_from_string
,
5989 next_element_from_c_string
,
5990 next_element_from_image
,
5991 next_element_from_stretch
5994 #define GET_NEXT_DISPLAY_ELEMENT(it) (*get_next_element[(it)->method]) (it)
5997 /* Return 1 iff a character at CHARPOS (and BYTEPOS) is composed
5998 (possibly with the following characters). */
6000 #define CHAR_COMPOSED_P(IT,CHARPOS,BYTEPOS,END_CHARPOS) \
6001 ((IT)->cmp_it.id >= 0 \
6002 || ((IT)->cmp_it.stop_pos == (CHARPOS) \
6003 && composition_reseat_it (&(IT)->cmp_it, CHARPOS, BYTEPOS, \
6004 END_CHARPOS, (IT)->w, \
6005 FACE_FROM_ID ((IT)->f, (IT)->face_id), \
6009 /* Lookup the char-table Vglyphless_char_display for character C (-1
6010 if we want information for no-font case), and return the display
6011 method symbol. By side-effect, update it->what and
6012 it->glyphless_method. This function is called from
6013 get_next_display_element for each character element, and from
6014 x_produce_glyphs when no suitable font was found. */
6017 lookup_glyphless_char_display (int c
, struct it
*it
)
6019 Lisp_Object glyphless_method
= Qnil
;
6021 if (CHAR_TABLE_P (Vglyphless_char_display
)
6022 && CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (Vglyphless_char_display
)) >= 1)
6026 glyphless_method
= CHAR_TABLE_REF (Vglyphless_char_display
, c
);
6027 if (CONSP (glyphless_method
))
6028 glyphless_method
= FRAME_WINDOW_P (it
->f
)
6029 ? XCAR (glyphless_method
)
6030 : XCDR (glyphless_method
);
6033 glyphless_method
= XCHAR_TABLE (Vglyphless_char_display
)->extras
[0];
6037 if (NILP (glyphless_method
))
6040 /* The default is to display the character by a proper font. */
6042 /* The default for the no-font case is to display an empty box. */
6043 glyphless_method
= Qempty_box
;
6045 if (EQ (glyphless_method
, Qzero_width
))
6048 return glyphless_method
;
6049 /* This method can't be used for the no-font case. */
6050 glyphless_method
= Qempty_box
;
6052 if (EQ (glyphless_method
, Qthin_space
))
6053 it
->glyphless_method
= GLYPHLESS_DISPLAY_THIN_SPACE
;
6054 else if (EQ (glyphless_method
, Qempty_box
))
6055 it
->glyphless_method
= GLYPHLESS_DISPLAY_EMPTY_BOX
;
6056 else if (EQ (glyphless_method
, Qhex_code
))
6057 it
->glyphless_method
= GLYPHLESS_DISPLAY_HEX_CODE
;
6058 else if (STRINGP (glyphless_method
))
6059 it
->glyphless_method
= GLYPHLESS_DISPLAY_ACRONYM
;
6062 /* Invalid value. We use the default method. */
6063 glyphless_method
= Qnil
;
6066 it
->what
= IT_GLYPHLESS
;
6067 return glyphless_method
;
6070 /* Load IT's display element fields with information about the next
6071 display element from the current position of IT. Value is zero if
6072 end of buffer (or C string) is reached. */
6074 static struct frame
*last_escape_glyph_frame
= NULL
;
6075 static unsigned last_escape_glyph_face_id
= (1 << FACE_ID_BITS
);
6076 static int last_escape_glyph_merged_face_id
= 0;
6078 struct frame
*last_glyphless_glyph_frame
= NULL
;
6079 unsigned last_glyphless_glyph_face_id
= (1 << FACE_ID_BITS
);
6080 int last_glyphless_glyph_merged_face_id
= 0;
6083 get_next_display_element (struct it
*it
)
6085 /* Non-zero means that we found a display element. Zero means that
6086 we hit the end of what we iterate over. Performance note: the
6087 function pointer `method' used here turns out to be faster than
6088 using a sequence of if-statements. */
6092 success_p
= GET_NEXT_DISPLAY_ELEMENT (it
);
6094 if (it
->what
== IT_CHARACTER
)
6096 /* UAX#9, L4: "A character is depicted by a mirrored glyph if
6097 and only if (a) the resolved directionality of that character
6099 /* FIXME: Do we need an exception for characters from display
6101 if (it
->bidi_p
&& it
->bidi_it
.type
== STRONG_R
)
6102 it
->c
= bidi_mirror_char (it
->c
);
6103 /* Map via display table or translate control characters.
6104 IT->c, IT->len etc. have been set to the next character by
6105 the function call above. If we have a display table, and it
6106 contains an entry for IT->c, translate it. Don't do this if
6107 IT->c itself comes from a display table, otherwise we could
6108 end up in an infinite recursion. (An alternative could be to
6109 count the recursion depth of this function and signal an
6110 error when a certain maximum depth is reached.) Is it worth
6112 if (success_p
&& it
->dpvec
== NULL
)
6115 struct charset
*unibyte
= CHARSET_FROM_ID (charset_unibyte
);
6116 enum { char_is_other
= 0, char_is_nbsp
, char_is_soft_hyphen
}
6117 nbsp_or_shy
= char_is_other
;
6118 int c
= it
->c
; /* This is the character to display. */
6120 if (! it
->multibyte_p
&& ! ASCII_CHAR_P (c
))
6122 xassert (SINGLE_BYTE_CHAR_P (c
));
6123 if (unibyte_display_via_language_environment
)
6125 c
= DECODE_CHAR (unibyte
, c
);
6127 c
= BYTE8_TO_CHAR (it
->c
);
6130 c
= BYTE8_TO_CHAR (it
->c
);
6134 && (dv
= DISP_CHAR_VECTOR (it
->dp
, c
),
6137 struct Lisp_Vector
*v
= XVECTOR (dv
);
6139 /* Return the first character from the display table
6140 entry, if not empty. If empty, don't display the
6141 current character. */
6144 it
->dpvec_char_len
= it
->len
;
6145 it
->dpvec
= v
->contents
;
6146 it
->dpend
= v
->contents
+ v
->header
.size
;
6147 it
->current
.dpvec_index
= 0;
6148 it
->dpvec_face_id
= -1;
6149 it
->saved_face_id
= it
->face_id
;
6150 it
->method
= GET_FROM_DISPLAY_VECTOR
;
6155 set_iterator_to_next (it
, 0);
6160 if (! NILP (lookup_glyphless_char_display (c
, it
)))
6162 if (it
->what
== IT_GLYPHLESS
)
6164 /* Don't display this character. */
6165 set_iterator_to_next (it
, 0);
6169 if (! ASCII_CHAR_P (c
) && ! NILP (Vnobreak_char_display
))
6170 nbsp_or_shy
= (c
== 0xA0 ? char_is_nbsp
6171 : c
== 0xAD ? char_is_soft_hyphen
6174 /* Translate control characters into `\003' or `^C' form.
6175 Control characters coming from a display table entry are
6176 currently not translated because we use IT->dpvec to hold
6177 the translation. This could easily be changed but I
6178 don't believe that it is worth doing.
6180 NBSP and SOFT-HYPEN are property translated too.
6182 Non-printable characters and raw-byte characters are also
6183 translated to octal form. */
6184 if (((c
< ' ' || c
== 127) /* ASCII control chars */
6185 ? (it
->area
!= TEXT_AREA
6186 /* In mode line, treat \n, \t like other crl chars. */
6189 && (it
->glyph_row
->mode_line_p
|| it
->avoid_cursor_p
))
6190 || (c
!= '\n' && c
!= '\t'))
6193 || ! CHAR_PRINTABLE_P (c
))))
6195 /* C is a control character, NBSP, SOFT-HYPEN, raw-byte,
6196 or a non-printable character which must be displayed
6197 either as '\003' or as `^C' where the '\\' and '^'
6198 can be defined in the display table. Fill
6199 IT->ctl_chars with glyphs for what we have to
6200 display. Then, set IT->dpvec to these glyphs. */
6203 int face_id
, lface_id
= 0 ;
6206 /* Handle control characters with ^. */
6208 if (ASCII_CHAR_P (c
) && it
->ctl_arrow_p
)
6212 g
= '^'; /* default glyph for Control */
6213 /* Set IT->ctl_chars[0] to the glyph for `^'. */
6215 && (gc
= DISP_CTRL_GLYPH (it
->dp
), GLYPH_CODE_P (gc
))
6216 && GLYPH_CODE_CHAR_VALID_P (gc
))
6218 g
= GLYPH_CODE_CHAR (gc
);
6219 lface_id
= GLYPH_CODE_FACE (gc
);
6223 face_id
= merge_faces (it
->f
, Qt
, lface_id
, it
->face_id
);
6225 else if (it
->f
== last_escape_glyph_frame
6226 && it
->face_id
== last_escape_glyph_face_id
)
6228 face_id
= last_escape_glyph_merged_face_id
;
6232 /* Merge the escape-glyph face into the current face. */
6233 face_id
= merge_faces (it
->f
, Qescape_glyph
, 0,
6235 last_escape_glyph_frame
= it
->f
;
6236 last_escape_glyph_face_id
= it
->face_id
;
6237 last_escape_glyph_merged_face_id
= face_id
;
6240 XSETINT (it
->ctl_chars
[0], g
);
6241 XSETINT (it
->ctl_chars
[1], c
^ 0100);
6243 goto display_control
;
6246 /* Handle non-break space in the mode where it only gets
6249 if (EQ (Vnobreak_char_display
, Qt
)
6250 && nbsp_or_shy
== char_is_nbsp
)
6252 /* Merge the no-break-space face into the current face. */
6253 face_id
= merge_faces (it
->f
, Qnobreak_space
, 0,
6257 XSETINT (it
->ctl_chars
[0], ' ');
6259 goto display_control
;
6262 /* Handle sequences that start with the "escape glyph". */
6264 /* the default escape glyph is \. */
6265 escape_glyph
= '\\';
6268 && (gc
= DISP_ESCAPE_GLYPH (it
->dp
), GLYPH_CODE_P (gc
))
6269 && GLYPH_CODE_CHAR_VALID_P (gc
))
6271 escape_glyph
= GLYPH_CODE_CHAR (gc
);
6272 lface_id
= GLYPH_CODE_FACE (gc
);
6276 /* The display table specified a face.
6277 Merge it into face_id and also into escape_glyph. */
6278 face_id
= merge_faces (it
->f
, Qt
, lface_id
,
6281 else if (it
->f
== last_escape_glyph_frame
6282 && it
->face_id
== last_escape_glyph_face_id
)
6284 face_id
= last_escape_glyph_merged_face_id
;
6288 /* Merge the escape-glyph face into the current face. */
6289 face_id
= merge_faces (it
->f
, Qescape_glyph
, 0,
6291 last_escape_glyph_frame
= it
->f
;
6292 last_escape_glyph_face_id
= it
->face_id
;
6293 last_escape_glyph_merged_face_id
= face_id
;
6296 /* Handle soft hyphens in the mode where they only get
6299 if (EQ (Vnobreak_char_display
, Qt
)
6300 && nbsp_or_shy
== char_is_soft_hyphen
)
6302 XSETINT (it
->ctl_chars
[0], '-');
6304 goto display_control
;
6307 /* Handle non-break space and soft hyphen
6308 with the escape glyph. */
6312 XSETINT (it
->ctl_chars
[0], escape_glyph
);
6313 c
= (nbsp_or_shy
== char_is_nbsp
? ' ' : '-');
6314 XSETINT (it
->ctl_chars
[1], c
);
6316 goto display_control
;
6323 if (CHAR_BYTE8_P (c
))
6324 /* Display \200 instead of \17777600. */
6325 c
= CHAR_TO_BYTE8 (c
);
6326 len
= sprintf (str
, "%03o", c
);
6328 XSETINT (it
->ctl_chars
[0], escape_glyph
);
6329 for (i
= 0; i
< len
; i
++)
6330 XSETINT (it
->ctl_chars
[i
+ 1], str
[i
]);
6335 /* Set up IT->dpvec and return first character from it. */
6336 it
->dpvec_char_len
= it
->len
;
6337 it
->dpvec
= it
->ctl_chars
;
6338 it
->dpend
= it
->dpvec
+ ctl_len
;
6339 it
->current
.dpvec_index
= 0;
6340 it
->dpvec_face_id
= face_id
;
6341 it
->saved_face_id
= it
->face_id
;
6342 it
->method
= GET_FROM_DISPLAY_VECTOR
;
6346 it
->char_to_display
= c
;
6350 it
->char_to_display
= it
->c
;
6354 /* Adjust face id for a multibyte character. There are no multibyte
6355 character in unibyte text. */
6356 if ((it
->what
== IT_CHARACTER
|| it
->what
== IT_COMPOSITION
)
6359 && FRAME_WINDOW_P (it
->f
))
6361 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
6363 if (it
->what
== IT_COMPOSITION
&& it
->cmp_it
.ch
>= 0)
6365 /* Automatic composition with glyph-string. */
6366 Lisp_Object gstring
= composition_gstring_from_id (it
->cmp_it
.id
);
6368 it
->face_id
= face_for_font (it
->f
, LGSTRING_FONT (gstring
), face
);
6372 EMACS_INT pos
= (it
->s
? -1
6373 : STRINGP (it
->string
) ? IT_STRING_CHARPOS (*it
)
6374 : IT_CHARPOS (*it
));
6376 it
->face_id
= FACE_FOR_CHAR (it
->f
, face
, it
->char_to_display
, pos
,
6382 /* Is this character the last one of a run of characters with
6383 box? If yes, set IT->end_of_box_run_p to 1. */
6387 if (it
->method
== GET_FROM_STRING
&& it
->sp
)
6389 int face_id
= underlying_face_id (it
);
6390 struct face
*face
= FACE_FROM_ID (it
->f
, face_id
);
6394 if (face
->box
== FACE_NO_BOX
)
6396 /* If the box comes from face properties in a
6397 display string, check faces in that string. */
6398 int string_face_id
= face_after_it_pos (it
);
6399 it
->end_of_box_run_p
6400 = (FACE_FROM_ID (it
->f
, string_face_id
)->box
6403 /* Otherwise, the box comes from the underlying face.
6404 If this is the last string character displayed, check
6405 the next buffer location. */
6406 else if ((IT_STRING_CHARPOS (*it
) >= SCHARS (it
->string
) - 1)
6407 && (it
->current
.overlay_string_index
6408 == it
->n_overlay_strings
- 1))
6412 struct text_pos pos
= it
->current
.pos
;
6413 INC_TEXT_POS (pos
, it
->multibyte_p
);
6415 next_face_id
= face_at_buffer_position
6416 (it
->w
, CHARPOS (pos
), it
->region_beg_charpos
,
6417 it
->region_end_charpos
, &ignore
,
6418 (IT_CHARPOS (*it
) + TEXT_PROP_DISTANCE_LIMIT
), 0,
6420 it
->end_of_box_run_p
6421 = (FACE_FROM_ID (it
->f
, next_face_id
)->box
6428 int face_id
= face_after_it_pos (it
);
6429 it
->end_of_box_run_p
6430 = (face_id
!= it
->face_id
6431 && FACE_FROM_ID (it
->f
, face_id
)->box
== FACE_NO_BOX
);
6435 /* Value is 0 if end of buffer or string reached. */
6440 /* Move IT to the next display element.
6442 RESEAT_P non-zero means if called on a newline in buffer text,
6443 skip to the next visible line start.
6445 Functions get_next_display_element and set_iterator_to_next are
6446 separate because I find this arrangement easier to handle than a
6447 get_next_display_element function that also increments IT's
6448 position. The way it is we can first look at an iterator's current
6449 display element, decide whether it fits on a line, and if it does,
6450 increment the iterator position. The other way around we probably
6451 would either need a flag indicating whether the iterator has to be
6452 incremented the next time, or we would have to implement a
6453 decrement position function which would not be easy to write. */
6456 set_iterator_to_next (struct it
*it
, int reseat_p
)
6458 /* Reset flags indicating start and end of a sequence of characters
6459 with box. Reset them at the start of this function because
6460 moving the iterator to a new position might set them. */
6461 it
->start_of_box_run_p
= it
->end_of_box_run_p
= 0;
6465 case GET_FROM_BUFFER
:
6466 /* The current display element of IT is a character from
6467 current_buffer. Advance in the buffer, and maybe skip over
6468 invisible lines that are so because of selective display. */
6469 if (ITERATOR_AT_END_OF_LINE_P (it
) && reseat_p
)
6470 reseat_at_next_visible_line_start (it
, 0);
6471 else if (it
->cmp_it
.id
>= 0)
6473 /* We are currently getting glyphs from a composition. */
6478 IT_CHARPOS (*it
) += it
->cmp_it
.nchars
;
6479 IT_BYTEPOS (*it
) += it
->cmp_it
.nbytes
;
6480 if (it
->cmp_it
.to
< it
->cmp_it
.nglyphs
)
6482 it
->cmp_it
.from
= it
->cmp_it
.to
;
6487 composition_compute_stop_pos (&it
->cmp_it
, IT_CHARPOS (*it
),
6489 it
->end_charpos
, Qnil
);
6492 else if (! it
->cmp_it
.reversed_p
)
6494 /* Composition created while scanning forward. */
6495 /* Update IT's char/byte positions to point to the first
6496 character of the next grapheme cluster, or to the
6497 character visually after the current composition. */
6498 for (i
= 0; i
< it
->cmp_it
.nchars
; i
++)
6499 bidi_move_to_visually_next (&it
->bidi_it
);
6500 IT_BYTEPOS (*it
) = it
->bidi_it
.bytepos
;
6501 IT_CHARPOS (*it
) = it
->bidi_it
.charpos
;
6503 if (it
->cmp_it
.to
< it
->cmp_it
.nglyphs
)
6505 /* Proceed to the next grapheme cluster. */
6506 it
->cmp_it
.from
= it
->cmp_it
.to
;
6510 /* No more grapheme clusters in this composition.
6511 Find the next stop position. */
6512 EMACS_INT stop
= it
->end_charpos
;
6513 if (it
->bidi_it
.scan_dir
< 0)
6514 /* Now we are scanning backward and don't know
6517 composition_compute_stop_pos (&it
->cmp_it
, IT_CHARPOS (*it
),
6518 IT_BYTEPOS (*it
), stop
, Qnil
);
6523 /* Composition created while scanning backward. */
6524 /* Update IT's char/byte positions to point to the last
6525 character of the previous grapheme cluster, or the
6526 character visually after the current composition. */
6527 for (i
= 0; i
< it
->cmp_it
.nchars
; i
++)
6528 bidi_move_to_visually_next (&it
->bidi_it
);
6529 IT_BYTEPOS (*it
) = it
->bidi_it
.bytepos
;
6530 IT_CHARPOS (*it
) = it
->bidi_it
.charpos
;
6531 if (it
->cmp_it
.from
> 0)
6533 /* Proceed to the previous grapheme cluster. */
6534 it
->cmp_it
.to
= it
->cmp_it
.from
;
6538 /* No more grapheme clusters in this composition.
6539 Find the next stop position. */
6540 EMACS_INT stop
= it
->end_charpos
;
6541 if (it
->bidi_it
.scan_dir
< 0)
6542 /* Now we are scanning backward and don't know
6545 composition_compute_stop_pos (&it
->cmp_it
, IT_CHARPOS (*it
),
6546 IT_BYTEPOS (*it
), stop
, Qnil
);
6552 xassert (it
->len
!= 0);
6556 IT_BYTEPOS (*it
) += it
->len
;
6557 IT_CHARPOS (*it
) += 1;
6561 int prev_scan_dir
= it
->bidi_it
.scan_dir
;
6562 /* If this is a new paragraph, determine its base
6563 direction (a.k.a. its base embedding level). */
6564 if (it
->bidi_it
.new_paragraph
)
6565 bidi_paragraph_init (it
->paragraph_embedding
, &it
->bidi_it
, 0);
6566 bidi_move_to_visually_next (&it
->bidi_it
);
6567 IT_BYTEPOS (*it
) = it
->bidi_it
.bytepos
;
6568 IT_CHARPOS (*it
) = it
->bidi_it
.charpos
;
6569 if (prev_scan_dir
!= it
->bidi_it
.scan_dir
)
6571 /* As the scan direction was changed, we must
6572 re-compute the stop position for composition. */
6573 EMACS_INT stop
= it
->end_charpos
;
6574 if (it
->bidi_it
.scan_dir
< 0)
6576 composition_compute_stop_pos (&it
->cmp_it
, IT_CHARPOS (*it
),
6577 IT_BYTEPOS (*it
), stop
, Qnil
);
6580 xassert (IT_BYTEPOS (*it
) == CHAR_TO_BYTE (IT_CHARPOS (*it
)));
6584 case GET_FROM_C_STRING
:
6585 /* Current display element of IT is from a C string. */
6587 /* If the string position is beyond string's end, it means
6588 next_element_from_c_string is padding the string with
6589 blanks, in which case we bypass the bidi iterator,
6590 because it cannot deal with such virtual characters. */
6591 || IT_CHARPOS (*it
) >= it
->bidi_it
.string
.schars
)
6593 IT_BYTEPOS (*it
) += it
->len
;
6594 IT_CHARPOS (*it
) += 1;
6598 bidi_move_to_visually_next (&it
->bidi_it
);
6599 IT_BYTEPOS (*it
) = it
->bidi_it
.bytepos
;
6600 IT_CHARPOS (*it
) = it
->bidi_it
.charpos
;
6604 case GET_FROM_DISPLAY_VECTOR
:
6605 /* Current display element of IT is from a display table entry.
6606 Advance in the display table definition. Reset it to null if
6607 end reached, and continue with characters from buffers/
6609 ++it
->current
.dpvec_index
;
6611 /* Restore face of the iterator to what they were before the
6612 display vector entry (these entries may contain faces). */
6613 it
->face_id
= it
->saved_face_id
;
6615 if (it
->dpvec
+ it
->current
.dpvec_index
== it
->dpend
)
6617 int recheck_faces
= it
->ellipsis_p
;
6620 it
->method
= GET_FROM_C_STRING
;
6621 else if (STRINGP (it
->string
))
6622 it
->method
= GET_FROM_STRING
;
6625 it
->method
= GET_FROM_BUFFER
;
6626 it
->object
= it
->w
->buffer
;
6630 it
->current
.dpvec_index
= -1;
6632 /* Skip over characters which were displayed via IT->dpvec. */
6633 if (it
->dpvec_char_len
< 0)
6634 reseat_at_next_visible_line_start (it
, 1);
6635 else if (it
->dpvec_char_len
> 0)
6637 if (it
->method
== GET_FROM_STRING
6638 && it
->n_overlay_strings
> 0)
6639 it
->ignore_overlay_strings_at_pos_p
= 1;
6640 it
->len
= it
->dpvec_char_len
;
6641 set_iterator_to_next (it
, reseat_p
);
6644 /* Maybe recheck faces after display vector */
6646 it
->stop_charpos
= IT_CHARPOS (*it
);
6650 case GET_FROM_STRING
:
6651 /* Current display element is a character from a Lisp string. */
6652 xassert (it
->s
== NULL
&& STRINGP (it
->string
));
6653 if (it
->cmp_it
.id
>= 0)
6659 IT_STRING_CHARPOS (*it
) += it
->cmp_it
.nchars
;
6660 IT_STRING_BYTEPOS (*it
) += it
->cmp_it
.nbytes
;
6661 if (it
->cmp_it
.to
< it
->cmp_it
.nglyphs
)
6662 it
->cmp_it
.from
= it
->cmp_it
.to
;
6666 composition_compute_stop_pos (&it
->cmp_it
,
6667 IT_STRING_CHARPOS (*it
),
6668 IT_STRING_BYTEPOS (*it
),
6669 it
->end_charpos
, it
->string
);
6672 else if (! it
->cmp_it
.reversed_p
)
6674 for (i
= 0; i
< it
->cmp_it
.nchars
; i
++)
6675 bidi_move_to_visually_next (&it
->bidi_it
);
6676 IT_STRING_BYTEPOS (*it
) = it
->bidi_it
.bytepos
;
6677 IT_STRING_CHARPOS (*it
) = it
->bidi_it
.charpos
;
6679 if (it
->cmp_it
.to
< it
->cmp_it
.nglyphs
)
6680 it
->cmp_it
.from
= it
->cmp_it
.to
;
6683 EMACS_INT stop
= it
->end_charpos
;
6684 if (it
->bidi_it
.scan_dir
< 0)
6686 composition_compute_stop_pos (&it
->cmp_it
,
6687 IT_STRING_CHARPOS (*it
),
6688 IT_STRING_BYTEPOS (*it
), stop
,
6694 for (i
= 0; i
< it
->cmp_it
.nchars
; i
++)
6695 bidi_move_to_visually_next (&it
->bidi_it
);
6696 IT_STRING_BYTEPOS (*it
) = it
->bidi_it
.bytepos
;
6697 IT_STRING_CHARPOS (*it
) = it
->bidi_it
.charpos
;
6698 if (it
->cmp_it
.from
> 0)
6699 it
->cmp_it
.to
= it
->cmp_it
.from
;
6702 EMACS_INT stop
= it
->end_charpos
;
6703 if (it
->bidi_it
.scan_dir
< 0)
6705 composition_compute_stop_pos (&it
->cmp_it
,
6706 IT_STRING_CHARPOS (*it
),
6707 IT_STRING_BYTEPOS (*it
), stop
,
6715 /* If the string position is beyond string's end, it
6716 means next_element_from_string is padding the string
6717 with blanks, in which case we bypass the bidi
6718 iterator, because it cannot deal with such virtual
6720 || IT_STRING_CHARPOS (*it
) >= it
->bidi_it
.string
.schars
)
6722 IT_STRING_BYTEPOS (*it
) += it
->len
;
6723 IT_STRING_CHARPOS (*it
) += 1;
6727 int prev_scan_dir
= it
->bidi_it
.scan_dir
;
6729 bidi_move_to_visually_next (&it
->bidi_it
);
6730 IT_STRING_BYTEPOS (*it
) = it
->bidi_it
.bytepos
;
6731 IT_STRING_CHARPOS (*it
) = it
->bidi_it
.charpos
;
6732 if (prev_scan_dir
!= it
->bidi_it
.scan_dir
)
6734 EMACS_INT stop
= it
->end_charpos
;
6736 if (it
->bidi_it
.scan_dir
< 0)
6738 composition_compute_stop_pos (&it
->cmp_it
,
6739 IT_STRING_CHARPOS (*it
),
6740 IT_STRING_BYTEPOS (*it
), stop
,
6746 consider_string_end
:
6748 if (it
->current
.overlay_string_index
>= 0)
6750 /* IT->string is an overlay string. Advance to the
6751 next, if there is one. */
6752 if (IT_STRING_CHARPOS (*it
) >= SCHARS (it
->string
))
6755 next_overlay_string (it
);
6757 setup_for_ellipsis (it
, 0);
6762 /* IT->string is not an overlay string. If we reached
6763 its end, and there is something on IT->stack, proceed
6764 with what is on the stack. This can be either another
6765 string, this time an overlay string, or a buffer. */
6766 if (IT_STRING_CHARPOS (*it
) == SCHARS (it
->string
)
6770 if (it
->method
== GET_FROM_STRING
)
6771 goto consider_string_end
;
6776 case GET_FROM_IMAGE
:
6777 case GET_FROM_STRETCH
:
6778 /* The position etc with which we have to proceed are on
6779 the stack. The position may be at the end of a string,
6780 if the `display' property takes up the whole string. */
6781 xassert (it
->sp
> 0);
6783 if (it
->method
== GET_FROM_STRING
)
6784 goto consider_string_end
;
6788 /* There are no other methods defined, so this should be a bug. */
6792 xassert (it
->method
!= GET_FROM_STRING
6793 || (STRINGP (it
->string
)
6794 && IT_STRING_CHARPOS (*it
) >= 0));
6797 /* Load IT's display element fields with information about the next
6798 display element which comes from a display table entry or from the
6799 result of translating a control character to one of the forms `^C'
6802 IT->dpvec holds the glyphs to return as characters.
6803 IT->saved_face_id holds the face id before the display vector--it
6804 is restored into IT->face_id in set_iterator_to_next. */
6807 next_element_from_display_vector (struct it
*it
)
6812 xassert (it
->dpvec
&& it
->current
.dpvec_index
>= 0);
6814 it
->face_id
= it
->saved_face_id
;
6816 /* KFS: This code used to check ip->dpvec[0] instead of the current element.
6817 That seemed totally bogus - so I changed it... */
6818 gc
= it
->dpvec
[it
->current
.dpvec_index
];
6820 if (GLYPH_CODE_P (gc
) && GLYPH_CODE_CHAR_VALID_P (gc
))
6822 it
->c
= GLYPH_CODE_CHAR (gc
);
6823 it
->len
= CHAR_BYTES (it
->c
);
6825 /* The entry may contain a face id to use. Such a face id is
6826 the id of a Lisp face, not a realized face. A face id of
6827 zero means no face is specified. */
6828 if (it
->dpvec_face_id
>= 0)
6829 it
->face_id
= it
->dpvec_face_id
;
6832 int lface_id
= GLYPH_CODE_FACE (gc
);
6834 it
->face_id
= merge_faces (it
->f
, Qt
, lface_id
,
6839 /* Display table entry is invalid. Return a space. */
6840 it
->c
= ' ', it
->len
= 1;
6842 /* Don't change position and object of the iterator here. They are
6843 still the values of the character that had this display table
6844 entry or was translated, and that's what we want. */
6845 it
->what
= IT_CHARACTER
;
6849 /* Get the first element of string/buffer in the visual order, after
6850 being reseated to a new position in a string or a buffer. */
6852 get_visually_first_element (struct it
*it
)
6854 int string_p
= STRINGP (it
->string
) || it
->s
;
6855 EMACS_INT eob
= (string_p
? it
->bidi_it
.string
.schars
: ZV
);
6856 EMACS_INT bob
= (string_p
? 0 : BEGV
);
6858 if (STRINGP (it
->string
))
6860 it
->bidi_it
.charpos
= IT_STRING_CHARPOS (*it
);
6861 it
->bidi_it
.bytepos
= IT_STRING_BYTEPOS (*it
);
6865 it
->bidi_it
.charpos
= IT_CHARPOS (*it
);
6866 it
->bidi_it
.bytepos
= IT_BYTEPOS (*it
);
6869 if (it
->bidi_it
.charpos
== eob
)
6871 /* Nothing to do, but reset the FIRST_ELT flag, like
6872 bidi_paragraph_init does, because we are not going to
6874 it
->bidi_it
.first_elt
= 0;
6876 else if (it
->bidi_it
.charpos
== bob
6878 /* FIXME: Should support all Unicode line separators. */
6879 && (FETCH_CHAR (it
->bidi_it
.bytepos
- 1) == '\n'
6880 || FETCH_CHAR (it
->bidi_it
.bytepos
) == '\n')))
6882 /* If we are at the beginning of a line/string, we can produce
6883 the next element right away. */
6884 bidi_paragraph_init (it
->paragraph_embedding
, &it
->bidi_it
, 1);
6885 bidi_move_to_visually_next (&it
->bidi_it
);
6889 EMACS_INT orig_bytepos
= it
->bidi_it
.bytepos
;
6891 /* We need to prime the bidi iterator starting at the line's or
6892 string's beginning, before we will be able to produce the
6895 it
->bidi_it
.charpos
= it
->bidi_it
.bytepos
= 0;
6898 it
->bidi_it
.charpos
= find_next_newline_no_quit (IT_CHARPOS (*it
),
6900 it
->bidi_it
.bytepos
= CHAR_TO_BYTE (it
->bidi_it
.charpos
);
6902 bidi_paragraph_init (it
->paragraph_embedding
, &it
->bidi_it
, 1);
6905 /* Now return to buffer/string position where we were asked
6906 to get the next display element, and produce that. */
6907 bidi_move_to_visually_next (&it
->bidi_it
);
6909 while (it
->bidi_it
.bytepos
!= orig_bytepos
6910 && it
->bidi_it
.charpos
< eob
);
6913 /* Adjust IT's position information to where we ended up. */
6914 if (STRINGP (it
->string
))
6916 IT_STRING_CHARPOS (*it
) = it
->bidi_it
.charpos
;
6917 IT_STRING_BYTEPOS (*it
) = it
->bidi_it
.bytepos
;
6921 IT_CHARPOS (*it
) = it
->bidi_it
.charpos
;
6922 IT_BYTEPOS (*it
) = it
->bidi_it
.bytepos
;
6925 if (STRINGP (it
->string
) || !it
->s
)
6927 EMACS_INT stop
, charpos
, bytepos
;
6929 if (STRINGP (it
->string
))
6932 stop
= SCHARS (it
->string
);
6933 if (stop
> it
->end_charpos
)
6934 stop
= it
->end_charpos
;
6935 charpos
= IT_STRING_CHARPOS (*it
);
6936 bytepos
= IT_STRING_BYTEPOS (*it
);
6940 stop
= it
->end_charpos
;
6941 charpos
= IT_CHARPOS (*it
);
6942 bytepos
= IT_BYTEPOS (*it
);
6944 if (it
->bidi_it
.scan_dir
< 0)
6946 composition_compute_stop_pos (&it
->cmp_it
, charpos
, bytepos
, stop
,
6951 /* Load IT with the next display element from Lisp string IT->string.
6952 IT->current.string_pos is the current position within the string.
6953 If IT->current.overlay_string_index >= 0, the Lisp string is an
6957 next_element_from_string (struct it
*it
)
6959 struct text_pos position
;
6961 xassert (STRINGP (it
->string
));
6962 xassert (!it
->bidi_p
|| it
->string
== it
->bidi_it
.string
.lstring
);
6963 xassert (IT_STRING_CHARPOS (*it
) >= 0);
6964 position
= it
->current
.string_pos
;
6966 /* With bidi reordering, the character to display might not be the
6967 character at IT_STRING_CHARPOS. BIDI_IT.FIRST_ELT non-zero means
6968 that we were reseat()ed to a new string, whose paragraph
6969 direction is not known. */
6970 if (it
->bidi_p
&& it
->bidi_it
.first_elt
)
6972 get_visually_first_element (it
);
6973 SET_TEXT_POS (position
, IT_STRING_CHARPOS (*it
), IT_STRING_BYTEPOS (*it
));
6976 /* Time to check for invisible text? */
6977 if (IT_STRING_CHARPOS (*it
) < it
->end_charpos
)
6979 if (IT_STRING_CHARPOS (*it
) >= it
->stop_charpos
)
6982 || BIDI_AT_BASE_LEVEL (it
->bidi_it
)
6983 || IT_STRING_CHARPOS (*it
) == it
->stop_charpos
))
6985 /* With bidi non-linear iteration, we could find
6986 ourselves far beyond the last computed stop_charpos,
6987 with several other stop positions in between that we
6988 missed. Scan them all now, in buffer's logical
6989 order, until we find and handle the last stop_charpos
6990 that precedes our current position. */
6991 handle_stop_backwards (it
, it
->stop_charpos
);
6992 return GET_NEXT_DISPLAY_ELEMENT (it
);
6998 /* Take note of the stop position we just moved
6999 across, for when we will move back across it. */
7000 it
->prev_stop
= it
->stop_charpos
;
7001 /* If we are at base paragraph embedding level, take
7002 note of the last stop position seen at this
7004 if (BIDI_AT_BASE_LEVEL (it
->bidi_it
))
7005 it
->base_level_stop
= it
->stop_charpos
;
7009 /* Since a handler may have changed IT->method, we must
7011 return GET_NEXT_DISPLAY_ELEMENT (it
);
7015 /* If we are before prev_stop, we may have overstepped
7016 on our way backwards a stop_pos, and if so, we need
7017 to handle that stop_pos. */
7018 && IT_STRING_CHARPOS (*it
) < it
->prev_stop
7019 /* We can sometimes back up for reasons that have nothing
7020 to do with bidi reordering. E.g., compositions. The
7021 code below is only needed when we are above the base
7022 embedding level, so test for that explicitly. */
7023 && !BIDI_AT_BASE_LEVEL (it
->bidi_it
))
7025 /* If we lost track of base_level_stop, we have no better place
7026 for handle_stop_backwards to start from than BEGV. This
7027 happens, e.g., when we were reseated to the previous
7028 screenful of text by vertical-motion. */
7029 if (it
->base_level_stop
<= 0
7030 || IT_STRING_CHARPOS (*it
) < it
->base_level_stop
)
7031 it
->base_level_stop
= 0;
7032 handle_stop_backwards (it
, it
->base_level_stop
);
7033 return GET_NEXT_DISPLAY_ELEMENT (it
);
7037 if (it
->current
.overlay_string_index
>= 0)
7039 /* Get the next character from an overlay string. In overlay
7040 strings, There is no field width or padding with spaces to
7042 if (IT_STRING_CHARPOS (*it
) >= SCHARS (it
->string
))
7047 else if (CHAR_COMPOSED_P (it
, IT_STRING_CHARPOS (*it
),
7048 IT_STRING_BYTEPOS (*it
),
7049 it
->bidi_it
.scan_dir
< 0
7051 : SCHARS (it
->string
))
7052 && next_element_from_composition (it
))
7056 else if (STRING_MULTIBYTE (it
->string
))
7058 const unsigned char *s
= (SDATA (it
->string
)
7059 + IT_STRING_BYTEPOS (*it
));
7060 it
->c
= string_char_and_length (s
, &it
->len
);
7064 it
->c
= SREF (it
->string
, IT_STRING_BYTEPOS (*it
));
7070 /* Get the next character from a Lisp string that is not an
7071 overlay string. Such strings come from the mode line, for
7072 example. We may have to pad with spaces, or truncate the
7073 string. See also next_element_from_c_string. */
7074 if (IT_STRING_CHARPOS (*it
) >= it
->end_charpos
)
7079 else if (IT_STRING_CHARPOS (*it
) >= it
->string_nchars
)
7081 /* Pad with spaces. */
7082 it
->c
= ' ', it
->len
= 1;
7083 CHARPOS (position
) = BYTEPOS (position
) = -1;
7085 else if (CHAR_COMPOSED_P (it
, IT_STRING_CHARPOS (*it
),
7086 IT_STRING_BYTEPOS (*it
),
7087 it
->bidi_it
.scan_dir
< 0
7089 : it
->string_nchars
)
7090 && next_element_from_composition (it
))
7094 else if (STRING_MULTIBYTE (it
->string
))
7096 const unsigned char *s
= (SDATA (it
->string
)
7097 + IT_STRING_BYTEPOS (*it
));
7098 it
->c
= string_char_and_length (s
, &it
->len
);
7102 it
->c
= SREF (it
->string
, IT_STRING_BYTEPOS (*it
));
7107 /* Record what we have and where it came from. */
7108 it
->what
= IT_CHARACTER
;
7109 it
->object
= it
->string
;
7110 it
->position
= position
;
7115 /* Load IT with next display element from C string IT->s.
7116 IT->string_nchars is the maximum number of characters to return
7117 from the string. IT->end_charpos may be greater than
7118 IT->string_nchars when this function is called, in which case we
7119 may have to return padding spaces. Value is zero if end of string
7120 reached, including padding spaces. */
7123 next_element_from_c_string (struct it
*it
)
7128 xassert (!it
->bidi_p
|| it
->s
== it
->bidi_it
.string
.s
);
7129 it
->what
= IT_CHARACTER
;
7130 BYTEPOS (it
->position
) = CHARPOS (it
->position
) = 0;
7133 /* With bidi reordering, the character to display might not be the
7134 character at IT_CHARPOS. BIDI_IT.FIRST_ELT non-zero means that
7135 we were reseated to a new string, whose paragraph direction is
7137 if (it
->bidi_p
&& it
->bidi_it
.first_elt
)
7138 get_visually_first_element (it
);
7140 /* IT's position can be greater than IT->string_nchars in case a
7141 field width or precision has been specified when the iterator was
7143 if (IT_CHARPOS (*it
) >= it
->end_charpos
)
7145 /* End of the game. */
7149 else if (IT_CHARPOS (*it
) >= it
->string_nchars
)
7151 /* Pad with spaces. */
7152 it
->c
= ' ', it
->len
= 1;
7153 BYTEPOS (it
->position
) = CHARPOS (it
->position
) = -1;
7155 else if (it
->multibyte_p
)
7156 it
->c
= string_char_and_length (it
->s
+ IT_BYTEPOS (*it
), &it
->len
);
7158 it
->c
= it
->s
[IT_BYTEPOS (*it
)], it
->len
= 1;
7164 /* Set up IT to return characters from an ellipsis, if appropriate.
7165 The definition of the ellipsis glyphs may come from a display table
7166 entry. This function fills IT with the first glyph from the
7167 ellipsis if an ellipsis is to be displayed. */
7170 next_element_from_ellipsis (struct it
*it
)
7172 if (it
->selective_display_ellipsis_p
)
7173 setup_for_ellipsis (it
, it
->len
);
7176 /* The face at the current position may be different from the
7177 face we find after the invisible text. Remember what it
7178 was in IT->saved_face_id, and signal that it's there by
7179 setting face_before_selective_p. */
7180 it
->saved_face_id
= it
->face_id
;
7181 it
->method
= GET_FROM_BUFFER
;
7182 it
->object
= it
->w
->buffer
;
7183 reseat_at_next_visible_line_start (it
, 1);
7184 it
->face_before_selective_p
= 1;
7187 return GET_NEXT_DISPLAY_ELEMENT (it
);
7191 /* Deliver an image display element. The iterator IT is already
7192 filled with image information (done in handle_display_prop). Value
7197 next_element_from_image (struct it
*it
)
7199 it
->what
= IT_IMAGE
;
7200 it
->ignore_overlay_strings_at_pos_p
= 0;
7205 /* Fill iterator IT with next display element from a stretch glyph
7206 property. IT->object is the value of the text property. Value is
7210 next_element_from_stretch (struct it
*it
)
7212 it
->what
= IT_STRETCH
;
7216 /* Scan forward from CHARPOS in the current buffer/string, until we
7217 find a stop position > current IT's position. Then handle the stop
7218 position before that. This is called when we bump into a stop
7219 position while reordering bidirectional text. CHARPOS should be
7220 the last previously processed stop_pos (or BEGV/0, if none were
7221 processed yet) whose position is less that IT's current
7225 handle_stop_backwards (struct it
*it
, EMACS_INT charpos
)
7227 int bufp
= !STRINGP (it
->string
);
7228 EMACS_INT where_we_are
= (bufp
? IT_CHARPOS (*it
) : IT_STRING_CHARPOS (*it
));
7229 struct display_pos save_current
= it
->current
;
7230 struct text_pos save_position
= it
->position
;
7231 struct text_pos pos1
;
7232 EMACS_INT next_stop
;
7234 /* Scan in strict logical order. */
7238 it
->prev_stop
= charpos
;
7241 SET_TEXT_POS (pos1
, charpos
, CHAR_TO_BYTE (charpos
));
7242 reseat_1 (it
, pos1
, 0);
7245 it
->current
.string_pos
= string_pos (charpos
, it
->string
);
7246 compute_stop_pos (it
);
7247 /* We must advance forward, right? */
7248 if (it
->stop_charpos
<= it
->prev_stop
)
7250 charpos
= it
->stop_charpos
;
7252 while (charpos
<= where_we_are
);
7254 next_stop
= it
->stop_charpos
;
7255 it
->stop_charpos
= it
->prev_stop
;
7257 it
->current
= save_current
;
7258 it
->position
= save_position
;
7260 it
->stop_charpos
= next_stop
;
7263 /* Load IT with the next display element from current_buffer. Value
7264 is zero if end of buffer reached. IT->stop_charpos is the next
7265 position at which to stop and check for text properties or buffer
7269 next_element_from_buffer (struct it
*it
)
7273 xassert (IT_CHARPOS (*it
) >= BEGV
);
7274 xassert (NILP (it
->string
) && !it
->s
);
7275 xassert (!it
->bidi_p
7276 || (it
->bidi_it
.string
.lstring
== Qnil
7277 && it
->bidi_it
.string
.s
== NULL
));
7279 /* With bidi reordering, the character to display might not be the
7280 character at IT_CHARPOS. BIDI_IT.FIRST_ELT non-zero means that
7281 we were reseat()ed to a new buffer position, which is potentially
7282 a different paragraph. */
7283 if (it
->bidi_p
&& it
->bidi_it
.first_elt
)
7285 get_visually_first_element (it
);
7286 SET_TEXT_POS (it
->position
, IT_CHARPOS (*it
), IT_BYTEPOS (*it
));
7289 if (IT_CHARPOS (*it
) >= it
->stop_charpos
)
7291 if (IT_CHARPOS (*it
) >= it
->end_charpos
)
7293 int overlay_strings_follow_p
;
7295 /* End of the game, except when overlay strings follow that
7296 haven't been returned yet. */
7297 if (it
->overlay_strings_at_end_processed_p
)
7298 overlay_strings_follow_p
= 0;
7301 it
->overlay_strings_at_end_processed_p
= 1;
7302 overlay_strings_follow_p
= get_overlay_strings (it
, 0);
7305 if (overlay_strings_follow_p
)
7306 success_p
= GET_NEXT_DISPLAY_ELEMENT (it
);
7310 it
->position
= it
->current
.pos
;
7314 else if (!(!it
->bidi_p
7315 || BIDI_AT_BASE_LEVEL (it
->bidi_it
)
7316 || IT_CHARPOS (*it
) == it
->stop_charpos
))
7318 /* With bidi non-linear iteration, we could find ourselves
7319 far beyond the last computed stop_charpos, with several
7320 other stop positions in between that we missed. Scan
7321 them all now, in buffer's logical order, until we find
7322 and handle the last stop_charpos that precedes our
7323 current position. */
7324 handle_stop_backwards (it
, it
->stop_charpos
);
7325 return GET_NEXT_DISPLAY_ELEMENT (it
);
7331 /* Take note of the stop position we just moved across,
7332 for when we will move back across it. */
7333 it
->prev_stop
= it
->stop_charpos
;
7334 /* If we are at base paragraph embedding level, take
7335 note of the last stop position seen at this
7337 if (BIDI_AT_BASE_LEVEL (it
->bidi_it
))
7338 it
->base_level_stop
= it
->stop_charpos
;
7341 return GET_NEXT_DISPLAY_ELEMENT (it
);
7345 /* If we are before prev_stop, we may have overstepped on
7346 our way backwards a stop_pos, and if so, we need to
7347 handle that stop_pos. */
7348 && IT_CHARPOS (*it
) < it
->prev_stop
7349 /* We can sometimes back up for reasons that have nothing
7350 to do with bidi reordering. E.g., compositions. The
7351 code below is only needed when we are above the base
7352 embedding level, so test for that explicitly. */
7353 && !BIDI_AT_BASE_LEVEL (it
->bidi_it
))
7355 /* If we lost track of base_level_stop, we have no better place
7356 for handle_stop_backwards to start from than BEGV. This
7357 happens, e.g., when we were reseated to the previous
7358 screenful of text by vertical-motion. */
7359 if (it
->base_level_stop
<= 0
7360 || IT_CHARPOS (*it
) < it
->base_level_stop
)
7361 it
->base_level_stop
= BEGV
;
7362 handle_stop_backwards (it
, it
->base_level_stop
);
7363 return GET_NEXT_DISPLAY_ELEMENT (it
);
7367 /* No face changes, overlays etc. in sight, so just return a
7368 character from current_buffer. */
7372 /* Maybe run the redisplay end trigger hook. Performance note:
7373 This doesn't seem to cost measurable time. */
7374 if (it
->redisplay_end_trigger_charpos
7376 && IT_CHARPOS (*it
) >= it
->redisplay_end_trigger_charpos
)
7377 run_redisplay_end_trigger_hook (it
);
7379 stop
= it
->bidi_it
.scan_dir
< 0 ? -1 : it
->end_charpos
;
7380 if (CHAR_COMPOSED_P (it
, IT_CHARPOS (*it
), IT_BYTEPOS (*it
),
7382 && next_element_from_composition (it
))
7387 /* Get the next character, maybe multibyte. */
7388 p
= BYTE_POS_ADDR (IT_BYTEPOS (*it
));
7389 if (it
->multibyte_p
&& !ASCII_BYTE_P (*p
))
7390 it
->c
= STRING_CHAR_AND_LENGTH (p
, it
->len
);
7392 it
->c
= *p
, it
->len
= 1;
7394 /* Record what we have and where it came from. */
7395 it
->what
= IT_CHARACTER
;
7396 it
->object
= it
->w
->buffer
;
7397 it
->position
= it
->current
.pos
;
7399 /* Normally we return the character found above, except when we
7400 really want to return an ellipsis for selective display. */
7405 /* A value of selective > 0 means hide lines indented more
7406 than that number of columns. */
7407 if (it
->selective
> 0
7408 && IT_CHARPOS (*it
) + 1 < ZV
7409 && indented_beyond_p (IT_CHARPOS (*it
) + 1,
7410 IT_BYTEPOS (*it
) + 1,
7411 (double) it
->selective
)) /* iftc */
7413 success_p
= next_element_from_ellipsis (it
);
7414 it
->dpvec_char_len
= -1;
7417 else if (it
->c
== '\r' && it
->selective
== -1)
7419 /* A value of selective == -1 means that everything from the
7420 CR to the end of the line is invisible, with maybe an
7421 ellipsis displayed for it. */
7422 success_p
= next_element_from_ellipsis (it
);
7423 it
->dpvec_char_len
= -1;
7428 /* Value is zero if end of buffer reached. */
7429 xassert (!success_p
|| it
->what
!= IT_CHARACTER
|| it
->len
> 0);
7434 /* Run the redisplay end trigger hook for IT. */
7437 run_redisplay_end_trigger_hook (struct it
*it
)
7439 Lisp_Object args
[3];
7441 /* IT->glyph_row should be non-null, i.e. we should be actually
7442 displaying something, or otherwise we should not run the hook. */
7443 xassert (it
->glyph_row
);
7445 /* Set up hook arguments. */
7446 args
[0] = Qredisplay_end_trigger_functions
;
7447 args
[1] = it
->window
;
7448 XSETINT (args
[2], it
->redisplay_end_trigger_charpos
);
7449 it
->redisplay_end_trigger_charpos
= 0;
7451 /* Since we are *trying* to run these functions, don't try to run
7452 them again, even if they get an error. */
7453 it
->w
->redisplay_end_trigger
= Qnil
;
7454 Frun_hook_with_args (3, args
);
7456 /* Notice if it changed the face of the character we are on. */
7457 handle_face_prop (it
);
7461 /* Deliver a composition display element. Unlike the other
7462 next_element_from_XXX, this function is not registered in the array
7463 get_next_element[]. It is called from next_element_from_buffer and
7464 next_element_from_string when necessary. */
7467 next_element_from_composition (struct it
*it
)
7469 it
->what
= IT_COMPOSITION
;
7470 it
->len
= it
->cmp_it
.nbytes
;
7471 if (STRINGP (it
->string
))
7475 IT_STRING_CHARPOS (*it
) += it
->cmp_it
.nchars
;
7476 IT_STRING_BYTEPOS (*it
) += it
->cmp_it
.nbytes
;
7479 it
->position
= it
->current
.string_pos
;
7480 it
->object
= it
->string
;
7481 it
->c
= composition_update_it (&it
->cmp_it
, IT_STRING_CHARPOS (*it
),
7482 IT_STRING_BYTEPOS (*it
), it
->string
);
7488 IT_CHARPOS (*it
) += it
->cmp_it
.nchars
;
7489 IT_BYTEPOS (*it
) += it
->cmp_it
.nbytes
;
7492 if (it
->bidi_it
.new_paragraph
)
7493 bidi_paragraph_init (it
->paragraph_embedding
, &it
->bidi_it
, 0);
7494 /* Resync the bidi iterator with IT's new position.
7495 FIXME: this doesn't support bidirectional text. */
7496 while (it
->bidi_it
.charpos
< IT_CHARPOS (*it
))
7497 bidi_move_to_visually_next (&it
->bidi_it
);
7501 it
->position
= it
->current
.pos
;
7502 it
->object
= it
->w
->buffer
;
7503 it
->c
= composition_update_it (&it
->cmp_it
, IT_CHARPOS (*it
),
7504 IT_BYTEPOS (*it
), Qnil
);
7511 /***********************************************************************
7512 Moving an iterator without producing glyphs
7513 ***********************************************************************/
7515 /* Check if iterator is at a position corresponding to a valid buffer
7516 position after some move_it_ call. */
7518 #define IT_POS_VALID_AFTER_MOVE_P(it) \
7519 ((it)->method == GET_FROM_STRING \
7520 ? IT_STRING_CHARPOS (*it) == 0 \
7524 /* Move iterator IT to a specified buffer or X position within one
7525 line on the display without producing glyphs.
7527 OP should be a bit mask including some or all of these bits:
7528 MOVE_TO_X: Stop upon reaching x-position TO_X.
7529 MOVE_TO_POS: Stop upon reaching buffer or string position TO_CHARPOS.
7530 Regardless of OP's value, stop upon reaching the end of the display line.
7532 TO_X is normally a value 0 <= TO_X <= IT->last_visible_x.
7533 This means, in particular, that TO_X includes window's horizontal
7536 The return value has several possible values that
7537 say what condition caused the scan to stop:
7539 MOVE_POS_MATCH_OR_ZV
7540 - when TO_POS or ZV was reached.
7543 -when TO_X was reached before TO_POS or ZV were reached.
7546 - when we reached the end of the display area and the line must
7550 - when we reached the end of the display area and the line is
7554 - when we stopped at a line end, i.e. a newline or a CR and selective
7557 static enum move_it_result
7558 move_it_in_display_line_to (struct it
*it
,
7559 EMACS_INT to_charpos
, int to_x
,
7560 enum move_operation_enum op
)
7562 enum move_it_result result
= MOVE_UNDEFINED
;
7563 struct glyph_row
*saved_glyph_row
;
7564 struct it wrap_it
, atpos_it
, atx_it
;
7565 void *wrap_data
= NULL
, *atpos_data
= NULL
, *atx_data
= NULL
;
7567 enum it_method prev_method
= it
->method
;
7568 EMACS_INT prev_pos
= IT_CHARPOS (*it
);
7569 int saw_smaller_pos
= prev_pos
< to_charpos
;
7571 /* Don't produce glyphs in produce_glyphs. */
7572 saved_glyph_row
= it
->glyph_row
;
7573 it
->glyph_row
= NULL
;
7575 /* Use wrap_it to save a copy of IT wherever a word wrap could
7576 occur. Use atpos_it to save a copy of IT at the desired buffer
7577 position, if found, so that we can scan ahead and check if the
7578 word later overshoots the window edge. Use atx_it similarly, for
7584 #define BUFFER_POS_REACHED_P() \
7585 ((op & MOVE_TO_POS) != 0 \
7586 && BUFFERP (it->object) \
7587 && (IT_CHARPOS (*it) == to_charpos \
7588 || (!it->bidi_p && IT_CHARPOS (*it) > to_charpos)) \
7589 && (it->method == GET_FROM_BUFFER \
7590 || (it->method == GET_FROM_DISPLAY_VECTOR \
7591 && it->dpvec + it->current.dpvec_index + 1 >= it->dpend)))
7593 /* If there's a line-/wrap-prefix, handle it. */
7594 if (it
->hpos
== 0 && it
->method
== GET_FROM_BUFFER
7595 && it
->current_y
< it
->last_visible_y
)
7596 handle_line_prefix (it
);
7598 if (IT_CHARPOS (*it
) < CHARPOS (this_line_min_pos
))
7599 SET_TEXT_POS (this_line_min_pos
, IT_CHARPOS (*it
), IT_BYTEPOS (*it
));
7603 int x
, i
, ascent
= 0, descent
= 0;
7605 /* Utility macro to reset an iterator with x, ascent, and descent. */
7606 #define IT_RESET_X_ASCENT_DESCENT(IT) \
7607 ((IT)->current_x = x, (IT)->max_ascent = ascent, \
7608 (IT)->max_descent = descent)
7610 /* Stop if we move beyond TO_CHARPOS (after an image or a
7611 display string or stretch glyph). */
7612 if ((op
& MOVE_TO_POS
) != 0
7613 && BUFFERP (it
->object
)
7614 && it
->method
== GET_FROM_BUFFER
7615 && ((!it
->bidi_p
&& IT_CHARPOS (*it
) > to_charpos
)
7617 && (prev_method
== GET_FROM_IMAGE
7618 || prev_method
== GET_FROM_STRETCH
7619 || prev_method
== GET_FROM_STRING
)
7620 /* Passed TO_CHARPOS from left to right. */
7621 && ((prev_pos
< to_charpos
7622 && IT_CHARPOS (*it
) > to_charpos
)
7623 /* Passed TO_CHARPOS from right to left. */
7624 || (prev_pos
> to_charpos
7625 && IT_CHARPOS (*it
) < to_charpos
)))))
7627 if (it
->line_wrap
!= WORD_WRAP
|| wrap_it
.sp
< 0)
7629 result
= MOVE_POS_MATCH_OR_ZV
;
7632 else if (it
->line_wrap
== WORD_WRAP
&& atpos_it
.sp
< 0)
7633 /* If wrap_it is valid, the current position might be in a
7634 word that is wrapped. So, save the iterator in
7635 atpos_it and continue to see if wrapping happens. */
7636 SAVE_IT (atpos_it
, *it
, atpos_data
);
7639 /* Stop when ZV reached.
7640 We used to stop here when TO_CHARPOS reached as well, but that is
7641 too soon if this glyph does not fit on this line. So we handle it
7642 explicitly below. */
7643 if (!get_next_display_element (it
))
7645 result
= MOVE_POS_MATCH_OR_ZV
;
7649 if (it
->line_wrap
== TRUNCATE
)
7651 if (BUFFER_POS_REACHED_P ())
7653 result
= MOVE_POS_MATCH_OR_ZV
;
7659 if (it
->line_wrap
== WORD_WRAP
)
7661 if (IT_DISPLAYING_WHITESPACE (it
))
7665 /* We have reached a glyph that follows one or more
7666 whitespace characters. If the position is
7667 already found, we are done. */
7668 if (atpos_it
.sp
>= 0)
7670 RESTORE_IT (it
, &atpos_it
, atpos_data
);
7671 result
= MOVE_POS_MATCH_OR_ZV
;
7676 RESTORE_IT (it
, &atx_it
, atx_data
);
7677 result
= MOVE_X_REACHED
;
7680 /* Otherwise, we can wrap here. */
7681 SAVE_IT (wrap_it
, *it
, wrap_data
);
7687 /* Remember the line height for the current line, in case
7688 the next element doesn't fit on the line. */
7689 ascent
= it
->max_ascent
;
7690 descent
= it
->max_descent
;
7692 /* The call to produce_glyphs will get the metrics of the
7693 display element IT is loaded with. Record the x-position
7694 before this display element, in case it doesn't fit on the
7698 PRODUCE_GLYPHS (it
);
7700 if (it
->area
!= TEXT_AREA
)
7702 prev_method
= it
->method
;
7703 if (it
->method
== GET_FROM_BUFFER
)
7704 prev_pos
= IT_CHARPOS (*it
);
7705 set_iterator_to_next (it
, 1);
7706 if (IT_CHARPOS (*it
) < CHARPOS (this_line_min_pos
))
7707 SET_TEXT_POS (this_line_min_pos
,
7708 IT_CHARPOS (*it
), IT_BYTEPOS (*it
));
7712 /* The number of glyphs we get back in IT->nglyphs will normally
7713 be 1 except when IT->c is (i) a TAB, or (ii) a multi-glyph
7714 character on a terminal frame, or (iii) a line end. For the
7715 second case, IT->nglyphs - 1 padding glyphs will be present.
7716 (On X frames, there is only one glyph produced for a
7717 composite character.)
7719 The behavior implemented below means, for continuation lines,
7720 that as many spaces of a TAB as fit on the current line are
7721 displayed there. For terminal frames, as many glyphs of a
7722 multi-glyph character are displayed in the current line, too.
7723 This is what the old redisplay code did, and we keep it that
7724 way. Under X, the whole shape of a complex character must
7725 fit on the line or it will be completely displayed in the
7728 Note that both for tabs and padding glyphs, all glyphs have
7732 /* More than one glyph or glyph doesn't fit on line. All
7733 glyphs have the same width. */
7734 int single_glyph_width
= it
->pixel_width
/ it
->nglyphs
;
7736 int x_before_this_char
= x
;
7737 int hpos_before_this_char
= it
->hpos
;
7739 for (i
= 0; i
< it
->nglyphs
; ++i
, x
= new_x
)
7741 new_x
= x
+ single_glyph_width
;
7743 /* We want to leave anything reaching TO_X to the caller. */
7744 if ((op
& MOVE_TO_X
) && new_x
> to_x
)
7746 if (BUFFER_POS_REACHED_P ())
7748 if (it
->line_wrap
!= WORD_WRAP
|| wrap_it
.sp
< 0)
7749 goto buffer_pos_reached
;
7750 if (atpos_it
.sp
< 0)
7752 SAVE_IT (atpos_it
, *it
, atpos_data
);
7753 IT_RESET_X_ASCENT_DESCENT (&atpos_it
);
7758 if (it
->line_wrap
!= WORD_WRAP
|| wrap_it
.sp
< 0)
7761 result
= MOVE_X_REACHED
;
7766 SAVE_IT (atx_it
, *it
, atx_data
);
7767 IT_RESET_X_ASCENT_DESCENT (&atx_it
);
7772 if (/* Lines are continued. */
7773 it
->line_wrap
!= TRUNCATE
7774 && (/* And glyph doesn't fit on the line. */
7775 new_x
> it
->last_visible_x
7776 /* Or it fits exactly and we're on a window
7778 || (new_x
== it
->last_visible_x
7779 && FRAME_WINDOW_P (it
->f
))))
7781 if (/* IT->hpos == 0 means the very first glyph
7782 doesn't fit on the line, e.g. a wide image. */
7784 || (new_x
== it
->last_visible_x
7785 && FRAME_WINDOW_P (it
->f
)))
7788 it
->current_x
= new_x
;
7790 /* The character's last glyph just barely fits
7792 if (i
== it
->nglyphs
- 1)
7794 /* If this is the destination position,
7795 return a position *before* it in this row,
7796 now that we know it fits in this row. */
7797 if (BUFFER_POS_REACHED_P ())
7799 if (it
->line_wrap
!= WORD_WRAP
7802 it
->hpos
= hpos_before_this_char
;
7803 it
->current_x
= x_before_this_char
;
7804 result
= MOVE_POS_MATCH_OR_ZV
;
7807 if (it
->line_wrap
== WORD_WRAP
7810 SAVE_IT (atpos_it
, *it
, atpos_data
);
7811 atpos_it
.current_x
= x_before_this_char
;
7812 atpos_it
.hpos
= hpos_before_this_char
;
7816 prev_method
= it
->method
;
7817 if (it
->method
== GET_FROM_BUFFER
)
7818 prev_pos
= IT_CHARPOS (*it
);
7819 set_iterator_to_next (it
, 1);
7820 if (IT_CHARPOS (*it
) < CHARPOS (this_line_min_pos
))
7821 SET_TEXT_POS (this_line_min_pos
,
7822 IT_CHARPOS (*it
), IT_BYTEPOS (*it
));
7823 /* On graphical terminals, newlines may
7824 "overflow" into the fringe if
7825 overflow-newline-into-fringe is non-nil.
7826 On text-only terminals, newlines may
7827 overflow into the last glyph on the
7829 if (!FRAME_WINDOW_P (it
->f
)
7830 || IT_OVERFLOW_NEWLINE_INTO_FRINGE (it
))
7832 if (!get_next_display_element (it
))
7834 result
= MOVE_POS_MATCH_OR_ZV
;
7837 if (BUFFER_POS_REACHED_P ())
7839 if (ITERATOR_AT_END_OF_LINE_P (it
))
7840 result
= MOVE_POS_MATCH_OR_ZV
;
7842 result
= MOVE_LINE_CONTINUED
;
7845 if (ITERATOR_AT_END_OF_LINE_P (it
))
7847 result
= MOVE_NEWLINE_OR_CR
;
7854 IT_RESET_X_ASCENT_DESCENT (it
);
7856 if (wrap_it
.sp
>= 0)
7858 RESTORE_IT (it
, &wrap_it
, wrap_data
);
7863 TRACE_MOVE ((stderr
, "move_it_in: continued at %d\n",
7865 result
= MOVE_LINE_CONTINUED
;
7869 if (BUFFER_POS_REACHED_P ())
7871 if (it
->line_wrap
!= WORD_WRAP
|| wrap_it
.sp
< 0)
7872 goto buffer_pos_reached
;
7873 if (it
->line_wrap
== WORD_WRAP
&& atpos_it
.sp
< 0)
7875 SAVE_IT (atpos_it
, *it
, atpos_data
);
7876 IT_RESET_X_ASCENT_DESCENT (&atpos_it
);
7880 if (new_x
> it
->first_visible_x
)
7882 /* Glyph is visible. Increment number of glyphs that
7883 would be displayed. */
7888 if (result
!= MOVE_UNDEFINED
)
7891 else if (BUFFER_POS_REACHED_P ())
7894 IT_RESET_X_ASCENT_DESCENT (it
);
7895 result
= MOVE_POS_MATCH_OR_ZV
;
7898 else if ((op
& MOVE_TO_X
) && it
->current_x
>= to_x
)
7900 /* Stop when TO_X specified and reached. This check is
7901 necessary here because of lines consisting of a line end,
7902 only. The line end will not produce any glyphs and we
7903 would never get MOVE_X_REACHED. */
7904 xassert (it
->nglyphs
== 0);
7905 result
= MOVE_X_REACHED
;
7909 /* Is this a line end? If yes, we're done. */
7910 if (ITERATOR_AT_END_OF_LINE_P (it
))
7912 /* If we are past TO_CHARPOS, but never saw any character
7913 positions smaller than TO_CHARPOS, return
7914 MOVE_POS_MATCH_OR_ZV, like the unidirectional display
7916 if ((op
& MOVE_TO_POS
) != 0
7918 && IT_CHARPOS (*it
) > to_charpos
)
7919 result
= MOVE_POS_MATCH_OR_ZV
;
7921 result
= MOVE_NEWLINE_OR_CR
;
7925 prev_method
= it
->method
;
7926 if (it
->method
== GET_FROM_BUFFER
)
7927 prev_pos
= IT_CHARPOS (*it
);
7928 /* The current display element has been consumed. Advance
7930 set_iterator_to_next (it
, 1);
7931 if (IT_CHARPOS (*it
) < CHARPOS (this_line_min_pos
))
7932 SET_TEXT_POS (this_line_min_pos
, IT_CHARPOS (*it
), IT_BYTEPOS (*it
));
7933 if (IT_CHARPOS (*it
) < to_charpos
)
7934 saw_smaller_pos
= 1;
7936 /* Stop if lines are truncated and IT's current x-position is
7937 past the right edge of the window now. */
7938 if (it
->line_wrap
== TRUNCATE
7939 && it
->current_x
>= it
->last_visible_x
)
7941 if (!FRAME_WINDOW_P (it
->f
)
7942 || IT_OVERFLOW_NEWLINE_INTO_FRINGE (it
))
7944 if (!get_next_display_element (it
)
7945 || BUFFER_POS_REACHED_P ())
7947 result
= MOVE_POS_MATCH_OR_ZV
;
7950 if (ITERATOR_AT_END_OF_LINE_P (it
))
7952 result
= MOVE_NEWLINE_OR_CR
;
7956 result
= MOVE_LINE_TRUNCATED
;
7959 #undef IT_RESET_X_ASCENT_DESCENT
7962 #undef BUFFER_POS_REACHED_P
7964 /* If we scanned beyond to_pos and didn't find a point to wrap at,
7965 restore the saved iterator. */
7966 if (atpos_it
.sp
>= 0)
7967 RESTORE_IT (it
, &atpos_it
, atpos_data
);
7968 else if (atx_it
.sp
>= 0)
7969 RESTORE_IT (it
, &atx_it
, atx_data
);
7980 /* Restore the iterator settings altered at the beginning of this
7982 it
->glyph_row
= saved_glyph_row
;
7986 /* For external use. */
7988 move_it_in_display_line (struct it
*it
,
7989 EMACS_INT to_charpos
, int to_x
,
7990 enum move_operation_enum op
)
7992 if (it
->line_wrap
== WORD_WRAP
7993 && (op
& MOVE_TO_X
))
7996 void *save_data
= NULL
;
7999 SAVE_IT (save_it
, *it
, save_data
);
8000 skip
= move_it_in_display_line_to (it
, to_charpos
, to_x
, op
);
8001 /* When word-wrap is on, TO_X may lie past the end
8002 of a wrapped line. Then it->current is the
8003 character on the next line, so backtrack to the
8004 space before the wrap point. */
8005 if (skip
== MOVE_LINE_CONTINUED
)
8007 int prev_x
= max (it
->current_x
- 1, 0);
8008 RESTORE_IT (it
, &save_it
, save_data
);
8009 move_it_in_display_line_to
8010 (it
, -1, prev_x
, MOVE_TO_X
);
8016 move_it_in_display_line_to (it
, to_charpos
, to_x
, op
);
8020 /* Move IT forward until it satisfies one or more of the criteria in
8021 TO_CHARPOS, TO_X, TO_Y, and TO_VPOS.
8023 OP is a bit-mask that specifies where to stop, and in particular,
8024 which of those four position arguments makes a difference. See the
8025 description of enum move_operation_enum.
8027 If TO_CHARPOS is in invisible text, e.g. a truncated part of a
8028 screen line, this function will set IT to the next position that is
8029 displayed to the right of TO_CHARPOS on the screen. */
8032 move_it_to (struct it
*it
, EMACS_INT to_charpos
, int to_x
, int to_y
, int to_vpos
, int op
)
8034 enum move_it_result skip
, skip2
= MOVE_X_REACHED
;
8035 int line_height
, line_start_x
= 0, reached
= 0;
8036 void *backup_data
= NULL
;
8040 if (op
& MOVE_TO_VPOS
)
8042 /* If no TO_CHARPOS and no TO_X specified, stop at the
8043 start of the line TO_VPOS. */
8044 if ((op
& (MOVE_TO_X
| MOVE_TO_POS
)) == 0)
8046 if (it
->vpos
== to_vpos
)
8052 skip
= move_it_in_display_line_to (it
, -1, -1, 0);
8056 /* TO_VPOS >= 0 means stop at TO_X in the line at
8057 TO_VPOS, or at TO_POS, whichever comes first. */
8058 if (it
->vpos
== to_vpos
)
8064 skip
= move_it_in_display_line_to (it
, to_charpos
, to_x
, op
);
8066 if (skip
== MOVE_POS_MATCH_OR_ZV
|| it
->vpos
== to_vpos
)
8071 else if (skip
== MOVE_X_REACHED
&& it
->vpos
!= to_vpos
)
8073 /* We have reached TO_X but not in the line we want. */
8074 skip
= move_it_in_display_line_to (it
, to_charpos
,
8076 if (skip
== MOVE_POS_MATCH_OR_ZV
)
8084 else if (op
& MOVE_TO_Y
)
8086 struct it it_backup
;
8088 if (it
->line_wrap
== WORD_WRAP
)
8089 SAVE_IT (it_backup
, *it
, backup_data
);
8091 /* TO_Y specified means stop at TO_X in the line containing
8092 TO_Y---or at TO_CHARPOS if this is reached first. The
8093 problem is that we can't really tell whether the line
8094 contains TO_Y before we have completely scanned it, and
8095 this may skip past TO_X. What we do is to first scan to
8098 If TO_X is not specified, use a TO_X of zero. The reason
8099 is to make the outcome of this function more predictable.
8100 If we didn't use TO_X == 0, we would stop at the end of
8101 the line which is probably not what a caller would expect
8103 skip
= move_it_in_display_line_to
8104 (it
, to_charpos
, ((op
& MOVE_TO_X
) ? to_x
: 0),
8105 (MOVE_TO_X
| (op
& MOVE_TO_POS
)));
8107 /* If TO_CHARPOS is reached or ZV, we don't have to do more. */
8108 if (skip
== MOVE_POS_MATCH_OR_ZV
)
8110 else if (skip
== MOVE_X_REACHED
)
8112 /* If TO_X was reached, we want to know whether TO_Y is
8113 in the line. We know this is the case if the already
8114 scanned glyphs make the line tall enough. Otherwise,
8115 we must check by scanning the rest of the line. */
8116 line_height
= it
->max_ascent
+ it
->max_descent
;
8117 if (to_y
>= it
->current_y
8118 && to_y
< it
->current_y
+ line_height
)
8123 SAVE_IT (it_backup
, *it
, backup_data
);
8124 TRACE_MOVE ((stderr
, "move_it: from %d\n", IT_CHARPOS (*it
)));
8125 skip2
= move_it_in_display_line_to (it
, to_charpos
, -1,
8127 TRACE_MOVE ((stderr
, "move_it: to %d\n", IT_CHARPOS (*it
)));
8128 line_height
= it
->max_ascent
+ it
->max_descent
;
8129 TRACE_MOVE ((stderr
, "move_it: line_height = %d\n", line_height
));
8131 if (to_y
>= it
->current_y
8132 && to_y
< it
->current_y
+ line_height
)
8134 /* If TO_Y is in this line and TO_X was reached
8135 above, we scanned too far. We have to restore
8136 IT's settings to the ones before skipping. */
8137 RESTORE_IT (it
, &it_backup
, backup_data
);
8143 if (skip
== MOVE_POS_MATCH_OR_ZV
)
8149 /* Check whether TO_Y is in this line. */
8150 line_height
= it
->max_ascent
+ it
->max_descent
;
8151 TRACE_MOVE ((stderr
, "move_it: line_height = %d\n", line_height
));
8153 if (to_y
>= it
->current_y
8154 && to_y
< it
->current_y
+ line_height
)
8156 /* When word-wrap is on, TO_X may lie past the end
8157 of a wrapped line. Then it->current is the
8158 character on the next line, so backtrack to the
8159 space before the wrap point. */
8160 if (skip
== MOVE_LINE_CONTINUED
8161 && it
->line_wrap
== WORD_WRAP
)
8163 int prev_x
= max (it
->current_x
- 1, 0);
8164 RESTORE_IT (it
, &it_backup
, backup_data
);
8165 skip
= move_it_in_display_line_to
8166 (it
, -1, prev_x
, MOVE_TO_X
);
8175 else if (BUFFERP (it
->object
)
8176 && (it
->method
== GET_FROM_BUFFER
8177 || it
->method
== GET_FROM_STRETCH
)
8178 && IT_CHARPOS (*it
) >= to_charpos
)
8179 skip
= MOVE_POS_MATCH_OR_ZV
;
8181 skip
= move_it_in_display_line_to (it
, to_charpos
, -1, MOVE_TO_POS
);
8185 case MOVE_POS_MATCH_OR_ZV
:
8189 case MOVE_NEWLINE_OR_CR
:
8190 set_iterator_to_next (it
, 1);
8191 it
->continuation_lines_width
= 0;
8194 case MOVE_LINE_TRUNCATED
:
8195 it
->continuation_lines_width
= 0;
8196 reseat_at_next_visible_line_start (it
, 0);
8197 if ((op
& MOVE_TO_POS
) != 0
8198 && IT_CHARPOS (*it
) > to_charpos
)
8205 case MOVE_LINE_CONTINUED
:
8206 /* For continued lines ending in a tab, some of the glyphs
8207 associated with the tab are displayed on the current
8208 line. Since it->current_x does not include these glyphs,
8209 we use it->last_visible_x instead. */
8212 it
->continuation_lines_width
+= it
->last_visible_x
;
8213 /* When moving by vpos, ensure that the iterator really
8214 advances to the next line (bug#847, bug#969). Fixme:
8215 do we need to do this in other circumstances? */
8216 if (it
->current_x
!= it
->last_visible_x
8217 && (op
& MOVE_TO_VPOS
)
8218 && !(op
& (MOVE_TO_X
| MOVE_TO_POS
)))
8220 line_start_x
= it
->current_x
+ it
->pixel_width
8221 - it
->last_visible_x
;
8222 set_iterator_to_next (it
, 0);
8226 it
->continuation_lines_width
+= it
->current_x
;
8233 /* Reset/increment for the next run. */
8234 recenter_overlay_lists (current_buffer
, IT_CHARPOS (*it
));
8235 it
->current_x
= line_start_x
;
8238 it
->current_y
+= it
->max_ascent
+ it
->max_descent
;
8240 last_height
= it
->max_ascent
+ it
->max_descent
;
8241 last_max_ascent
= it
->max_ascent
;
8242 it
->max_ascent
= it
->max_descent
= 0;
8247 /* On text terminals, we may stop at the end of a line in the middle
8248 of a multi-character glyph. If the glyph itself is continued,
8249 i.e. it is actually displayed on the next line, don't treat this
8250 stopping point as valid; move to the next line instead (unless
8251 that brings us offscreen). */
8252 if (!FRAME_WINDOW_P (it
->f
)
8254 && IT_CHARPOS (*it
) == to_charpos
8255 && it
->what
== IT_CHARACTER
8257 && it
->line_wrap
== WINDOW_WRAP
8258 && it
->current_x
== it
->last_visible_x
- 1
8261 && it
->vpos
< XFASTINT (it
->w
->window_end_vpos
))
8263 it
->continuation_lines_width
+= it
->current_x
;
8264 it
->current_x
= it
->hpos
= it
->max_ascent
= it
->max_descent
= 0;
8265 it
->current_y
+= it
->max_ascent
+ it
->max_descent
;
8267 last_height
= it
->max_ascent
+ it
->max_descent
;
8268 last_max_ascent
= it
->max_ascent
;
8272 xfree (backup_data
);
8274 TRACE_MOVE ((stderr
, "move_it_to: reached %d\n", reached
));
8278 /* Move iterator IT backward by a specified y-distance DY, DY >= 0.
8280 If DY > 0, move IT backward at least that many pixels. DY = 0
8281 means move IT backward to the preceding line start or BEGV. This
8282 function may move over more than DY pixels if IT->current_y - DY
8283 ends up in the middle of a line; in this case IT->current_y will be
8284 set to the top of the line moved to. */
8287 move_it_vertically_backward (struct it
*it
, int dy
)
8291 void *it2data
= NULL
, *it3data
= NULL
;
8292 EMACS_INT start_pos
;
8297 start_pos
= IT_CHARPOS (*it
);
8299 /* Estimate how many newlines we must move back. */
8300 nlines
= max (1, dy
/ FRAME_LINE_HEIGHT (it
->f
));
8302 /* Set the iterator's position that many lines back. */
8303 while (nlines
-- && IT_CHARPOS (*it
) > BEGV
)
8304 back_to_previous_visible_line_start (it
);
8306 /* Reseat the iterator here. When moving backward, we don't want
8307 reseat to skip forward over invisible text, set up the iterator
8308 to deliver from overlay strings at the new position etc. So,
8309 use reseat_1 here. */
8310 reseat_1 (it
, it
->current
.pos
, 1);
8312 /* We are now surely at a line start. */
8313 it
->current_x
= it
->hpos
= 0;
8314 it
->continuation_lines_width
= 0;
8316 /* Move forward and see what y-distance we moved. First move to the
8317 start of the next line so that we get its height. We need this
8318 height to be able to tell whether we reached the specified
8320 SAVE_IT (it2
, *it
, it2data
);
8321 it2
.max_ascent
= it2
.max_descent
= 0;
8324 move_it_to (&it2
, start_pos
, -1, -1, it2
.vpos
+ 1,
8325 MOVE_TO_POS
| MOVE_TO_VPOS
);
8327 while (!IT_POS_VALID_AFTER_MOVE_P (&it2
));
8328 xassert (IT_CHARPOS (*it
) >= BEGV
);
8329 SAVE_IT (it3
, it2
, it3data
);
8331 move_it_to (&it2
, start_pos
, -1, -1, -1, MOVE_TO_POS
);
8332 xassert (IT_CHARPOS (*it
) >= BEGV
);
8333 /* H is the actual vertical distance from the position in *IT
8334 and the starting position. */
8335 h
= it2
.current_y
- it
->current_y
;
8336 /* NLINES is the distance in number of lines. */
8337 nlines
= it2
.vpos
- it
->vpos
;
8339 /* Correct IT's y and vpos position
8340 so that they are relative to the starting point. */
8346 /* DY == 0 means move to the start of the screen line. The
8347 value of nlines is > 0 if continuation lines were involved. */
8348 RESTORE_IT (it
, it
, it2data
);
8350 move_it_by_lines (it
, nlines
);
8355 /* The y-position we try to reach, relative to *IT.
8356 Note that H has been subtracted in front of the if-statement. */
8357 int target_y
= it
->current_y
+ h
- dy
;
8358 int y0
= it3
.current_y
;
8362 RESTORE_IT (&it3
, &it3
, it3data
);
8363 y1
= line_bottom_y (&it3
);
8364 line_height
= y1
- y0
;
8365 RESTORE_IT (it
, it
, it2data
);
8366 /* If we did not reach target_y, try to move further backward if
8367 we can. If we moved too far backward, try to move forward. */
8368 if (target_y
< it
->current_y
8369 /* This is heuristic. In a window that's 3 lines high, with
8370 a line height of 13 pixels each, recentering with point
8371 on the bottom line will try to move -39/2 = 19 pixels
8372 backward. Try to avoid moving into the first line. */
8373 && (it
->current_y
- target_y
8374 > min (window_box_height (it
->w
), line_height
* 2 / 3))
8375 && IT_CHARPOS (*it
) > BEGV
)
8377 TRACE_MOVE ((stderr
, " not far enough -> move_vert %d\n",
8378 target_y
- it
->current_y
));
8379 dy
= it
->current_y
- target_y
;
8380 goto move_further_back
;
8382 else if (target_y
>= it
->current_y
+ line_height
8383 && IT_CHARPOS (*it
) < ZV
)
8385 /* Should move forward by at least one line, maybe more.
8387 Note: Calling move_it_by_lines can be expensive on
8388 terminal frames, where compute_motion is used (via
8389 vmotion) to do the job, when there are very long lines
8390 and truncate-lines is nil. That's the reason for
8391 treating terminal frames specially here. */
8393 if (!FRAME_WINDOW_P (it
->f
))
8394 move_it_vertically (it
, target_y
- (it
->current_y
+ line_height
));
8399 move_it_by_lines (it
, 1);
8401 while (target_y
>= line_bottom_y (it
) && IT_CHARPOS (*it
) < ZV
);
8408 /* Move IT by a specified amount of pixel lines DY. DY negative means
8409 move backwards. DY = 0 means move to start of screen line. At the
8410 end, IT will be on the start of a screen line. */
8413 move_it_vertically (struct it
*it
, int dy
)
8416 move_it_vertically_backward (it
, -dy
);
8419 TRACE_MOVE ((stderr
, "move_it_v: from %d, %d\n", IT_CHARPOS (*it
), dy
));
8420 move_it_to (it
, ZV
, -1, it
->current_y
+ dy
, -1,
8421 MOVE_TO_POS
| MOVE_TO_Y
);
8422 TRACE_MOVE ((stderr
, "move_it_v: to %d\n", IT_CHARPOS (*it
)));
8424 /* If buffer ends in ZV without a newline, move to the start of
8425 the line to satisfy the post-condition. */
8426 if (IT_CHARPOS (*it
) == ZV
8428 && FETCH_BYTE (IT_BYTEPOS (*it
) - 1) != '\n')
8429 move_it_by_lines (it
, 0);
8434 /* Move iterator IT past the end of the text line it is in. */
8437 move_it_past_eol (struct it
*it
)
8439 enum move_it_result rc
;
8441 rc
= move_it_in_display_line_to (it
, Z
, 0, MOVE_TO_POS
);
8442 if (rc
== MOVE_NEWLINE_OR_CR
)
8443 set_iterator_to_next (it
, 0);
8447 /* Move IT by a specified number DVPOS of screen lines down. DVPOS
8448 negative means move up. DVPOS == 0 means move to the start of the
8451 Optimization idea: If we would know that IT->f doesn't use
8452 a face with proportional font, we could be faster for
8453 truncate-lines nil. */
8456 move_it_by_lines (struct it
*it
, int dvpos
)
8459 /* The commented-out optimization uses vmotion on terminals. This
8460 gives bad results, because elements like it->what, on which
8461 callers such as pos_visible_p rely, aren't updated. */
8462 /* struct position pos;
8463 if (!FRAME_WINDOW_P (it->f))
8465 struct text_pos textpos;
8467 pos = *vmotion (IT_CHARPOS (*it), dvpos, it->w);
8468 SET_TEXT_POS (textpos, pos.bufpos, pos.bytepos);
8469 reseat (it, textpos, 1);
8470 it->vpos += pos.vpos;
8471 it->current_y += pos.vpos;
8477 /* DVPOS == 0 means move to the start of the screen line. */
8478 move_it_vertically_backward (it
, 0);
8479 xassert (it
->current_x
== 0 && it
->hpos
== 0);
8480 /* Let next call to line_bottom_y calculate real line height */
8485 move_it_to (it
, -1, -1, -1, it
->vpos
+ dvpos
, MOVE_TO_VPOS
);
8486 if (!IT_POS_VALID_AFTER_MOVE_P (it
))
8487 move_it_to (it
, IT_CHARPOS (*it
) + 1, -1, -1, -1, MOVE_TO_POS
);
8492 void *it2data
= NULL
;
8493 EMACS_INT start_charpos
, i
;
8495 /* Start at the beginning of the screen line containing IT's
8496 position. This may actually move vertically backwards,
8497 in case of overlays, so adjust dvpos accordingly. */
8499 move_it_vertically_backward (it
, 0);
8502 /* Go back -DVPOS visible lines and reseat the iterator there. */
8503 start_charpos
= IT_CHARPOS (*it
);
8504 for (i
= -dvpos
; i
> 0 && IT_CHARPOS (*it
) > BEGV
; --i
)
8505 back_to_previous_visible_line_start (it
);
8506 reseat (it
, it
->current
.pos
, 1);
8508 /* Move further back if we end up in a string or an image. */
8509 while (!IT_POS_VALID_AFTER_MOVE_P (it
))
8511 /* First try to move to start of display line. */
8513 move_it_vertically_backward (it
, 0);
8515 if (IT_POS_VALID_AFTER_MOVE_P (it
))
8517 /* If start of line is still in string or image,
8518 move further back. */
8519 back_to_previous_visible_line_start (it
);
8520 reseat (it
, it
->current
.pos
, 1);
8524 it
->current_x
= it
->hpos
= 0;
8526 /* Above call may have moved too far if continuation lines
8527 are involved. Scan forward and see if it did. */
8528 SAVE_IT (it2
, *it
, it2data
);
8529 it2
.vpos
= it2
.current_y
= 0;
8530 move_it_to (&it2
, start_charpos
, -1, -1, -1, MOVE_TO_POS
);
8531 it
->vpos
-= it2
.vpos
;
8532 it
->current_y
-= it2
.current_y
;
8533 it
->current_x
= it
->hpos
= 0;
8535 /* If we moved too far back, move IT some lines forward. */
8536 if (it2
.vpos
> -dvpos
)
8538 int delta
= it2
.vpos
+ dvpos
;
8540 RESTORE_IT (&it2
, &it2
, it2data
);
8541 SAVE_IT (it2
, *it
, it2data
);
8542 move_it_to (it
, -1, -1, -1, it
->vpos
+ delta
, MOVE_TO_VPOS
);
8543 /* Move back again if we got too far ahead. */
8544 if (IT_CHARPOS (*it
) >= start_charpos
)
8545 RESTORE_IT (it
, &it2
, it2data
);
8550 RESTORE_IT (it
, it
, it2data
);
8554 /* Return 1 if IT points into the middle of a display vector. */
8557 in_display_vector_p (struct it
*it
)
8559 return (it
->method
== GET_FROM_DISPLAY_VECTOR
8560 && it
->current
.dpvec_index
> 0
8561 && it
->dpvec
+ it
->current
.dpvec_index
!= it
->dpend
);
8565 /***********************************************************************
8567 ***********************************************************************/
8570 /* Add a message with format string FORMAT and arguments ARG1 and ARG2
8574 add_to_log (const char *format
, Lisp_Object arg1
, Lisp_Object arg2
)
8576 Lisp_Object args
[3];
8577 Lisp_Object msg
, fmt
;
8580 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
8583 /* Do nothing if called asynchronously. Inserting text into
8584 a buffer may call after-change-functions and alike and
8585 that would means running Lisp asynchronously. */
8586 if (handling_signal
)
8590 GCPRO4 (fmt
, msg
, arg1
, arg2
);
8592 args
[0] = fmt
= build_string (format
);
8595 msg
= Fformat (3, args
);
8597 len
= SBYTES (msg
) + 1;
8598 SAFE_ALLOCA (buffer
, char *, len
);
8599 memcpy (buffer
, SDATA (msg
), len
);
8601 message_dolog (buffer
, len
- 1, 1, 0);
8608 /* Output a newline in the *Messages* buffer if "needs" one. */
8611 message_log_maybe_newline (void)
8613 if (message_log_need_newline
)
8614 message_dolog ("", 0, 1, 0);
8618 /* Add a string M of length NBYTES to the message log, optionally
8619 terminated with a newline when NLFLAG is non-zero. MULTIBYTE, if
8620 nonzero, means interpret the contents of M as multibyte. This
8621 function calls low-level routines in order to bypass text property
8622 hooks, etc. which might not be safe to run.
8624 This may GC (insert may run before/after change hooks),
8625 so the buffer M must NOT point to a Lisp string. */
8628 message_dolog (const char *m
, EMACS_INT nbytes
, int nlflag
, int multibyte
)
8630 const unsigned char *msg
= (const unsigned char *) m
;
8632 if (!NILP (Vmemory_full
))
8635 if (!NILP (Vmessage_log_max
))
8637 struct buffer
*oldbuf
;
8638 Lisp_Object oldpoint
, oldbegv
, oldzv
;
8639 int old_windows_or_buffers_changed
= windows_or_buffers_changed
;
8640 EMACS_INT point_at_end
= 0;
8641 EMACS_INT zv_at_end
= 0;
8642 Lisp_Object old_deactivate_mark
, tem
;
8643 struct gcpro gcpro1
;
8645 old_deactivate_mark
= Vdeactivate_mark
;
8646 oldbuf
= current_buffer
;
8647 Fset_buffer (Fget_buffer_create (Vmessages_buffer_name
));
8648 BVAR (current_buffer
, undo_list
) = Qt
;
8650 oldpoint
= message_dolog_marker1
;
8651 set_marker_restricted (oldpoint
, make_number (PT
), Qnil
);
8652 oldbegv
= message_dolog_marker2
;
8653 set_marker_restricted (oldbegv
, make_number (BEGV
), Qnil
);
8654 oldzv
= message_dolog_marker3
;
8655 set_marker_restricted (oldzv
, make_number (ZV
), Qnil
);
8656 GCPRO1 (old_deactivate_mark
);
8664 BEGV_BYTE
= BEG_BYTE
;
8667 TEMP_SET_PT_BOTH (Z
, Z_BYTE
);
8669 /* Insert the string--maybe converting multibyte to single byte
8670 or vice versa, so that all the text fits the buffer. */
8672 && NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
8678 /* Convert a multibyte string to single-byte
8679 for the *Message* buffer. */
8680 for (i
= 0; i
< nbytes
; i
+= char_bytes
)
8682 c
= string_char_and_length (msg
+ i
, &char_bytes
);
8683 work
[0] = (ASCII_CHAR_P (c
)
8685 : multibyte_char_to_unibyte (c
));
8686 insert_1_both (work
, 1, 1, 1, 0, 0);
8689 else if (! multibyte
8690 && ! NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
8694 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
8695 /* Convert a single-byte string to multibyte
8696 for the *Message* buffer. */
8697 for (i
= 0; i
< nbytes
; i
++)
8700 MAKE_CHAR_MULTIBYTE (c
);
8701 char_bytes
= CHAR_STRING (c
, str
);
8702 insert_1_both ((char *) str
, 1, char_bytes
, 1, 0, 0);
8706 insert_1 (m
, nbytes
, 1, 0, 0);
8710 EMACS_INT this_bol
, this_bol_byte
, prev_bol
, prev_bol_byte
;
8711 unsigned long int dups
;
8712 insert_1 ("\n", 1, 1, 0, 0);
8714 scan_newline (Z
, Z_BYTE
, BEG
, BEG_BYTE
, -2, 0);
8716 this_bol_byte
= PT_BYTE
;
8718 /* See if this line duplicates the previous one.
8719 If so, combine duplicates. */
8722 scan_newline (PT
, PT_BYTE
, BEG
, BEG_BYTE
, -2, 0);
8724 prev_bol_byte
= PT_BYTE
;
8726 dups
= message_log_check_duplicate (prev_bol_byte
,
8730 del_range_both (prev_bol
, prev_bol_byte
,
8731 this_bol
, this_bol_byte
, 0);
8737 /* If you change this format, don't forget to also
8738 change message_log_check_duplicate. */
8739 sprintf (dupstr
, " [%lu times]", dups
);
8740 duplen
= strlen (dupstr
);
8741 TEMP_SET_PT_BOTH (Z
- 1, Z_BYTE
- 1);
8742 insert_1 (dupstr
, duplen
, 1, 0, 1);
8747 /* If we have more than the desired maximum number of lines
8748 in the *Messages* buffer now, delete the oldest ones.
8749 This is safe because we don't have undo in this buffer. */
8751 if (NATNUMP (Vmessage_log_max
))
8753 scan_newline (Z
, Z_BYTE
, BEG
, BEG_BYTE
,
8754 -XFASTINT (Vmessage_log_max
) - 1, 0);
8755 del_range_both (BEG
, BEG_BYTE
, PT
, PT_BYTE
, 0);
8758 BEGV
= XMARKER (oldbegv
)->charpos
;
8759 BEGV_BYTE
= marker_byte_position (oldbegv
);
8768 ZV
= XMARKER (oldzv
)->charpos
;
8769 ZV_BYTE
= marker_byte_position (oldzv
);
8773 TEMP_SET_PT_BOTH (Z
, Z_BYTE
);
8775 /* We can't do Fgoto_char (oldpoint) because it will run some
8777 TEMP_SET_PT_BOTH (XMARKER (oldpoint
)->charpos
,
8778 XMARKER (oldpoint
)->bytepos
);
8781 unchain_marker (XMARKER (oldpoint
));
8782 unchain_marker (XMARKER (oldbegv
));
8783 unchain_marker (XMARKER (oldzv
));
8785 tem
= Fget_buffer_window (Fcurrent_buffer (), Qt
);
8786 set_buffer_internal (oldbuf
);
8788 windows_or_buffers_changed
= old_windows_or_buffers_changed
;
8789 message_log_need_newline
= !nlflag
;
8790 Vdeactivate_mark
= old_deactivate_mark
;
8795 /* We are at the end of the buffer after just having inserted a newline.
8796 (Note: We depend on the fact we won't be crossing the gap.)
8797 Check to see if the most recent message looks a lot like the previous one.
8798 Return 0 if different, 1 if the new one should just replace it, or a
8799 value N > 1 if we should also append " [N times]". */
8801 static unsigned long int
8802 message_log_check_duplicate (EMACS_INT prev_bol_byte
, EMACS_INT this_bol_byte
)
8805 EMACS_INT len
= Z_BYTE
- 1 - this_bol_byte
;
8807 unsigned char *p1
= BUF_BYTE_ADDRESS (current_buffer
, prev_bol_byte
);
8808 unsigned char *p2
= BUF_BYTE_ADDRESS (current_buffer
, this_bol_byte
);
8810 for (i
= 0; i
< len
; i
++)
8812 if (i
>= 3 && p1
[i
-3] == '.' && p1
[i
-2] == '.' && p1
[i
-1] == '.')
8820 if (*p1
++ == ' ' && *p1
++ == '[')
8823 unsigned long int n
= strtoul ((char *) p1
, &pend
, 10);
8824 if (strncmp (pend
, " times]\n", 8) == 0)
8831 /* Display an echo area message M with a specified length of NBYTES
8832 bytes. The string may include null characters. If M is 0, clear
8833 out any existing message, and let the mini-buffer text show
8836 This may GC, so the buffer M must NOT point to a Lisp string. */
8839 message2 (const char *m
, EMACS_INT nbytes
, int multibyte
)
8841 /* First flush out any partial line written with print. */
8842 message_log_maybe_newline ();
8844 message_dolog (m
, nbytes
, 1, multibyte
);
8845 message2_nolog (m
, nbytes
, multibyte
);
8849 /* The non-logging counterpart of message2. */
8852 message2_nolog (const char *m
, EMACS_INT nbytes
, int multibyte
)
8854 struct frame
*sf
= SELECTED_FRAME ();
8855 message_enable_multibyte
= multibyte
;
8857 if (FRAME_INITIAL_P (sf
))
8859 if (noninteractive_need_newline
)
8860 putc ('\n', stderr
);
8861 noninteractive_need_newline
= 0;
8863 fwrite (m
, nbytes
, 1, stderr
);
8864 if (cursor_in_echo_area
== 0)
8865 fprintf (stderr
, "\n");
8868 /* A null message buffer means that the frame hasn't really been
8869 initialized yet. Error messages get reported properly by
8870 cmd_error, so this must be just an informative message; toss it. */
8871 else if (INTERACTIVE
8872 && sf
->glyphs_initialized_p
8873 && FRAME_MESSAGE_BUF (sf
))
8875 Lisp_Object mini_window
;
8878 /* Get the frame containing the mini-buffer
8879 that the selected frame is using. */
8880 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
8881 f
= XFRAME (WINDOW_FRAME (XWINDOW (mini_window
)));
8883 FRAME_SAMPLE_VISIBILITY (f
);
8884 if (FRAME_VISIBLE_P (sf
)
8885 && ! FRAME_VISIBLE_P (f
))
8886 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (mini_window
)));
8890 set_message (m
, Qnil
, nbytes
, multibyte
);
8891 if (minibuffer_auto_raise
)
8892 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window
)));
8895 clear_message (1, 1);
8897 do_pending_window_change (0);
8898 echo_area_display (1);
8899 do_pending_window_change (0);
8900 if (FRAME_TERMINAL (f
)->frame_up_to_date_hook
!= 0 && ! gc_in_progress
)
8901 (*FRAME_TERMINAL (f
)->frame_up_to_date_hook
) (f
);
8906 /* Display an echo area message M with a specified length of NBYTES
8907 bytes. The string may include null characters. If M is not a
8908 string, clear out any existing message, and let the mini-buffer
8911 This function cancels echoing. */
8914 message3 (Lisp_Object m
, EMACS_INT nbytes
, int multibyte
)
8916 struct gcpro gcpro1
;
8919 clear_message (1,1);
8922 /* First flush out any partial line written with print. */
8923 message_log_maybe_newline ();
8929 SAFE_ALLOCA (buffer
, char *, nbytes
);
8930 memcpy (buffer
, SDATA (m
), nbytes
);
8931 message_dolog (buffer
, nbytes
, 1, multibyte
);
8934 message3_nolog (m
, nbytes
, multibyte
);
8940 /* The non-logging version of message3.
8941 This does not cancel echoing, because it is used for echoing.
8942 Perhaps we need to make a separate function for echoing
8943 and make this cancel echoing. */
8946 message3_nolog (Lisp_Object m
, EMACS_INT nbytes
, int multibyte
)
8948 struct frame
*sf
= SELECTED_FRAME ();
8949 message_enable_multibyte
= multibyte
;
8951 if (FRAME_INITIAL_P (sf
))
8953 if (noninteractive_need_newline
)
8954 putc ('\n', stderr
);
8955 noninteractive_need_newline
= 0;
8957 fwrite (SDATA (m
), nbytes
, 1, stderr
);
8958 if (cursor_in_echo_area
== 0)
8959 fprintf (stderr
, "\n");
8962 /* A null message buffer means that the frame hasn't really been
8963 initialized yet. Error messages get reported properly by
8964 cmd_error, so this must be just an informative message; toss it. */
8965 else if (INTERACTIVE
8966 && sf
->glyphs_initialized_p
8967 && FRAME_MESSAGE_BUF (sf
))
8969 Lisp_Object mini_window
;
8973 /* Get the frame containing the mini-buffer
8974 that the selected frame is using. */
8975 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
8976 frame
= XWINDOW (mini_window
)->frame
;
8979 FRAME_SAMPLE_VISIBILITY (f
);
8980 if (FRAME_VISIBLE_P (sf
)
8981 && !FRAME_VISIBLE_P (f
))
8982 Fmake_frame_visible (frame
);
8984 if (STRINGP (m
) && SCHARS (m
) > 0)
8986 set_message (NULL
, m
, nbytes
, multibyte
);
8987 if (minibuffer_auto_raise
)
8988 Fraise_frame (frame
);
8989 /* Assume we are not echoing.
8990 (If we are, echo_now will override this.) */
8991 echo_message_buffer
= Qnil
;
8994 clear_message (1, 1);
8996 do_pending_window_change (0);
8997 echo_area_display (1);
8998 do_pending_window_change (0);
8999 if (FRAME_TERMINAL (f
)->frame_up_to_date_hook
!= 0 && ! gc_in_progress
)
9000 (*FRAME_TERMINAL (f
)->frame_up_to_date_hook
) (f
);
9005 /* Display a null-terminated echo area message M. If M is 0, clear
9006 out any existing message, and let the mini-buffer text show through.
9008 The buffer M must continue to exist until after the echo area gets
9009 cleared or some other message gets displayed there. Do not pass
9010 text that is stored in a Lisp string. Do not pass text in a buffer
9011 that was alloca'd. */
9014 message1 (const char *m
)
9016 message2 (m
, (m
? strlen (m
) : 0), 0);
9020 /* The non-logging counterpart of message1. */
9023 message1_nolog (const char *m
)
9025 message2_nolog (m
, (m
? strlen (m
) : 0), 0);
9028 /* Display a message M which contains a single %s
9029 which gets replaced with STRING. */
9032 message_with_string (const char *m
, Lisp_Object string
, int log
)
9034 CHECK_STRING (string
);
9040 if (noninteractive_need_newline
)
9041 putc ('\n', stderr
);
9042 noninteractive_need_newline
= 0;
9043 fprintf (stderr
, m
, SDATA (string
));
9044 if (!cursor_in_echo_area
)
9045 fprintf (stderr
, "\n");
9049 else if (INTERACTIVE
)
9051 /* The frame whose minibuffer we're going to display the message on.
9052 It may be larger than the selected frame, so we need
9053 to use its buffer, not the selected frame's buffer. */
9054 Lisp_Object mini_window
;
9055 struct frame
*f
, *sf
= SELECTED_FRAME ();
9057 /* Get the frame containing the minibuffer
9058 that the selected frame is using. */
9059 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
9060 f
= XFRAME (WINDOW_FRAME (XWINDOW (mini_window
)));
9062 /* A null message buffer means that the frame hasn't really been
9063 initialized yet. Error messages get reported properly by
9064 cmd_error, so this must be just an informative message; toss it. */
9065 if (FRAME_MESSAGE_BUF (f
))
9067 Lisp_Object args
[2], msg
;
9068 struct gcpro gcpro1
, gcpro2
;
9070 args
[0] = build_string (m
);
9071 args
[1] = msg
= string
;
9072 GCPRO2 (args
[0], msg
);
9075 msg
= Fformat (2, args
);
9078 message3 (msg
, SBYTES (msg
), STRING_MULTIBYTE (msg
));
9080 message3_nolog (msg
, SBYTES (msg
), STRING_MULTIBYTE (msg
));
9084 /* Print should start at the beginning of the message
9085 buffer next time. */
9086 message_buf_print
= 0;
9092 /* Dump an informative message to the minibuf. If M is 0, clear out
9093 any existing message, and let the mini-buffer text show through. */
9096 vmessage (const char *m
, va_list ap
)
9102 if (noninteractive_need_newline
)
9103 putc ('\n', stderr
);
9104 noninteractive_need_newline
= 0;
9105 vfprintf (stderr
, m
, ap
);
9106 if (cursor_in_echo_area
== 0)
9107 fprintf (stderr
, "\n");
9111 else if (INTERACTIVE
)
9113 /* The frame whose mini-buffer we're going to display the message
9114 on. It may be larger than the selected frame, so we need to
9115 use its buffer, not the selected frame's buffer. */
9116 Lisp_Object mini_window
;
9117 struct frame
*f
, *sf
= SELECTED_FRAME ();
9119 /* Get the frame containing the mini-buffer
9120 that the selected frame is using. */
9121 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
9122 f
= XFRAME (WINDOW_FRAME (XWINDOW (mini_window
)));
9124 /* A null message buffer means that the frame hasn't really been
9125 initialized yet. Error messages get reported properly by
9126 cmd_error, so this must be just an informative message; toss
9128 if (FRAME_MESSAGE_BUF (f
))
9134 len
= doprnt (FRAME_MESSAGE_BUF (f
),
9135 FRAME_MESSAGE_BUF_SIZE (f
), m
, (char *)0, ap
);
9137 message2 (FRAME_MESSAGE_BUF (f
), len
, 0);
9142 /* Print should start at the beginning of the message
9143 buffer next time. */
9144 message_buf_print
= 0;
9150 message (const char *m
, ...)
9160 /* The non-logging version of message. */
9163 message_nolog (const char *m
, ...)
9165 Lisp_Object old_log_max
;
9168 old_log_max
= Vmessage_log_max
;
9169 Vmessage_log_max
= Qnil
;
9171 Vmessage_log_max
= old_log_max
;
9177 /* Display the current message in the current mini-buffer. This is
9178 only called from error handlers in process.c, and is not time
9182 update_echo_area (void)
9184 if (!NILP (echo_area_buffer
[0]))
9187 string
= Fcurrent_message ();
9188 message3 (string
, SBYTES (string
),
9189 !NILP (BVAR (current_buffer
, enable_multibyte_characters
)));
9194 /* Make sure echo area buffers in `echo_buffers' are live.
9195 If they aren't, make new ones. */
9198 ensure_echo_area_buffers (void)
9202 for (i
= 0; i
< 2; ++i
)
9203 if (!BUFFERP (echo_buffer
[i
])
9204 || NILP (BVAR (XBUFFER (echo_buffer
[i
]), name
)))
9207 Lisp_Object old_buffer
;
9210 old_buffer
= echo_buffer
[i
];
9211 sprintf (name
, " *Echo Area %d*", i
);
9212 echo_buffer
[i
] = Fget_buffer_create (build_string (name
));
9213 BVAR (XBUFFER (echo_buffer
[i
]), truncate_lines
) = Qnil
;
9214 /* to force word wrap in echo area -
9215 it was decided to postpone this*/
9216 /* XBUFFER (echo_buffer[i])->word_wrap = Qt; */
9218 for (j
= 0; j
< 2; ++j
)
9219 if (EQ (old_buffer
, echo_area_buffer
[j
]))
9220 echo_area_buffer
[j
] = echo_buffer
[i
];
9225 /* Call FN with args A1..A4 with either the current or last displayed
9226 echo_area_buffer as current buffer.
9228 WHICH zero means use the current message buffer
9229 echo_area_buffer[0]. If that is nil, choose a suitable buffer
9230 from echo_buffer[] and clear it.
9232 WHICH > 0 means use echo_area_buffer[1]. If that is nil, choose a
9233 suitable buffer from echo_buffer[] and clear it.
9235 If WHICH < 0, set echo_area_buffer[1] to echo_area_buffer[0], so
9236 that the current message becomes the last displayed one, make
9237 choose a suitable buffer for echo_area_buffer[0], and clear it.
9239 Value is what FN returns. */
9242 with_echo_area_buffer (struct window
*w
, int which
,
9243 int (*fn
) (EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
),
9244 EMACS_INT a1
, Lisp_Object a2
, EMACS_INT a3
, EMACS_INT a4
)
9247 int this_one
, the_other
, clear_buffer_p
, rc
;
9248 int count
= SPECPDL_INDEX ();
9250 /* If buffers aren't live, make new ones. */
9251 ensure_echo_area_buffers ();
9256 this_one
= 0, the_other
= 1;
9258 this_one
= 1, the_other
= 0;
9261 this_one
= 0, the_other
= 1;
9264 /* We need a fresh one in case the current echo buffer equals
9265 the one containing the last displayed echo area message. */
9266 if (!NILP (echo_area_buffer
[this_one
])
9267 && EQ (echo_area_buffer
[this_one
], echo_area_buffer
[the_other
]))
9268 echo_area_buffer
[this_one
] = Qnil
;
9271 /* Choose a suitable buffer from echo_buffer[] is we don't
9273 if (NILP (echo_area_buffer
[this_one
]))
9275 echo_area_buffer
[this_one
]
9276 = (EQ (echo_area_buffer
[the_other
], echo_buffer
[this_one
])
9277 ? echo_buffer
[the_other
]
9278 : echo_buffer
[this_one
]);
9282 buffer
= echo_area_buffer
[this_one
];
9284 /* Don't get confused by reusing the buffer used for echoing
9285 for a different purpose. */
9286 if (echo_kboard
== NULL
&& EQ (buffer
, echo_message_buffer
))
9289 record_unwind_protect (unwind_with_echo_area_buffer
,
9290 with_echo_area_buffer_unwind_data (w
));
9292 /* Make the echo area buffer current. Note that for display
9293 purposes, it is not necessary that the displayed window's buffer
9294 == current_buffer, except for text property lookup. So, let's
9295 only set that buffer temporarily here without doing a full
9296 Fset_window_buffer. We must also change w->pointm, though,
9297 because otherwise an assertions in unshow_buffer fails, and Emacs
9299 set_buffer_internal_1 (XBUFFER (buffer
));
9303 set_marker_both (w
->pointm
, buffer
, BEG
, BEG_BYTE
);
9306 BVAR (current_buffer
, undo_list
) = Qt
;
9307 BVAR (current_buffer
, read_only
) = Qnil
;
9308 specbind (Qinhibit_read_only
, Qt
);
9309 specbind (Qinhibit_modification_hooks
, Qt
);
9311 if (clear_buffer_p
&& Z
> BEG
)
9314 xassert (BEGV
>= BEG
);
9315 xassert (ZV
<= Z
&& ZV
>= BEGV
);
9317 rc
= fn (a1
, a2
, a3
, a4
);
9319 xassert (BEGV
>= BEG
);
9320 xassert (ZV
<= Z
&& ZV
>= BEGV
);
9322 unbind_to (count
, Qnil
);
9327 /* Save state that should be preserved around the call to the function
9328 FN called in with_echo_area_buffer. */
9331 with_echo_area_buffer_unwind_data (struct window
*w
)
9334 Lisp_Object vector
, tmp
;
9336 /* Reduce consing by keeping one vector in
9337 Vwith_echo_area_save_vector. */
9338 vector
= Vwith_echo_area_save_vector
;
9339 Vwith_echo_area_save_vector
= Qnil
;
9342 vector
= Fmake_vector (make_number (7), Qnil
);
9344 XSETBUFFER (tmp
, current_buffer
); ASET (vector
, i
, tmp
); ++i
;
9345 ASET (vector
, i
, Vdeactivate_mark
); ++i
;
9346 ASET (vector
, i
, make_number (windows_or_buffers_changed
)); ++i
;
9350 XSETWINDOW (tmp
, w
); ASET (vector
, i
, tmp
); ++i
;
9351 ASET (vector
, i
, w
->buffer
); ++i
;
9352 ASET (vector
, i
, make_number (XMARKER (w
->pointm
)->charpos
)); ++i
;
9353 ASET (vector
, i
, make_number (XMARKER (w
->pointm
)->bytepos
)); ++i
;
9358 for (; i
< end
; ++i
)
9359 ASET (vector
, i
, Qnil
);
9362 xassert (i
== ASIZE (vector
));
9367 /* Restore global state from VECTOR which was created by
9368 with_echo_area_buffer_unwind_data. */
9371 unwind_with_echo_area_buffer (Lisp_Object vector
)
9373 set_buffer_internal_1 (XBUFFER (AREF (vector
, 0)));
9374 Vdeactivate_mark
= AREF (vector
, 1);
9375 windows_or_buffers_changed
= XFASTINT (AREF (vector
, 2));
9377 if (WINDOWP (AREF (vector
, 3)))
9380 Lisp_Object buffer
, charpos
, bytepos
;
9382 w
= XWINDOW (AREF (vector
, 3));
9383 buffer
= AREF (vector
, 4);
9384 charpos
= AREF (vector
, 5);
9385 bytepos
= AREF (vector
, 6);
9388 set_marker_both (w
->pointm
, buffer
,
9389 XFASTINT (charpos
), XFASTINT (bytepos
));
9392 Vwith_echo_area_save_vector
= vector
;
9397 /* Set up the echo area for use by print functions. MULTIBYTE_P
9398 non-zero means we will print multibyte. */
9401 setup_echo_area_for_printing (int multibyte_p
)
9403 /* If we can't find an echo area any more, exit. */
9404 if (! FRAME_LIVE_P (XFRAME (selected_frame
)))
9407 ensure_echo_area_buffers ();
9409 if (!message_buf_print
)
9411 /* A message has been output since the last time we printed.
9412 Choose a fresh echo area buffer. */
9413 if (EQ (echo_area_buffer
[1], echo_buffer
[0]))
9414 echo_area_buffer
[0] = echo_buffer
[1];
9416 echo_area_buffer
[0] = echo_buffer
[0];
9418 /* Switch to that buffer and clear it. */
9419 set_buffer_internal (XBUFFER (echo_area_buffer
[0]));
9420 BVAR (current_buffer
, truncate_lines
) = Qnil
;
9424 int count
= SPECPDL_INDEX ();
9425 specbind (Qinhibit_read_only
, Qt
);
9426 /* Note that undo recording is always disabled. */
9428 unbind_to (count
, Qnil
);
9430 TEMP_SET_PT_BOTH (BEG
, BEG_BYTE
);
9432 /* Set up the buffer for the multibyteness we need. */
9434 != !NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
9435 Fset_buffer_multibyte (multibyte_p
? Qt
: Qnil
);
9437 /* Raise the frame containing the echo area. */
9438 if (minibuffer_auto_raise
)
9440 struct frame
*sf
= SELECTED_FRAME ();
9441 Lisp_Object mini_window
;
9442 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
9443 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window
)));
9446 message_log_maybe_newline ();
9447 message_buf_print
= 1;
9451 if (NILP (echo_area_buffer
[0]))
9453 if (EQ (echo_area_buffer
[1], echo_buffer
[0]))
9454 echo_area_buffer
[0] = echo_buffer
[1];
9456 echo_area_buffer
[0] = echo_buffer
[0];
9459 if (current_buffer
!= XBUFFER (echo_area_buffer
[0]))
9461 /* Someone switched buffers between print requests. */
9462 set_buffer_internal (XBUFFER (echo_area_buffer
[0]));
9463 BVAR (current_buffer
, truncate_lines
) = Qnil
;
9469 /* Display an echo area message in window W. Value is non-zero if W's
9470 height is changed. If display_last_displayed_message_p is
9471 non-zero, display the message that was last displayed, otherwise
9472 display the current message. */
9475 display_echo_area (struct window
*w
)
9477 int i
, no_message_p
, window_height_changed_p
, count
;
9479 /* Temporarily disable garbage collections while displaying the echo
9480 area. This is done because a GC can print a message itself.
9481 That message would modify the echo area buffer's contents while a
9482 redisplay of the buffer is going on, and seriously confuse
9484 count
= inhibit_garbage_collection ();
9486 /* If there is no message, we must call display_echo_area_1
9487 nevertheless because it resizes the window. But we will have to
9488 reset the echo_area_buffer in question to nil at the end because
9489 with_echo_area_buffer will sets it to an empty buffer. */
9490 i
= display_last_displayed_message_p
? 1 : 0;
9491 no_message_p
= NILP (echo_area_buffer
[i
]);
9493 window_height_changed_p
9494 = with_echo_area_buffer (w
, display_last_displayed_message_p
,
9495 display_echo_area_1
,
9496 (intptr_t) w
, Qnil
, 0, 0);
9499 echo_area_buffer
[i
] = Qnil
;
9501 unbind_to (count
, Qnil
);
9502 return window_height_changed_p
;
9506 /* Helper for display_echo_area. Display the current buffer which
9507 contains the current echo area message in window W, a mini-window,
9508 a pointer to which is passed in A1. A2..A4 are currently not used.
9509 Change the height of W so that all of the message is displayed.
9510 Value is non-zero if height of W was changed. */
9513 display_echo_area_1 (EMACS_INT a1
, Lisp_Object a2
, EMACS_INT a3
, EMACS_INT a4
)
9516 struct window
*w
= (struct window
*) i1
;
9518 struct text_pos start
;
9519 int window_height_changed_p
= 0;
9521 /* Do this before displaying, so that we have a large enough glyph
9522 matrix for the display. If we can't get enough space for the
9523 whole text, display the last N lines. That works by setting w->start. */
9524 window_height_changed_p
= resize_mini_window (w
, 0);
9526 /* Use the starting position chosen by resize_mini_window. */
9527 SET_TEXT_POS_FROM_MARKER (start
, w
->start
);
9530 clear_glyph_matrix (w
->desired_matrix
);
9531 XSETWINDOW (window
, w
);
9532 try_window (window
, start
, 0);
9534 return window_height_changed_p
;
9538 /* Resize the echo area window to exactly the size needed for the
9539 currently displayed message, if there is one. If a mini-buffer
9540 is active, don't shrink it. */
9543 resize_echo_area_exactly (void)
9545 if (BUFFERP (echo_area_buffer
[0])
9546 && WINDOWP (echo_area_window
))
9548 struct window
*w
= XWINDOW (echo_area_window
);
9550 Lisp_Object resize_exactly
;
9552 if (minibuf_level
== 0)
9553 resize_exactly
= Qt
;
9555 resize_exactly
= Qnil
;
9557 resized_p
= with_echo_area_buffer (w
, 0, resize_mini_window_1
,
9558 (intptr_t) w
, resize_exactly
,
9562 ++windows_or_buffers_changed
;
9563 ++update_mode_lines
;
9564 redisplay_internal ();
9570 /* Callback function for with_echo_area_buffer, when used from
9571 resize_echo_area_exactly. A1 contains a pointer to the window to
9572 resize, EXACTLY non-nil means resize the mini-window exactly to the
9573 size of the text displayed. A3 and A4 are not used. Value is what
9574 resize_mini_window returns. */
9577 resize_mini_window_1 (EMACS_INT a1
, Lisp_Object exactly
, EMACS_INT a3
, EMACS_INT a4
)
9580 return resize_mini_window ((struct window
*) i1
, !NILP (exactly
));
9584 /* Resize mini-window W to fit the size of its contents. EXACT_P
9585 means size the window exactly to the size needed. Otherwise, it's
9586 only enlarged until W's buffer is empty.
9588 Set W->start to the right place to begin display. If the whole
9589 contents fit, start at the beginning. Otherwise, start so as
9590 to make the end of the contents appear. This is particularly
9591 important for y-or-n-p, but seems desirable generally.
9593 Value is non-zero if the window height has been changed. */
9596 resize_mini_window (struct window
*w
, int exact_p
)
9598 struct frame
*f
= XFRAME (w
->frame
);
9599 int window_height_changed_p
= 0;
9601 xassert (MINI_WINDOW_P (w
));
9603 /* By default, start display at the beginning. */
9604 set_marker_both (w
->start
, w
->buffer
,
9605 BUF_BEGV (XBUFFER (w
->buffer
)),
9606 BUF_BEGV_BYTE (XBUFFER (w
->buffer
)));
9608 /* Don't resize windows while redisplaying a window; it would
9609 confuse redisplay functions when the size of the window they are
9610 displaying changes from under them. Such a resizing can happen,
9611 for instance, when which-func prints a long message while
9612 we are running fontification-functions. We're running these
9613 functions with safe_call which binds inhibit-redisplay to t. */
9614 if (!NILP (Vinhibit_redisplay
))
9617 /* Nil means don't try to resize. */
9618 if (NILP (Vresize_mini_windows
)
9619 || (FRAME_X_P (f
) && FRAME_X_OUTPUT (f
) == NULL
))
9622 if (!FRAME_MINIBUF_ONLY_P (f
))
9625 struct window
*root
= XWINDOW (FRAME_ROOT_WINDOW (f
));
9626 int total_height
= WINDOW_TOTAL_LINES (root
) + WINDOW_TOTAL_LINES (w
);
9627 int height
, max_height
;
9628 int unit
= FRAME_LINE_HEIGHT (f
);
9629 struct text_pos start
;
9630 struct buffer
*old_current_buffer
= NULL
;
9632 if (current_buffer
!= XBUFFER (w
->buffer
))
9634 old_current_buffer
= current_buffer
;
9635 set_buffer_internal (XBUFFER (w
->buffer
));
9638 init_iterator (&it
, w
, BEGV
, BEGV_BYTE
, NULL
, DEFAULT_FACE_ID
);
9640 /* Compute the max. number of lines specified by the user. */
9641 if (FLOATP (Vmax_mini_window_height
))
9642 max_height
= XFLOATINT (Vmax_mini_window_height
) * FRAME_LINES (f
);
9643 else if (INTEGERP (Vmax_mini_window_height
))
9644 max_height
= XINT (Vmax_mini_window_height
);
9646 max_height
= total_height
/ 4;
9648 /* Correct that max. height if it's bogus. */
9649 max_height
= max (1, max_height
);
9650 max_height
= min (total_height
, max_height
);
9652 /* Find out the height of the text in the window. */
9653 if (it
.line_wrap
== TRUNCATE
)
9658 move_it_to (&it
, ZV
, -1, -1, -1, MOVE_TO_POS
);
9659 if (it
.max_ascent
== 0 && it
.max_descent
== 0)
9660 height
= it
.current_y
+ last_height
;
9662 height
= it
.current_y
+ it
.max_ascent
+ it
.max_descent
;
9663 height
-= min (it
.extra_line_spacing
, it
.max_extra_line_spacing
);
9664 height
= (height
+ unit
- 1) / unit
;
9667 /* Compute a suitable window start. */
9668 if (height
> max_height
)
9670 height
= max_height
;
9671 init_iterator (&it
, w
, ZV
, ZV_BYTE
, NULL
, DEFAULT_FACE_ID
);
9672 move_it_vertically_backward (&it
, (height
- 1) * unit
);
9673 start
= it
.current
.pos
;
9676 SET_TEXT_POS (start
, BEGV
, BEGV_BYTE
);
9677 SET_MARKER_FROM_TEXT_POS (w
->start
, start
);
9679 if (EQ (Vresize_mini_windows
, Qgrow_only
))
9681 /* Let it grow only, until we display an empty message, in which
9682 case the window shrinks again. */
9683 if (height
> WINDOW_TOTAL_LINES (w
))
9685 int old_height
= WINDOW_TOTAL_LINES (w
);
9686 freeze_window_starts (f
, 1);
9687 grow_mini_window (w
, height
- WINDOW_TOTAL_LINES (w
));
9688 window_height_changed_p
= WINDOW_TOTAL_LINES (w
) != old_height
;
9690 else if (height
< WINDOW_TOTAL_LINES (w
)
9691 && (exact_p
|| BEGV
== ZV
))
9693 int old_height
= WINDOW_TOTAL_LINES (w
);
9694 freeze_window_starts (f
, 0);
9695 shrink_mini_window (w
);
9696 window_height_changed_p
= WINDOW_TOTAL_LINES (w
) != old_height
;
9701 /* Always resize to exact size needed. */
9702 if (height
> WINDOW_TOTAL_LINES (w
))
9704 int old_height
= WINDOW_TOTAL_LINES (w
);
9705 freeze_window_starts (f
, 1);
9706 grow_mini_window (w
, height
- WINDOW_TOTAL_LINES (w
));
9707 window_height_changed_p
= WINDOW_TOTAL_LINES (w
) != old_height
;
9709 else if (height
< WINDOW_TOTAL_LINES (w
))
9711 int old_height
= WINDOW_TOTAL_LINES (w
);
9712 freeze_window_starts (f
, 0);
9713 shrink_mini_window (w
);
9717 freeze_window_starts (f
, 1);
9718 grow_mini_window (w
, height
- WINDOW_TOTAL_LINES (w
));
9721 window_height_changed_p
= WINDOW_TOTAL_LINES (w
) != old_height
;
9725 if (old_current_buffer
)
9726 set_buffer_internal (old_current_buffer
);
9729 return window_height_changed_p
;
9733 /* Value is the current message, a string, or nil if there is no
9737 current_message (void)
9741 if (!BUFFERP (echo_area_buffer
[0]))
9745 with_echo_area_buffer (0, 0, current_message_1
,
9746 (intptr_t) &msg
, Qnil
, 0, 0);
9748 echo_area_buffer
[0] = Qnil
;
9756 current_message_1 (EMACS_INT a1
, Lisp_Object a2
, EMACS_INT a3
, EMACS_INT a4
)
9759 Lisp_Object
*msg
= (Lisp_Object
*) i1
;
9762 *msg
= make_buffer_string (BEG
, Z
, 1);
9769 /* Push the current message on Vmessage_stack for later restauration
9770 by restore_message. Value is non-zero if the current message isn't
9771 empty. This is a relatively infrequent operation, so it's not
9772 worth optimizing. */
9778 msg
= current_message ();
9779 Vmessage_stack
= Fcons (msg
, Vmessage_stack
);
9780 return STRINGP (msg
);
9784 /* Restore message display from the top of Vmessage_stack. */
9787 restore_message (void)
9791 xassert (CONSP (Vmessage_stack
));
9792 msg
= XCAR (Vmessage_stack
);
9794 message3_nolog (msg
, SBYTES (msg
), STRING_MULTIBYTE (msg
));
9796 message3_nolog (msg
, 0, 0);
9800 /* Handler for record_unwind_protect calling pop_message. */
9803 pop_message_unwind (Lisp_Object dummy
)
9809 /* Pop the top-most entry off Vmessage_stack. */
9814 xassert (CONSP (Vmessage_stack
));
9815 Vmessage_stack
= XCDR (Vmessage_stack
);
9819 /* Check that Vmessage_stack is nil. Called from emacs.c when Emacs
9820 exits. If the stack is not empty, we have a missing pop_message
9824 check_message_stack (void)
9826 if (!NILP (Vmessage_stack
))
9831 /* Truncate to NCHARS what will be displayed in the echo area the next
9832 time we display it---but don't redisplay it now. */
9835 truncate_echo_area (EMACS_INT nchars
)
9838 echo_area_buffer
[0] = Qnil
;
9839 /* A null message buffer means that the frame hasn't really been
9840 initialized yet. Error messages get reported properly by
9841 cmd_error, so this must be just an informative message; toss it. */
9842 else if (!noninteractive
9844 && !NILP (echo_area_buffer
[0]))
9846 struct frame
*sf
= SELECTED_FRAME ();
9847 if (FRAME_MESSAGE_BUF (sf
))
9848 with_echo_area_buffer (0, 0, truncate_message_1
, nchars
, Qnil
, 0, 0);
9853 /* Helper function for truncate_echo_area. Truncate the current
9854 message to at most NCHARS characters. */
9857 truncate_message_1 (EMACS_INT nchars
, Lisp_Object a2
, EMACS_INT a3
, EMACS_INT a4
)
9859 if (BEG
+ nchars
< Z
)
9860 del_range (BEG
+ nchars
, Z
);
9862 echo_area_buffer
[0] = Qnil
;
9867 /* Set the current message to a substring of S or STRING.
9869 If STRING is a Lisp string, set the message to the first NBYTES
9870 bytes from STRING. NBYTES zero means use the whole string. If
9871 STRING is multibyte, the message will be displayed multibyte.
9873 If S is not null, set the message to the first LEN bytes of S. LEN
9874 zero means use the whole string. MULTIBYTE_P non-zero means S is
9875 multibyte. Display the message multibyte in that case.
9877 Doesn't GC, as with_echo_area_buffer binds Qinhibit_modification_hooks
9878 to t before calling set_message_1 (which calls insert).
9882 set_message (const char *s
, Lisp_Object string
,
9883 EMACS_INT nbytes
, int multibyte_p
)
9885 message_enable_multibyte
9886 = ((s
&& multibyte_p
)
9887 || (STRINGP (string
) && STRING_MULTIBYTE (string
)));
9889 with_echo_area_buffer (0, -1, set_message_1
,
9890 (intptr_t) s
, string
, nbytes
, multibyte_p
);
9891 message_buf_print
= 0;
9892 help_echo_showing_p
= 0;
9896 /* Helper function for set_message. Arguments have the same meaning
9897 as there, with A1 corresponding to S and A2 corresponding to STRING
9898 This function is called with the echo area buffer being
9902 set_message_1 (EMACS_INT a1
, Lisp_Object a2
, EMACS_INT nbytes
, EMACS_INT multibyte_p
)
9905 const char *s
= (const char *) i1
;
9906 const unsigned char *msg
= (const unsigned char *) s
;
9907 Lisp_Object string
= a2
;
9909 /* Change multibyteness of the echo buffer appropriately. */
9910 if (message_enable_multibyte
9911 != !NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
9912 Fset_buffer_multibyte (message_enable_multibyte
? Qt
: Qnil
);
9914 BVAR (current_buffer
, truncate_lines
) = message_truncate_lines
? Qt
: Qnil
;
9915 if (!NILP (BVAR (current_buffer
, bidi_display_reordering
)))
9916 BVAR (current_buffer
, bidi_paragraph_direction
) = Qleft_to_right
;
9918 /* Insert new message at BEG. */
9919 TEMP_SET_PT_BOTH (BEG
, BEG_BYTE
);
9921 if (STRINGP (string
))
9926 nbytes
= SBYTES (string
);
9927 nchars
= string_byte_to_char (string
, nbytes
);
9929 /* This function takes care of single/multibyte conversion. We
9930 just have to ensure that the echo area buffer has the right
9931 setting of enable_multibyte_characters. */
9932 insert_from_string (string
, 0, 0, nchars
, nbytes
, 1);
9937 nbytes
= strlen (s
);
9939 if (multibyte_p
&& NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
9941 /* Convert from multi-byte to single-byte. */
9946 /* Convert a multibyte string to single-byte. */
9947 for (i
= 0; i
< nbytes
; i
+= n
)
9949 c
= string_char_and_length (msg
+ i
, &n
);
9950 work
[0] = (ASCII_CHAR_P (c
)
9952 : multibyte_char_to_unibyte (c
));
9953 insert_1_both (work
, 1, 1, 1, 0, 0);
9956 else if (!multibyte_p
9957 && !NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
9959 /* Convert from single-byte to multi-byte. */
9962 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
9964 /* Convert a single-byte string to multibyte. */
9965 for (i
= 0; i
< nbytes
; i
++)
9968 MAKE_CHAR_MULTIBYTE (c
);
9969 n
= CHAR_STRING (c
, str
);
9970 insert_1_both ((char *) str
, 1, n
, 1, 0, 0);
9974 insert_1 (s
, nbytes
, 1, 0, 0);
9981 /* Clear messages. CURRENT_P non-zero means clear the current
9982 message. LAST_DISPLAYED_P non-zero means clear the message
9986 clear_message (int current_p
, int last_displayed_p
)
9990 echo_area_buffer
[0] = Qnil
;
9991 message_cleared_p
= 1;
9994 if (last_displayed_p
)
9995 echo_area_buffer
[1] = Qnil
;
9997 message_buf_print
= 0;
10000 /* Clear garbaged frames.
10002 This function is used where the old redisplay called
10003 redraw_garbaged_frames which in turn called redraw_frame which in
10004 turn called clear_frame. The call to clear_frame was a source of
10005 flickering. I believe a clear_frame is not necessary. It should
10006 suffice in the new redisplay to invalidate all current matrices,
10007 and ensure a complete redisplay of all windows. */
10010 clear_garbaged_frames (void)
10012 if (frame_garbaged
)
10014 Lisp_Object tail
, frame
;
10015 int changed_count
= 0;
10017 FOR_EACH_FRAME (tail
, frame
)
10019 struct frame
*f
= XFRAME (frame
);
10021 if (FRAME_VISIBLE_P (f
) && FRAME_GARBAGED_P (f
))
10025 Fredraw_frame (frame
);
10026 f
->force_flush_display_p
= 1;
10028 clear_current_matrices (f
);
10035 frame_garbaged
= 0;
10037 ++windows_or_buffers_changed
;
10042 /* Redisplay the echo area of the selected frame. If UPDATE_FRAME_P
10043 is non-zero update selected_frame. Value is non-zero if the
10044 mini-windows height has been changed. */
10047 echo_area_display (int update_frame_p
)
10049 Lisp_Object mini_window
;
10052 int window_height_changed_p
= 0;
10053 struct frame
*sf
= SELECTED_FRAME ();
10055 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
10056 w
= XWINDOW (mini_window
);
10057 f
= XFRAME (WINDOW_FRAME (w
));
10059 /* Don't display if frame is invisible or not yet initialized. */
10060 if (!FRAME_VISIBLE_P (f
) || !f
->glyphs_initialized_p
)
10063 #ifdef HAVE_WINDOW_SYSTEM
10064 /* When Emacs starts, selected_frame may be the initial terminal
10065 frame. If we let this through, a message would be displayed on
10067 if (FRAME_INITIAL_P (XFRAME (selected_frame
)))
10069 #endif /* HAVE_WINDOW_SYSTEM */
10071 /* Redraw garbaged frames. */
10072 if (frame_garbaged
)
10073 clear_garbaged_frames ();
10075 if (!NILP (echo_area_buffer
[0]) || minibuf_level
== 0)
10077 echo_area_window
= mini_window
;
10078 window_height_changed_p
= display_echo_area (w
);
10079 w
->must_be_updated_p
= 1;
10081 /* Update the display, unless called from redisplay_internal.
10082 Also don't update the screen during redisplay itself. The
10083 update will happen at the end of redisplay, and an update
10084 here could cause confusion. */
10085 if (update_frame_p
&& !redisplaying_p
)
10089 /* If the display update has been interrupted by pending
10090 input, update mode lines in the frame. Due to the
10091 pending input, it might have been that redisplay hasn't
10092 been called, so that mode lines above the echo area are
10093 garbaged. This looks odd, so we prevent it here. */
10094 if (!display_completed
)
10095 n
= redisplay_mode_lines (FRAME_ROOT_WINDOW (f
), 0);
10097 if (window_height_changed_p
10098 /* Don't do this if Emacs is shutting down. Redisplay
10099 needs to run hooks. */
10100 && !NILP (Vrun_hooks
))
10102 /* Must update other windows. Likewise as in other
10103 cases, don't let this update be interrupted by
10105 int count
= SPECPDL_INDEX ();
10106 specbind (Qredisplay_dont_pause
, Qt
);
10107 windows_or_buffers_changed
= 1;
10108 redisplay_internal ();
10109 unbind_to (count
, Qnil
);
10111 else if (FRAME_WINDOW_P (f
) && n
== 0)
10113 /* Window configuration is the same as before.
10114 Can do with a display update of the echo area,
10115 unless we displayed some mode lines. */
10116 update_single_window (w
, 1);
10117 FRAME_RIF (f
)->flush_display (f
);
10120 update_frame (f
, 1, 1);
10122 /* If cursor is in the echo area, make sure that the next
10123 redisplay displays the minibuffer, so that the cursor will
10124 be replaced with what the minibuffer wants. */
10125 if (cursor_in_echo_area
)
10126 ++windows_or_buffers_changed
;
10129 else if (!EQ (mini_window
, selected_window
))
10130 windows_or_buffers_changed
++;
10132 /* Last displayed message is now the current message. */
10133 echo_area_buffer
[1] = echo_area_buffer
[0];
10134 /* Inform read_char that we're not echoing. */
10135 echo_message_buffer
= Qnil
;
10137 /* Prevent redisplay optimization in redisplay_internal by resetting
10138 this_line_start_pos. This is done because the mini-buffer now
10139 displays the message instead of its buffer text. */
10140 if (EQ (mini_window
, selected_window
))
10141 CHARPOS (this_line_start_pos
) = 0;
10143 return window_height_changed_p
;
10148 /***********************************************************************
10149 Mode Lines and Frame Titles
10150 ***********************************************************************/
10152 /* A buffer for constructing non-propertized mode-line strings and
10153 frame titles in it; allocated from the heap in init_xdisp and
10154 resized as needed in store_mode_line_noprop_char. */
10156 static char *mode_line_noprop_buf
;
10158 /* The buffer's end, and a current output position in it. */
10160 static char *mode_line_noprop_buf_end
;
10161 static char *mode_line_noprop_ptr
;
10163 #define MODE_LINE_NOPROP_LEN(start) \
10164 ((mode_line_noprop_ptr - mode_line_noprop_buf) - start)
10167 MODE_LINE_DISPLAY
= 0,
10171 } mode_line_target
;
10173 /* Alist that caches the results of :propertize.
10174 Each element is (PROPERTIZED-STRING . PROPERTY-LIST). */
10175 static Lisp_Object mode_line_proptrans_alist
;
10177 /* List of strings making up the mode-line. */
10178 static Lisp_Object mode_line_string_list
;
10180 /* Base face property when building propertized mode line string. */
10181 static Lisp_Object mode_line_string_face
;
10182 static Lisp_Object mode_line_string_face_prop
;
10185 /* Unwind data for mode line strings */
10187 static Lisp_Object Vmode_line_unwind_vector
;
10190 format_mode_line_unwind_data (struct buffer
*obuf
,
10192 int save_proptrans
)
10194 Lisp_Object vector
, tmp
;
10196 /* Reduce consing by keeping one vector in
10197 Vwith_echo_area_save_vector. */
10198 vector
= Vmode_line_unwind_vector
;
10199 Vmode_line_unwind_vector
= Qnil
;
10202 vector
= Fmake_vector (make_number (8), Qnil
);
10204 ASET (vector
, 0, make_number (mode_line_target
));
10205 ASET (vector
, 1, make_number (MODE_LINE_NOPROP_LEN (0)));
10206 ASET (vector
, 2, mode_line_string_list
);
10207 ASET (vector
, 3, save_proptrans
? mode_line_proptrans_alist
: Qt
);
10208 ASET (vector
, 4, mode_line_string_face
);
10209 ASET (vector
, 5, mode_line_string_face_prop
);
10212 XSETBUFFER (tmp
, obuf
);
10215 ASET (vector
, 6, tmp
);
10216 ASET (vector
, 7, owin
);
10222 unwind_format_mode_line (Lisp_Object vector
)
10224 mode_line_target
= XINT (AREF (vector
, 0));
10225 mode_line_noprop_ptr
= mode_line_noprop_buf
+ XINT (AREF (vector
, 1));
10226 mode_line_string_list
= AREF (vector
, 2);
10227 if (! EQ (AREF (vector
, 3), Qt
))
10228 mode_line_proptrans_alist
= AREF (vector
, 3);
10229 mode_line_string_face
= AREF (vector
, 4);
10230 mode_line_string_face_prop
= AREF (vector
, 5);
10232 if (!NILP (AREF (vector
, 7)))
10233 /* Select window before buffer, since it may change the buffer. */
10234 Fselect_window (AREF (vector
, 7), Qt
);
10236 if (!NILP (AREF (vector
, 6)))
10238 set_buffer_internal_1 (XBUFFER (AREF (vector
, 6)));
10239 ASET (vector
, 6, Qnil
);
10242 Vmode_line_unwind_vector
= vector
;
10247 /* Store a single character C for the frame title in mode_line_noprop_buf.
10248 Re-allocate mode_line_noprop_buf if necessary. */
10251 store_mode_line_noprop_char (char c
)
10253 /* If output position has reached the end of the allocated buffer,
10254 double the buffer's size. */
10255 if (mode_line_noprop_ptr
== mode_line_noprop_buf_end
)
10257 int len
= MODE_LINE_NOPROP_LEN (0);
10258 int new_size
= 2 * len
* sizeof *mode_line_noprop_buf
;
10259 mode_line_noprop_buf
= (char *) xrealloc (mode_line_noprop_buf
, new_size
);
10260 mode_line_noprop_buf_end
= mode_line_noprop_buf
+ new_size
;
10261 mode_line_noprop_ptr
= mode_line_noprop_buf
+ len
;
10264 *mode_line_noprop_ptr
++ = c
;
10268 /* Store part of a frame title in mode_line_noprop_buf, beginning at
10269 mode_line_noprop_ptr. STRING is the string to store. Do not copy
10270 characters that yield more columns than PRECISION; PRECISION <= 0
10271 means copy the whole string. Pad with spaces until FIELD_WIDTH
10272 number of characters have been copied; FIELD_WIDTH <= 0 means don't
10273 pad. Called from display_mode_element when it is used to build a
10277 store_mode_line_noprop (const char *string
, int field_width
, int precision
)
10279 const unsigned char *str
= (const unsigned char *) string
;
10281 EMACS_INT dummy
, nbytes
;
10283 /* Copy at most PRECISION chars from STR. */
10284 nbytes
= strlen (string
);
10285 n
+= c_string_width (str
, nbytes
, precision
, &dummy
, &nbytes
);
10287 store_mode_line_noprop_char (*str
++);
10289 /* Fill up with spaces until FIELD_WIDTH reached. */
10290 while (field_width
> 0
10291 && n
< field_width
)
10293 store_mode_line_noprop_char (' ');
10300 /***********************************************************************
10302 ***********************************************************************/
10304 #ifdef HAVE_WINDOW_SYSTEM
10306 /* Set the title of FRAME, if it has changed. The title format is
10307 Vicon_title_format if FRAME is iconified, otherwise it is
10308 frame_title_format. */
10311 x_consider_frame_title (Lisp_Object frame
)
10313 struct frame
*f
= XFRAME (frame
);
10315 if (FRAME_WINDOW_P (f
)
10316 || FRAME_MINIBUF_ONLY_P (f
)
10317 || f
->explicit_name
)
10319 /* Do we have more than one visible frame on this X display? */
10326 int count
= SPECPDL_INDEX ();
10328 for (tail
= Vframe_list
; CONSP (tail
); tail
= XCDR (tail
))
10330 Lisp_Object other_frame
= XCAR (tail
);
10331 struct frame
*tf
= XFRAME (other_frame
);
10334 && FRAME_KBOARD (tf
) == FRAME_KBOARD (f
)
10335 && !FRAME_MINIBUF_ONLY_P (tf
)
10336 && !EQ (other_frame
, tip_frame
)
10337 && (FRAME_VISIBLE_P (tf
) || FRAME_ICONIFIED_P (tf
)))
10341 /* Set global variable indicating that multiple frames exist. */
10342 multiple_frames
= CONSP (tail
);
10344 /* Switch to the buffer of selected window of the frame. Set up
10345 mode_line_target so that display_mode_element will output into
10346 mode_line_noprop_buf; then display the title. */
10347 record_unwind_protect (unwind_format_mode_line
,
10348 format_mode_line_unwind_data
10349 (current_buffer
, selected_window
, 0));
10351 Fselect_window (f
->selected_window
, Qt
);
10352 set_buffer_internal_1 (XBUFFER (XWINDOW (f
->selected_window
)->buffer
));
10353 fmt
= FRAME_ICONIFIED_P (f
) ? Vicon_title_format
: Vframe_title_format
;
10355 mode_line_target
= MODE_LINE_TITLE
;
10356 title_start
= MODE_LINE_NOPROP_LEN (0);
10357 init_iterator (&it
, XWINDOW (f
->selected_window
), -1, -1,
10358 NULL
, DEFAULT_FACE_ID
);
10359 display_mode_element (&it
, 0, -1, -1, fmt
, Qnil
, 0);
10360 len
= MODE_LINE_NOPROP_LEN (title_start
);
10361 title
= mode_line_noprop_buf
+ title_start
;
10362 unbind_to (count
, Qnil
);
10364 /* Set the title only if it's changed. This avoids consing in
10365 the common case where it hasn't. (If it turns out that we've
10366 already wasted too much time by walking through the list with
10367 display_mode_element, then we might need to optimize at a
10368 higher level than this.) */
10369 if (! STRINGP (f
->name
)
10370 || SBYTES (f
->name
) != len
10371 || memcmp (title
, SDATA (f
->name
), len
) != 0)
10372 x_implicitly_set_name (f
, make_string (title
, len
), Qnil
);
10376 #endif /* not HAVE_WINDOW_SYSTEM */
10381 /***********************************************************************
10383 ***********************************************************************/
10386 /* Prepare for redisplay by updating menu-bar item lists when
10387 appropriate. This can call eval. */
10390 prepare_menu_bars (void)
10393 struct gcpro gcpro1
, gcpro2
;
10395 Lisp_Object tooltip_frame
;
10397 #ifdef HAVE_WINDOW_SYSTEM
10398 tooltip_frame
= tip_frame
;
10400 tooltip_frame
= Qnil
;
10403 /* Update all frame titles based on their buffer names, etc. We do
10404 this before the menu bars so that the buffer-menu will show the
10405 up-to-date frame titles. */
10406 #ifdef HAVE_WINDOW_SYSTEM
10407 if (windows_or_buffers_changed
|| update_mode_lines
)
10409 Lisp_Object tail
, frame
;
10411 FOR_EACH_FRAME (tail
, frame
)
10413 f
= XFRAME (frame
);
10414 if (!EQ (frame
, tooltip_frame
)
10415 && (FRAME_VISIBLE_P (f
) || FRAME_ICONIFIED_P (f
)))
10416 x_consider_frame_title (frame
);
10419 #endif /* HAVE_WINDOW_SYSTEM */
10421 /* Update the menu bar item lists, if appropriate. This has to be
10422 done before any actual redisplay or generation of display lines. */
10423 all_windows
= (update_mode_lines
10424 || buffer_shared
> 1
10425 || windows_or_buffers_changed
);
10428 Lisp_Object tail
, frame
;
10429 int count
= SPECPDL_INDEX ();
10430 /* 1 means that update_menu_bar has run its hooks
10431 so any further calls to update_menu_bar shouldn't do so again. */
10432 int menu_bar_hooks_run
= 0;
10434 record_unwind_save_match_data ();
10436 FOR_EACH_FRAME (tail
, frame
)
10438 f
= XFRAME (frame
);
10440 /* Ignore tooltip frame. */
10441 if (EQ (frame
, tooltip_frame
))
10444 /* If a window on this frame changed size, report that to
10445 the user and clear the size-change flag. */
10446 if (FRAME_WINDOW_SIZES_CHANGED (f
))
10448 Lisp_Object functions
;
10450 /* Clear flag first in case we get an error below. */
10451 FRAME_WINDOW_SIZES_CHANGED (f
) = 0;
10452 functions
= Vwindow_size_change_functions
;
10453 GCPRO2 (tail
, functions
);
10455 while (CONSP (functions
))
10457 if (!EQ (XCAR (functions
), Qt
))
10458 call1 (XCAR (functions
), frame
);
10459 functions
= XCDR (functions
);
10465 menu_bar_hooks_run
= update_menu_bar (f
, 0, menu_bar_hooks_run
);
10466 #ifdef HAVE_WINDOW_SYSTEM
10467 update_tool_bar (f
, 0);
10470 if (windows_or_buffers_changed
10472 ns_set_doc_edited (f
, Fbuffer_modified_p
10473 (XWINDOW (f
->selected_window
)->buffer
));
10478 unbind_to (count
, Qnil
);
10482 struct frame
*sf
= SELECTED_FRAME ();
10483 update_menu_bar (sf
, 1, 0);
10484 #ifdef HAVE_WINDOW_SYSTEM
10485 update_tool_bar (sf
, 1);
10491 /* Update the menu bar item list for frame F. This has to be done
10492 before we start to fill in any display lines, because it can call
10495 If SAVE_MATCH_DATA is non-zero, we must save and restore it here.
10497 If HOOKS_RUN is 1, that means a previous call to update_menu_bar
10498 already ran the menu bar hooks for this redisplay, so there
10499 is no need to run them again. The return value is the
10500 updated value of this flag, to pass to the next call. */
10503 update_menu_bar (struct frame
*f
, int save_match_data
, int hooks_run
)
10505 Lisp_Object window
;
10506 register struct window
*w
;
10508 /* If called recursively during a menu update, do nothing. This can
10509 happen when, for instance, an activate-menubar-hook causes a
10511 if (inhibit_menubar_update
)
10514 window
= FRAME_SELECTED_WINDOW (f
);
10515 w
= XWINDOW (window
);
10517 if (FRAME_WINDOW_P (f
)
10519 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
10520 || defined (HAVE_NS) || defined (USE_GTK)
10521 FRAME_EXTERNAL_MENU_BAR (f
)
10523 FRAME_MENU_BAR_LINES (f
) > 0
10525 : FRAME_MENU_BAR_LINES (f
) > 0)
10527 /* If the user has switched buffers or windows, we need to
10528 recompute to reflect the new bindings. But we'll
10529 recompute when update_mode_lines is set too; that means
10530 that people can use force-mode-line-update to request
10531 that the menu bar be recomputed. The adverse effect on
10532 the rest of the redisplay algorithm is about the same as
10533 windows_or_buffers_changed anyway. */
10534 if (windows_or_buffers_changed
10535 /* This used to test w->update_mode_line, but we believe
10536 there is no need to recompute the menu in that case. */
10537 || update_mode_lines
10538 || ((BUF_SAVE_MODIFF (XBUFFER (w
->buffer
))
10539 < BUF_MODIFF (XBUFFER (w
->buffer
)))
10540 != !NILP (w
->last_had_star
))
10541 || ((!NILP (Vtransient_mark_mode
)
10542 && !NILP (BVAR (XBUFFER (w
->buffer
), mark_active
)))
10543 != !NILP (w
->region_showing
)))
10545 struct buffer
*prev
= current_buffer
;
10546 int count
= SPECPDL_INDEX ();
10548 specbind (Qinhibit_menubar_update
, Qt
);
10550 set_buffer_internal_1 (XBUFFER (w
->buffer
));
10551 if (save_match_data
)
10552 record_unwind_save_match_data ();
10553 if (NILP (Voverriding_local_map_menu_flag
))
10555 specbind (Qoverriding_terminal_local_map
, Qnil
);
10556 specbind (Qoverriding_local_map
, Qnil
);
10561 /* Run the Lucid hook. */
10562 safe_run_hooks (Qactivate_menubar_hook
);
10564 /* If it has changed current-menubar from previous value,
10565 really recompute the menu-bar from the value. */
10566 if (! NILP (Vlucid_menu_bar_dirty_flag
))
10567 call0 (Qrecompute_lucid_menubar
);
10569 safe_run_hooks (Qmenu_bar_update_hook
);
10574 XSETFRAME (Vmenu_updating_frame
, f
);
10575 FRAME_MENU_BAR_ITEMS (f
) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f
));
10577 /* Redisplay the menu bar in case we changed it. */
10578 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
10579 || defined (HAVE_NS) || defined (USE_GTK)
10580 if (FRAME_WINDOW_P (f
))
10582 #if defined (HAVE_NS)
10583 /* All frames on Mac OS share the same menubar. So only
10584 the selected frame should be allowed to set it. */
10585 if (f
== SELECTED_FRAME ())
10587 set_frame_menubar (f
, 0, 0);
10590 /* On a terminal screen, the menu bar is an ordinary screen
10591 line, and this makes it get updated. */
10592 w
->update_mode_line
= Qt
;
10593 #else /* ! (USE_X_TOOLKIT || HAVE_NTGUI || HAVE_NS || USE_GTK) */
10594 /* In the non-toolkit version, the menu bar is an ordinary screen
10595 line, and this makes it get updated. */
10596 w
->update_mode_line
= Qt
;
10597 #endif /* ! (USE_X_TOOLKIT || HAVE_NTGUI || HAVE_NS || USE_GTK) */
10599 unbind_to (count
, Qnil
);
10600 set_buffer_internal_1 (prev
);
10609 /***********************************************************************
10611 ***********************************************************************/
10613 #ifdef HAVE_WINDOW_SYSTEM
10616 Nominal cursor position -- where to draw output.
10617 HPOS and VPOS are window relative glyph matrix coordinates.
10618 X and Y are window relative pixel coordinates. */
10620 struct cursor_pos output_cursor
;
10624 Set the global variable output_cursor to CURSOR. All cursor
10625 positions are relative to updated_window. */
10628 set_output_cursor (struct cursor_pos
*cursor
)
10630 output_cursor
.hpos
= cursor
->hpos
;
10631 output_cursor
.vpos
= cursor
->vpos
;
10632 output_cursor
.x
= cursor
->x
;
10633 output_cursor
.y
= cursor
->y
;
10638 Set a nominal cursor position.
10640 HPOS and VPOS are column/row positions in a window glyph matrix. X
10641 and Y are window text area relative pixel positions.
10643 If this is done during an update, updated_window will contain the
10644 window that is being updated and the position is the future output
10645 cursor position for that window. If updated_window is null, use
10646 selected_window and display the cursor at the given position. */
10649 x_cursor_to (int vpos
, int hpos
, int y
, int x
)
10653 /* If updated_window is not set, work on selected_window. */
10654 if (updated_window
)
10655 w
= updated_window
;
10657 w
= XWINDOW (selected_window
);
10659 /* Set the output cursor. */
10660 output_cursor
.hpos
= hpos
;
10661 output_cursor
.vpos
= vpos
;
10662 output_cursor
.x
= x
;
10663 output_cursor
.y
= y
;
10665 /* If not called as part of an update, really display the cursor.
10666 This will also set the cursor position of W. */
10667 if (updated_window
== NULL
)
10670 display_and_set_cursor (w
, 1, hpos
, vpos
, x
, y
);
10671 if (FRAME_RIF (SELECTED_FRAME ())->flush_display_optional
)
10672 FRAME_RIF (SELECTED_FRAME ())->flush_display_optional (SELECTED_FRAME ());
10677 #endif /* HAVE_WINDOW_SYSTEM */
10680 /***********************************************************************
10682 ***********************************************************************/
10684 #ifdef HAVE_WINDOW_SYSTEM
10686 /* Where the mouse was last time we reported a mouse event. */
10688 FRAME_PTR last_mouse_frame
;
10690 /* Tool-bar item index of the item on which a mouse button was pressed
10693 int last_tool_bar_item
;
10697 update_tool_bar_unwind (Lisp_Object frame
)
10699 selected_frame
= frame
;
10703 /* Update the tool-bar item list for frame F. This has to be done
10704 before we start to fill in any display lines. Called from
10705 prepare_menu_bars. If SAVE_MATCH_DATA is non-zero, we must save
10706 and restore it here. */
10709 update_tool_bar (struct frame
*f
, int save_match_data
)
10711 #if defined (USE_GTK) || defined (HAVE_NS)
10712 int do_update
= FRAME_EXTERNAL_TOOL_BAR (f
);
10714 int do_update
= WINDOWP (f
->tool_bar_window
)
10715 && WINDOW_TOTAL_LINES (XWINDOW (f
->tool_bar_window
)) > 0;
10720 Lisp_Object window
;
10723 window
= FRAME_SELECTED_WINDOW (f
);
10724 w
= XWINDOW (window
);
10726 /* If the user has switched buffers or windows, we need to
10727 recompute to reflect the new bindings. But we'll
10728 recompute when update_mode_lines is set too; that means
10729 that people can use force-mode-line-update to request
10730 that the menu bar be recomputed. The adverse effect on
10731 the rest of the redisplay algorithm is about the same as
10732 windows_or_buffers_changed anyway. */
10733 if (windows_or_buffers_changed
10734 || !NILP (w
->update_mode_line
)
10735 || update_mode_lines
10736 || ((BUF_SAVE_MODIFF (XBUFFER (w
->buffer
))
10737 < BUF_MODIFF (XBUFFER (w
->buffer
)))
10738 != !NILP (w
->last_had_star
))
10739 || ((!NILP (Vtransient_mark_mode
)
10740 && !NILP (BVAR (XBUFFER (w
->buffer
), mark_active
)))
10741 != !NILP (w
->region_showing
)))
10743 struct buffer
*prev
= current_buffer
;
10744 int count
= SPECPDL_INDEX ();
10745 Lisp_Object frame
, new_tool_bar
;
10746 int new_n_tool_bar
;
10747 struct gcpro gcpro1
;
10749 /* Set current_buffer to the buffer of the selected
10750 window of the frame, so that we get the right local
10752 set_buffer_internal_1 (XBUFFER (w
->buffer
));
10754 /* Save match data, if we must. */
10755 if (save_match_data
)
10756 record_unwind_save_match_data ();
10758 /* Make sure that we don't accidentally use bogus keymaps. */
10759 if (NILP (Voverriding_local_map_menu_flag
))
10761 specbind (Qoverriding_terminal_local_map
, Qnil
);
10762 specbind (Qoverriding_local_map
, Qnil
);
10765 GCPRO1 (new_tool_bar
);
10767 /* We must temporarily set the selected frame to this frame
10768 before calling tool_bar_items, because the calculation of
10769 the tool-bar keymap uses the selected frame (see
10770 `tool-bar-make-keymap' in tool-bar.el). */
10771 record_unwind_protect (update_tool_bar_unwind
, selected_frame
);
10772 XSETFRAME (frame
, f
);
10773 selected_frame
= frame
;
10775 /* Build desired tool-bar items from keymaps. */
10776 new_tool_bar
= tool_bar_items (Fcopy_sequence (f
->tool_bar_items
),
10779 /* Redisplay the tool-bar if we changed it. */
10780 if (new_n_tool_bar
!= f
->n_tool_bar_items
10781 || NILP (Fequal (new_tool_bar
, f
->tool_bar_items
)))
10783 /* Redisplay that happens asynchronously due to an expose event
10784 may access f->tool_bar_items. Make sure we update both
10785 variables within BLOCK_INPUT so no such event interrupts. */
10787 f
->tool_bar_items
= new_tool_bar
;
10788 f
->n_tool_bar_items
= new_n_tool_bar
;
10789 w
->update_mode_line
= Qt
;
10795 unbind_to (count
, Qnil
);
10796 set_buffer_internal_1 (prev
);
10802 /* Set F->desired_tool_bar_string to a Lisp string representing frame
10803 F's desired tool-bar contents. F->tool_bar_items must have
10804 been set up previously by calling prepare_menu_bars. */
10807 build_desired_tool_bar_string (struct frame
*f
)
10809 int i
, size
, size_needed
;
10810 struct gcpro gcpro1
, gcpro2
, gcpro3
;
10811 Lisp_Object image
, plist
, props
;
10813 image
= plist
= props
= Qnil
;
10814 GCPRO3 (image
, plist
, props
);
10816 /* Prepare F->desired_tool_bar_string. If we can reuse it, do so.
10817 Otherwise, make a new string. */
10819 /* The size of the string we might be able to reuse. */
10820 size
= (STRINGP (f
->desired_tool_bar_string
)
10821 ? SCHARS (f
->desired_tool_bar_string
)
10824 /* We need one space in the string for each image. */
10825 size_needed
= f
->n_tool_bar_items
;
10827 /* Reuse f->desired_tool_bar_string, if possible. */
10828 if (size
< size_needed
|| NILP (f
->desired_tool_bar_string
))
10829 f
->desired_tool_bar_string
= Fmake_string (make_number (size_needed
),
10830 make_number (' '));
10833 props
= list4 (Qdisplay
, Qnil
, Qmenu_item
, Qnil
);
10834 Fremove_text_properties (make_number (0), make_number (size
),
10835 props
, f
->desired_tool_bar_string
);
10838 /* Put a `display' property on the string for the images to display,
10839 put a `menu_item' property on tool-bar items with a value that
10840 is the index of the item in F's tool-bar item vector. */
10841 for (i
= 0; i
< f
->n_tool_bar_items
; ++i
)
10843 #define PROP(IDX) AREF (f->tool_bar_items, i * TOOL_BAR_ITEM_NSLOTS + (IDX))
10845 int enabled_p
= !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P
));
10846 int selected_p
= !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P
));
10847 int hmargin
, vmargin
, relief
, idx
, end
;
10849 /* If image is a vector, choose the image according to the
10851 image
= PROP (TOOL_BAR_ITEM_IMAGES
);
10852 if (VECTORP (image
))
10856 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
10857 : TOOL_BAR_IMAGE_ENABLED_DESELECTED
);
10860 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
10861 : TOOL_BAR_IMAGE_DISABLED_DESELECTED
);
10863 xassert (ASIZE (image
) >= idx
);
10864 image
= AREF (image
, idx
);
10869 /* Ignore invalid image specifications. */
10870 if (!valid_image_p (image
))
10873 /* Display the tool-bar button pressed, or depressed. */
10874 plist
= Fcopy_sequence (XCDR (image
));
10876 /* Compute margin and relief to draw. */
10877 relief
= (tool_bar_button_relief
>= 0
10878 ? tool_bar_button_relief
10879 : DEFAULT_TOOL_BAR_BUTTON_RELIEF
);
10880 hmargin
= vmargin
= relief
;
10882 if (INTEGERP (Vtool_bar_button_margin
)
10883 && XINT (Vtool_bar_button_margin
) > 0)
10885 hmargin
+= XFASTINT (Vtool_bar_button_margin
);
10886 vmargin
+= XFASTINT (Vtool_bar_button_margin
);
10888 else if (CONSP (Vtool_bar_button_margin
))
10890 if (INTEGERP (XCAR (Vtool_bar_button_margin
))
10891 && XINT (XCAR (Vtool_bar_button_margin
)) > 0)
10892 hmargin
+= XFASTINT (XCAR (Vtool_bar_button_margin
));
10894 if (INTEGERP (XCDR (Vtool_bar_button_margin
))
10895 && XINT (XCDR (Vtool_bar_button_margin
)) > 0)
10896 vmargin
+= XFASTINT (XCDR (Vtool_bar_button_margin
));
10899 if (auto_raise_tool_bar_buttons_p
)
10901 /* Add a `:relief' property to the image spec if the item is
10905 plist
= Fplist_put (plist
, QCrelief
, make_number (-relief
));
10912 /* If image is selected, display it pressed, i.e. with a
10913 negative relief. If it's not selected, display it with a
10915 plist
= Fplist_put (plist
, QCrelief
,
10917 ? make_number (-relief
)
10918 : make_number (relief
)));
10923 /* Put a margin around the image. */
10924 if (hmargin
|| vmargin
)
10926 if (hmargin
== vmargin
)
10927 plist
= Fplist_put (plist
, QCmargin
, make_number (hmargin
));
10929 plist
= Fplist_put (plist
, QCmargin
,
10930 Fcons (make_number (hmargin
),
10931 make_number (vmargin
)));
10934 /* If button is not enabled, and we don't have special images
10935 for the disabled state, make the image appear disabled by
10936 applying an appropriate algorithm to it. */
10937 if (!enabled_p
&& idx
< 0)
10938 plist
= Fplist_put (plist
, QCconversion
, Qdisabled
);
10940 /* Put a `display' text property on the string for the image to
10941 display. Put a `menu-item' property on the string that gives
10942 the start of this item's properties in the tool-bar items
10944 image
= Fcons (Qimage
, plist
);
10945 props
= list4 (Qdisplay
, image
,
10946 Qmenu_item
, make_number (i
* TOOL_BAR_ITEM_NSLOTS
));
10948 /* Let the last image hide all remaining spaces in the tool bar
10949 string. The string can be longer than needed when we reuse a
10950 previous string. */
10951 if (i
+ 1 == f
->n_tool_bar_items
)
10952 end
= SCHARS (f
->desired_tool_bar_string
);
10955 Fadd_text_properties (make_number (i
), make_number (end
),
10956 props
, f
->desired_tool_bar_string
);
10964 /* Display one line of the tool-bar of frame IT->f.
10966 HEIGHT specifies the desired height of the tool-bar line.
10967 If the actual height of the glyph row is less than HEIGHT, the
10968 row's height is increased to HEIGHT, and the icons are centered
10969 vertically in the new height.
10971 If HEIGHT is -1, we are counting needed tool-bar lines, so don't
10972 count a final empty row in case the tool-bar width exactly matches
10977 display_tool_bar_line (struct it
*it
, int height
)
10979 struct glyph_row
*row
= it
->glyph_row
;
10980 int max_x
= it
->last_visible_x
;
10981 struct glyph
*last
;
10983 prepare_desired_row (row
);
10984 row
->y
= it
->current_y
;
10986 /* Note that this isn't made use of if the face hasn't a box,
10987 so there's no need to check the face here. */
10988 it
->start_of_box_run_p
= 1;
10990 while (it
->current_x
< max_x
)
10992 int x
, n_glyphs_before
, i
, nglyphs
;
10993 struct it it_before
;
10995 /* Get the next display element. */
10996 if (!get_next_display_element (it
))
10998 /* Don't count empty row if we are counting needed tool-bar lines. */
10999 if (height
< 0 && !it
->hpos
)
11004 /* Produce glyphs. */
11005 n_glyphs_before
= row
->used
[TEXT_AREA
];
11008 PRODUCE_GLYPHS (it
);
11010 nglyphs
= row
->used
[TEXT_AREA
] - n_glyphs_before
;
11012 x
= it_before
.current_x
;
11013 while (i
< nglyphs
)
11015 struct glyph
*glyph
= row
->glyphs
[TEXT_AREA
] + n_glyphs_before
+ i
;
11017 if (x
+ glyph
->pixel_width
> max_x
)
11019 /* Glyph doesn't fit on line. Backtrack. */
11020 row
->used
[TEXT_AREA
] = n_glyphs_before
;
11022 /* If this is the only glyph on this line, it will never fit on the
11023 tool-bar, so skip it. But ensure there is at least one glyph,
11024 so we don't accidentally disable the tool-bar. */
11025 if (n_glyphs_before
== 0
11026 && (it
->vpos
> 0 || IT_STRING_CHARPOS (*it
) < it
->end_charpos
-1))
11032 x
+= glyph
->pixel_width
;
11036 /* Stop at line end. */
11037 if (ITERATOR_AT_END_OF_LINE_P (it
))
11040 set_iterator_to_next (it
, 1);
11045 row
->displays_text_p
= row
->used
[TEXT_AREA
] != 0;
11047 /* Use default face for the border below the tool bar.
11049 FIXME: When auto-resize-tool-bars is grow-only, there is
11050 no additional border below the possibly empty tool-bar lines.
11051 So to make the extra empty lines look "normal", we have to
11052 use the tool-bar face for the border too. */
11053 if (!row
->displays_text_p
&& !EQ (Vauto_resize_tool_bars
, Qgrow_only
))
11054 it
->face_id
= DEFAULT_FACE_ID
;
11056 extend_face_to_end_of_line (it
);
11057 last
= row
->glyphs
[TEXT_AREA
] + row
->used
[TEXT_AREA
] - 1;
11058 last
->right_box_line_p
= 1;
11059 if (last
== row
->glyphs
[TEXT_AREA
])
11060 last
->left_box_line_p
= 1;
11062 /* Make line the desired height and center it vertically. */
11063 if ((height
-= it
->max_ascent
+ it
->max_descent
) > 0)
11065 /* Don't add more than one line height. */
11066 height
%= FRAME_LINE_HEIGHT (it
->f
);
11067 it
->max_ascent
+= height
/ 2;
11068 it
->max_descent
+= (height
+ 1) / 2;
11071 compute_line_metrics (it
);
11073 /* If line is empty, make it occupy the rest of the tool-bar. */
11074 if (!row
->displays_text_p
)
11076 row
->height
= row
->phys_height
= it
->last_visible_y
- row
->y
;
11077 row
->visible_height
= row
->height
;
11078 row
->ascent
= row
->phys_ascent
= 0;
11079 row
->extra_line_spacing
= 0;
11082 row
->full_width_p
= 1;
11083 row
->continued_p
= 0;
11084 row
->truncated_on_left_p
= 0;
11085 row
->truncated_on_right_p
= 0;
11087 it
->current_x
= it
->hpos
= 0;
11088 it
->current_y
+= row
->height
;
11094 /* Max tool-bar height. */
11096 #define MAX_FRAME_TOOL_BAR_HEIGHT(f) \
11097 ((FRAME_LINE_HEIGHT (f) * FRAME_LINES (f)))
11099 /* Value is the number of screen lines needed to make all tool-bar
11100 items of frame F visible. The number of actual rows needed is
11101 returned in *N_ROWS if non-NULL. */
11104 tool_bar_lines_needed (struct frame
*f
, int *n_rows
)
11106 struct window
*w
= XWINDOW (f
->tool_bar_window
);
11108 /* tool_bar_lines_needed is called from redisplay_tool_bar after building
11109 the desired matrix, so use (unused) mode-line row as temporary row to
11110 avoid destroying the first tool-bar row. */
11111 struct glyph_row
*temp_row
= MATRIX_MODE_LINE_ROW (w
->desired_matrix
);
11113 /* Initialize an iterator for iteration over
11114 F->desired_tool_bar_string in the tool-bar window of frame F. */
11115 init_iterator (&it
, w
, -1, -1, temp_row
, TOOL_BAR_FACE_ID
);
11116 it
.first_visible_x
= 0;
11117 it
.last_visible_x
= FRAME_TOTAL_COLS (f
) * FRAME_COLUMN_WIDTH (f
);
11118 reseat_to_string (&it
, NULL
, f
->desired_tool_bar_string
, 0, 0, 0, -1);
11119 it
.paragraph_embedding
= L2R
;
11121 while (!ITERATOR_AT_END_P (&it
))
11123 clear_glyph_row (temp_row
);
11124 it
.glyph_row
= temp_row
;
11125 display_tool_bar_line (&it
, -1);
11127 clear_glyph_row (temp_row
);
11129 /* f->n_tool_bar_rows == 0 means "unknown"; -1 means no tool-bar. */
11131 *n_rows
= it
.vpos
> 0 ? it
.vpos
: -1;
11133 return (it
.current_y
+ FRAME_LINE_HEIGHT (f
) - 1) / FRAME_LINE_HEIGHT (f
);
11137 DEFUN ("tool-bar-lines-needed", Ftool_bar_lines_needed
, Stool_bar_lines_needed
,
11139 doc
: /* Return the number of lines occupied by the tool bar of FRAME. */)
11140 (Lisp_Object frame
)
11147 frame
= selected_frame
;
11149 CHECK_FRAME (frame
);
11150 f
= XFRAME (frame
);
11152 if (WINDOWP (f
->tool_bar_window
)
11153 || (w
= XWINDOW (f
->tool_bar_window
),
11154 WINDOW_TOTAL_LINES (w
) > 0))
11156 update_tool_bar (f
, 1);
11157 if (f
->n_tool_bar_items
)
11159 build_desired_tool_bar_string (f
);
11160 nlines
= tool_bar_lines_needed (f
, NULL
);
11164 return make_number (nlines
);
11168 /* Display the tool-bar of frame F. Value is non-zero if tool-bar's
11169 height should be changed. */
11172 redisplay_tool_bar (struct frame
*f
)
11176 struct glyph_row
*row
;
11178 #if defined (USE_GTK) || defined (HAVE_NS)
11179 if (FRAME_EXTERNAL_TOOL_BAR (f
))
11180 update_frame_tool_bar (f
);
11184 /* If frame hasn't a tool-bar window or if it is zero-height, don't
11185 do anything. This means you must start with tool-bar-lines
11186 non-zero to get the auto-sizing effect. Or in other words, you
11187 can turn off tool-bars by specifying tool-bar-lines zero. */
11188 if (!WINDOWP (f
->tool_bar_window
)
11189 || (w
= XWINDOW (f
->tool_bar_window
),
11190 WINDOW_TOTAL_LINES (w
) == 0))
11193 /* Set up an iterator for the tool-bar window. */
11194 init_iterator (&it
, w
, -1, -1, w
->desired_matrix
->rows
, TOOL_BAR_FACE_ID
);
11195 it
.first_visible_x
= 0;
11196 it
.last_visible_x
= FRAME_TOTAL_COLS (f
) * FRAME_COLUMN_WIDTH (f
);
11197 row
= it
.glyph_row
;
11199 /* Build a string that represents the contents of the tool-bar. */
11200 build_desired_tool_bar_string (f
);
11201 reseat_to_string (&it
, NULL
, f
->desired_tool_bar_string
, 0, 0, 0, -1);
11202 /* FIXME: This should be controlled by a user option. But it
11203 doesn't make sense to have an R2L tool bar if the menu bar cannot
11204 be drawn also R2L, and making the menu bar R2L is tricky due
11205 toolkit-specific code that implements it. If an R2L tool bar is
11206 ever supported, display_tool_bar_line should also be augmented to
11207 call unproduce_glyphs like display_line and display_string
11209 it
.paragraph_embedding
= L2R
;
11211 if (f
->n_tool_bar_rows
== 0)
11215 if ((nlines
= tool_bar_lines_needed (f
, &f
->n_tool_bar_rows
),
11216 nlines
!= WINDOW_TOTAL_LINES (w
)))
11219 int old_height
= WINDOW_TOTAL_LINES (w
);
11221 XSETFRAME (frame
, f
);
11222 Fmodify_frame_parameters (frame
,
11223 Fcons (Fcons (Qtool_bar_lines
,
11224 make_number (nlines
)),
11226 if (WINDOW_TOTAL_LINES (w
) != old_height
)
11228 clear_glyph_matrix (w
->desired_matrix
);
11229 fonts_changed_p
= 1;
11235 /* Display as many lines as needed to display all tool-bar items. */
11237 if (f
->n_tool_bar_rows
> 0)
11239 int border
, rows
, height
, extra
;
11241 if (INTEGERP (Vtool_bar_border
))
11242 border
= XINT (Vtool_bar_border
);
11243 else if (EQ (Vtool_bar_border
, Qinternal_border_width
))
11244 border
= FRAME_INTERNAL_BORDER_WIDTH (f
);
11245 else if (EQ (Vtool_bar_border
, Qborder_width
))
11246 border
= f
->border_width
;
11252 rows
= f
->n_tool_bar_rows
;
11253 height
= max (1, (it
.last_visible_y
- border
) / rows
);
11254 extra
= it
.last_visible_y
- border
- height
* rows
;
11256 while (it
.current_y
< it
.last_visible_y
)
11259 if (extra
> 0 && rows
-- > 0)
11261 h
= (extra
+ rows
- 1) / rows
;
11264 display_tool_bar_line (&it
, height
+ h
);
11269 while (it
.current_y
< it
.last_visible_y
)
11270 display_tool_bar_line (&it
, 0);
11273 /* It doesn't make much sense to try scrolling in the tool-bar
11274 window, so don't do it. */
11275 w
->desired_matrix
->no_scrolling_p
= 1;
11276 w
->must_be_updated_p
= 1;
11278 if (!NILP (Vauto_resize_tool_bars
))
11280 int max_tool_bar_height
= MAX_FRAME_TOOL_BAR_HEIGHT (f
);
11281 int change_height_p
= 0;
11283 /* If we couldn't display everything, change the tool-bar's
11284 height if there is room for more. */
11285 if (IT_STRING_CHARPOS (it
) < it
.end_charpos
11286 && it
.current_y
< max_tool_bar_height
)
11287 change_height_p
= 1;
11289 row
= it
.glyph_row
- 1;
11291 /* If there are blank lines at the end, except for a partially
11292 visible blank line at the end that is smaller than
11293 FRAME_LINE_HEIGHT, change the tool-bar's height. */
11294 if (!row
->displays_text_p
11295 && row
->height
>= FRAME_LINE_HEIGHT (f
))
11296 change_height_p
= 1;
11298 /* If row displays tool-bar items, but is partially visible,
11299 change the tool-bar's height. */
11300 if (row
->displays_text_p
11301 && MATRIX_ROW_BOTTOM_Y (row
) > it
.last_visible_y
11302 && MATRIX_ROW_BOTTOM_Y (row
) < max_tool_bar_height
)
11303 change_height_p
= 1;
11305 /* Resize windows as needed by changing the `tool-bar-lines'
11306 frame parameter. */
11307 if (change_height_p
)
11310 int old_height
= WINDOW_TOTAL_LINES (w
);
11312 int nlines
= tool_bar_lines_needed (f
, &nrows
);
11314 change_height_p
= ((EQ (Vauto_resize_tool_bars
, Qgrow_only
)
11315 && !f
->minimize_tool_bar_window_p
)
11316 ? (nlines
> old_height
)
11317 : (nlines
!= old_height
));
11318 f
->minimize_tool_bar_window_p
= 0;
11320 if (change_height_p
)
11322 XSETFRAME (frame
, f
);
11323 Fmodify_frame_parameters (frame
,
11324 Fcons (Fcons (Qtool_bar_lines
,
11325 make_number (nlines
)),
11327 if (WINDOW_TOTAL_LINES (w
) != old_height
)
11329 clear_glyph_matrix (w
->desired_matrix
);
11330 f
->n_tool_bar_rows
= nrows
;
11331 fonts_changed_p
= 1;
11338 f
->minimize_tool_bar_window_p
= 0;
11343 /* Get information about the tool-bar item which is displayed in GLYPH
11344 on frame F. Return in *PROP_IDX the index where tool-bar item
11345 properties start in F->tool_bar_items. Value is zero if
11346 GLYPH doesn't display a tool-bar item. */
11349 tool_bar_item_info (struct frame
*f
, struct glyph
*glyph
, int *prop_idx
)
11355 /* This function can be called asynchronously, which means we must
11356 exclude any possibility that Fget_text_property signals an
11358 charpos
= min (SCHARS (f
->current_tool_bar_string
), glyph
->charpos
);
11359 charpos
= max (0, charpos
);
11361 /* Get the text property `menu-item' at pos. The value of that
11362 property is the start index of this item's properties in
11363 F->tool_bar_items. */
11364 prop
= Fget_text_property (make_number (charpos
),
11365 Qmenu_item
, f
->current_tool_bar_string
);
11366 if (INTEGERP (prop
))
11368 *prop_idx
= XINT (prop
);
11378 /* Get information about the tool-bar item at position X/Y on frame F.
11379 Return in *GLYPH a pointer to the glyph of the tool-bar item in
11380 the current matrix of the tool-bar window of F, or NULL if not
11381 on a tool-bar item. Return in *PROP_IDX the index of the tool-bar
11382 item in F->tool_bar_items. Value is
11384 -1 if X/Y is not on a tool-bar item
11385 0 if X/Y is on the same item that was highlighted before.
11389 get_tool_bar_item (struct frame
*f
, int x
, int y
, struct glyph
**glyph
,
11390 int *hpos
, int *vpos
, int *prop_idx
)
11392 Mouse_HLInfo
*hlinfo
= MOUSE_HL_INFO (f
);
11393 struct window
*w
= XWINDOW (f
->tool_bar_window
);
11396 /* Find the glyph under X/Y. */
11397 *glyph
= x_y_to_hpos_vpos (w
, x
, y
, hpos
, vpos
, 0, 0, &area
);
11398 if (*glyph
== NULL
)
11401 /* Get the start of this tool-bar item's properties in
11402 f->tool_bar_items. */
11403 if (!tool_bar_item_info (f
, *glyph
, prop_idx
))
11406 /* Is mouse on the highlighted item? */
11407 if (EQ (f
->tool_bar_window
, hlinfo
->mouse_face_window
)
11408 && *vpos
>= hlinfo
->mouse_face_beg_row
11409 && *vpos
<= hlinfo
->mouse_face_end_row
11410 && (*vpos
> hlinfo
->mouse_face_beg_row
11411 || *hpos
>= hlinfo
->mouse_face_beg_col
)
11412 && (*vpos
< hlinfo
->mouse_face_end_row
11413 || *hpos
< hlinfo
->mouse_face_end_col
11414 || hlinfo
->mouse_face_past_end
))
11422 Handle mouse button event on the tool-bar of frame F, at
11423 frame-relative coordinates X/Y. DOWN_P is 1 for a button press,
11424 0 for button release. MODIFIERS is event modifiers for button
11428 handle_tool_bar_click (struct frame
*f
, int x
, int y
, int down_p
,
11429 unsigned int modifiers
)
11431 Mouse_HLInfo
*hlinfo
= MOUSE_HL_INFO (f
);
11432 struct window
*w
= XWINDOW (f
->tool_bar_window
);
11433 int hpos
, vpos
, prop_idx
;
11434 struct glyph
*glyph
;
11435 Lisp_Object enabled_p
;
11437 /* If not on the highlighted tool-bar item, return. */
11438 frame_to_window_pixel_xy (w
, &x
, &y
);
11439 if (get_tool_bar_item (f
, x
, y
, &glyph
, &hpos
, &vpos
, &prop_idx
) != 0)
11442 /* If item is disabled, do nothing. */
11443 enabled_p
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_ENABLED_P
);
11444 if (NILP (enabled_p
))
11449 /* Show item in pressed state. */
11450 show_mouse_face (hlinfo
, DRAW_IMAGE_SUNKEN
);
11451 hlinfo
->mouse_face_image_state
= DRAW_IMAGE_SUNKEN
;
11452 last_tool_bar_item
= prop_idx
;
11456 Lisp_Object key
, frame
;
11457 struct input_event event
;
11458 EVENT_INIT (event
);
11460 /* Show item in released state. */
11461 show_mouse_face (hlinfo
, DRAW_IMAGE_RAISED
);
11462 hlinfo
->mouse_face_image_state
= DRAW_IMAGE_RAISED
;
11464 key
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_KEY
);
11466 XSETFRAME (frame
, f
);
11467 event
.kind
= TOOL_BAR_EVENT
;
11468 event
.frame_or_window
= frame
;
11470 kbd_buffer_store_event (&event
);
11472 event
.kind
= TOOL_BAR_EVENT
;
11473 event
.frame_or_window
= frame
;
11475 event
.modifiers
= modifiers
;
11476 kbd_buffer_store_event (&event
);
11477 last_tool_bar_item
= -1;
11482 /* Possibly highlight a tool-bar item on frame F when mouse moves to
11483 tool-bar window-relative coordinates X/Y. Called from
11484 note_mouse_highlight. */
11487 note_tool_bar_highlight (struct frame
*f
, int x
, int y
)
11489 Lisp_Object window
= f
->tool_bar_window
;
11490 struct window
*w
= XWINDOW (window
);
11491 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
11492 Mouse_HLInfo
*hlinfo
= MOUSE_HL_INFO (f
);
11494 struct glyph
*glyph
;
11495 struct glyph_row
*row
;
11497 Lisp_Object enabled_p
;
11499 enum draw_glyphs_face draw
= DRAW_IMAGE_RAISED
;
11500 int mouse_down_p
, rc
;
11502 /* Function note_mouse_highlight is called with negative X/Y
11503 values when mouse moves outside of the frame. */
11504 if (x
<= 0 || y
<= 0)
11506 clear_mouse_face (hlinfo
);
11510 rc
= get_tool_bar_item (f
, x
, y
, &glyph
, &hpos
, &vpos
, &prop_idx
);
11513 /* Not on tool-bar item. */
11514 clear_mouse_face (hlinfo
);
11518 /* On same tool-bar item as before. */
11519 goto set_help_echo
;
11521 clear_mouse_face (hlinfo
);
11523 /* Mouse is down, but on different tool-bar item? */
11524 mouse_down_p
= (dpyinfo
->grabbed
11525 && f
== last_mouse_frame
11526 && FRAME_LIVE_P (f
));
11528 && last_tool_bar_item
!= prop_idx
)
11531 hlinfo
->mouse_face_image_state
= DRAW_NORMAL_TEXT
;
11532 draw
= mouse_down_p
? DRAW_IMAGE_SUNKEN
: DRAW_IMAGE_RAISED
;
11534 /* If tool-bar item is not enabled, don't highlight it. */
11535 enabled_p
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_ENABLED_P
);
11536 if (!NILP (enabled_p
))
11538 /* Compute the x-position of the glyph. In front and past the
11539 image is a space. We include this in the highlighted area. */
11540 row
= MATRIX_ROW (w
->current_matrix
, vpos
);
11541 for (i
= x
= 0; i
< hpos
; ++i
)
11542 x
+= row
->glyphs
[TEXT_AREA
][i
].pixel_width
;
11544 /* Record this as the current active region. */
11545 hlinfo
->mouse_face_beg_col
= hpos
;
11546 hlinfo
->mouse_face_beg_row
= vpos
;
11547 hlinfo
->mouse_face_beg_x
= x
;
11548 hlinfo
->mouse_face_beg_y
= row
->y
;
11549 hlinfo
->mouse_face_past_end
= 0;
11551 hlinfo
->mouse_face_end_col
= hpos
+ 1;
11552 hlinfo
->mouse_face_end_row
= vpos
;
11553 hlinfo
->mouse_face_end_x
= x
+ glyph
->pixel_width
;
11554 hlinfo
->mouse_face_end_y
= row
->y
;
11555 hlinfo
->mouse_face_window
= window
;
11556 hlinfo
->mouse_face_face_id
= TOOL_BAR_FACE_ID
;
11558 /* Display it as active. */
11559 show_mouse_face (hlinfo
, draw
);
11560 hlinfo
->mouse_face_image_state
= draw
;
11565 /* Set help_echo_string to a help string to display for this tool-bar item.
11566 XTread_socket does the rest. */
11567 help_echo_object
= help_echo_window
= Qnil
;
11568 help_echo_pos
= -1;
11569 help_echo_string
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_HELP
);
11570 if (NILP (help_echo_string
))
11571 help_echo_string
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_CAPTION
);
11574 #endif /* HAVE_WINDOW_SYSTEM */
11578 /************************************************************************
11579 Horizontal scrolling
11580 ************************************************************************/
11582 static int hscroll_window_tree (Lisp_Object
);
11583 static int hscroll_windows (Lisp_Object
);
11585 /* For all leaf windows in the window tree rooted at WINDOW, set their
11586 hscroll value so that PT is (i) visible in the window, and (ii) so
11587 that it is not within a certain margin at the window's left and
11588 right border. Value is non-zero if any window's hscroll has been
11592 hscroll_window_tree (Lisp_Object window
)
11594 int hscrolled_p
= 0;
11595 int hscroll_relative_p
= FLOATP (Vhscroll_step
);
11596 int hscroll_step_abs
= 0;
11597 double hscroll_step_rel
= 0;
11599 if (hscroll_relative_p
)
11601 hscroll_step_rel
= XFLOAT_DATA (Vhscroll_step
);
11602 if (hscroll_step_rel
< 0)
11604 hscroll_relative_p
= 0;
11605 hscroll_step_abs
= 0;
11608 else if (INTEGERP (Vhscroll_step
))
11610 hscroll_step_abs
= XINT (Vhscroll_step
);
11611 if (hscroll_step_abs
< 0)
11612 hscroll_step_abs
= 0;
11615 hscroll_step_abs
= 0;
11617 while (WINDOWP (window
))
11619 struct window
*w
= XWINDOW (window
);
11621 if (WINDOWP (w
->hchild
))
11622 hscrolled_p
|= hscroll_window_tree (w
->hchild
);
11623 else if (WINDOWP (w
->vchild
))
11624 hscrolled_p
|= hscroll_window_tree (w
->vchild
);
11625 else if (w
->cursor
.vpos
>= 0)
11628 int text_area_width
;
11629 struct glyph_row
*current_cursor_row
11630 = MATRIX_ROW (w
->current_matrix
, w
->cursor
.vpos
);
11631 struct glyph_row
*desired_cursor_row
11632 = MATRIX_ROW (w
->desired_matrix
, w
->cursor
.vpos
);
11633 struct glyph_row
*cursor_row
11634 = (desired_cursor_row
->enabled_p
11635 ? desired_cursor_row
11636 : current_cursor_row
);
11638 text_area_width
= window_box_width (w
, TEXT_AREA
);
11640 /* Scroll when cursor is inside this scroll margin. */
11641 h_margin
= hscroll_margin
* WINDOW_FRAME_COLUMN_WIDTH (w
);
11643 if (!NILP (Fbuffer_local_value (Qauto_hscroll_mode
, w
->buffer
))
11644 && ((XFASTINT (w
->hscroll
)
11645 && w
->cursor
.x
<= h_margin
)
11646 || (cursor_row
->enabled_p
11647 && cursor_row
->truncated_on_right_p
11648 && (w
->cursor
.x
>= text_area_width
- h_margin
))))
11652 struct buffer
*saved_current_buffer
;
11656 /* Find point in a display of infinite width. */
11657 saved_current_buffer
= current_buffer
;
11658 current_buffer
= XBUFFER (w
->buffer
);
11660 if (w
== XWINDOW (selected_window
))
11664 pt
= marker_position (w
->pointm
);
11665 pt
= max (BEGV
, pt
);
11669 /* Move iterator to pt starting at cursor_row->start in
11670 a line with infinite width. */
11671 init_to_row_start (&it
, w
, cursor_row
);
11672 it
.last_visible_x
= INFINITY
;
11673 move_it_in_display_line_to (&it
, pt
, -1, MOVE_TO_POS
);
11674 current_buffer
= saved_current_buffer
;
11676 /* Position cursor in window. */
11677 if (!hscroll_relative_p
&& hscroll_step_abs
== 0)
11678 hscroll
= max (0, (it
.current_x
11679 - (ITERATOR_AT_END_OF_LINE_P (&it
)
11680 ? (text_area_width
- 4 * FRAME_COLUMN_WIDTH (it
.f
))
11681 : (text_area_width
/ 2))))
11682 / FRAME_COLUMN_WIDTH (it
.f
);
11683 else if (w
->cursor
.x
>= text_area_width
- h_margin
)
11685 if (hscroll_relative_p
)
11686 wanted_x
= text_area_width
* (1 - hscroll_step_rel
)
11689 wanted_x
= text_area_width
11690 - hscroll_step_abs
* FRAME_COLUMN_WIDTH (it
.f
)
11693 = max (0, it
.current_x
- wanted_x
) / FRAME_COLUMN_WIDTH (it
.f
);
11697 if (hscroll_relative_p
)
11698 wanted_x
= text_area_width
* hscroll_step_rel
11701 wanted_x
= hscroll_step_abs
* FRAME_COLUMN_WIDTH (it
.f
)
11704 = max (0, it
.current_x
- wanted_x
) / FRAME_COLUMN_WIDTH (it
.f
);
11706 hscroll
= max (hscroll
, XFASTINT (w
->min_hscroll
));
11708 /* Don't call Fset_window_hscroll if value hasn't
11709 changed because it will prevent redisplay
11711 if (XFASTINT (w
->hscroll
) != hscroll
)
11713 XBUFFER (w
->buffer
)->prevent_redisplay_optimizations_p
= 1;
11714 w
->hscroll
= make_number (hscroll
);
11723 /* Value is non-zero if hscroll of any leaf window has been changed. */
11724 return hscrolled_p
;
11728 /* Set hscroll so that cursor is visible and not inside horizontal
11729 scroll margins for all windows in the tree rooted at WINDOW. See
11730 also hscroll_window_tree above. Value is non-zero if any window's
11731 hscroll has been changed. If it has, desired matrices on the frame
11732 of WINDOW are cleared. */
11735 hscroll_windows (Lisp_Object window
)
11737 int hscrolled_p
= hscroll_window_tree (window
);
11739 clear_desired_matrices (XFRAME (WINDOW_FRAME (XWINDOW (window
))));
11740 return hscrolled_p
;
11745 /************************************************************************
11747 ************************************************************************/
11749 /* Variables holding some state of redisplay if GLYPH_DEBUG is defined
11750 to a non-zero value. This is sometimes handy to have in a debugger
11755 /* First and last unchanged row for try_window_id. */
11757 int debug_first_unchanged_at_end_vpos
;
11758 int debug_last_unchanged_at_beg_vpos
;
11760 /* Delta vpos and y. */
11762 int debug_dvpos
, debug_dy
;
11764 /* Delta in characters and bytes for try_window_id. */
11766 EMACS_INT debug_delta
, debug_delta_bytes
;
11768 /* Values of window_end_pos and window_end_vpos at the end of
11771 EMACS_INT debug_end_vpos
;
11773 /* Append a string to W->desired_matrix->method. FMT is a printf
11774 format string. A1...A9 are a supplement for a variable-length
11775 argument list. If trace_redisplay_p is non-zero also printf the
11776 resulting string to stderr. */
11779 debug_method_add (w
, fmt
, a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
, a9
)
11782 int a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
, a9
;
11785 char *method
= w
->desired_matrix
->method
;
11786 int len
= strlen (method
);
11787 int size
= sizeof w
->desired_matrix
->method
;
11788 int remaining
= size
- len
- 1;
11790 sprintf (buffer
, fmt
, a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
, a9
);
11791 if (len
&& remaining
)
11794 --remaining
, ++len
;
11797 strncpy (method
+ len
, buffer
, remaining
);
11799 if (trace_redisplay_p
)
11800 fprintf (stderr
, "%p (%s): %s\n",
11802 ((BUFFERP (w
->buffer
)
11803 && STRINGP (XBUFFER (w
->buffer
)->name
))
11804 ? SSDATA (XBUFFER (w
->buffer
)->name
)
11809 #endif /* GLYPH_DEBUG */
11812 /* Value is non-zero if all changes in window W, which displays
11813 current_buffer, are in the text between START and END. START is a
11814 buffer position, END is given as a distance from Z. Used in
11815 redisplay_internal for display optimization. */
11818 text_outside_line_unchanged_p (struct window
*w
,
11819 EMACS_INT start
, EMACS_INT end
)
11821 int unchanged_p
= 1;
11823 /* If text or overlays have changed, see where. */
11824 if (XFASTINT (w
->last_modified
) < MODIFF
11825 || XFASTINT (w
->last_overlay_modified
) < OVERLAY_MODIFF
)
11827 /* Gap in the line? */
11828 if (GPT
< start
|| Z
- GPT
< end
)
11831 /* Changes start in front of the line, or end after it? */
11833 && (BEG_UNCHANGED
< start
- 1
11834 || END_UNCHANGED
< end
))
11837 /* If selective display, can't optimize if changes start at the
11838 beginning of the line. */
11840 && INTEGERP (BVAR (current_buffer
, selective_display
))
11841 && XINT (BVAR (current_buffer
, selective_display
)) > 0
11842 && (BEG_UNCHANGED
< start
|| GPT
<= start
))
11845 /* If there are overlays at the start or end of the line, these
11846 may have overlay strings with newlines in them. A change at
11847 START, for instance, may actually concern the display of such
11848 overlay strings as well, and they are displayed on different
11849 lines. So, quickly rule out this case. (For the future, it
11850 might be desirable to implement something more telling than
11851 just BEG/END_UNCHANGED.) */
11854 if (BEG
+ BEG_UNCHANGED
== start
11855 && overlay_touches_p (start
))
11857 if (END_UNCHANGED
== end
11858 && overlay_touches_p (Z
- end
))
11862 /* Under bidi reordering, adding or deleting a character in the
11863 beginning of a paragraph, before the first strong directional
11864 character, can change the base direction of the paragraph (unless
11865 the buffer specifies a fixed paragraph direction), which will
11866 require to redisplay the whole paragraph. It might be worthwhile
11867 to find the paragraph limits and widen the range of redisplayed
11868 lines to that, but for now just give up this optimization. */
11869 if (!NILP (BVAR (XBUFFER (w
->buffer
), bidi_display_reordering
))
11870 && NILP (BVAR (XBUFFER (w
->buffer
), bidi_paragraph_direction
)))
11874 return unchanged_p
;
11878 /* Do a frame update, taking possible shortcuts into account. This is
11879 the main external entry point for redisplay.
11881 If the last redisplay displayed an echo area message and that message
11882 is no longer requested, we clear the echo area or bring back the
11883 mini-buffer if that is in use. */
11888 redisplay_internal ();
11893 overlay_arrow_string_or_property (Lisp_Object var
)
11897 if (val
= Fget (var
, Qoverlay_arrow_string
), STRINGP (val
))
11900 return Voverlay_arrow_string
;
11903 /* Return 1 if there are any overlay-arrows in current_buffer. */
11905 overlay_arrow_in_current_buffer_p (void)
11909 for (vlist
= Voverlay_arrow_variable_list
;
11911 vlist
= XCDR (vlist
))
11913 Lisp_Object var
= XCAR (vlist
);
11916 if (!SYMBOLP (var
))
11918 val
= find_symbol_value (var
);
11920 && current_buffer
== XMARKER (val
)->buffer
)
11927 /* Return 1 if any overlay_arrows have moved or overlay-arrow-string
11931 overlay_arrows_changed_p (void)
11935 for (vlist
= Voverlay_arrow_variable_list
;
11937 vlist
= XCDR (vlist
))
11939 Lisp_Object var
= XCAR (vlist
);
11940 Lisp_Object val
, pstr
;
11942 if (!SYMBOLP (var
))
11944 val
= find_symbol_value (var
);
11945 if (!MARKERP (val
))
11947 if (! EQ (COERCE_MARKER (val
),
11948 Fget (var
, Qlast_arrow_position
))
11949 || ! (pstr
= overlay_arrow_string_or_property (var
),
11950 EQ (pstr
, Fget (var
, Qlast_arrow_string
))))
11956 /* Mark overlay arrows to be updated on next redisplay. */
11959 update_overlay_arrows (int up_to_date
)
11963 for (vlist
= Voverlay_arrow_variable_list
;
11965 vlist
= XCDR (vlist
))
11967 Lisp_Object var
= XCAR (vlist
);
11969 if (!SYMBOLP (var
))
11972 if (up_to_date
> 0)
11974 Lisp_Object val
= find_symbol_value (var
);
11975 Fput (var
, Qlast_arrow_position
,
11976 COERCE_MARKER (val
));
11977 Fput (var
, Qlast_arrow_string
,
11978 overlay_arrow_string_or_property (var
));
11980 else if (up_to_date
< 0
11981 || !NILP (Fget (var
, Qlast_arrow_position
)))
11983 Fput (var
, Qlast_arrow_position
, Qt
);
11984 Fput (var
, Qlast_arrow_string
, Qt
);
11990 /* Return overlay arrow string to display at row.
11991 Return integer (bitmap number) for arrow bitmap in left fringe.
11992 Return nil if no overlay arrow. */
11995 overlay_arrow_at_row (struct it
*it
, struct glyph_row
*row
)
11999 for (vlist
= Voverlay_arrow_variable_list
;
12001 vlist
= XCDR (vlist
))
12003 Lisp_Object var
= XCAR (vlist
);
12006 if (!SYMBOLP (var
))
12009 val
= find_symbol_value (var
);
12012 && current_buffer
== XMARKER (val
)->buffer
12013 && (MATRIX_ROW_START_CHARPOS (row
) == marker_position (val
)))
12015 if (FRAME_WINDOW_P (it
->f
)
12016 /* FIXME: if ROW->reversed_p is set, this should test
12017 the right fringe, not the left one. */
12018 && WINDOW_LEFT_FRINGE_WIDTH (it
->w
) > 0)
12020 #ifdef HAVE_WINDOW_SYSTEM
12021 if (val
= Fget (var
, Qoverlay_arrow_bitmap
), SYMBOLP (val
))
12024 if ((fringe_bitmap
= lookup_fringe_bitmap (val
)) != 0)
12025 return make_number (fringe_bitmap
);
12028 return make_number (-1); /* Use default arrow bitmap */
12030 return overlay_arrow_string_or_property (var
);
12037 /* Return 1 if point moved out of or into a composition. Otherwise
12038 return 0. PREV_BUF and PREV_PT are the last point buffer and
12039 position. BUF and PT are the current point buffer and position. */
12042 check_point_in_composition (struct buffer
*prev_buf
, EMACS_INT prev_pt
,
12043 struct buffer
*buf
, EMACS_INT pt
)
12045 EMACS_INT start
, end
;
12047 Lisp_Object buffer
;
12049 XSETBUFFER (buffer
, buf
);
12050 /* Check a composition at the last point if point moved within the
12052 if (prev_buf
== buf
)
12055 /* Point didn't move. */
12058 if (prev_pt
> BUF_BEGV (buf
) && prev_pt
< BUF_ZV (buf
)
12059 && find_composition (prev_pt
, -1, &start
, &end
, &prop
, buffer
)
12060 && COMPOSITION_VALID_P (start
, end
, prop
)
12061 && start
< prev_pt
&& end
> prev_pt
)
12062 /* The last point was within the composition. Return 1 iff
12063 point moved out of the composition. */
12064 return (pt
<= start
|| pt
>= end
);
12067 /* Check a composition at the current point. */
12068 return (pt
> BUF_BEGV (buf
) && pt
< BUF_ZV (buf
)
12069 && find_composition (pt
, -1, &start
, &end
, &prop
, buffer
)
12070 && COMPOSITION_VALID_P (start
, end
, prop
)
12071 && start
< pt
&& end
> pt
);
12075 /* Reconsider the setting of B->clip_changed which is displayed
12079 reconsider_clip_changes (struct window
*w
, struct buffer
*b
)
12081 if (b
->clip_changed
12082 && !NILP (w
->window_end_valid
)
12083 && w
->current_matrix
->buffer
== b
12084 && w
->current_matrix
->zv
== BUF_ZV (b
)
12085 && w
->current_matrix
->begv
== BUF_BEGV (b
))
12086 b
->clip_changed
= 0;
12088 /* If display wasn't paused, and W is not a tool bar window, see if
12089 point has been moved into or out of a composition. In that case,
12090 we set b->clip_changed to 1 to force updating the screen. If
12091 b->clip_changed has already been set to 1, we can skip this
12093 if (!b
->clip_changed
12094 && BUFFERP (w
->buffer
) && !NILP (w
->window_end_valid
))
12098 if (w
== XWINDOW (selected_window
))
12101 pt
= marker_position (w
->pointm
);
12103 if ((w
->current_matrix
->buffer
!= XBUFFER (w
->buffer
)
12104 || pt
!= XINT (w
->last_point
))
12105 && check_point_in_composition (w
->current_matrix
->buffer
,
12106 XINT (w
->last_point
),
12107 XBUFFER (w
->buffer
), pt
))
12108 b
->clip_changed
= 1;
12113 /* Select FRAME to forward the values of frame-local variables into C
12114 variables so that the redisplay routines can access those values
12118 select_frame_for_redisplay (Lisp_Object frame
)
12120 Lisp_Object tail
, tem
;
12121 Lisp_Object old
= selected_frame
;
12122 struct Lisp_Symbol
*sym
;
12124 xassert (FRAMEP (frame
) && FRAME_LIVE_P (XFRAME (frame
)));
12126 selected_frame
= frame
;
12129 for (tail
= XFRAME (frame
)->param_alist
; CONSP (tail
); tail
= XCDR (tail
))
12130 if (CONSP (XCAR (tail
))
12131 && (tem
= XCAR (XCAR (tail
)),
12133 && (sym
= indirect_variable (XSYMBOL (tem
)),
12134 sym
->redirect
== SYMBOL_LOCALIZED
)
12135 && sym
->val
.blv
->frame_local
)
12136 /* Use find_symbol_value rather than Fsymbol_value
12137 to avoid an error if it is void. */
12138 find_symbol_value (tem
);
12139 } while (!EQ (frame
, old
) && (frame
= old
, 1));
12143 #define STOP_POLLING \
12144 do { if (! polling_stopped_here) stop_polling (); \
12145 polling_stopped_here = 1; } while (0)
12147 #define RESUME_POLLING \
12148 do { if (polling_stopped_here) start_polling (); \
12149 polling_stopped_here = 0; } while (0)
12152 /* Perhaps in the future avoid recentering windows if it
12153 is not necessary; currently that causes some problems. */
12156 redisplay_internal (void)
12158 struct window
*w
= XWINDOW (selected_window
);
12162 int must_finish
= 0;
12163 struct text_pos tlbufpos
, tlendpos
;
12164 int number_of_visible_frames
;
12167 int polling_stopped_here
= 0;
12168 Lisp_Object old_frame
= selected_frame
;
12170 /* Non-zero means redisplay has to consider all windows on all
12171 frames. Zero means, only selected_window is considered. */
12172 int consider_all_windows_p
;
12174 TRACE ((stderr
, "redisplay_internal %d\n", redisplaying_p
));
12176 /* No redisplay if running in batch mode or frame is not yet fully
12177 initialized, or redisplay is explicitly turned off by setting
12178 Vinhibit_redisplay. */
12179 if (FRAME_INITIAL_P (SELECTED_FRAME ())
12180 || !NILP (Vinhibit_redisplay
))
12183 /* Don't examine these until after testing Vinhibit_redisplay.
12184 When Emacs is shutting down, perhaps because its connection to
12185 X has dropped, we should not look at them at all. */
12186 fr
= XFRAME (w
->frame
);
12187 sf
= SELECTED_FRAME ();
12189 if (!fr
->glyphs_initialized_p
)
12192 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NS)
12193 if (popup_activated ())
12197 /* I don't think this happens but let's be paranoid. */
12198 if (redisplaying_p
)
12201 /* Record a function that resets redisplaying_p to its old value
12202 when we leave this function. */
12203 count
= SPECPDL_INDEX ();
12204 record_unwind_protect (unwind_redisplay
,
12205 Fcons (make_number (redisplaying_p
), selected_frame
));
12207 specbind (Qinhibit_free_realized_faces
, Qnil
);
12210 Lisp_Object tail
, frame
;
12212 FOR_EACH_FRAME (tail
, frame
)
12214 struct frame
*f
= XFRAME (frame
);
12215 f
->already_hscrolled_p
= 0;
12220 /* Remember the currently selected window. */
12223 if (!EQ (old_frame
, selected_frame
)
12224 && FRAME_LIVE_P (XFRAME (old_frame
)))
12225 /* When running redisplay, we play a bit fast-and-loose and allow e.g.
12226 selected_frame and selected_window to be temporarily out-of-sync so
12227 when we come back here via `goto retry', we need to resync because we
12228 may need to run Elisp code (via prepare_menu_bars). */
12229 select_frame_for_redisplay (old_frame
);
12232 reconsider_clip_changes (w
, current_buffer
);
12233 last_escape_glyph_frame
= NULL
;
12234 last_escape_glyph_face_id
= (1 << FACE_ID_BITS
);
12235 last_glyphless_glyph_frame
= NULL
;
12236 last_glyphless_glyph_face_id
= (1 << FACE_ID_BITS
);
12238 /* If new fonts have been loaded that make a glyph matrix adjustment
12239 necessary, do it. */
12240 if (fonts_changed_p
)
12242 adjust_glyphs (NULL
);
12243 ++windows_or_buffers_changed
;
12244 fonts_changed_p
= 0;
12247 /* If face_change_count is non-zero, init_iterator will free all
12248 realized faces, which includes the faces referenced from current
12249 matrices. So, we can't reuse current matrices in this case. */
12250 if (face_change_count
)
12251 ++windows_or_buffers_changed
;
12253 if ((FRAME_TERMCAP_P (sf
) || FRAME_MSDOS_P (sf
))
12254 && FRAME_TTY (sf
)->previous_frame
!= sf
)
12256 /* Since frames on a single ASCII terminal share the same
12257 display area, displaying a different frame means redisplay
12258 the whole thing. */
12259 windows_or_buffers_changed
++;
12260 SET_FRAME_GARBAGED (sf
);
12262 set_tty_color_mode (FRAME_TTY (sf
), sf
);
12264 FRAME_TTY (sf
)->previous_frame
= sf
;
12267 /* Set the visible flags for all frames. Do this before checking
12268 for resized or garbaged frames; they want to know if their frames
12269 are visible. See the comment in frame.h for
12270 FRAME_SAMPLE_VISIBILITY. */
12272 Lisp_Object tail
, frame
;
12274 number_of_visible_frames
= 0;
12276 FOR_EACH_FRAME (tail
, frame
)
12278 struct frame
*f
= XFRAME (frame
);
12280 FRAME_SAMPLE_VISIBILITY (f
);
12281 if (FRAME_VISIBLE_P (f
))
12282 ++number_of_visible_frames
;
12283 clear_desired_matrices (f
);
12287 /* Notice any pending interrupt request to change frame size. */
12288 do_pending_window_change (1);
12290 /* do_pending_window_change could change the selected_window due to
12291 frame resizing which makes the selected window too small. */
12292 if (WINDOWP (selected_window
) && (w
= XWINDOW (selected_window
)) != sw
)
12295 reconsider_clip_changes (w
, current_buffer
);
12298 /* Clear frames marked as garbaged. */
12299 if (frame_garbaged
)
12300 clear_garbaged_frames ();
12302 /* Build menubar and tool-bar items. */
12303 if (NILP (Vmemory_full
))
12304 prepare_menu_bars ();
12306 if (windows_or_buffers_changed
)
12307 update_mode_lines
++;
12309 /* Detect case that we need to write or remove a star in the mode line. */
12310 if ((SAVE_MODIFF
< MODIFF
) != !NILP (w
->last_had_star
))
12312 w
->update_mode_line
= Qt
;
12313 if (buffer_shared
> 1)
12314 update_mode_lines
++;
12317 /* Avoid invocation of point motion hooks by `current_column' below. */
12318 count1
= SPECPDL_INDEX ();
12319 specbind (Qinhibit_point_motion_hooks
, Qt
);
12321 /* If %c is in the mode line, update it if needed. */
12322 if (!NILP (w
->column_number_displayed
)
12323 /* This alternative quickly identifies a common case
12324 where no change is needed. */
12325 && !(PT
== XFASTINT (w
->last_point
)
12326 && XFASTINT (w
->last_modified
) >= MODIFF
12327 && XFASTINT (w
->last_overlay_modified
) >= OVERLAY_MODIFF
)
12328 && (XFASTINT (w
->column_number_displayed
) != current_column ()))
12329 w
->update_mode_line
= Qt
;
12331 unbind_to (count1
, Qnil
);
12333 FRAME_SCROLL_BOTTOM_VPOS (XFRAME (w
->frame
)) = -1;
12335 /* The variable buffer_shared is set in redisplay_window and
12336 indicates that we redisplay a buffer in different windows. See
12338 consider_all_windows_p
= (update_mode_lines
|| buffer_shared
> 1
12339 || cursor_type_changed
);
12341 /* If specs for an arrow have changed, do thorough redisplay
12342 to ensure we remove any arrow that should no longer exist. */
12343 if (overlay_arrows_changed_p ())
12344 consider_all_windows_p
= windows_or_buffers_changed
= 1;
12346 /* Normally the message* functions will have already displayed and
12347 updated the echo area, but the frame may have been trashed, or
12348 the update may have been preempted, so display the echo area
12349 again here. Checking message_cleared_p captures the case that
12350 the echo area should be cleared. */
12351 if ((!NILP (echo_area_buffer
[0]) && !display_last_displayed_message_p
)
12352 || (!NILP (echo_area_buffer
[1]) && display_last_displayed_message_p
)
12353 || (message_cleared_p
12354 && minibuf_level
== 0
12355 /* If the mini-window is currently selected, this means the
12356 echo-area doesn't show through. */
12357 && !MINI_WINDOW_P (XWINDOW (selected_window
))))
12359 int window_height_changed_p
= echo_area_display (0);
12362 /* If we don't display the current message, don't clear the
12363 message_cleared_p flag, because, if we did, we wouldn't clear
12364 the echo area in the next redisplay which doesn't preserve
12366 if (!display_last_displayed_message_p
)
12367 message_cleared_p
= 0;
12369 if (fonts_changed_p
)
12371 else if (window_height_changed_p
)
12373 consider_all_windows_p
= 1;
12374 ++update_mode_lines
;
12375 ++windows_or_buffers_changed
;
12377 /* If window configuration was changed, frames may have been
12378 marked garbaged. Clear them or we will experience
12379 surprises wrt scrolling. */
12380 if (frame_garbaged
)
12381 clear_garbaged_frames ();
12384 else if (EQ (selected_window
, minibuf_window
)
12385 && (current_buffer
->clip_changed
12386 || XFASTINT (w
->last_modified
) < MODIFF
12387 || XFASTINT (w
->last_overlay_modified
) < OVERLAY_MODIFF
)
12388 && resize_mini_window (w
, 0))
12390 /* Resized active mini-window to fit the size of what it is
12391 showing if its contents might have changed. */
12393 /* FIXME: this causes all frames to be updated, which seems unnecessary
12394 since only the current frame needs to be considered. This function needs
12395 to be rewritten with two variables, consider_all_windows and
12396 consider_all_frames. */
12397 consider_all_windows_p
= 1;
12398 ++windows_or_buffers_changed
;
12399 ++update_mode_lines
;
12401 /* If window configuration was changed, frames may have been
12402 marked garbaged. Clear them or we will experience
12403 surprises wrt scrolling. */
12404 if (frame_garbaged
)
12405 clear_garbaged_frames ();
12409 /* If showing the region, and mark has changed, we must redisplay
12410 the whole window. The assignment to this_line_start_pos prevents
12411 the optimization directly below this if-statement. */
12412 if (((!NILP (Vtransient_mark_mode
)
12413 && !NILP (BVAR (XBUFFER (w
->buffer
), mark_active
)))
12414 != !NILP (w
->region_showing
))
12415 || (!NILP (w
->region_showing
)
12416 && !EQ (w
->region_showing
,
12417 Fmarker_position (BVAR (XBUFFER (w
->buffer
), mark
)))))
12418 CHARPOS (this_line_start_pos
) = 0;
12420 /* Optimize the case that only the line containing the cursor in the
12421 selected window has changed. Variables starting with this_ are
12422 set in display_line and record information about the line
12423 containing the cursor. */
12424 tlbufpos
= this_line_start_pos
;
12425 tlendpos
= this_line_end_pos
;
12426 if (!consider_all_windows_p
12427 && CHARPOS (tlbufpos
) > 0
12428 && NILP (w
->update_mode_line
)
12429 && !current_buffer
->clip_changed
12430 && !current_buffer
->prevent_redisplay_optimizations_p
12431 && FRAME_VISIBLE_P (XFRAME (w
->frame
))
12432 && !FRAME_OBSCURED_P (XFRAME (w
->frame
))
12433 /* Make sure recorded data applies to current buffer, etc. */
12434 && this_line_buffer
== current_buffer
12435 && current_buffer
== XBUFFER (w
->buffer
)
12436 && NILP (w
->force_start
)
12437 && NILP (w
->optional_new_start
)
12438 /* Point must be on the line that we have info recorded about. */
12439 && PT
>= CHARPOS (tlbufpos
)
12440 && PT
<= Z
- CHARPOS (tlendpos
)
12441 /* All text outside that line, including its final newline,
12442 must be unchanged. */
12443 && text_outside_line_unchanged_p (w
, CHARPOS (tlbufpos
),
12444 CHARPOS (tlendpos
)))
12446 if (CHARPOS (tlbufpos
) > BEGV
12447 && FETCH_BYTE (BYTEPOS (tlbufpos
) - 1) != '\n'
12448 && (CHARPOS (tlbufpos
) == ZV
12449 || FETCH_BYTE (BYTEPOS (tlbufpos
)) == '\n'))
12450 /* Former continuation line has disappeared by becoming empty. */
12452 else if (XFASTINT (w
->last_modified
) < MODIFF
12453 || XFASTINT (w
->last_overlay_modified
) < OVERLAY_MODIFF
12454 || MINI_WINDOW_P (w
))
12456 /* We have to handle the case of continuation around a
12457 wide-column character (see the comment in indent.c around
12460 For instance, in the following case:
12462 -------- Insert --------
12463 K_A_N_\\ `a' K_A_N_a\ `X_' are wide-column chars.
12464 J_I_ ==> J_I_ `^^' are cursors.
12468 As we have to redraw the line above, we cannot use this
12472 int line_height_before
= this_line_pixel_height
;
12474 /* Note that start_display will handle the case that the
12475 line starting at tlbufpos is a continuation line. */
12476 start_display (&it
, w
, tlbufpos
);
12478 /* Implementation note: It this still necessary? */
12479 if (it
.current_x
!= this_line_start_x
)
12482 TRACE ((stderr
, "trying display optimization 1\n"));
12483 w
->cursor
.vpos
= -1;
12484 overlay_arrow_seen
= 0;
12485 it
.vpos
= this_line_vpos
;
12486 it
.current_y
= this_line_y
;
12487 it
.glyph_row
= MATRIX_ROW (w
->desired_matrix
, this_line_vpos
);
12488 display_line (&it
);
12490 /* If line contains point, is not continued,
12491 and ends at same distance from eob as before, we win. */
12492 if (w
->cursor
.vpos
>= 0
12493 /* Line is not continued, otherwise this_line_start_pos
12494 would have been set to 0 in display_line. */
12495 && CHARPOS (this_line_start_pos
)
12496 /* Line ends as before. */
12497 && CHARPOS (this_line_end_pos
) == CHARPOS (tlendpos
)
12498 /* Line has same height as before. Otherwise other lines
12499 would have to be shifted up or down. */
12500 && this_line_pixel_height
== line_height_before
)
12502 /* If this is not the window's last line, we must adjust
12503 the charstarts of the lines below. */
12504 if (it
.current_y
< it
.last_visible_y
)
12506 struct glyph_row
*row
12507 = MATRIX_ROW (w
->current_matrix
, this_line_vpos
+ 1);
12508 EMACS_INT delta
, delta_bytes
;
12510 /* We used to distinguish between two cases here,
12511 conditioned by Z - CHARPOS (tlendpos) == ZV, for
12512 when the line ends in a newline or the end of the
12513 buffer's accessible portion. But both cases did
12514 the same, so they were collapsed. */
12516 - CHARPOS (tlendpos
)
12517 - MATRIX_ROW_START_CHARPOS (row
));
12518 delta_bytes
= (Z_BYTE
12519 - BYTEPOS (tlendpos
)
12520 - MATRIX_ROW_START_BYTEPOS (row
));
12522 increment_matrix_positions (w
->current_matrix
,
12523 this_line_vpos
+ 1,
12524 w
->current_matrix
->nrows
,
12525 delta
, delta_bytes
);
12528 /* If this row displays text now but previously didn't,
12529 or vice versa, w->window_end_vpos may have to be
12531 if ((it
.glyph_row
- 1)->displays_text_p
)
12533 if (XFASTINT (w
->window_end_vpos
) < this_line_vpos
)
12534 XSETINT (w
->window_end_vpos
, this_line_vpos
);
12536 else if (XFASTINT (w
->window_end_vpos
) == this_line_vpos
12537 && this_line_vpos
> 0)
12538 XSETINT (w
->window_end_vpos
, this_line_vpos
- 1);
12539 w
->window_end_valid
= Qnil
;
12541 /* Update hint: No need to try to scroll in update_window. */
12542 w
->desired_matrix
->no_scrolling_p
= 1;
12545 *w
->desired_matrix
->method
= 0;
12546 debug_method_add (w
, "optimization 1");
12548 #ifdef HAVE_WINDOW_SYSTEM
12549 update_window_fringes (w
, 0);
12556 else if (/* Cursor position hasn't changed. */
12557 PT
== XFASTINT (w
->last_point
)
12558 /* Make sure the cursor was last displayed
12559 in this window. Otherwise we have to reposition it. */
12560 && 0 <= w
->cursor
.vpos
12561 && WINDOW_TOTAL_LINES (w
) > w
->cursor
.vpos
)
12565 do_pending_window_change (1);
12566 /* If selected_window changed, redisplay again. */
12567 if (WINDOWP (selected_window
)
12568 && (w
= XWINDOW (selected_window
)) != sw
)
12571 /* We used to always goto end_of_redisplay here, but this
12572 isn't enough if we have a blinking cursor. */
12573 if (w
->cursor_off_p
== w
->last_cursor_off_p
)
12574 goto end_of_redisplay
;
12578 /* If highlighting the region, or if the cursor is in the echo area,
12579 then we can't just move the cursor. */
12580 else if (! (!NILP (Vtransient_mark_mode
)
12581 && !NILP (BVAR (current_buffer
, mark_active
)))
12582 && (EQ (selected_window
, BVAR (current_buffer
, last_selected_window
))
12583 || highlight_nonselected_windows
)
12584 && NILP (w
->region_showing
)
12585 && NILP (Vshow_trailing_whitespace
)
12586 && !cursor_in_echo_area
)
12589 struct glyph_row
*row
;
12591 /* Skip from tlbufpos to PT and see where it is. Note that
12592 PT may be in invisible text. If so, we will end at the
12593 next visible position. */
12594 init_iterator (&it
, w
, CHARPOS (tlbufpos
), BYTEPOS (tlbufpos
),
12595 NULL
, DEFAULT_FACE_ID
);
12596 it
.current_x
= this_line_start_x
;
12597 it
.current_y
= this_line_y
;
12598 it
.vpos
= this_line_vpos
;
12600 /* The call to move_it_to stops in front of PT, but
12601 moves over before-strings. */
12602 move_it_to (&it
, PT
, -1, -1, -1, MOVE_TO_POS
);
12604 if (it
.vpos
== this_line_vpos
12605 && (row
= MATRIX_ROW (w
->current_matrix
, this_line_vpos
),
12608 xassert (this_line_vpos
== it
.vpos
);
12609 xassert (this_line_y
== it
.current_y
);
12610 set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0, 0, 0);
12612 *w
->desired_matrix
->method
= 0;
12613 debug_method_add (w
, "optimization 3");
12622 /* Text changed drastically or point moved off of line. */
12623 SET_MATRIX_ROW_ENABLED_P (w
->desired_matrix
, this_line_vpos
, 0);
12626 CHARPOS (this_line_start_pos
) = 0;
12627 consider_all_windows_p
|= buffer_shared
> 1;
12628 ++clear_face_cache_count
;
12629 #ifdef HAVE_WINDOW_SYSTEM
12630 ++clear_image_cache_count
;
12633 /* Build desired matrices, and update the display. If
12634 consider_all_windows_p is non-zero, do it for all windows on all
12635 frames. Otherwise do it for selected_window, only. */
12637 if (consider_all_windows_p
)
12639 Lisp_Object tail
, frame
;
12641 FOR_EACH_FRAME (tail
, frame
)
12642 XFRAME (frame
)->updated_p
= 0;
12644 /* Recompute # windows showing selected buffer. This will be
12645 incremented each time such a window is displayed. */
12648 FOR_EACH_FRAME (tail
, frame
)
12650 struct frame
*f
= XFRAME (frame
);
12652 if (FRAME_WINDOW_P (f
) || FRAME_TERMCAP_P (f
) || f
== sf
)
12654 if (! EQ (frame
, selected_frame
))
12655 /* Select the frame, for the sake of frame-local
12657 select_frame_for_redisplay (frame
);
12659 /* Mark all the scroll bars to be removed; we'll redeem
12660 the ones we want when we redisplay their windows. */
12661 if (FRAME_TERMINAL (f
)->condemn_scroll_bars_hook
)
12662 FRAME_TERMINAL (f
)->condemn_scroll_bars_hook (f
);
12664 if (FRAME_VISIBLE_P (f
) && !FRAME_OBSCURED_P (f
))
12665 redisplay_windows (FRAME_ROOT_WINDOW (f
));
12667 /* The X error handler may have deleted that frame. */
12668 if (!FRAME_LIVE_P (f
))
12671 /* Any scroll bars which redisplay_windows should have
12672 nuked should now go away. */
12673 if (FRAME_TERMINAL (f
)->judge_scroll_bars_hook
)
12674 FRAME_TERMINAL (f
)->judge_scroll_bars_hook (f
);
12676 /* If fonts changed, display again. */
12677 /* ??? rms: I suspect it is a mistake to jump all the way
12678 back to retry here. It should just retry this frame. */
12679 if (fonts_changed_p
)
12682 if (FRAME_VISIBLE_P (f
) && !FRAME_OBSCURED_P (f
))
12684 /* See if we have to hscroll. */
12685 if (!f
->already_hscrolled_p
)
12687 f
->already_hscrolled_p
= 1;
12688 if (hscroll_windows (f
->root_window
))
12692 /* Prevent various kinds of signals during display
12693 update. stdio is not robust about handling
12694 signals, which can cause an apparent I/O
12696 if (interrupt_input
)
12697 unrequest_sigio ();
12700 /* Update the display. */
12701 set_window_update_flags (XWINDOW (f
->root_window
), 1);
12702 pending
|= update_frame (f
, 0, 0);
12708 if (!EQ (old_frame
, selected_frame
)
12709 && FRAME_LIVE_P (XFRAME (old_frame
)))
12710 /* We played a bit fast-and-loose above and allowed selected_frame
12711 and selected_window to be temporarily out-of-sync but let's make
12712 sure this stays contained. */
12713 select_frame_for_redisplay (old_frame
);
12714 eassert (EQ (XFRAME (selected_frame
)->selected_window
, selected_window
));
12718 /* Do the mark_window_display_accurate after all windows have
12719 been redisplayed because this call resets flags in buffers
12720 which are needed for proper redisplay. */
12721 FOR_EACH_FRAME (tail
, frame
)
12723 struct frame
*f
= XFRAME (frame
);
12726 mark_window_display_accurate (f
->root_window
, 1);
12727 if (FRAME_TERMINAL (f
)->frame_up_to_date_hook
)
12728 FRAME_TERMINAL (f
)->frame_up_to_date_hook (f
);
12733 else if (FRAME_VISIBLE_P (sf
) && !FRAME_OBSCURED_P (sf
))
12735 Lisp_Object mini_window
;
12736 struct frame
*mini_frame
;
12738 displayed_buffer
= XBUFFER (XWINDOW (selected_window
)->buffer
);
12739 /* Use list_of_error, not Qerror, so that
12740 we catch only errors and don't run the debugger. */
12741 internal_condition_case_1 (redisplay_window_1
, selected_window
,
12743 redisplay_window_error
);
12745 /* Compare desired and current matrices, perform output. */
12748 /* If fonts changed, display again. */
12749 if (fonts_changed_p
)
12752 /* Prevent various kinds of signals during display update.
12753 stdio is not robust about handling signals,
12754 which can cause an apparent I/O error. */
12755 if (interrupt_input
)
12756 unrequest_sigio ();
12759 if (FRAME_VISIBLE_P (sf
) && !FRAME_OBSCURED_P (sf
))
12761 if (hscroll_windows (selected_window
))
12764 XWINDOW (selected_window
)->must_be_updated_p
= 1;
12765 pending
= update_frame (sf
, 0, 0);
12768 /* We may have called echo_area_display at the top of this
12769 function. If the echo area is on another frame, that may
12770 have put text on a frame other than the selected one, so the
12771 above call to update_frame would not have caught it. Catch
12773 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
12774 mini_frame
= XFRAME (WINDOW_FRAME (XWINDOW (mini_window
)));
12776 if (mini_frame
!= sf
&& FRAME_WINDOW_P (mini_frame
))
12778 XWINDOW (mini_window
)->must_be_updated_p
= 1;
12779 pending
|= update_frame (mini_frame
, 0, 0);
12780 if (!pending
&& hscroll_windows (mini_window
))
12785 /* If display was paused because of pending input, make sure we do a
12786 thorough update the next time. */
12789 /* Prevent the optimization at the beginning of
12790 redisplay_internal that tries a single-line update of the
12791 line containing the cursor in the selected window. */
12792 CHARPOS (this_line_start_pos
) = 0;
12794 /* Let the overlay arrow be updated the next time. */
12795 update_overlay_arrows (0);
12797 /* If we pause after scrolling, some rows in the current
12798 matrices of some windows are not valid. */
12799 if (!WINDOW_FULL_WIDTH_P (w
)
12800 && !FRAME_WINDOW_P (XFRAME (w
->frame
)))
12801 update_mode_lines
= 1;
12805 if (!consider_all_windows_p
)
12807 /* This has already been done above if
12808 consider_all_windows_p is set. */
12809 mark_window_display_accurate_1 (w
, 1);
12811 /* Say overlay arrows are up to date. */
12812 update_overlay_arrows (1);
12814 if (FRAME_TERMINAL (sf
)->frame_up_to_date_hook
!= 0)
12815 FRAME_TERMINAL (sf
)->frame_up_to_date_hook (sf
);
12818 update_mode_lines
= 0;
12819 windows_or_buffers_changed
= 0;
12820 cursor_type_changed
= 0;
12823 /* Start SIGIO interrupts coming again. Having them off during the
12824 code above makes it less likely one will discard output, but not
12825 impossible, since there might be stuff in the system buffer here.
12826 But it is much hairier to try to do anything about that. */
12827 if (interrupt_input
)
12831 /* If a frame has become visible which was not before, redisplay
12832 again, so that we display it. Expose events for such a frame
12833 (which it gets when becoming visible) don't call the parts of
12834 redisplay constructing glyphs, so simply exposing a frame won't
12835 display anything in this case. So, we have to display these
12836 frames here explicitly. */
12839 Lisp_Object tail
, frame
;
12842 FOR_EACH_FRAME (tail
, frame
)
12844 int this_is_visible
= 0;
12846 if (XFRAME (frame
)->visible
)
12847 this_is_visible
= 1;
12848 FRAME_SAMPLE_VISIBILITY (XFRAME (frame
));
12849 if (XFRAME (frame
)->visible
)
12850 this_is_visible
= 1;
12852 if (this_is_visible
)
12856 if (new_count
!= number_of_visible_frames
)
12857 windows_or_buffers_changed
++;
12860 /* Change frame size now if a change is pending. */
12861 do_pending_window_change (1);
12863 /* If we just did a pending size change, or have additional
12864 visible frames, or selected_window changed, redisplay again. */
12865 if ((windows_or_buffers_changed
&& !pending
)
12866 || (WINDOWP (selected_window
) && (w
= XWINDOW (selected_window
)) != sw
))
12869 /* Clear the face and image caches.
12871 We used to do this only if consider_all_windows_p. But the cache
12872 needs to be cleared if a timer creates images in the current
12873 buffer (e.g. the test case in Bug#6230). */
12875 if (clear_face_cache_count
> CLEAR_FACE_CACHE_COUNT
)
12877 clear_face_cache (0);
12878 clear_face_cache_count
= 0;
12881 #ifdef HAVE_WINDOW_SYSTEM
12882 if (clear_image_cache_count
> CLEAR_IMAGE_CACHE_COUNT
)
12884 clear_image_caches (Qnil
);
12885 clear_image_cache_count
= 0;
12887 #endif /* HAVE_WINDOW_SYSTEM */
12890 unbind_to (count
, Qnil
);
12895 /* Redisplay, but leave alone any recent echo area message unless
12896 another message has been requested in its place.
12898 This is useful in situations where you need to redisplay but no
12899 user action has occurred, making it inappropriate for the message
12900 area to be cleared. See tracking_off and
12901 wait_reading_process_output for examples of these situations.
12903 FROM_WHERE is an integer saying from where this function was
12904 called. This is useful for debugging. */
12907 redisplay_preserve_echo_area (int from_where
)
12909 TRACE ((stderr
, "redisplay_preserve_echo_area (%d)\n", from_where
));
12911 if (!NILP (echo_area_buffer
[1]))
12913 /* We have a previously displayed message, but no current
12914 message. Redisplay the previous message. */
12915 display_last_displayed_message_p
= 1;
12916 redisplay_internal ();
12917 display_last_displayed_message_p
= 0;
12920 redisplay_internal ();
12922 if (FRAME_RIF (SELECTED_FRAME ()) != NULL
12923 && FRAME_RIF (SELECTED_FRAME ())->flush_display_optional
)
12924 FRAME_RIF (SELECTED_FRAME ())->flush_display_optional (NULL
);
12928 /* Function registered with record_unwind_protect in
12929 redisplay_internal. Reset redisplaying_p to the value it had
12930 before redisplay_internal was called, and clear
12931 prevent_freeing_realized_faces_p. It also selects the previously
12932 selected frame, unless it has been deleted (by an X connection
12933 failure during redisplay, for example). */
12936 unwind_redisplay (Lisp_Object val
)
12938 Lisp_Object old_redisplaying_p
, old_frame
;
12940 old_redisplaying_p
= XCAR (val
);
12941 redisplaying_p
= XFASTINT (old_redisplaying_p
);
12942 old_frame
= XCDR (val
);
12943 if (! EQ (old_frame
, selected_frame
)
12944 && FRAME_LIVE_P (XFRAME (old_frame
)))
12945 select_frame_for_redisplay (old_frame
);
12950 /* Mark the display of window W as accurate or inaccurate. If
12951 ACCURATE_P is non-zero mark display of W as accurate. If
12952 ACCURATE_P is zero, arrange for W to be redisplayed the next time
12953 redisplay_internal is called. */
12956 mark_window_display_accurate_1 (struct window
*w
, int accurate_p
)
12958 if (BUFFERP (w
->buffer
))
12960 struct buffer
*b
= XBUFFER (w
->buffer
);
12963 = make_number (accurate_p
? BUF_MODIFF (b
) : 0);
12964 w
->last_overlay_modified
12965 = make_number (accurate_p
? BUF_OVERLAY_MODIFF (b
) : 0);
12967 = BUF_MODIFF (b
) > BUF_SAVE_MODIFF (b
) ? Qt
: Qnil
;
12971 b
->clip_changed
= 0;
12972 b
->prevent_redisplay_optimizations_p
= 0;
12974 BUF_UNCHANGED_MODIFIED (b
) = BUF_MODIFF (b
);
12975 BUF_OVERLAY_UNCHANGED_MODIFIED (b
) = BUF_OVERLAY_MODIFF (b
);
12976 BUF_BEG_UNCHANGED (b
) = BUF_GPT (b
) - BUF_BEG (b
);
12977 BUF_END_UNCHANGED (b
) = BUF_Z (b
) - BUF_GPT (b
);
12979 w
->current_matrix
->buffer
= b
;
12980 w
->current_matrix
->begv
= BUF_BEGV (b
);
12981 w
->current_matrix
->zv
= BUF_ZV (b
);
12983 w
->last_cursor
= w
->cursor
;
12984 w
->last_cursor_off_p
= w
->cursor_off_p
;
12986 if (w
== XWINDOW (selected_window
))
12987 w
->last_point
= make_number (BUF_PT (b
));
12989 w
->last_point
= make_number (XMARKER (w
->pointm
)->charpos
);
12995 w
->window_end_valid
= w
->buffer
;
12996 w
->update_mode_line
= Qnil
;
13001 /* Mark the display of windows in the window tree rooted at WINDOW as
13002 accurate or inaccurate. If ACCURATE_P is non-zero mark display of
13003 windows as accurate. If ACCURATE_P is zero, arrange for windows to
13004 be redisplayed the next time redisplay_internal is called. */
13007 mark_window_display_accurate (Lisp_Object window
, int accurate_p
)
13011 for (; !NILP (window
); window
= w
->next
)
13013 w
= XWINDOW (window
);
13014 mark_window_display_accurate_1 (w
, accurate_p
);
13016 if (!NILP (w
->vchild
))
13017 mark_window_display_accurate (w
->vchild
, accurate_p
);
13018 if (!NILP (w
->hchild
))
13019 mark_window_display_accurate (w
->hchild
, accurate_p
);
13024 update_overlay_arrows (1);
13028 /* Force a thorough redisplay the next time by setting
13029 last_arrow_position and last_arrow_string to t, which is
13030 unequal to any useful value of Voverlay_arrow_... */
13031 update_overlay_arrows (-1);
13036 /* Return value in display table DP (Lisp_Char_Table *) for character
13037 C. Since a display table doesn't have any parent, we don't have to
13038 follow parent. Do not call this function directly but use the
13039 macro DISP_CHAR_VECTOR. */
13042 disp_char_vector (struct Lisp_Char_Table
*dp
, int c
)
13046 if (ASCII_CHAR_P (c
))
13049 if (SUB_CHAR_TABLE_P (val
))
13050 val
= XSUB_CHAR_TABLE (val
)->contents
[c
];
13056 XSETCHAR_TABLE (table
, dp
);
13057 val
= char_table_ref (table
, c
);
13066 /***********************************************************************
13068 ***********************************************************************/
13070 /* Redisplay all leaf windows in the window tree rooted at WINDOW. */
13073 redisplay_windows (Lisp_Object window
)
13075 while (!NILP (window
))
13077 struct window
*w
= XWINDOW (window
);
13079 if (!NILP (w
->hchild
))
13080 redisplay_windows (w
->hchild
);
13081 else if (!NILP (w
->vchild
))
13082 redisplay_windows (w
->vchild
);
13083 else if (!NILP (w
->buffer
))
13085 displayed_buffer
= XBUFFER (w
->buffer
);
13086 /* Use list_of_error, not Qerror, so that
13087 we catch only errors and don't run the debugger. */
13088 internal_condition_case_1 (redisplay_window_0
, window
,
13090 redisplay_window_error
);
13098 redisplay_window_error (Lisp_Object ignore
)
13100 displayed_buffer
->display_error_modiff
= BUF_MODIFF (displayed_buffer
);
13105 redisplay_window_0 (Lisp_Object window
)
13107 if (displayed_buffer
->display_error_modiff
< BUF_MODIFF (displayed_buffer
))
13108 redisplay_window (window
, 0);
13113 redisplay_window_1 (Lisp_Object window
)
13115 if (displayed_buffer
->display_error_modiff
< BUF_MODIFF (displayed_buffer
))
13116 redisplay_window (window
, 1);
13121 /* Set cursor position of W. PT is assumed to be displayed in ROW.
13122 DELTA and DELTA_BYTES are the numbers of characters and bytes by
13123 which positions recorded in ROW differ from current buffer
13126 Return 0 if cursor is not on this row, 1 otherwise. */
13129 set_cursor_from_row (struct window
*w
, struct glyph_row
*row
,
13130 struct glyph_matrix
*matrix
,
13131 EMACS_INT delta
, EMACS_INT delta_bytes
,
13134 struct glyph
*glyph
= row
->glyphs
[TEXT_AREA
];
13135 struct glyph
*end
= glyph
+ row
->used
[TEXT_AREA
];
13136 struct glyph
*cursor
= NULL
;
13137 /* The last known character position in row. */
13138 EMACS_INT last_pos
= MATRIX_ROW_START_CHARPOS (row
) + delta
;
13140 EMACS_INT pt_old
= PT
- delta
;
13141 EMACS_INT pos_before
= MATRIX_ROW_START_CHARPOS (row
) + delta
;
13142 EMACS_INT pos_after
= MATRIX_ROW_END_CHARPOS (row
) + delta
;
13143 struct glyph
*glyph_before
= glyph
- 1, *glyph_after
= end
;
13144 /* A glyph beyond the edge of TEXT_AREA which we should never
13146 struct glyph
*glyphs_end
= end
;
13147 /* Non-zero means we've found a match for cursor position, but that
13148 glyph has the avoid_cursor_p flag set. */
13149 int match_with_avoid_cursor
= 0;
13150 /* Non-zero means we've seen at least one glyph that came from a
13152 int string_seen
= 0;
13153 /* Largest and smalles buffer positions seen so far during scan of
13155 EMACS_INT bpos_max
= pos_before
;
13156 EMACS_INT bpos_min
= pos_after
;
13157 /* Last buffer position covered by an overlay string with an integer
13158 `cursor' property. */
13159 EMACS_INT bpos_covered
= 0;
13161 /* Skip over glyphs not having an object at the start and the end of
13162 the row. These are special glyphs like truncation marks on
13163 terminal frames. */
13164 if (row
->displays_text_p
)
13166 if (!row
->reversed_p
)
13169 && INTEGERP (glyph
->object
)
13170 && glyph
->charpos
< 0)
13172 x
+= glyph
->pixel_width
;
13176 && INTEGERP ((end
- 1)->object
)
13177 /* CHARPOS is zero for blanks and stretch glyphs
13178 inserted by extend_face_to_end_of_line. */
13179 && (end
- 1)->charpos
<= 0)
13181 glyph_before
= glyph
- 1;
13188 /* If the glyph row is reversed, we need to process it from back
13189 to front, so swap the edge pointers. */
13190 glyphs_end
= end
= glyph
- 1;
13191 glyph
+= row
->used
[TEXT_AREA
] - 1;
13193 while (glyph
> end
+ 1
13194 && INTEGERP (glyph
->object
)
13195 && glyph
->charpos
< 0)
13198 x
-= glyph
->pixel_width
;
13200 if (INTEGERP (glyph
->object
) && glyph
->charpos
< 0)
13202 /* By default, in reversed rows we put the cursor on the
13203 rightmost (first in the reading order) glyph. */
13204 for (g
= end
+ 1; g
< glyph
; g
++)
13205 x
+= g
->pixel_width
;
13207 && INTEGERP ((end
+ 1)->object
)
13208 && (end
+ 1)->charpos
<= 0)
13210 glyph_before
= glyph
+ 1;
13214 else if (row
->reversed_p
)
13216 /* In R2L rows that don't display text, put the cursor on the
13217 rightmost glyph. Case in point: an empty last line that is
13218 part of an R2L paragraph. */
13220 /* Avoid placing the cursor on the last glyph of the row, where
13221 on terminal frames we hold the vertical border between
13222 adjacent windows. */
13223 if (!FRAME_WINDOW_P (WINDOW_XFRAME (w
))
13224 && !WINDOW_RIGHTMOST_P (w
)
13225 && cursor
== row
->glyphs
[LAST_AREA
] - 1)
13227 x
= -1; /* will be computed below, at label compute_x */
13230 /* Step 1: Try to find the glyph whose character position
13231 corresponds to point. If that's not possible, find 2 glyphs
13232 whose character positions are the closest to point, one before
13233 point, the other after it. */
13234 if (!row
->reversed_p
)
13235 while (/* not marched to end of glyph row */
13237 /* glyph was not inserted by redisplay for internal purposes */
13238 && !INTEGERP (glyph
->object
))
13240 if (BUFFERP (glyph
->object
))
13242 EMACS_INT dpos
= glyph
->charpos
- pt_old
;
13244 if (glyph
->charpos
> bpos_max
)
13245 bpos_max
= glyph
->charpos
;
13246 if (glyph
->charpos
< bpos_min
)
13247 bpos_min
= glyph
->charpos
;
13248 if (!glyph
->avoid_cursor_p
)
13250 /* If we hit point, we've found the glyph on which to
13251 display the cursor. */
13254 match_with_avoid_cursor
= 0;
13257 /* See if we've found a better approximation to
13258 POS_BEFORE or to POS_AFTER. Note that we want the
13259 first (leftmost) glyph of all those that are the
13260 closest from below, and the last (rightmost) of all
13261 those from above. */
13262 if (0 > dpos
&& dpos
> pos_before
- pt_old
)
13264 pos_before
= glyph
->charpos
;
13265 glyph_before
= glyph
;
13267 else if (0 < dpos
&& dpos
<= pos_after
- pt_old
)
13269 pos_after
= glyph
->charpos
;
13270 glyph_after
= glyph
;
13273 else if (dpos
== 0)
13274 match_with_avoid_cursor
= 1;
13276 else if (STRINGP (glyph
->object
))
13278 Lisp_Object chprop
;
13279 EMACS_INT glyph_pos
= glyph
->charpos
;
13281 chprop
= Fget_char_property (make_number (glyph_pos
), Qcursor
,
13283 if (INTEGERP (chprop
))
13285 bpos_covered
= bpos_max
+ XINT (chprop
);
13286 /* If the `cursor' property covers buffer positions up
13287 to and including point, we should display cursor on
13288 this glyph. Note that overlays and text properties
13289 with string values stop bidi reordering, so every
13290 buffer position to the left of the string is always
13291 smaller than any position to the right of the
13292 string. Therefore, if a `cursor' property on one
13293 of the string's characters has an integer value, we
13294 will break out of the loop below _before_ we get to
13295 the position match above. IOW, integer values of
13296 the `cursor' property override the "exact match for
13297 point" strategy of positioning the cursor. */
13298 /* Implementation note: bpos_max == pt_old when, e.g.,
13299 we are in an empty line, where bpos_max is set to
13300 MATRIX_ROW_START_CHARPOS, see above. */
13301 if (bpos_max
<= pt_old
&& bpos_covered
>= pt_old
)
13310 x
+= glyph
->pixel_width
;
13313 else if (glyph
> end
) /* row is reversed */
13314 while (!INTEGERP (glyph
->object
))
13316 if (BUFFERP (glyph
->object
))
13318 EMACS_INT dpos
= glyph
->charpos
- pt_old
;
13320 if (glyph
->charpos
> bpos_max
)
13321 bpos_max
= glyph
->charpos
;
13322 if (glyph
->charpos
< bpos_min
)
13323 bpos_min
= glyph
->charpos
;
13324 if (!glyph
->avoid_cursor_p
)
13328 match_with_avoid_cursor
= 0;
13331 if (0 > dpos
&& dpos
> pos_before
- pt_old
)
13333 pos_before
= glyph
->charpos
;
13334 glyph_before
= glyph
;
13336 else if (0 < dpos
&& dpos
<= pos_after
- pt_old
)
13338 pos_after
= glyph
->charpos
;
13339 glyph_after
= glyph
;
13342 else if (dpos
== 0)
13343 match_with_avoid_cursor
= 1;
13345 else if (STRINGP (glyph
->object
))
13347 Lisp_Object chprop
;
13348 EMACS_INT glyph_pos
= glyph
->charpos
;
13350 chprop
= Fget_char_property (make_number (glyph_pos
), Qcursor
,
13352 if (INTEGERP (chprop
))
13354 bpos_covered
= bpos_max
+ XINT (chprop
);
13355 /* If the `cursor' property covers buffer positions up
13356 to and including point, we should display cursor on
13358 if (bpos_max
<= pt_old
&& bpos_covered
>= pt_old
)
13367 if (glyph
== glyphs_end
) /* don't dereference outside TEXT_AREA */
13369 x
--; /* can't use any pixel_width */
13372 x
-= glyph
->pixel_width
;
13375 /* Step 2: If we didn't find an exact match for point, we need to
13376 look for a proper place to put the cursor among glyphs between
13377 GLYPH_BEFORE and GLYPH_AFTER. */
13378 if (!((row
->reversed_p
? glyph
> glyphs_end
: glyph
< glyphs_end
)
13379 && BUFFERP (glyph
->object
) && glyph
->charpos
== pt_old
)
13380 && bpos_covered
< pt_old
)
13382 /* An empty line has a single glyph whose OBJECT is zero and
13383 whose CHARPOS is the position of a newline on that line.
13384 Note that on a TTY, there are more glyphs after that, which
13385 were produced by extend_face_to_end_of_line, but their
13386 CHARPOS is zero or negative. */
13388 (row
->reversed_p
? glyph
> glyphs_end
: glyph
< glyphs_end
)
13389 && INTEGERP (glyph
->object
) && glyph
->charpos
> 0;
13391 if (row
->ends_in_ellipsis_p
&& pos_after
== last_pos
)
13393 EMACS_INT ellipsis_pos
;
13395 /* Scan back over the ellipsis glyphs. */
13396 if (!row
->reversed_p
)
13398 ellipsis_pos
= (glyph
- 1)->charpos
;
13399 while (glyph
> row
->glyphs
[TEXT_AREA
]
13400 && (glyph
- 1)->charpos
== ellipsis_pos
)
13401 glyph
--, x
-= glyph
->pixel_width
;
13402 /* That loop always goes one position too far, including
13403 the glyph before the ellipsis. So scan forward over
13405 x
+= glyph
->pixel_width
;
13408 else /* row is reversed */
13410 ellipsis_pos
= (glyph
+ 1)->charpos
;
13411 while (glyph
< row
->glyphs
[TEXT_AREA
] + row
->used
[TEXT_AREA
] - 1
13412 && (glyph
+ 1)->charpos
== ellipsis_pos
)
13413 glyph
++, x
+= glyph
->pixel_width
;
13414 x
-= glyph
->pixel_width
;
13418 else if (match_with_avoid_cursor
13419 /* A truncated row may not include PT among its
13420 character positions. Setting the cursor inside the
13421 scroll margin will trigger recalculation of hscroll
13422 in hscroll_window_tree. */
13423 || (row
->truncated_on_left_p
&& pt_old
< bpos_min
)
13424 || (row
->truncated_on_right_p
&& pt_old
> bpos_max
)
13425 /* Zero-width characters produce no glyphs. */
13428 && (row
->reversed_p
13429 ? glyph_after
> glyphs_end
13430 : glyph_after
< glyphs_end
)))
13432 cursor
= glyph_after
;
13435 else if (string_seen
)
13437 int incr
= row
->reversed_p
? -1 : +1;
13439 /* Need to find the glyph that came out of a string which is
13440 present at point. That glyph is somewhere between
13441 GLYPH_BEFORE and GLYPH_AFTER, and it came from a string
13442 positioned between POS_BEFORE and POS_AFTER in the
13444 struct glyph
*start
, *stop
;
13445 EMACS_INT pos
= pos_before
;
13449 /* GLYPH_BEFORE and GLYPH_AFTER are the glyphs that
13450 correspond to POS_BEFORE and POS_AFTER, respectively. We
13451 need START and STOP in the order that corresponds to the
13452 row's direction as given by its reversed_p flag. If the
13453 directionality of characters between POS_BEFORE and
13454 POS_AFTER is the opposite of the row's base direction,
13455 these characters will have been reordered for display,
13456 and we need to reverse START and STOP. */
13457 if (!row
->reversed_p
)
13459 start
= min (glyph_before
, glyph_after
);
13460 stop
= max (glyph_before
, glyph_after
);
13464 start
= max (glyph_before
, glyph_after
);
13465 stop
= min (glyph_before
, glyph_after
);
13467 for (glyph
= start
+ incr
;
13468 row
->reversed_p
? glyph
> stop
: glyph
< stop
; )
13471 /* Any glyphs that come from the buffer are here because
13472 of bidi reordering. Skip them, and only pay
13473 attention to glyphs that came from some string. */
13474 if (STRINGP (glyph
->object
))
13479 str
= glyph
->object
;
13480 tem
= string_buffer_position_lim (str
, pos
, pos_after
, 0);
13481 if (tem
== 0 /* from overlay */
13484 /* If the string from which this glyph came is
13485 found in the buffer at point, then we've
13486 found the glyph we've been looking for. If
13487 it comes from an overlay (tem == 0), and it
13488 has the `cursor' property on one of its
13489 glyphs, record that glyph as a candidate for
13490 displaying the cursor. (As in the
13491 unidirectional version, we will display the
13492 cursor on the last candidate we find.) */
13493 if (tem
== 0 || tem
== pt_old
)
13495 /* The glyphs from this string could have
13496 been reordered. Find the one with the
13497 smallest string position. Or there could
13498 be a character in the string with the
13499 `cursor' property, which means display
13500 cursor on that character's glyph. */
13501 EMACS_INT strpos
= glyph
->charpos
;
13506 (row
->reversed_p
? glyph
> stop
: glyph
< stop
)
13507 && EQ (glyph
->object
, str
);
13511 EMACS_INT gpos
= glyph
->charpos
;
13513 cprop
= Fget_char_property (make_number (gpos
),
13521 if (tem
&& glyph
->charpos
< strpos
)
13523 strpos
= glyph
->charpos
;
13532 pos
= tem
+ 1; /* don't find previous instances */
13534 /* This string is not what we want; skip all of the
13535 glyphs that came from it. */
13536 while ((row
->reversed_p
? glyph
> stop
: glyph
< stop
)
13537 && EQ (glyph
->object
, str
))
13544 /* If we reached the end of the line, and END was from a string,
13545 the cursor is not on this line. */
13547 && (row
->reversed_p
? glyph
<= end
: glyph
>= end
)
13548 && STRINGP (end
->object
)
13549 && row
->continued_p
)
13555 if (cursor
!= NULL
)
13561 /* Need to compute x that corresponds to GLYPH. */
13562 for (g
= row
->glyphs
[TEXT_AREA
], x
= row
->x
; g
< glyph
; g
++)
13564 if (g
>= row
->glyphs
[TEXT_AREA
] + row
->used
[TEXT_AREA
])
13566 x
+= g
->pixel_width
;
13570 /* ROW could be part of a continued line, which, under bidi
13571 reordering, might have other rows whose start and end charpos
13572 occlude point. Only set w->cursor if we found a better
13573 approximation to the cursor position than we have from previously
13574 examined candidate rows belonging to the same continued line. */
13575 if (/* we already have a candidate row */
13576 w
->cursor
.vpos
>= 0
13577 /* that candidate is not the row we are processing */
13578 && MATRIX_ROW (matrix
, w
->cursor
.vpos
) != row
13579 /* the row we are processing is part of a continued line */
13580 && (row
->continued_p
|| MATRIX_ROW_CONTINUATION_LINE_P (row
))
13581 /* Make sure cursor.vpos specifies a row whose start and end
13582 charpos occlude point. This is because some callers of this
13583 function leave cursor.vpos at the row where the cursor was
13584 displayed during the last redisplay cycle. */
13585 && MATRIX_ROW_START_CHARPOS (MATRIX_ROW (matrix
, w
->cursor
.vpos
)) <= pt_old
13586 && pt_old
< MATRIX_ROW_END_CHARPOS (MATRIX_ROW (matrix
, w
->cursor
.vpos
)))
13589 MATRIX_ROW_GLYPH_START (matrix
, w
->cursor
.vpos
) + w
->cursor
.hpos
;
13591 /* Don't consider glyphs that are outside TEXT_AREA. */
13592 if (!(row
->reversed_p
? glyph
> glyphs_end
: glyph
< glyphs_end
))
13594 /* Keep the candidate whose buffer position is the closest to
13596 if (/* previous candidate is a glyph in TEXT_AREA of that row */
13597 w
->cursor
.hpos
>= 0
13598 && w
->cursor
.hpos
< MATRIX_ROW_USED (matrix
, w
->cursor
.vpos
)
13599 && BUFFERP (g1
->object
)
13600 && (g1
->charpos
== pt_old
/* an exact match always wins */
13601 || (BUFFERP (glyph
->object
)
13602 && eabs (g1
->charpos
- pt_old
)
13603 < eabs (glyph
->charpos
- pt_old
))))
13605 /* If this candidate gives an exact match, use that. */
13606 if (!(BUFFERP (glyph
->object
) && glyph
->charpos
== pt_old
)
13607 /* Otherwise, keep the candidate that comes from a row
13608 spanning less buffer positions. This may win when one or
13609 both candidate positions are on glyphs that came from
13610 display strings, for which we cannot compare buffer
13612 && MATRIX_ROW_END_CHARPOS (MATRIX_ROW (matrix
, w
->cursor
.vpos
))
13613 - MATRIX_ROW_START_CHARPOS (MATRIX_ROW (matrix
, w
->cursor
.vpos
))
13614 < MATRIX_ROW_END_CHARPOS (row
) - MATRIX_ROW_START_CHARPOS (row
))
13617 w
->cursor
.hpos
= glyph
- row
->glyphs
[TEXT_AREA
];
13619 w
->cursor
.vpos
= MATRIX_ROW_VPOS (row
, matrix
) + dvpos
;
13620 w
->cursor
.y
= row
->y
+ dy
;
13622 if (w
== XWINDOW (selected_window
))
13624 if (!row
->continued_p
13625 && !MATRIX_ROW_CONTINUATION_LINE_P (row
)
13628 this_line_buffer
= XBUFFER (w
->buffer
);
13630 CHARPOS (this_line_start_pos
)
13631 = MATRIX_ROW_START_CHARPOS (row
) + delta
;
13632 BYTEPOS (this_line_start_pos
)
13633 = MATRIX_ROW_START_BYTEPOS (row
) + delta_bytes
;
13635 CHARPOS (this_line_end_pos
)
13636 = Z
- (MATRIX_ROW_END_CHARPOS (row
) + delta
);
13637 BYTEPOS (this_line_end_pos
)
13638 = Z_BYTE
- (MATRIX_ROW_END_BYTEPOS (row
) + delta_bytes
);
13640 this_line_y
= w
->cursor
.y
;
13641 this_line_pixel_height
= row
->height
;
13642 this_line_vpos
= w
->cursor
.vpos
;
13643 this_line_start_x
= row
->x
;
13646 CHARPOS (this_line_start_pos
) = 0;
13653 /* Run window scroll functions, if any, for WINDOW with new window
13654 start STARTP. Sets the window start of WINDOW to that position.
13656 We assume that the window's buffer is really current. */
13658 static INLINE
struct text_pos
13659 run_window_scroll_functions (Lisp_Object window
, struct text_pos startp
)
13661 struct window
*w
= XWINDOW (window
);
13662 SET_MARKER_FROM_TEXT_POS (w
->start
, startp
);
13664 if (current_buffer
!= XBUFFER (w
->buffer
))
13667 if (!NILP (Vwindow_scroll_functions
))
13669 run_hook_with_args_2 (Qwindow_scroll_functions
, window
,
13670 make_number (CHARPOS (startp
)));
13671 SET_TEXT_POS_FROM_MARKER (startp
, w
->start
);
13672 /* In case the hook functions switch buffers. */
13673 if (current_buffer
!= XBUFFER (w
->buffer
))
13674 set_buffer_internal_1 (XBUFFER (w
->buffer
));
13681 /* Make sure the line containing the cursor is fully visible.
13682 A value of 1 means there is nothing to be done.
13683 (Either the line is fully visible, or it cannot be made so,
13684 or we cannot tell.)
13686 If FORCE_P is non-zero, return 0 even if partial visible cursor row
13687 is higher than window.
13689 A value of 0 means the caller should do scrolling
13690 as if point had gone off the screen. */
13693 cursor_row_fully_visible_p (struct window
*w
, int force_p
, int current_matrix_p
)
13695 struct glyph_matrix
*matrix
;
13696 struct glyph_row
*row
;
13699 if (!make_cursor_line_fully_visible_p
)
13702 /* It's not always possible to find the cursor, e.g, when a window
13703 is full of overlay strings. Don't do anything in that case. */
13704 if (w
->cursor
.vpos
< 0)
13707 matrix
= current_matrix_p
? w
->current_matrix
: w
->desired_matrix
;
13708 row
= MATRIX_ROW (matrix
, w
->cursor
.vpos
);
13710 /* If the cursor row is not partially visible, there's nothing to do. */
13711 if (!MATRIX_ROW_PARTIALLY_VISIBLE_P (w
, row
))
13714 /* If the row the cursor is in is taller than the window's height,
13715 it's not clear what to do, so do nothing. */
13716 window_height
= window_box_height (w
);
13717 if (row
->height
>= window_height
)
13719 if (!force_p
|| MINI_WINDOW_P (w
)
13720 || w
->vscroll
|| w
->cursor
.vpos
== 0)
13727 /* Try scrolling PT into view in window WINDOW. JUST_THIS_ONE_P
13728 non-zero means only WINDOW is redisplayed in redisplay_internal.
13729 TEMP_SCROLL_STEP has the same meaning as emacs_scroll_step, and is used
13730 in redisplay_window to bring a partially visible line into view in
13731 the case that only the cursor has moved.
13733 LAST_LINE_MISFIT should be nonzero if we're scrolling because the
13734 last screen line's vertical height extends past the end of the screen.
13738 1 if scrolling succeeded
13740 0 if scrolling didn't find point.
13742 -1 if new fonts have been loaded so that we must interrupt
13743 redisplay, adjust glyph matrices, and try again. */
13749 SCROLLING_NEED_LARGER_MATRICES
13752 /* If scroll-conservatively is more than this, never recenter.
13754 If you change this, don't forget to update the doc string of
13755 `scroll-conservatively' and the Emacs manual. */
13756 #define SCROLL_LIMIT 100
13759 try_scrolling (Lisp_Object window
, int just_this_one_p
,
13760 EMACS_INT arg_scroll_conservatively
, EMACS_INT scroll_step
,
13761 int temp_scroll_step
, int last_line_misfit
)
13763 struct window
*w
= XWINDOW (window
);
13764 struct frame
*f
= XFRAME (w
->frame
);
13765 struct text_pos pos
, startp
;
13767 int this_scroll_margin
, scroll_max
, rc
, height
;
13768 int dy
= 0, amount_to_scroll
= 0, scroll_down_p
= 0;
13769 int extra_scroll_margin_lines
= last_line_misfit
? 1 : 0;
13770 Lisp_Object aggressive
;
13771 /* We will never try scrolling more than this number of lines. */
13772 int scroll_limit
= SCROLL_LIMIT
;
13775 debug_method_add (w
, "try_scrolling");
13778 SET_TEXT_POS_FROM_MARKER (startp
, w
->start
);
13780 /* Compute scroll margin height in pixels. We scroll when point is
13781 within this distance from the top or bottom of the window. */
13782 if (scroll_margin
> 0)
13783 this_scroll_margin
= min (scroll_margin
, WINDOW_TOTAL_LINES (w
) / 4)
13784 * FRAME_LINE_HEIGHT (f
);
13786 this_scroll_margin
= 0;
13788 /* Force arg_scroll_conservatively to have a reasonable value, to
13789 avoid scrolling too far away with slow move_it_* functions. Note
13790 that the user can supply scroll-conservatively equal to
13791 `most-positive-fixnum', which can be larger than INT_MAX. */
13792 if (arg_scroll_conservatively
> scroll_limit
)
13794 arg_scroll_conservatively
= scroll_limit
+ 1;
13795 scroll_max
= scroll_limit
* FRAME_LINE_HEIGHT (f
);
13797 else if (scroll_step
|| arg_scroll_conservatively
|| temp_scroll_step
)
13798 /* Compute how much we should try to scroll maximally to bring
13799 point into view. */
13800 scroll_max
= (max (scroll_step
,
13801 max (arg_scroll_conservatively
, temp_scroll_step
))
13802 * FRAME_LINE_HEIGHT (f
));
13803 else if (NUMBERP (BVAR (current_buffer
, scroll_down_aggressively
))
13804 || NUMBERP (BVAR (current_buffer
, scroll_up_aggressively
)))
13805 /* We're trying to scroll because of aggressive scrolling but no
13806 scroll_step is set. Choose an arbitrary one. */
13807 scroll_max
= 10 * FRAME_LINE_HEIGHT (f
);
13813 /* Decide whether to scroll down. */
13814 if (PT
> CHARPOS (startp
))
13816 int scroll_margin_y
;
13818 /* Compute the pixel ypos of the scroll margin, then move it to
13819 either that ypos or PT, whichever comes first. */
13820 start_display (&it
, w
, startp
);
13821 scroll_margin_y
= it
.last_visible_y
- this_scroll_margin
13822 - FRAME_LINE_HEIGHT (f
) * extra_scroll_margin_lines
;
13823 move_it_to (&it
, PT
, -1, scroll_margin_y
- 1, -1,
13824 (MOVE_TO_POS
| MOVE_TO_Y
));
13826 if (PT
> CHARPOS (it
.current
.pos
))
13828 int y0
= line_bottom_y (&it
);
13829 /* Compute how many pixels below window bottom to stop searching
13830 for PT. This avoids costly search for PT that is far away if
13831 the user limited scrolling by a small number of lines, but
13832 always finds PT if scroll_conservatively is set to a large
13833 number, such as most-positive-fixnum. */
13834 int slack
= max (scroll_max
, 10 * FRAME_LINE_HEIGHT (f
));
13835 int y_to_move
= it
.last_visible_y
+ slack
;
13837 /* Compute the distance from the scroll margin to PT or to
13838 the scroll limit, whichever comes first. This should
13839 include the height of the cursor line, to make that line
13841 move_it_to (&it
, PT
, -1, y_to_move
,
13842 -1, MOVE_TO_POS
| MOVE_TO_Y
);
13843 dy
= line_bottom_y (&it
) - y0
;
13845 if (dy
> scroll_max
)
13846 return SCROLLING_FAILED
;
13854 /* Point is in or below the bottom scroll margin, so move the
13855 window start down. If scrolling conservatively, move it just
13856 enough down to make point visible. If scroll_step is set,
13857 move it down by scroll_step. */
13858 if (arg_scroll_conservatively
)
13860 = min (max (dy
, FRAME_LINE_HEIGHT (f
)),
13861 FRAME_LINE_HEIGHT (f
) * arg_scroll_conservatively
);
13862 else if (scroll_step
|| temp_scroll_step
)
13863 amount_to_scroll
= scroll_max
;
13866 aggressive
= BVAR (current_buffer
, scroll_up_aggressively
);
13867 height
= WINDOW_BOX_TEXT_HEIGHT (w
);
13868 if (NUMBERP (aggressive
))
13870 double float_amount
= XFLOATINT (aggressive
) * height
;
13871 amount_to_scroll
= float_amount
;
13872 if (amount_to_scroll
== 0 && float_amount
> 0)
13873 amount_to_scroll
= 1;
13874 /* Don't let point enter the scroll margin near top of
13876 if (amount_to_scroll
> height
- 2*this_scroll_margin
+ dy
)
13877 amount_to_scroll
= height
- 2*this_scroll_margin
+ dy
;
13881 if (amount_to_scroll
<= 0)
13882 return SCROLLING_FAILED
;
13884 start_display (&it
, w
, startp
);
13885 if (arg_scroll_conservatively
<= scroll_limit
)
13886 move_it_vertically (&it
, amount_to_scroll
);
13889 /* Extra precision for users who set scroll-conservatively
13890 to a large number: make sure the amount we scroll
13891 the window start is never less than amount_to_scroll,
13892 which was computed as distance from window bottom to
13893 point. This matters when lines at window top and lines
13894 below window bottom have different height. */
13896 void *it1data
= NULL
;
13897 /* We use a temporary it1 because line_bottom_y can modify
13898 its argument, if it moves one line down; see there. */
13901 SAVE_IT (it1
, it
, it1data
);
13902 start_y
= line_bottom_y (&it1
);
13904 RESTORE_IT (&it
, &it
, it1data
);
13905 move_it_by_lines (&it
, 1);
13906 SAVE_IT (it1
, it
, it1data
);
13907 } while (line_bottom_y (&it1
) - start_y
< amount_to_scroll
);
13910 /* If STARTP is unchanged, move it down another screen line. */
13911 if (CHARPOS (it
.current
.pos
) == CHARPOS (startp
))
13912 move_it_by_lines (&it
, 1);
13913 startp
= it
.current
.pos
;
13917 struct text_pos scroll_margin_pos
= startp
;
13919 /* See if point is inside the scroll margin at the top of the
13921 if (this_scroll_margin
)
13923 start_display (&it
, w
, startp
);
13924 move_it_vertically (&it
, this_scroll_margin
);
13925 scroll_margin_pos
= it
.current
.pos
;
13928 if (PT
< CHARPOS (scroll_margin_pos
))
13930 /* Point is in the scroll margin at the top of the window or
13931 above what is displayed in the window. */
13934 /* Compute the vertical distance from PT to the scroll
13935 margin position. Move as far as scroll_max allows, or
13936 one screenful, or 10 screen lines, whichever is largest.
13937 Give up if distance is greater than scroll_max. */
13938 SET_TEXT_POS (pos
, PT
, PT_BYTE
);
13939 start_display (&it
, w
, pos
);
13941 y_to_move
= max (it
.last_visible_y
,
13942 max (scroll_max
, 10 * FRAME_LINE_HEIGHT (f
)));
13943 move_it_to (&it
, CHARPOS (scroll_margin_pos
), 0,
13945 MOVE_TO_POS
| MOVE_TO_X
| MOVE_TO_Y
);
13946 dy
= it
.current_y
- y0
;
13947 if (dy
> scroll_max
)
13948 return SCROLLING_FAILED
;
13950 /* Compute new window start. */
13951 start_display (&it
, w
, startp
);
13953 if (arg_scroll_conservatively
)
13954 amount_to_scroll
= max (dy
, FRAME_LINE_HEIGHT (f
) *
13955 max (scroll_step
, temp_scroll_step
));
13956 else if (scroll_step
|| temp_scroll_step
)
13957 amount_to_scroll
= scroll_max
;
13960 aggressive
= BVAR (current_buffer
, scroll_down_aggressively
);
13961 height
= WINDOW_BOX_TEXT_HEIGHT (w
);
13962 if (NUMBERP (aggressive
))
13964 double float_amount
= XFLOATINT (aggressive
) * height
;
13965 amount_to_scroll
= float_amount
;
13966 if (amount_to_scroll
== 0 && float_amount
> 0)
13967 amount_to_scroll
= 1;
13968 amount_to_scroll
-=
13969 this_scroll_margin
- dy
- FRAME_LINE_HEIGHT (f
);
13970 /* Don't let point enter the scroll margin near
13971 bottom of the window. */
13972 if (amount_to_scroll
> height
- 2*this_scroll_margin
+ dy
)
13973 amount_to_scroll
= height
- 2*this_scroll_margin
+ dy
;
13977 if (amount_to_scroll
<= 0)
13978 return SCROLLING_FAILED
;
13980 move_it_vertically_backward (&it
, amount_to_scroll
);
13981 startp
= it
.current
.pos
;
13985 /* Run window scroll functions. */
13986 startp
= run_window_scroll_functions (window
, startp
);
13988 /* Display the window. Give up if new fonts are loaded, or if point
13990 if (!try_window (window
, startp
, 0))
13991 rc
= SCROLLING_NEED_LARGER_MATRICES
;
13992 else if (w
->cursor
.vpos
< 0)
13994 clear_glyph_matrix (w
->desired_matrix
);
13995 rc
= SCROLLING_FAILED
;
13999 /* Maybe forget recorded base line for line number display. */
14000 if (!just_this_one_p
14001 || current_buffer
->clip_changed
14002 || BEG_UNCHANGED
< CHARPOS (startp
))
14003 w
->base_line_number
= Qnil
;
14005 /* If cursor ends up on a partially visible line,
14006 treat that as being off the bottom of the screen. */
14007 if (! cursor_row_fully_visible_p (w
, extra_scroll_margin_lines
<= 1, 0)
14008 /* It's possible that the cursor is on the first line of the
14009 buffer, which is partially obscured due to a vscroll
14010 (Bug#7537). In that case, avoid looping forever . */
14011 && extra_scroll_margin_lines
< w
->desired_matrix
->nrows
- 1)
14013 clear_glyph_matrix (w
->desired_matrix
);
14014 ++extra_scroll_margin_lines
;
14017 rc
= SCROLLING_SUCCESS
;
14024 /* Compute a suitable window start for window W if display of W starts
14025 on a continuation line. Value is non-zero if a new window start
14028 The new window start will be computed, based on W's width, starting
14029 from the start of the continued line. It is the start of the
14030 screen line with the minimum distance from the old start W->start. */
14033 compute_window_start_on_continuation_line (struct window
*w
)
14035 struct text_pos pos
, start_pos
;
14036 int window_start_changed_p
= 0;
14038 SET_TEXT_POS_FROM_MARKER (start_pos
, w
->start
);
14040 /* If window start is on a continuation line... Window start may be
14041 < BEGV in case there's invisible text at the start of the
14042 buffer (M-x rmail, for example). */
14043 if (CHARPOS (start_pos
) > BEGV
14044 && FETCH_BYTE (BYTEPOS (start_pos
) - 1) != '\n')
14047 struct glyph_row
*row
;
14049 /* Handle the case that the window start is out of range. */
14050 if (CHARPOS (start_pos
) < BEGV
)
14051 SET_TEXT_POS (start_pos
, BEGV
, BEGV_BYTE
);
14052 else if (CHARPOS (start_pos
) > ZV
)
14053 SET_TEXT_POS (start_pos
, ZV
, ZV_BYTE
);
14055 /* Find the start of the continued line. This should be fast
14056 because scan_buffer is fast (newline cache). */
14057 row
= w
->desired_matrix
->rows
+ (WINDOW_WANTS_HEADER_LINE_P (w
) ? 1 : 0);
14058 init_iterator (&it
, w
, CHARPOS (start_pos
), BYTEPOS (start_pos
),
14059 row
, DEFAULT_FACE_ID
);
14060 reseat_at_previous_visible_line_start (&it
);
14062 /* If the line start is "too far" away from the window start,
14063 say it takes too much time to compute a new window start. */
14064 if (CHARPOS (start_pos
) - IT_CHARPOS (it
)
14065 < WINDOW_TOTAL_LINES (w
) * WINDOW_TOTAL_COLS (w
))
14067 int min_distance
, distance
;
14069 /* Move forward by display lines to find the new window
14070 start. If window width was enlarged, the new start can
14071 be expected to be > the old start. If window width was
14072 decreased, the new window start will be < the old start.
14073 So, we're looking for the display line start with the
14074 minimum distance from the old window start. */
14075 pos
= it
.current
.pos
;
14076 min_distance
= INFINITY
;
14077 while ((distance
= eabs (CHARPOS (start_pos
) - IT_CHARPOS (it
))),
14078 distance
< min_distance
)
14080 min_distance
= distance
;
14081 pos
= it
.current
.pos
;
14082 move_it_by_lines (&it
, 1);
14085 /* Set the window start there. */
14086 SET_MARKER_FROM_TEXT_POS (w
->start
, pos
);
14087 window_start_changed_p
= 1;
14091 return window_start_changed_p
;
14095 /* Try cursor movement in case text has not changed in window WINDOW,
14096 with window start STARTP. Value is
14098 CURSOR_MOVEMENT_SUCCESS if successful
14100 CURSOR_MOVEMENT_CANNOT_BE_USED if this method cannot be used
14102 CURSOR_MOVEMENT_MUST_SCROLL if we know we have to scroll the
14103 display. *SCROLL_STEP is set to 1, under certain circumstances, if
14104 we want to scroll as if scroll-step were set to 1. See the code.
14106 CURSOR_MOVEMENT_NEED_LARGER_MATRICES if we need larger matrices, in
14107 which case we have to abort this redisplay, and adjust matrices
14112 CURSOR_MOVEMENT_SUCCESS
,
14113 CURSOR_MOVEMENT_CANNOT_BE_USED
,
14114 CURSOR_MOVEMENT_MUST_SCROLL
,
14115 CURSOR_MOVEMENT_NEED_LARGER_MATRICES
14119 try_cursor_movement (Lisp_Object window
, struct text_pos startp
, int *scroll_step
)
14121 struct window
*w
= XWINDOW (window
);
14122 struct frame
*f
= XFRAME (w
->frame
);
14123 int rc
= CURSOR_MOVEMENT_CANNOT_BE_USED
;
14126 if (inhibit_try_cursor_movement
)
14130 /* Handle case where text has not changed, only point, and it has
14131 not moved off the frame. */
14132 if (/* Point may be in this window. */
14133 PT
>= CHARPOS (startp
)
14134 /* Selective display hasn't changed. */
14135 && !current_buffer
->clip_changed
14136 /* Function force-mode-line-update is used to force a thorough
14137 redisplay. It sets either windows_or_buffers_changed or
14138 update_mode_lines. So don't take a shortcut here for these
14140 && !update_mode_lines
14141 && !windows_or_buffers_changed
14142 && !cursor_type_changed
14143 /* Can't use this case if highlighting a region. When a
14144 region exists, cursor movement has to do more than just
14146 && !(!NILP (Vtransient_mark_mode
)
14147 && !NILP (BVAR (current_buffer
, mark_active
)))
14148 && NILP (w
->region_showing
)
14149 && NILP (Vshow_trailing_whitespace
)
14150 /* Right after splitting windows, last_point may be nil. */
14151 && INTEGERP (w
->last_point
)
14152 /* This code is not used for mini-buffer for the sake of the case
14153 of redisplaying to replace an echo area message; since in
14154 that case the mini-buffer contents per se are usually
14155 unchanged. This code is of no real use in the mini-buffer
14156 since the handling of this_line_start_pos, etc., in redisplay
14157 handles the same cases. */
14158 && !EQ (window
, minibuf_window
)
14159 /* When splitting windows or for new windows, it happens that
14160 redisplay is called with a nil window_end_vpos or one being
14161 larger than the window. This should really be fixed in
14162 window.c. I don't have this on my list, now, so we do
14163 approximately the same as the old redisplay code. --gerd. */
14164 && INTEGERP (w
->window_end_vpos
)
14165 && XFASTINT (w
->window_end_vpos
) < w
->current_matrix
->nrows
14166 && (FRAME_WINDOW_P (f
)
14167 || !overlay_arrow_in_current_buffer_p ()))
14169 int this_scroll_margin
, top_scroll_margin
;
14170 struct glyph_row
*row
= NULL
;
14173 debug_method_add (w
, "cursor movement");
14176 /* Scroll if point within this distance from the top or bottom
14177 of the window. This is a pixel value. */
14178 if (scroll_margin
> 0)
14180 this_scroll_margin
= min (scroll_margin
, WINDOW_TOTAL_LINES (w
) / 4);
14181 this_scroll_margin
*= FRAME_LINE_HEIGHT (f
);
14184 this_scroll_margin
= 0;
14186 top_scroll_margin
= this_scroll_margin
;
14187 if (WINDOW_WANTS_HEADER_LINE_P (w
))
14188 top_scroll_margin
+= CURRENT_HEADER_LINE_HEIGHT (w
);
14190 /* Start with the row the cursor was displayed during the last
14191 not paused redisplay. Give up if that row is not valid. */
14192 if (w
->last_cursor
.vpos
< 0
14193 || w
->last_cursor
.vpos
>= w
->current_matrix
->nrows
)
14194 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
14197 row
= MATRIX_ROW (w
->current_matrix
, w
->last_cursor
.vpos
);
14198 if (row
->mode_line_p
)
14200 if (!row
->enabled_p
)
14201 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
14204 if (rc
== CURSOR_MOVEMENT_CANNOT_BE_USED
)
14206 int scroll_p
= 0, must_scroll
= 0;
14207 int last_y
= window_text_bottom_y (w
) - this_scroll_margin
;
14209 if (PT
> XFASTINT (w
->last_point
))
14211 /* Point has moved forward. */
14212 while (MATRIX_ROW_END_CHARPOS (row
) < PT
14213 && MATRIX_ROW_BOTTOM_Y (row
) < last_y
)
14215 xassert (row
->enabled_p
);
14219 /* If the end position of a row equals the start
14220 position of the next row, and PT is at that position,
14221 we would rather display cursor in the next line. */
14222 while (MATRIX_ROW_BOTTOM_Y (row
) < last_y
14223 && MATRIX_ROW_END_CHARPOS (row
) == PT
14224 && row
< w
->current_matrix
->rows
14225 + w
->current_matrix
->nrows
- 1
14226 && MATRIX_ROW_START_CHARPOS (row
+1) == PT
14227 && !cursor_row_p (row
))
14230 /* If within the scroll margin, scroll. Note that
14231 MATRIX_ROW_BOTTOM_Y gives the pixel position at which
14232 the next line would be drawn, and that
14233 this_scroll_margin can be zero. */
14234 if (MATRIX_ROW_BOTTOM_Y (row
) > last_y
14235 || PT
> MATRIX_ROW_END_CHARPOS (row
)
14236 /* Line is completely visible last line in window
14237 and PT is to be set in the next line. */
14238 || (MATRIX_ROW_BOTTOM_Y (row
) == last_y
14239 && PT
== MATRIX_ROW_END_CHARPOS (row
)
14240 && !row
->ends_at_zv_p
14241 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row
)))
14244 else if (PT
< XFASTINT (w
->last_point
))
14246 /* Cursor has to be moved backward. Note that PT >=
14247 CHARPOS (startp) because of the outer if-statement. */
14248 while (!row
->mode_line_p
14249 && (MATRIX_ROW_START_CHARPOS (row
) > PT
14250 || (MATRIX_ROW_START_CHARPOS (row
) == PT
14251 && (MATRIX_ROW_STARTS_IN_MIDDLE_OF_CHAR_P (row
)
14252 || (/* STARTS_IN_MIDDLE_OF_STRING_P (row) */
14253 row
> w
->current_matrix
->rows
14254 && (row
-1)->ends_in_newline_from_string_p
))))
14255 && (row
->y
> top_scroll_margin
14256 || CHARPOS (startp
) == BEGV
))
14258 xassert (row
->enabled_p
);
14262 /* Consider the following case: Window starts at BEGV,
14263 there is invisible, intangible text at BEGV, so that
14264 display starts at some point START > BEGV. It can
14265 happen that we are called with PT somewhere between
14266 BEGV and START. Try to handle that case. */
14267 if (row
< w
->current_matrix
->rows
14268 || row
->mode_line_p
)
14270 row
= w
->current_matrix
->rows
;
14271 if (row
->mode_line_p
)
14275 /* Due to newlines in overlay strings, we may have to
14276 skip forward over overlay strings. */
14277 while (MATRIX_ROW_BOTTOM_Y (row
) < last_y
14278 && MATRIX_ROW_END_CHARPOS (row
) == PT
14279 && !cursor_row_p (row
))
14282 /* If within the scroll margin, scroll. */
14283 if (row
->y
< top_scroll_margin
14284 && CHARPOS (startp
) != BEGV
)
14289 /* Cursor did not move. So don't scroll even if cursor line
14290 is partially visible, as it was so before. */
14291 rc
= CURSOR_MOVEMENT_SUCCESS
;
14294 if (PT
< MATRIX_ROW_START_CHARPOS (row
)
14295 || PT
> MATRIX_ROW_END_CHARPOS (row
))
14297 /* if PT is not in the glyph row, give up. */
14298 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
14301 else if (rc
!= CURSOR_MOVEMENT_SUCCESS
14302 && !NILP (BVAR (XBUFFER (w
->buffer
), bidi_display_reordering
)))
14304 /* If rows are bidi-reordered and point moved, back up
14305 until we find a row that does not belong to a
14306 continuation line. This is because we must consider
14307 all rows of a continued line as candidates for the
14308 new cursor positioning, since row start and end
14309 positions change non-linearly with vertical position
14311 /* FIXME: Revisit this when glyph ``spilling'' in
14312 continuation lines' rows is implemented for
14313 bidi-reordered rows. */
14314 while (MATRIX_ROW_CONTINUATION_LINE_P (row
))
14316 xassert (row
->enabled_p
);
14318 /* If we hit the beginning of the displayed portion
14319 without finding the first row of a continued
14321 if (row
<= w
->current_matrix
->rows
)
14323 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
14331 else if (rc
!= CURSOR_MOVEMENT_SUCCESS
14332 && MATRIX_ROW_PARTIALLY_VISIBLE_P (w
, row
)
14333 && make_cursor_line_fully_visible_p
)
14335 if (PT
== MATRIX_ROW_END_CHARPOS (row
)
14336 && !row
->ends_at_zv_p
14337 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row
))
14338 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
14339 else if (row
->height
> window_box_height (w
))
14341 /* If we end up in a partially visible line, let's
14342 make it fully visible, except when it's taller
14343 than the window, in which case we can't do much
14346 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
14350 set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0, 0, 0);
14351 if (!cursor_row_fully_visible_p (w
, 0, 1))
14352 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
14354 rc
= CURSOR_MOVEMENT_SUCCESS
;
14358 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
14359 else if (rc
!= CURSOR_MOVEMENT_SUCCESS
14360 && !NILP (BVAR (XBUFFER (w
->buffer
), bidi_display_reordering
)))
14362 /* With bidi-reordered rows, there could be more than
14363 one candidate row whose start and end positions
14364 occlude point. We need to let set_cursor_from_row
14365 find the best candidate. */
14366 /* FIXME: Revisit this when glyph ``spilling'' in
14367 continuation lines' rows is implemented for
14368 bidi-reordered rows. */
14373 if (MATRIX_ROW_START_CHARPOS (row
) <= PT
14374 && PT
<= MATRIX_ROW_END_CHARPOS (row
)
14375 && cursor_row_p (row
))
14376 rv
|= set_cursor_from_row (w
, row
, w
->current_matrix
,
14378 /* As soon as we've found the first suitable row
14379 whose ends_at_zv_p flag is set, we are done. */
14381 && MATRIX_ROW (w
->current_matrix
, w
->cursor
.vpos
)->ends_at_zv_p
)
14383 rc
= CURSOR_MOVEMENT_SUCCESS
;
14388 while ((MATRIX_ROW_CONTINUATION_LINE_P (row
)
14389 && MATRIX_ROW_BOTTOM_Y (row
) <= last_y
)
14390 || (MATRIX_ROW_START_CHARPOS (row
) == PT
14391 && MATRIX_ROW_BOTTOM_Y (row
) < last_y
));
14392 /* If we didn't find any candidate rows, or exited the
14393 loop before all the candidates were examined, signal
14394 to the caller that this method failed. */
14395 if (rc
!= CURSOR_MOVEMENT_SUCCESS
14396 && (!rv
|| MATRIX_ROW_CONTINUATION_LINE_P (row
)))
14397 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
14399 rc
= CURSOR_MOVEMENT_SUCCESS
;
14405 if (set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0, 0, 0))
14407 rc
= CURSOR_MOVEMENT_SUCCESS
;
14412 while (MATRIX_ROW_BOTTOM_Y (row
) < last_y
14413 && MATRIX_ROW_START_CHARPOS (row
) == PT
14414 && cursor_row_p (row
));
14422 #if !defined USE_TOOLKIT_SCROLL_BARS || defined USE_GTK
14426 set_vertical_scroll_bar (struct window
*w
)
14428 EMACS_INT start
, end
, whole
;
14430 /* Calculate the start and end positions for the current window.
14431 At some point, it would be nice to choose between scrollbars
14432 which reflect the whole buffer size, with special markers
14433 indicating narrowing, and scrollbars which reflect only the
14436 Note that mini-buffers sometimes aren't displaying any text. */
14437 if (!MINI_WINDOW_P (w
)
14438 || (w
== XWINDOW (minibuf_window
)
14439 && NILP (echo_area_buffer
[0])))
14441 struct buffer
*buf
= XBUFFER (w
->buffer
);
14442 whole
= BUF_ZV (buf
) - BUF_BEGV (buf
);
14443 start
= marker_position (w
->start
) - BUF_BEGV (buf
);
14444 /* I don't think this is guaranteed to be right. For the
14445 moment, we'll pretend it is. */
14446 end
= BUF_Z (buf
) - XFASTINT (w
->window_end_pos
) - BUF_BEGV (buf
);
14450 if (whole
< (end
- start
))
14451 whole
= end
- start
;
14454 start
= end
= whole
= 0;
14456 /* Indicate what this scroll bar ought to be displaying now. */
14457 if (FRAME_TERMINAL (XFRAME (w
->frame
))->set_vertical_scroll_bar_hook
)
14458 (*FRAME_TERMINAL (XFRAME (w
->frame
))->set_vertical_scroll_bar_hook
)
14459 (w
, end
- start
, whole
, start
);
14463 /* Redisplay leaf window WINDOW. JUST_THIS_ONE_P non-zero means only
14464 selected_window is redisplayed.
14466 We can return without actually redisplaying the window if
14467 fonts_changed_p is nonzero. In that case, redisplay_internal will
14471 redisplay_window (Lisp_Object window
, int just_this_one_p
)
14473 struct window
*w
= XWINDOW (window
);
14474 struct frame
*f
= XFRAME (w
->frame
);
14475 struct buffer
*buffer
= XBUFFER (w
->buffer
);
14476 struct buffer
*old
= current_buffer
;
14477 struct text_pos lpoint
, opoint
, startp
;
14478 int update_mode_line
;
14481 /* Record it now because it's overwritten. */
14482 int current_matrix_up_to_date_p
= 0;
14483 int used_current_matrix_p
= 0;
14484 /* This is less strict than current_matrix_up_to_date_p.
14485 It indictes that the buffer contents and narrowing are unchanged. */
14486 int buffer_unchanged_p
= 0;
14487 int temp_scroll_step
= 0;
14488 int count
= SPECPDL_INDEX ();
14490 int centering_position
= -1;
14491 int last_line_misfit
= 0;
14492 EMACS_INT beg_unchanged
, end_unchanged
;
14494 SET_TEXT_POS (lpoint
, PT
, PT_BYTE
);
14497 /* W must be a leaf window here. */
14498 xassert (!NILP (w
->buffer
));
14500 *w
->desired_matrix
->method
= 0;
14504 reconsider_clip_changes (w
, buffer
);
14506 /* Has the mode line to be updated? */
14507 update_mode_line
= (!NILP (w
->update_mode_line
)
14508 || update_mode_lines
14509 || buffer
->clip_changed
14510 || buffer
->prevent_redisplay_optimizations_p
);
14512 if (MINI_WINDOW_P (w
))
14514 if (w
== XWINDOW (echo_area_window
)
14515 && !NILP (echo_area_buffer
[0]))
14517 if (update_mode_line
)
14518 /* We may have to update a tty frame's menu bar or a
14519 tool-bar. Example `M-x C-h C-h C-g'. */
14520 goto finish_menu_bars
;
14522 /* We've already displayed the echo area glyphs in this window. */
14523 goto finish_scroll_bars
;
14525 else if ((w
!= XWINDOW (minibuf_window
)
14526 || minibuf_level
== 0)
14527 /* When buffer is nonempty, redisplay window normally. */
14528 && BUF_Z (XBUFFER (w
->buffer
)) == BUF_BEG (XBUFFER (w
->buffer
))
14529 /* Quail displays non-mini buffers in minibuffer window.
14530 In that case, redisplay the window normally. */
14531 && !NILP (Fmemq (w
->buffer
, Vminibuffer_list
)))
14533 /* W is a mini-buffer window, but it's not active, so clear
14535 int yb
= window_text_bottom_y (w
);
14536 struct glyph_row
*row
;
14539 for (y
= 0, row
= w
->desired_matrix
->rows
;
14541 y
+= row
->height
, ++row
)
14542 blank_row (w
, row
, y
);
14543 goto finish_scroll_bars
;
14546 clear_glyph_matrix (w
->desired_matrix
);
14549 /* Otherwise set up data on this window; select its buffer and point
14551 /* Really select the buffer, for the sake of buffer-local
14553 set_buffer_internal_1 (XBUFFER (w
->buffer
));
14555 current_matrix_up_to_date_p
14556 = (!NILP (w
->window_end_valid
)
14557 && !current_buffer
->clip_changed
14558 && !current_buffer
->prevent_redisplay_optimizations_p
14559 && XFASTINT (w
->last_modified
) >= MODIFF
14560 && XFASTINT (w
->last_overlay_modified
) >= OVERLAY_MODIFF
);
14562 /* Run the window-bottom-change-functions
14563 if it is possible that the text on the screen has changed
14564 (either due to modification of the text, or any other reason). */
14565 if (!current_matrix_up_to_date_p
14566 && !NILP (Vwindow_text_change_functions
))
14568 safe_run_hooks (Qwindow_text_change_functions
);
14572 beg_unchanged
= BEG_UNCHANGED
;
14573 end_unchanged
= END_UNCHANGED
;
14575 SET_TEXT_POS (opoint
, PT
, PT_BYTE
);
14577 specbind (Qinhibit_point_motion_hooks
, Qt
);
14580 = (!NILP (w
->window_end_valid
)
14581 && !current_buffer
->clip_changed
14582 && XFASTINT (w
->last_modified
) >= MODIFF
14583 && XFASTINT (w
->last_overlay_modified
) >= OVERLAY_MODIFF
);
14585 /* When windows_or_buffers_changed is non-zero, we can't rely on
14586 the window end being valid, so set it to nil there. */
14587 if (windows_or_buffers_changed
)
14589 /* If window starts on a continuation line, maybe adjust the
14590 window start in case the window's width changed. */
14591 if (XMARKER (w
->start
)->buffer
== current_buffer
)
14592 compute_window_start_on_continuation_line (w
);
14594 w
->window_end_valid
= Qnil
;
14597 /* Some sanity checks. */
14598 CHECK_WINDOW_END (w
);
14599 if (Z
== Z_BYTE
&& CHARPOS (opoint
) != BYTEPOS (opoint
))
14601 if (BYTEPOS (opoint
) < CHARPOS (opoint
))
14604 /* If %c is in mode line, update it if needed. */
14605 if (!NILP (w
->column_number_displayed
)
14606 /* This alternative quickly identifies a common case
14607 where no change is needed. */
14608 && !(PT
== XFASTINT (w
->last_point
)
14609 && XFASTINT (w
->last_modified
) >= MODIFF
14610 && XFASTINT (w
->last_overlay_modified
) >= OVERLAY_MODIFF
)
14611 && (XFASTINT (w
->column_number_displayed
) != current_column ()))
14612 update_mode_line
= 1;
14614 /* Count number of windows showing the selected buffer. An indirect
14615 buffer counts as its base buffer. */
14616 if (!just_this_one_p
)
14618 struct buffer
*current_base
, *window_base
;
14619 current_base
= current_buffer
;
14620 window_base
= XBUFFER (XWINDOW (selected_window
)->buffer
);
14621 if (current_base
->base_buffer
)
14622 current_base
= current_base
->base_buffer
;
14623 if (window_base
->base_buffer
)
14624 window_base
= window_base
->base_buffer
;
14625 if (current_base
== window_base
)
14629 /* Point refers normally to the selected window. For any other
14630 window, set up appropriate value. */
14631 if (!EQ (window
, selected_window
))
14633 EMACS_INT new_pt
= XMARKER (w
->pointm
)->charpos
;
14634 EMACS_INT new_pt_byte
= marker_byte_position (w
->pointm
);
14638 new_pt_byte
= BEGV_BYTE
;
14639 set_marker_both (w
->pointm
, Qnil
, BEGV
, BEGV_BYTE
);
14641 else if (new_pt
> (ZV
- 1))
14644 new_pt_byte
= ZV_BYTE
;
14645 set_marker_both (w
->pointm
, Qnil
, ZV
, ZV_BYTE
);
14648 /* We don't use SET_PT so that the point-motion hooks don't run. */
14649 TEMP_SET_PT_BOTH (new_pt
, new_pt_byte
);
14652 /* If any of the character widths specified in the display table
14653 have changed, invalidate the width run cache. It's true that
14654 this may be a bit late to catch such changes, but the rest of
14655 redisplay goes (non-fatally) haywire when the display table is
14656 changed, so why should we worry about doing any better? */
14657 if (current_buffer
->width_run_cache
)
14659 struct Lisp_Char_Table
*disptab
= buffer_display_table ();
14661 if (! disptab_matches_widthtab (disptab
,
14662 XVECTOR (BVAR (current_buffer
, width_table
))))
14664 invalidate_region_cache (current_buffer
,
14665 current_buffer
->width_run_cache
,
14667 recompute_width_table (current_buffer
, disptab
);
14671 /* If window-start is screwed up, choose a new one. */
14672 if (XMARKER (w
->start
)->buffer
!= current_buffer
)
14675 SET_TEXT_POS_FROM_MARKER (startp
, w
->start
);
14677 /* If someone specified a new starting point but did not insist,
14678 check whether it can be used. */
14679 if (!NILP (w
->optional_new_start
)
14680 && CHARPOS (startp
) >= BEGV
14681 && CHARPOS (startp
) <= ZV
)
14683 w
->optional_new_start
= Qnil
;
14684 start_display (&it
, w
, startp
);
14685 move_it_to (&it
, PT
, 0, it
.last_visible_y
, -1,
14686 MOVE_TO_POS
| MOVE_TO_X
| MOVE_TO_Y
);
14687 if (IT_CHARPOS (it
) == PT
)
14688 w
->force_start
= Qt
;
14689 /* IT may overshoot PT if text at PT is invisible. */
14690 else if (IT_CHARPOS (it
) > PT
&& CHARPOS (startp
) <= PT
)
14691 w
->force_start
= Qt
;
14696 /* Handle case where place to start displaying has been specified,
14697 unless the specified location is outside the accessible range. */
14698 if (!NILP (w
->force_start
)
14699 || w
->frozen_window_start_p
)
14701 /* We set this later on if we have to adjust point. */
14704 w
->force_start
= Qnil
;
14706 w
->window_end_valid
= Qnil
;
14708 /* Forget any recorded base line for line number display. */
14709 if (!buffer_unchanged_p
)
14710 w
->base_line_number
= Qnil
;
14712 /* Redisplay the mode line. Select the buffer properly for that.
14713 Also, run the hook window-scroll-functions
14714 because we have scrolled. */
14715 /* Note, we do this after clearing force_start because
14716 if there's an error, it is better to forget about force_start
14717 than to get into an infinite loop calling the hook functions
14718 and having them get more errors. */
14719 if (!update_mode_line
14720 || ! NILP (Vwindow_scroll_functions
))
14722 update_mode_line
= 1;
14723 w
->update_mode_line
= Qt
;
14724 startp
= run_window_scroll_functions (window
, startp
);
14727 w
->last_modified
= make_number (0);
14728 w
->last_overlay_modified
= make_number (0);
14729 if (CHARPOS (startp
) < BEGV
)
14730 SET_TEXT_POS (startp
, BEGV
, BEGV_BYTE
);
14731 else if (CHARPOS (startp
) > ZV
)
14732 SET_TEXT_POS (startp
, ZV
, ZV_BYTE
);
14734 /* Redisplay, then check if cursor has been set during the
14735 redisplay. Give up if new fonts were loaded. */
14736 /* We used to issue a CHECK_MARGINS argument to try_window here,
14737 but this causes scrolling to fail when point begins inside
14738 the scroll margin (bug#148) -- cyd */
14739 if (!try_window (window
, startp
, 0))
14741 w
->force_start
= Qt
;
14742 clear_glyph_matrix (w
->desired_matrix
);
14743 goto need_larger_matrices
;
14746 if (w
->cursor
.vpos
< 0 && !w
->frozen_window_start_p
)
14748 /* If point does not appear, try to move point so it does
14749 appear. The desired matrix has been built above, so we
14750 can use it here. */
14751 new_vpos
= window_box_height (w
) / 2;
14754 if (!cursor_row_fully_visible_p (w
, 0, 0))
14756 /* Point does appear, but on a line partly visible at end of window.
14757 Move it back to a fully-visible line. */
14758 new_vpos
= window_box_height (w
);
14761 /* If we need to move point for either of the above reasons,
14762 now actually do it. */
14765 struct glyph_row
*row
;
14767 row
= MATRIX_FIRST_TEXT_ROW (w
->desired_matrix
);
14768 while (MATRIX_ROW_BOTTOM_Y (row
) < new_vpos
)
14771 TEMP_SET_PT_BOTH (MATRIX_ROW_START_CHARPOS (row
),
14772 MATRIX_ROW_START_BYTEPOS (row
));
14774 if (w
!= XWINDOW (selected_window
))
14775 set_marker_both (w
->pointm
, Qnil
, PT
, PT_BYTE
);
14776 else if (current_buffer
== old
)
14777 SET_TEXT_POS (lpoint
, PT
, PT_BYTE
);
14779 set_cursor_from_row (w
, row
, w
->desired_matrix
, 0, 0, 0, 0);
14781 /* If we are highlighting the region, then we just changed
14782 the region, so redisplay to show it. */
14783 if (!NILP (Vtransient_mark_mode
)
14784 && !NILP (BVAR (current_buffer
, mark_active
)))
14786 clear_glyph_matrix (w
->desired_matrix
);
14787 if (!try_window (window
, startp
, 0))
14788 goto need_larger_matrices
;
14793 debug_method_add (w
, "forced window start");
14798 /* Handle case where text has not changed, only point, and it has
14799 not moved off the frame, and we are not retrying after hscroll.
14800 (current_matrix_up_to_date_p is nonzero when retrying.) */
14801 if (current_matrix_up_to_date_p
14802 && (rc
= try_cursor_movement (window
, startp
, &temp_scroll_step
),
14803 rc
!= CURSOR_MOVEMENT_CANNOT_BE_USED
))
14807 case CURSOR_MOVEMENT_SUCCESS
:
14808 used_current_matrix_p
= 1;
14811 case CURSOR_MOVEMENT_MUST_SCROLL
:
14812 goto try_to_scroll
;
14818 /* If current starting point was originally the beginning of a line
14819 but no longer is, find a new starting point. */
14820 else if (!NILP (w
->start_at_line_beg
)
14821 && !(CHARPOS (startp
) <= BEGV
14822 || FETCH_BYTE (BYTEPOS (startp
) - 1) == '\n'))
14825 debug_method_add (w
, "recenter 1");
14830 /* Try scrolling with try_window_id. Value is > 0 if update has
14831 been done, it is -1 if we know that the same window start will
14832 not work. It is 0 if unsuccessful for some other reason. */
14833 else if ((tem
= try_window_id (w
)) != 0)
14836 debug_method_add (w
, "try_window_id %d", tem
);
14839 if (fonts_changed_p
)
14840 goto need_larger_matrices
;
14844 /* Otherwise try_window_id has returned -1 which means that we
14845 don't want the alternative below this comment to execute. */
14847 else if (CHARPOS (startp
) >= BEGV
14848 && CHARPOS (startp
) <= ZV
14849 && PT
>= CHARPOS (startp
)
14850 && (CHARPOS (startp
) < ZV
14851 /* Avoid starting at end of buffer. */
14852 || CHARPOS (startp
) == BEGV
14853 || (XFASTINT (w
->last_modified
) >= MODIFF
14854 && XFASTINT (w
->last_overlay_modified
) >= OVERLAY_MODIFF
)))
14857 /* If first window line is a continuation line, and window start
14858 is inside the modified region, but the first change is before
14859 current window start, we must select a new window start.
14861 However, if this is the result of a down-mouse event (e.g. by
14862 extending the mouse-drag-overlay), we don't want to select a
14863 new window start, since that would change the position under
14864 the mouse, resulting in an unwanted mouse-movement rather
14865 than a simple mouse-click. */
14866 if (NILP (w
->start_at_line_beg
)
14867 && NILP (do_mouse_tracking
)
14868 && CHARPOS (startp
) > BEGV
14869 && CHARPOS (startp
) > BEG
+ beg_unchanged
14870 && CHARPOS (startp
) <= Z
- end_unchanged
14871 /* Even if w->start_at_line_beg is nil, a new window may
14872 start at a line_beg, since that's how set_buffer_window
14873 sets it. So, we need to check the return value of
14874 compute_window_start_on_continuation_line. (See also
14876 && XMARKER (w
->start
)->buffer
== current_buffer
14877 && compute_window_start_on_continuation_line (w
))
14879 w
->force_start
= Qt
;
14880 SET_TEXT_POS_FROM_MARKER (startp
, w
->start
);
14885 debug_method_add (w
, "same window start");
14888 /* Try to redisplay starting at same place as before.
14889 If point has not moved off frame, accept the results. */
14890 if (!current_matrix_up_to_date_p
14891 /* Don't use try_window_reusing_current_matrix in this case
14892 because a window scroll function can have changed the
14894 || !NILP (Vwindow_scroll_functions
)
14895 || MINI_WINDOW_P (w
)
14896 || !(used_current_matrix_p
14897 = try_window_reusing_current_matrix (w
)))
14899 IF_DEBUG (debug_method_add (w
, "1"));
14900 if (try_window (window
, startp
, TRY_WINDOW_CHECK_MARGINS
) < 0)
14901 /* -1 means we need to scroll.
14902 0 means we need new matrices, but fonts_changed_p
14903 is set in that case, so we will detect it below. */
14904 goto try_to_scroll
;
14907 if (fonts_changed_p
)
14908 goto need_larger_matrices
;
14910 if (w
->cursor
.vpos
>= 0)
14912 if (!just_this_one_p
14913 || current_buffer
->clip_changed
14914 || BEG_UNCHANGED
< CHARPOS (startp
))
14915 /* Forget any recorded base line for line number display. */
14916 w
->base_line_number
= Qnil
;
14918 if (!cursor_row_fully_visible_p (w
, 1, 0))
14920 clear_glyph_matrix (w
->desired_matrix
);
14921 last_line_misfit
= 1;
14923 /* Drop through and scroll. */
14928 clear_glyph_matrix (w
->desired_matrix
);
14933 w
->last_modified
= make_number (0);
14934 w
->last_overlay_modified
= make_number (0);
14936 /* Redisplay the mode line. Select the buffer properly for that. */
14937 if (!update_mode_line
)
14939 update_mode_line
= 1;
14940 w
->update_mode_line
= Qt
;
14943 /* Try to scroll by specified few lines. */
14944 if ((scroll_conservatively
14945 || emacs_scroll_step
14946 || temp_scroll_step
14947 || NUMBERP (BVAR (current_buffer
, scroll_up_aggressively
))
14948 || NUMBERP (BVAR (current_buffer
, scroll_down_aggressively
)))
14949 && CHARPOS (startp
) >= BEGV
14950 && CHARPOS (startp
) <= ZV
)
14952 /* The function returns -1 if new fonts were loaded, 1 if
14953 successful, 0 if not successful. */
14954 int ss
= try_scrolling (window
, just_this_one_p
,
14955 scroll_conservatively
,
14957 temp_scroll_step
, last_line_misfit
);
14960 case SCROLLING_SUCCESS
:
14963 case SCROLLING_NEED_LARGER_MATRICES
:
14964 goto need_larger_matrices
;
14966 case SCROLLING_FAILED
:
14974 /* Finally, just choose a place to start which positions point
14975 according to user preferences. */
14980 debug_method_add (w
, "recenter");
14983 /* w->vscroll = 0; */
14985 /* Forget any previously recorded base line for line number display. */
14986 if (!buffer_unchanged_p
)
14987 w
->base_line_number
= Qnil
;
14989 /* Determine the window start relative to point. */
14990 init_iterator (&it
, w
, PT
, PT_BYTE
, NULL
, DEFAULT_FACE_ID
);
14991 it
.current_y
= it
.last_visible_y
;
14992 if (centering_position
< 0)
14996 ? min (scroll_margin
, WINDOW_TOTAL_LINES (w
) / 4)
14998 EMACS_INT margin_pos
= CHARPOS (startp
);
15000 Lisp_Object aggressive
;
15002 /* If there is a scroll margin at the top of the window, find
15003 its character position. */
15005 /* Cannot call start_display if startp is not in the
15006 accessible region of the buffer. This can happen when we
15007 have just switched to a different buffer and/or changed
15008 its restriction. In that case, startp is initialized to
15009 the character position 1 (BEG) because we did not yet
15010 have chance to display the buffer even once. */
15011 && BEGV
<= CHARPOS (startp
) && CHARPOS (startp
) <= ZV
)
15014 void *it1data
= NULL
;
15016 SAVE_IT (it1
, it
, it1data
);
15017 start_display (&it1
, w
, startp
);
15018 move_it_vertically (&it1
, margin
);
15019 margin_pos
= IT_CHARPOS (it1
);
15020 RESTORE_IT (&it
, &it
, it1data
);
15022 scrolling_up
= PT
> margin_pos
;
15025 ? BVAR (current_buffer
, scroll_up_aggressively
)
15026 : BVAR (current_buffer
, scroll_down_aggressively
);
15028 if (!MINI_WINDOW_P (w
)
15029 && (scroll_conservatively
> SCROLL_LIMIT
|| NUMBERP (aggressive
)))
15033 /* Setting scroll-conservatively overrides
15034 scroll-*-aggressively. */
15035 if (!scroll_conservatively
&& NUMBERP (aggressive
))
15037 double float_amount
= XFLOATINT (aggressive
);
15039 pt_offset
= float_amount
* WINDOW_BOX_TEXT_HEIGHT (w
);
15040 if (pt_offset
== 0 && float_amount
> 0)
15045 /* Compute how much to move the window start backward from
15046 point so that point will be displayed where the user
15050 centering_position
= it
.last_visible_y
;
15052 centering_position
-= pt_offset
;
15053 centering_position
-=
15054 FRAME_LINE_HEIGHT (f
) * (1 + margin
+ (last_line_misfit
!= 0));
15055 /* Don't let point enter the scroll margin near top of
15057 if (centering_position
< margin
* FRAME_LINE_HEIGHT (f
))
15058 centering_position
= margin
* FRAME_LINE_HEIGHT (f
);
15061 centering_position
= margin
* FRAME_LINE_HEIGHT (f
) + pt_offset
;
15064 /* Set the window start half the height of the window backward
15066 centering_position
= window_box_height (w
) / 2;
15068 move_it_vertically_backward (&it
, centering_position
);
15070 xassert (IT_CHARPOS (it
) >= BEGV
);
15072 /* The function move_it_vertically_backward may move over more
15073 than the specified y-distance. If it->w is small, e.g. a
15074 mini-buffer window, we may end up in front of the window's
15075 display area. Start displaying at the start of the line
15076 containing PT in this case. */
15077 if (it
.current_y
<= 0)
15079 init_iterator (&it
, w
, PT
, PT_BYTE
, NULL
, DEFAULT_FACE_ID
);
15080 move_it_vertically_backward (&it
, 0);
15084 it
.current_x
= it
.hpos
= 0;
15086 /* Set the window start position here explicitly, to avoid an
15087 infinite loop in case the functions in window-scroll-functions
15089 set_marker_both (w
->start
, Qnil
, IT_CHARPOS (it
), IT_BYTEPOS (it
));
15091 /* Run scroll hooks. */
15092 startp
= run_window_scroll_functions (window
, it
.current
.pos
);
15094 /* Redisplay the window. */
15095 if (!current_matrix_up_to_date_p
15096 || windows_or_buffers_changed
15097 || cursor_type_changed
15098 /* Don't use try_window_reusing_current_matrix in this case
15099 because it can have changed the buffer. */
15100 || !NILP (Vwindow_scroll_functions
)
15101 || !just_this_one_p
15102 || MINI_WINDOW_P (w
)
15103 || !(used_current_matrix_p
15104 = try_window_reusing_current_matrix (w
)))
15105 try_window (window
, startp
, 0);
15107 /* If new fonts have been loaded (due to fontsets), give up. We
15108 have to start a new redisplay since we need to re-adjust glyph
15110 if (fonts_changed_p
)
15111 goto need_larger_matrices
;
15113 /* If cursor did not appear assume that the middle of the window is
15114 in the first line of the window. Do it again with the next line.
15115 (Imagine a window of height 100, displaying two lines of height
15116 60. Moving back 50 from it->last_visible_y will end in the first
15118 if (w
->cursor
.vpos
< 0)
15120 if (!NILP (w
->window_end_valid
)
15121 && PT
>= Z
- XFASTINT (w
->window_end_pos
))
15123 clear_glyph_matrix (w
->desired_matrix
);
15124 move_it_by_lines (&it
, 1);
15125 try_window (window
, it
.current
.pos
, 0);
15127 else if (PT
< IT_CHARPOS (it
))
15129 clear_glyph_matrix (w
->desired_matrix
);
15130 move_it_by_lines (&it
, -1);
15131 try_window (window
, it
.current
.pos
, 0);
15135 /* Not much we can do about it. */
15139 /* Consider the following case: Window starts at BEGV, there is
15140 invisible, intangible text at BEGV, so that display starts at
15141 some point START > BEGV. It can happen that we are called with
15142 PT somewhere between BEGV and START. Try to handle that case. */
15143 if (w
->cursor
.vpos
< 0)
15145 struct glyph_row
*row
= w
->current_matrix
->rows
;
15146 if (row
->mode_line_p
)
15148 set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0, 0, 0);
15151 if (!cursor_row_fully_visible_p (w
, 0, 0))
15153 /* If vscroll is enabled, disable it and try again. */
15157 clear_glyph_matrix (w
->desired_matrix
);
15161 /* If centering point failed to make the whole line visible,
15162 put point at the top instead. That has to make the whole line
15163 visible, if it can be done. */
15164 if (centering_position
== 0)
15167 clear_glyph_matrix (w
->desired_matrix
);
15168 centering_position
= 0;
15174 SET_TEXT_POS_FROM_MARKER (startp
, w
->start
);
15175 w
->start_at_line_beg
= ((CHARPOS (startp
) == BEGV
15176 || FETCH_BYTE (BYTEPOS (startp
) - 1) == '\n')
15179 /* Display the mode line, if we must. */
15180 if ((update_mode_line
15181 /* If window not full width, must redo its mode line
15182 if (a) the window to its side is being redone and
15183 (b) we do a frame-based redisplay. This is a consequence
15184 of how inverted lines are drawn in frame-based redisplay. */
15185 || (!just_this_one_p
15186 && !FRAME_WINDOW_P (f
)
15187 && !WINDOW_FULL_WIDTH_P (w
))
15188 /* Line number to display. */
15189 || INTEGERP (w
->base_line_pos
)
15190 /* Column number is displayed and different from the one displayed. */
15191 || (!NILP (w
->column_number_displayed
)
15192 && (XFASTINT (w
->column_number_displayed
) != current_column ())))
15193 /* This means that the window has a mode line. */
15194 && (WINDOW_WANTS_MODELINE_P (w
)
15195 || WINDOW_WANTS_HEADER_LINE_P (w
)))
15197 display_mode_lines (w
);
15199 /* If mode line height has changed, arrange for a thorough
15200 immediate redisplay using the correct mode line height. */
15201 if (WINDOW_WANTS_MODELINE_P (w
)
15202 && CURRENT_MODE_LINE_HEIGHT (w
) != DESIRED_MODE_LINE_HEIGHT (w
))
15204 fonts_changed_p
= 1;
15205 MATRIX_MODE_LINE_ROW (w
->current_matrix
)->height
15206 = DESIRED_MODE_LINE_HEIGHT (w
);
15209 /* If header line height has changed, arrange for a thorough
15210 immediate redisplay using the correct header line height. */
15211 if (WINDOW_WANTS_HEADER_LINE_P (w
)
15212 && CURRENT_HEADER_LINE_HEIGHT (w
) != DESIRED_HEADER_LINE_HEIGHT (w
))
15214 fonts_changed_p
= 1;
15215 MATRIX_HEADER_LINE_ROW (w
->current_matrix
)->height
15216 = DESIRED_HEADER_LINE_HEIGHT (w
);
15219 if (fonts_changed_p
)
15220 goto need_larger_matrices
;
15223 if (!line_number_displayed
15224 && !BUFFERP (w
->base_line_pos
))
15226 w
->base_line_pos
= Qnil
;
15227 w
->base_line_number
= Qnil
;
15232 /* When we reach a frame's selected window, redo the frame's menu bar. */
15233 if (update_mode_line
15234 && EQ (FRAME_SELECTED_WINDOW (f
), window
))
15236 int redisplay_menu_p
= 0;
15238 if (FRAME_WINDOW_P (f
))
15240 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
15241 || defined (HAVE_NS) || defined (USE_GTK)
15242 redisplay_menu_p
= FRAME_EXTERNAL_MENU_BAR (f
);
15244 redisplay_menu_p
= FRAME_MENU_BAR_LINES (f
) > 0;
15248 redisplay_menu_p
= FRAME_MENU_BAR_LINES (f
) > 0;
15250 if (redisplay_menu_p
)
15251 display_menu_bar (w
);
15253 #ifdef HAVE_WINDOW_SYSTEM
15254 if (FRAME_WINDOW_P (f
))
15256 #if defined (USE_GTK) || defined (HAVE_NS)
15257 if (FRAME_EXTERNAL_TOOL_BAR (f
))
15258 redisplay_tool_bar (f
);
15260 if (WINDOWP (f
->tool_bar_window
)
15261 && (FRAME_TOOL_BAR_LINES (f
) > 0
15262 || !NILP (Vauto_resize_tool_bars
))
15263 && redisplay_tool_bar (f
))
15264 ignore_mouse_drag_p
= 1;
15270 #ifdef HAVE_WINDOW_SYSTEM
15271 if (FRAME_WINDOW_P (f
)
15272 && update_window_fringes (w
, (just_this_one_p
15273 || (!used_current_matrix_p
&& !overlay_arrow_seen
)
15274 || w
->pseudo_window_p
)))
15278 if (draw_window_fringes (w
, 1))
15279 x_draw_vertical_border (w
);
15283 #endif /* HAVE_WINDOW_SYSTEM */
15285 /* We go to this label, with fonts_changed_p nonzero,
15286 if it is necessary to try again using larger glyph matrices.
15287 We have to redeem the scroll bar even in this case,
15288 because the loop in redisplay_internal expects that. */
15289 need_larger_matrices
:
15291 finish_scroll_bars
:
15293 if (WINDOW_HAS_VERTICAL_SCROLL_BAR (w
))
15295 /* Set the thumb's position and size. */
15296 set_vertical_scroll_bar (w
);
15298 /* Note that we actually used the scroll bar attached to this
15299 window, so it shouldn't be deleted at the end of redisplay. */
15300 if (FRAME_TERMINAL (f
)->redeem_scroll_bar_hook
)
15301 (*FRAME_TERMINAL (f
)->redeem_scroll_bar_hook
) (w
);
15304 /* Restore current_buffer and value of point in it. The window
15305 update may have changed the buffer, so first make sure `opoint'
15306 is still valid (Bug#6177). */
15307 if (CHARPOS (opoint
) < BEGV
)
15308 TEMP_SET_PT_BOTH (BEGV
, BEGV_BYTE
);
15309 else if (CHARPOS (opoint
) > ZV
)
15310 TEMP_SET_PT_BOTH (Z
, Z_BYTE
);
15312 TEMP_SET_PT_BOTH (CHARPOS (opoint
), BYTEPOS (opoint
));
15314 set_buffer_internal_1 (old
);
15315 /* Avoid an abort in TEMP_SET_PT_BOTH if the buffer has become
15316 shorter. This can be caused by log truncation in *Messages*. */
15317 if (CHARPOS (lpoint
) <= ZV
)
15318 TEMP_SET_PT_BOTH (CHARPOS (lpoint
), BYTEPOS (lpoint
));
15320 unbind_to (count
, Qnil
);
15324 /* Build the complete desired matrix of WINDOW with a window start
15325 buffer position POS.
15327 Value is 1 if successful. It is zero if fonts were loaded during
15328 redisplay which makes re-adjusting glyph matrices necessary, and -1
15329 if point would appear in the scroll margins.
15330 (We check the former only if TRY_WINDOW_IGNORE_FONTS_CHANGE is
15331 unset in FLAGS, and the latter only if TRY_WINDOW_CHECK_MARGINS is
15335 try_window (Lisp_Object window
, struct text_pos pos
, int flags
)
15337 struct window
*w
= XWINDOW (window
);
15339 struct glyph_row
*last_text_row
= NULL
;
15340 struct frame
*f
= XFRAME (w
->frame
);
15342 /* Make POS the new window start. */
15343 set_marker_both (w
->start
, Qnil
, CHARPOS (pos
), BYTEPOS (pos
));
15345 /* Mark cursor position as unknown. No overlay arrow seen. */
15346 w
->cursor
.vpos
= -1;
15347 overlay_arrow_seen
= 0;
15349 /* Initialize iterator and info to start at POS. */
15350 start_display (&it
, w
, pos
);
15352 /* Display all lines of W. */
15353 while (it
.current_y
< it
.last_visible_y
)
15355 if (display_line (&it
))
15356 last_text_row
= it
.glyph_row
- 1;
15357 if (fonts_changed_p
&& !(flags
& TRY_WINDOW_IGNORE_FONTS_CHANGE
))
15361 /* Don't let the cursor end in the scroll margins. */
15362 if ((flags
& TRY_WINDOW_CHECK_MARGINS
)
15363 && !MINI_WINDOW_P (w
))
15365 int this_scroll_margin
;
15367 if (scroll_margin
> 0)
15369 this_scroll_margin
= min (scroll_margin
, WINDOW_TOTAL_LINES (w
) / 4);
15370 this_scroll_margin
*= FRAME_LINE_HEIGHT (f
);
15373 this_scroll_margin
= 0;
15375 if ((w
->cursor
.y
>= 0 /* not vscrolled */
15376 && w
->cursor
.y
< this_scroll_margin
15377 && CHARPOS (pos
) > BEGV
15378 && IT_CHARPOS (it
) < ZV
)
15379 /* rms: considering make_cursor_line_fully_visible_p here
15380 seems to give wrong results. We don't want to recenter
15381 when the last line is partly visible, we want to allow
15382 that case to be handled in the usual way. */
15383 || w
->cursor
.y
> it
.last_visible_y
- this_scroll_margin
- 1)
15385 w
->cursor
.vpos
= -1;
15386 clear_glyph_matrix (w
->desired_matrix
);
15391 /* If bottom moved off end of frame, change mode line percentage. */
15392 if (XFASTINT (w
->window_end_pos
) <= 0
15393 && Z
!= IT_CHARPOS (it
))
15394 w
->update_mode_line
= Qt
;
15396 /* Set window_end_pos to the offset of the last character displayed
15397 on the window from the end of current_buffer. Set
15398 window_end_vpos to its row number. */
15401 xassert (MATRIX_ROW_DISPLAYS_TEXT_P (last_text_row
));
15402 w
->window_end_bytepos
15403 = Z_BYTE
- MATRIX_ROW_END_BYTEPOS (last_text_row
);
15405 = make_number (Z
- MATRIX_ROW_END_CHARPOS (last_text_row
));
15407 = make_number (MATRIX_ROW_VPOS (last_text_row
, w
->desired_matrix
));
15408 xassert (MATRIX_ROW (w
->desired_matrix
, XFASTINT (w
->window_end_vpos
))
15409 ->displays_text_p
);
15413 w
->window_end_bytepos
= Z_BYTE
- ZV_BYTE
;
15414 w
->window_end_pos
= make_number (Z
- ZV
);
15415 w
->window_end_vpos
= make_number (0);
15418 /* But that is not valid info until redisplay finishes. */
15419 w
->window_end_valid
= Qnil
;
15425 /************************************************************************
15426 Window redisplay reusing current matrix when buffer has not changed
15427 ************************************************************************/
15429 /* Try redisplay of window W showing an unchanged buffer with a
15430 different window start than the last time it was displayed by
15431 reusing its current matrix. Value is non-zero if successful.
15432 W->start is the new window start. */
15435 try_window_reusing_current_matrix (struct window
*w
)
15437 struct frame
*f
= XFRAME (w
->frame
);
15438 struct glyph_row
*bottom_row
;
15441 struct text_pos start
, new_start
;
15442 int nrows_scrolled
, i
;
15443 struct glyph_row
*last_text_row
;
15444 struct glyph_row
*last_reused_text_row
;
15445 struct glyph_row
*start_row
;
15446 int start_vpos
, min_y
, max_y
;
15449 if (inhibit_try_window_reusing
)
15453 if (/* This function doesn't handle terminal frames. */
15454 !FRAME_WINDOW_P (f
)
15455 /* Don't try to reuse the display if windows have been split
15457 || windows_or_buffers_changed
15458 || cursor_type_changed
)
15461 /* Can't do this if region may have changed. */
15462 if ((!NILP (Vtransient_mark_mode
)
15463 && !NILP (BVAR (current_buffer
, mark_active
)))
15464 || !NILP (w
->region_showing
)
15465 || !NILP (Vshow_trailing_whitespace
))
15468 /* If top-line visibility has changed, give up. */
15469 if (WINDOW_WANTS_HEADER_LINE_P (w
)
15470 != MATRIX_HEADER_LINE_ROW (w
->current_matrix
)->mode_line_p
)
15473 /* Give up if old or new display is scrolled vertically. We could
15474 make this function handle this, but right now it doesn't. */
15475 start_row
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
15476 if (w
->vscroll
|| MATRIX_ROW_PARTIALLY_VISIBLE_P (w
, start_row
))
15479 /* The variable new_start now holds the new window start. The old
15480 start `start' can be determined from the current matrix. */
15481 SET_TEXT_POS_FROM_MARKER (new_start
, w
->start
);
15482 start
= start_row
->minpos
;
15483 start_vpos
= MATRIX_ROW_VPOS (start_row
, w
->current_matrix
);
15485 /* Clear the desired matrix for the display below. */
15486 clear_glyph_matrix (w
->desired_matrix
);
15488 if (CHARPOS (new_start
) <= CHARPOS (start
))
15490 /* Don't use this method if the display starts with an ellipsis
15491 displayed for invisible text. It's not easy to handle that case
15492 below, and it's certainly not worth the effort since this is
15493 not a frequent case. */
15494 if (in_ellipses_for_invisible_text_p (&start_row
->start
, w
))
15497 IF_DEBUG (debug_method_add (w
, "twu1"));
15499 /* Display up to a row that can be reused. The variable
15500 last_text_row is set to the last row displayed that displays
15501 text. Note that it.vpos == 0 if or if not there is a
15502 header-line; it's not the same as the MATRIX_ROW_VPOS! */
15503 start_display (&it
, w
, new_start
);
15504 w
->cursor
.vpos
= -1;
15505 last_text_row
= last_reused_text_row
= NULL
;
15507 while (it
.current_y
< it
.last_visible_y
15508 && !fonts_changed_p
)
15510 /* If we have reached into the characters in the START row,
15511 that means the line boundaries have changed. So we
15512 can't start copying with the row START. Maybe it will
15513 work to start copying with the following row. */
15514 while (IT_CHARPOS (it
) > CHARPOS (start
))
15516 /* Advance to the next row as the "start". */
15518 start
= start_row
->minpos
;
15519 /* If there are no more rows to try, or just one, give up. */
15520 if (start_row
== MATRIX_MODE_LINE_ROW (w
->current_matrix
) - 1
15521 || w
->vscroll
|| MATRIX_ROW_PARTIALLY_VISIBLE_P (w
, start_row
)
15522 || CHARPOS (start
) == ZV
)
15524 clear_glyph_matrix (w
->desired_matrix
);
15528 start_vpos
= MATRIX_ROW_VPOS (start_row
, w
->current_matrix
);
15530 /* If we have reached alignment,
15531 we can copy the rest of the rows. */
15532 if (IT_CHARPOS (it
) == CHARPOS (start
))
15535 if (display_line (&it
))
15536 last_text_row
= it
.glyph_row
- 1;
15539 /* A value of current_y < last_visible_y means that we stopped
15540 at the previous window start, which in turn means that we
15541 have at least one reusable row. */
15542 if (it
.current_y
< it
.last_visible_y
)
15544 struct glyph_row
*row
;
15546 /* IT.vpos always starts from 0; it counts text lines. */
15547 nrows_scrolled
= it
.vpos
- (start_row
- MATRIX_FIRST_TEXT_ROW (w
->current_matrix
));
15549 /* Find PT if not already found in the lines displayed. */
15550 if (w
->cursor
.vpos
< 0)
15552 int dy
= it
.current_y
- start_row
->y
;
15554 row
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
15555 row
= row_containing_pos (w
, PT
, row
, NULL
, dy
);
15557 set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0,
15558 dy
, nrows_scrolled
);
15561 clear_glyph_matrix (w
->desired_matrix
);
15566 /* Scroll the display. Do it before the current matrix is
15567 changed. The problem here is that update has not yet
15568 run, i.e. part of the current matrix is not up to date.
15569 scroll_run_hook will clear the cursor, and use the
15570 current matrix to get the height of the row the cursor is
15572 run
.current_y
= start_row
->y
;
15573 run
.desired_y
= it
.current_y
;
15574 run
.height
= it
.last_visible_y
- it
.current_y
;
15576 if (run
.height
> 0 && run
.current_y
!= run
.desired_y
)
15579 FRAME_RIF (f
)->update_window_begin_hook (w
);
15580 FRAME_RIF (f
)->clear_window_mouse_face (w
);
15581 FRAME_RIF (f
)->scroll_run_hook (w
, &run
);
15582 FRAME_RIF (f
)->update_window_end_hook (w
, 0, 0);
15586 /* Shift current matrix down by nrows_scrolled lines. */
15587 bottom_row
= MATRIX_BOTTOM_TEXT_ROW (w
->current_matrix
, w
);
15588 rotate_matrix (w
->current_matrix
,
15590 MATRIX_ROW_VPOS (bottom_row
, w
->current_matrix
),
15593 /* Disable lines that must be updated. */
15594 for (i
= 0; i
< nrows_scrolled
; ++i
)
15595 (start_row
+ i
)->enabled_p
= 0;
15597 /* Re-compute Y positions. */
15598 min_y
= WINDOW_HEADER_LINE_HEIGHT (w
);
15599 max_y
= it
.last_visible_y
;
15600 for (row
= start_row
+ nrows_scrolled
;
15604 row
->y
= it
.current_y
;
15605 row
->visible_height
= row
->height
;
15607 if (row
->y
< min_y
)
15608 row
->visible_height
-= min_y
- row
->y
;
15609 if (row
->y
+ row
->height
> max_y
)
15610 row
->visible_height
-= row
->y
+ row
->height
- max_y
;
15611 row
->redraw_fringe_bitmaps_p
= 1;
15613 it
.current_y
+= row
->height
;
15615 if (MATRIX_ROW_DISPLAYS_TEXT_P (row
))
15616 last_reused_text_row
= row
;
15617 if (MATRIX_ROW_BOTTOM_Y (row
) >= it
.last_visible_y
)
15621 /* Disable lines in the current matrix which are now
15622 below the window. */
15623 for (++row
; row
< bottom_row
; ++row
)
15624 row
->enabled_p
= row
->mode_line_p
= 0;
15627 /* Update window_end_pos etc.; last_reused_text_row is the last
15628 reused row from the current matrix containing text, if any.
15629 The value of last_text_row is the last displayed line
15630 containing text. */
15631 if (last_reused_text_row
)
15633 w
->window_end_bytepos
15634 = Z_BYTE
- MATRIX_ROW_END_BYTEPOS (last_reused_text_row
);
15636 = make_number (Z
- MATRIX_ROW_END_CHARPOS (last_reused_text_row
));
15638 = make_number (MATRIX_ROW_VPOS (last_reused_text_row
,
15639 w
->current_matrix
));
15641 else if (last_text_row
)
15643 w
->window_end_bytepos
15644 = Z_BYTE
- MATRIX_ROW_END_BYTEPOS (last_text_row
);
15646 = make_number (Z
- MATRIX_ROW_END_CHARPOS (last_text_row
));
15648 = make_number (MATRIX_ROW_VPOS (last_text_row
, w
->desired_matrix
));
15652 /* This window must be completely empty. */
15653 w
->window_end_bytepos
= Z_BYTE
- ZV_BYTE
;
15654 w
->window_end_pos
= make_number (Z
- ZV
);
15655 w
->window_end_vpos
= make_number (0);
15657 w
->window_end_valid
= Qnil
;
15659 /* Update hint: don't try scrolling again in update_window. */
15660 w
->desired_matrix
->no_scrolling_p
= 1;
15663 debug_method_add (w
, "try_window_reusing_current_matrix 1");
15667 else if (CHARPOS (new_start
) > CHARPOS (start
))
15669 struct glyph_row
*pt_row
, *row
;
15670 struct glyph_row
*first_reusable_row
;
15671 struct glyph_row
*first_row_to_display
;
15673 int yb
= window_text_bottom_y (w
);
15675 /* Find the row starting at new_start, if there is one. Don't
15676 reuse a partially visible line at the end. */
15677 first_reusable_row
= start_row
;
15678 while (first_reusable_row
->enabled_p
15679 && MATRIX_ROW_BOTTOM_Y (first_reusable_row
) < yb
15680 && (MATRIX_ROW_START_CHARPOS (first_reusable_row
)
15681 < CHARPOS (new_start
)))
15682 ++first_reusable_row
;
15684 /* Give up if there is no row to reuse. */
15685 if (MATRIX_ROW_BOTTOM_Y (first_reusable_row
) >= yb
15686 || !first_reusable_row
->enabled_p
15687 || (MATRIX_ROW_START_CHARPOS (first_reusable_row
)
15688 != CHARPOS (new_start
)))
15691 /* We can reuse fully visible rows beginning with
15692 first_reusable_row to the end of the window. Set
15693 first_row_to_display to the first row that cannot be reused.
15694 Set pt_row to the row containing point, if there is any. */
15696 for (first_row_to_display
= first_reusable_row
;
15697 MATRIX_ROW_BOTTOM_Y (first_row_to_display
) < yb
;
15698 ++first_row_to_display
)
15700 if (PT
>= MATRIX_ROW_START_CHARPOS (first_row_to_display
)
15701 && PT
< MATRIX_ROW_END_CHARPOS (first_row_to_display
))
15702 pt_row
= first_row_to_display
;
15705 /* Start displaying at the start of first_row_to_display. */
15706 xassert (first_row_to_display
->y
< yb
);
15707 init_to_row_start (&it
, w
, first_row_to_display
);
15709 nrows_scrolled
= (MATRIX_ROW_VPOS (first_reusable_row
, w
->current_matrix
)
15711 it
.vpos
= (MATRIX_ROW_VPOS (first_row_to_display
, w
->current_matrix
)
15713 it
.current_y
= (first_row_to_display
->y
- first_reusable_row
->y
15714 + WINDOW_HEADER_LINE_HEIGHT (w
));
15716 /* Display lines beginning with first_row_to_display in the
15717 desired matrix. Set last_text_row to the last row displayed
15718 that displays text. */
15719 it
.glyph_row
= MATRIX_ROW (w
->desired_matrix
, it
.vpos
);
15720 if (pt_row
== NULL
)
15721 w
->cursor
.vpos
= -1;
15722 last_text_row
= NULL
;
15723 while (it
.current_y
< it
.last_visible_y
&& !fonts_changed_p
)
15724 if (display_line (&it
))
15725 last_text_row
= it
.glyph_row
- 1;
15727 /* If point is in a reused row, adjust y and vpos of the cursor
15731 w
->cursor
.vpos
-= nrows_scrolled
;
15732 w
->cursor
.y
-= first_reusable_row
->y
- start_row
->y
;
15735 /* Give up if point isn't in a row displayed or reused. (This
15736 also handles the case where w->cursor.vpos < nrows_scrolled
15737 after the calls to display_line, which can happen with scroll
15738 margins. See bug#1295.) */
15739 if (w
->cursor
.vpos
< 0)
15741 clear_glyph_matrix (w
->desired_matrix
);
15745 /* Scroll the display. */
15746 run
.current_y
= first_reusable_row
->y
;
15747 run
.desired_y
= WINDOW_HEADER_LINE_HEIGHT (w
);
15748 run
.height
= it
.last_visible_y
- run
.current_y
;
15749 dy
= run
.current_y
- run
.desired_y
;
15754 FRAME_RIF (f
)->update_window_begin_hook (w
);
15755 FRAME_RIF (f
)->clear_window_mouse_face (w
);
15756 FRAME_RIF (f
)->scroll_run_hook (w
, &run
);
15757 FRAME_RIF (f
)->update_window_end_hook (w
, 0, 0);
15761 /* Adjust Y positions of reused rows. */
15762 bottom_row
= MATRIX_BOTTOM_TEXT_ROW (w
->current_matrix
, w
);
15763 min_y
= WINDOW_HEADER_LINE_HEIGHT (w
);
15764 max_y
= it
.last_visible_y
;
15765 for (row
= first_reusable_row
; row
< first_row_to_display
; ++row
)
15768 row
->visible_height
= row
->height
;
15769 if (row
->y
< min_y
)
15770 row
->visible_height
-= min_y
- row
->y
;
15771 if (row
->y
+ row
->height
> max_y
)
15772 row
->visible_height
-= row
->y
+ row
->height
- max_y
;
15773 row
->redraw_fringe_bitmaps_p
= 1;
15776 /* Scroll the current matrix. */
15777 xassert (nrows_scrolled
> 0);
15778 rotate_matrix (w
->current_matrix
,
15780 MATRIX_ROW_VPOS (bottom_row
, w
->current_matrix
),
15783 /* Disable rows not reused. */
15784 for (row
-= nrows_scrolled
; row
< bottom_row
; ++row
)
15785 row
->enabled_p
= 0;
15787 /* Point may have moved to a different line, so we cannot assume that
15788 the previous cursor position is valid; locate the correct row. */
15791 for (row
= MATRIX_ROW (w
->current_matrix
, w
->cursor
.vpos
);
15792 row
< bottom_row
&& PT
>= MATRIX_ROW_END_CHARPOS (row
);
15796 w
->cursor
.y
= row
->y
;
15798 if (row
< bottom_row
)
15800 struct glyph
*glyph
= row
->glyphs
[TEXT_AREA
] + w
->cursor
.hpos
;
15801 struct glyph
*end
= glyph
+ row
->used
[TEXT_AREA
];
15803 /* Can't use this optimization with bidi-reordered glyph
15804 rows, unless cursor is already at point. */
15805 if (!NILP (BVAR (XBUFFER (w
->buffer
), bidi_display_reordering
)))
15807 if (!(w
->cursor
.hpos
>= 0
15808 && w
->cursor
.hpos
< row
->used
[TEXT_AREA
]
15809 && BUFFERP (glyph
->object
)
15810 && glyph
->charpos
== PT
))
15815 && (!BUFFERP (glyph
->object
)
15816 || glyph
->charpos
< PT
);
15820 w
->cursor
.x
+= glyph
->pixel_width
;
15825 /* Adjust window end. A null value of last_text_row means that
15826 the window end is in reused rows which in turn means that
15827 only its vpos can have changed. */
15830 w
->window_end_bytepos
15831 = Z_BYTE
- MATRIX_ROW_END_BYTEPOS (last_text_row
);
15833 = make_number (Z
- MATRIX_ROW_END_CHARPOS (last_text_row
));
15835 = make_number (MATRIX_ROW_VPOS (last_text_row
, w
->desired_matrix
));
15840 = make_number (XFASTINT (w
->window_end_vpos
) - nrows_scrolled
);
15843 w
->window_end_valid
= Qnil
;
15844 w
->desired_matrix
->no_scrolling_p
= 1;
15847 debug_method_add (w
, "try_window_reusing_current_matrix 2");
15857 /************************************************************************
15858 Window redisplay reusing current matrix when buffer has changed
15859 ************************************************************************/
15861 static struct glyph_row
*find_last_unchanged_at_beg_row (struct window
*);
15862 static struct glyph_row
*find_first_unchanged_at_end_row (struct window
*,
15863 EMACS_INT
*, EMACS_INT
*);
15864 static struct glyph_row
*
15865 find_last_row_displaying_text (struct glyph_matrix
*, struct it
*,
15866 struct glyph_row
*);
15869 /* Return the last row in MATRIX displaying text. If row START is
15870 non-null, start searching with that row. IT gives the dimensions
15871 of the display. Value is null if matrix is empty; otherwise it is
15872 a pointer to the row found. */
15874 static struct glyph_row
*
15875 find_last_row_displaying_text (struct glyph_matrix
*matrix
, struct it
*it
,
15876 struct glyph_row
*start
)
15878 struct glyph_row
*row
, *row_found
;
15880 /* Set row_found to the last row in IT->w's current matrix
15881 displaying text. The loop looks funny but think of partially
15884 row
= start
? start
: MATRIX_FIRST_TEXT_ROW (matrix
);
15885 while (MATRIX_ROW_DISPLAYS_TEXT_P (row
))
15887 xassert (row
->enabled_p
);
15889 if (MATRIX_ROW_BOTTOM_Y (row
) >= it
->last_visible_y
)
15898 /* Return the last row in the current matrix of W that is not affected
15899 by changes at the start of current_buffer that occurred since W's
15900 current matrix was built. Value is null if no such row exists.
15902 BEG_UNCHANGED us the number of characters unchanged at the start of
15903 current_buffer. BEG + BEG_UNCHANGED is the buffer position of the
15904 first changed character in current_buffer. Characters at positions <
15905 BEG + BEG_UNCHANGED are at the same buffer positions as they were
15906 when the current matrix was built. */
15908 static struct glyph_row
*
15909 find_last_unchanged_at_beg_row (struct window
*w
)
15911 EMACS_INT first_changed_pos
= BEG
+ BEG_UNCHANGED
;
15912 struct glyph_row
*row
;
15913 struct glyph_row
*row_found
= NULL
;
15914 int yb
= window_text_bottom_y (w
);
15916 /* Find the last row displaying unchanged text. */
15917 for (row
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
15918 MATRIX_ROW_DISPLAYS_TEXT_P (row
)
15919 && MATRIX_ROW_START_CHARPOS (row
) < first_changed_pos
;
15922 if (/* If row ends before first_changed_pos, it is unchanged,
15923 except in some case. */
15924 MATRIX_ROW_END_CHARPOS (row
) <= first_changed_pos
15925 /* When row ends in ZV and we write at ZV it is not
15927 && !row
->ends_at_zv_p
15928 /* When first_changed_pos is the end of a continued line,
15929 row is not unchanged because it may be no longer
15931 && !(MATRIX_ROW_END_CHARPOS (row
) == first_changed_pos
15932 && (row
->continued_p
15933 || row
->exact_window_width_line_p
)))
15936 /* Stop if last visible row. */
15937 if (MATRIX_ROW_BOTTOM_Y (row
) >= yb
)
15945 /* Find the first glyph row in the current matrix of W that is not
15946 affected by changes at the end of current_buffer since the
15947 time W's current matrix was built.
15949 Return in *DELTA the number of chars by which buffer positions in
15950 unchanged text at the end of current_buffer must be adjusted.
15952 Return in *DELTA_BYTES the corresponding number of bytes.
15954 Value is null if no such row exists, i.e. all rows are affected by
15957 static struct glyph_row
*
15958 find_first_unchanged_at_end_row (struct window
*w
,
15959 EMACS_INT
*delta
, EMACS_INT
*delta_bytes
)
15961 struct glyph_row
*row
;
15962 struct glyph_row
*row_found
= NULL
;
15964 *delta
= *delta_bytes
= 0;
15966 /* Display must not have been paused, otherwise the current matrix
15967 is not up to date. */
15968 eassert (!NILP (w
->window_end_valid
));
15970 /* A value of window_end_pos >= END_UNCHANGED means that the window
15971 end is in the range of changed text. If so, there is no
15972 unchanged row at the end of W's current matrix. */
15973 if (XFASTINT (w
->window_end_pos
) >= END_UNCHANGED
)
15976 /* Set row to the last row in W's current matrix displaying text. */
15977 row
= MATRIX_ROW (w
->current_matrix
, XFASTINT (w
->window_end_vpos
));
15979 /* If matrix is entirely empty, no unchanged row exists. */
15980 if (MATRIX_ROW_DISPLAYS_TEXT_P (row
))
15982 /* The value of row is the last glyph row in the matrix having a
15983 meaningful buffer position in it. The end position of row
15984 corresponds to window_end_pos. This allows us to translate
15985 buffer positions in the current matrix to current buffer
15986 positions for characters not in changed text. */
15988 MATRIX_ROW_END_CHARPOS (row
) + XFASTINT (w
->window_end_pos
);
15989 EMACS_INT Z_BYTE_old
=
15990 MATRIX_ROW_END_BYTEPOS (row
) + w
->window_end_bytepos
;
15991 EMACS_INT last_unchanged_pos
, last_unchanged_pos_old
;
15992 struct glyph_row
*first_text_row
15993 = MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
15995 *delta
= Z
- Z_old
;
15996 *delta_bytes
= Z_BYTE
- Z_BYTE_old
;
15998 /* Set last_unchanged_pos to the buffer position of the last
15999 character in the buffer that has not been changed. Z is the
16000 index + 1 of the last character in current_buffer, i.e. by
16001 subtracting END_UNCHANGED we get the index of the last
16002 unchanged character, and we have to add BEG to get its buffer
16004 last_unchanged_pos
= Z
- END_UNCHANGED
+ BEG
;
16005 last_unchanged_pos_old
= last_unchanged_pos
- *delta
;
16007 /* Search backward from ROW for a row displaying a line that
16008 starts at a minimum position >= last_unchanged_pos_old. */
16009 for (; row
> first_text_row
; --row
)
16011 /* This used to abort, but it can happen.
16012 It is ok to just stop the search instead here. KFS. */
16013 if (!row
->enabled_p
|| !MATRIX_ROW_DISPLAYS_TEXT_P (row
))
16016 if (MATRIX_ROW_START_CHARPOS (row
) >= last_unchanged_pos_old
)
16021 eassert (!row_found
|| MATRIX_ROW_DISPLAYS_TEXT_P (row_found
));
16027 /* Make sure that glyph rows in the current matrix of window W
16028 reference the same glyph memory as corresponding rows in the
16029 frame's frame matrix. This function is called after scrolling W's
16030 current matrix on a terminal frame in try_window_id and
16031 try_window_reusing_current_matrix. */
16034 sync_frame_with_window_matrix_rows (struct window
*w
)
16036 struct frame
*f
= XFRAME (w
->frame
);
16037 struct glyph_row
*window_row
, *window_row_end
, *frame_row
;
16039 /* Preconditions: W must be a leaf window and full-width. Its frame
16040 must have a frame matrix. */
16041 xassert (NILP (w
->hchild
) && NILP (w
->vchild
));
16042 xassert (WINDOW_FULL_WIDTH_P (w
));
16043 xassert (!FRAME_WINDOW_P (f
));
16045 /* If W is a full-width window, glyph pointers in W's current matrix
16046 have, by definition, to be the same as glyph pointers in the
16047 corresponding frame matrix. Note that frame matrices have no
16048 marginal areas (see build_frame_matrix). */
16049 window_row
= w
->current_matrix
->rows
;
16050 window_row_end
= window_row
+ w
->current_matrix
->nrows
;
16051 frame_row
= f
->current_matrix
->rows
+ WINDOW_TOP_EDGE_LINE (w
);
16052 while (window_row
< window_row_end
)
16054 struct glyph
*start
= window_row
->glyphs
[LEFT_MARGIN_AREA
];
16055 struct glyph
*end
= window_row
->glyphs
[LAST_AREA
];
16057 frame_row
->glyphs
[LEFT_MARGIN_AREA
] = start
;
16058 frame_row
->glyphs
[TEXT_AREA
] = start
;
16059 frame_row
->glyphs
[RIGHT_MARGIN_AREA
] = end
;
16060 frame_row
->glyphs
[LAST_AREA
] = end
;
16062 /* Disable frame rows whose corresponding window rows have
16063 been disabled in try_window_id. */
16064 if (!window_row
->enabled_p
)
16065 frame_row
->enabled_p
= 0;
16067 ++window_row
, ++frame_row
;
16072 /* Find the glyph row in window W containing CHARPOS. Consider all
16073 rows between START and END (not inclusive). END null means search
16074 all rows to the end of the display area of W. Value is the row
16075 containing CHARPOS or null. */
16078 row_containing_pos (struct window
*w
, EMACS_INT charpos
,
16079 struct glyph_row
*start
, struct glyph_row
*end
, int dy
)
16081 struct glyph_row
*row
= start
;
16082 struct glyph_row
*best_row
= NULL
;
16083 EMACS_INT mindif
= BUF_ZV (XBUFFER (w
->buffer
)) + 1;
16086 /* If we happen to start on a header-line, skip that. */
16087 if (row
->mode_line_p
)
16090 if ((end
&& row
>= end
) || !row
->enabled_p
)
16093 last_y
= window_text_bottom_y (w
) - dy
;
16097 /* Give up if we have gone too far. */
16098 if (end
&& row
>= end
)
16100 /* This formerly returned if they were equal.
16101 I think that both quantities are of a "last plus one" type;
16102 if so, when they are equal, the row is within the screen. -- rms. */
16103 if (MATRIX_ROW_BOTTOM_Y (row
) > last_y
)
16106 /* If it is in this row, return this row. */
16107 if (! (MATRIX_ROW_END_CHARPOS (row
) < charpos
16108 || (MATRIX_ROW_END_CHARPOS (row
) == charpos
16109 /* The end position of a row equals the start
16110 position of the next row. If CHARPOS is there, we
16111 would rather display it in the next line, except
16112 when this line ends in ZV. */
16113 && !row
->ends_at_zv_p
16114 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row
)))
16115 && charpos
>= MATRIX_ROW_START_CHARPOS (row
))
16119 if (NILP (BVAR (XBUFFER (w
->buffer
), bidi_display_reordering
))
16120 || (!best_row
&& !row
->continued_p
))
16122 /* In bidi-reordered rows, there could be several rows
16123 occluding point, all of them belonging to the same
16124 continued line. We need to find the row which fits
16125 CHARPOS the best. */
16126 for (g
= row
->glyphs
[TEXT_AREA
];
16127 g
< row
->glyphs
[TEXT_AREA
] + row
->used
[TEXT_AREA
];
16130 if (!STRINGP (g
->object
))
16132 if (g
->charpos
> 0 && eabs (g
->charpos
- charpos
) < mindif
)
16134 mindif
= eabs (g
->charpos
- charpos
);
16136 /* Exact match always wins. */
16143 else if (best_row
&& !row
->continued_p
)
16150 /* Try to redisplay window W by reusing its existing display. W's
16151 current matrix must be up to date when this function is called,
16152 i.e. window_end_valid must not be nil.
16156 1 if display has been updated
16157 0 if otherwise unsuccessful
16158 -1 if redisplay with same window start is known not to succeed
16160 The following steps are performed:
16162 1. Find the last row in the current matrix of W that is not
16163 affected by changes at the start of current_buffer. If no such row
16166 2. Find the first row in W's current matrix that is not affected by
16167 changes at the end of current_buffer. Maybe there is no such row.
16169 3. Display lines beginning with the row + 1 found in step 1 to the
16170 row found in step 2 or, if step 2 didn't find a row, to the end of
16173 4. If cursor is not known to appear on the window, give up.
16175 5. If display stopped at the row found in step 2, scroll the
16176 display and current matrix as needed.
16178 6. Maybe display some lines at the end of W, if we must. This can
16179 happen under various circumstances, like a partially visible line
16180 becoming fully visible, or because newly displayed lines are displayed
16181 in smaller font sizes.
16183 7. Update W's window end information. */
16186 try_window_id (struct window
*w
)
16188 struct frame
*f
= XFRAME (w
->frame
);
16189 struct glyph_matrix
*current_matrix
= w
->current_matrix
;
16190 struct glyph_matrix
*desired_matrix
= w
->desired_matrix
;
16191 struct glyph_row
*last_unchanged_at_beg_row
;
16192 struct glyph_row
*first_unchanged_at_end_row
;
16193 struct glyph_row
*row
;
16194 struct glyph_row
*bottom_row
;
16197 EMACS_INT delta
= 0, delta_bytes
= 0, stop_pos
;
16199 struct text_pos start_pos
;
16201 int first_unchanged_at_end_vpos
= 0;
16202 struct glyph_row
*last_text_row
, *last_text_row_at_end
;
16203 struct text_pos start
;
16204 EMACS_INT first_changed_charpos
, last_changed_charpos
;
16207 if (inhibit_try_window_id
)
16211 /* This is handy for debugging. */
16213 #define GIVE_UP(X) \
16215 fprintf (stderr, "try_window_id give up %d\n", (X)); \
16219 #define GIVE_UP(X) return 0
16222 SET_TEXT_POS_FROM_MARKER (start
, w
->start
);
16224 /* Don't use this for mini-windows because these can show
16225 messages and mini-buffers, and we don't handle that here. */
16226 if (MINI_WINDOW_P (w
))
16229 /* This flag is used to prevent redisplay optimizations. */
16230 if (windows_or_buffers_changed
|| cursor_type_changed
)
16233 /* Verify that narrowing has not changed.
16234 Also verify that we were not told to prevent redisplay optimizations.
16235 It would be nice to further
16236 reduce the number of cases where this prevents try_window_id. */
16237 if (current_buffer
->clip_changed
16238 || current_buffer
->prevent_redisplay_optimizations_p
)
16241 /* Window must either use window-based redisplay or be full width. */
16242 if (!FRAME_WINDOW_P (f
)
16243 && (!FRAME_LINE_INS_DEL_OK (f
)
16244 || !WINDOW_FULL_WIDTH_P (w
)))
16247 /* Give up if point is known NOT to appear in W. */
16248 if (PT
< CHARPOS (start
))
16251 /* Another way to prevent redisplay optimizations. */
16252 if (XFASTINT (w
->last_modified
) == 0)
16255 /* Verify that window is not hscrolled. */
16256 if (XFASTINT (w
->hscroll
) != 0)
16259 /* Verify that display wasn't paused. */
16260 if (NILP (w
->window_end_valid
))
16263 /* Can't use this if highlighting a region because a cursor movement
16264 will do more than just set the cursor. */
16265 if (!NILP (Vtransient_mark_mode
)
16266 && !NILP (BVAR (current_buffer
, mark_active
)))
16269 /* Likewise if highlighting trailing whitespace. */
16270 if (!NILP (Vshow_trailing_whitespace
))
16273 /* Likewise if showing a region. */
16274 if (!NILP (w
->region_showing
))
16277 /* Can't use this if overlay arrow position and/or string have
16279 if (overlay_arrows_changed_p ())
16282 /* When word-wrap is on, adding a space to the first word of a
16283 wrapped line can change the wrap position, altering the line
16284 above it. It might be worthwhile to handle this more
16285 intelligently, but for now just redisplay from scratch. */
16286 if (!NILP (BVAR (XBUFFER (w
->buffer
), word_wrap
)))
16289 /* Under bidi reordering, adding or deleting a character in the
16290 beginning of a paragraph, before the first strong directional
16291 character, can change the base direction of the paragraph (unless
16292 the buffer specifies a fixed paragraph direction), which will
16293 require to redisplay the whole paragraph. It might be worthwhile
16294 to find the paragraph limits and widen the range of redisplayed
16295 lines to that, but for now just give up this optimization and
16296 redisplay from scratch. */
16297 if (!NILP (BVAR (XBUFFER (w
->buffer
), bidi_display_reordering
))
16298 && NILP (BVAR (XBUFFER (w
->buffer
), bidi_paragraph_direction
)))
16301 /* Make sure beg_unchanged and end_unchanged are up to date. Do it
16302 only if buffer has really changed. The reason is that the gap is
16303 initially at Z for freshly visited files. The code below would
16304 set end_unchanged to 0 in that case. */
16305 if (MODIFF
> SAVE_MODIFF
16306 /* This seems to happen sometimes after saving a buffer. */
16307 || BEG_UNCHANGED
+ END_UNCHANGED
> Z_BYTE
)
16309 if (GPT
- BEG
< BEG_UNCHANGED
)
16310 BEG_UNCHANGED
= GPT
- BEG
;
16311 if (Z
- GPT
< END_UNCHANGED
)
16312 END_UNCHANGED
= Z
- GPT
;
16315 /* The position of the first and last character that has been changed. */
16316 first_changed_charpos
= BEG
+ BEG_UNCHANGED
;
16317 last_changed_charpos
= Z
- END_UNCHANGED
;
16319 /* If window starts after a line end, and the last change is in
16320 front of that newline, then changes don't affect the display.
16321 This case happens with stealth-fontification. Note that although
16322 the display is unchanged, glyph positions in the matrix have to
16323 be adjusted, of course. */
16324 row
= MATRIX_ROW (w
->current_matrix
, XFASTINT (w
->window_end_vpos
));
16325 if (MATRIX_ROW_DISPLAYS_TEXT_P (row
)
16326 && ((last_changed_charpos
< CHARPOS (start
)
16327 && CHARPOS (start
) == BEGV
)
16328 || (last_changed_charpos
< CHARPOS (start
) - 1
16329 && FETCH_BYTE (BYTEPOS (start
) - 1) == '\n')))
16331 EMACS_INT Z_old
, Z_delta
, Z_BYTE_old
, Z_delta_bytes
;
16332 struct glyph_row
*r0
;
16334 /* Compute how many chars/bytes have been added to or removed
16335 from the buffer. */
16336 Z_old
= MATRIX_ROW_END_CHARPOS (row
) + XFASTINT (w
->window_end_pos
);
16337 Z_BYTE_old
= MATRIX_ROW_END_BYTEPOS (row
) + w
->window_end_bytepos
;
16338 Z_delta
= Z
- Z_old
;
16339 Z_delta_bytes
= Z_BYTE
- Z_BYTE_old
;
16341 /* Give up if PT is not in the window. Note that it already has
16342 been checked at the start of try_window_id that PT is not in
16343 front of the window start. */
16344 if (PT
>= MATRIX_ROW_END_CHARPOS (row
) + Z_delta
)
16347 /* If window start is unchanged, we can reuse the whole matrix
16348 as is, after adjusting glyph positions. No need to compute
16349 the window end again, since its offset from Z hasn't changed. */
16350 r0
= MATRIX_FIRST_TEXT_ROW (current_matrix
);
16351 if (CHARPOS (start
) == MATRIX_ROW_START_CHARPOS (r0
) + Z_delta
16352 && BYTEPOS (start
) == MATRIX_ROW_START_BYTEPOS (r0
) + Z_delta_bytes
16353 /* PT must not be in a partially visible line. */
16354 && !(PT
>= MATRIX_ROW_START_CHARPOS (row
) + Z_delta
16355 && MATRIX_ROW_BOTTOM_Y (row
) > window_text_bottom_y (w
)))
16357 /* Adjust positions in the glyph matrix. */
16358 if (Z_delta
|| Z_delta_bytes
)
16360 struct glyph_row
*r1
16361 = MATRIX_BOTTOM_TEXT_ROW (current_matrix
, w
);
16362 increment_matrix_positions (w
->current_matrix
,
16363 MATRIX_ROW_VPOS (r0
, current_matrix
),
16364 MATRIX_ROW_VPOS (r1
, current_matrix
),
16365 Z_delta
, Z_delta_bytes
);
16368 /* Set the cursor. */
16369 row
= row_containing_pos (w
, PT
, r0
, NULL
, 0);
16371 set_cursor_from_row (w
, row
, current_matrix
, 0, 0, 0, 0);
16378 /* Handle the case that changes are all below what is displayed in
16379 the window, and that PT is in the window. This shortcut cannot
16380 be taken if ZV is visible in the window, and text has been added
16381 there that is visible in the window. */
16382 if (first_changed_charpos
>= MATRIX_ROW_END_CHARPOS (row
)
16383 /* ZV is not visible in the window, or there are no
16384 changes at ZV, actually. */
16385 && (current_matrix
->zv
> MATRIX_ROW_END_CHARPOS (row
)
16386 || first_changed_charpos
== last_changed_charpos
))
16388 struct glyph_row
*r0
;
16390 /* Give up if PT is not in the window. Note that it already has
16391 been checked at the start of try_window_id that PT is not in
16392 front of the window start. */
16393 if (PT
>= MATRIX_ROW_END_CHARPOS (row
))
16396 /* If window start is unchanged, we can reuse the whole matrix
16397 as is, without changing glyph positions since no text has
16398 been added/removed in front of the window end. */
16399 r0
= MATRIX_FIRST_TEXT_ROW (current_matrix
);
16400 if (TEXT_POS_EQUAL_P (start
, r0
->minpos
)
16401 /* PT must not be in a partially visible line. */
16402 && !(PT
>= MATRIX_ROW_START_CHARPOS (row
)
16403 && MATRIX_ROW_BOTTOM_Y (row
) > window_text_bottom_y (w
)))
16405 /* We have to compute the window end anew since text
16406 could have been added/removed after it. */
16408 = make_number (Z
- MATRIX_ROW_END_CHARPOS (row
));
16409 w
->window_end_bytepos
16410 = Z_BYTE
- MATRIX_ROW_END_BYTEPOS (row
);
16412 /* Set the cursor. */
16413 row
= row_containing_pos (w
, PT
, r0
, NULL
, 0);
16415 set_cursor_from_row (w
, row
, current_matrix
, 0, 0, 0, 0);
16422 /* Give up if window start is in the changed area.
16424 The condition used to read
16426 (BEG_UNCHANGED + END_UNCHANGED != Z - BEG && ...)
16428 but why that was tested escapes me at the moment. */
16429 if (CHARPOS (start
) >= first_changed_charpos
16430 && CHARPOS (start
) <= last_changed_charpos
)
16433 /* Check that window start agrees with the start of the first glyph
16434 row in its current matrix. Check this after we know the window
16435 start is not in changed text, otherwise positions would not be
16437 row
= MATRIX_FIRST_TEXT_ROW (current_matrix
);
16438 if (!TEXT_POS_EQUAL_P (start
, row
->minpos
))
16441 /* Give up if the window ends in strings. Overlay strings
16442 at the end are difficult to handle, so don't try. */
16443 row
= MATRIX_ROW (current_matrix
, XFASTINT (w
->window_end_vpos
));
16444 if (MATRIX_ROW_START_CHARPOS (row
) == MATRIX_ROW_END_CHARPOS (row
))
16447 /* Compute the position at which we have to start displaying new
16448 lines. Some of the lines at the top of the window might be
16449 reusable because they are not displaying changed text. Find the
16450 last row in W's current matrix not affected by changes at the
16451 start of current_buffer. Value is null if changes start in the
16452 first line of window. */
16453 last_unchanged_at_beg_row
= find_last_unchanged_at_beg_row (w
);
16454 if (last_unchanged_at_beg_row
)
16456 /* Avoid starting to display in the moddle of a character, a TAB
16457 for instance. This is easier than to set up the iterator
16458 exactly, and it's not a frequent case, so the additional
16459 effort wouldn't really pay off. */
16460 while ((MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (last_unchanged_at_beg_row
)
16461 || last_unchanged_at_beg_row
->ends_in_newline_from_string_p
)
16462 && last_unchanged_at_beg_row
> w
->current_matrix
->rows
)
16463 --last_unchanged_at_beg_row
;
16465 if (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (last_unchanged_at_beg_row
))
16468 if (init_to_row_end (&it
, w
, last_unchanged_at_beg_row
) == 0)
16470 start_pos
= it
.current
.pos
;
16472 /* Start displaying new lines in the desired matrix at the same
16473 vpos we would use in the current matrix, i.e. below
16474 last_unchanged_at_beg_row. */
16475 it
.vpos
= 1 + MATRIX_ROW_VPOS (last_unchanged_at_beg_row
,
16477 it
.glyph_row
= MATRIX_ROW (desired_matrix
, it
.vpos
);
16478 it
.current_y
= MATRIX_ROW_BOTTOM_Y (last_unchanged_at_beg_row
);
16480 xassert (it
.hpos
== 0 && it
.current_x
== 0);
16484 /* There are no reusable lines at the start of the window.
16485 Start displaying in the first text line. */
16486 start_display (&it
, w
, start
);
16487 it
.vpos
= it
.first_vpos
;
16488 start_pos
= it
.current
.pos
;
16491 /* Find the first row that is not affected by changes at the end of
16492 the buffer. Value will be null if there is no unchanged row, in
16493 which case we must redisplay to the end of the window. delta
16494 will be set to the value by which buffer positions beginning with
16495 first_unchanged_at_end_row have to be adjusted due to text
16497 first_unchanged_at_end_row
16498 = find_first_unchanged_at_end_row (w
, &delta
, &delta_bytes
);
16499 IF_DEBUG (debug_delta
= delta
);
16500 IF_DEBUG (debug_delta_bytes
= delta_bytes
);
16502 /* Set stop_pos to the buffer position up to which we will have to
16503 display new lines. If first_unchanged_at_end_row != NULL, this
16504 is the buffer position of the start of the line displayed in that
16505 row. For first_unchanged_at_end_row == NULL, use 0 to indicate
16506 that we don't stop at a buffer position. */
16508 if (first_unchanged_at_end_row
)
16510 xassert (last_unchanged_at_beg_row
== NULL
16511 || first_unchanged_at_end_row
>= last_unchanged_at_beg_row
);
16513 /* If this is a continuation line, move forward to the next one
16514 that isn't. Changes in lines above affect this line.
16515 Caution: this may move first_unchanged_at_end_row to a row
16516 not displaying text. */
16517 while (MATRIX_ROW_CONTINUATION_LINE_P (first_unchanged_at_end_row
)
16518 && MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row
)
16519 && (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row
)
16520 < it
.last_visible_y
))
16521 ++first_unchanged_at_end_row
;
16523 if (!MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row
)
16524 || (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row
)
16525 >= it
.last_visible_y
))
16526 first_unchanged_at_end_row
= NULL
;
16529 stop_pos
= (MATRIX_ROW_START_CHARPOS (first_unchanged_at_end_row
)
16531 first_unchanged_at_end_vpos
16532 = MATRIX_ROW_VPOS (first_unchanged_at_end_row
, current_matrix
);
16533 xassert (stop_pos
>= Z
- END_UNCHANGED
);
16536 else if (last_unchanged_at_beg_row
== NULL
)
16542 /* Either there is no unchanged row at the end, or the one we have
16543 now displays text. This is a necessary condition for the window
16544 end pos calculation at the end of this function. */
16545 xassert (first_unchanged_at_end_row
== NULL
16546 || MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row
));
16548 debug_last_unchanged_at_beg_vpos
16549 = (last_unchanged_at_beg_row
16550 ? MATRIX_ROW_VPOS (last_unchanged_at_beg_row
, current_matrix
)
16552 debug_first_unchanged_at_end_vpos
= first_unchanged_at_end_vpos
;
16554 #endif /* GLYPH_DEBUG != 0 */
16557 /* Display new lines. Set last_text_row to the last new line
16558 displayed which has text on it, i.e. might end up as being the
16559 line where the window_end_vpos is. */
16560 w
->cursor
.vpos
= -1;
16561 last_text_row
= NULL
;
16562 overlay_arrow_seen
= 0;
16563 while (it
.current_y
< it
.last_visible_y
16564 && !fonts_changed_p
16565 && (first_unchanged_at_end_row
== NULL
16566 || IT_CHARPOS (it
) < stop_pos
))
16568 if (display_line (&it
))
16569 last_text_row
= it
.glyph_row
- 1;
16572 if (fonts_changed_p
)
16576 /* Compute differences in buffer positions, y-positions etc. for
16577 lines reused at the bottom of the window. Compute what we can
16579 if (first_unchanged_at_end_row
16580 /* No lines reused because we displayed everything up to the
16581 bottom of the window. */
16582 && it
.current_y
< it
.last_visible_y
)
16585 - MATRIX_ROW_VPOS (first_unchanged_at_end_row
,
16587 dy
= it
.current_y
- first_unchanged_at_end_row
->y
;
16588 run
.current_y
= first_unchanged_at_end_row
->y
;
16589 run
.desired_y
= run
.current_y
+ dy
;
16590 run
.height
= it
.last_visible_y
- max (run
.current_y
, run
.desired_y
);
16594 delta
= delta_bytes
= dvpos
= dy
16595 = run
.current_y
= run
.desired_y
= run
.height
= 0;
16596 first_unchanged_at_end_row
= NULL
;
16598 IF_DEBUG (debug_dvpos
= dvpos
; debug_dy
= dy
);
16601 /* Find the cursor if not already found. We have to decide whether
16602 PT will appear on this window (it sometimes doesn't, but this is
16603 not a very frequent case.) This decision has to be made before
16604 the current matrix is altered. A value of cursor.vpos < 0 means
16605 that PT is either in one of the lines beginning at
16606 first_unchanged_at_end_row or below the window. Don't care for
16607 lines that might be displayed later at the window end; as
16608 mentioned, this is not a frequent case. */
16609 if (w
->cursor
.vpos
< 0)
16611 /* Cursor in unchanged rows at the top? */
16612 if (PT
< CHARPOS (start_pos
)
16613 && last_unchanged_at_beg_row
)
16615 row
= row_containing_pos (w
, PT
,
16616 MATRIX_FIRST_TEXT_ROW (w
->current_matrix
),
16617 last_unchanged_at_beg_row
+ 1, 0);
16619 set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0, 0, 0);
16622 /* Start from first_unchanged_at_end_row looking for PT. */
16623 else if (first_unchanged_at_end_row
)
16625 row
= row_containing_pos (w
, PT
- delta
,
16626 first_unchanged_at_end_row
, NULL
, 0);
16628 set_cursor_from_row (w
, row
, w
->current_matrix
, delta
,
16629 delta_bytes
, dy
, dvpos
);
16632 /* Give up if cursor was not found. */
16633 if (w
->cursor
.vpos
< 0)
16635 clear_glyph_matrix (w
->desired_matrix
);
16640 /* Don't let the cursor end in the scroll margins. */
16642 int this_scroll_margin
, cursor_height
;
16644 this_scroll_margin
= max (0, scroll_margin
);
16645 this_scroll_margin
= min (this_scroll_margin
, WINDOW_TOTAL_LINES (w
) / 4);
16646 this_scroll_margin
*= FRAME_LINE_HEIGHT (it
.f
);
16647 cursor_height
= MATRIX_ROW (w
->desired_matrix
, w
->cursor
.vpos
)->height
;
16649 if ((w
->cursor
.y
< this_scroll_margin
16650 && CHARPOS (start
) > BEGV
)
16651 /* Old redisplay didn't take scroll margin into account at the bottom,
16652 but then global-hl-line-mode doesn't scroll. KFS 2004-06-14 */
16653 || (w
->cursor
.y
+ (make_cursor_line_fully_visible_p
16654 ? cursor_height
+ this_scroll_margin
16655 : 1)) > it
.last_visible_y
)
16657 w
->cursor
.vpos
= -1;
16658 clear_glyph_matrix (w
->desired_matrix
);
16663 /* Scroll the display. Do it before changing the current matrix so
16664 that xterm.c doesn't get confused about where the cursor glyph is
16666 if (dy
&& run
.height
)
16670 if (FRAME_WINDOW_P (f
))
16672 FRAME_RIF (f
)->update_window_begin_hook (w
);
16673 FRAME_RIF (f
)->clear_window_mouse_face (w
);
16674 FRAME_RIF (f
)->scroll_run_hook (w
, &run
);
16675 FRAME_RIF (f
)->update_window_end_hook (w
, 0, 0);
16679 /* Terminal frame. In this case, dvpos gives the number of
16680 lines to scroll by; dvpos < 0 means scroll up. */
16682 = MATRIX_ROW_VPOS (first_unchanged_at_end_row
, w
->current_matrix
);
16683 int from
= WINDOW_TOP_EDGE_LINE (w
) + from_vpos
;
16684 int end
= (WINDOW_TOP_EDGE_LINE (w
)
16685 + (WINDOW_WANTS_HEADER_LINE_P (w
) ? 1 : 0)
16686 + window_internal_height (w
));
16688 #if defined (HAVE_GPM) || defined (MSDOS)
16689 x_clear_window_mouse_face (w
);
16691 /* Perform the operation on the screen. */
16694 /* Scroll last_unchanged_at_beg_row to the end of the
16695 window down dvpos lines. */
16696 set_terminal_window (f
, end
);
16698 /* On dumb terminals delete dvpos lines at the end
16699 before inserting dvpos empty lines. */
16700 if (!FRAME_SCROLL_REGION_OK (f
))
16701 ins_del_lines (f
, end
- dvpos
, -dvpos
);
16703 /* Insert dvpos empty lines in front of
16704 last_unchanged_at_beg_row. */
16705 ins_del_lines (f
, from
, dvpos
);
16707 else if (dvpos
< 0)
16709 /* Scroll up last_unchanged_at_beg_vpos to the end of
16710 the window to last_unchanged_at_beg_vpos - |dvpos|. */
16711 set_terminal_window (f
, end
);
16713 /* Delete dvpos lines in front of
16714 last_unchanged_at_beg_vpos. ins_del_lines will set
16715 the cursor to the given vpos and emit |dvpos| delete
16717 ins_del_lines (f
, from
+ dvpos
, dvpos
);
16719 /* On a dumb terminal insert dvpos empty lines at the
16721 if (!FRAME_SCROLL_REGION_OK (f
))
16722 ins_del_lines (f
, end
+ dvpos
, -dvpos
);
16725 set_terminal_window (f
, 0);
16731 /* Shift reused rows of the current matrix to the right position.
16732 BOTTOM_ROW is the last + 1 row in the current matrix reserved for
16734 bottom_row
= MATRIX_BOTTOM_TEXT_ROW (current_matrix
, w
);
16735 bottom_vpos
= MATRIX_ROW_VPOS (bottom_row
, current_matrix
);
16738 rotate_matrix (current_matrix
, first_unchanged_at_end_vpos
+ dvpos
,
16739 bottom_vpos
, dvpos
);
16740 enable_glyph_matrix_rows (current_matrix
, bottom_vpos
+ dvpos
,
16743 else if (dvpos
> 0)
16745 rotate_matrix (current_matrix
, first_unchanged_at_end_vpos
,
16746 bottom_vpos
, dvpos
);
16747 enable_glyph_matrix_rows (current_matrix
, first_unchanged_at_end_vpos
,
16748 first_unchanged_at_end_vpos
+ dvpos
, 0);
16751 /* For frame-based redisplay, make sure that current frame and window
16752 matrix are in sync with respect to glyph memory. */
16753 if (!FRAME_WINDOW_P (f
))
16754 sync_frame_with_window_matrix_rows (w
);
16756 /* Adjust buffer positions in reused rows. */
16757 if (delta
|| delta_bytes
)
16758 increment_matrix_positions (current_matrix
,
16759 first_unchanged_at_end_vpos
+ dvpos
,
16760 bottom_vpos
, delta
, delta_bytes
);
16762 /* Adjust Y positions. */
16764 shift_glyph_matrix (w
, current_matrix
,
16765 first_unchanged_at_end_vpos
+ dvpos
,
16768 if (first_unchanged_at_end_row
)
16770 first_unchanged_at_end_row
+= dvpos
;
16771 if (first_unchanged_at_end_row
->y
>= it
.last_visible_y
16772 || !MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row
))
16773 first_unchanged_at_end_row
= NULL
;
16776 /* If scrolling up, there may be some lines to display at the end of
16778 last_text_row_at_end
= NULL
;
16781 /* Scrolling up can leave for example a partially visible line
16782 at the end of the window to be redisplayed. */
16783 /* Set last_row to the glyph row in the current matrix where the
16784 window end line is found. It has been moved up or down in
16785 the matrix by dvpos. */
16786 int last_vpos
= XFASTINT (w
->window_end_vpos
) + dvpos
;
16787 struct glyph_row
*last_row
= MATRIX_ROW (current_matrix
, last_vpos
);
16789 /* If last_row is the window end line, it should display text. */
16790 xassert (last_row
->displays_text_p
);
16792 /* If window end line was partially visible before, begin
16793 displaying at that line. Otherwise begin displaying with the
16794 line following it. */
16795 if (MATRIX_ROW_BOTTOM_Y (last_row
) - dy
>= it
.last_visible_y
)
16797 init_to_row_start (&it
, w
, last_row
);
16798 it
.vpos
= last_vpos
;
16799 it
.current_y
= last_row
->y
;
16803 init_to_row_end (&it
, w
, last_row
);
16804 it
.vpos
= 1 + last_vpos
;
16805 it
.current_y
= MATRIX_ROW_BOTTOM_Y (last_row
);
16809 /* We may start in a continuation line. If so, we have to
16810 get the right continuation_lines_width and current_x. */
16811 it
.continuation_lines_width
= last_row
->continuation_lines_width
;
16812 it
.hpos
= it
.current_x
= 0;
16814 /* Display the rest of the lines at the window end. */
16815 it
.glyph_row
= MATRIX_ROW (desired_matrix
, it
.vpos
);
16816 while (it
.current_y
< it
.last_visible_y
16817 && !fonts_changed_p
)
16819 /* Is it always sure that the display agrees with lines in
16820 the current matrix? I don't think so, so we mark rows
16821 displayed invalid in the current matrix by setting their
16822 enabled_p flag to zero. */
16823 MATRIX_ROW (w
->current_matrix
, it
.vpos
)->enabled_p
= 0;
16824 if (display_line (&it
))
16825 last_text_row_at_end
= it
.glyph_row
- 1;
16829 /* Update window_end_pos and window_end_vpos. */
16830 if (first_unchanged_at_end_row
16831 && !last_text_row_at_end
)
16833 /* Window end line if one of the preserved rows from the current
16834 matrix. Set row to the last row displaying text in current
16835 matrix starting at first_unchanged_at_end_row, after
16837 xassert (first_unchanged_at_end_row
->displays_text_p
);
16838 row
= find_last_row_displaying_text (w
->current_matrix
, &it
,
16839 first_unchanged_at_end_row
);
16840 xassert (row
&& MATRIX_ROW_DISPLAYS_TEXT_P (row
));
16842 w
->window_end_pos
= make_number (Z
- MATRIX_ROW_END_CHARPOS (row
));
16843 w
->window_end_bytepos
= Z_BYTE
- MATRIX_ROW_END_BYTEPOS (row
);
16845 = make_number (MATRIX_ROW_VPOS (row
, w
->current_matrix
));
16846 xassert (w
->window_end_bytepos
>= 0);
16847 IF_DEBUG (debug_method_add (w
, "A"));
16849 else if (last_text_row_at_end
)
16852 = make_number (Z
- MATRIX_ROW_END_CHARPOS (last_text_row_at_end
));
16853 w
->window_end_bytepos
16854 = Z_BYTE
- MATRIX_ROW_END_BYTEPOS (last_text_row_at_end
);
16856 = make_number (MATRIX_ROW_VPOS (last_text_row_at_end
, desired_matrix
));
16857 xassert (w
->window_end_bytepos
>= 0);
16858 IF_DEBUG (debug_method_add (w
, "B"));
16860 else if (last_text_row
)
16862 /* We have displayed either to the end of the window or at the
16863 end of the window, i.e. the last row with text is to be found
16864 in the desired matrix. */
16866 = make_number (Z
- MATRIX_ROW_END_CHARPOS (last_text_row
));
16867 w
->window_end_bytepos
16868 = Z_BYTE
- MATRIX_ROW_END_BYTEPOS (last_text_row
);
16870 = make_number (MATRIX_ROW_VPOS (last_text_row
, desired_matrix
));
16871 xassert (w
->window_end_bytepos
>= 0);
16873 else if (first_unchanged_at_end_row
== NULL
16874 && last_text_row
== NULL
16875 && last_text_row_at_end
== NULL
)
16877 /* Displayed to end of window, but no line containing text was
16878 displayed. Lines were deleted at the end of the window. */
16879 int first_vpos
= WINDOW_WANTS_HEADER_LINE_P (w
) ? 1 : 0;
16880 int vpos
= XFASTINT (w
->window_end_vpos
);
16881 struct glyph_row
*current_row
= current_matrix
->rows
+ vpos
;
16882 struct glyph_row
*desired_row
= desired_matrix
->rows
+ vpos
;
16885 row
== NULL
&& vpos
>= first_vpos
;
16886 --vpos
, --current_row
, --desired_row
)
16888 if (desired_row
->enabled_p
)
16890 if (desired_row
->displays_text_p
)
16893 else if (current_row
->displays_text_p
)
16897 xassert (row
!= NULL
);
16898 w
->window_end_vpos
= make_number (vpos
+ 1);
16899 w
->window_end_pos
= make_number (Z
- MATRIX_ROW_END_CHARPOS (row
));
16900 w
->window_end_bytepos
= Z_BYTE
- MATRIX_ROW_END_BYTEPOS (row
);
16901 xassert (w
->window_end_bytepos
>= 0);
16902 IF_DEBUG (debug_method_add (w
, "C"));
16907 IF_DEBUG (debug_end_pos
= XFASTINT (w
->window_end_pos
);
16908 debug_end_vpos
= XFASTINT (w
->window_end_vpos
));
16910 /* Record that display has not been completed. */
16911 w
->window_end_valid
= Qnil
;
16912 w
->desired_matrix
->no_scrolling_p
= 1;
16920 /***********************************************************************
16921 More debugging support
16922 ***********************************************************************/
16926 void dump_glyph_row (struct glyph_row
*, int, int);
16927 void dump_glyph_matrix (struct glyph_matrix
*, int);
16928 void dump_glyph (struct glyph_row
*, struct glyph
*, int);
16931 /* Dump the contents of glyph matrix MATRIX on stderr.
16933 GLYPHS 0 means don't show glyph contents.
16934 GLYPHS 1 means show glyphs in short form
16935 GLYPHS > 1 means show glyphs in long form. */
16938 dump_glyph_matrix (matrix
, glyphs
)
16939 struct glyph_matrix
*matrix
;
16943 for (i
= 0; i
< matrix
->nrows
; ++i
)
16944 dump_glyph_row (MATRIX_ROW (matrix
, i
), i
, glyphs
);
16948 /* Dump contents of glyph GLYPH to stderr. ROW and AREA are
16949 the glyph row and area where the glyph comes from. */
16952 dump_glyph (row
, glyph
, area
)
16953 struct glyph_row
*row
;
16954 struct glyph
*glyph
;
16957 if (glyph
->type
== CHAR_GLYPH
)
16960 " %5d %4c %6d %c %3d 0x%05x %c %4d %1.1d%1.1d\n",
16961 glyph
- row
->glyphs
[TEXT_AREA
],
16964 (BUFFERP (glyph
->object
)
16966 : (STRINGP (glyph
->object
)
16969 glyph
->pixel_width
,
16971 (glyph
->u
.ch
< 0x80 && glyph
->u
.ch
>= ' '
16975 glyph
->left_box_line_p
,
16976 glyph
->right_box_line_p
);
16978 else if (glyph
->type
== STRETCH_GLYPH
)
16981 " %5d %4c %6d %c %3d 0x%05x %c %4d %1.1d%1.1d\n",
16982 glyph
- row
->glyphs
[TEXT_AREA
],
16985 (BUFFERP (glyph
->object
)
16987 : (STRINGP (glyph
->object
)
16990 glyph
->pixel_width
,
16994 glyph
->left_box_line_p
,
16995 glyph
->right_box_line_p
);
16997 else if (glyph
->type
== IMAGE_GLYPH
)
17000 " %5d %4c %6d %c %3d 0x%05x %c %4d %1.1d%1.1d\n",
17001 glyph
- row
->glyphs
[TEXT_AREA
],
17004 (BUFFERP (glyph
->object
)
17006 : (STRINGP (glyph
->object
)
17009 glyph
->pixel_width
,
17013 glyph
->left_box_line_p
,
17014 glyph
->right_box_line_p
);
17016 else if (glyph
->type
== COMPOSITE_GLYPH
)
17019 " %5d %4c %6d %c %3d 0x%05x",
17020 glyph
- row
->glyphs
[TEXT_AREA
],
17023 (BUFFERP (glyph
->object
)
17025 : (STRINGP (glyph
->object
)
17028 glyph
->pixel_width
,
17030 if (glyph
->u
.cmp
.automatic
)
17033 glyph
->slice
.cmp
.from
, glyph
->slice
.cmp
.to
);
17034 fprintf (stderr
, " . %4d %1.1d%1.1d\n",
17036 glyph
->left_box_line_p
,
17037 glyph
->right_box_line_p
);
17042 /* Dump the contents of glyph row at VPOS in MATRIX to stderr.
17043 GLYPHS 0 means don't show glyph contents.
17044 GLYPHS 1 means show glyphs in short form
17045 GLYPHS > 1 means show glyphs in long form. */
17048 dump_glyph_row (row
, vpos
, glyphs
)
17049 struct glyph_row
*row
;
17054 fprintf (stderr
, "Row Start End Used oE><\\CTZFesm X Y W H V A P\n");
17055 fprintf (stderr
, "======================================================================\n");
17057 fprintf (stderr
, "%3d %5d %5d %4d %1.1d%1.1d%1.1d%1.1d\
17058 %1.1d%1.1d%1.1d%1.1d%1.1d%1.1d%1.1d%1.1d %4d %4d %4d %4d %4d %4d %4d\n",
17060 MATRIX_ROW_START_CHARPOS (row
),
17061 MATRIX_ROW_END_CHARPOS (row
),
17062 row
->used
[TEXT_AREA
],
17063 row
->contains_overlapping_glyphs_p
,
17065 row
->truncated_on_left_p
,
17066 row
->truncated_on_right_p
,
17068 MATRIX_ROW_CONTINUATION_LINE_P (row
),
17069 row
->displays_text_p
,
17072 row
->ends_in_middle_of_char_p
,
17073 row
->starts_in_middle_of_char_p
,
17079 row
->visible_height
,
17082 fprintf (stderr
, "%9d %5d\t%5d\n", row
->start
.overlay_string_index
,
17083 row
->end
.overlay_string_index
,
17084 row
->continuation_lines_width
);
17085 fprintf (stderr
, "%9d %5d\n",
17086 CHARPOS (row
->start
.string_pos
),
17087 CHARPOS (row
->end
.string_pos
));
17088 fprintf (stderr
, "%9d %5d\n", row
->start
.dpvec_index
,
17089 row
->end
.dpvec_index
);
17096 for (area
= LEFT_MARGIN_AREA
; area
< LAST_AREA
; ++area
)
17098 struct glyph
*glyph
= row
->glyphs
[area
];
17099 struct glyph
*glyph_end
= glyph
+ row
->used
[area
];
17101 /* Glyph for a line end in text. */
17102 if (area
== TEXT_AREA
&& glyph
== glyph_end
&& glyph
->charpos
> 0)
17105 if (glyph
< glyph_end
)
17106 fprintf (stderr
, " Glyph Type Pos O W Code C Face LR\n");
17108 for (; glyph
< glyph_end
; ++glyph
)
17109 dump_glyph (row
, glyph
, area
);
17112 else if (glyphs
== 1)
17116 for (area
= LEFT_MARGIN_AREA
; area
< LAST_AREA
; ++area
)
17118 char *s
= (char *) alloca (row
->used
[area
] + 1);
17121 for (i
= 0; i
< row
->used
[area
]; ++i
)
17123 struct glyph
*glyph
= row
->glyphs
[area
] + i
;
17124 if (glyph
->type
== CHAR_GLYPH
17125 && glyph
->u
.ch
< 0x80
17126 && glyph
->u
.ch
>= ' ')
17127 s
[i
] = glyph
->u
.ch
;
17133 fprintf (stderr
, "%3d: (%d) '%s'\n", vpos
, row
->enabled_p
, s
);
17139 DEFUN ("dump-glyph-matrix", Fdump_glyph_matrix
,
17140 Sdump_glyph_matrix
, 0, 1, "p",
17141 doc
: /* Dump the current matrix of the selected window to stderr.
17142 Shows contents of glyph row structures. With non-nil
17143 parameter GLYPHS, dump glyphs as well. If GLYPHS is 1 show
17144 glyphs in short form, otherwise show glyphs in long form. */)
17145 (Lisp_Object glyphs
)
17147 struct window
*w
= XWINDOW (selected_window
);
17148 struct buffer
*buffer
= XBUFFER (w
->buffer
);
17150 fprintf (stderr
, "PT = %d, BEGV = %d. ZV = %d\n",
17151 BUF_PT (buffer
), BUF_BEGV (buffer
), BUF_ZV (buffer
));
17152 fprintf (stderr
, "Cursor x = %d, y = %d, hpos = %d, vpos = %d\n",
17153 w
->cursor
.x
, w
->cursor
.y
, w
->cursor
.hpos
, w
->cursor
.vpos
);
17154 fprintf (stderr
, "=============================================\n");
17155 dump_glyph_matrix (w
->current_matrix
,
17156 NILP (glyphs
) ? 0 : XINT (glyphs
));
17161 DEFUN ("dump-frame-glyph-matrix", Fdump_frame_glyph_matrix
,
17162 Sdump_frame_glyph_matrix
, 0, 0, "", doc
: /* */)
17165 struct frame
*f
= XFRAME (selected_frame
);
17166 dump_glyph_matrix (f
->current_matrix
, 1);
17171 DEFUN ("dump-glyph-row", Fdump_glyph_row
, Sdump_glyph_row
, 1, 2, "",
17172 doc
: /* Dump glyph row ROW to stderr.
17173 GLYPH 0 means don't dump glyphs.
17174 GLYPH 1 means dump glyphs in short form.
17175 GLYPH > 1 or omitted means dump glyphs in long form. */)
17176 (Lisp_Object row
, Lisp_Object glyphs
)
17178 struct glyph_matrix
*matrix
;
17181 CHECK_NUMBER (row
);
17182 matrix
= XWINDOW (selected_window
)->current_matrix
;
17184 if (vpos
>= 0 && vpos
< matrix
->nrows
)
17185 dump_glyph_row (MATRIX_ROW (matrix
, vpos
),
17187 INTEGERP (glyphs
) ? XINT (glyphs
) : 2);
17192 DEFUN ("dump-tool-bar-row", Fdump_tool_bar_row
, Sdump_tool_bar_row
, 1, 2, "",
17193 doc
: /* Dump glyph row ROW of the tool-bar of the current frame to stderr.
17194 GLYPH 0 means don't dump glyphs.
17195 GLYPH 1 means dump glyphs in short form.
17196 GLYPH > 1 or omitted means dump glyphs in long form. */)
17197 (Lisp_Object row
, Lisp_Object glyphs
)
17199 struct frame
*sf
= SELECTED_FRAME ();
17200 struct glyph_matrix
*m
= XWINDOW (sf
->tool_bar_window
)->current_matrix
;
17203 CHECK_NUMBER (row
);
17205 if (vpos
>= 0 && vpos
< m
->nrows
)
17206 dump_glyph_row (MATRIX_ROW (m
, vpos
), vpos
,
17207 INTEGERP (glyphs
) ? XINT (glyphs
) : 2);
17212 DEFUN ("trace-redisplay", Ftrace_redisplay
, Strace_redisplay
, 0, 1, "P",
17213 doc
: /* Toggle tracing of redisplay.
17214 With ARG, turn tracing on if and only if ARG is positive. */)
17218 trace_redisplay_p
= !trace_redisplay_p
;
17221 arg
= Fprefix_numeric_value (arg
);
17222 trace_redisplay_p
= XINT (arg
) > 0;
17229 DEFUN ("trace-to-stderr", Ftrace_to_stderr
, Strace_to_stderr
, 1, MANY
, "",
17230 doc
: /* Like `format', but print result to stderr.
17231 usage: (trace-to-stderr STRING &rest OBJECTS) */)
17232 (size_t nargs
, Lisp_Object
*args
)
17234 Lisp_Object s
= Fformat (nargs
, args
);
17235 fprintf (stderr
, "%s", SDATA (s
));
17239 #endif /* GLYPH_DEBUG */
17243 /***********************************************************************
17244 Building Desired Matrix Rows
17245 ***********************************************************************/
17247 /* Return a temporary glyph row holding the glyphs of an overlay arrow.
17248 Used for non-window-redisplay windows, and for windows w/o left fringe. */
17250 static struct glyph_row
*
17251 get_overlay_arrow_glyph_row (struct window
*w
, Lisp_Object overlay_arrow_string
)
17253 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
17254 struct buffer
*buffer
= XBUFFER (w
->buffer
);
17255 struct buffer
*old
= current_buffer
;
17256 const unsigned char *arrow_string
= SDATA (overlay_arrow_string
);
17257 int arrow_len
= SCHARS (overlay_arrow_string
);
17258 const unsigned char *arrow_end
= arrow_string
+ arrow_len
;
17259 const unsigned char *p
;
17262 int n_glyphs_before
;
17264 set_buffer_temp (buffer
);
17265 init_iterator (&it
, w
, -1, -1, &scratch_glyph_row
, DEFAULT_FACE_ID
);
17266 it
.glyph_row
->used
[TEXT_AREA
] = 0;
17267 SET_TEXT_POS (it
.position
, 0, 0);
17269 multibyte_p
= !NILP (BVAR (buffer
, enable_multibyte_characters
));
17271 while (p
< arrow_end
)
17273 Lisp_Object face
, ilisp
;
17275 /* Get the next character. */
17277 it
.c
= it
.char_to_display
= string_char_and_length (p
, &it
.len
);
17280 it
.c
= it
.char_to_display
= *p
, it
.len
= 1;
17281 if (! ASCII_CHAR_P (it
.c
))
17282 it
.char_to_display
= BYTE8_TO_CHAR (it
.c
);
17286 /* Get its face. */
17287 ilisp
= make_number (p
- arrow_string
);
17288 face
= Fget_text_property (ilisp
, Qface
, overlay_arrow_string
);
17289 it
.face_id
= compute_char_face (f
, it
.char_to_display
, face
);
17291 /* Compute its width, get its glyphs. */
17292 n_glyphs_before
= it
.glyph_row
->used
[TEXT_AREA
];
17293 SET_TEXT_POS (it
.position
, -1, -1);
17294 PRODUCE_GLYPHS (&it
);
17296 /* If this character doesn't fit any more in the line, we have
17297 to remove some glyphs. */
17298 if (it
.current_x
> it
.last_visible_x
)
17300 it
.glyph_row
->used
[TEXT_AREA
] = n_glyphs_before
;
17305 set_buffer_temp (old
);
17306 return it
.glyph_row
;
17310 /* Insert truncation glyphs at the start of IT->glyph_row. Truncation
17311 glyphs are only inserted for terminal frames since we can't really
17312 win with truncation glyphs when partially visible glyphs are
17313 involved. Which glyphs to insert is determined by
17314 produce_special_glyphs. */
17317 insert_left_trunc_glyphs (struct it
*it
)
17319 struct it truncate_it
;
17320 struct glyph
*from
, *end
, *to
, *toend
;
17322 xassert (!FRAME_WINDOW_P (it
->f
));
17324 /* Get the truncation glyphs. */
17326 truncate_it
.current_x
= 0;
17327 truncate_it
.face_id
= DEFAULT_FACE_ID
;
17328 truncate_it
.glyph_row
= &scratch_glyph_row
;
17329 truncate_it
.glyph_row
->used
[TEXT_AREA
] = 0;
17330 CHARPOS (truncate_it
.position
) = BYTEPOS (truncate_it
.position
) = -1;
17331 truncate_it
.object
= make_number (0);
17332 produce_special_glyphs (&truncate_it
, IT_TRUNCATION
);
17334 /* Overwrite glyphs from IT with truncation glyphs. */
17335 if (!it
->glyph_row
->reversed_p
)
17337 from
= truncate_it
.glyph_row
->glyphs
[TEXT_AREA
];
17338 end
= from
+ truncate_it
.glyph_row
->used
[TEXT_AREA
];
17339 to
= it
->glyph_row
->glyphs
[TEXT_AREA
];
17340 toend
= to
+ it
->glyph_row
->used
[TEXT_AREA
];
17345 /* There may be padding glyphs left over. Overwrite them too. */
17346 while (to
< toend
&& CHAR_GLYPH_PADDING_P (*to
))
17348 from
= truncate_it
.glyph_row
->glyphs
[TEXT_AREA
];
17354 it
->glyph_row
->used
[TEXT_AREA
] = to
- it
->glyph_row
->glyphs
[TEXT_AREA
];
17358 /* In R2L rows, overwrite the last (rightmost) glyphs, and do
17359 that back to front. */
17360 end
= truncate_it
.glyph_row
->glyphs
[TEXT_AREA
];
17361 from
= end
+ truncate_it
.glyph_row
->used
[TEXT_AREA
] - 1;
17362 toend
= it
->glyph_row
->glyphs
[TEXT_AREA
];
17363 to
= toend
+ it
->glyph_row
->used
[TEXT_AREA
] - 1;
17365 while (from
>= end
&& to
>= toend
)
17367 while (to
>= toend
&& CHAR_GLYPH_PADDING_P (*to
))
17370 truncate_it
.glyph_row
->glyphs
[TEXT_AREA
]
17371 + truncate_it
.glyph_row
->used
[TEXT_AREA
] - 1;
17372 while (from
>= end
&& to
>= toend
)
17377 /* Need to free some room before prepending additional
17379 int move_by
= from
- end
+ 1;
17380 struct glyph
*g0
= it
->glyph_row
->glyphs
[TEXT_AREA
];
17381 struct glyph
*g
= g0
+ it
->glyph_row
->used
[TEXT_AREA
] - 1;
17383 for ( ; g
>= g0
; g
--)
17385 while (from
>= end
)
17387 it
->glyph_row
->used
[TEXT_AREA
] += move_by
;
17393 /* Compute the pixel height and width of IT->glyph_row.
17395 Most of the time, ascent and height of a display line will be equal
17396 to the max_ascent and max_height values of the display iterator
17397 structure. This is not the case if
17399 1. We hit ZV without displaying anything. In this case, max_ascent
17400 and max_height will be zero.
17402 2. We have some glyphs that don't contribute to the line height.
17403 (The glyph row flag contributes_to_line_height_p is for future
17404 pixmap extensions).
17406 The first case is easily covered by using default values because in
17407 these cases, the line height does not really matter, except that it
17408 must not be zero. */
17411 compute_line_metrics (struct it
*it
)
17413 struct glyph_row
*row
= it
->glyph_row
;
17415 if (FRAME_WINDOW_P (it
->f
))
17417 int i
, min_y
, max_y
;
17419 /* The line may consist of one space only, that was added to
17420 place the cursor on it. If so, the row's height hasn't been
17422 if (row
->height
== 0)
17424 if (it
->max_ascent
+ it
->max_descent
== 0)
17425 it
->max_descent
= it
->max_phys_descent
= FRAME_LINE_HEIGHT (it
->f
);
17426 row
->ascent
= it
->max_ascent
;
17427 row
->height
= it
->max_ascent
+ it
->max_descent
;
17428 row
->phys_ascent
= it
->max_phys_ascent
;
17429 row
->phys_height
= it
->max_phys_ascent
+ it
->max_phys_descent
;
17430 row
->extra_line_spacing
= it
->max_extra_line_spacing
;
17433 /* Compute the width of this line. */
17434 row
->pixel_width
= row
->x
;
17435 for (i
= 0; i
< row
->used
[TEXT_AREA
]; ++i
)
17436 row
->pixel_width
+= row
->glyphs
[TEXT_AREA
][i
].pixel_width
;
17438 xassert (row
->pixel_width
>= 0);
17439 xassert (row
->ascent
>= 0 && row
->height
> 0);
17441 row
->overlapping_p
= (MATRIX_ROW_OVERLAPS_SUCC_P (row
)
17442 || MATRIX_ROW_OVERLAPS_PRED_P (row
));
17444 /* If first line's physical ascent is larger than its logical
17445 ascent, use the physical ascent, and make the row taller.
17446 This makes accented characters fully visible. */
17447 if (row
== MATRIX_FIRST_TEXT_ROW (it
->w
->desired_matrix
)
17448 && row
->phys_ascent
> row
->ascent
)
17450 row
->height
+= row
->phys_ascent
- row
->ascent
;
17451 row
->ascent
= row
->phys_ascent
;
17454 /* Compute how much of the line is visible. */
17455 row
->visible_height
= row
->height
;
17457 min_y
= WINDOW_HEADER_LINE_HEIGHT (it
->w
);
17458 max_y
= WINDOW_BOX_HEIGHT_NO_MODE_LINE (it
->w
);
17460 if (row
->y
< min_y
)
17461 row
->visible_height
-= min_y
- row
->y
;
17462 if (row
->y
+ row
->height
> max_y
)
17463 row
->visible_height
-= row
->y
+ row
->height
- max_y
;
17467 row
->pixel_width
= row
->used
[TEXT_AREA
];
17468 if (row
->continued_p
)
17469 row
->pixel_width
-= it
->continuation_pixel_width
;
17470 else if (row
->truncated_on_right_p
)
17471 row
->pixel_width
-= it
->truncation_pixel_width
;
17472 row
->ascent
= row
->phys_ascent
= 0;
17473 row
->height
= row
->phys_height
= row
->visible_height
= 1;
17474 row
->extra_line_spacing
= 0;
17477 /* Compute a hash code for this row. */
17481 for (area
= LEFT_MARGIN_AREA
; area
< LAST_AREA
; ++area
)
17482 for (i
= 0; i
< row
->used
[area
]; ++i
)
17483 row
->hash
= ((((row
->hash
<< 4) + (row
->hash
>> 24)) & 0x0fffffff)
17484 + row
->glyphs
[area
][i
].u
.val
17485 + row
->glyphs
[area
][i
].face_id
17486 + row
->glyphs
[area
][i
].padding_p
17487 + (row
->glyphs
[area
][i
].type
<< 2));
17490 it
->max_ascent
= it
->max_descent
= 0;
17491 it
->max_phys_ascent
= it
->max_phys_descent
= 0;
17495 /* Append one space to the glyph row of iterator IT if doing a
17496 window-based redisplay. The space has the same face as
17497 IT->face_id. Value is non-zero if a space was added.
17499 This function is called to make sure that there is always one glyph
17500 at the end of a glyph row that the cursor can be set on under
17501 window-systems. (If there weren't such a glyph we would not know
17502 how wide and tall a box cursor should be displayed).
17504 At the same time this space let's a nicely handle clearing to the
17505 end of the line if the row ends in italic text. */
17508 append_space_for_newline (struct it
*it
, int default_face_p
)
17510 if (FRAME_WINDOW_P (it
->f
))
17512 int n
= it
->glyph_row
->used
[TEXT_AREA
];
17514 if (it
->glyph_row
->glyphs
[TEXT_AREA
] + n
17515 < it
->glyph_row
->glyphs
[1 + TEXT_AREA
])
17517 /* Save some values that must not be changed.
17518 Must save IT->c and IT->len because otherwise
17519 ITERATOR_AT_END_P wouldn't work anymore after
17520 append_space_for_newline has been called. */
17521 enum display_element_type saved_what
= it
->what
;
17522 int saved_c
= it
->c
, saved_len
= it
->len
;
17523 int saved_char_to_display
= it
->char_to_display
;
17524 int saved_x
= it
->current_x
;
17525 int saved_face_id
= it
->face_id
;
17526 struct text_pos saved_pos
;
17527 Lisp_Object saved_object
;
17530 saved_object
= it
->object
;
17531 saved_pos
= it
->position
;
17533 it
->what
= IT_CHARACTER
;
17534 memset (&it
->position
, 0, sizeof it
->position
);
17535 it
->object
= make_number (0);
17536 it
->c
= it
->char_to_display
= ' ';
17539 if (default_face_p
)
17540 it
->face_id
= DEFAULT_FACE_ID
;
17541 else if (it
->face_before_selective_p
)
17542 it
->face_id
= it
->saved_face_id
;
17543 face
= FACE_FROM_ID (it
->f
, it
->face_id
);
17544 it
->face_id
= FACE_FOR_CHAR (it
->f
, face
, 0, -1, Qnil
);
17546 PRODUCE_GLYPHS (it
);
17548 it
->override_ascent
= -1;
17549 it
->constrain_row_ascent_descent_p
= 0;
17550 it
->current_x
= saved_x
;
17551 it
->object
= saved_object
;
17552 it
->position
= saved_pos
;
17553 it
->what
= saved_what
;
17554 it
->face_id
= saved_face_id
;
17555 it
->len
= saved_len
;
17557 it
->char_to_display
= saved_char_to_display
;
17566 /* Extend the face of the last glyph in the text area of IT->glyph_row
17567 to the end of the display line. Called from display_line. If the
17568 glyph row is empty, add a space glyph to it so that we know the
17569 face to draw. Set the glyph row flag fill_line_p. If the glyph
17570 row is R2L, prepend a stretch glyph to cover the empty space to the
17571 left of the leftmost glyph. */
17574 extend_face_to_end_of_line (struct it
*it
)
17577 struct frame
*f
= it
->f
;
17579 /* If line is already filled, do nothing. Non window-system frames
17580 get a grace of one more ``pixel'' because their characters are
17581 1-``pixel'' wide, so they hit the equality too early. This grace
17582 is needed only for R2L rows that are not continued, to produce
17583 one extra blank where we could display the cursor. */
17584 if (it
->current_x
>= it
->last_visible_x
17585 + (!FRAME_WINDOW_P (f
)
17586 && it
->glyph_row
->reversed_p
17587 && !it
->glyph_row
->continued_p
))
17590 /* Face extension extends the background and box of IT->face_id
17591 to the end of the line. If the background equals the background
17592 of the frame, we don't have to do anything. */
17593 if (it
->face_before_selective_p
)
17594 face
= FACE_FROM_ID (f
, it
->saved_face_id
);
17596 face
= FACE_FROM_ID (f
, it
->face_id
);
17598 if (FRAME_WINDOW_P (f
)
17599 && it
->glyph_row
->displays_text_p
17600 && face
->box
== FACE_NO_BOX
17601 && face
->background
== FRAME_BACKGROUND_PIXEL (f
)
17603 && !it
->glyph_row
->reversed_p
)
17606 /* Set the glyph row flag indicating that the face of the last glyph
17607 in the text area has to be drawn to the end of the text area. */
17608 it
->glyph_row
->fill_line_p
= 1;
17610 /* If current character of IT is not ASCII, make sure we have the
17611 ASCII face. This will be automatically undone the next time
17612 get_next_display_element returns a multibyte character. Note
17613 that the character will always be single byte in unibyte
17615 if (!ASCII_CHAR_P (it
->c
))
17617 it
->face_id
= FACE_FOR_CHAR (f
, face
, 0, -1, Qnil
);
17620 if (FRAME_WINDOW_P (f
))
17622 /* If the row is empty, add a space with the current face of IT,
17623 so that we know which face to draw. */
17624 if (it
->glyph_row
->used
[TEXT_AREA
] == 0)
17626 it
->glyph_row
->glyphs
[TEXT_AREA
][0] = space_glyph
;
17627 it
->glyph_row
->glyphs
[TEXT_AREA
][0].face_id
= it
->face_id
;
17628 it
->glyph_row
->used
[TEXT_AREA
] = 1;
17630 #ifdef HAVE_WINDOW_SYSTEM
17631 if (it
->glyph_row
->reversed_p
)
17633 /* Prepend a stretch glyph to the row, such that the
17634 rightmost glyph will be drawn flushed all the way to the
17635 right margin of the window. The stretch glyph that will
17636 occupy the empty space, if any, to the left of the
17638 struct font
*font
= face
->font
? face
->font
: FRAME_FONT (f
);
17639 struct glyph
*row_start
= it
->glyph_row
->glyphs
[TEXT_AREA
];
17640 struct glyph
*row_end
= row_start
+ it
->glyph_row
->used
[TEXT_AREA
];
17642 int row_width
, stretch_ascent
, stretch_width
;
17643 struct text_pos saved_pos
;
17644 int saved_face_id
, saved_avoid_cursor
;
17646 for (row_width
= 0, g
= row_start
; g
< row_end
; g
++)
17647 row_width
+= g
->pixel_width
;
17648 stretch_width
= window_box_width (it
->w
, TEXT_AREA
) - row_width
;
17649 if (stretch_width
> 0)
17652 (((it
->ascent
+ it
->descent
)
17653 * FONT_BASE (font
)) / FONT_HEIGHT (font
));
17654 saved_pos
= it
->position
;
17655 memset (&it
->position
, 0, sizeof it
->position
);
17656 saved_avoid_cursor
= it
->avoid_cursor_p
;
17657 it
->avoid_cursor_p
= 1;
17658 saved_face_id
= it
->face_id
;
17659 /* The last row's stretch glyph should get the default
17660 face, to avoid painting the rest of the window with
17661 the region face, if the region ends at ZV. */
17662 if (it
->glyph_row
->ends_at_zv_p
)
17663 it
->face_id
= DEFAULT_FACE_ID
;
17665 it
->face_id
= face
->id
;
17666 append_stretch_glyph (it
, make_number (0), stretch_width
,
17667 it
->ascent
+ it
->descent
, stretch_ascent
);
17668 it
->position
= saved_pos
;
17669 it
->avoid_cursor_p
= saved_avoid_cursor
;
17670 it
->face_id
= saved_face_id
;
17673 #endif /* HAVE_WINDOW_SYSTEM */
17677 /* Save some values that must not be changed. */
17678 int saved_x
= it
->current_x
;
17679 struct text_pos saved_pos
;
17680 Lisp_Object saved_object
;
17681 enum display_element_type saved_what
= it
->what
;
17682 int saved_face_id
= it
->face_id
;
17684 saved_object
= it
->object
;
17685 saved_pos
= it
->position
;
17687 it
->what
= IT_CHARACTER
;
17688 memset (&it
->position
, 0, sizeof it
->position
);
17689 it
->object
= make_number (0);
17690 it
->c
= it
->char_to_display
= ' ';
17692 /* The last row's blank glyphs should get the default face, to
17693 avoid painting the rest of the window with the region face,
17694 if the region ends at ZV. */
17695 if (it
->glyph_row
->ends_at_zv_p
)
17696 it
->face_id
= DEFAULT_FACE_ID
;
17698 it
->face_id
= face
->id
;
17700 PRODUCE_GLYPHS (it
);
17702 while (it
->current_x
<= it
->last_visible_x
)
17703 PRODUCE_GLYPHS (it
);
17705 /* Don't count these blanks really. It would let us insert a left
17706 truncation glyph below and make us set the cursor on them, maybe. */
17707 it
->current_x
= saved_x
;
17708 it
->object
= saved_object
;
17709 it
->position
= saved_pos
;
17710 it
->what
= saved_what
;
17711 it
->face_id
= saved_face_id
;
17716 /* Value is non-zero if text starting at CHARPOS in current_buffer is
17717 trailing whitespace. */
17720 trailing_whitespace_p (EMACS_INT charpos
)
17722 EMACS_INT bytepos
= CHAR_TO_BYTE (charpos
);
17725 while (bytepos
< ZV_BYTE
17726 && (c
= FETCH_CHAR (bytepos
),
17727 c
== ' ' || c
== '\t'))
17730 if (bytepos
>= ZV_BYTE
|| c
== '\n' || c
== '\r')
17732 if (bytepos
!= PT_BYTE
)
17739 /* Highlight trailing whitespace, if any, in ROW. */
17742 highlight_trailing_whitespace (struct frame
*f
, struct glyph_row
*row
)
17744 int used
= row
->used
[TEXT_AREA
];
17748 struct glyph
*start
= row
->glyphs
[TEXT_AREA
];
17749 struct glyph
*glyph
= start
+ used
- 1;
17751 if (row
->reversed_p
)
17753 /* Right-to-left rows need to be processed in the opposite
17754 direction, so swap the edge pointers. */
17756 start
= row
->glyphs
[TEXT_AREA
] + used
- 1;
17759 /* Skip over glyphs inserted to display the cursor at the
17760 end of a line, for extending the face of the last glyph
17761 to the end of the line on terminals, and for truncation
17762 and continuation glyphs. */
17763 if (!row
->reversed_p
)
17765 while (glyph
>= start
17766 && glyph
->type
== CHAR_GLYPH
17767 && INTEGERP (glyph
->object
))
17772 while (glyph
<= start
17773 && glyph
->type
== CHAR_GLYPH
17774 && INTEGERP (glyph
->object
))
17778 /* If last glyph is a space or stretch, and it's trailing
17779 whitespace, set the face of all trailing whitespace glyphs in
17780 IT->glyph_row to `trailing-whitespace'. */
17781 if ((row
->reversed_p
? glyph
<= start
: glyph
>= start
)
17782 && BUFFERP (glyph
->object
)
17783 && (glyph
->type
== STRETCH_GLYPH
17784 || (glyph
->type
== CHAR_GLYPH
17785 && glyph
->u
.ch
== ' '))
17786 && trailing_whitespace_p (glyph
->charpos
))
17788 int face_id
= lookup_named_face (f
, Qtrailing_whitespace
, 0);
17792 if (!row
->reversed_p
)
17794 while (glyph
>= start
17795 && BUFFERP (glyph
->object
)
17796 && (glyph
->type
== STRETCH_GLYPH
17797 || (glyph
->type
== CHAR_GLYPH
17798 && glyph
->u
.ch
== ' ')))
17799 (glyph
--)->face_id
= face_id
;
17803 while (glyph
<= start
17804 && BUFFERP (glyph
->object
)
17805 && (glyph
->type
== STRETCH_GLYPH
17806 || (glyph
->type
== CHAR_GLYPH
17807 && glyph
->u
.ch
== ' ')))
17808 (glyph
++)->face_id
= face_id
;
17815 /* Value is non-zero if glyph row ROW should be
17816 used to hold the cursor. */
17819 cursor_row_p (struct glyph_row
*row
)
17823 if (PT
== CHARPOS (row
->end
.pos
))
17825 /* Suppose the row ends on a string.
17826 Unless the row is continued, that means it ends on a newline
17827 in the string. If it's anything other than a display string
17828 (e.g. a before-string from an overlay), we don't want the
17829 cursor there. (This heuristic seems to give the optimal
17830 behavior for the various types of multi-line strings.) */
17831 if (CHARPOS (row
->end
.string_pos
) >= 0)
17833 if (row
->continued_p
)
17837 /* Check for `display' property. */
17838 struct glyph
*beg
= row
->glyphs
[TEXT_AREA
];
17839 struct glyph
*end
= beg
+ row
->used
[TEXT_AREA
] - 1;
17840 struct glyph
*glyph
;
17843 for (glyph
= end
; glyph
>= beg
; --glyph
)
17844 if (STRINGP (glyph
->object
))
17847 = Fget_char_property (make_number (PT
),
17851 && display_prop_string_p (prop
, glyph
->object
));
17856 else if (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row
))
17858 /* If the row ends in middle of a real character,
17859 and the line is continued, we want the cursor here.
17860 That's because CHARPOS (ROW->end.pos) would equal
17861 PT if PT is before the character. */
17862 if (!row
->ends_in_ellipsis_p
)
17863 result
= row
->continued_p
;
17865 /* If the row ends in an ellipsis, then
17866 CHARPOS (ROW->end.pos) will equal point after the
17867 invisible text. We want that position to be displayed
17868 after the ellipsis. */
17871 /* If the row ends at ZV, display the cursor at the end of that
17872 row instead of at the start of the row below. */
17873 else if (row
->ends_at_zv_p
)
17884 /* Push the display property PROP so that it will be rendered at the
17885 current position in IT. Return 1 if PROP was successfully pushed,
17889 push_display_prop (struct it
*it
, Lisp_Object prop
)
17891 xassert (it
->method
== GET_FROM_BUFFER
);
17893 push_it (it
, NULL
);
17895 if (STRINGP (prop
))
17897 if (SCHARS (prop
) == 0)
17904 it
->multibyte_p
= STRING_MULTIBYTE (it
->string
);
17905 it
->current
.overlay_string_index
= -1;
17906 IT_STRING_CHARPOS (*it
) = IT_STRING_BYTEPOS (*it
) = 0;
17907 it
->end_charpos
= it
->string_nchars
= SCHARS (it
->string
);
17908 it
->method
= GET_FROM_STRING
;
17909 it
->stop_charpos
= 0;
17911 it
->base_level_stop
= 0;
17912 it
->string_from_display_prop_p
= 1;
17913 it
->from_disp_prop_p
= 1;
17915 /* Force paragraph direction to be that of the parent
17917 if (it
->bidi_p
&& it
->bidi_it
.paragraph_dir
== R2L
)
17918 it
->paragraph_embedding
= it
->bidi_it
.paragraph_dir
;
17920 it
->paragraph_embedding
= L2R
;
17922 /* Set up the bidi iterator for this display string. */
17925 it
->bidi_it
.string
.lstring
= it
->string
;
17926 it
->bidi_it
.string
.s
= NULL
;
17927 it
->bidi_it
.string
.schars
= it
->end_charpos
;
17928 it
->bidi_it
.string
.bufpos
= IT_CHARPOS (*it
);
17929 it
->bidi_it
.string
.from_disp_str
= 1;
17930 it
->bidi_it
.string
.unibyte
= !it
->multibyte_p
;
17931 bidi_init_it (0, 0, FRAME_WINDOW_P (it
->f
), &it
->bidi_it
);
17934 else if (CONSP (prop
) && EQ (XCAR (prop
), Qspace
))
17936 it
->method
= GET_FROM_STRETCH
;
17939 #ifdef HAVE_WINDOW_SYSTEM
17940 else if (IMAGEP (prop
))
17942 it
->what
= IT_IMAGE
;
17943 it
->image_id
= lookup_image (it
->f
, prop
);
17944 it
->method
= GET_FROM_IMAGE
;
17946 #endif /* HAVE_WINDOW_SYSTEM */
17949 pop_it (it
); /* bogus display property, give up */
17956 /* Return the character-property PROP at the current position in IT. */
17959 get_it_property (struct it
*it
, Lisp_Object prop
)
17961 Lisp_Object position
;
17963 if (STRINGP (it
->object
))
17964 position
= make_number (IT_STRING_CHARPOS (*it
));
17965 else if (BUFFERP (it
->object
))
17966 position
= make_number (IT_CHARPOS (*it
));
17970 return Fget_char_property (position
, prop
, it
->object
);
17973 /* See if there's a line- or wrap-prefix, and if so, push it on IT. */
17976 handle_line_prefix (struct it
*it
)
17978 Lisp_Object prefix
;
17980 if (it
->continuation_lines_width
> 0)
17982 prefix
= get_it_property (it
, Qwrap_prefix
);
17984 prefix
= Vwrap_prefix
;
17988 prefix
= get_it_property (it
, Qline_prefix
);
17990 prefix
= Vline_prefix
;
17992 if (! NILP (prefix
) && push_display_prop (it
, prefix
))
17994 /* If the prefix is wider than the window, and we try to wrap
17995 it, it would acquire its own wrap prefix, and so on till the
17996 iterator stack overflows. So, don't wrap the prefix. */
17997 it
->line_wrap
= TRUNCATE
;
17998 it
->avoid_cursor_p
= 1;
18004 /* Remove N glyphs at the start of a reversed IT->glyph_row. Called
18005 only for R2L lines from display_line and display_string, when they
18006 decide that too many glyphs were produced by PRODUCE_GLYPHS, and
18007 the line/string needs to be continued on the next glyph row. */
18009 unproduce_glyphs (struct it
*it
, int n
)
18011 struct glyph
*glyph
, *end
;
18013 xassert (it
->glyph_row
);
18014 xassert (it
->glyph_row
->reversed_p
);
18015 xassert (it
->area
== TEXT_AREA
);
18016 xassert (n
<= it
->glyph_row
->used
[TEXT_AREA
]);
18018 if (n
> it
->glyph_row
->used
[TEXT_AREA
])
18019 n
= it
->glyph_row
->used
[TEXT_AREA
];
18020 glyph
= it
->glyph_row
->glyphs
[TEXT_AREA
] + n
;
18021 end
= it
->glyph_row
->glyphs
[TEXT_AREA
] + it
->glyph_row
->used
[TEXT_AREA
];
18022 for ( ; glyph
< end
; glyph
++)
18023 glyph
[-n
] = *glyph
;
18026 /* Find the positions in a bidi-reordered ROW to serve as ROW->minpos
18027 and ROW->maxpos. */
18029 find_row_edges (struct it
*it
, struct glyph_row
*row
,
18030 EMACS_INT min_pos
, EMACS_INT min_bpos
,
18031 EMACS_INT max_pos
, EMACS_INT max_bpos
)
18033 /* FIXME: Revisit this when glyph ``spilling'' in continuation
18034 lines' rows is implemented for bidi-reordered rows. */
18036 /* ROW->minpos is the value of min_pos, the minimal buffer position
18037 we have in ROW, or ROW->start.pos if that is smaller. */
18038 if (min_pos
<= ZV
&& min_pos
< row
->start
.pos
.charpos
)
18039 SET_TEXT_POS (row
->minpos
, min_pos
, min_bpos
);
18041 /* We didn't find buffer positions smaller than ROW->start, or
18042 didn't find _any_ valid buffer positions in any of the glyphs,
18043 so we must trust the iterator's computed positions. */
18044 row
->minpos
= row
->start
.pos
;
18047 max_pos
= CHARPOS (it
->current
.pos
);
18048 max_bpos
= BYTEPOS (it
->current
.pos
);
18051 /* Here are the various use-cases for ending the row, and the
18052 corresponding values for ROW->maxpos:
18054 Line ends in a newline from buffer eol_pos + 1
18055 Line is continued from buffer max_pos + 1
18056 Line is truncated on right it->current.pos
18057 Line ends in a newline from string max_pos
18058 Line is continued from string max_pos
18059 Line is continued from display vector max_pos
18060 Line is entirely from a string min_pos == max_pos
18061 Line is entirely from a display vector min_pos == max_pos
18062 Line that ends at ZV ZV
18064 If you discover other use-cases, please add them here as
18066 if (row
->ends_at_zv_p
)
18067 row
->maxpos
= it
->current
.pos
;
18068 else if (row
->used
[TEXT_AREA
])
18070 if (row
->ends_in_newline_from_string_p
)
18071 SET_TEXT_POS (row
->maxpos
, max_pos
, max_bpos
);
18072 else if (CHARPOS (it
->eol_pos
) > 0)
18073 SET_TEXT_POS (row
->maxpos
,
18074 CHARPOS (it
->eol_pos
) + 1, BYTEPOS (it
->eol_pos
) + 1);
18075 else if (row
->continued_p
)
18077 /* If max_pos is different from IT's current position, it
18078 means IT->method does not belong to the display element
18079 at max_pos. However, it also means that the display
18080 element at max_pos was displayed in its entirety on this
18081 line, which is equivalent to saying that the next line
18082 starts at the next buffer position. */
18083 if (IT_CHARPOS (*it
) == max_pos
&& it
->method
!= GET_FROM_BUFFER
)
18084 SET_TEXT_POS (row
->maxpos
, max_pos
, max_bpos
);
18087 INC_BOTH (max_pos
, max_bpos
);
18088 SET_TEXT_POS (row
->maxpos
, max_pos
, max_bpos
);
18091 else if (row
->truncated_on_right_p
)
18092 /* display_line already called reseat_at_next_visible_line_start,
18093 which puts the iterator at the beginning of the next line, in
18094 the logical order. */
18095 row
->maxpos
= it
->current
.pos
;
18096 else if (max_pos
== min_pos
&& it
->method
!= GET_FROM_BUFFER
)
18097 /* A line that is entirely from a string/image/stretch... */
18098 row
->maxpos
= row
->minpos
;
18103 row
->maxpos
= it
->current
.pos
;
18106 /* Construct the glyph row IT->glyph_row in the desired matrix of
18107 IT->w from text at the current position of IT. See dispextern.h
18108 for an overview of struct it. Value is non-zero if
18109 IT->glyph_row displays text, as opposed to a line displaying ZV
18113 display_line (struct it
*it
)
18115 struct glyph_row
*row
= it
->glyph_row
;
18116 Lisp_Object overlay_arrow_string
;
18118 void *wrap_data
= NULL
;
18119 int may_wrap
= 0, wrap_x
IF_LINT (= 0);
18120 int wrap_row_used
= -1;
18121 int wrap_row_ascent
IF_LINT (= 0), wrap_row_height
IF_LINT (= 0);
18122 int wrap_row_phys_ascent
IF_LINT (= 0), wrap_row_phys_height
IF_LINT (= 0);
18123 int wrap_row_extra_line_spacing
IF_LINT (= 0);
18124 EMACS_INT wrap_row_min_pos
IF_LINT (= 0), wrap_row_min_bpos
IF_LINT (= 0);
18125 EMACS_INT wrap_row_max_pos
IF_LINT (= 0), wrap_row_max_bpos
IF_LINT (= 0);
18127 EMACS_INT min_pos
= ZV
+ 1, max_pos
= 0;
18128 EMACS_INT min_bpos
IF_LINT (= 0), max_bpos
IF_LINT (= 0);
18130 /* We always start displaying at hpos zero even if hscrolled. */
18131 xassert (it
->hpos
== 0 && it
->current_x
== 0);
18133 if (MATRIX_ROW_VPOS (row
, it
->w
->desired_matrix
)
18134 >= it
->w
->desired_matrix
->nrows
)
18136 it
->w
->nrows_scale_factor
++;
18137 fonts_changed_p
= 1;
18141 /* Is IT->w showing the region? */
18142 it
->w
->region_showing
= it
->region_beg_charpos
> 0 ? Qt
: Qnil
;
18144 /* Clear the result glyph row and enable it. */
18145 prepare_desired_row (row
);
18147 row
->y
= it
->current_y
;
18148 row
->start
= it
->start
;
18149 row
->continuation_lines_width
= it
->continuation_lines_width
;
18150 row
->displays_text_p
= 1;
18151 row
->starts_in_middle_of_char_p
= it
->starts_in_middle_of_char_p
;
18152 it
->starts_in_middle_of_char_p
= 0;
18154 /* Arrange the overlays nicely for our purposes. Usually, we call
18155 display_line on only one line at a time, in which case this
18156 can't really hurt too much, or we call it on lines which appear
18157 one after another in the buffer, in which case all calls to
18158 recenter_overlay_lists but the first will be pretty cheap. */
18159 recenter_overlay_lists (current_buffer
, IT_CHARPOS (*it
));
18161 /* Move over display elements that are not visible because we are
18162 hscrolled. This may stop at an x-position < IT->first_visible_x
18163 if the first glyph is partially visible or if we hit a line end. */
18164 if (it
->current_x
< it
->first_visible_x
)
18166 this_line_min_pos
= row
->start
.pos
;
18167 move_it_in_display_line_to (it
, ZV
, it
->first_visible_x
,
18168 MOVE_TO_POS
| MOVE_TO_X
);
18169 /* Record the smallest positions seen while we moved over
18170 display elements that are not visible. This is needed by
18171 redisplay_internal for optimizing the case where the cursor
18172 stays inside the same line. The rest of this function only
18173 considers positions that are actually displayed, so
18174 RECORD_MAX_MIN_POS will not otherwise record positions that
18175 are hscrolled to the left of the left edge of the window. */
18176 min_pos
= CHARPOS (this_line_min_pos
);
18177 min_bpos
= BYTEPOS (this_line_min_pos
);
18181 /* We only do this when not calling `move_it_in_display_line_to'
18182 above, because move_it_in_display_line_to calls
18183 handle_line_prefix itself. */
18184 handle_line_prefix (it
);
18187 /* Get the initial row height. This is either the height of the
18188 text hscrolled, if there is any, or zero. */
18189 row
->ascent
= it
->max_ascent
;
18190 row
->height
= it
->max_ascent
+ it
->max_descent
;
18191 row
->phys_ascent
= it
->max_phys_ascent
;
18192 row
->phys_height
= it
->max_phys_ascent
+ it
->max_phys_descent
;
18193 row
->extra_line_spacing
= it
->max_extra_line_spacing
;
18195 /* Utility macro to record max and min buffer positions seen until now. */
18196 #define RECORD_MAX_MIN_POS(IT) \
18199 if (IT_CHARPOS (*(IT)) < min_pos) \
18201 min_pos = IT_CHARPOS (*(IT)); \
18202 min_bpos = IT_BYTEPOS (*(IT)); \
18204 if (IT_CHARPOS (*(IT)) > max_pos) \
18206 max_pos = IT_CHARPOS (*(IT)); \
18207 max_bpos = IT_BYTEPOS (*(IT)); \
18212 /* Loop generating characters. The loop is left with IT on the next
18213 character to display. */
18216 int n_glyphs_before
, hpos_before
, x_before
;
18218 int ascent
= 0, descent
= 0, phys_ascent
= 0, phys_descent
= 0;
18220 /* Retrieve the next thing to display. Value is zero if end of
18222 if (!get_next_display_element (it
))
18224 /* Maybe add a space at the end of this line that is used to
18225 display the cursor there under X. Set the charpos of the
18226 first glyph of blank lines not corresponding to any text
18228 if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it
))
18229 row
->exact_window_width_line_p
= 1;
18230 else if ((append_space_for_newline (it
, 1) && row
->used
[TEXT_AREA
] == 1)
18231 || row
->used
[TEXT_AREA
] == 0)
18233 row
->glyphs
[TEXT_AREA
]->charpos
= -1;
18234 row
->displays_text_p
= 0;
18236 if (!NILP (BVAR (XBUFFER (it
->w
->buffer
), indicate_empty_lines
))
18237 && (!MINI_WINDOW_P (it
->w
)
18238 || (minibuf_level
&& EQ (it
->window
, minibuf_window
))))
18239 row
->indicate_empty_line_p
= 1;
18242 it
->continuation_lines_width
= 0;
18243 row
->ends_at_zv_p
= 1;
18244 /* A row that displays right-to-left text must always have
18245 its last face extended all the way to the end of line,
18246 even if this row ends in ZV, because we still write to
18247 the screen left to right. */
18248 if (row
->reversed_p
)
18249 extend_face_to_end_of_line (it
);
18253 /* Now, get the metrics of what we want to display. This also
18254 generates glyphs in `row' (which is IT->glyph_row). */
18255 n_glyphs_before
= row
->used
[TEXT_AREA
];
18258 /* Remember the line height so far in case the next element doesn't
18259 fit on the line. */
18260 if (it
->line_wrap
!= TRUNCATE
)
18262 ascent
= it
->max_ascent
;
18263 descent
= it
->max_descent
;
18264 phys_ascent
= it
->max_phys_ascent
;
18265 phys_descent
= it
->max_phys_descent
;
18267 if (it
->line_wrap
== WORD_WRAP
&& it
->area
== TEXT_AREA
)
18269 if (IT_DISPLAYING_WHITESPACE (it
))
18273 SAVE_IT (wrap_it
, *it
, wrap_data
);
18275 wrap_row_used
= row
->used
[TEXT_AREA
];
18276 wrap_row_ascent
= row
->ascent
;
18277 wrap_row_height
= row
->height
;
18278 wrap_row_phys_ascent
= row
->phys_ascent
;
18279 wrap_row_phys_height
= row
->phys_height
;
18280 wrap_row_extra_line_spacing
= row
->extra_line_spacing
;
18281 wrap_row_min_pos
= min_pos
;
18282 wrap_row_min_bpos
= min_bpos
;
18283 wrap_row_max_pos
= max_pos
;
18284 wrap_row_max_bpos
= max_bpos
;
18290 PRODUCE_GLYPHS (it
);
18292 /* If this display element was in marginal areas, continue with
18294 if (it
->area
!= TEXT_AREA
)
18296 row
->ascent
= max (row
->ascent
, it
->max_ascent
);
18297 row
->height
= max (row
->height
, it
->max_ascent
+ it
->max_descent
);
18298 row
->phys_ascent
= max (row
->phys_ascent
, it
->max_phys_ascent
);
18299 row
->phys_height
= max (row
->phys_height
,
18300 it
->max_phys_ascent
+ it
->max_phys_descent
);
18301 row
->extra_line_spacing
= max (row
->extra_line_spacing
,
18302 it
->max_extra_line_spacing
);
18303 set_iterator_to_next (it
, 1);
18307 /* Does the display element fit on the line? If we truncate
18308 lines, we should draw past the right edge of the window. If
18309 we don't truncate, we want to stop so that we can display the
18310 continuation glyph before the right margin. If lines are
18311 continued, there are two possible strategies for characters
18312 resulting in more than 1 glyph (e.g. tabs): Display as many
18313 glyphs as possible in this line and leave the rest for the
18314 continuation line, or display the whole element in the next
18315 line. Original redisplay did the former, so we do it also. */
18316 nglyphs
= row
->used
[TEXT_AREA
] - n_glyphs_before
;
18317 hpos_before
= it
->hpos
;
18320 if (/* Not a newline. */
18322 /* Glyphs produced fit entirely in the line. */
18323 && it
->current_x
< it
->last_visible_x
)
18325 it
->hpos
+= nglyphs
;
18326 row
->ascent
= max (row
->ascent
, it
->max_ascent
);
18327 row
->height
= max (row
->height
, it
->max_ascent
+ it
->max_descent
);
18328 row
->phys_ascent
= max (row
->phys_ascent
, it
->max_phys_ascent
);
18329 row
->phys_height
= max (row
->phys_height
,
18330 it
->max_phys_ascent
+ it
->max_phys_descent
);
18331 row
->extra_line_spacing
= max (row
->extra_line_spacing
,
18332 it
->max_extra_line_spacing
);
18333 if (it
->current_x
- it
->pixel_width
< it
->first_visible_x
)
18334 row
->x
= x
- it
->first_visible_x
;
18335 /* Record the maximum and minimum buffer positions seen so
18336 far in glyphs that will be displayed by this row. */
18338 RECORD_MAX_MIN_POS (it
);
18343 struct glyph
*glyph
;
18345 for (i
= 0; i
< nglyphs
; ++i
, x
= new_x
)
18347 glyph
= row
->glyphs
[TEXT_AREA
] + n_glyphs_before
+ i
;
18348 new_x
= x
+ glyph
->pixel_width
;
18350 if (/* Lines are continued. */
18351 it
->line_wrap
!= TRUNCATE
18352 && (/* Glyph doesn't fit on the line. */
18353 new_x
> it
->last_visible_x
18354 /* Or it fits exactly on a window system frame. */
18355 || (new_x
== it
->last_visible_x
18356 && FRAME_WINDOW_P (it
->f
))))
18358 /* End of a continued line. */
18361 || (new_x
== it
->last_visible_x
18362 && FRAME_WINDOW_P (it
->f
)))
18364 /* Current glyph is the only one on the line or
18365 fits exactly on the line. We must continue
18366 the line because we can't draw the cursor
18367 after the glyph. */
18368 row
->continued_p
= 1;
18369 it
->current_x
= new_x
;
18370 it
->continuation_lines_width
+= new_x
;
18372 /* Record the maximum and minimum buffer
18373 positions seen so far in glyphs that will be
18374 displayed by this row. */
18376 RECORD_MAX_MIN_POS (it
);
18377 if (i
== nglyphs
- 1)
18379 /* If line-wrap is on, check if a previous
18380 wrap point was found. */
18381 if (wrap_row_used
> 0
18382 /* Even if there is a previous wrap
18383 point, continue the line here as
18384 usual, if (i) the previous character
18385 was a space or tab AND (ii) the
18386 current character is not. */
18388 || IT_DISPLAYING_WHITESPACE (it
)))
18391 set_iterator_to_next (it
, 1);
18392 if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it
))
18394 if (!get_next_display_element (it
))
18396 row
->exact_window_width_line_p
= 1;
18397 it
->continuation_lines_width
= 0;
18398 row
->continued_p
= 0;
18399 row
->ends_at_zv_p
= 1;
18401 else if (ITERATOR_AT_END_OF_LINE_P (it
))
18403 row
->continued_p
= 0;
18404 row
->exact_window_width_line_p
= 1;
18409 else if (CHAR_GLYPH_PADDING_P (*glyph
)
18410 && !FRAME_WINDOW_P (it
->f
))
18412 /* A padding glyph that doesn't fit on this line.
18413 This means the whole character doesn't fit
18415 if (row
->reversed_p
)
18416 unproduce_glyphs (it
, row
->used
[TEXT_AREA
]
18417 - n_glyphs_before
);
18418 row
->used
[TEXT_AREA
] = n_glyphs_before
;
18420 /* Fill the rest of the row with continuation
18421 glyphs like in 20.x. */
18422 while (row
->glyphs
[TEXT_AREA
] + row
->used
[TEXT_AREA
]
18423 < row
->glyphs
[1 + TEXT_AREA
])
18424 produce_special_glyphs (it
, IT_CONTINUATION
);
18426 row
->continued_p
= 1;
18427 it
->current_x
= x_before
;
18428 it
->continuation_lines_width
+= x_before
;
18430 /* Restore the height to what it was before the
18431 element not fitting on the line. */
18432 it
->max_ascent
= ascent
;
18433 it
->max_descent
= descent
;
18434 it
->max_phys_ascent
= phys_ascent
;
18435 it
->max_phys_descent
= phys_descent
;
18437 else if (wrap_row_used
> 0)
18440 if (row
->reversed_p
)
18441 unproduce_glyphs (it
,
18442 row
->used
[TEXT_AREA
] - wrap_row_used
);
18443 RESTORE_IT (it
, &wrap_it
, wrap_data
);
18444 it
->continuation_lines_width
+= wrap_x
;
18445 row
->used
[TEXT_AREA
] = wrap_row_used
;
18446 row
->ascent
= wrap_row_ascent
;
18447 row
->height
= wrap_row_height
;
18448 row
->phys_ascent
= wrap_row_phys_ascent
;
18449 row
->phys_height
= wrap_row_phys_height
;
18450 row
->extra_line_spacing
= wrap_row_extra_line_spacing
;
18451 min_pos
= wrap_row_min_pos
;
18452 min_bpos
= wrap_row_min_bpos
;
18453 max_pos
= wrap_row_max_pos
;
18454 max_bpos
= wrap_row_max_bpos
;
18455 row
->continued_p
= 1;
18456 row
->ends_at_zv_p
= 0;
18457 row
->exact_window_width_line_p
= 0;
18458 it
->continuation_lines_width
+= x
;
18460 /* Make sure that a non-default face is extended
18461 up to the right margin of the window. */
18462 extend_face_to_end_of_line (it
);
18464 else if (it
->c
== '\t' && FRAME_WINDOW_P (it
->f
))
18466 /* A TAB that extends past the right edge of the
18467 window. This produces a single glyph on
18468 window system frames. We leave the glyph in
18469 this row and let it fill the row, but don't
18470 consume the TAB. */
18471 it
->continuation_lines_width
+= it
->last_visible_x
;
18472 row
->ends_in_middle_of_char_p
= 1;
18473 row
->continued_p
= 1;
18474 glyph
->pixel_width
= it
->last_visible_x
- x
;
18475 it
->starts_in_middle_of_char_p
= 1;
18479 /* Something other than a TAB that draws past
18480 the right edge of the window. Restore
18481 positions to values before the element. */
18482 if (row
->reversed_p
)
18483 unproduce_glyphs (it
, row
->used
[TEXT_AREA
]
18484 - (n_glyphs_before
+ i
));
18485 row
->used
[TEXT_AREA
] = n_glyphs_before
+ i
;
18487 /* Display continuation glyphs. */
18488 if (!FRAME_WINDOW_P (it
->f
))
18489 produce_special_glyphs (it
, IT_CONTINUATION
);
18490 row
->continued_p
= 1;
18492 it
->current_x
= x_before
;
18493 it
->continuation_lines_width
+= x
;
18494 extend_face_to_end_of_line (it
);
18496 if (nglyphs
> 1 && i
> 0)
18498 row
->ends_in_middle_of_char_p
= 1;
18499 it
->starts_in_middle_of_char_p
= 1;
18502 /* Restore the height to what it was before the
18503 element not fitting on the line. */
18504 it
->max_ascent
= ascent
;
18505 it
->max_descent
= descent
;
18506 it
->max_phys_ascent
= phys_ascent
;
18507 it
->max_phys_descent
= phys_descent
;
18512 else if (new_x
> it
->first_visible_x
)
18514 /* Increment number of glyphs actually displayed. */
18517 /* Record the maximum and minimum buffer positions
18518 seen so far in glyphs that will be displayed by
18521 RECORD_MAX_MIN_POS (it
);
18523 if (x
< it
->first_visible_x
)
18524 /* Glyph is partially visible, i.e. row starts at
18525 negative X position. */
18526 row
->x
= x
- it
->first_visible_x
;
18530 /* Glyph is completely off the left margin of the
18531 window. This should not happen because of the
18532 move_it_in_display_line at the start of this
18533 function, unless the text display area of the
18534 window is empty. */
18535 xassert (it
->first_visible_x
<= it
->last_visible_x
);
18539 row
->ascent
= max (row
->ascent
, it
->max_ascent
);
18540 row
->height
= max (row
->height
, it
->max_ascent
+ it
->max_descent
);
18541 row
->phys_ascent
= max (row
->phys_ascent
, it
->max_phys_ascent
);
18542 row
->phys_height
= max (row
->phys_height
,
18543 it
->max_phys_ascent
+ it
->max_phys_descent
);
18544 row
->extra_line_spacing
= max (row
->extra_line_spacing
,
18545 it
->max_extra_line_spacing
);
18547 /* End of this display line if row is continued. */
18548 if (row
->continued_p
|| row
->ends_at_zv_p
)
18553 /* Is this a line end? If yes, we're also done, after making
18554 sure that a non-default face is extended up to the right
18555 margin of the window. */
18556 if (ITERATOR_AT_END_OF_LINE_P (it
))
18558 int used_before
= row
->used
[TEXT_AREA
];
18560 row
->ends_in_newline_from_string_p
= STRINGP (it
->object
);
18562 /* Add a space at the end of the line that is used to
18563 display the cursor there. */
18564 if (!IT_OVERFLOW_NEWLINE_INTO_FRINGE (it
))
18565 append_space_for_newline (it
, 0);
18567 /* Extend the face to the end of the line. */
18568 extend_face_to_end_of_line (it
);
18570 /* Make sure we have the position. */
18571 if (used_before
== 0)
18572 row
->glyphs
[TEXT_AREA
]->charpos
= CHARPOS (it
->position
);
18574 /* Record the position of the newline, for use in
18576 it
->eol_pos
= it
->current
.pos
;
18578 /* Consume the line end. This skips over invisible lines. */
18579 set_iterator_to_next (it
, 1);
18580 it
->continuation_lines_width
= 0;
18584 /* Proceed with next display element. Note that this skips
18585 over lines invisible because of selective display. */
18586 set_iterator_to_next (it
, 1);
18588 /* If we truncate lines, we are done when the last displayed
18589 glyphs reach past the right margin of the window. */
18590 if (it
->line_wrap
== TRUNCATE
18591 && (FRAME_WINDOW_P (it
->f
)
18592 ? (it
->current_x
>= it
->last_visible_x
)
18593 : (it
->current_x
> it
->last_visible_x
)))
18595 /* Maybe add truncation glyphs. */
18596 if (!FRAME_WINDOW_P (it
->f
))
18600 if (!row
->reversed_p
)
18602 for (i
= row
->used
[TEXT_AREA
] - 1; i
> 0; --i
)
18603 if (!CHAR_GLYPH_PADDING_P (row
->glyphs
[TEXT_AREA
][i
]))
18608 for (i
= 0; i
< row
->used
[TEXT_AREA
]; i
++)
18609 if (!CHAR_GLYPH_PADDING_P (row
->glyphs
[TEXT_AREA
][i
]))
18611 /* Remove any padding glyphs at the front of ROW, to
18612 make room for the truncation glyphs we will be
18613 adding below. The loop below always inserts at
18614 least one truncation glyph, so also remove the
18615 last glyph added to ROW. */
18616 unproduce_glyphs (it
, i
+ 1);
18617 /* Adjust i for the loop below. */
18618 i
= row
->used
[TEXT_AREA
] - (i
+ 1);
18621 for (n
= row
->used
[TEXT_AREA
]; i
< n
; ++i
)
18623 row
->used
[TEXT_AREA
] = i
;
18624 produce_special_glyphs (it
, IT_TRUNCATION
);
18627 else if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it
))
18629 /* Don't truncate if we can overflow newline into fringe. */
18630 if (!get_next_display_element (it
))
18632 it
->continuation_lines_width
= 0;
18633 row
->ends_at_zv_p
= 1;
18634 row
->exact_window_width_line_p
= 1;
18637 if (ITERATOR_AT_END_OF_LINE_P (it
))
18639 row
->exact_window_width_line_p
= 1;
18640 goto at_end_of_line
;
18644 row
->truncated_on_right_p
= 1;
18645 it
->continuation_lines_width
= 0;
18646 reseat_at_next_visible_line_start (it
, 0);
18647 row
->ends_at_zv_p
= FETCH_BYTE (IT_BYTEPOS (*it
) - 1) != '\n';
18648 it
->hpos
= hpos_before
;
18649 it
->current_x
= x_before
;
18654 /* If line is not empty and hscrolled, maybe insert truncation glyphs
18655 at the left window margin. */
18656 if (it
->first_visible_x
18657 && IT_CHARPOS (*it
) != CHARPOS (row
->start
.pos
))
18659 if (!FRAME_WINDOW_P (it
->f
))
18660 insert_left_trunc_glyphs (it
);
18661 row
->truncated_on_left_p
= 1;
18664 /* Remember the position at which this line ends.
18666 BIDI Note: any code that needs MATRIX_ROW_START/END_CHARPOS
18667 cannot be before the call to find_row_edges below, since that is
18668 where these positions are determined. */
18669 row
->end
= it
->current
;
18672 row
->minpos
= row
->start
.pos
;
18673 row
->maxpos
= row
->end
.pos
;
18677 /* ROW->minpos and ROW->maxpos must be the smallest and
18678 `1 + the largest' buffer positions in ROW. But if ROW was
18679 bidi-reordered, these two positions can be anywhere in the
18680 row, so we must determine them now. */
18681 find_row_edges (it
, row
, min_pos
, min_bpos
, max_pos
, max_bpos
);
18684 /* If the start of this line is the overlay arrow-position, then
18685 mark this glyph row as the one containing the overlay arrow.
18686 This is clearly a mess with variable size fonts. It would be
18687 better to let it be displayed like cursors under X. */
18688 if ((row
->displays_text_p
|| !overlay_arrow_seen
)
18689 && (overlay_arrow_string
= overlay_arrow_at_row (it
, row
),
18690 !NILP (overlay_arrow_string
)))
18692 /* Overlay arrow in window redisplay is a fringe bitmap. */
18693 if (STRINGP (overlay_arrow_string
))
18695 struct glyph_row
*arrow_row
18696 = get_overlay_arrow_glyph_row (it
->w
, overlay_arrow_string
);
18697 struct glyph
*glyph
= arrow_row
->glyphs
[TEXT_AREA
];
18698 struct glyph
*arrow_end
= glyph
+ arrow_row
->used
[TEXT_AREA
];
18699 struct glyph
*p
= row
->glyphs
[TEXT_AREA
];
18700 struct glyph
*p2
, *end
;
18702 /* Copy the arrow glyphs. */
18703 while (glyph
< arrow_end
)
18706 /* Throw away padding glyphs. */
18708 end
= row
->glyphs
[TEXT_AREA
] + row
->used
[TEXT_AREA
];
18709 while (p2
< end
&& CHAR_GLYPH_PADDING_P (*p2
))
18715 row
->used
[TEXT_AREA
] = p2
- row
->glyphs
[TEXT_AREA
];
18720 xassert (INTEGERP (overlay_arrow_string
));
18721 row
->overlay_arrow_bitmap
= XINT (overlay_arrow_string
);
18723 overlay_arrow_seen
= 1;
18726 /* Compute pixel dimensions of this line. */
18727 compute_line_metrics (it
);
18729 /* Record whether this row ends inside an ellipsis. */
18730 row
->ends_in_ellipsis_p
18731 = (it
->method
== GET_FROM_DISPLAY_VECTOR
18732 && it
->ellipsis_p
);
18734 /* Save fringe bitmaps in this row. */
18735 row
->left_user_fringe_bitmap
= it
->left_user_fringe_bitmap
;
18736 row
->left_user_fringe_face_id
= it
->left_user_fringe_face_id
;
18737 row
->right_user_fringe_bitmap
= it
->right_user_fringe_bitmap
;
18738 row
->right_user_fringe_face_id
= it
->right_user_fringe_face_id
;
18740 it
->left_user_fringe_bitmap
= 0;
18741 it
->left_user_fringe_face_id
= 0;
18742 it
->right_user_fringe_bitmap
= 0;
18743 it
->right_user_fringe_face_id
= 0;
18745 /* Maybe set the cursor. */
18746 cvpos
= it
->w
->cursor
.vpos
;
18748 /* In bidi-reordered rows, keep checking for proper cursor
18749 position even if one has been found already, because buffer
18750 positions in such rows change non-linearly with ROW->VPOS,
18751 when a line is continued. One exception: when we are at ZV,
18752 display cursor on the first suitable glyph row, since all
18753 the empty rows after that also have their position set to ZV. */
18754 /* FIXME: Revisit this when glyph ``spilling'' in continuation
18755 lines' rows is implemented for bidi-reordered rows. */
18757 && !MATRIX_ROW (it
->w
->desired_matrix
, cvpos
)->ends_at_zv_p
))
18758 && PT
>= MATRIX_ROW_START_CHARPOS (row
)
18759 && PT
<= MATRIX_ROW_END_CHARPOS (row
)
18760 && cursor_row_p (row
))
18761 set_cursor_from_row (it
->w
, row
, it
->w
->desired_matrix
, 0, 0, 0, 0);
18763 /* Highlight trailing whitespace. */
18764 if (!NILP (Vshow_trailing_whitespace
))
18765 highlight_trailing_whitespace (it
->f
, it
->glyph_row
);
18767 /* Prepare for the next line. This line starts horizontally at (X
18768 HPOS) = (0 0). Vertical positions are incremented. As a
18769 convenience for the caller, IT->glyph_row is set to the next
18771 it
->current_x
= it
->hpos
= 0;
18772 it
->current_y
+= row
->height
;
18773 SET_TEXT_POS (it
->eol_pos
, 0, 0);
18776 /* The next row should by default use the same value of the
18777 reversed_p flag as this one. set_iterator_to_next decides when
18778 it's a new paragraph, and PRODUCE_GLYPHS recomputes the value of
18779 the flag accordingly. */
18780 if (it
->glyph_row
< MATRIX_BOTTOM_TEXT_ROW (it
->w
->desired_matrix
, it
->w
))
18781 it
->glyph_row
->reversed_p
= row
->reversed_p
;
18782 it
->start
= row
->end
;
18783 return row
->displays_text_p
;
18785 #undef RECORD_MAX_MIN_POS
18788 DEFUN ("current-bidi-paragraph-direction", Fcurrent_bidi_paragraph_direction
,
18789 Scurrent_bidi_paragraph_direction
, 0, 1, 0,
18790 doc
: /* Return paragraph direction at point in BUFFER.
18791 Value is either `left-to-right' or `right-to-left'.
18792 If BUFFER is omitted or nil, it defaults to the current buffer.
18794 Paragraph direction determines how the text in the paragraph is displayed.
18795 In left-to-right paragraphs, text begins at the left margin of the window
18796 and the reading direction is generally left to right. In right-to-left
18797 paragraphs, text begins at the right margin and is read from right to left.
18799 See also `bidi-paragraph-direction'. */)
18800 (Lisp_Object buffer
)
18802 struct buffer
*buf
= current_buffer
;
18803 struct buffer
*old
= buf
;
18805 if (! NILP (buffer
))
18807 CHECK_BUFFER (buffer
);
18808 buf
= XBUFFER (buffer
);
18811 if (NILP (BVAR (buf
, bidi_display_reordering
)))
18812 return Qleft_to_right
;
18813 else if (!NILP (BVAR (buf
, bidi_paragraph_direction
)))
18814 return BVAR (buf
, bidi_paragraph_direction
);
18817 /* Determine the direction from buffer text. We could try to
18818 use current_matrix if it is up to date, but this seems fast
18819 enough as it is. */
18820 struct bidi_it itb
;
18821 EMACS_INT pos
= BUF_PT (buf
);
18822 EMACS_INT bytepos
= BUF_PT_BYTE (buf
);
18825 set_buffer_temp (buf
);
18826 /* bidi_paragraph_init finds the base direction of the paragraph
18827 by searching forward from paragraph start. We need the base
18828 direction of the current or _previous_ paragraph, so we need
18829 to make sure we are within that paragraph. To that end, find
18830 the previous non-empty line. */
18831 if (pos
>= ZV
&& pos
> BEGV
)
18834 bytepos
= CHAR_TO_BYTE (pos
);
18836 while ((c
= FETCH_BYTE (bytepos
)) == '\n'
18837 || c
== ' ' || c
== '\t' || c
== '\f')
18839 if (bytepos
<= BEGV_BYTE
)
18844 while (!CHAR_HEAD_P (FETCH_BYTE (bytepos
)))
18847 itb
.bytepos
= bytepos
;
18849 itb
.string
.s
= NULL
;
18850 itb
.string
.lstring
= Qnil
;
18851 itb
.frame_window_p
= FRAME_WINDOW_P (SELECTED_FRAME ()); /* guesswork */
18853 itb
.separator_limit
= -1;
18854 itb
.paragraph_dir
= NEUTRAL_DIR
;
18856 bidi_paragraph_init (NEUTRAL_DIR
, &itb
, 1);
18857 set_buffer_temp (old
);
18858 switch (itb
.paragraph_dir
)
18861 return Qleft_to_right
;
18864 return Qright_to_left
;
18874 /***********************************************************************
18876 ***********************************************************************/
18878 /* Redisplay the menu bar in the frame for window W.
18880 The menu bar of X frames that don't have X toolkit support is
18881 displayed in a special window W->frame->menu_bar_window.
18883 The menu bar of terminal frames is treated specially as far as
18884 glyph matrices are concerned. Menu bar lines are not part of
18885 windows, so the update is done directly on the frame matrix rows
18886 for the menu bar. */
18889 display_menu_bar (struct window
*w
)
18891 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
18896 /* Don't do all this for graphical frames. */
18898 if (FRAME_W32_P (f
))
18901 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
18907 if (FRAME_NS_P (f
))
18909 #endif /* HAVE_NS */
18911 #ifdef USE_X_TOOLKIT
18912 xassert (!FRAME_WINDOW_P (f
));
18913 init_iterator (&it
, w
, -1, -1, f
->desired_matrix
->rows
, MENU_FACE_ID
);
18914 it
.first_visible_x
= 0;
18915 it
.last_visible_x
= FRAME_TOTAL_COLS (f
) * FRAME_COLUMN_WIDTH (f
);
18916 #else /* not USE_X_TOOLKIT */
18917 if (FRAME_WINDOW_P (f
))
18919 /* Menu bar lines are displayed in the desired matrix of the
18920 dummy window menu_bar_window. */
18921 struct window
*menu_w
;
18922 xassert (WINDOWP (f
->menu_bar_window
));
18923 menu_w
= XWINDOW (f
->menu_bar_window
);
18924 init_iterator (&it
, menu_w
, -1, -1, menu_w
->desired_matrix
->rows
,
18926 it
.first_visible_x
= 0;
18927 it
.last_visible_x
= FRAME_TOTAL_COLS (f
) * FRAME_COLUMN_WIDTH (f
);
18931 /* This is a TTY frame, i.e. character hpos/vpos are used as
18933 init_iterator (&it
, w
, -1, -1, f
->desired_matrix
->rows
,
18935 it
.first_visible_x
= 0;
18936 it
.last_visible_x
= FRAME_COLS (f
);
18938 #endif /* not USE_X_TOOLKIT */
18940 /* FIXME: This should be controlled by a user option. See the
18941 comments in redisplay_tool_bar and display_mode_line about
18943 it
.paragraph_embedding
= L2R
;
18945 if (! mode_line_inverse_video
)
18946 /* Force the menu-bar to be displayed in the default face. */
18947 it
.base_face_id
= it
.face_id
= DEFAULT_FACE_ID
;
18949 /* Clear all rows of the menu bar. */
18950 for (i
= 0; i
< FRAME_MENU_BAR_LINES (f
); ++i
)
18952 struct glyph_row
*row
= it
.glyph_row
+ i
;
18953 clear_glyph_row (row
);
18954 row
->enabled_p
= 1;
18955 row
->full_width_p
= 1;
18958 /* Display all items of the menu bar. */
18959 items
= FRAME_MENU_BAR_ITEMS (it
.f
);
18960 for (i
= 0; i
< ASIZE (items
); i
+= 4)
18962 Lisp_Object string
;
18964 /* Stop at nil string. */
18965 string
= AREF (items
, i
+ 1);
18969 /* Remember where item was displayed. */
18970 ASET (items
, i
+ 3, make_number (it
.hpos
));
18972 /* Display the item, pad with one space. */
18973 if (it
.current_x
< it
.last_visible_x
)
18974 display_string (NULL
, string
, Qnil
, 0, 0, &it
,
18975 SCHARS (string
) + 1, 0, 0, -1);
18978 /* Fill out the line with spaces. */
18979 if (it
.current_x
< it
.last_visible_x
)
18980 display_string ("", Qnil
, Qnil
, 0, 0, &it
, -1, 0, 0, -1);
18982 /* Compute the total height of the lines. */
18983 compute_line_metrics (&it
);
18988 /***********************************************************************
18990 ***********************************************************************/
18992 /* Redisplay mode lines in the window tree whose root is WINDOW. If
18993 FORCE is non-zero, redisplay mode lines unconditionally.
18994 Otherwise, redisplay only mode lines that are garbaged. Value is
18995 the number of windows whose mode lines were redisplayed. */
18998 redisplay_mode_lines (Lisp_Object window
, int force
)
19002 while (!NILP (window
))
19004 struct window
*w
= XWINDOW (window
);
19006 if (WINDOWP (w
->hchild
))
19007 nwindows
+= redisplay_mode_lines (w
->hchild
, force
);
19008 else if (WINDOWP (w
->vchild
))
19009 nwindows
+= redisplay_mode_lines (w
->vchild
, force
);
19011 || FRAME_GARBAGED_P (XFRAME (w
->frame
))
19012 || !MATRIX_MODE_LINE_ROW (w
->current_matrix
)->enabled_p
)
19014 struct text_pos lpoint
;
19015 struct buffer
*old
= current_buffer
;
19017 /* Set the window's buffer for the mode line display. */
19018 SET_TEXT_POS (lpoint
, PT
, PT_BYTE
);
19019 set_buffer_internal_1 (XBUFFER (w
->buffer
));
19021 /* Point refers normally to the selected window. For any
19022 other window, set up appropriate value. */
19023 if (!EQ (window
, selected_window
))
19025 struct text_pos pt
;
19027 SET_TEXT_POS_FROM_MARKER (pt
, w
->pointm
);
19028 if (CHARPOS (pt
) < BEGV
)
19029 TEMP_SET_PT_BOTH (BEGV
, BEGV_BYTE
);
19030 else if (CHARPOS (pt
) > (ZV
- 1))
19031 TEMP_SET_PT_BOTH (ZV
, ZV_BYTE
);
19033 TEMP_SET_PT_BOTH (CHARPOS (pt
), BYTEPOS (pt
));
19036 /* Display mode lines. */
19037 clear_glyph_matrix (w
->desired_matrix
);
19038 if (display_mode_lines (w
))
19041 w
->must_be_updated_p
= 1;
19044 /* Restore old settings. */
19045 set_buffer_internal_1 (old
);
19046 TEMP_SET_PT_BOTH (CHARPOS (lpoint
), BYTEPOS (lpoint
));
19056 /* Display the mode and/or header line of window W. Value is the
19057 sum number of mode lines and header lines displayed. */
19060 display_mode_lines (struct window
*w
)
19062 Lisp_Object old_selected_window
, old_selected_frame
;
19065 old_selected_frame
= selected_frame
;
19066 selected_frame
= w
->frame
;
19067 old_selected_window
= selected_window
;
19068 XSETWINDOW (selected_window
, w
);
19070 /* These will be set while the mode line specs are processed. */
19071 line_number_displayed
= 0;
19072 w
->column_number_displayed
= Qnil
;
19074 if (WINDOW_WANTS_MODELINE_P (w
))
19076 struct window
*sel_w
= XWINDOW (old_selected_window
);
19078 /* Select mode line face based on the real selected window. */
19079 display_mode_line (w
, CURRENT_MODE_LINE_FACE_ID_3 (sel_w
, sel_w
, w
),
19080 BVAR (current_buffer
, mode_line_format
));
19084 if (WINDOW_WANTS_HEADER_LINE_P (w
))
19086 display_mode_line (w
, HEADER_LINE_FACE_ID
,
19087 BVAR (current_buffer
, header_line_format
));
19091 selected_frame
= old_selected_frame
;
19092 selected_window
= old_selected_window
;
19097 /* Display mode or header line of window W. FACE_ID specifies which
19098 line to display; it is either MODE_LINE_FACE_ID or
19099 HEADER_LINE_FACE_ID. FORMAT is the mode/header line format to
19100 display. Value is the pixel height of the mode/header line
19104 display_mode_line (struct window
*w
, enum face_id face_id
, Lisp_Object format
)
19108 int count
= SPECPDL_INDEX ();
19110 init_iterator (&it
, w
, -1, -1, NULL
, face_id
);
19111 /* Don't extend on a previously drawn mode-line.
19112 This may happen if called from pos_visible_p. */
19113 it
.glyph_row
->enabled_p
= 0;
19114 prepare_desired_row (it
.glyph_row
);
19116 it
.glyph_row
->mode_line_p
= 1;
19118 if (! mode_line_inverse_video
)
19119 /* Force the mode-line to be displayed in the default face. */
19120 it
.base_face_id
= it
.face_id
= DEFAULT_FACE_ID
;
19122 /* FIXME: This should be controlled by a user option. But
19123 supporting such an option is not trivial, since the mode line is
19124 made up of many separate strings. */
19125 it
.paragraph_embedding
= L2R
;
19127 record_unwind_protect (unwind_format_mode_line
,
19128 format_mode_line_unwind_data (NULL
, Qnil
, 0));
19130 mode_line_target
= MODE_LINE_DISPLAY
;
19132 /* Temporarily make frame's keyboard the current kboard so that
19133 kboard-local variables in the mode_line_format will get the right
19135 push_kboard (FRAME_KBOARD (it
.f
));
19136 record_unwind_save_match_data ();
19137 display_mode_element (&it
, 0, 0, 0, format
, Qnil
, 0);
19140 unbind_to (count
, Qnil
);
19142 /* Fill up with spaces. */
19143 display_string (" ", Qnil
, Qnil
, 0, 0, &it
, 10000, -1, -1, 0);
19145 compute_line_metrics (&it
);
19146 it
.glyph_row
->full_width_p
= 1;
19147 it
.glyph_row
->continued_p
= 0;
19148 it
.glyph_row
->truncated_on_left_p
= 0;
19149 it
.glyph_row
->truncated_on_right_p
= 0;
19151 /* Make a 3D mode-line have a shadow at its right end. */
19152 face
= FACE_FROM_ID (it
.f
, face_id
);
19153 extend_face_to_end_of_line (&it
);
19154 if (face
->box
!= FACE_NO_BOX
)
19156 struct glyph
*last
= (it
.glyph_row
->glyphs
[TEXT_AREA
]
19157 + it
.glyph_row
->used
[TEXT_AREA
] - 1);
19158 last
->right_box_line_p
= 1;
19161 return it
.glyph_row
->height
;
19164 /* Move element ELT in LIST to the front of LIST.
19165 Return the updated list. */
19168 move_elt_to_front (Lisp_Object elt
, Lisp_Object list
)
19170 register Lisp_Object tail
, prev
;
19171 register Lisp_Object tem
;
19175 while (CONSP (tail
))
19181 /* Splice out the link TAIL. */
19183 list
= XCDR (tail
);
19185 Fsetcdr (prev
, XCDR (tail
));
19187 /* Now make it the first. */
19188 Fsetcdr (tail
, list
);
19193 tail
= XCDR (tail
);
19197 /* Not found--return unchanged LIST. */
19201 /* Contribute ELT to the mode line for window IT->w. How it
19202 translates into text depends on its data type.
19204 IT describes the display environment in which we display, as usual.
19206 DEPTH is the depth in recursion. It is used to prevent
19207 infinite recursion here.
19209 FIELD_WIDTH is the number of characters the display of ELT should
19210 occupy in the mode line, and PRECISION is the maximum number of
19211 characters to display from ELT's representation. See
19212 display_string for details.
19214 Returns the hpos of the end of the text generated by ELT.
19216 PROPS is a property list to add to any string we encounter.
19218 If RISKY is nonzero, remove (disregard) any properties in any string
19219 we encounter, and ignore :eval and :propertize.
19221 The global variable `mode_line_target' determines whether the
19222 output is passed to `store_mode_line_noprop',
19223 `store_mode_line_string', or `display_string'. */
19226 display_mode_element (struct it
*it
, int depth
, int field_width
, int precision
,
19227 Lisp_Object elt
, Lisp_Object props
, int risky
)
19229 int n
= 0, field
, prec
;
19234 elt
= build_string ("*too-deep*");
19238 switch (SWITCH_ENUM_CAST (XTYPE (elt
)))
19242 /* A string: output it and check for %-constructs within it. */
19244 EMACS_INT offset
= 0;
19246 if (SCHARS (elt
) > 0
19247 && (!NILP (props
) || risky
))
19249 Lisp_Object oprops
, aelt
;
19250 oprops
= Ftext_properties_at (make_number (0), elt
);
19252 /* If the starting string's properties are not what
19253 we want, translate the string. Also, if the string
19254 is risky, do that anyway. */
19256 if (NILP (Fequal (props
, oprops
)) || risky
)
19258 /* If the starting string has properties,
19259 merge the specified ones onto the existing ones. */
19260 if (! NILP (oprops
) && !risky
)
19264 oprops
= Fcopy_sequence (oprops
);
19266 while (CONSP (tem
))
19268 oprops
= Fplist_put (oprops
, XCAR (tem
),
19269 XCAR (XCDR (tem
)));
19270 tem
= XCDR (XCDR (tem
));
19275 aelt
= Fassoc (elt
, mode_line_proptrans_alist
);
19276 if (! NILP (aelt
) && !NILP (Fequal (props
, XCDR (aelt
))))
19278 /* AELT is what we want. Move it to the front
19279 without consing. */
19281 mode_line_proptrans_alist
19282 = move_elt_to_front (aelt
, mode_line_proptrans_alist
);
19288 /* If AELT has the wrong props, it is useless.
19289 so get rid of it. */
19291 mode_line_proptrans_alist
19292 = Fdelq (aelt
, mode_line_proptrans_alist
);
19294 elt
= Fcopy_sequence (elt
);
19295 Fset_text_properties (make_number (0), Flength (elt
),
19297 /* Add this item to mode_line_proptrans_alist. */
19298 mode_line_proptrans_alist
19299 = Fcons (Fcons (elt
, props
),
19300 mode_line_proptrans_alist
);
19301 /* Truncate mode_line_proptrans_alist
19302 to at most 50 elements. */
19303 tem
= Fnthcdr (make_number (50),
19304 mode_line_proptrans_alist
);
19306 XSETCDR (tem
, Qnil
);
19315 prec
= precision
- n
;
19316 switch (mode_line_target
)
19318 case MODE_LINE_NOPROP
:
19319 case MODE_LINE_TITLE
:
19320 n
+= store_mode_line_noprop (SSDATA (elt
), -1, prec
);
19322 case MODE_LINE_STRING
:
19323 n
+= store_mode_line_string (NULL
, elt
, 1, 0, prec
, Qnil
);
19325 case MODE_LINE_DISPLAY
:
19326 n
+= display_string (NULL
, elt
, Qnil
, 0, 0, it
,
19327 0, prec
, 0, STRING_MULTIBYTE (elt
));
19334 /* Handle the non-literal case. */
19336 while ((precision
<= 0 || n
< precision
)
19337 && SREF (elt
, offset
) != 0
19338 && (mode_line_target
!= MODE_LINE_DISPLAY
19339 || it
->current_x
< it
->last_visible_x
))
19341 EMACS_INT last_offset
= offset
;
19343 /* Advance to end of string or next format specifier. */
19344 while ((c
= SREF (elt
, offset
++)) != '\0' && c
!= '%')
19347 if (offset
- 1 != last_offset
)
19349 EMACS_INT nchars
, nbytes
;
19351 /* Output to end of string or up to '%'. Field width
19352 is length of string. Don't output more than
19353 PRECISION allows us. */
19356 prec
= c_string_width (SDATA (elt
) + last_offset
,
19357 offset
- last_offset
, precision
- n
,
19360 switch (mode_line_target
)
19362 case MODE_LINE_NOPROP
:
19363 case MODE_LINE_TITLE
:
19364 n
+= store_mode_line_noprop (SSDATA (elt
) + last_offset
, 0, prec
);
19366 case MODE_LINE_STRING
:
19368 EMACS_INT bytepos
= last_offset
;
19369 EMACS_INT charpos
= string_byte_to_char (elt
, bytepos
);
19370 EMACS_INT endpos
= (precision
<= 0
19371 ? string_byte_to_char (elt
, offset
)
19372 : charpos
+ nchars
);
19374 n
+= store_mode_line_string (NULL
,
19375 Fsubstring (elt
, make_number (charpos
),
19376 make_number (endpos
)),
19380 case MODE_LINE_DISPLAY
:
19382 EMACS_INT bytepos
= last_offset
;
19383 EMACS_INT charpos
= string_byte_to_char (elt
, bytepos
);
19385 if (precision
<= 0)
19386 nchars
= string_byte_to_char (elt
, offset
) - charpos
;
19387 n
+= display_string (NULL
, elt
, Qnil
, 0, charpos
,
19389 STRING_MULTIBYTE (elt
));
19394 else /* c == '%' */
19396 EMACS_INT percent_position
= offset
;
19398 /* Get the specified minimum width. Zero means
19401 while ((c
= SREF (elt
, offset
++)) >= '0' && c
<= '9')
19402 field
= field
* 10 + c
- '0';
19404 /* Don't pad beyond the total padding allowed. */
19405 if (field_width
- n
> 0 && field
> field_width
- n
)
19406 field
= field_width
- n
;
19408 /* Note that either PRECISION <= 0 or N < PRECISION. */
19409 prec
= precision
- n
;
19412 n
+= display_mode_element (it
, depth
, field
, prec
,
19413 Vglobal_mode_string
, props
,
19418 EMACS_INT bytepos
, charpos
;
19420 Lisp_Object string
;
19422 bytepos
= percent_position
;
19423 charpos
= (STRING_MULTIBYTE (elt
)
19424 ? string_byte_to_char (elt
, bytepos
)
19426 spec
= decode_mode_spec (it
->w
, c
, field
, &string
);
19427 multibyte
= STRINGP (string
) && STRING_MULTIBYTE (string
);
19429 switch (mode_line_target
)
19431 case MODE_LINE_NOPROP
:
19432 case MODE_LINE_TITLE
:
19433 n
+= store_mode_line_noprop (spec
, field
, prec
);
19435 case MODE_LINE_STRING
:
19437 int len
= strlen (spec
);
19438 Lisp_Object tem
= make_string (spec
, len
);
19439 props
= Ftext_properties_at (make_number (charpos
), elt
);
19440 /* Should only keep face property in props */
19441 n
+= store_mode_line_string (NULL
, tem
, 0, field
, prec
, props
);
19444 case MODE_LINE_DISPLAY
:
19446 int nglyphs_before
, nwritten
;
19448 nglyphs_before
= it
->glyph_row
->used
[TEXT_AREA
];
19449 nwritten
= display_string (spec
, string
, elt
,
19454 /* Assign to the glyphs written above the
19455 string where the `%x' came from, position
19459 struct glyph
*glyph
19460 = (it
->glyph_row
->glyphs
[TEXT_AREA
]
19464 for (i
= 0; i
< nwritten
; ++i
)
19466 glyph
[i
].object
= elt
;
19467 glyph
[i
].charpos
= charpos
;
19484 /* A symbol: process the value of the symbol recursively
19485 as if it appeared here directly. Avoid error if symbol void.
19486 Special case: if value of symbol is a string, output the string
19489 register Lisp_Object tem
;
19491 /* If the variable is not marked as risky to set
19492 then its contents are risky to use. */
19493 if (NILP (Fget (elt
, Qrisky_local_variable
)))
19496 tem
= Fboundp (elt
);
19499 tem
= Fsymbol_value (elt
);
19500 /* If value is a string, output that string literally:
19501 don't check for % within it. */
19505 if (!EQ (tem
, elt
))
19507 /* Give up right away for nil or t. */
19517 register Lisp_Object car
, tem
;
19519 /* A cons cell: five distinct cases.
19520 If first element is :eval or :propertize, do something special.
19521 If first element is a string or a cons, process all the elements
19522 and effectively concatenate them.
19523 If first element is a negative number, truncate displaying cdr to
19524 at most that many characters. If positive, pad (with spaces)
19525 to at least that many characters.
19526 If first element is a symbol, process the cadr or caddr recursively
19527 according to whether the symbol's value is non-nil or nil. */
19529 if (EQ (car
, QCeval
))
19531 /* An element of the form (:eval FORM) means evaluate FORM
19532 and use the result as mode line elements. */
19537 if (CONSP (XCDR (elt
)))
19540 spec
= safe_eval (XCAR (XCDR (elt
)));
19541 n
+= display_mode_element (it
, depth
, field_width
- n
,
19542 precision
- n
, spec
, props
,
19546 else if (EQ (car
, QCpropertize
))
19548 /* An element of the form (:propertize ELT PROPS...)
19549 means display ELT but applying properties PROPS. */
19554 if (CONSP (XCDR (elt
)))
19555 n
+= display_mode_element (it
, depth
, field_width
- n
,
19556 precision
- n
, XCAR (XCDR (elt
)),
19557 XCDR (XCDR (elt
)), risky
);
19559 else if (SYMBOLP (car
))
19561 tem
= Fboundp (car
);
19565 /* elt is now the cdr, and we know it is a cons cell.
19566 Use its car if CAR has a non-nil value. */
19569 tem
= Fsymbol_value (car
);
19576 /* Symbol's value is nil (or symbol is unbound)
19577 Get the cddr of the original list
19578 and if possible find the caddr and use that. */
19582 else if (!CONSP (elt
))
19587 else if (INTEGERP (car
))
19589 register int lim
= XINT (car
);
19593 /* Negative int means reduce maximum width. */
19594 if (precision
<= 0)
19597 precision
= min (precision
, -lim
);
19601 /* Padding specified. Don't let it be more than
19602 current maximum. */
19604 lim
= min (precision
, lim
);
19606 /* If that's more padding than already wanted, queue it.
19607 But don't reduce padding already specified even if
19608 that is beyond the current truncation point. */
19609 field_width
= max (lim
, field_width
);
19613 else if (STRINGP (car
) || CONSP (car
))
19615 Lisp_Object halftail
= elt
;
19619 && (precision
<= 0 || n
< precision
))
19621 n
+= display_mode_element (it
, depth
,
19622 /* Do padding only after the last
19623 element in the list. */
19624 (! CONSP (XCDR (elt
))
19627 precision
- n
, XCAR (elt
),
19631 if ((len
& 1) == 0)
19632 halftail
= XCDR (halftail
);
19633 /* Check for cycle. */
19634 if (EQ (halftail
, elt
))
19643 elt
= build_string ("*invalid*");
19647 /* Pad to FIELD_WIDTH. */
19648 if (field_width
> 0 && n
< field_width
)
19650 switch (mode_line_target
)
19652 case MODE_LINE_NOPROP
:
19653 case MODE_LINE_TITLE
:
19654 n
+= store_mode_line_noprop ("", field_width
- n
, 0);
19656 case MODE_LINE_STRING
:
19657 n
+= store_mode_line_string ("", Qnil
, 0, field_width
- n
, 0, Qnil
);
19659 case MODE_LINE_DISPLAY
:
19660 n
+= display_string ("", Qnil
, Qnil
, 0, 0, it
, field_width
- n
,
19669 /* Store a mode-line string element in mode_line_string_list.
19671 If STRING is non-null, display that C string. Otherwise, the Lisp
19672 string LISP_STRING is displayed.
19674 FIELD_WIDTH is the minimum number of output glyphs to produce.
19675 If STRING has fewer characters than FIELD_WIDTH, pad to the right
19676 with spaces. FIELD_WIDTH <= 0 means don't pad.
19678 PRECISION is the maximum number of characters to output from
19679 STRING. PRECISION <= 0 means don't truncate the string.
19681 If COPY_STRING is non-zero, make a copy of LISP_STRING before adding
19682 properties to the string.
19684 PROPS are the properties to add to the string.
19685 The mode_line_string_face face property is always added to the string.
19689 store_mode_line_string (const char *string
, Lisp_Object lisp_string
, int copy_string
,
19690 int field_width
, int precision
, Lisp_Object props
)
19695 if (string
!= NULL
)
19697 len
= strlen (string
);
19698 if (precision
> 0 && len
> precision
)
19700 lisp_string
= make_string (string
, len
);
19702 props
= mode_line_string_face_prop
;
19703 else if (!NILP (mode_line_string_face
))
19705 Lisp_Object face
= Fplist_get (props
, Qface
);
19706 props
= Fcopy_sequence (props
);
19708 face
= mode_line_string_face
;
19710 face
= Fcons (face
, Fcons (mode_line_string_face
, Qnil
));
19711 props
= Fplist_put (props
, Qface
, face
);
19713 Fadd_text_properties (make_number (0), make_number (len
),
19714 props
, lisp_string
);
19718 len
= XFASTINT (Flength (lisp_string
));
19719 if (precision
> 0 && len
> precision
)
19722 lisp_string
= Fsubstring (lisp_string
, make_number (0), make_number (len
));
19725 if (!NILP (mode_line_string_face
))
19729 props
= Ftext_properties_at (make_number (0), lisp_string
);
19730 face
= Fplist_get (props
, Qface
);
19732 face
= mode_line_string_face
;
19734 face
= Fcons (face
, Fcons (mode_line_string_face
, Qnil
));
19735 props
= Fcons (Qface
, Fcons (face
, Qnil
));
19737 lisp_string
= Fcopy_sequence (lisp_string
);
19740 Fadd_text_properties (make_number (0), make_number (len
),
19741 props
, lisp_string
);
19746 mode_line_string_list
= Fcons (lisp_string
, mode_line_string_list
);
19750 if (field_width
> len
)
19752 field_width
-= len
;
19753 lisp_string
= Fmake_string (make_number (field_width
), make_number (' '));
19755 Fadd_text_properties (make_number (0), make_number (field_width
),
19756 props
, lisp_string
);
19757 mode_line_string_list
= Fcons (lisp_string
, mode_line_string_list
);
19765 DEFUN ("format-mode-line", Fformat_mode_line
, Sformat_mode_line
,
19767 doc
: /* Format a string out of a mode line format specification.
19768 First arg FORMAT specifies the mode line format (see `mode-line-format'
19769 for details) to use.
19771 By default, the format is evaluated for the currently selected window.
19773 Optional second arg FACE specifies the face property to put on all
19774 characters for which no face is specified. The value nil means the
19775 default face. The value t means whatever face the window's mode line
19776 currently uses (either `mode-line' or `mode-line-inactive',
19777 depending on whether the window is the selected window or not).
19778 An integer value means the value string has no text
19781 Optional third and fourth args WINDOW and BUFFER specify the window
19782 and buffer to use as the context for the formatting (defaults
19783 are the selected window and the WINDOW's buffer). */)
19784 (Lisp_Object format
, Lisp_Object face
,
19785 Lisp_Object window
, Lisp_Object buffer
)
19790 struct buffer
*old_buffer
= NULL
;
19792 int no_props
= INTEGERP (face
);
19793 int count
= SPECPDL_INDEX ();
19795 int string_start
= 0;
19798 window
= selected_window
;
19799 CHECK_WINDOW (window
);
19800 w
= XWINDOW (window
);
19803 buffer
= w
->buffer
;
19804 CHECK_BUFFER (buffer
);
19806 /* Make formatting the modeline a non-op when noninteractive, otherwise
19807 there will be problems later caused by a partially initialized frame. */
19808 if (NILP (format
) || noninteractive
)
19809 return empty_unibyte_string
;
19814 face_id
= (NILP (face
) || EQ (face
, Qdefault
)) ? DEFAULT_FACE_ID
19815 : EQ (face
, Qt
) ? (EQ (window
, selected_window
)
19816 ? MODE_LINE_FACE_ID
: MODE_LINE_INACTIVE_FACE_ID
)
19817 : EQ (face
, Qmode_line
) ? MODE_LINE_FACE_ID
19818 : EQ (face
, Qmode_line_inactive
) ? MODE_LINE_INACTIVE_FACE_ID
19819 : EQ (face
, Qheader_line
) ? HEADER_LINE_FACE_ID
19820 : EQ (face
, Qtool_bar
) ? TOOL_BAR_FACE_ID
19823 if (XBUFFER (buffer
) != current_buffer
)
19824 old_buffer
= current_buffer
;
19826 /* Save things including mode_line_proptrans_alist,
19827 and set that to nil so that we don't alter the outer value. */
19828 record_unwind_protect (unwind_format_mode_line
,
19829 format_mode_line_unwind_data
19830 (old_buffer
, selected_window
, 1));
19831 mode_line_proptrans_alist
= Qnil
;
19833 Fselect_window (window
, Qt
);
19835 set_buffer_internal_1 (XBUFFER (buffer
));
19837 init_iterator (&it
, w
, -1, -1, NULL
, face_id
);
19841 mode_line_target
= MODE_LINE_NOPROP
;
19842 mode_line_string_face_prop
= Qnil
;
19843 mode_line_string_list
= Qnil
;
19844 string_start
= MODE_LINE_NOPROP_LEN (0);
19848 mode_line_target
= MODE_LINE_STRING
;
19849 mode_line_string_list
= Qnil
;
19850 mode_line_string_face
= face
;
19851 mode_line_string_face_prop
19852 = (NILP (face
) ? Qnil
: Fcons (Qface
, Fcons (face
, Qnil
)));
19855 push_kboard (FRAME_KBOARD (it
.f
));
19856 display_mode_element (&it
, 0, 0, 0, format
, Qnil
, 0);
19861 len
= MODE_LINE_NOPROP_LEN (string_start
);
19862 str
= make_string (mode_line_noprop_buf
+ string_start
, len
);
19866 mode_line_string_list
= Fnreverse (mode_line_string_list
);
19867 str
= Fmapconcat (intern ("identity"), mode_line_string_list
,
19868 empty_unibyte_string
);
19871 unbind_to (count
, Qnil
);
19875 /* Write a null-terminated, right justified decimal representation of
19876 the positive integer D to BUF using a minimal field width WIDTH. */
19879 pint2str (register char *buf
, register int width
, register EMACS_INT d
)
19881 register char *p
= buf
;
19889 *p
++ = d
% 10 + '0';
19894 for (width
-= (int) (p
- buf
); width
> 0; --width
)
19905 /* Write a null-terminated, right justified decimal and "human
19906 readable" representation of the nonnegative integer D to BUF using
19907 a minimal field width WIDTH. D should be smaller than 999.5e24. */
19909 static const char power_letter
[] =
19923 pint2hrstr (char *buf
, int width
, EMACS_INT d
)
19925 /* We aim to represent the nonnegative integer D as
19926 QUOTIENT.TENTHS * 10 ^ (3 * EXPONENT). */
19927 EMACS_INT quotient
= d
;
19929 /* -1 means: do not use TENTHS. */
19933 /* Length of QUOTIENT.TENTHS as a string. */
19939 if (1000 <= quotient
)
19941 /* Scale to the appropriate EXPONENT. */
19944 remainder
= quotient
% 1000;
19948 while (1000 <= quotient
);
19950 /* Round to nearest and decide whether to use TENTHS or not. */
19953 tenths
= remainder
/ 100;
19954 if (50 <= remainder
% 100)
19961 if (quotient
== 10)
19969 if (500 <= remainder
)
19971 if (quotient
< 999)
19982 /* Calculate the LENGTH of QUOTIENT.TENTHS as a string. */
19983 if (tenths
== -1 && quotient
<= 99)
19990 p
= psuffix
= buf
+ max (width
, length
);
19992 /* Print EXPONENT. */
19993 *psuffix
++ = power_letter
[exponent
];
19996 /* Print TENTHS. */
19999 *--p
= '0' + tenths
;
20003 /* Print QUOTIENT. */
20006 int digit
= quotient
% 10;
20007 *--p
= '0' + digit
;
20009 while ((quotient
/= 10) != 0);
20011 /* Print leading spaces. */
20016 /* Set a mnemonic character for coding_system (Lisp symbol) in BUF.
20017 If EOL_FLAG is 1, set also a mnemonic character for end-of-line
20018 type of CODING_SYSTEM. Return updated pointer into BUF. */
20020 static unsigned char invalid_eol_type
[] = "(*invalid*)";
20023 decode_mode_spec_coding (Lisp_Object coding_system
, register char *buf
, int eol_flag
)
20026 int multibyte
= !NILP (BVAR (current_buffer
, enable_multibyte_characters
));
20027 const unsigned char *eol_str
;
20029 /* The EOL conversion we are using. */
20030 Lisp_Object eoltype
;
20032 val
= CODING_SYSTEM_SPEC (coding_system
);
20035 if (!VECTORP (val
)) /* Not yet decided. */
20040 eoltype
= eol_mnemonic_undecided
;
20041 /* Don't mention EOL conversion if it isn't decided. */
20046 Lisp_Object eolvalue
;
20048 attrs
= AREF (val
, 0);
20049 eolvalue
= AREF (val
, 2);
20052 *buf
++ = XFASTINT (CODING_ATTR_MNEMONIC (attrs
));
20056 /* The EOL conversion that is normal on this system. */
20058 if (NILP (eolvalue
)) /* Not yet decided. */
20059 eoltype
= eol_mnemonic_undecided
;
20060 else if (VECTORP (eolvalue
)) /* Not yet decided. */
20061 eoltype
= eol_mnemonic_undecided
;
20062 else /* eolvalue is Qunix, Qdos, or Qmac. */
20063 eoltype
= (EQ (eolvalue
, Qunix
)
20064 ? eol_mnemonic_unix
20065 : (EQ (eolvalue
, Qdos
) == 1
20066 ? eol_mnemonic_dos
: eol_mnemonic_mac
));
20072 /* Mention the EOL conversion if it is not the usual one. */
20073 if (STRINGP (eoltype
))
20075 eol_str
= SDATA (eoltype
);
20076 eol_str_len
= SBYTES (eoltype
);
20078 else if (CHARACTERP (eoltype
))
20080 unsigned char *tmp
= (unsigned char *) alloca (MAX_MULTIBYTE_LENGTH
);
20081 eol_str_len
= CHAR_STRING (XINT (eoltype
), tmp
);
20086 eol_str
= invalid_eol_type
;
20087 eol_str_len
= sizeof (invalid_eol_type
) - 1;
20089 memcpy (buf
, eol_str
, eol_str_len
);
20090 buf
+= eol_str_len
;
20096 /* Return a string for the output of a mode line %-spec for window W,
20097 generated by character C. FIELD_WIDTH > 0 means pad the string
20098 returned with spaces to that value. Return a Lisp string in
20099 *STRING if the resulting string is taken from that Lisp string.
20101 Note we operate on the current buffer for most purposes,
20102 the exception being w->base_line_pos. */
20104 static char lots_of_dashes
[] = "--------------------------------------------------------------------------------------------------------------------------------------------";
20106 static const char *
20107 decode_mode_spec (struct window
*w
, register int c
, int field_width
,
20108 Lisp_Object
*string
)
20111 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
20112 char *decode_mode_spec_buf
= f
->decode_mode_spec_buffer
;
20113 struct buffer
*b
= current_buffer
;
20121 if (!NILP (BVAR (b
, read_only
)))
20123 if (BUF_MODIFF (b
) > BUF_SAVE_MODIFF (b
))
20128 /* This differs from %* only for a modified read-only buffer. */
20129 if (BUF_MODIFF (b
) > BUF_SAVE_MODIFF (b
))
20131 if (!NILP (BVAR (b
, read_only
)))
20136 /* This differs from %* in ignoring read-only-ness. */
20137 if (BUF_MODIFF (b
) > BUF_SAVE_MODIFF (b
))
20149 if (command_loop_level
> 5)
20151 p
= decode_mode_spec_buf
;
20152 for (i
= 0; i
< command_loop_level
; i
++)
20155 return decode_mode_spec_buf
;
20163 if (command_loop_level
> 5)
20165 p
= decode_mode_spec_buf
;
20166 for (i
= 0; i
< command_loop_level
; i
++)
20169 return decode_mode_spec_buf
;
20176 /* Let lots_of_dashes be a string of infinite length. */
20177 if (mode_line_target
== MODE_LINE_NOPROP
||
20178 mode_line_target
== MODE_LINE_STRING
)
20180 if (field_width
<= 0
20181 || field_width
> sizeof (lots_of_dashes
))
20183 for (i
= 0; i
< FRAME_MESSAGE_BUF_SIZE (f
) - 1; ++i
)
20184 decode_mode_spec_buf
[i
] = '-';
20185 decode_mode_spec_buf
[i
] = '\0';
20186 return decode_mode_spec_buf
;
20189 return lots_of_dashes
;
20193 obj
= BVAR (b
, name
);
20197 /* %c and %l are ignored in `frame-title-format'.
20198 (In redisplay_internal, the frame title is drawn _before_ the
20199 windows are updated, so the stuff which depends on actual
20200 window contents (such as %l) may fail to render properly, or
20201 even crash emacs.) */
20202 if (mode_line_target
== MODE_LINE_TITLE
)
20206 EMACS_INT col
= current_column ();
20207 w
->column_number_displayed
= make_number (col
);
20208 pint2str (decode_mode_spec_buf
, field_width
, col
);
20209 return decode_mode_spec_buf
;
20213 #ifndef SYSTEM_MALLOC
20215 if (NILP (Vmemory_full
))
20218 return "!MEM FULL! ";
20225 /* %F displays the frame name. */
20226 if (!NILP (f
->title
))
20227 return SSDATA (f
->title
);
20228 if (f
->explicit_name
|| ! FRAME_WINDOW_P (f
))
20229 return SSDATA (f
->name
);
20233 obj
= BVAR (b
, filename
);
20238 EMACS_INT size
= ZV
- BEGV
;
20239 pint2str (decode_mode_spec_buf
, field_width
, size
);
20240 return decode_mode_spec_buf
;
20245 EMACS_INT size
= ZV
- BEGV
;
20246 pint2hrstr (decode_mode_spec_buf
, field_width
, size
);
20247 return decode_mode_spec_buf
;
20252 EMACS_INT startpos
, startpos_byte
, line
, linepos
, linepos_byte
;
20253 EMACS_INT topline
, nlines
, height
;
20256 /* %c and %l are ignored in `frame-title-format'. */
20257 if (mode_line_target
== MODE_LINE_TITLE
)
20260 startpos
= XMARKER (w
->start
)->charpos
;
20261 startpos_byte
= marker_byte_position (w
->start
);
20262 height
= WINDOW_TOTAL_LINES (w
);
20264 /* If we decided that this buffer isn't suitable for line numbers,
20265 don't forget that too fast. */
20266 if (EQ (w
->base_line_pos
, w
->buffer
))
20268 /* But do forget it, if the window shows a different buffer now. */
20269 else if (BUFFERP (w
->base_line_pos
))
20270 w
->base_line_pos
= Qnil
;
20272 /* If the buffer is very big, don't waste time. */
20273 if (INTEGERP (Vline_number_display_limit
)
20274 && BUF_ZV (b
) - BUF_BEGV (b
) > XINT (Vline_number_display_limit
))
20276 w
->base_line_pos
= Qnil
;
20277 w
->base_line_number
= Qnil
;
20281 if (INTEGERP (w
->base_line_number
)
20282 && INTEGERP (w
->base_line_pos
)
20283 && XFASTINT (w
->base_line_pos
) <= startpos
)
20285 line
= XFASTINT (w
->base_line_number
);
20286 linepos
= XFASTINT (w
->base_line_pos
);
20287 linepos_byte
= buf_charpos_to_bytepos (b
, linepos
);
20292 linepos
= BUF_BEGV (b
);
20293 linepos_byte
= BUF_BEGV_BYTE (b
);
20296 /* Count lines from base line to window start position. */
20297 nlines
= display_count_lines (linepos_byte
,
20301 topline
= nlines
+ line
;
20303 /* Determine a new base line, if the old one is too close
20304 or too far away, or if we did not have one.
20305 "Too close" means it's plausible a scroll-down would
20306 go back past it. */
20307 if (startpos
== BUF_BEGV (b
))
20309 w
->base_line_number
= make_number (topline
);
20310 w
->base_line_pos
= make_number (BUF_BEGV (b
));
20312 else if (nlines
< height
+ 25 || nlines
> height
* 3 + 50
20313 || linepos
== BUF_BEGV (b
))
20315 EMACS_INT limit
= BUF_BEGV (b
);
20316 EMACS_INT limit_byte
= BUF_BEGV_BYTE (b
);
20317 EMACS_INT position
;
20318 EMACS_INT distance
=
20319 (height
* 2 + 30) * line_number_display_limit_width
;
20321 if (startpos
- distance
> limit
)
20323 limit
= startpos
- distance
;
20324 limit_byte
= CHAR_TO_BYTE (limit
);
20327 nlines
= display_count_lines (startpos_byte
,
20329 - (height
* 2 + 30),
20331 /* If we couldn't find the lines we wanted within
20332 line_number_display_limit_width chars per line,
20333 give up on line numbers for this window. */
20334 if (position
== limit_byte
&& limit
== startpos
- distance
)
20336 w
->base_line_pos
= w
->buffer
;
20337 w
->base_line_number
= Qnil
;
20341 w
->base_line_number
= make_number (topline
- nlines
);
20342 w
->base_line_pos
= make_number (BYTE_TO_CHAR (position
));
20345 /* Now count lines from the start pos to point. */
20346 nlines
= display_count_lines (startpos_byte
,
20347 PT_BYTE
, PT
, &junk
);
20349 /* Record that we did display the line number. */
20350 line_number_displayed
= 1;
20352 /* Make the string to show. */
20353 pint2str (decode_mode_spec_buf
, field_width
, topline
+ nlines
);
20354 return decode_mode_spec_buf
;
20357 char* p
= decode_mode_spec_buf
;
20358 int pad
= field_width
- 2;
20364 return decode_mode_spec_buf
;
20370 obj
= BVAR (b
, mode_name
);
20374 if (BUF_BEGV (b
) > BUF_BEG (b
) || BUF_ZV (b
) < BUF_Z (b
))
20380 EMACS_INT pos
= marker_position (w
->start
);
20381 EMACS_INT total
= BUF_ZV (b
) - BUF_BEGV (b
);
20383 if (XFASTINT (w
->window_end_pos
) <= BUF_Z (b
) - BUF_ZV (b
))
20385 if (pos
<= BUF_BEGV (b
))
20390 else if (pos
<= BUF_BEGV (b
))
20394 if (total
> 1000000)
20395 /* Do it differently for a large value, to avoid overflow. */
20396 total
= ((pos
- BUF_BEGV (b
)) + (total
/ 100) - 1) / (total
/ 100);
20398 total
= ((pos
- BUF_BEGV (b
)) * 100 + total
- 1) / total
;
20399 /* We can't normally display a 3-digit number,
20400 so get us a 2-digit number that is close. */
20403 sprintf (decode_mode_spec_buf
, "%2"pI
"d%%", total
);
20404 return decode_mode_spec_buf
;
20408 /* Display percentage of size above the bottom of the screen. */
20411 EMACS_INT toppos
= marker_position (w
->start
);
20412 EMACS_INT botpos
= BUF_Z (b
) - XFASTINT (w
->window_end_pos
);
20413 EMACS_INT total
= BUF_ZV (b
) - BUF_BEGV (b
);
20415 if (botpos
>= BUF_ZV (b
))
20417 if (toppos
<= BUF_BEGV (b
))
20424 if (total
> 1000000)
20425 /* Do it differently for a large value, to avoid overflow. */
20426 total
= ((botpos
- BUF_BEGV (b
)) + (total
/ 100) - 1) / (total
/ 100);
20428 total
= ((botpos
- BUF_BEGV (b
)) * 100 + total
- 1) / total
;
20429 /* We can't normally display a 3-digit number,
20430 so get us a 2-digit number that is close. */
20433 if (toppos
<= BUF_BEGV (b
))
20434 sprintf (decode_mode_spec_buf
, "Top%2"pI
"d%%", total
);
20436 sprintf (decode_mode_spec_buf
, "%2"pI
"d%%", total
);
20437 return decode_mode_spec_buf
;
20442 /* status of process */
20443 obj
= Fget_buffer_process (Fcurrent_buffer ());
20445 return "no process";
20447 obj
= Fsymbol_name (Fprocess_status (obj
));
20453 int count
= inhibit_garbage_collection ();
20454 Lisp_Object val
= call1 (intern ("file-remote-p"),
20455 BVAR (current_buffer
, directory
));
20456 unbind_to (count
, Qnil
);
20464 case 't': /* indicate TEXT or BINARY */
20468 /* coding-system (not including end-of-line format) */
20470 /* coding-system (including end-of-line type) */
20472 int eol_flag
= (c
== 'Z');
20473 char *p
= decode_mode_spec_buf
;
20475 if (! FRAME_WINDOW_P (f
))
20477 /* No need to mention EOL here--the terminal never needs
20478 to do EOL conversion. */
20479 p
= decode_mode_spec_coding (CODING_ID_NAME
20480 (FRAME_KEYBOARD_CODING (f
)->id
),
20482 p
= decode_mode_spec_coding (CODING_ID_NAME
20483 (FRAME_TERMINAL_CODING (f
)->id
),
20486 p
= decode_mode_spec_coding (BVAR (b
, buffer_file_coding_system
),
20489 #if 0 /* This proves to be annoying; I think we can do without. -- rms. */
20490 #ifdef subprocesses
20491 obj
= Fget_buffer_process (Fcurrent_buffer ());
20492 if (PROCESSP (obj
))
20494 p
= decode_mode_spec_coding (XPROCESS (obj
)->decode_coding_system
,
20496 p
= decode_mode_spec_coding (XPROCESS (obj
)->encode_coding_system
,
20499 #endif /* subprocesses */
20502 return decode_mode_spec_buf
;
20509 return SSDATA (obj
);
20516 /* Count up to COUNT lines starting from START_BYTE.
20517 But don't go beyond LIMIT_BYTE.
20518 Return the number of lines thus found (always nonnegative).
20520 Set *BYTE_POS_PTR to 1 if we found COUNT lines, 0 if we hit LIMIT. */
20523 display_count_lines (EMACS_INT start_byte
,
20524 EMACS_INT limit_byte
, EMACS_INT count
,
20525 EMACS_INT
*byte_pos_ptr
)
20527 register unsigned char *cursor
;
20528 unsigned char *base
;
20530 register EMACS_INT ceiling
;
20531 register unsigned char *ceiling_addr
;
20532 EMACS_INT orig_count
= count
;
20534 /* If we are not in selective display mode,
20535 check only for newlines. */
20536 int selective_display
= (!NILP (BVAR (current_buffer
, selective_display
))
20537 && !INTEGERP (BVAR (current_buffer
, selective_display
)));
20541 while (start_byte
< limit_byte
)
20543 ceiling
= BUFFER_CEILING_OF (start_byte
);
20544 ceiling
= min (limit_byte
- 1, ceiling
);
20545 ceiling_addr
= BYTE_POS_ADDR (ceiling
) + 1;
20546 base
= (cursor
= BYTE_POS_ADDR (start_byte
));
20549 if (selective_display
)
20550 while (*cursor
!= '\n' && *cursor
!= 015 && ++cursor
!= ceiling_addr
)
20553 while (*cursor
!= '\n' && ++cursor
!= ceiling_addr
)
20556 if (cursor
!= ceiling_addr
)
20560 start_byte
+= cursor
- base
+ 1;
20561 *byte_pos_ptr
= start_byte
;
20565 if (++cursor
== ceiling_addr
)
20571 start_byte
+= cursor
- base
;
20576 while (start_byte
> limit_byte
)
20578 ceiling
= BUFFER_FLOOR_OF (start_byte
- 1);
20579 ceiling
= max (limit_byte
, ceiling
);
20580 ceiling_addr
= BYTE_POS_ADDR (ceiling
) - 1;
20581 base
= (cursor
= BYTE_POS_ADDR (start_byte
- 1) + 1);
20584 if (selective_display
)
20585 while (--cursor
!= ceiling_addr
20586 && *cursor
!= '\n' && *cursor
!= 015)
20589 while (--cursor
!= ceiling_addr
&& *cursor
!= '\n')
20592 if (cursor
!= ceiling_addr
)
20596 start_byte
+= cursor
- base
+ 1;
20597 *byte_pos_ptr
= start_byte
;
20598 /* When scanning backwards, we should
20599 not count the newline posterior to which we stop. */
20600 return - orig_count
- 1;
20606 /* Here we add 1 to compensate for the last decrement
20607 of CURSOR, which took it past the valid range. */
20608 start_byte
+= cursor
- base
+ 1;
20612 *byte_pos_ptr
= limit_byte
;
20615 return - orig_count
+ count
;
20616 return orig_count
- count
;
20622 /***********************************************************************
20624 ***********************************************************************/
20626 /* Display a NUL-terminated string, starting with index START.
20628 If STRING is non-null, display that C string. Otherwise, the Lisp
20629 string LISP_STRING is displayed. There's a case that STRING is
20630 non-null and LISP_STRING is not nil. It means STRING is a string
20631 data of LISP_STRING. In that case, we display LISP_STRING while
20632 ignoring its text properties.
20634 If FACE_STRING is not nil, FACE_STRING_POS is a position in
20635 FACE_STRING. Display STRING or LISP_STRING with the face at
20636 FACE_STRING_POS in FACE_STRING:
20638 Display the string in the environment given by IT, but use the
20639 standard display table, temporarily.
20641 FIELD_WIDTH is the minimum number of output glyphs to produce.
20642 If STRING has fewer characters than FIELD_WIDTH, pad to the right
20643 with spaces. If STRING has more characters, more than FIELD_WIDTH
20644 glyphs will be produced. FIELD_WIDTH <= 0 means don't pad.
20646 PRECISION is the maximum number of characters to output from
20647 STRING. PRECISION < 0 means don't truncate the string.
20649 This is roughly equivalent to printf format specifiers:
20651 FIELD_WIDTH PRECISION PRINTF
20652 ----------------------------------------
20658 MULTIBYTE zero means do not display multibyte chars, > 0 means do
20659 display them, and < 0 means obey the current buffer's value of
20660 enable_multibyte_characters.
20662 Value is the number of columns displayed. */
20665 display_string (const char *string
, Lisp_Object lisp_string
, Lisp_Object face_string
,
20666 EMACS_INT face_string_pos
, EMACS_INT start
, struct it
*it
,
20667 int field_width
, int precision
, int max_x
, int multibyte
)
20669 int hpos_at_start
= it
->hpos
;
20670 int saved_face_id
= it
->face_id
;
20671 struct glyph_row
*row
= it
->glyph_row
;
20672 EMACS_INT it_charpos
;
20674 /* Initialize the iterator IT for iteration over STRING beginning
20675 with index START. */
20676 reseat_to_string (it
, NILP (lisp_string
) ? string
: NULL
, lisp_string
, start
,
20677 precision
, field_width
, multibyte
);
20678 if (string
&& STRINGP (lisp_string
))
20679 /* LISP_STRING is the one returned by decode_mode_spec. We should
20680 ignore its text properties. */
20681 it
->stop_charpos
= it
->end_charpos
;
20683 /* If displaying STRING, set up the face of the iterator from
20684 FACE_STRING, if that's given. */
20685 if (STRINGP (face_string
))
20691 = face_at_string_position (it
->w
, face_string
, face_string_pos
,
20692 0, it
->region_beg_charpos
,
20693 it
->region_end_charpos
,
20694 &endptr
, it
->base_face_id
, 0);
20695 face
= FACE_FROM_ID (it
->f
, it
->face_id
);
20696 it
->face_box_p
= face
->box
!= FACE_NO_BOX
;
20699 /* Set max_x to the maximum allowed X position. Don't let it go
20700 beyond the right edge of the window. */
20702 max_x
= it
->last_visible_x
;
20704 max_x
= min (max_x
, it
->last_visible_x
);
20706 /* Skip over display elements that are not visible. because IT->w is
20708 if (it
->current_x
< it
->first_visible_x
)
20709 move_it_in_display_line_to (it
, 100000, it
->first_visible_x
,
20710 MOVE_TO_POS
| MOVE_TO_X
);
20712 row
->ascent
= it
->max_ascent
;
20713 row
->height
= it
->max_ascent
+ it
->max_descent
;
20714 row
->phys_ascent
= it
->max_phys_ascent
;
20715 row
->phys_height
= it
->max_phys_ascent
+ it
->max_phys_descent
;
20716 row
->extra_line_spacing
= it
->max_extra_line_spacing
;
20718 if (STRINGP (it
->string
))
20719 it_charpos
= IT_STRING_CHARPOS (*it
);
20721 it_charpos
= IT_CHARPOS (*it
);
20723 /* This condition is for the case that we are called with current_x
20724 past last_visible_x. */
20725 while (it
->current_x
< max_x
)
20727 int x_before
, x
, n_glyphs_before
, i
, nglyphs
;
20729 /* Get the next display element. */
20730 if (!get_next_display_element (it
))
20733 /* Produce glyphs. */
20734 x_before
= it
->current_x
;
20735 n_glyphs_before
= row
->used
[TEXT_AREA
];
20736 PRODUCE_GLYPHS (it
);
20738 nglyphs
= row
->used
[TEXT_AREA
] - n_glyphs_before
;
20741 while (i
< nglyphs
)
20743 struct glyph
*glyph
= row
->glyphs
[TEXT_AREA
] + n_glyphs_before
+ i
;
20745 if (it
->line_wrap
!= TRUNCATE
20746 && x
+ glyph
->pixel_width
> max_x
)
20748 /* End of continued line or max_x reached. */
20749 if (CHAR_GLYPH_PADDING_P (*glyph
))
20751 /* A wide character is unbreakable. */
20752 if (row
->reversed_p
)
20753 unproduce_glyphs (it
, row
->used
[TEXT_AREA
]
20754 - n_glyphs_before
);
20755 row
->used
[TEXT_AREA
] = n_glyphs_before
;
20756 it
->current_x
= x_before
;
20760 if (row
->reversed_p
)
20761 unproduce_glyphs (it
, row
->used
[TEXT_AREA
]
20762 - (n_glyphs_before
+ i
));
20763 row
->used
[TEXT_AREA
] = n_glyphs_before
+ i
;
20768 else if (x
+ glyph
->pixel_width
>= it
->first_visible_x
)
20770 /* Glyph is at least partially visible. */
20772 if (x
< it
->first_visible_x
)
20773 row
->x
= x
- it
->first_visible_x
;
20777 /* Glyph is off the left margin of the display area.
20778 Should not happen. */
20782 row
->ascent
= max (row
->ascent
, it
->max_ascent
);
20783 row
->height
= max (row
->height
, it
->max_ascent
+ it
->max_descent
);
20784 row
->phys_ascent
= max (row
->phys_ascent
, it
->max_phys_ascent
);
20785 row
->phys_height
= max (row
->phys_height
,
20786 it
->max_phys_ascent
+ it
->max_phys_descent
);
20787 row
->extra_line_spacing
= max (row
->extra_line_spacing
,
20788 it
->max_extra_line_spacing
);
20789 x
+= glyph
->pixel_width
;
20793 /* Stop if max_x reached. */
20797 /* Stop at line ends. */
20798 if (ITERATOR_AT_END_OF_LINE_P (it
))
20800 it
->continuation_lines_width
= 0;
20804 set_iterator_to_next (it
, 1);
20805 if (STRINGP (it
->string
))
20806 it_charpos
= IT_STRING_CHARPOS (*it
);
20808 it_charpos
= IT_CHARPOS (*it
);
20810 /* Stop if truncating at the right edge. */
20811 if (it
->line_wrap
== TRUNCATE
20812 && it
->current_x
>= it
->last_visible_x
)
20814 /* Add truncation mark, but don't do it if the line is
20815 truncated at a padding space. */
20816 if (it_charpos
< it
->string_nchars
)
20818 if (!FRAME_WINDOW_P (it
->f
))
20822 if (it
->current_x
> it
->last_visible_x
)
20824 if (!row
->reversed_p
)
20826 for (ii
= row
->used
[TEXT_AREA
] - 1; ii
> 0; --ii
)
20827 if (!CHAR_GLYPH_PADDING_P (row
->glyphs
[TEXT_AREA
][ii
]))
20832 for (ii
= 0; ii
< row
->used
[TEXT_AREA
]; ii
++)
20833 if (!CHAR_GLYPH_PADDING_P (row
->glyphs
[TEXT_AREA
][ii
]))
20835 unproduce_glyphs (it
, ii
+ 1);
20836 ii
= row
->used
[TEXT_AREA
] - (ii
+ 1);
20838 for (n
= row
->used
[TEXT_AREA
]; ii
< n
; ++ii
)
20840 row
->used
[TEXT_AREA
] = ii
;
20841 produce_special_glyphs (it
, IT_TRUNCATION
);
20844 produce_special_glyphs (it
, IT_TRUNCATION
);
20846 row
->truncated_on_right_p
= 1;
20852 /* Maybe insert a truncation at the left. */
20853 if (it
->first_visible_x
20856 if (!FRAME_WINDOW_P (it
->f
))
20857 insert_left_trunc_glyphs (it
);
20858 row
->truncated_on_left_p
= 1;
20861 it
->face_id
= saved_face_id
;
20863 /* Value is number of columns displayed. */
20864 return it
->hpos
- hpos_at_start
;
20869 /* This is like a combination of memq and assq. Return 1/2 if PROPVAL
20870 appears as an element of LIST or as the car of an element of LIST.
20871 If PROPVAL is a list, compare each element against LIST in that
20872 way, and return 1/2 if any element of PROPVAL is found in LIST.
20873 Otherwise return 0. This function cannot quit.
20874 The return value is 2 if the text is invisible but with an ellipsis
20875 and 1 if it's invisible and without an ellipsis. */
20878 invisible_p (register Lisp_Object propval
, Lisp_Object list
)
20880 register Lisp_Object tail
, proptail
;
20882 for (tail
= list
; CONSP (tail
); tail
= XCDR (tail
))
20884 register Lisp_Object tem
;
20886 if (EQ (propval
, tem
))
20888 if (CONSP (tem
) && EQ (propval
, XCAR (tem
)))
20889 return NILP (XCDR (tem
)) ? 1 : 2;
20892 if (CONSP (propval
))
20894 for (proptail
= propval
; CONSP (proptail
); proptail
= XCDR (proptail
))
20896 Lisp_Object propelt
;
20897 propelt
= XCAR (proptail
);
20898 for (tail
= list
; CONSP (tail
); tail
= XCDR (tail
))
20900 register Lisp_Object tem
;
20902 if (EQ (propelt
, tem
))
20904 if (CONSP (tem
) && EQ (propelt
, XCAR (tem
)))
20905 return NILP (XCDR (tem
)) ? 1 : 2;
20913 DEFUN ("invisible-p", Finvisible_p
, Sinvisible_p
, 1, 1, 0,
20914 doc
: /* Non-nil if the property makes the text invisible.
20915 POS-OR-PROP can be a marker or number, in which case it is taken to be
20916 a position in the current buffer and the value of the `invisible' property
20917 is checked; or it can be some other value, which is then presumed to be the
20918 value of the `invisible' property of the text of interest.
20919 The non-nil value returned can be t for truly invisible text or something
20920 else if the text is replaced by an ellipsis. */)
20921 (Lisp_Object pos_or_prop
)
20924 = (NATNUMP (pos_or_prop
) || MARKERP (pos_or_prop
)
20925 ? Fget_char_property (pos_or_prop
, Qinvisible
, Qnil
)
20927 int invis
= TEXT_PROP_MEANS_INVISIBLE (prop
);
20928 return (invis
== 0 ? Qnil
20930 : make_number (invis
));
20933 /* Calculate a width or height in pixels from a specification using
20934 the following elements:
20937 NUM - a (fractional) multiple of the default font width/height
20938 (NUM) - specifies exactly NUM pixels
20939 UNIT - a fixed number of pixels, see below.
20940 ELEMENT - size of a display element in pixels, see below.
20941 (NUM . SPEC) - equals NUM * SPEC
20942 (+ SPEC SPEC ...) - add pixel values
20943 (- SPEC SPEC ...) - subtract pixel values
20944 (- SPEC) - negate pixel value
20947 INT or FLOAT - a number constant
20948 SYMBOL - use symbol's (buffer local) variable binding.
20951 in - pixels per inch *)
20952 mm - pixels per 1/1000 meter *)
20953 cm - pixels per 1/100 meter *)
20954 width - width of current font in pixels.
20955 height - height of current font in pixels.
20957 *) using the ratio(s) defined in display-pixels-per-inch.
20961 left-fringe - left fringe width in pixels
20962 right-fringe - right fringe width in pixels
20964 left-margin - left margin width in pixels
20965 right-margin - right margin width in pixels
20967 scroll-bar - scroll-bar area width in pixels
20971 Pixels corresponding to 5 inches:
20974 Total width of non-text areas on left side of window (if scroll-bar is on left):
20975 '(space :width (+ left-fringe left-margin scroll-bar))
20977 Align to first text column (in header line):
20978 '(space :align-to 0)
20980 Align to middle of text area minus half the width of variable `my-image'
20981 containing a loaded image:
20982 '(space :align-to (0.5 . (- text my-image)))
20984 Width of left margin minus width of 1 character in the default font:
20985 '(space :width (- left-margin 1))
20987 Width of left margin minus width of 2 characters in the current font:
20988 '(space :width (- left-margin (2 . width)))
20990 Center 1 character over left-margin (in header line):
20991 '(space :align-to (+ left-margin (0.5 . left-margin) -0.5))
20993 Different ways to express width of left fringe plus left margin minus one pixel:
20994 '(space :width (- (+ left-fringe left-margin) (1)))
20995 '(space :width (+ left-fringe left-margin (- (1))))
20996 '(space :width (+ left-fringe left-margin (-1)))
21000 #define NUMVAL(X) \
21001 ((INTEGERP (X) || FLOATP (X)) \
21006 calc_pixel_width_or_height (double *res
, struct it
*it
, Lisp_Object prop
,
21007 struct font
*font
, int width_p
, int *align_to
)
21011 #define OK_PIXELS(val) ((*res = (double)(val)), 1)
21012 #define OK_ALIGN_TO(val) ((*align_to = (int)(val)), 1)
21015 return OK_PIXELS (0);
21017 xassert (FRAME_LIVE_P (it
->f
));
21019 if (SYMBOLP (prop
))
21021 if (SCHARS (SYMBOL_NAME (prop
)) == 2)
21023 char *unit
= SSDATA (SYMBOL_NAME (prop
));
21025 if (unit
[0] == 'i' && unit
[1] == 'n')
21027 else if (unit
[0] == 'm' && unit
[1] == 'm')
21029 else if (unit
[0] == 'c' && unit
[1] == 'm')
21036 #ifdef HAVE_WINDOW_SYSTEM
21037 if (FRAME_WINDOW_P (it
->f
)
21039 ? FRAME_X_DISPLAY_INFO (it
->f
)->resx
21040 : FRAME_X_DISPLAY_INFO (it
->f
)->resy
),
21042 return OK_PIXELS (ppi
/ pixels
);
21045 if ((ppi
= NUMVAL (Vdisplay_pixels_per_inch
), ppi
> 0)
21046 || (CONSP (Vdisplay_pixels_per_inch
)
21048 ? NUMVAL (XCAR (Vdisplay_pixels_per_inch
))
21049 : NUMVAL (XCDR (Vdisplay_pixels_per_inch
))),
21051 return OK_PIXELS (ppi
/ pixels
);
21057 #ifdef HAVE_WINDOW_SYSTEM
21058 if (EQ (prop
, Qheight
))
21059 return OK_PIXELS (font
? FONT_HEIGHT (font
) : FRAME_LINE_HEIGHT (it
->f
));
21060 if (EQ (prop
, Qwidth
))
21061 return OK_PIXELS (font
? FONT_WIDTH (font
) : FRAME_COLUMN_WIDTH (it
->f
));
21063 if (EQ (prop
, Qheight
) || EQ (prop
, Qwidth
))
21064 return OK_PIXELS (1);
21067 if (EQ (prop
, Qtext
))
21068 return OK_PIXELS (width_p
21069 ? window_box_width (it
->w
, TEXT_AREA
)
21070 : WINDOW_BOX_HEIGHT_NO_MODE_LINE (it
->w
));
21072 if (align_to
&& *align_to
< 0)
21075 if (EQ (prop
, Qleft
))
21076 return OK_ALIGN_TO (window_box_left_offset (it
->w
, TEXT_AREA
));
21077 if (EQ (prop
, Qright
))
21078 return OK_ALIGN_TO (window_box_right_offset (it
->w
, TEXT_AREA
));
21079 if (EQ (prop
, Qcenter
))
21080 return OK_ALIGN_TO (window_box_left_offset (it
->w
, TEXT_AREA
)
21081 + window_box_width (it
->w
, TEXT_AREA
) / 2);
21082 if (EQ (prop
, Qleft_fringe
))
21083 return OK_ALIGN_TO (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it
->w
)
21084 ? WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (it
->w
)
21085 : window_box_right_offset (it
->w
, LEFT_MARGIN_AREA
));
21086 if (EQ (prop
, Qright_fringe
))
21087 return OK_ALIGN_TO (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it
->w
)
21088 ? window_box_right_offset (it
->w
, RIGHT_MARGIN_AREA
)
21089 : window_box_right_offset (it
->w
, TEXT_AREA
));
21090 if (EQ (prop
, Qleft_margin
))
21091 return OK_ALIGN_TO (window_box_left_offset (it
->w
, LEFT_MARGIN_AREA
));
21092 if (EQ (prop
, Qright_margin
))
21093 return OK_ALIGN_TO (window_box_left_offset (it
->w
, RIGHT_MARGIN_AREA
));
21094 if (EQ (prop
, Qscroll_bar
))
21095 return OK_ALIGN_TO (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (it
->w
)
21097 : (window_box_right_offset (it
->w
, RIGHT_MARGIN_AREA
)
21098 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it
->w
)
21099 ? WINDOW_RIGHT_FRINGE_WIDTH (it
->w
)
21104 if (EQ (prop
, Qleft_fringe
))
21105 return OK_PIXELS (WINDOW_LEFT_FRINGE_WIDTH (it
->w
));
21106 if (EQ (prop
, Qright_fringe
))
21107 return OK_PIXELS (WINDOW_RIGHT_FRINGE_WIDTH (it
->w
));
21108 if (EQ (prop
, Qleft_margin
))
21109 return OK_PIXELS (WINDOW_LEFT_MARGIN_WIDTH (it
->w
));
21110 if (EQ (prop
, Qright_margin
))
21111 return OK_PIXELS (WINDOW_RIGHT_MARGIN_WIDTH (it
->w
));
21112 if (EQ (prop
, Qscroll_bar
))
21113 return OK_PIXELS (WINDOW_SCROLL_BAR_AREA_WIDTH (it
->w
));
21116 prop
= Fbuffer_local_value (prop
, it
->w
->buffer
);
21119 if (INTEGERP (prop
) || FLOATP (prop
))
21121 int base_unit
= (width_p
21122 ? FRAME_COLUMN_WIDTH (it
->f
)
21123 : FRAME_LINE_HEIGHT (it
->f
));
21124 return OK_PIXELS (XFLOATINT (prop
) * base_unit
);
21129 Lisp_Object car
= XCAR (prop
);
21130 Lisp_Object cdr
= XCDR (prop
);
21134 #ifdef HAVE_WINDOW_SYSTEM
21135 if (FRAME_WINDOW_P (it
->f
)
21136 && valid_image_p (prop
))
21138 int id
= lookup_image (it
->f
, prop
);
21139 struct image
*img
= IMAGE_FROM_ID (it
->f
, id
);
21141 return OK_PIXELS (width_p
? img
->width
: img
->height
);
21144 if (EQ (car
, Qplus
) || EQ (car
, Qminus
))
21150 while (CONSP (cdr
))
21152 if (!calc_pixel_width_or_height (&px
, it
, XCAR (cdr
),
21153 font
, width_p
, align_to
))
21156 pixels
= (EQ (car
, Qplus
) ? px
: -px
), first
= 0;
21161 if (EQ (car
, Qminus
))
21163 return OK_PIXELS (pixels
);
21166 car
= Fbuffer_local_value (car
, it
->w
->buffer
);
21169 if (INTEGERP (car
) || FLOATP (car
))
21172 pixels
= XFLOATINT (car
);
21174 return OK_PIXELS (pixels
);
21175 if (calc_pixel_width_or_height (&fact
, it
, cdr
,
21176 font
, width_p
, align_to
))
21177 return OK_PIXELS (pixels
* fact
);
21188 /***********************************************************************
21190 ***********************************************************************/
21192 #ifdef HAVE_WINDOW_SYSTEM
21197 dump_glyph_string (s
)
21198 struct glyph_string
*s
;
21200 fprintf (stderr
, "glyph string\n");
21201 fprintf (stderr
, " x, y, w, h = %d, %d, %d, %d\n",
21202 s
->x
, s
->y
, s
->width
, s
->height
);
21203 fprintf (stderr
, " ybase = %d\n", s
->ybase
);
21204 fprintf (stderr
, " hl = %d\n", s
->hl
);
21205 fprintf (stderr
, " left overhang = %d, right = %d\n",
21206 s
->left_overhang
, s
->right_overhang
);
21207 fprintf (stderr
, " nchars = %d\n", s
->nchars
);
21208 fprintf (stderr
, " extends to end of line = %d\n",
21209 s
->extends_to_end_of_line_p
);
21210 fprintf (stderr
, " font height = %d\n", FONT_HEIGHT (s
->font
));
21211 fprintf (stderr
, " bg width = %d\n", s
->background_width
);
21214 #endif /* GLYPH_DEBUG */
21216 /* Initialize glyph string S. CHAR2B is a suitably allocated vector
21217 of XChar2b structures for S; it can't be allocated in
21218 init_glyph_string because it must be allocated via `alloca'. W
21219 is the window on which S is drawn. ROW and AREA are the glyph row
21220 and area within the row from which S is constructed. START is the
21221 index of the first glyph structure covered by S. HL is a
21222 face-override for drawing S. */
21225 #define OPTIONAL_HDC(hdc) HDC hdc,
21226 #define DECLARE_HDC(hdc) HDC hdc;
21227 #define ALLOCATE_HDC(hdc, f) hdc = get_frame_dc ((f))
21228 #define RELEASE_HDC(hdc, f) release_frame_dc ((f), (hdc))
21231 #ifndef OPTIONAL_HDC
21232 #define OPTIONAL_HDC(hdc)
21233 #define DECLARE_HDC(hdc)
21234 #define ALLOCATE_HDC(hdc, f)
21235 #define RELEASE_HDC(hdc, f)
21239 init_glyph_string (struct glyph_string
*s
,
21241 XChar2b
*char2b
, struct window
*w
, struct glyph_row
*row
,
21242 enum glyph_row_area area
, int start
, enum draw_glyphs_face hl
)
21244 memset (s
, 0, sizeof *s
);
21246 s
->f
= XFRAME (w
->frame
);
21250 s
->display
= FRAME_X_DISPLAY (s
->f
);
21251 s
->window
= FRAME_X_WINDOW (s
->f
);
21252 s
->char2b
= char2b
;
21256 s
->first_glyph
= row
->glyphs
[area
] + start
;
21257 s
->height
= row
->height
;
21258 s
->y
= WINDOW_TO_FRAME_PIXEL_Y (w
, row
->y
);
21259 s
->ybase
= s
->y
+ row
->ascent
;
21263 /* Append the list of glyph strings with head H and tail T to the list
21264 with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the result. */
21267 append_glyph_string_lists (struct glyph_string
**head
, struct glyph_string
**tail
,
21268 struct glyph_string
*h
, struct glyph_string
*t
)
21282 /* Prepend the list of glyph strings with head H and tail T to the
21283 list with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the
21287 prepend_glyph_string_lists (struct glyph_string
**head
, struct glyph_string
**tail
,
21288 struct glyph_string
*h
, struct glyph_string
*t
)
21302 /* Append glyph string S to the list with head *HEAD and tail *TAIL.
21303 Set *HEAD and *TAIL to the resulting list. */
21306 append_glyph_string (struct glyph_string
**head
, struct glyph_string
**tail
,
21307 struct glyph_string
*s
)
21309 s
->next
= s
->prev
= NULL
;
21310 append_glyph_string_lists (head
, tail
, s
, s
);
21314 /* Get face and two-byte form of character C in face FACE_ID on frame F.
21315 The encoding of C is returned in *CHAR2B. DISPLAY_P non-zero means
21316 make sure that X resources for the face returned are allocated.
21317 Value is a pointer to a realized face that is ready for display if
21318 DISPLAY_P is non-zero. */
21320 static INLINE
struct face
*
21321 get_char_face_and_encoding (struct frame
*f
, int c
, int face_id
,
21322 XChar2b
*char2b
, int display_p
)
21324 struct face
*face
= FACE_FROM_ID (f
, face_id
);
21328 unsigned code
= face
->font
->driver
->encode_char (face
->font
, c
);
21330 if (code
!= FONT_INVALID_CODE
)
21331 STORE_XCHAR2B (char2b
, (code
>> 8), (code
& 0xFF));
21333 STORE_XCHAR2B (char2b
, 0, 0);
21336 /* Make sure X resources of the face are allocated. */
21337 #ifdef HAVE_X_WINDOWS
21341 xassert (face
!= NULL
);
21342 PREPARE_FACE_FOR_DISPLAY (f
, face
);
21349 /* Get face and two-byte form of character glyph GLYPH on frame F.
21350 The encoding of GLYPH->u.ch is returned in *CHAR2B. Value is
21351 a pointer to a realized face that is ready for display. */
21353 static INLINE
struct face
*
21354 get_glyph_face_and_encoding (struct frame
*f
, struct glyph
*glyph
,
21355 XChar2b
*char2b
, int *two_byte_p
)
21359 xassert (glyph
->type
== CHAR_GLYPH
);
21360 face
= FACE_FROM_ID (f
, glyph
->face_id
);
21369 if (CHAR_BYTE8_P (glyph
->u
.ch
))
21370 code
= CHAR_TO_BYTE8 (glyph
->u
.ch
);
21372 code
= face
->font
->driver
->encode_char (face
->font
, glyph
->u
.ch
);
21374 if (code
!= FONT_INVALID_CODE
)
21375 STORE_XCHAR2B (char2b
, (code
>> 8), (code
& 0xFF));
21377 STORE_XCHAR2B (char2b
, 0, 0);
21380 /* Make sure X resources of the face are allocated. */
21381 xassert (face
!= NULL
);
21382 PREPARE_FACE_FOR_DISPLAY (f
, face
);
21387 /* Get glyph code of character C in FONT in the two-byte form CHAR2B.
21388 Retunr 1 if FONT has a glyph for C, otherwise return 0. */
21391 get_char_glyph_code (int c
, struct font
*font
, XChar2b
*char2b
)
21395 if (CHAR_BYTE8_P (c
))
21396 code
= CHAR_TO_BYTE8 (c
);
21398 code
= font
->driver
->encode_char (font
, c
);
21400 if (code
== FONT_INVALID_CODE
)
21402 STORE_XCHAR2B (char2b
, (code
>> 8), (code
& 0xFF));
21407 /* Fill glyph string S with composition components specified by S->cmp.
21409 BASE_FACE is the base face of the composition.
21410 S->cmp_from is the index of the first component for S.
21412 OVERLAPS non-zero means S should draw the foreground only, and use
21413 its physical height for clipping. See also draw_glyphs.
21415 Value is the index of a component not in S. */
21418 fill_composite_glyph_string (struct glyph_string
*s
, struct face
*base_face
,
21422 /* For all glyphs of this composition, starting at the offset
21423 S->cmp_from, until we reach the end of the definition or encounter a
21424 glyph that requires the different face, add it to S. */
21429 s
->for_overlaps
= overlaps
;
21432 for (i
= s
->cmp_from
; i
< s
->cmp
->glyph_len
; i
++)
21434 int c
= COMPOSITION_GLYPH (s
->cmp
, i
);
21438 int face_id
= FACE_FOR_CHAR (s
->f
, base_face
->ascii_face
, c
,
21441 face
= get_char_face_and_encoding (s
->f
, c
, face_id
,
21448 s
->font
= s
->face
->font
;
21450 else if (s
->face
!= face
)
21458 /* All glyph strings for the same composition has the same width,
21459 i.e. the width set for the first component of the composition. */
21460 s
->width
= s
->first_glyph
->pixel_width
;
21462 /* If the specified font could not be loaded, use the frame's
21463 default font, but record the fact that we couldn't load it in
21464 the glyph string so that we can draw rectangles for the
21465 characters of the glyph string. */
21466 if (s
->font
== NULL
)
21468 s
->font_not_found_p
= 1;
21469 s
->font
= FRAME_FONT (s
->f
);
21472 /* Adjust base line for subscript/superscript text. */
21473 s
->ybase
+= s
->first_glyph
->voffset
;
21475 /* This glyph string must always be drawn with 16-bit functions. */
21482 fill_gstring_glyph_string (struct glyph_string
*s
, int face_id
,
21483 int start
, int end
, int overlaps
)
21485 struct glyph
*glyph
, *last
;
21486 Lisp_Object lgstring
;
21489 s
->for_overlaps
= overlaps
;
21490 glyph
= s
->row
->glyphs
[s
->area
] + start
;
21491 last
= s
->row
->glyphs
[s
->area
] + end
;
21492 s
->cmp_id
= glyph
->u
.cmp
.id
;
21493 s
->cmp_from
= glyph
->slice
.cmp
.from
;
21494 s
->cmp_to
= glyph
->slice
.cmp
.to
+ 1;
21495 s
->face
= FACE_FROM_ID (s
->f
, face_id
);
21496 lgstring
= composition_gstring_from_id (s
->cmp_id
);
21497 s
->font
= XFONT_OBJECT (LGSTRING_FONT (lgstring
));
21499 while (glyph
< last
21500 && glyph
->u
.cmp
.automatic
21501 && glyph
->u
.cmp
.id
== s
->cmp_id
21502 && s
->cmp_to
== glyph
->slice
.cmp
.from
)
21503 s
->cmp_to
= (glyph
++)->slice
.cmp
.to
+ 1;
21505 for (i
= s
->cmp_from
; i
< s
->cmp_to
; i
++)
21507 Lisp_Object lglyph
= LGSTRING_GLYPH (lgstring
, i
);
21508 unsigned code
= LGLYPH_CODE (lglyph
);
21510 STORE_XCHAR2B ((s
->char2b
+ i
), code
>> 8, code
& 0xFF);
21512 s
->width
= composition_gstring_width (lgstring
, s
->cmp_from
, s
->cmp_to
, NULL
);
21513 return glyph
- s
->row
->glyphs
[s
->area
];
21517 /* Fill glyph string S from a sequence glyphs for glyphless characters.
21518 See the comment of fill_glyph_string for arguments.
21519 Value is the index of the first glyph not in S. */
21523 fill_glyphless_glyph_string (struct glyph_string
*s
, int face_id
,
21524 int start
, int end
, int overlaps
)
21526 struct glyph
*glyph
, *last
;
21529 xassert (s
->first_glyph
->type
== GLYPHLESS_GLYPH
);
21530 s
->for_overlaps
= overlaps
;
21531 glyph
= s
->row
->glyphs
[s
->area
] + start
;
21532 last
= s
->row
->glyphs
[s
->area
] + end
;
21533 voffset
= glyph
->voffset
;
21534 s
->face
= FACE_FROM_ID (s
->f
, face_id
);
21535 s
->font
= s
->face
->font
;
21537 s
->width
= glyph
->pixel_width
;
21539 while (glyph
< last
21540 && glyph
->type
== GLYPHLESS_GLYPH
21541 && glyph
->voffset
== voffset
21542 && glyph
->face_id
== face_id
)
21545 s
->width
+= glyph
->pixel_width
;
21548 s
->ybase
+= voffset
;
21549 return glyph
- s
->row
->glyphs
[s
->area
];
21553 /* Fill glyph string S from a sequence of character glyphs.
21555 FACE_ID is the face id of the string. START is the index of the
21556 first glyph to consider, END is the index of the last + 1.
21557 OVERLAPS non-zero means S should draw the foreground only, and use
21558 its physical height for clipping. See also draw_glyphs.
21560 Value is the index of the first glyph not in S. */
21563 fill_glyph_string (struct glyph_string
*s
, int face_id
,
21564 int start
, int end
, int overlaps
)
21566 struct glyph
*glyph
, *last
;
21568 int glyph_not_available_p
;
21570 xassert (s
->f
== XFRAME (s
->w
->frame
));
21571 xassert (s
->nchars
== 0);
21572 xassert (start
>= 0 && end
> start
);
21574 s
->for_overlaps
= overlaps
;
21575 glyph
= s
->row
->glyphs
[s
->area
] + start
;
21576 last
= s
->row
->glyphs
[s
->area
] + end
;
21577 voffset
= glyph
->voffset
;
21578 s
->padding_p
= glyph
->padding_p
;
21579 glyph_not_available_p
= glyph
->glyph_not_available_p
;
21581 while (glyph
< last
21582 && glyph
->type
== CHAR_GLYPH
21583 && glyph
->voffset
== voffset
21584 /* Same face id implies same font, nowadays. */
21585 && glyph
->face_id
== face_id
21586 && glyph
->glyph_not_available_p
== glyph_not_available_p
)
21590 s
->face
= get_glyph_face_and_encoding (s
->f
, glyph
,
21591 s
->char2b
+ s
->nchars
,
21593 s
->two_byte_p
= two_byte_p
;
21595 xassert (s
->nchars
<= end
- start
);
21596 s
->width
+= glyph
->pixel_width
;
21597 if (glyph
++->padding_p
!= s
->padding_p
)
21601 s
->font
= s
->face
->font
;
21603 /* If the specified font could not be loaded, use the frame's font,
21604 but record the fact that we couldn't load it in
21605 S->font_not_found_p so that we can draw rectangles for the
21606 characters of the glyph string. */
21607 if (s
->font
== NULL
|| glyph_not_available_p
)
21609 s
->font_not_found_p
= 1;
21610 s
->font
= FRAME_FONT (s
->f
);
21613 /* Adjust base line for subscript/superscript text. */
21614 s
->ybase
+= voffset
;
21616 xassert (s
->face
&& s
->face
->gc
);
21617 return glyph
- s
->row
->glyphs
[s
->area
];
21621 /* Fill glyph string S from image glyph S->first_glyph. */
21624 fill_image_glyph_string (struct glyph_string
*s
)
21626 xassert (s
->first_glyph
->type
== IMAGE_GLYPH
);
21627 s
->img
= IMAGE_FROM_ID (s
->f
, s
->first_glyph
->u
.img_id
);
21629 s
->slice
= s
->first_glyph
->slice
.img
;
21630 s
->face
= FACE_FROM_ID (s
->f
, s
->first_glyph
->face_id
);
21631 s
->font
= s
->face
->font
;
21632 s
->width
= s
->first_glyph
->pixel_width
;
21634 /* Adjust base line for subscript/superscript text. */
21635 s
->ybase
+= s
->first_glyph
->voffset
;
21639 /* Fill glyph string S from a sequence of stretch glyphs.
21641 START is the index of the first glyph to consider,
21642 END is the index of the last + 1.
21644 Value is the index of the first glyph not in S. */
21647 fill_stretch_glyph_string (struct glyph_string
*s
, int start
, int end
)
21649 struct glyph
*glyph
, *last
;
21650 int voffset
, face_id
;
21652 xassert (s
->first_glyph
->type
== STRETCH_GLYPH
);
21654 glyph
= s
->row
->glyphs
[s
->area
] + start
;
21655 last
= s
->row
->glyphs
[s
->area
] + end
;
21656 face_id
= glyph
->face_id
;
21657 s
->face
= FACE_FROM_ID (s
->f
, face_id
);
21658 s
->font
= s
->face
->font
;
21659 s
->width
= glyph
->pixel_width
;
21661 voffset
= glyph
->voffset
;
21665 && glyph
->type
== STRETCH_GLYPH
21666 && glyph
->voffset
== voffset
21667 && glyph
->face_id
== face_id
);
21669 s
->width
+= glyph
->pixel_width
;
21671 /* Adjust base line for subscript/superscript text. */
21672 s
->ybase
+= voffset
;
21674 /* The case that face->gc == 0 is handled when drawing the glyph
21675 string by calling PREPARE_FACE_FOR_DISPLAY. */
21677 return glyph
- s
->row
->glyphs
[s
->area
];
21680 static struct font_metrics
*
21681 get_per_char_metric (struct font
*font
, XChar2b
*char2b
)
21683 static struct font_metrics metrics
;
21684 unsigned code
= (XCHAR2B_BYTE1 (char2b
) << 8) | XCHAR2B_BYTE2 (char2b
);
21686 if (! font
|| code
== FONT_INVALID_CODE
)
21688 font
->driver
->text_extents (font
, &code
, 1, &metrics
);
21693 Set *LEFT and *RIGHT to the left and right overhang of GLYPH on
21694 frame F. Overhangs of glyphs other than type CHAR_GLYPH are
21695 assumed to be zero. */
21698 x_get_glyph_overhangs (struct glyph
*glyph
, struct frame
*f
, int *left
, int *right
)
21700 *left
= *right
= 0;
21702 if (glyph
->type
== CHAR_GLYPH
)
21706 struct font_metrics
*pcm
;
21708 face
= get_glyph_face_and_encoding (f
, glyph
, &char2b
, NULL
);
21709 if (face
->font
&& (pcm
= get_per_char_metric (face
->font
, &char2b
)))
21711 if (pcm
->rbearing
> pcm
->width
)
21712 *right
= pcm
->rbearing
- pcm
->width
;
21713 if (pcm
->lbearing
< 0)
21714 *left
= -pcm
->lbearing
;
21717 else if (glyph
->type
== COMPOSITE_GLYPH
)
21719 if (! glyph
->u
.cmp
.automatic
)
21721 struct composition
*cmp
= composition_table
[glyph
->u
.cmp
.id
];
21723 if (cmp
->rbearing
> cmp
->pixel_width
)
21724 *right
= cmp
->rbearing
- cmp
->pixel_width
;
21725 if (cmp
->lbearing
< 0)
21726 *left
= - cmp
->lbearing
;
21730 Lisp_Object gstring
= composition_gstring_from_id (glyph
->u
.cmp
.id
);
21731 struct font_metrics metrics
;
21733 composition_gstring_width (gstring
, glyph
->slice
.cmp
.from
,
21734 glyph
->slice
.cmp
.to
+ 1, &metrics
);
21735 if (metrics
.rbearing
> metrics
.width
)
21736 *right
= metrics
.rbearing
- metrics
.width
;
21737 if (metrics
.lbearing
< 0)
21738 *left
= - metrics
.lbearing
;
21744 /* Return the index of the first glyph preceding glyph string S that
21745 is overwritten by S because of S's left overhang. Value is -1
21746 if no glyphs are overwritten. */
21749 left_overwritten (struct glyph_string
*s
)
21753 if (s
->left_overhang
)
21756 struct glyph
*glyphs
= s
->row
->glyphs
[s
->area
];
21757 int first
= s
->first_glyph
- glyphs
;
21759 for (i
= first
- 1; i
>= 0 && x
> -s
->left_overhang
; --i
)
21760 x
-= glyphs
[i
].pixel_width
;
21771 /* Return the index of the first glyph preceding glyph string S that
21772 is overwriting S because of its right overhang. Value is -1 if no
21773 glyph in front of S overwrites S. */
21776 left_overwriting (struct glyph_string
*s
)
21779 struct glyph
*glyphs
= s
->row
->glyphs
[s
->area
];
21780 int first
= s
->first_glyph
- glyphs
;
21784 for (i
= first
- 1; i
>= 0; --i
)
21787 x_get_glyph_overhangs (glyphs
+ i
, s
->f
, &left
, &right
);
21790 x
-= glyphs
[i
].pixel_width
;
21797 /* Return the index of the last glyph following glyph string S that is
21798 overwritten by S because of S's right overhang. Value is -1 if
21799 no such glyph is found. */
21802 right_overwritten (struct glyph_string
*s
)
21806 if (s
->right_overhang
)
21809 struct glyph
*glyphs
= s
->row
->glyphs
[s
->area
];
21810 int first
= (s
->first_glyph
- glyphs
) + (s
->cmp
? 1 : s
->nchars
);
21811 int end
= s
->row
->used
[s
->area
];
21813 for (i
= first
; i
< end
&& s
->right_overhang
> x
; ++i
)
21814 x
+= glyphs
[i
].pixel_width
;
21823 /* Return the index of the last glyph following glyph string S that
21824 overwrites S because of its left overhang. Value is negative
21825 if no such glyph is found. */
21828 right_overwriting (struct glyph_string
*s
)
21831 int end
= s
->row
->used
[s
->area
];
21832 struct glyph
*glyphs
= s
->row
->glyphs
[s
->area
];
21833 int first
= (s
->first_glyph
- glyphs
) + (s
->cmp
? 1 : s
->nchars
);
21837 for (i
= first
; i
< end
; ++i
)
21840 x_get_glyph_overhangs (glyphs
+ i
, s
->f
, &left
, &right
);
21843 x
+= glyphs
[i
].pixel_width
;
21850 /* Set background width of glyph string S. START is the index of the
21851 first glyph following S. LAST_X is the right-most x-position + 1
21852 in the drawing area. */
21855 set_glyph_string_background_width (struct glyph_string
*s
, int start
, int last_x
)
21857 /* If the face of this glyph string has to be drawn to the end of
21858 the drawing area, set S->extends_to_end_of_line_p. */
21860 if (start
== s
->row
->used
[s
->area
]
21861 && s
->area
== TEXT_AREA
21862 && ((s
->row
->fill_line_p
21863 && (s
->hl
== DRAW_NORMAL_TEXT
21864 || s
->hl
== DRAW_IMAGE_RAISED
21865 || s
->hl
== DRAW_IMAGE_SUNKEN
))
21866 || s
->hl
== DRAW_MOUSE_FACE
))
21867 s
->extends_to_end_of_line_p
= 1;
21869 /* If S extends its face to the end of the line, set its
21870 background_width to the distance to the right edge of the drawing
21872 if (s
->extends_to_end_of_line_p
)
21873 s
->background_width
= last_x
- s
->x
+ 1;
21875 s
->background_width
= s
->width
;
21879 /* Compute overhangs and x-positions for glyph string S and its
21880 predecessors, or successors. X is the starting x-position for S.
21881 BACKWARD_P non-zero means process predecessors. */
21884 compute_overhangs_and_x (struct glyph_string
*s
, int x
, int backward_p
)
21890 if (FRAME_RIF (s
->f
)->compute_glyph_string_overhangs
)
21891 FRAME_RIF (s
->f
)->compute_glyph_string_overhangs (s
);
21901 if (FRAME_RIF (s
->f
)->compute_glyph_string_overhangs
)
21902 FRAME_RIF (s
->f
)->compute_glyph_string_overhangs (s
);
21912 /* The following macros are only called from draw_glyphs below.
21913 They reference the following parameters of that function directly:
21914 `w', `row', `area', and `overlap_p'
21915 as well as the following local variables:
21916 `s', `f', and `hdc' (in W32) */
21919 /* On W32, silently add local `hdc' variable to argument list of
21920 init_glyph_string. */
21921 #define INIT_GLYPH_STRING(s, char2b, w, row, area, start, hl) \
21922 init_glyph_string (s, hdc, char2b, w, row, area, start, hl)
21924 #define INIT_GLYPH_STRING(s, char2b, w, row, area, start, hl) \
21925 init_glyph_string (s, char2b, w, row, area, start, hl)
21928 /* Add a glyph string for a stretch glyph to the list of strings
21929 between HEAD and TAIL. START is the index of the stretch glyph in
21930 row area AREA of glyph row ROW. END is the index of the last glyph
21931 in that glyph row area. X is the current output position assigned
21932 to the new glyph string constructed. HL overrides that face of the
21933 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
21934 is the right-most x-position of the drawing area. */
21936 /* SunOS 4 bundled cc, barfed on continuations in the arg lists here
21937 and below -- keep them on one line. */
21938 #define BUILD_STRETCH_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
21941 s = (struct glyph_string *) alloca (sizeof *s); \
21942 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
21943 START = fill_stretch_glyph_string (s, START, END); \
21944 append_glyph_string (&HEAD, &TAIL, s); \
21950 /* Add a glyph string for an image glyph to the list of strings
21951 between HEAD and TAIL. START is the index of the image glyph in
21952 row area AREA of glyph row ROW. END is the index of the last glyph
21953 in that glyph row area. X is the current output position assigned
21954 to the new glyph string constructed. HL overrides that face of the
21955 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
21956 is the right-most x-position of the drawing area. */
21958 #define BUILD_IMAGE_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
21961 s = (struct glyph_string *) alloca (sizeof *s); \
21962 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
21963 fill_image_glyph_string (s); \
21964 append_glyph_string (&HEAD, &TAIL, s); \
21971 /* Add a glyph string for a sequence of character glyphs to the list
21972 of strings between HEAD and TAIL. START is the index of the first
21973 glyph in row area AREA of glyph row ROW that is part of the new
21974 glyph string. END is the index of the last glyph in that glyph row
21975 area. X is the current output position assigned to the new glyph
21976 string constructed. HL overrides that face of the glyph; e.g. it
21977 is DRAW_CURSOR if a cursor has to be drawn. LAST_X is the
21978 right-most x-position of the drawing area. */
21980 #define BUILD_CHAR_GLYPH_STRINGS(START, END, HEAD, TAIL, HL, X, LAST_X) \
21986 face_id = (row)->glyphs[area][START].face_id; \
21988 s = (struct glyph_string *) alloca (sizeof *s); \
21989 char2b = (XChar2b *) alloca ((END - START) * sizeof *char2b); \
21990 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
21991 append_glyph_string (&HEAD, &TAIL, s); \
21993 START = fill_glyph_string (s, face_id, START, END, overlaps); \
21998 /* Add a glyph string for a composite sequence to the list of strings
21999 between HEAD and TAIL. START is the index of the first glyph in
22000 row area AREA of glyph row ROW that is part of the new glyph
22001 string. END is the index of the last glyph in that glyph row area.
22002 X is the current output position assigned to the new glyph string
22003 constructed. HL overrides that face of the glyph; e.g. it is
22004 DRAW_CURSOR if a cursor has to be drawn. LAST_X is the right-most
22005 x-position of the drawing area. */
22007 #define BUILD_COMPOSITE_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
22009 int face_id = (row)->glyphs[area][START].face_id; \
22010 struct face *base_face = FACE_FROM_ID (f, face_id); \
22011 int cmp_id = (row)->glyphs[area][START].u.cmp.id; \
22012 struct composition *cmp = composition_table[cmp_id]; \
22014 struct glyph_string *first_s IF_LINT (= NULL); \
22017 char2b = (XChar2b *) alloca ((sizeof *char2b) * cmp->glyph_len); \
22019 /* Make glyph_strings for each glyph sequence that is drawable by \
22020 the same face, and append them to HEAD/TAIL. */ \
22021 for (n = 0; n < cmp->glyph_len;) \
22023 s = (struct glyph_string *) alloca (sizeof *s); \
22024 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
22025 append_glyph_string (&(HEAD), &(TAIL), s); \
22031 n = fill_composite_glyph_string (s, base_face, overlaps); \
22039 /* Add a glyph string for a glyph-string sequence to the list of strings
22040 between HEAD and TAIL. */
22042 #define BUILD_GSTRING_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
22046 Lisp_Object gstring; \
22048 face_id = (row)->glyphs[area][START].face_id; \
22049 gstring = (composition_gstring_from_id \
22050 ((row)->glyphs[area][START].u.cmp.id)); \
22051 s = (struct glyph_string *) alloca (sizeof *s); \
22052 char2b = (XChar2b *) alloca ((sizeof *char2b) \
22053 * LGSTRING_GLYPH_LEN (gstring)); \
22054 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
22055 append_glyph_string (&(HEAD), &(TAIL), s); \
22057 START = fill_gstring_glyph_string (s, face_id, START, END, overlaps); \
22061 /* Add a glyph string for a sequence of glyphless character's glyphs
22062 to the list of strings between HEAD and TAIL. The meanings of
22063 arguments are the same as those of BUILD_CHAR_GLYPH_STRINGS. */
22065 #define BUILD_GLYPHLESS_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
22070 face_id = (row)->glyphs[area][START].face_id; \
22072 s = (struct glyph_string *) alloca (sizeof *s); \
22073 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
22074 append_glyph_string (&HEAD, &TAIL, s); \
22076 START = fill_glyphless_glyph_string (s, face_id, START, END, \
22082 /* Build a list of glyph strings between HEAD and TAIL for the glyphs
22083 of AREA of glyph row ROW on window W between indices START and END.
22084 HL overrides the face for drawing glyph strings, e.g. it is
22085 DRAW_CURSOR to draw a cursor. X and LAST_X are start and end
22086 x-positions of the drawing area.
22088 This is an ugly monster macro construct because we must use alloca
22089 to allocate glyph strings (because draw_glyphs can be called
22090 asynchronously). */
22092 #define BUILD_GLYPH_STRINGS(START, END, HEAD, TAIL, HL, X, LAST_X) \
22095 HEAD = TAIL = NULL; \
22096 while (START < END) \
22098 struct glyph *first_glyph = (row)->glyphs[area] + START; \
22099 switch (first_glyph->type) \
22102 BUILD_CHAR_GLYPH_STRINGS (START, END, HEAD, TAIL, \
22106 case COMPOSITE_GLYPH: \
22107 if (first_glyph->u.cmp.automatic) \
22108 BUILD_GSTRING_GLYPH_STRING (START, END, HEAD, TAIL, \
22111 BUILD_COMPOSITE_GLYPH_STRING (START, END, HEAD, TAIL, \
22115 case STRETCH_GLYPH: \
22116 BUILD_STRETCH_GLYPH_STRING (START, END, HEAD, TAIL, \
22120 case IMAGE_GLYPH: \
22121 BUILD_IMAGE_GLYPH_STRING (START, END, HEAD, TAIL, \
22125 case GLYPHLESS_GLYPH: \
22126 BUILD_GLYPHLESS_GLYPH_STRING (START, END, HEAD, TAIL, \
22136 set_glyph_string_background_width (s, START, LAST_X); \
22143 /* Draw glyphs between START and END in AREA of ROW on window W,
22144 starting at x-position X. X is relative to AREA in W. HL is a
22145 face-override with the following meaning:
22147 DRAW_NORMAL_TEXT draw normally
22148 DRAW_CURSOR draw in cursor face
22149 DRAW_MOUSE_FACE draw in mouse face.
22150 DRAW_INVERSE_VIDEO draw in mode line face
22151 DRAW_IMAGE_SUNKEN draw an image with a sunken relief around it
22152 DRAW_IMAGE_RAISED draw an image with a raised relief around it
22154 If OVERLAPS is non-zero, draw only the foreground of characters and
22155 clip to the physical height of ROW. Non-zero value also defines
22156 the overlapping part to be drawn:
22158 OVERLAPS_PRED overlap with preceding rows
22159 OVERLAPS_SUCC overlap with succeeding rows
22160 OVERLAPS_BOTH overlap with both preceding/succeeding rows
22161 OVERLAPS_ERASED_CURSOR overlap with erased cursor area
22163 Value is the x-position reached, relative to AREA of W. */
22166 draw_glyphs (struct window
*w
, int x
, struct glyph_row
*row
,
22167 enum glyph_row_area area
, EMACS_INT start
, EMACS_INT end
,
22168 enum draw_glyphs_face hl
, int overlaps
)
22170 struct glyph_string
*head
, *tail
;
22171 struct glyph_string
*s
;
22172 struct glyph_string
*clip_head
= NULL
, *clip_tail
= NULL
;
22173 int i
, j
, x_reached
, last_x
, area_left
= 0;
22174 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
22177 ALLOCATE_HDC (hdc
, f
);
22179 /* Let's rather be paranoid than getting a SEGV. */
22180 end
= min (end
, row
->used
[area
]);
22181 start
= max (0, start
);
22182 start
= min (end
, start
);
22184 /* Translate X to frame coordinates. Set last_x to the right
22185 end of the drawing area. */
22186 if (row
->full_width_p
)
22188 /* X is relative to the left edge of W, without scroll bars
22190 area_left
= WINDOW_LEFT_EDGE_X (w
);
22191 last_x
= WINDOW_LEFT_EDGE_X (w
) + WINDOW_TOTAL_WIDTH (w
);
22195 area_left
= window_box_left (w
, area
);
22196 last_x
= area_left
+ window_box_width (w
, area
);
22200 /* Build a doubly-linked list of glyph_string structures between
22201 head and tail from what we have to draw. Note that the macro
22202 BUILD_GLYPH_STRINGS will modify its start parameter. That's
22203 the reason we use a separate variable `i'. */
22205 BUILD_GLYPH_STRINGS (i
, end
, head
, tail
, hl
, x
, last_x
);
22207 x_reached
= tail
->x
+ tail
->background_width
;
22211 /* If there are any glyphs with lbearing < 0 or rbearing > width in
22212 the row, redraw some glyphs in front or following the glyph
22213 strings built above. */
22214 if (head
&& !overlaps
&& row
->contains_overlapping_glyphs_p
)
22216 struct glyph_string
*h
, *t
;
22217 Mouse_HLInfo
*hlinfo
= MOUSE_HL_INFO (f
);
22218 int mouse_beg_col
IF_LINT (= 0), mouse_end_col
IF_LINT (= 0);
22219 int check_mouse_face
= 0;
22222 /* If mouse highlighting is on, we may need to draw adjacent
22223 glyphs using mouse-face highlighting. */
22224 if (area
== TEXT_AREA
&& row
->mouse_face_p
)
22226 struct glyph_row
*mouse_beg_row
, *mouse_end_row
;
22228 mouse_beg_row
= MATRIX_ROW (w
->current_matrix
, hlinfo
->mouse_face_beg_row
);
22229 mouse_end_row
= MATRIX_ROW (w
->current_matrix
, hlinfo
->mouse_face_end_row
);
22231 if (row
>= mouse_beg_row
&& row
<= mouse_end_row
)
22233 check_mouse_face
= 1;
22234 mouse_beg_col
= (row
== mouse_beg_row
)
22235 ? hlinfo
->mouse_face_beg_col
: 0;
22236 mouse_end_col
= (row
== mouse_end_row
)
22237 ? hlinfo
->mouse_face_end_col
22238 : row
->used
[TEXT_AREA
];
22242 /* Compute overhangs for all glyph strings. */
22243 if (FRAME_RIF (f
)->compute_glyph_string_overhangs
)
22244 for (s
= head
; s
; s
= s
->next
)
22245 FRAME_RIF (f
)->compute_glyph_string_overhangs (s
);
22247 /* Prepend glyph strings for glyphs in front of the first glyph
22248 string that are overwritten because of the first glyph
22249 string's left overhang. The background of all strings
22250 prepended must be drawn because the first glyph string
22252 i
= left_overwritten (head
);
22255 enum draw_glyphs_face overlap_hl
;
22257 /* If this row contains mouse highlighting, attempt to draw
22258 the overlapped glyphs with the correct highlight. This
22259 code fails if the overlap encompasses more than one glyph
22260 and mouse-highlight spans only some of these glyphs.
22261 However, making it work perfectly involves a lot more
22262 code, and I don't know if the pathological case occurs in
22263 practice, so we'll stick to this for now. --- cyd */
22264 if (check_mouse_face
22265 && mouse_beg_col
< start
&& mouse_end_col
> i
)
22266 overlap_hl
= DRAW_MOUSE_FACE
;
22268 overlap_hl
= DRAW_NORMAL_TEXT
;
22271 BUILD_GLYPH_STRINGS (j
, start
, h
, t
,
22272 overlap_hl
, dummy_x
, last_x
);
22274 compute_overhangs_and_x (t
, head
->x
, 1);
22275 prepend_glyph_string_lists (&head
, &tail
, h
, t
);
22279 /* Prepend glyph strings for glyphs in front of the first glyph
22280 string that overwrite that glyph string because of their
22281 right overhang. For these strings, only the foreground must
22282 be drawn, because it draws over the glyph string at `head'.
22283 The background must not be drawn because this would overwrite
22284 right overhangs of preceding glyphs for which no glyph
22286 i
= left_overwriting (head
);
22289 enum draw_glyphs_face overlap_hl
;
22291 if (check_mouse_face
22292 && mouse_beg_col
< start
&& mouse_end_col
> i
)
22293 overlap_hl
= DRAW_MOUSE_FACE
;
22295 overlap_hl
= DRAW_NORMAL_TEXT
;
22298 BUILD_GLYPH_STRINGS (i
, start
, h
, t
,
22299 overlap_hl
, dummy_x
, last_x
);
22300 for (s
= h
; s
; s
= s
->next
)
22301 s
->background_filled_p
= 1;
22302 compute_overhangs_and_x (t
, head
->x
, 1);
22303 prepend_glyph_string_lists (&head
, &tail
, h
, t
);
22306 /* Append glyphs strings for glyphs following the last glyph
22307 string tail that are overwritten by tail. The background of
22308 these strings has to be drawn because tail's foreground draws
22310 i
= right_overwritten (tail
);
22313 enum draw_glyphs_face overlap_hl
;
22315 if (check_mouse_face
22316 && mouse_beg_col
< i
&& mouse_end_col
> end
)
22317 overlap_hl
= DRAW_MOUSE_FACE
;
22319 overlap_hl
= DRAW_NORMAL_TEXT
;
22321 BUILD_GLYPH_STRINGS (end
, i
, h
, t
,
22322 overlap_hl
, x
, last_x
);
22323 /* Because BUILD_GLYPH_STRINGS updates the first argument,
22324 we don't have `end = i;' here. */
22325 compute_overhangs_and_x (h
, tail
->x
+ tail
->width
, 0);
22326 append_glyph_string_lists (&head
, &tail
, h
, t
);
22330 /* Append glyph strings for glyphs following the last glyph
22331 string tail that overwrite tail. The foreground of such
22332 glyphs has to be drawn because it writes into the background
22333 of tail. The background must not be drawn because it could
22334 paint over the foreground of following glyphs. */
22335 i
= right_overwriting (tail
);
22338 enum draw_glyphs_face overlap_hl
;
22339 if (check_mouse_face
22340 && mouse_beg_col
< i
&& mouse_end_col
> end
)
22341 overlap_hl
= DRAW_MOUSE_FACE
;
22343 overlap_hl
= DRAW_NORMAL_TEXT
;
22346 i
++; /* We must include the Ith glyph. */
22347 BUILD_GLYPH_STRINGS (end
, i
, h
, t
,
22348 overlap_hl
, x
, last_x
);
22349 for (s
= h
; s
; s
= s
->next
)
22350 s
->background_filled_p
= 1;
22351 compute_overhangs_and_x (h
, tail
->x
+ tail
->width
, 0);
22352 append_glyph_string_lists (&head
, &tail
, h
, t
);
22354 if (clip_head
|| clip_tail
)
22355 for (s
= head
; s
; s
= s
->next
)
22357 s
->clip_head
= clip_head
;
22358 s
->clip_tail
= clip_tail
;
22362 /* Draw all strings. */
22363 for (s
= head
; s
; s
= s
->next
)
22364 FRAME_RIF (f
)->draw_glyph_string (s
);
22367 /* When focus a sole frame and move horizontally, this sets on_p to 0
22368 causing a failure to erase prev cursor position. */
22369 if (area
== TEXT_AREA
22370 && !row
->full_width_p
22371 /* When drawing overlapping rows, only the glyph strings'
22372 foreground is drawn, which doesn't erase a cursor
22376 int x0
= clip_head
? clip_head
->x
: (head
? head
->x
: x
);
22377 int x1
= (clip_tail
? clip_tail
->x
+ clip_tail
->background_width
22378 : (tail
? tail
->x
+ tail
->background_width
: x
));
22382 notice_overwritten_cursor (w
, TEXT_AREA
, x0
, x1
,
22383 row
->y
, MATRIX_ROW_BOTTOM_Y (row
));
22387 /* Value is the x-position up to which drawn, relative to AREA of W.
22388 This doesn't include parts drawn because of overhangs. */
22389 if (row
->full_width_p
)
22390 x_reached
= FRAME_TO_WINDOW_PIXEL_X (w
, x_reached
);
22392 x_reached
-= area_left
;
22394 RELEASE_HDC (hdc
, f
);
22399 /* Expand row matrix if too narrow. Don't expand if area
22402 #define IT_EXPAND_MATRIX_WIDTH(it, area) \
22404 if (!fonts_changed_p \
22405 && (it->glyph_row->glyphs[area] \
22406 < it->glyph_row->glyphs[area + 1])) \
22408 it->w->ncols_scale_factor++; \
22409 fonts_changed_p = 1; \
22413 /* Store one glyph for IT->char_to_display in IT->glyph_row.
22414 Called from x_produce_glyphs when IT->glyph_row is non-null. */
22417 append_glyph (struct it
*it
)
22419 struct glyph
*glyph
;
22420 enum glyph_row_area area
= it
->area
;
22422 xassert (it
->glyph_row
);
22423 xassert (it
->char_to_display
!= '\n' && it
->char_to_display
!= '\t');
22425 glyph
= it
->glyph_row
->glyphs
[area
] + it
->glyph_row
->used
[area
];
22426 if (glyph
< it
->glyph_row
->glyphs
[area
+ 1])
22428 /* If the glyph row is reversed, we need to prepend the glyph
22429 rather than append it. */
22430 if (it
->glyph_row
->reversed_p
&& area
== TEXT_AREA
)
22434 /* Make room for the additional glyph. */
22435 for (g
= glyph
- 1; g
>= it
->glyph_row
->glyphs
[area
]; g
--)
22437 glyph
= it
->glyph_row
->glyphs
[area
];
22439 glyph
->charpos
= CHARPOS (it
->position
);
22440 glyph
->object
= it
->object
;
22441 if (it
->pixel_width
> 0)
22443 glyph
->pixel_width
= it
->pixel_width
;
22444 glyph
->padding_p
= 0;
22448 /* Assure at least 1-pixel width. Otherwise, cursor can't
22449 be displayed correctly. */
22450 glyph
->pixel_width
= 1;
22451 glyph
->padding_p
= 1;
22453 glyph
->ascent
= it
->ascent
;
22454 glyph
->descent
= it
->descent
;
22455 glyph
->voffset
= it
->voffset
;
22456 glyph
->type
= CHAR_GLYPH
;
22457 glyph
->avoid_cursor_p
= it
->avoid_cursor_p
;
22458 glyph
->multibyte_p
= it
->multibyte_p
;
22459 glyph
->left_box_line_p
= it
->start_of_box_run_p
;
22460 glyph
->right_box_line_p
= it
->end_of_box_run_p
;
22461 glyph
->overlaps_vertically_p
= (it
->phys_ascent
> it
->ascent
22462 || it
->phys_descent
> it
->descent
);
22463 glyph
->glyph_not_available_p
= it
->glyph_not_available_p
;
22464 glyph
->face_id
= it
->face_id
;
22465 glyph
->u
.ch
= it
->char_to_display
;
22466 glyph
->slice
.img
= null_glyph_slice
;
22467 glyph
->font_type
= FONT_TYPE_UNKNOWN
;
22470 glyph
->resolved_level
= it
->bidi_it
.resolved_level
;
22471 if ((it
->bidi_it
.type
& 7) != it
->bidi_it
.type
)
22473 glyph
->bidi_type
= it
->bidi_it
.type
;
22477 glyph
->resolved_level
= 0;
22478 glyph
->bidi_type
= UNKNOWN_BT
;
22480 ++it
->glyph_row
->used
[area
];
22483 IT_EXPAND_MATRIX_WIDTH (it
, area
);
22486 /* Store one glyph for the composition IT->cmp_it.id in
22487 IT->glyph_row. Called from x_produce_glyphs when IT->glyph_row is
22491 append_composite_glyph (struct it
*it
)
22493 struct glyph
*glyph
;
22494 enum glyph_row_area area
= it
->area
;
22496 xassert (it
->glyph_row
);
22498 glyph
= it
->glyph_row
->glyphs
[area
] + it
->glyph_row
->used
[area
];
22499 if (glyph
< it
->glyph_row
->glyphs
[area
+ 1])
22501 /* If the glyph row is reversed, we need to prepend the glyph
22502 rather than append it. */
22503 if (it
->glyph_row
->reversed_p
&& it
->area
== TEXT_AREA
)
22507 /* Make room for the new glyph. */
22508 for (g
= glyph
- 1; g
>= it
->glyph_row
->glyphs
[it
->area
]; g
--)
22510 glyph
= it
->glyph_row
->glyphs
[it
->area
];
22512 glyph
->charpos
= it
->cmp_it
.charpos
;
22513 glyph
->object
= it
->object
;
22514 glyph
->pixel_width
= it
->pixel_width
;
22515 glyph
->ascent
= it
->ascent
;
22516 glyph
->descent
= it
->descent
;
22517 glyph
->voffset
= it
->voffset
;
22518 glyph
->type
= COMPOSITE_GLYPH
;
22519 if (it
->cmp_it
.ch
< 0)
22521 glyph
->u
.cmp
.automatic
= 0;
22522 glyph
->u
.cmp
.id
= it
->cmp_it
.id
;
22523 glyph
->slice
.cmp
.from
= glyph
->slice
.cmp
.to
= 0;
22527 glyph
->u
.cmp
.automatic
= 1;
22528 glyph
->u
.cmp
.id
= it
->cmp_it
.id
;
22529 glyph
->slice
.cmp
.from
= it
->cmp_it
.from
;
22530 glyph
->slice
.cmp
.to
= it
->cmp_it
.to
- 1;
22532 glyph
->avoid_cursor_p
= it
->avoid_cursor_p
;
22533 glyph
->multibyte_p
= it
->multibyte_p
;
22534 glyph
->left_box_line_p
= it
->start_of_box_run_p
;
22535 glyph
->right_box_line_p
= it
->end_of_box_run_p
;
22536 glyph
->overlaps_vertically_p
= (it
->phys_ascent
> it
->ascent
22537 || it
->phys_descent
> it
->descent
);
22538 glyph
->padding_p
= 0;
22539 glyph
->glyph_not_available_p
= 0;
22540 glyph
->face_id
= it
->face_id
;
22541 glyph
->font_type
= FONT_TYPE_UNKNOWN
;
22544 glyph
->resolved_level
= it
->bidi_it
.resolved_level
;
22545 if ((it
->bidi_it
.type
& 7) != it
->bidi_it
.type
)
22547 glyph
->bidi_type
= it
->bidi_it
.type
;
22549 ++it
->glyph_row
->used
[area
];
22552 IT_EXPAND_MATRIX_WIDTH (it
, area
);
22556 /* Change IT->ascent and IT->height according to the setting of
22560 take_vertical_position_into_account (struct it
*it
)
22564 if (it
->voffset
< 0)
22565 /* Increase the ascent so that we can display the text higher
22567 it
->ascent
-= it
->voffset
;
22569 /* Increase the descent so that we can display the text lower
22571 it
->descent
+= it
->voffset
;
22576 /* Produce glyphs/get display metrics for the image IT is loaded with.
22577 See the description of struct display_iterator in dispextern.h for
22578 an overview of struct display_iterator. */
22581 produce_image_glyph (struct it
*it
)
22585 int glyph_ascent
, crop
;
22586 struct glyph_slice slice
;
22588 xassert (it
->what
== IT_IMAGE
);
22590 face
= FACE_FROM_ID (it
->f
, it
->face_id
);
22592 /* Make sure X resources of the face is loaded. */
22593 PREPARE_FACE_FOR_DISPLAY (it
->f
, face
);
22595 if (it
->image_id
< 0)
22597 /* Fringe bitmap. */
22598 it
->ascent
= it
->phys_ascent
= 0;
22599 it
->descent
= it
->phys_descent
= 0;
22600 it
->pixel_width
= 0;
22605 img
= IMAGE_FROM_ID (it
->f
, it
->image_id
);
22607 /* Make sure X resources of the image is loaded. */
22608 prepare_image_for_display (it
->f
, img
);
22610 slice
.x
= slice
.y
= 0;
22611 slice
.width
= img
->width
;
22612 slice
.height
= img
->height
;
22614 if (INTEGERP (it
->slice
.x
))
22615 slice
.x
= XINT (it
->slice
.x
);
22616 else if (FLOATP (it
->slice
.x
))
22617 slice
.x
= XFLOAT_DATA (it
->slice
.x
) * img
->width
;
22619 if (INTEGERP (it
->slice
.y
))
22620 slice
.y
= XINT (it
->slice
.y
);
22621 else if (FLOATP (it
->slice
.y
))
22622 slice
.y
= XFLOAT_DATA (it
->slice
.y
) * img
->height
;
22624 if (INTEGERP (it
->slice
.width
))
22625 slice
.width
= XINT (it
->slice
.width
);
22626 else if (FLOATP (it
->slice
.width
))
22627 slice
.width
= XFLOAT_DATA (it
->slice
.width
) * img
->width
;
22629 if (INTEGERP (it
->slice
.height
))
22630 slice
.height
= XINT (it
->slice
.height
);
22631 else if (FLOATP (it
->slice
.height
))
22632 slice
.height
= XFLOAT_DATA (it
->slice
.height
) * img
->height
;
22634 if (slice
.x
>= img
->width
)
22635 slice
.x
= img
->width
;
22636 if (slice
.y
>= img
->height
)
22637 slice
.y
= img
->height
;
22638 if (slice
.x
+ slice
.width
>= img
->width
)
22639 slice
.width
= img
->width
- slice
.x
;
22640 if (slice
.y
+ slice
.height
> img
->height
)
22641 slice
.height
= img
->height
- slice
.y
;
22643 if (slice
.width
== 0 || slice
.height
== 0)
22646 it
->ascent
= it
->phys_ascent
= glyph_ascent
= image_ascent (img
, face
, &slice
);
22648 it
->descent
= slice
.height
- glyph_ascent
;
22650 it
->descent
+= img
->vmargin
;
22651 if (slice
.y
+ slice
.height
== img
->height
)
22652 it
->descent
+= img
->vmargin
;
22653 it
->phys_descent
= it
->descent
;
22655 it
->pixel_width
= slice
.width
;
22657 it
->pixel_width
+= img
->hmargin
;
22658 if (slice
.x
+ slice
.width
== img
->width
)
22659 it
->pixel_width
+= img
->hmargin
;
22661 /* It's quite possible for images to have an ascent greater than
22662 their height, so don't get confused in that case. */
22663 if (it
->descent
< 0)
22668 if (face
->box
!= FACE_NO_BOX
)
22670 if (face
->box_line_width
> 0)
22673 it
->ascent
+= face
->box_line_width
;
22674 if (slice
.y
+ slice
.height
== img
->height
)
22675 it
->descent
+= face
->box_line_width
;
22678 if (it
->start_of_box_run_p
&& slice
.x
== 0)
22679 it
->pixel_width
+= eabs (face
->box_line_width
);
22680 if (it
->end_of_box_run_p
&& slice
.x
+ slice
.width
== img
->width
)
22681 it
->pixel_width
+= eabs (face
->box_line_width
);
22684 take_vertical_position_into_account (it
);
22686 /* Automatically crop wide image glyphs at right edge so we can
22687 draw the cursor on same display row. */
22688 if ((crop
= it
->pixel_width
- (it
->last_visible_x
- it
->current_x
), crop
> 0)
22689 && (it
->hpos
== 0 || it
->pixel_width
> it
->last_visible_x
/ 4))
22691 it
->pixel_width
-= crop
;
22692 slice
.width
-= crop
;
22697 struct glyph
*glyph
;
22698 enum glyph_row_area area
= it
->area
;
22700 glyph
= it
->glyph_row
->glyphs
[area
] + it
->glyph_row
->used
[area
];
22701 if (glyph
< it
->glyph_row
->glyphs
[area
+ 1])
22703 glyph
->charpos
= CHARPOS (it
->position
);
22704 glyph
->object
= it
->object
;
22705 glyph
->pixel_width
= it
->pixel_width
;
22706 glyph
->ascent
= glyph_ascent
;
22707 glyph
->descent
= it
->descent
;
22708 glyph
->voffset
= it
->voffset
;
22709 glyph
->type
= IMAGE_GLYPH
;
22710 glyph
->avoid_cursor_p
= it
->avoid_cursor_p
;
22711 glyph
->multibyte_p
= it
->multibyte_p
;
22712 glyph
->left_box_line_p
= it
->start_of_box_run_p
;
22713 glyph
->right_box_line_p
= it
->end_of_box_run_p
;
22714 glyph
->overlaps_vertically_p
= 0;
22715 glyph
->padding_p
= 0;
22716 glyph
->glyph_not_available_p
= 0;
22717 glyph
->face_id
= it
->face_id
;
22718 glyph
->u
.img_id
= img
->id
;
22719 glyph
->slice
.img
= slice
;
22720 glyph
->font_type
= FONT_TYPE_UNKNOWN
;
22723 glyph
->resolved_level
= it
->bidi_it
.resolved_level
;
22724 if ((it
->bidi_it
.type
& 7) != it
->bidi_it
.type
)
22726 glyph
->bidi_type
= it
->bidi_it
.type
;
22728 ++it
->glyph_row
->used
[area
];
22731 IT_EXPAND_MATRIX_WIDTH (it
, area
);
22736 /* Append a stretch glyph to IT->glyph_row. OBJECT is the source
22737 of the glyph, WIDTH and HEIGHT are the width and height of the
22738 stretch. ASCENT is the ascent of the glyph (0 <= ASCENT <= HEIGHT). */
22741 append_stretch_glyph (struct it
*it
, Lisp_Object object
,
22742 int width
, int height
, int ascent
)
22744 struct glyph
*glyph
;
22745 enum glyph_row_area area
= it
->area
;
22747 xassert (ascent
>= 0 && ascent
<= height
);
22749 glyph
= it
->glyph_row
->glyphs
[area
] + it
->glyph_row
->used
[area
];
22750 if (glyph
< it
->glyph_row
->glyphs
[area
+ 1])
22752 /* If the glyph row is reversed, we need to prepend the glyph
22753 rather than append it. */
22754 if (it
->glyph_row
->reversed_p
&& area
== TEXT_AREA
)
22758 /* Make room for the additional glyph. */
22759 for (g
= glyph
- 1; g
>= it
->glyph_row
->glyphs
[area
]; g
--)
22761 glyph
= it
->glyph_row
->glyphs
[area
];
22763 glyph
->charpos
= CHARPOS (it
->position
);
22764 glyph
->object
= object
;
22765 glyph
->pixel_width
= width
;
22766 glyph
->ascent
= ascent
;
22767 glyph
->descent
= height
- ascent
;
22768 glyph
->voffset
= it
->voffset
;
22769 glyph
->type
= STRETCH_GLYPH
;
22770 glyph
->avoid_cursor_p
= it
->avoid_cursor_p
;
22771 glyph
->multibyte_p
= it
->multibyte_p
;
22772 glyph
->left_box_line_p
= it
->start_of_box_run_p
;
22773 glyph
->right_box_line_p
= it
->end_of_box_run_p
;
22774 glyph
->overlaps_vertically_p
= 0;
22775 glyph
->padding_p
= 0;
22776 glyph
->glyph_not_available_p
= 0;
22777 glyph
->face_id
= it
->face_id
;
22778 glyph
->u
.stretch
.ascent
= ascent
;
22779 glyph
->u
.stretch
.height
= height
;
22780 glyph
->slice
.img
= null_glyph_slice
;
22781 glyph
->font_type
= FONT_TYPE_UNKNOWN
;
22784 glyph
->resolved_level
= it
->bidi_it
.resolved_level
;
22785 if ((it
->bidi_it
.type
& 7) != it
->bidi_it
.type
)
22787 glyph
->bidi_type
= it
->bidi_it
.type
;
22791 glyph
->resolved_level
= 0;
22792 glyph
->bidi_type
= UNKNOWN_BT
;
22794 ++it
->glyph_row
->used
[area
];
22797 IT_EXPAND_MATRIX_WIDTH (it
, area
);
22801 /* Produce a stretch glyph for iterator IT. IT->object is the value
22802 of the glyph property displayed. The value must be a list
22803 `(space KEYWORD VALUE ...)' with the following KEYWORD/VALUE pairs
22806 1. `:width WIDTH' specifies that the space should be WIDTH *
22807 canonical char width wide. WIDTH may be an integer or floating
22810 2. `:relative-width FACTOR' specifies that the width of the stretch
22811 should be computed from the width of the first character having the
22812 `glyph' property, and should be FACTOR times that width.
22814 3. `:align-to HPOS' specifies that the space should be wide enough
22815 to reach HPOS, a value in canonical character units.
22817 Exactly one of the above pairs must be present.
22819 4. `:height HEIGHT' specifies that the height of the stretch produced
22820 should be HEIGHT, measured in canonical character units.
22822 5. `:relative-height FACTOR' specifies that the height of the
22823 stretch should be FACTOR times the height of the characters having
22824 the glyph property.
22826 Either none or exactly one of 4 or 5 must be present.
22828 6. `:ascent ASCENT' specifies that ASCENT percent of the height
22829 of the stretch should be used for the ascent of the stretch.
22830 ASCENT must be in the range 0 <= ASCENT <= 100. */
22833 produce_stretch_glyph (struct it
*it
)
22835 /* (space :width WIDTH :height HEIGHT ...) */
22836 Lisp_Object prop
, plist
;
22837 int width
= 0, height
= 0, align_to
= -1;
22838 int zero_width_ok_p
= 0, zero_height_ok_p
= 0;
22841 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
22842 struct font
*font
= face
->font
? face
->font
: FRAME_FONT (it
->f
);
22844 PREPARE_FACE_FOR_DISPLAY (it
->f
, face
);
22846 /* List should start with `space'. */
22847 xassert (CONSP (it
->object
) && EQ (XCAR (it
->object
), Qspace
));
22848 plist
= XCDR (it
->object
);
22850 /* Compute the width of the stretch. */
22851 if ((prop
= Fplist_get (plist
, QCwidth
), !NILP (prop
))
22852 && calc_pixel_width_or_height (&tem
, it
, prop
, font
, 1, 0))
22854 /* Absolute width `:width WIDTH' specified and valid. */
22855 zero_width_ok_p
= 1;
22858 else if (prop
= Fplist_get (plist
, QCrelative_width
),
22861 /* Relative width `:relative-width FACTOR' specified and valid.
22862 Compute the width of the characters having the `glyph'
22865 unsigned char *p
= BYTE_POS_ADDR (IT_BYTEPOS (*it
));
22868 if (it
->multibyte_p
)
22869 it2
.c
= it2
.char_to_display
= STRING_CHAR_AND_LENGTH (p
, it2
.len
);
22872 it2
.c
= it2
.char_to_display
= *p
, it2
.len
= 1;
22873 if (! ASCII_CHAR_P (it2
.c
))
22874 it2
.char_to_display
= BYTE8_TO_CHAR (it2
.c
);
22877 it2
.glyph_row
= NULL
;
22878 it2
.what
= IT_CHARACTER
;
22879 x_produce_glyphs (&it2
);
22880 width
= NUMVAL (prop
) * it2
.pixel_width
;
22882 else if ((prop
= Fplist_get (plist
, QCalign_to
), !NILP (prop
))
22883 && calc_pixel_width_or_height (&tem
, it
, prop
, font
, 1, &align_to
))
22885 if (it
->glyph_row
== NULL
|| !it
->glyph_row
->mode_line_p
)
22886 align_to
= (align_to
< 0
22888 : align_to
- window_box_left_offset (it
->w
, TEXT_AREA
));
22889 else if (align_to
< 0)
22890 align_to
= window_box_left_offset (it
->w
, TEXT_AREA
);
22891 width
= max (0, (int)tem
+ align_to
- it
->current_x
);
22892 zero_width_ok_p
= 1;
22895 /* Nothing specified -> width defaults to canonical char width. */
22896 width
= FRAME_COLUMN_WIDTH (it
->f
);
22898 if (width
<= 0 && (width
< 0 || !zero_width_ok_p
))
22901 /* Compute height. */
22902 if ((prop
= Fplist_get (plist
, QCheight
), !NILP (prop
))
22903 && calc_pixel_width_or_height (&tem
, it
, prop
, font
, 0, 0))
22906 zero_height_ok_p
= 1;
22908 else if (prop
= Fplist_get (plist
, QCrelative_height
),
22910 height
= FONT_HEIGHT (font
) * NUMVAL (prop
);
22912 height
= FONT_HEIGHT (font
);
22914 if (height
<= 0 && (height
< 0 || !zero_height_ok_p
))
22917 /* Compute percentage of height used for ascent. If
22918 `:ascent ASCENT' is present and valid, use that. Otherwise,
22919 derive the ascent from the font in use. */
22920 if (prop
= Fplist_get (plist
, QCascent
),
22921 NUMVAL (prop
) > 0 && NUMVAL (prop
) <= 100)
22922 ascent
= height
* NUMVAL (prop
) / 100.0;
22923 else if (!NILP (prop
)
22924 && calc_pixel_width_or_height (&tem
, it
, prop
, font
, 0, 0))
22925 ascent
= min (max (0, (int)tem
), height
);
22927 ascent
= (height
* FONT_BASE (font
)) / FONT_HEIGHT (font
);
22929 if (width
> 0 && it
->line_wrap
!= TRUNCATE
22930 && it
->current_x
+ width
> it
->last_visible_x
)
22931 width
= it
->last_visible_x
- it
->current_x
- 1;
22933 if (width
> 0 && height
> 0 && it
->glyph_row
)
22935 Lisp_Object object
= it
->stack
[it
->sp
- 1].string
;
22936 if (!STRINGP (object
))
22937 object
= it
->w
->buffer
;
22938 append_stretch_glyph (it
, object
, width
, height
, ascent
);
22941 it
->pixel_width
= width
;
22942 it
->ascent
= it
->phys_ascent
= ascent
;
22943 it
->descent
= it
->phys_descent
= height
- it
->ascent
;
22944 it
->nglyphs
= width
> 0 && height
> 0 ? 1 : 0;
22946 take_vertical_position_into_account (it
);
22949 /* Calculate line-height and line-spacing properties.
22950 An integer value specifies explicit pixel value.
22951 A float value specifies relative value to current face height.
22952 A cons (float . face-name) specifies relative value to
22953 height of specified face font.
22955 Returns height in pixels, or nil. */
22959 calc_line_height_property (struct it
*it
, Lisp_Object val
, struct font
*font
,
22960 int boff
, int override
)
22962 Lisp_Object face_name
= Qnil
;
22963 int ascent
, descent
, height
;
22965 if (NILP (val
) || INTEGERP (val
) || (override
&& EQ (val
, Qt
)))
22970 face_name
= XCAR (val
);
22972 if (!NUMBERP (val
))
22973 val
= make_number (1);
22974 if (NILP (face_name
))
22976 height
= it
->ascent
+ it
->descent
;
22981 if (NILP (face_name
))
22983 font
= FRAME_FONT (it
->f
);
22984 boff
= FRAME_BASELINE_OFFSET (it
->f
);
22986 else if (EQ (face_name
, Qt
))
22995 face_id
= lookup_named_face (it
->f
, face_name
, 0);
22997 return make_number (-1);
22999 face
= FACE_FROM_ID (it
->f
, face_id
);
23002 return make_number (-1);
23003 boff
= font
->baseline_offset
;
23004 if (font
->vertical_centering
)
23005 boff
= VCENTER_BASELINE_OFFSET (font
, it
->f
) - boff
;
23008 ascent
= FONT_BASE (font
) + boff
;
23009 descent
= FONT_DESCENT (font
) - boff
;
23013 it
->override_ascent
= ascent
;
23014 it
->override_descent
= descent
;
23015 it
->override_boff
= boff
;
23018 height
= ascent
+ descent
;
23022 height
= (int)(XFLOAT_DATA (val
) * height
);
23023 else if (INTEGERP (val
))
23024 height
*= XINT (val
);
23026 return make_number (height
);
23030 /* Append a glyph for a glyphless character to IT->glyph_row. FACE_ID
23031 is a face ID to be used for the glyph. FOR_NO_FONT is nonzero if
23032 and only if this is for a character for which no font was found.
23034 If the display method (it->glyphless_method) is
23035 GLYPHLESS_DISPLAY_ACRONYM or GLYPHLESS_DISPLAY_HEX_CODE, LEN is a
23036 length of the acronym or the hexadecimal string, UPPER_XOFF and
23037 UPPER_YOFF are pixel offsets for the upper part of the string,
23038 LOWER_XOFF and LOWER_YOFF are for the lower part.
23040 For the other display methods, LEN through LOWER_YOFF are zero. */
23043 append_glyphless_glyph (struct it
*it
, int face_id
, int for_no_font
, int len
,
23044 short upper_xoff
, short upper_yoff
,
23045 short lower_xoff
, short lower_yoff
)
23047 struct glyph
*glyph
;
23048 enum glyph_row_area area
= it
->area
;
23050 glyph
= it
->glyph_row
->glyphs
[area
] + it
->glyph_row
->used
[area
];
23051 if (glyph
< it
->glyph_row
->glyphs
[area
+ 1])
23053 /* If the glyph row is reversed, we need to prepend the glyph
23054 rather than append it. */
23055 if (it
->glyph_row
->reversed_p
&& area
== TEXT_AREA
)
23059 /* Make room for the additional glyph. */
23060 for (g
= glyph
- 1; g
>= it
->glyph_row
->glyphs
[area
]; g
--)
23062 glyph
= it
->glyph_row
->glyphs
[area
];
23064 glyph
->charpos
= CHARPOS (it
->position
);
23065 glyph
->object
= it
->object
;
23066 glyph
->pixel_width
= it
->pixel_width
;
23067 glyph
->ascent
= it
->ascent
;
23068 glyph
->descent
= it
->descent
;
23069 glyph
->voffset
= it
->voffset
;
23070 glyph
->type
= GLYPHLESS_GLYPH
;
23071 glyph
->u
.glyphless
.method
= it
->glyphless_method
;
23072 glyph
->u
.glyphless
.for_no_font
= for_no_font
;
23073 glyph
->u
.glyphless
.len
= len
;
23074 glyph
->u
.glyphless
.ch
= it
->c
;
23075 glyph
->slice
.glyphless
.upper_xoff
= upper_xoff
;
23076 glyph
->slice
.glyphless
.upper_yoff
= upper_yoff
;
23077 glyph
->slice
.glyphless
.lower_xoff
= lower_xoff
;
23078 glyph
->slice
.glyphless
.lower_yoff
= lower_yoff
;
23079 glyph
->avoid_cursor_p
= it
->avoid_cursor_p
;
23080 glyph
->multibyte_p
= it
->multibyte_p
;
23081 glyph
->left_box_line_p
= it
->start_of_box_run_p
;
23082 glyph
->right_box_line_p
= it
->end_of_box_run_p
;
23083 glyph
->overlaps_vertically_p
= (it
->phys_ascent
> it
->ascent
23084 || it
->phys_descent
> it
->descent
);
23085 glyph
->padding_p
= 0;
23086 glyph
->glyph_not_available_p
= 0;
23087 glyph
->face_id
= face_id
;
23088 glyph
->font_type
= FONT_TYPE_UNKNOWN
;
23091 glyph
->resolved_level
= it
->bidi_it
.resolved_level
;
23092 if ((it
->bidi_it
.type
& 7) != it
->bidi_it
.type
)
23094 glyph
->bidi_type
= it
->bidi_it
.type
;
23096 ++it
->glyph_row
->used
[area
];
23099 IT_EXPAND_MATRIX_WIDTH (it
, area
);
23103 /* Produce a glyph for a glyphless character for iterator IT.
23104 IT->glyphless_method specifies which method to use for displaying
23105 the character. See the description of enum
23106 glyphless_display_method in dispextern.h for the detail.
23108 FOR_NO_FONT is nonzero if and only if this is for a character for
23109 which no font was found. ACRONYM, if non-nil, is an acronym string
23110 for the character. */
23113 produce_glyphless_glyph (struct it
*it
, int for_no_font
, Lisp_Object acronym
)
23118 int base_width
, base_height
, width
, height
;
23119 short upper_xoff
, upper_yoff
, lower_xoff
, lower_yoff
;
23122 /* Get the metrics of the base font. We always refer to the current
23124 face
= FACE_FROM_ID (it
->f
, it
->face_id
)->ascii_face
;
23125 font
= face
->font
? face
->font
: FRAME_FONT (it
->f
);
23126 it
->ascent
= FONT_BASE (font
) + font
->baseline_offset
;
23127 it
->descent
= FONT_DESCENT (font
) - font
->baseline_offset
;
23128 base_height
= it
->ascent
+ it
->descent
;
23129 base_width
= font
->average_width
;
23131 /* Get a face ID for the glyph by utilizing a cache (the same way as
23132 doen for `escape-glyph' in get_next_display_element). */
23133 if (it
->f
== last_glyphless_glyph_frame
23134 && it
->face_id
== last_glyphless_glyph_face_id
)
23136 face_id
= last_glyphless_glyph_merged_face_id
;
23140 /* Merge the `glyphless-char' face into the current face. */
23141 face_id
= merge_faces (it
->f
, Qglyphless_char
, 0, it
->face_id
);
23142 last_glyphless_glyph_frame
= it
->f
;
23143 last_glyphless_glyph_face_id
= it
->face_id
;
23144 last_glyphless_glyph_merged_face_id
= face_id
;
23147 if (it
->glyphless_method
== GLYPHLESS_DISPLAY_THIN_SPACE
)
23149 it
->pixel_width
= THIN_SPACE_WIDTH
;
23151 upper_xoff
= upper_yoff
= lower_xoff
= lower_yoff
= 0;
23153 else if (it
->glyphless_method
== GLYPHLESS_DISPLAY_EMPTY_BOX
)
23155 width
= CHAR_WIDTH (it
->c
);
23158 else if (width
> 4)
23160 it
->pixel_width
= base_width
* width
;
23162 upper_xoff
= upper_yoff
= lower_xoff
= lower_yoff
= 0;
23168 unsigned int code
[6];
23170 int ascent
, descent
;
23171 struct font_metrics metrics_upper
, metrics_lower
;
23173 face
= FACE_FROM_ID (it
->f
, face_id
);
23174 font
= face
->font
? face
->font
: FRAME_FONT (it
->f
);
23175 PREPARE_FACE_FOR_DISPLAY (it
->f
, face
);
23177 if (it
->glyphless_method
== GLYPHLESS_DISPLAY_ACRONYM
)
23179 if (! STRINGP (acronym
) && CHAR_TABLE_P (Vglyphless_char_display
))
23180 acronym
= CHAR_TABLE_REF (Vglyphless_char_display
, it
->c
);
23181 if (CONSP (acronym
))
23182 acronym
= XCAR (acronym
);
23183 str
= STRINGP (acronym
) ? SSDATA (acronym
) : "";
23187 xassert (it
->glyphless_method
== GLYPHLESS_DISPLAY_HEX_CODE
);
23188 sprintf (buf
, "%0*X", it
->c
< 0x10000 ? 4 : 6, it
->c
);
23191 for (len
= 0; str
[len
] && ASCII_BYTE_P (str
[len
]); len
++)
23192 code
[len
] = font
->driver
->encode_char (font
, str
[len
]);
23193 upper_len
= (len
+ 1) / 2;
23194 font
->driver
->text_extents (font
, code
, upper_len
,
23196 font
->driver
->text_extents (font
, code
+ upper_len
, len
- upper_len
,
23201 /* +4 is for vertical bars of a box plus 1-pixel spaces at both side. */
23202 width
= max (metrics_upper
.width
, metrics_lower
.width
) + 4;
23203 upper_xoff
= upper_yoff
= 2; /* the typical case */
23204 if (base_width
>= width
)
23206 /* Align the upper to the left, the lower to the right. */
23207 it
->pixel_width
= base_width
;
23208 lower_xoff
= base_width
- 2 - metrics_lower
.width
;
23212 /* Center the shorter one. */
23213 it
->pixel_width
= width
;
23214 if (metrics_upper
.width
>= metrics_lower
.width
)
23215 lower_xoff
= (width
- metrics_lower
.width
) / 2;
23218 /* FIXME: This code doesn't look right. It formerly was
23219 missing the "lower_xoff = 0;", which couldn't have
23220 been right since it left lower_xoff uninitialized. */
23222 upper_xoff
= (width
- metrics_upper
.width
) / 2;
23226 /* +5 is for horizontal bars of a box plus 1-pixel spaces at
23227 top, bottom, and between upper and lower strings. */
23228 height
= (metrics_upper
.ascent
+ metrics_upper
.descent
23229 + metrics_lower
.ascent
+ metrics_lower
.descent
) + 5;
23230 /* Center vertically.
23231 H:base_height, D:base_descent
23232 h:height, ld:lower_descent, la:lower_ascent, ud:upper_descent
23234 ascent = - (D - H/2 - h/2 + 1); "+ 1" for rounding up
23235 descent = D - H/2 + h/2;
23236 lower_yoff = descent - 2 - ld;
23237 upper_yoff = lower_yoff - la - 1 - ud; */
23238 ascent
= - (it
->descent
- (base_height
+ height
+ 1) / 2);
23239 descent
= it
->descent
- (base_height
- height
) / 2;
23240 lower_yoff
= descent
- 2 - metrics_lower
.descent
;
23241 upper_yoff
= (lower_yoff
- metrics_lower
.ascent
- 1
23242 - metrics_upper
.descent
);
23243 /* Don't make the height shorter than the base height. */
23244 if (height
> base_height
)
23246 it
->ascent
= ascent
;
23247 it
->descent
= descent
;
23251 it
->phys_ascent
= it
->ascent
;
23252 it
->phys_descent
= it
->descent
;
23254 append_glyphless_glyph (it
, face_id
, for_no_font
, len
,
23255 upper_xoff
, upper_yoff
,
23256 lower_xoff
, lower_yoff
);
23258 take_vertical_position_into_account (it
);
23263 Produce glyphs/get display metrics for the display element IT is
23264 loaded with. See the description of struct it in dispextern.h
23265 for an overview of struct it. */
23268 x_produce_glyphs (struct it
*it
)
23270 int extra_line_spacing
= it
->extra_line_spacing
;
23272 it
->glyph_not_available_p
= 0;
23274 if (it
->what
== IT_CHARACTER
)
23277 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
23278 struct font
*font
= face
->font
;
23279 struct font_metrics
*pcm
= NULL
;
23280 int boff
; /* baseline offset */
23284 /* When no suitable font is found, display this character by
23285 the method specified in the first extra slot of
23286 Vglyphless_char_display. */
23287 Lisp_Object acronym
= lookup_glyphless_char_display (-1, it
);
23289 xassert (it
->what
== IT_GLYPHLESS
);
23290 produce_glyphless_glyph (it
, 1, STRINGP (acronym
) ? acronym
: Qnil
);
23294 boff
= font
->baseline_offset
;
23295 if (font
->vertical_centering
)
23296 boff
= VCENTER_BASELINE_OFFSET (font
, it
->f
) - boff
;
23298 if (it
->char_to_display
!= '\n' && it
->char_to_display
!= '\t')
23304 if (it
->override_ascent
>= 0)
23306 it
->ascent
= it
->override_ascent
;
23307 it
->descent
= it
->override_descent
;
23308 boff
= it
->override_boff
;
23312 it
->ascent
= FONT_BASE (font
) + boff
;
23313 it
->descent
= FONT_DESCENT (font
) - boff
;
23316 if (get_char_glyph_code (it
->char_to_display
, font
, &char2b
))
23318 pcm
= get_per_char_metric (font
, &char2b
);
23319 if (pcm
->width
== 0
23320 && pcm
->rbearing
== 0 && pcm
->lbearing
== 0)
23326 it
->phys_ascent
= pcm
->ascent
+ boff
;
23327 it
->phys_descent
= pcm
->descent
- boff
;
23328 it
->pixel_width
= pcm
->width
;
23332 it
->glyph_not_available_p
= 1;
23333 it
->phys_ascent
= it
->ascent
;
23334 it
->phys_descent
= it
->descent
;
23335 it
->pixel_width
= font
->space_width
;
23338 if (it
->constrain_row_ascent_descent_p
)
23340 if (it
->descent
> it
->max_descent
)
23342 it
->ascent
+= it
->descent
- it
->max_descent
;
23343 it
->descent
= it
->max_descent
;
23345 if (it
->ascent
> it
->max_ascent
)
23347 it
->descent
= min (it
->max_descent
, it
->descent
+ it
->ascent
- it
->max_ascent
);
23348 it
->ascent
= it
->max_ascent
;
23350 it
->phys_ascent
= min (it
->phys_ascent
, it
->ascent
);
23351 it
->phys_descent
= min (it
->phys_descent
, it
->descent
);
23352 extra_line_spacing
= 0;
23355 /* If this is a space inside a region of text with
23356 `space-width' property, change its width. */
23357 stretched_p
= it
->char_to_display
== ' ' && !NILP (it
->space_width
);
23359 it
->pixel_width
*= XFLOATINT (it
->space_width
);
23361 /* If face has a box, add the box thickness to the character
23362 height. If character has a box line to the left and/or
23363 right, add the box line width to the character's width. */
23364 if (face
->box
!= FACE_NO_BOX
)
23366 int thick
= face
->box_line_width
;
23370 it
->ascent
+= thick
;
23371 it
->descent
+= thick
;
23376 if (it
->start_of_box_run_p
)
23377 it
->pixel_width
+= thick
;
23378 if (it
->end_of_box_run_p
)
23379 it
->pixel_width
+= thick
;
23382 /* If face has an overline, add the height of the overline
23383 (1 pixel) and a 1 pixel margin to the character height. */
23384 if (face
->overline_p
)
23385 it
->ascent
+= overline_margin
;
23387 if (it
->constrain_row_ascent_descent_p
)
23389 if (it
->ascent
> it
->max_ascent
)
23390 it
->ascent
= it
->max_ascent
;
23391 if (it
->descent
> it
->max_descent
)
23392 it
->descent
= it
->max_descent
;
23395 take_vertical_position_into_account (it
);
23397 /* If we have to actually produce glyphs, do it. */
23402 /* Translate a space with a `space-width' property
23403 into a stretch glyph. */
23404 int ascent
= (((it
->ascent
+ it
->descent
) * FONT_BASE (font
))
23405 / FONT_HEIGHT (font
));
23406 append_stretch_glyph (it
, it
->object
, it
->pixel_width
,
23407 it
->ascent
+ it
->descent
, ascent
);
23412 /* If characters with lbearing or rbearing are displayed
23413 in this line, record that fact in a flag of the
23414 glyph row. This is used to optimize X output code. */
23415 if (pcm
&& (pcm
->lbearing
< 0 || pcm
->rbearing
> pcm
->width
))
23416 it
->glyph_row
->contains_overlapping_glyphs_p
= 1;
23418 if (! stretched_p
&& it
->pixel_width
== 0)
23419 /* We assure that all visible glyphs have at least 1-pixel
23421 it
->pixel_width
= 1;
23423 else if (it
->char_to_display
== '\n')
23425 /* A newline has no width, but we need the height of the
23426 line. But if previous part of the line sets a height,
23427 don't increase that height */
23429 Lisp_Object height
;
23430 Lisp_Object total_height
= Qnil
;
23432 it
->override_ascent
= -1;
23433 it
->pixel_width
= 0;
23436 height
= get_it_property (it
, Qline_height
);
23437 /* Split (line-height total-height) list */
23439 && CONSP (XCDR (height
))
23440 && NILP (XCDR (XCDR (height
))))
23442 total_height
= XCAR (XCDR (height
));
23443 height
= XCAR (height
);
23445 height
= calc_line_height_property (it
, height
, font
, boff
, 1);
23447 if (it
->override_ascent
>= 0)
23449 it
->ascent
= it
->override_ascent
;
23450 it
->descent
= it
->override_descent
;
23451 boff
= it
->override_boff
;
23455 it
->ascent
= FONT_BASE (font
) + boff
;
23456 it
->descent
= FONT_DESCENT (font
) - boff
;
23459 if (EQ (height
, Qt
))
23461 if (it
->descent
> it
->max_descent
)
23463 it
->ascent
+= it
->descent
- it
->max_descent
;
23464 it
->descent
= it
->max_descent
;
23466 if (it
->ascent
> it
->max_ascent
)
23468 it
->descent
= min (it
->max_descent
, it
->descent
+ it
->ascent
- it
->max_ascent
);
23469 it
->ascent
= it
->max_ascent
;
23471 it
->phys_ascent
= min (it
->phys_ascent
, it
->ascent
);
23472 it
->phys_descent
= min (it
->phys_descent
, it
->descent
);
23473 it
->constrain_row_ascent_descent_p
= 1;
23474 extra_line_spacing
= 0;
23478 Lisp_Object spacing
;
23480 it
->phys_ascent
= it
->ascent
;
23481 it
->phys_descent
= it
->descent
;
23483 if ((it
->max_ascent
> 0 || it
->max_descent
> 0)
23484 && face
->box
!= FACE_NO_BOX
23485 && face
->box_line_width
> 0)
23487 it
->ascent
+= face
->box_line_width
;
23488 it
->descent
+= face
->box_line_width
;
23491 && XINT (height
) > it
->ascent
+ it
->descent
)
23492 it
->ascent
= XINT (height
) - it
->descent
;
23494 if (!NILP (total_height
))
23495 spacing
= calc_line_height_property (it
, total_height
, font
, boff
, 0);
23498 spacing
= get_it_property (it
, Qline_spacing
);
23499 spacing
= calc_line_height_property (it
, spacing
, font
, boff
, 0);
23501 if (INTEGERP (spacing
))
23503 extra_line_spacing
= XINT (spacing
);
23504 if (!NILP (total_height
))
23505 extra_line_spacing
-= (it
->phys_ascent
+ it
->phys_descent
);
23509 else /* i.e. (it->char_to_display == '\t') */
23511 if (font
->space_width
> 0)
23513 int tab_width
= it
->tab_width
* font
->space_width
;
23514 int x
= it
->current_x
+ it
->continuation_lines_width
;
23515 int next_tab_x
= ((1 + x
+ tab_width
- 1) / tab_width
) * tab_width
;
23517 /* If the distance from the current position to the next tab
23518 stop is less than a space character width, use the
23519 tab stop after that. */
23520 if (next_tab_x
- x
< font
->space_width
)
23521 next_tab_x
+= tab_width
;
23523 it
->pixel_width
= next_tab_x
- x
;
23525 it
->ascent
= it
->phys_ascent
= FONT_BASE (font
) + boff
;
23526 it
->descent
= it
->phys_descent
= FONT_DESCENT (font
) - boff
;
23530 append_stretch_glyph (it
, it
->object
, it
->pixel_width
,
23531 it
->ascent
+ it
->descent
, it
->ascent
);
23536 it
->pixel_width
= 0;
23541 else if (it
->what
== IT_COMPOSITION
&& it
->cmp_it
.ch
< 0)
23543 /* A static composition.
23545 Note: A composition is represented as one glyph in the
23546 glyph matrix. There are no padding glyphs.
23548 Important note: pixel_width, ascent, and descent are the
23549 values of what is drawn by draw_glyphs (i.e. the values of
23550 the overall glyphs composed). */
23551 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
23552 int boff
; /* baseline offset */
23553 struct composition
*cmp
= composition_table
[it
->cmp_it
.id
];
23554 int glyph_len
= cmp
->glyph_len
;
23555 struct font
*font
= face
->font
;
23559 /* If we have not yet calculated pixel size data of glyphs of
23560 the composition for the current face font, calculate them
23561 now. Theoretically, we have to check all fonts for the
23562 glyphs, but that requires much time and memory space. So,
23563 here we check only the font of the first glyph. This may
23564 lead to incorrect display, but it's very rare, and C-l
23565 (recenter-top-bottom) can correct the display anyway. */
23566 if (! cmp
->font
|| cmp
->font
!= font
)
23568 /* Ascent and descent of the font of the first character
23569 of this composition (adjusted by baseline offset).
23570 Ascent and descent of overall glyphs should not be less
23571 than these, respectively. */
23572 int font_ascent
, font_descent
, font_height
;
23573 /* Bounding box of the overall glyphs. */
23574 int leftmost
, rightmost
, lowest
, highest
;
23575 int lbearing
, rbearing
;
23576 int i
, width
, ascent
, descent
;
23577 int left_padded
= 0, right_padded
= 0;
23578 int c
IF_LINT (= 0); /* cmp->glyph_len can't be zero; see Bug#8512 */
23580 struct font_metrics
*pcm
;
23581 int font_not_found_p
;
23584 for (glyph_len
= cmp
->glyph_len
; glyph_len
> 0; glyph_len
--)
23585 if ((c
= COMPOSITION_GLYPH (cmp
, glyph_len
- 1)) != '\t')
23587 if (glyph_len
< cmp
->glyph_len
)
23589 for (i
= 0; i
< glyph_len
; i
++)
23591 if ((c
= COMPOSITION_GLYPH (cmp
, i
)) != '\t')
23593 cmp
->offsets
[i
* 2] = cmp
->offsets
[i
* 2 + 1] = 0;
23598 pos
= (STRINGP (it
->string
) ? IT_STRING_CHARPOS (*it
)
23599 : IT_CHARPOS (*it
));
23600 /* If no suitable font is found, use the default font. */
23601 font_not_found_p
= font
== NULL
;
23602 if (font_not_found_p
)
23604 face
= face
->ascii_face
;
23607 boff
= font
->baseline_offset
;
23608 if (font
->vertical_centering
)
23609 boff
= VCENTER_BASELINE_OFFSET (font
, it
->f
) - boff
;
23610 font_ascent
= FONT_BASE (font
) + boff
;
23611 font_descent
= FONT_DESCENT (font
) - boff
;
23612 font_height
= FONT_HEIGHT (font
);
23614 cmp
->font
= (void *) font
;
23617 if (! font_not_found_p
)
23619 get_char_face_and_encoding (it
->f
, c
, it
->face_id
,
23621 pcm
= get_per_char_metric (font
, &char2b
);
23624 /* Initialize the bounding box. */
23627 width
= pcm
->width
;
23628 ascent
= pcm
->ascent
;
23629 descent
= pcm
->descent
;
23630 lbearing
= pcm
->lbearing
;
23631 rbearing
= pcm
->rbearing
;
23635 width
= font
->space_width
;
23636 ascent
= FONT_BASE (font
);
23637 descent
= FONT_DESCENT (font
);
23644 lowest
= - descent
+ boff
;
23645 highest
= ascent
+ boff
;
23647 if (! font_not_found_p
23648 && font
->default_ascent
23649 && CHAR_TABLE_P (Vuse_default_ascent
)
23650 && !NILP (Faref (Vuse_default_ascent
,
23651 make_number (it
->char_to_display
))))
23652 highest
= font
->default_ascent
+ boff
;
23654 /* Draw the first glyph at the normal position. It may be
23655 shifted to right later if some other glyphs are drawn
23657 cmp
->offsets
[i
* 2] = 0;
23658 cmp
->offsets
[i
* 2 + 1] = boff
;
23659 cmp
->lbearing
= lbearing
;
23660 cmp
->rbearing
= rbearing
;
23662 /* Set cmp->offsets for the remaining glyphs. */
23663 for (i
++; i
< glyph_len
; i
++)
23665 int left
, right
, btm
, top
;
23666 int ch
= COMPOSITION_GLYPH (cmp
, i
);
23668 struct face
*this_face
;
23672 face_id
= FACE_FOR_CHAR (it
->f
, face
, ch
, pos
, it
->string
);
23673 this_face
= FACE_FROM_ID (it
->f
, face_id
);
23674 font
= this_face
->font
;
23680 get_char_face_and_encoding (it
->f
, ch
, face_id
,
23682 pcm
= get_per_char_metric (font
, &char2b
);
23685 cmp
->offsets
[i
* 2] = cmp
->offsets
[i
* 2 + 1] = 0;
23688 width
= pcm
->width
;
23689 ascent
= pcm
->ascent
;
23690 descent
= pcm
->descent
;
23691 lbearing
= pcm
->lbearing
;
23692 rbearing
= pcm
->rbearing
;
23693 if (cmp
->method
!= COMPOSITION_WITH_RULE_ALTCHARS
)
23695 /* Relative composition with or without
23696 alternate chars. */
23697 left
= (leftmost
+ rightmost
- width
) / 2;
23698 btm
= - descent
+ boff
;
23699 if (font
->relative_compose
23700 && (! CHAR_TABLE_P (Vignore_relative_composition
)
23701 || NILP (Faref (Vignore_relative_composition
,
23702 make_number (ch
)))))
23705 if (- descent
>= font
->relative_compose
)
23706 /* One extra pixel between two glyphs. */
23708 else if (ascent
<= 0)
23709 /* One extra pixel between two glyphs. */
23710 btm
= lowest
- 1 - ascent
- descent
;
23715 /* A composition rule is specified by an integer
23716 value that encodes global and new reference
23717 points (GREF and NREF). GREF and NREF are
23718 specified by numbers as below:
23720 0---1---2 -- ascent
23724 9--10--11 -- center
23726 ---3---4---5--- baseline
23728 6---7---8 -- descent
23730 int rule
= COMPOSITION_RULE (cmp
, i
);
23731 int gref
, nref
, grefx
, grefy
, nrefx
, nrefy
, xoff
, yoff
;
23733 COMPOSITION_DECODE_RULE (rule
, gref
, nref
, xoff
, yoff
);
23734 grefx
= gref
% 3, nrefx
= nref
% 3;
23735 grefy
= gref
/ 3, nrefy
= nref
/ 3;
23737 xoff
= font_height
* (xoff
- 128) / 256;
23739 yoff
= font_height
* (yoff
- 128) / 256;
23742 + grefx
* (rightmost
- leftmost
) / 2
23743 - nrefx
* width
/ 2
23746 btm
= ((grefy
== 0 ? highest
23748 : grefy
== 2 ? lowest
23749 : (highest
+ lowest
) / 2)
23750 - (nrefy
== 0 ? ascent
+ descent
23751 : nrefy
== 1 ? descent
- boff
23753 : (ascent
+ descent
) / 2)
23757 cmp
->offsets
[i
* 2] = left
;
23758 cmp
->offsets
[i
* 2 + 1] = btm
+ descent
;
23760 /* Update the bounding box of the overall glyphs. */
23763 right
= left
+ width
;
23764 if (left
< leftmost
)
23766 if (right
> rightmost
)
23769 top
= btm
+ descent
+ ascent
;
23775 if (cmp
->lbearing
> left
+ lbearing
)
23776 cmp
->lbearing
= left
+ lbearing
;
23777 if (cmp
->rbearing
< left
+ rbearing
)
23778 cmp
->rbearing
= left
+ rbearing
;
23782 /* If there are glyphs whose x-offsets are negative,
23783 shift all glyphs to the right and make all x-offsets
23787 for (i
= 0; i
< cmp
->glyph_len
; i
++)
23788 cmp
->offsets
[i
* 2] -= leftmost
;
23789 rightmost
-= leftmost
;
23790 cmp
->lbearing
-= leftmost
;
23791 cmp
->rbearing
-= leftmost
;
23794 if (left_padded
&& cmp
->lbearing
< 0)
23796 for (i
= 0; i
< cmp
->glyph_len
; i
++)
23797 cmp
->offsets
[i
* 2] -= cmp
->lbearing
;
23798 rightmost
-= cmp
->lbearing
;
23799 cmp
->rbearing
-= cmp
->lbearing
;
23802 if (right_padded
&& rightmost
< cmp
->rbearing
)
23804 rightmost
= cmp
->rbearing
;
23807 cmp
->pixel_width
= rightmost
;
23808 cmp
->ascent
= highest
;
23809 cmp
->descent
= - lowest
;
23810 if (cmp
->ascent
< font_ascent
)
23811 cmp
->ascent
= font_ascent
;
23812 if (cmp
->descent
< font_descent
)
23813 cmp
->descent
= font_descent
;
23817 && (cmp
->lbearing
< 0
23818 || cmp
->rbearing
> cmp
->pixel_width
))
23819 it
->glyph_row
->contains_overlapping_glyphs_p
= 1;
23821 it
->pixel_width
= cmp
->pixel_width
;
23822 it
->ascent
= it
->phys_ascent
= cmp
->ascent
;
23823 it
->descent
= it
->phys_descent
= cmp
->descent
;
23824 if (face
->box
!= FACE_NO_BOX
)
23826 int thick
= face
->box_line_width
;
23830 it
->ascent
+= thick
;
23831 it
->descent
+= thick
;
23836 if (it
->start_of_box_run_p
)
23837 it
->pixel_width
+= thick
;
23838 if (it
->end_of_box_run_p
)
23839 it
->pixel_width
+= thick
;
23842 /* If face has an overline, add the height of the overline
23843 (1 pixel) and a 1 pixel margin to the character height. */
23844 if (face
->overline_p
)
23845 it
->ascent
+= overline_margin
;
23847 take_vertical_position_into_account (it
);
23848 if (it
->ascent
< 0)
23850 if (it
->descent
< 0)
23854 append_composite_glyph (it
);
23856 else if (it
->what
== IT_COMPOSITION
)
23858 /* A dynamic (automatic) composition. */
23859 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
23860 Lisp_Object gstring
;
23861 struct font_metrics metrics
;
23863 gstring
= composition_gstring_from_id (it
->cmp_it
.id
);
23865 = composition_gstring_width (gstring
, it
->cmp_it
.from
, it
->cmp_it
.to
,
23868 && (metrics
.lbearing
< 0 || metrics
.rbearing
> metrics
.width
))
23869 it
->glyph_row
->contains_overlapping_glyphs_p
= 1;
23870 it
->ascent
= it
->phys_ascent
= metrics
.ascent
;
23871 it
->descent
= it
->phys_descent
= metrics
.descent
;
23872 if (face
->box
!= FACE_NO_BOX
)
23874 int thick
= face
->box_line_width
;
23878 it
->ascent
+= thick
;
23879 it
->descent
+= thick
;
23884 if (it
->start_of_box_run_p
)
23885 it
->pixel_width
+= thick
;
23886 if (it
->end_of_box_run_p
)
23887 it
->pixel_width
+= thick
;
23889 /* If face has an overline, add the height of the overline
23890 (1 pixel) and a 1 pixel margin to the character height. */
23891 if (face
->overline_p
)
23892 it
->ascent
+= overline_margin
;
23893 take_vertical_position_into_account (it
);
23894 if (it
->ascent
< 0)
23896 if (it
->descent
< 0)
23900 append_composite_glyph (it
);
23902 else if (it
->what
== IT_GLYPHLESS
)
23903 produce_glyphless_glyph (it
, 0, Qnil
);
23904 else if (it
->what
== IT_IMAGE
)
23905 produce_image_glyph (it
);
23906 else if (it
->what
== IT_STRETCH
)
23907 produce_stretch_glyph (it
);
23910 /* Accumulate dimensions. Note: can't assume that it->descent > 0
23911 because this isn't true for images with `:ascent 100'. */
23912 xassert (it
->ascent
>= 0 && it
->descent
>= 0);
23913 if (it
->area
== TEXT_AREA
)
23914 it
->current_x
+= it
->pixel_width
;
23916 if (extra_line_spacing
> 0)
23918 it
->descent
+= extra_line_spacing
;
23919 if (extra_line_spacing
> it
->max_extra_line_spacing
)
23920 it
->max_extra_line_spacing
= extra_line_spacing
;
23923 it
->max_ascent
= max (it
->max_ascent
, it
->ascent
);
23924 it
->max_descent
= max (it
->max_descent
, it
->descent
);
23925 it
->max_phys_ascent
= max (it
->max_phys_ascent
, it
->phys_ascent
);
23926 it
->max_phys_descent
= max (it
->max_phys_descent
, it
->phys_descent
);
23930 Output LEN glyphs starting at START at the nominal cursor position.
23931 Advance the nominal cursor over the text. The global variable
23932 updated_window contains the window being updated, updated_row is
23933 the glyph row being updated, and updated_area is the area of that
23934 row being updated. */
23937 x_write_glyphs (struct glyph
*start
, int len
)
23941 xassert (updated_window
&& updated_row
);
23944 /* Write glyphs. */
23946 hpos
= start
- updated_row
->glyphs
[updated_area
];
23947 x
= draw_glyphs (updated_window
, output_cursor
.x
,
23948 updated_row
, updated_area
,
23950 DRAW_NORMAL_TEXT
, 0);
23952 /* Invalidate old phys cursor if the glyph at its hpos is redrawn. */
23953 if (updated_area
== TEXT_AREA
23954 && updated_window
->phys_cursor_on_p
23955 && updated_window
->phys_cursor
.vpos
== output_cursor
.vpos
23956 && updated_window
->phys_cursor
.hpos
>= hpos
23957 && updated_window
->phys_cursor
.hpos
< hpos
+ len
)
23958 updated_window
->phys_cursor_on_p
= 0;
23962 /* Advance the output cursor. */
23963 output_cursor
.hpos
+= len
;
23964 output_cursor
.x
= x
;
23969 Insert LEN glyphs from START at the nominal cursor position. */
23972 x_insert_glyphs (struct glyph
*start
, int len
)
23976 int line_height
, shift_by_width
, shifted_region_width
;
23977 struct glyph_row
*row
;
23978 struct glyph
*glyph
;
23979 int frame_x
, frame_y
;
23982 xassert (updated_window
&& updated_row
);
23984 w
= updated_window
;
23985 f
= XFRAME (WINDOW_FRAME (w
));
23987 /* Get the height of the line we are in. */
23989 line_height
= row
->height
;
23991 /* Get the width of the glyphs to insert. */
23992 shift_by_width
= 0;
23993 for (glyph
= start
; glyph
< start
+ len
; ++glyph
)
23994 shift_by_width
+= glyph
->pixel_width
;
23996 /* Get the width of the region to shift right. */
23997 shifted_region_width
= (window_box_width (w
, updated_area
)
24002 frame_x
= window_box_left (w
, updated_area
) + output_cursor
.x
;
24003 frame_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, output_cursor
.y
);
24005 FRAME_RIF (f
)->shift_glyphs_for_insert (f
, frame_x
, frame_y
, shifted_region_width
,
24006 line_height
, shift_by_width
);
24008 /* Write the glyphs. */
24009 hpos
= start
- row
->glyphs
[updated_area
];
24010 draw_glyphs (w
, output_cursor
.x
, row
, updated_area
,
24012 DRAW_NORMAL_TEXT
, 0);
24014 /* Advance the output cursor. */
24015 output_cursor
.hpos
+= len
;
24016 output_cursor
.x
+= shift_by_width
;
24022 Erase the current text line from the nominal cursor position
24023 (inclusive) to pixel column TO_X (exclusive). The idea is that
24024 everything from TO_X onward is already erased.
24026 TO_X is a pixel position relative to updated_area of
24027 updated_window. TO_X == -1 means clear to the end of this area. */
24030 x_clear_end_of_line (int to_x
)
24033 struct window
*w
= updated_window
;
24034 int max_x
, min_y
, max_y
;
24035 int from_x
, from_y
, to_y
;
24037 xassert (updated_window
&& updated_row
);
24038 f
= XFRAME (w
->frame
);
24040 if (updated_row
->full_width_p
)
24041 max_x
= WINDOW_TOTAL_WIDTH (w
);
24043 max_x
= window_box_width (w
, updated_area
);
24044 max_y
= window_text_bottom_y (w
);
24046 /* TO_X == 0 means don't do anything. TO_X < 0 means clear to end
24047 of window. For TO_X > 0, truncate to end of drawing area. */
24053 to_x
= min (to_x
, max_x
);
24055 to_y
= min (max_y
, output_cursor
.y
+ updated_row
->height
);
24057 /* Notice if the cursor will be cleared by this operation. */
24058 if (!updated_row
->full_width_p
)
24059 notice_overwritten_cursor (w
, updated_area
,
24060 output_cursor
.x
, -1,
24062 MATRIX_ROW_BOTTOM_Y (updated_row
));
24064 from_x
= output_cursor
.x
;
24066 /* Translate to frame coordinates. */
24067 if (updated_row
->full_width_p
)
24069 from_x
= WINDOW_TO_FRAME_PIXEL_X (w
, from_x
);
24070 to_x
= WINDOW_TO_FRAME_PIXEL_X (w
, to_x
);
24074 int area_left
= window_box_left (w
, updated_area
);
24075 from_x
+= area_left
;
24079 min_y
= WINDOW_HEADER_LINE_HEIGHT (w
);
24080 from_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, max (min_y
, output_cursor
.y
));
24081 to_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, to_y
);
24083 /* Prevent inadvertently clearing to end of the X window. */
24084 if (to_x
> from_x
&& to_y
> from_y
)
24087 FRAME_RIF (f
)->clear_frame_area (f
, from_x
, from_y
,
24088 to_x
- from_x
, to_y
- from_y
);
24093 #endif /* HAVE_WINDOW_SYSTEM */
24097 /***********************************************************************
24099 ***********************************************************************/
24101 /* Value is the internal representation of the specified cursor type
24102 ARG. If type is BAR_CURSOR, return in *WIDTH the specified width
24103 of the bar cursor. */
24105 static enum text_cursor_kinds
24106 get_specified_cursor_type (Lisp_Object arg
, int *width
)
24108 enum text_cursor_kinds type
;
24113 if (EQ (arg
, Qbox
))
24114 return FILLED_BOX_CURSOR
;
24116 if (EQ (arg
, Qhollow
))
24117 return HOLLOW_BOX_CURSOR
;
24119 if (EQ (arg
, Qbar
))
24126 && EQ (XCAR (arg
), Qbar
)
24127 && INTEGERP (XCDR (arg
))
24128 && XINT (XCDR (arg
)) >= 0)
24130 *width
= XINT (XCDR (arg
));
24134 if (EQ (arg
, Qhbar
))
24137 return HBAR_CURSOR
;
24141 && EQ (XCAR (arg
), Qhbar
)
24142 && INTEGERP (XCDR (arg
))
24143 && XINT (XCDR (arg
)) >= 0)
24145 *width
= XINT (XCDR (arg
));
24146 return HBAR_CURSOR
;
24149 /* Treat anything unknown as "hollow box cursor".
24150 It was bad to signal an error; people have trouble fixing
24151 .Xdefaults with Emacs, when it has something bad in it. */
24152 type
= HOLLOW_BOX_CURSOR
;
24157 /* Set the default cursor types for specified frame. */
24159 set_frame_cursor_types (struct frame
*f
, Lisp_Object arg
)
24164 FRAME_DESIRED_CURSOR (f
) = get_specified_cursor_type (arg
, &width
);
24165 FRAME_CURSOR_WIDTH (f
) = width
;
24167 /* By default, set up the blink-off state depending on the on-state. */
24169 tem
= Fassoc (arg
, Vblink_cursor_alist
);
24172 FRAME_BLINK_OFF_CURSOR (f
)
24173 = get_specified_cursor_type (XCDR (tem
), &width
);
24174 FRAME_BLINK_OFF_CURSOR_WIDTH (f
) = width
;
24177 FRAME_BLINK_OFF_CURSOR (f
) = DEFAULT_CURSOR
;
24181 #ifdef HAVE_WINDOW_SYSTEM
24183 /* Return the cursor we want to be displayed in window W. Return
24184 width of bar/hbar cursor through WIDTH arg. Return with
24185 ACTIVE_CURSOR arg set to 1 if cursor in window W is `active'
24186 (i.e. if the `system caret' should track this cursor).
24188 In a mini-buffer window, we want the cursor only to appear if we
24189 are reading input from this window. For the selected window, we
24190 want the cursor type given by the frame parameter or buffer local
24191 setting of cursor-type. If explicitly marked off, draw no cursor.
24192 In all other cases, we want a hollow box cursor. */
24194 static enum text_cursor_kinds
24195 get_window_cursor_type (struct window
*w
, struct glyph
*glyph
, int *width
,
24196 int *active_cursor
)
24198 struct frame
*f
= XFRAME (w
->frame
);
24199 struct buffer
*b
= XBUFFER (w
->buffer
);
24200 int cursor_type
= DEFAULT_CURSOR
;
24201 Lisp_Object alt_cursor
;
24202 int non_selected
= 0;
24204 *active_cursor
= 1;
24207 if (cursor_in_echo_area
24208 && FRAME_HAS_MINIBUF_P (f
)
24209 && EQ (FRAME_MINIBUF_WINDOW (f
), echo_area_window
))
24211 if (w
== XWINDOW (echo_area_window
))
24213 if (EQ (BVAR (b
, cursor_type
), Qt
) || NILP (BVAR (b
, cursor_type
)))
24215 *width
= FRAME_CURSOR_WIDTH (f
);
24216 return FRAME_DESIRED_CURSOR (f
);
24219 return get_specified_cursor_type (BVAR (b
, cursor_type
), width
);
24222 *active_cursor
= 0;
24226 /* Detect a nonselected window or nonselected frame. */
24227 else if (w
!= XWINDOW (f
->selected_window
)
24228 || f
!= FRAME_X_DISPLAY_INFO (f
)->x_highlight_frame
)
24230 *active_cursor
= 0;
24232 if (MINI_WINDOW_P (w
) && minibuf_level
== 0)
24238 /* Never display a cursor in a window in which cursor-type is nil. */
24239 if (NILP (BVAR (b
, cursor_type
)))
24242 /* Get the normal cursor type for this window. */
24243 if (EQ (BVAR (b
, cursor_type
), Qt
))
24245 cursor_type
= FRAME_DESIRED_CURSOR (f
);
24246 *width
= FRAME_CURSOR_WIDTH (f
);
24249 cursor_type
= get_specified_cursor_type (BVAR (b
, cursor_type
), width
);
24251 /* Use cursor-in-non-selected-windows instead
24252 for non-selected window or frame. */
24255 alt_cursor
= BVAR (b
, cursor_in_non_selected_windows
);
24256 if (!EQ (Qt
, alt_cursor
))
24257 return get_specified_cursor_type (alt_cursor
, width
);
24258 /* t means modify the normal cursor type. */
24259 if (cursor_type
== FILLED_BOX_CURSOR
)
24260 cursor_type
= HOLLOW_BOX_CURSOR
;
24261 else if (cursor_type
== BAR_CURSOR
&& *width
> 1)
24263 return cursor_type
;
24266 /* Use normal cursor if not blinked off. */
24267 if (!w
->cursor_off_p
)
24269 if (glyph
!= NULL
&& glyph
->type
== IMAGE_GLYPH
)
24271 if (cursor_type
== FILLED_BOX_CURSOR
)
24273 /* Using a block cursor on large images can be very annoying.
24274 So use a hollow cursor for "large" images.
24275 If image is not transparent (no mask), also use hollow cursor. */
24276 struct image
*img
= IMAGE_FROM_ID (f
, glyph
->u
.img_id
);
24277 if (img
!= NULL
&& IMAGEP (img
->spec
))
24279 /* Arbitrarily, interpret "Large" as >32x32 and >NxN
24280 where N = size of default frame font size.
24281 This should cover most of the "tiny" icons people may use. */
24283 || img
->width
> max (32, WINDOW_FRAME_COLUMN_WIDTH (w
))
24284 || img
->height
> max (32, WINDOW_FRAME_LINE_HEIGHT (w
)))
24285 cursor_type
= HOLLOW_BOX_CURSOR
;
24288 else if (cursor_type
!= NO_CURSOR
)
24290 /* Display current only supports BOX and HOLLOW cursors for images.
24291 So for now, unconditionally use a HOLLOW cursor when cursor is
24292 not a solid box cursor. */
24293 cursor_type
= HOLLOW_BOX_CURSOR
;
24296 return cursor_type
;
24299 /* Cursor is blinked off, so determine how to "toggle" it. */
24301 /* First look for an entry matching the buffer's cursor-type in blink-cursor-alist. */
24302 if ((alt_cursor
= Fassoc (BVAR (b
, cursor_type
), Vblink_cursor_alist
), !NILP (alt_cursor
)))
24303 return get_specified_cursor_type (XCDR (alt_cursor
), width
);
24305 /* Then see if frame has specified a specific blink off cursor type. */
24306 if (FRAME_BLINK_OFF_CURSOR (f
) != DEFAULT_CURSOR
)
24308 *width
= FRAME_BLINK_OFF_CURSOR_WIDTH (f
);
24309 return FRAME_BLINK_OFF_CURSOR (f
);
24313 /* Some people liked having a permanently visible blinking cursor,
24314 while others had very strong opinions against it. So it was
24315 decided to remove it. KFS 2003-09-03 */
24317 /* Finally perform built-in cursor blinking:
24318 filled box <-> hollow box
24319 wide [h]bar <-> narrow [h]bar
24320 narrow [h]bar <-> no cursor
24321 other type <-> no cursor */
24323 if (cursor_type
== FILLED_BOX_CURSOR
)
24324 return HOLLOW_BOX_CURSOR
;
24326 if ((cursor_type
== BAR_CURSOR
|| cursor_type
== HBAR_CURSOR
) && *width
> 1)
24329 return cursor_type
;
24337 /* Notice when the text cursor of window W has been completely
24338 overwritten by a drawing operation that outputs glyphs in AREA
24339 starting at X0 and ending at X1 in the line starting at Y0 and
24340 ending at Y1. X coordinates are area-relative. X1 < 0 means all
24341 the rest of the line after X0 has been written. Y coordinates
24342 are window-relative. */
24345 notice_overwritten_cursor (struct window
*w
, enum glyph_row_area area
,
24346 int x0
, int x1
, int y0
, int y1
)
24348 int cx0
, cx1
, cy0
, cy1
;
24349 struct glyph_row
*row
;
24351 if (!w
->phys_cursor_on_p
)
24353 if (area
!= TEXT_AREA
)
24356 if (w
->phys_cursor
.vpos
< 0
24357 || w
->phys_cursor
.vpos
>= w
->current_matrix
->nrows
24358 || (row
= w
->current_matrix
->rows
+ w
->phys_cursor
.vpos
,
24359 !(row
->enabled_p
&& row
->displays_text_p
)))
24362 if (row
->cursor_in_fringe_p
)
24364 row
->cursor_in_fringe_p
= 0;
24365 draw_fringe_bitmap (w
, row
, row
->reversed_p
);
24366 w
->phys_cursor_on_p
= 0;
24370 cx0
= w
->phys_cursor
.x
;
24371 cx1
= cx0
+ w
->phys_cursor_width
;
24372 if (x0
> cx0
|| (x1
>= 0 && x1
< cx1
))
24375 /* The cursor image will be completely removed from the
24376 screen if the output area intersects the cursor area in
24377 y-direction. When we draw in [y0 y1[, and some part of
24378 the cursor is at y < y0, that part must have been drawn
24379 before. When scrolling, the cursor is erased before
24380 actually scrolling, so we don't come here. When not
24381 scrolling, the rows above the old cursor row must have
24382 changed, and in this case these rows must have written
24383 over the cursor image.
24385 Likewise if part of the cursor is below y1, with the
24386 exception of the cursor being in the first blank row at
24387 the buffer and window end because update_text_area
24388 doesn't draw that row. (Except when it does, but
24389 that's handled in update_text_area.) */
24391 cy0
= w
->phys_cursor
.y
;
24392 cy1
= cy0
+ w
->phys_cursor_height
;
24393 if ((y0
< cy0
|| y0
>= cy1
) && (y1
<= cy0
|| y1
>= cy1
))
24396 w
->phys_cursor_on_p
= 0;
24399 #endif /* HAVE_WINDOW_SYSTEM */
24402 /************************************************************************
24404 ************************************************************************/
24406 #ifdef HAVE_WINDOW_SYSTEM
24409 Fix the display of area AREA of overlapping row ROW in window W
24410 with respect to the overlapping part OVERLAPS. */
24413 x_fix_overlapping_area (struct window
*w
, struct glyph_row
*row
,
24414 enum glyph_row_area area
, int overlaps
)
24421 for (i
= 0; i
< row
->used
[area
];)
24423 if (row
->glyphs
[area
][i
].overlaps_vertically_p
)
24425 int start
= i
, start_x
= x
;
24429 x
+= row
->glyphs
[area
][i
].pixel_width
;
24432 while (i
< row
->used
[area
]
24433 && row
->glyphs
[area
][i
].overlaps_vertically_p
);
24435 draw_glyphs (w
, start_x
, row
, area
,
24437 DRAW_NORMAL_TEXT
, overlaps
);
24441 x
+= row
->glyphs
[area
][i
].pixel_width
;
24451 Draw the cursor glyph of window W in glyph row ROW. See the
24452 comment of draw_glyphs for the meaning of HL. */
24455 draw_phys_cursor_glyph (struct window
*w
, struct glyph_row
*row
,
24456 enum draw_glyphs_face hl
)
24458 /* If cursor hpos is out of bounds, don't draw garbage. This can
24459 happen in mini-buffer windows when switching between echo area
24460 glyphs and mini-buffer. */
24461 if ((row
->reversed_p
24462 ? (w
->phys_cursor
.hpos
>= 0)
24463 : (w
->phys_cursor
.hpos
< row
->used
[TEXT_AREA
])))
24465 int on_p
= w
->phys_cursor_on_p
;
24467 x1
= draw_glyphs (w
, w
->phys_cursor
.x
, row
, TEXT_AREA
,
24468 w
->phys_cursor
.hpos
, w
->phys_cursor
.hpos
+ 1,
24470 w
->phys_cursor_on_p
= on_p
;
24472 if (hl
== DRAW_CURSOR
)
24473 w
->phys_cursor_width
= x1
- w
->phys_cursor
.x
;
24474 /* When we erase the cursor, and ROW is overlapped by other
24475 rows, make sure that these overlapping parts of other rows
24477 else if (hl
== DRAW_NORMAL_TEXT
&& row
->overlapped_p
)
24479 w
->phys_cursor_width
= x1
- w
->phys_cursor
.x
;
24481 if (row
> w
->current_matrix
->rows
24482 && MATRIX_ROW_OVERLAPS_SUCC_P (row
- 1))
24483 x_fix_overlapping_area (w
, row
- 1, TEXT_AREA
,
24484 OVERLAPS_ERASED_CURSOR
);
24486 if (MATRIX_ROW_BOTTOM_Y (row
) < window_text_bottom_y (w
)
24487 && MATRIX_ROW_OVERLAPS_PRED_P (row
+ 1))
24488 x_fix_overlapping_area (w
, row
+ 1, TEXT_AREA
,
24489 OVERLAPS_ERASED_CURSOR
);
24496 Erase the image of a cursor of window W from the screen. */
24499 erase_phys_cursor (struct window
*w
)
24501 struct frame
*f
= XFRAME (w
->frame
);
24502 Mouse_HLInfo
*hlinfo
= MOUSE_HL_INFO (f
);
24503 int hpos
= w
->phys_cursor
.hpos
;
24504 int vpos
= w
->phys_cursor
.vpos
;
24505 int mouse_face_here_p
= 0;
24506 struct glyph_matrix
*active_glyphs
= w
->current_matrix
;
24507 struct glyph_row
*cursor_row
;
24508 struct glyph
*cursor_glyph
;
24509 enum draw_glyphs_face hl
;
24511 /* No cursor displayed or row invalidated => nothing to do on the
24513 if (w
->phys_cursor_type
== NO_CURSOR
)
24514 goto mark_cursor_off
;
24516 /* VPOS >= active_glyphs->nrows means that window has been resized.
24517 Don't bother to erase the cursor. */
24518 if (vpos
>= active_glyphs
->nrows
)
24519 goto mark_cursor_off
;
24521 /* If row containing cursor is marked invalid, there is nothing we
24523 cursor_row
= MATRIX_ROW (active_glyphs
, vpos
);
24524 if (!cursor_row
->enabled_p
)
24525 goto mark_cursor_off
;
24527 /* If line spacing is > 0, old cursor may only be partially visible in
24528 window after split-window. So adjust visible height. */
24529 cursor_row
->visible_height
= min (cursor_row
->visible_height
,
24530 window_text_bottom_y (w
) - cursor_row
->y
);
24532 /* If row is completely invisible, don't attempt to delete a cursor which
24533 isn't there. This can happen if cursor is at top of a window, and
24534 we switch to a buffer with a header line in that window. */
24535 if (cursor_row
->visible_height
<= 0)
24536 goto mark_cursor_off
;
24538 /* If cursor is in the fringe, erase by drawing actual bitmap there. */
24539 if (cursor_row
->cursor_in_fringe_p
)
24541 cursor_row
->cursor_in_fringe_p
= 0;
24542 draw_fringe_bitmap (w
, cursor_row
, cursor_row
->reversed_p
);
24543 goto mark_cursor_off
;
24546 /* This can happen when the new row is shorter than the old one.
24547 In this case, either draw_glyphs or clear_end_of_line
24548 should have cleared the cursor. Note that we wouldn't be
24549 able to erase the cursor in this case because we don't have a
24550 cursor glyph at hand. */
24551 if ((cursor_row
->reversed_p
24552 ? (w
->phys_cursor
.hpos
< 0)
24553 : (w
->phys_cursor
.hpos
>= cursor_row
->used
[TEXT_AREA
])))
24554 goto mark_cursor_off
;
24556 /* If the cursor is in the mouse face area, redisplay that when
24557 we clear the cursor. */
24558 if (! NILP (hlinfo
->mouse_face_window
)
24559 && coords_in_mouse_face_p (w
, hpos
, vpos
)
24560 /* Don't redraw the cursor's spot in mouse face if it is at the
24561 end of a line (on a newline). The cursor appears there, but
24562 mouse highlighting does not. */
24563 && cursor_row
->used
[TEXT_AREA
] > hpos
&& hpos
>= 0)
24564 mouse_face_here_p
= 1;
24566 /* Maybe clear the display under the cursor. */
24567 if (w
->phys_cursor_type
== HOLLOW_BOX_CURSOR
)
24570 int header_line_height
= WINDOW_HEADER_LINE_HEIGHT (w
);
24573 cursor_glyph
= get_phys_cursor_glyph (w
);
24574 if (cursor_glyph
== NULL
)
24575 goto mark_cursor_off
;
24577 width
= cursor_glyph
->pixel_width
;
24578 left_x
= window_box_left_offset (w
, TEXT_AREA
);
24579 x
= w
->phys_cursor
.x
;
24581 width
-= left_x
- x
;
24582 width
= min (width
, window_box_width (w
, TEXT_AREA
) - x
);
24583 y
= WINDOW_TO_FRAME_PIXEL_Y (w
, max (header_line_height
, cursor_row
->y
));
24584 x
= WINDOW_TEXT_TO_FRAME_PIXEL_X (w
, max (x
, left_x
));
24587 FRAME_RIF (f
)->clear_frame_area (f
, x
, y
, width
, cursor_row
->visible_height
);
24590 /* Erase the cursor by redrawing the character underneath it. */
24591 if (mouse_face_here_p
)
24592 hl
= DRAW_MOUSE_FACE
;
24594 hl
= DRAW_NORMAL_TEXT
;
24595 draw_phys_cursor_glyph (w
, cursor_row
, hl
);
24598 w
->phys_cursor_on_p
= 0;
24599 w
->phys_cursor_type
= NO_CURSOR
;
24604 Display or clear cursor of window W. If ON is zero, clear the
24605 cursor. If it is non-zero, display the cursor. If ON is nonzero,
24606 where to put the cursor is specified by HPOS, VPOS, X and Y. */
24609 display_and_set_cursor (struct window
*w
, int on
,
24610 int hpos
, int vpos
, int x
, int y
)
24612 struct frame
*f
= XFRAME (w
->frame
);
24613 int new_cursor_type
;
24614 int new_cursor_width
;
24616 struct glyph_row
*glyph_row
;
24617 struct glyph
*glyph
;
24619 /* This is pointless on invisible frames, and dangerous on garbaged
24620 windows and frames; in the latter case, the frame or window may
24621 be in the midst of changing its size, and x and y may be off the
24623 if (! FRAME_VISIBLE_P (f
)
24624 || FRAME_GARBAGED_P (f
)
24625 || vpos
>= w
->current_matrix
->nrows
24626 || hpos
>= w
->current_matrix
->matrix_w
)
24629 /* If cursor is off and we want it off, return quickly. */
24630 if (!on
&& !w
->phys_cursor_on_p
)
24633 glyph_row
= MATRIX_ROW (w
->current_matrix
, vpos
);
24634 /* If cursor row is not enabled, we don't really know where to
24635 display the cursor. */
24636 if (!glyph_row
->enabled_p
)
24638 w
->phys_cursor_on_p
= 0;
24643 if (!glyph_row
->exact_window_width_line_p
24644 || (0 <= hpos
&& hpos
< glyph_row
->used
[TEXT_AREA
]))
24645 glyph
= glyph_row
->glyphs
[TEXT_AREA
] + hpos
;
24647 xassert (interrupt_input_blocked
);
24649 /* Set new_cursor_type to the cursor we want to be displayed. */
24650 new_cursor_type
= get_window_cursor_type (w
, glyph
,
24651 &new_cursor_width
, &active_cursor
);
24653 /* If cursor is currently being shown and we don't want it to be or
24654 it is in the wrong place, or the cursor type is not what we want,
24656 if (w
->phys_cursor_on_p
24658 || w
->phys_cursor
.x
!= x
24659 || w
->phys_cursor
.y
!= y
24660 || new_cursor_type
!= w
->phys_cursor_type
24661 || ((new_cursor_type
== BAR_CURSOR
|| new_cursor_type
== HBAR_CURSOR
)
24662 && new_cursor_width
!= w
->phys_cursor_width
)))
24663 erase_phys_cursor (w
);
24665 /* Don't check phys_cursor_on_p here because that flag is only set
24666 to zero in some cases where we know that the cursor has been
24667 completely erased, to avoid the extra work of erasing the cursor
24668 twice. In other words, phys_cursor_on_p can be 1 and the cursor
24669 still not be visible, or it has only been partly erased. */
24672 w
->phys_cursor_ascent
= glyph_row
->ascent
;
24673 w
->phys_cursor_height
= glyph_row
->height
;
24675 /* Set phys_cursor_.* before x_draw_.* is called because some
24676 of them may need the information. */
24677 w
->phys_cursor
.x
= x
;
24678 w
->phys_cursor
.y
= glyph_row
->y
;
24679 w
->phys_cursor
.hpos
= hpos
;
24680 w
->phys_cursor
.vpos
= vpos
;
24683 FRAME_RIF (f
)->draw_window_cursor (w
, glyph_row
, x
, y
,
24684 new_cursor_type
, new_cursor_width
,
24685 on
, active_cursor
);
24689 /* Switch the display of W's cursor on or off, according to the value
24693 update_window_cursor (struct window
*w
, int on
)
24695 /* Don't update cursor in windows whose frame is in the process
24696 of being deleted. */
24697 if (w
->current_matrix
)
24700 display_and_set_cursor (w
, on
, w
->phys_cursor
.hpos
, w
->phys_cursor
.vpos
,
24701 w
->phys_cursor
.x
, w
->phys_cursor
.y
);
24707 /* Call update_window_cursor with parameter ON_P on all leaf windows
24708 in the window tree rooted at W. */
24711 update_cursor_in_window_tree (struct window
*w
, int on_p
)
24715 if (!NILP (w
->hchild
))
24716 update_cursor_in_window_tree (XWINDOW (w
->hchild
), on_p
);
24717 else if (!NILP (w
->vchild
))
24718 update_cursor_in_window_tree (XWINDOW (w
->vchild
), on_p
);
24720 update_window_cursor (w
, on_p
);
24722 w
= NILP (w
->next
) ? 0 : XWINDOW (w
->next
);
24728 Display the cursor on window W, or clear it, according to ON_P.
24729 Don't change the cursor's position. */
24732 x_update_cursor (struct frame
*f
, int on_p
)
24734 update_cursor_in_window_tree (XWINDOW (f
->root_window
), on_p
);
24739 Clear the cursor of window W to background color, and mark the
24740 cursor as not shown. This is used when the text where the cursor
24741 is about to be rewritten. */
24744 x_clear_cursor (struct window
*w
)
24746 if (FRAME_VISIBLE_P (XFRAME (w
->frame
)) && w
->phys_cursor_on_p
)
24747 update_window_cursor (w
, 0);
24750 #endif /* HAVE_WINDOW_SYSTEM */
24752 /* Implementation of draw_row_with_mouse_face for GUI sessions, GPM,
24755 draw_row_with_mouse_face (struct window
*w
, int start_x
, struct glyph_row
*row
,
24756 int start_hpos
, int end_hpos
,
24757 enum draw_glyphs_face draw
)
24759 #ifdef HAVE_WINDOW_SYSTEM
24760 if (FRAME_WINDOW_P (XFRAME (w
->frame
)))
24762 draw_glyphs (w
, start_x
, row
, TEXT_AREA
, start_hpos
, end_hpos
, draw
, 0);
24766 #if defined (HAVE_GPM) || defined (MSDOS)
24767 tty_draw_row_with_mouse_face (w
, row
, start_hpos
, end_hpos
, draw
);
24771 /* Display the active region described by mouse_face_* according to DRAW. */
24774 show_mouse_face (Mouse_HLInfo
*hlinfo
, enum draw_glyphs_face draw
)
24776 struct window
*w
= XWINDOW (hlinfo
->mouse_face_window
);
24777 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
24779 if (/* If window is in the process of being destroyed, don't bother
24781 w
->current_matrix
!= NULL
24782 /* Don't update mouse highlight if hidden */
24783 && (draw
!= DRAW_MOUSE_FACE
|| !hlinfo
->mouse_face_hidden
)
24784 /* Recognize when we are called to operate on rows that don't exist
24785 anymore. This can happen when a window is split. */
24786 && hlinfo
->mouse_face_end_row
< w
->current_matrix
->nrows
)
24788 int phys_cursor_on_p
= w
->phys_cursor_on_p
;
24789 struct glyph_row
*row
, *first
, *last
;
24791 first
= MATRIX_ROW (w
->current_matrix
, hlinfo
->mouse_face_beg_row
);
24792 last
= MATRIX_ROW (w
->current_matrix
, hlinfo
->mouse_face_end_row
);
24794 for (row
= first
; row
<= last
&& row
->enabled_p
; ++row
)
24796 int start_hpos
, end_hpos
, start_x
;
24798 /* For all but the first row, the highlight starts at column 0. */
24801 /* R2L rows have BEG and END in reversed order, but the
24802 screen drawing geometry is always left to right. So
24803 we need to mirror the beginning and end of the
24804 highlighted area in R2L rows. */
24805 if (!row
->reversed_p
)
24807 start_hpos
= hlinfo
->mouse_face_beg_col
;
24808 start_x
= hlinfo
->mouse_face_beg_x
;
24810 else if (row
== last
)
24812 start_hpos
= hlinfo
->mouse_face_end_col
;
24813 start_x
= hlinfo
->mouse_face_end_x
;
24821 else if (row
->reversed_p
&& row
== last
)
24823 start_hpos
= hlinfo
->mouse_face_end_col
;
24824 start_x
= hlinfo
->mouse_face_end_x
;
24834 if (!row
->reversed_p
)
24835 end_hpos
= hlinfo
->mouse_face_end_col
;
24836 else if (row
== first
)
24837 end_hpos
= hlinfo
->mouse_face_beg_col
;
24840 end_hpos
= row
->used
[TEXT_AREA
];
24841 if (draw
== DRAW_NORMAL_TEXT
)
24842 row
->fill_line_p
= 1; /* Clear to end of line */
24845 else if (row
->reversed_p
&& row
== first
)
24846 end_hpos
= hlinfo
->mouse_face_beg_col
;
24849 end_hpos
= row
->used
[TEXT_AREA
];
24850 if (draw
== DRAW_NORMAL_TEXT
)
24851 row
->fill_line_p
= 1; /* Clear to end of line */
24854 if (end_hpos
> start_hpos
)
24856 draw_row_with_mouse_face (w
, start_x
, row
,
24857 start_hpos
, end_hpos
, draw
);
24860 = draw
== DRAW_MOUSE_FACE
|| draw
== DRAW_IMAGE_RAISED
;
24864 #ifdef HAVE_WINDOW_SYSTEM
24865 /* When we've written over the cursor, arrange for it to
24866 be displayed again. */
24867 if (FRAME_WINDOW_P (f
)
24868 && phys_cursor_on_p
&& !w
->phys_cursor_on_p
)
24871 display_and_set_cursor (w
, 1,
24872 w
->phys_cursor
.hpos
, w
->phys_cursor
.vpos
,
24873 w
->phys_cursor
.x
, w
->phys_cursor
.y
);
24876 #endif /* HAVE_WINDOW_SYSTEM */
24879 #ifdef HAVE_WINDOW_SYSTEM
24880 /* Change the mouse cursor. */
24881 if (FRAME_WINDOW_P (f
))
24883 if (draw
== DRAW_NORMAL_TEXT
24884 && !EQ (hlinfo
->mouse_face_window
, f
->tool_bar_window
))
24885 FRAME_RIF (f
)->define_frame_cursor (f
, FRAME_X_OUTPUT (f
)->text_cursor
);
24886 else if (draw
== DRAW_MOUSE_FACE
)
24887 FRAME_RIF (f
)->define_frame_cursor (f
, FRAME_X_OUTPUT (f
)->hand_cursor
);
24889 FRAME_RIF (f
)->define_frame_cursor (f
, FRAME_X_OUTPUT (f
)->nontext_cursor
);
24891 #endif /* HAVE_WINDOW_SYSTEM */
24895 Clear out the mouse-highlighted active region.
24896 Redraw it un-highlighted first. Value is non-zero if mouse
24897 face was actually drawn unhighlighted. */
24900 clear_mouse_face (Mouse_HLInfo
*hlinfo
)
24904 if (!hlinfo
->mouse_face_hidden
&& !NILP (hlinfo
->mouse_face_window
))
24906 show_mouse_face (hlinfo
, DRAW_NORMAL_TEXT
);
24910 hlinfo
->mouse_face_beg_row
= hlinfo
->mouse_face_beg_col
= -1;
24911 hlinfo
->mouse_face_end_row
= hlinfo
->mouse_face_end_col
= -1;
24912 hlinfo
->mouse_face_window
= Qnil
;
24913 hlinfo
->mouse_face_overlay
= Qnil
;
24917 /* Return non-zero if the coordinates HPOS and VPOS on windows W are
24918 within the mouse face on that window. */
24920 coords_in_mouse_face_p (struct window
*w
, int hpos
, int vpos
)
24922 Mouse_HLInfo
*hlinfo
= MOUSE_HL_INFO (XFRAME (w
->frame
));
24924 /* Quickly resolve the easy cases. */
24925 if (!(WINDOWP (hlinfo
->mouse_face_window
)
24926 && XWINDOW (hlinfo
->mouse_face_window
) == w
))
24928 if (vpos
< hlinfo
->mouse_face_beg_row
24929 || vpos
> hlinfo
->mouse_face_end_row
)
24931 if (vpos
> hlinfo
->mouse_face_beg_row
24932 && vpos
< hlinfo
->mouse_face_end_row
)
24935 if (!MATRIX_ROW (w
->current_matrix
, vpos
)->reversed_p
)
24937 if (hlinfo
->mouse_face_beg_row
== hlinfo
->mouse_face_end_row
)
24939 if (hlinfo
->mouse_face_beg_col
<= hpos
&& hpos
< hlinfo
->mouse_face_end_col
)
24942 else if ((vpos
== hlinfo
->mouse_face_beg_row
24943 && hpos
>= hlinfo
->mouse_face_beg_col
)
24944 || (vpos
== hlinfo
->mouse_face_end_row
24945 && hpos
< hlinfo
->mouse_face_end_col
))
24950 if (hlinfo
->mouse_face_beg_row
== hlinfo
->mouse_face_end_row
)
24952 if (hlinfo
->mouse_face_end_col
< hpos
&& hpos
<= hlinfo
->mouse_face_beg_col
)
24955 else if ((vpos
== hlinfo
->mouse_face_beg_row
24956 && hpos
<= hlinfo
->mouse_face_beg_col
)
24957 || (vpos
== hlinfo
->mouse_face_end_row
24958 && hpos
> hlinfo
->mouse_face_end_col
))
24966 Non-zero if physical cursor of window W is within mouse face. */
24969 cursor_in_mouse_face_p (struct window
*w
)
24971 return coords_in_mouse_face_p (w
, w
->phys_cursor
.hpos
, w
->phys_cursor
.vpos
);
24976 /* Find the glyph rows START_ROW and END_ROW of window W that display
24977 characters between buffer positions START_CHARPOS and END_CHARPOS
24978 (excluding END_CHARPOS). This is similar to row_containing_pos,
24979 but is more accurate when bidi reordering makes buffer positions
24980 change non-linearly with glyph rows. */
24982 rows_from_pos_range (struct window
*w
,
24983 EMACS_INT start_charpos
, EMACS_INT end_charpos
,
24984 struct glyph_row
**start
, struct glyph_row
**end
)
24986 struct glyph_row
*first
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
24987 int last_y
= window_text_bottom_y (w
);
24988 struct glyph_row
*row
;
24993 while (!first
->enabled_p
24994 && first
< MATRIX_BOTTOM_TEXT_ROW (w
->current_matrix
, w
))
24997 /* Find the START row. */
24999 row
->enabled_p
&& MATRIX_ROW_BOTTOM_Y (row
) <= last_y
;
25002 /* A row can potentially be the START row if the range of the
25003 characters it displays intersects the range
25004 [START_CHARPOS..END_CHARPOS). */
25005 if (! ((start_charpos
< MATRIX_ROW_START_CHARPOS (row
)
25006 && end_charpos
< MATRIX_ROW_START_CHARPOS (row
))
25007 /* See the commentary in row_containing_pos, for the
25008 explanation of the complicated way to check whether
25009 some position is beyond the end of the characters
25010 displayed by a row. */
25011 || ((start_charpos
> MATRIX_ROW_END_CHARPOS (row
)
25012 || (start_charpos
== MATRIX_ROW_END_CHARPOS (row
)
25013 && !row
->ends_at_zv_p
25014 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row
)))
25015 && (end_charpos
> MATRIX_ROW_END_CHARPOS (row
)
25016 || (end_charpos
== MATRIX_ROW_END_CHARPOS (row
)
25017 && !row
->ends_at_zv_p
25018 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row
))))))
25020 /* Found a candidate row. Now make sure at least one of the
25021 glyphs it displays has a charpos from the range
25022 [START_CHARPOS..END_CHARPOS).
25024 This is not obvious because bidi reordering could make
25025 buffer positions of a row be 1,2,3,102,101,100, and if we
25026 want to highlight characters in [50..60), we don't want
25027 this row, even though [50..60) does intersect [1..103),
25028 the range of character positions given by the row's start
25029 and end positions. */
25030 struct glyph
*g
= row
->glyphs
[TEXT_AREA
];
25031 struct glyph
*e
= g
+ row
->used
[TEXT_AREA
];
25035 if (BUFFERP (g
->object
)
25036 && start_charpos
<= g
->charpos
&& g
->charpos
< end_charpos
)
25045 /* Find the END row. */
25047 /* If the last row is partially visible, start looking for END
25048 from that row, instead of starting from FIRST. */
25049 && !(row
->enabled_p
25050 && row
->y
< last_y
&& MATRIX_ROW_BOTTOM_Y (row
) > last_y
))
25052 for ( ; row
->enabled_p
&& MATRIX_ROW_BOTTOM_Y (row
) <= last_y
; row
++)
25054 struct glyph_row
*next
= row
+ 1;
25056 if (!next
->enabled_p
25057 || next
>= MATRIX_BOTTOM_TEXT_ROW (w
->current_matrix
, w
)
25058 /* The first row >= START whose range of displayed characters
25059 does NOT intersect the range [START_CHARPOS..END_CHARPOS]
25060 is the row END + 1. */
25061 || (start_charpos
< MATRIX_ROW_START_CHARPOS (next
)
25062 && end_charpos
< MATRIX_ROW_START_CHARPOS (next
))
25063 || ((start_charpos
> MATRIX_ROW_END_CHARPOS (next
)
25064 || (start_charpos
== MATRIX_ROW_END_CHARPOS (next
)
25065 && !next
->ends_at_zv_p
25066 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (next
)))
25067 && (end_charpos
> MATRIX_ROW_END_CHARPOS (next
)
25068 || (end_charpos
== MATRIX_ROW_END_CHARPOS (next
)
25069 && !next
->ends_at_zv_p
25070 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (next
)))))
25077 /* If the next row's edges intersect [START_CHARPOS..END_CHARPOS],
25078 but none of the characters it displays are in the range, it is
25080 struct glyph
*g
= next
->glyphs
[TEXT_AREA
];
25081 struct glyph
*e
= g
+ next
->used
[TEXT_AREA
];
25085 if (BUFFERP (g
->object
)
25086 && start_charpos
<= g
->charpos
&& g
->charpos
< end_charpos
)
25099 /* This function sets the mouse_face_* elements of HLINFO, assuming
25100 the mouse cursor is on a glyph with buffer charpos MOUSE_CHARPOS in
25101 window WINDOW. START_CHARPOS and END_CHARPOS are buffer positions
25102 for the overlay or run of text properties specifying the mouse
25103 face. BEFORE_STRING and AFTER_STRING, if non-nil, are a
25104 before-string and after-string that must also be highlighted.
25105 COVER_STRING, if non-nil, is a display string that may cover some
25106 or all of the highlighted text. */
25109 mouse_face_from_buffer_pos (Lisp_Object window
,
25110 Mouse_HLInfo
*hlinfo
,
25111 EMACS_INT mouse_charpos
,
25112 EMACS_INT start_charpos
,
25113 EMACS_INT end_charpos
,
25114 Lisp_Object before_string
,
25115 Lisp_Object after_string
,
25116 Lisp_Object cover_string
)
25118 struct window
*w
= XWINDOW (window
);
25119 struct glyph_row
*first
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
25120 struct glyph_row
*r1
, *r2
;
25121 struct glyph
*glyph
, *end
;
25122 EMACS_INT ignore
, pos
;
25125 xassert (NILP (cover_string
) || STRINGP (cover_string
));
25126 xassert (NILP (before_string
) || STRINGP (before_string
));
25127 xassert (NILP (after_string
) || STRINGP (after_string
));
25129 /* Find the rows corresponding to START_CHARPOS and END_CHARPOS. */
25130 rows_from_pos_range (w
, start_charpos
, end_charpos
, &r1
, &r2
);
25132 r1
= MATRIX_ROW (w
->current_matrix
, XFASTINT (w
->window_end_vpos
));
25133 /* If the before-string or display-string contains newlines,
25134 rows_from_pos_range skips to its last row. Move back. */
25135 if (!NILP (before_string
) || !NILP (cover_string
))
25137 struct glyph_row
*prev
;
25138 while ((prev
= r1
- 1, prev
>= first
)
25139 && MATRIX_ROW_END_CHARPOS (prev
) == start_charpos
25140 && prev
->used
[TEXT_AREA
] > 0)
25142 struct glyph
*beg
= prev
->glyphs
[TEXT_AREA
];
25143 glyph
= beg
+ prev
->used
[TEXT_AREA
];
25144 while (--glyph
>= beg
&& INTEGERP (glyph
->object
));
25146 || !(EQ (glyph
->object
, before_string
)
25147 || EQ (glyph
->object
, cover_string
)))
25154 r2
= MATRIX_ROW (w
->current_matrix
, XFASTINT (w
->window_end_vpos
));
25155 hlinfo
->mouse_face_past_end
= 1;
25157 else if (!NILP (after_string
))
25159 /* If the after-string has newlines, advance to its last row. */
25160 struct glyph_row
*next
;
25161 struct glyph_row
*last
25162 = MATRIX_ROW (w
->current_matrix
, XFASTINT (w
->window_end_vpos
));
25164 for (next
= r2
+ 1;
25166 && next
->used
[TEXT_AREA
] > 0
25167 && EQ (next
->glyphs
[TEXT_AREA
]->object
, after_string
);
25171 /* The rest of the display engine assumes that mouse_face_beg_row is
25172 either above below mouse_face_end_row or identical to it. But
25173 with bidi-reordered continued lines, the row for START_CHARPOS
25174 could be below the row for END_CHARPOS. If so, swap the rows and
25175 store them in correct order. */
25178 struct glyph_row
*tem
= r2
;
25184 hlinfo
->mouse_face_beg_y
= r1
->y
;
25185 hlinfo
->mouse_face_beg_row
= MATRIX_ROW_VPOS (r1
, w
->current_matrix
);
25186 hlinfo
->mouse_face_end_y
= r2
->y
;
25187 hlinfo
->mouse_face_end_row
= MATRIX_ROW_VPOS (r2
, w
->current_matrix
);
25189 /* For a bidi-reordered row, the positions of BEFORE_STRING,
25190 AFTER_STRING, COVER_STRING, START_CHARPOS, and END_CHARPOS
25191 could be anywhere in the row and in any order. The strategy
25192 below is to find the leftmost and the rightmost glyph that
25193 belongs to either of these 3 strings, or whose position is
25194 between START_CHARPOS and END_CHARPOS, and highlight all the
25195 glyphs between those two. This may cover more than just the text
25196 between START_CHARPOS and END_CHARPOS if the range of characters
25197 strides the bidi level boundary, e.g. if the beginning is in R2L
25198 text while the end is in L2R text or vice versa. */
25199 if (!r1
->reversed_p
)
25201 /* This row is in a left to right paragraph. Scan it left to
25203 glyph
= r1
->glyphs
[TEXT_AREA
];
25204 end
= glyph
+ r1
->used
[TEXT_AREA
];
25207 /* Skip truncation glyphs at the start of the glyph row. */
25208 if (r1
->displays_text_p
)
25210 && INTEGERP (glyph
->object
)
25211 && glyph
->charpos
< 0;
25213 x
+= glyph
->pixel_width
;
25215 /* Scan the glyph row, looking for BEFORE_STRING, AFTER_STRING,
25216 or COVER_STRING, and the first glyph from buffer whose
25217 position is between START_CHARPOS and END_CHARPOS. */
25219 && !INTEGERP (glyph
->object
)
25220 && !EQ (glyph
->object
, cover_string
)
25221 && !(BUFFERP (glyph
->object
)
25222 && (glyph
->charpos
>= start_charpos
25223 && glyph
->charpos
< end_charpos
));
25226 /* BEFORE_STRING or AFTER_STRING are only relevant if they
25227 are present at buffer positions between START_CHARPOS and
25228 END_CHARPOS, or if they come from an overlay. */
25229 if (EQ (glyph
->object
, before_string
))
25231 pos
= string_buffer_position (before_string
,
25233 /* If pos == 0, it means before_string came from an
25234 overlay, not from a buffer position. */
25235 if (!pos
|| (pos
>= start_charpos
&& pos
< end_charpos
))
25238 else if (EQ (glyph
->object
, after_string
))
25240 pos
= string_buffer_position (after_string
, end_charpos
);
25241 if (!pos
|| (pos
>= start_charpos
&& pos
< end_charpos
))
25244 x
+= glyph
->pixel_width
;
25246 hlinfo
->mouse_face_beg_x
= x
;
25247 hlinfo
->mouse_face_beg_col
= glyph
- r1
->glyphs
[TEXT_AREA
];
25251 /* This row is in a right to left paragraph. Scan it right to
25255 end
= r1
->glyphs
[TEXT_AREA
] - 1;
25256 glyph
= end
+ r1
->used
[TEXT_AREA
];
25258 /* Skip truncation glyphs at the start of the glyph row. */
25259 if (r1
->displays_text_p
)
25261 && INTEGERP (glyph
->object
)
25262 && glyph
->charpos
< 0;
25266 /* Scan the glyph row, looking for BEFORE_STRING, AFTER_STRING,
25267 or COVER_STRING, and the first glyph from buffer whose
25268 position is between START_CHARPOS and END_CHARPOS. */
25270 && !INTEGERP (glyph
->object
)
25271 && !EQ (glyph
->object
, cover_string
)
25272 && !(BUFFERP (glyph
->object
)
25273 && (glyph
->charpos
>= start_charpos
25274 && glyph
->charpos
< end_charpos
));
25277 /* BEFORE_STRING or AFTER_STRING are only relevant if they
25278 are present at buffer positions between START_CHARPOS and
25279 END_CHARPOS, or if they come from an overlay. */
25280 if (EQ (glyph
->object
, before_string
))
25282 pos
= string_buffer_position (before_string
, start_charpos
);
25283 /* If pos == 0, it means before_string came from an
25284 overlay, not from a buffer position. */
25285 if (!pos
|| (pos
>= start_charpos
&& pos
< end_charpos
))
25288 else if (EQ (glyph
->object
, after_string
))
25290 pos
= string_buffer_position (after_string
, end_charpos
);
25291 if (!pos
|| (pos
>= start_charpos
&& pos
< end_charpos
))
25296 glyph
++; /* first glyph to the right of the highlighted area */
25297 for (g
= r1
->glyphs
[TEXT_AREA
], x
= r1
->x
; g
< glyph
; g
++)
25298 x
+= g
->pixel_width
;
25299 hlinfo
->mouse_face_beg_x
= x
;
25300 hlinfo
->mouse_face_beg_col
= glyph
- r1
->glyphs
[TEXT_AREA
];
25303 /* If the highlight ends in a different row, compute GLYPH and END
25304 for the end row. Otherwise, reuse the values computed above for
25305 the row where the highlight begins. */
25308 if (!r2
->reversed_p
)
25310 glyph
= r2
->glyphs
[TEXT_AREA
];
25311 end
= glyph
+ r2
->used
[TEXT_AREA
];
25316 end
= r2
->glyphs
[TEXT_AREA
] - 1;
25317 glyph
= end
+ r2
->used
[TEXT_AREA
];
25321 if (!r2
->reversed_p
)
25323 /* Skip truncation and continuation glyphs near the end of the
25324 row, and also blanks and stretch glyphs inserted by
25325 extend_face_to_end_of_line. */
25327 && INTEGERP ((end
- 1)->object
)
25328 && (end
- 1)->charpos
<= 0)
25330 /* Scan the rest of the glyph row from the end, looking for the
25331 first glyph that comes from BEFORE_STRING, AFTER_STRING, or
25332 COVER_STRING, or whose position is between START_CHARPOS
25336 && !INTEGERP (end
->object
)
25337 && !EQ (end
->object
, cover_string
)
25338 && !(BUFFERP (end
->object
)
25339 && (end
->charpos
>= start_charpos
25340 && end
->charpos
< end_charpos
));
25343 /* BEFORE_STRING or AFTER_STRING are only relevant if they
25344 are present at buffer positions between START_CHARPOS and
25345 END_CHARPOS, or if they come from an overlay. */
25346 if (EQ (end
->object
, before_string
))
25348 pos
= string_buffer_position (before_string
, start_charpos
);
25349 if (!pos
|| (pos
>= start_charpos
&& pos
< end_charpos
))
25352 else if (EQ (end
->object
, after_string
))
25354 pos
= string_buffer_position (after_string
, end_charpos
);
25355 if (!pos
|| (pos
>= start_charpos
&& pos
< end_charpos
))
25359 /* Find the X coordinate of the last glyph to be highlighted. */
25360 for (; glyph
<= end
; ++glyph
)
25361 x
+= glyph
->pixel_width
;
25363 hlinfo
->mouse_face_end_x
= x
;
25364 hlinfo
->mouse_face_end_col
= glyph
- r2
->glyphs
[TEXT_AREA
];
25368 /* Skip truncation and continuation glyphs near the end of the
25369 row, and also blanks and stretch glyphs inserted by
25370 extend_face_to_end_of_line. */
25374 && INTEGERP (end
->object
)
25375 && end
->charpos
<= 0)
25377 x
+= end
->pixel_width
;
25380 /* Scan the rest of the glyph row from the end, looking for the
25381 first glyph that comes from BEFORE_STRING, AFTER_STRING, or
25382 COVER_STRING, or whose position is between START_CHARPOS
25386 && !INTEGERP (end
->object
)
25387 && !EQ (end
->object
, cover_string
)
25388 && !(BUFFERP (end
->object
)
25389 && (end
->charpos
>= start_charpos
25390 && end
->charpos
< end_charpos
));
25393 /* BEFORE_STRING or AFTER_STRING are only relevant if they
25394 are present at buffer positions between START_CHARPOS and
25395 END_CHARPOS, or if they come from an overlay. */
25396 if (EQ (end
->object
, before_string
))
25398 pos
= string_buffer_position (before_string
, start_charpos
);
25399 if (!pos
|| (pos
>= start_charpos
&& pos
< end_charpos
))
25402 else if (EQ (end
->object
, after_string
))
25404 pos
= string_buffer_position (after_string
, end_charpos
);
25405 if (!pos
|| (pos
>= start_charpos
&& pos
< end_charpos
))
25408 x
+= end
->pixel_width
;
25410 hlinfo
->mouse_face_end_x
= x
;
25411 hlinfo
->mouse_face_end_col
= end
- r2
->glyphs
[TEXT_AREA
];
25414 hlinfo
->mouse_face_window
= window
;
25415 hlinfo
->mouse_face_face_id
25416 = face_at_buffer_position (w
, mouse_charpos
, 0, 0, &ignore
,
25418 !hlinfo
->mouse_face_hidden
, -1);
25419 show_mouse_face (hlinfo
, DRAW_MOUSE_FACE
);
25422 /* The following function is not used anymore (replaced with
25423 mouse_face_from_string_pos), but I leave it here for the time
25424 being, in case someone would. */
25426 #if 0 /* not used */
25428 /* Find the position of the glyph for position POS in OBJECT in
25429 window W's current matrix, and return in *X, *Y the pixel
25430 coordinates, and return in *HPOS, *VPOS the column/row of the glyph.
25432 RIGHT_P non-zero means return the position of the right edge of the
25433 glyph, RIGHT_P zero means return the left edge position.
25435 If no glyph for POS exists in the matrix, return the position of
25436 the glyph with the next smaller position that is in the matrix, if
25437 RIGHT_P is zero. If RIGHT_P is non-zero, and no glyph for POS
25438 exists in the matrix, return the position of the glyph with the
25439 next larger position in OBJECT.
25441 Value is non-zero if a glyph was found. */
25444 fast_find_string_pos (struct window
*w
, EMACS_INT pos
, Lisp_Object object
,
25445 int *hpos
, int *vpos
, int *x
, int *y
, int right_p
)
25447 int yb
= window_text_bottom_y (w
);
25448 struct glyph_row
*r
;
25449 struct glyph
*best_glyph
= NULL
;
25450 struct glyph_row
*best_row
= NULL
;
25453 for (r
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
25454 r
->enabled_p
&& r
->y
< yb
;
25457 struct glyph
*g
= r
->glyphs
[TEXT_AREA
];
25458 struct glyph
*e
= g
+ r
->used
[TEXT_AREA
];
25461 for (gx
= r
->x
; g
< e
; gx
+= g
->pixel_width
, ++g
)
25462 if (EQ (g
->object
, object
))
25464 if (g
->charpos
== pos
)
25471 else if (best_glyph
== NULL
25472 || ((eabs (g
->charpos
- pos
)
25473 < eabs (best_glyph
->charpos
- pos
))
25476 : g
->charpos
> pos
)))
25490 *hpos
= best_glyph
- best_row
->glyphs
[TEXT_AREA
];
25494 *x
+= best_glyph
->pixel_width
;
25499 *vpos
= best_row
- w
->current_matrix
->rows
;
25502 return best_glyph
!= NULL
;
25504 #endif /* not used */
25506 /* Find the positions of the first and the last glyphs in window W's
25507 current matrix that occlude positions [STARTPOS..ENDPOS] in OBJECT
25508 (assumed to be a string), and return in HLINFO's mouse_face_*
25509 members the pixel and column/row coordinates of those glyphs. */
25512 mouse_face_from_string_pos (struct window
*w
, Mouse_HLInfo
*hlinfo
,
25513 Lisp_Object object
,
25514 EMACS_INT startpos
, EMACS_INT endpos
)
25516 int yb
= window_text_bottom_y (w
);
25517 struct glyph_row
*r
;
25518 struct glyph
*g
, *e
;
25522 /* Find the glyph row with at least one position in the range
25523 [STARTPOS..ENDPOS], and the first glyph in that row whose
25524 position belongs to that range. */
25525 for (r
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
25526 r
->enabled_p
&& r
->y
< yb
;
25529 if (!r
->reversed_p
)
25531 g
= r
->glyphs
[TEXT_AREA
];
25532 e
= g
+ r
->used
[TEXT_AREA
];
25533 for (gx
= r
->x
; g
< e
; gx
+= g
->pixel_width
, ++g
)
25534 if (EQ (g
->object
, object
)
25535 && startpos
<= g
->charpos
&& g
->charpos
<= endpos
)
25537 hlinfo
->mouse_face_beg_row
= r
- w
->current_matrix
->rows
;
25538 hlinfo
->mouse_face_beg_y
= r
->y
;
25539 hlinfo
->mouse_face_beg_col
= g
- r
->glyphs
[TEXT_AREA
];
25540 hlinfo
->mouse_face_beg_x
= gx
;
25549 e
= r
->glyphs
[TEXT_AREA
];
25550 g
= e
+ r
->used
[TEXT_AREA
];
25551 for ( ; g
> e
; --g
)
25552 if (EQ ((g
-1)->object
, object
)
25553 && startpos
<= (g
-1)->charpos
&& (g
-1)->charpos
<= endpos
)
25555 hlinfo
->mouse_face_beg_row
= r
- w
->current_matrix
->rows
;
25556 hlinfo
->mouse_face_beg_y
= r
->y
;
25557 hlinfo
->mouse_face_beg_col
= g
- r
->glyphs
[TEXT_AREA
];
25558 for (gx
= r
->x
, g1
= r
->glyphs
[TEXT_AREA
]; g1
< g
; ++g1
)
25559 gx
+= g1
->pixel_width
;
25560 hlinfo
->mouse_face_beg_x
= gx
;
25572 /* Starting with the next row, look for the first row which does NOT
25573 include any glyphs whose positions are in the range. */
25574 for (++r
; r
->enabled_p
&& r
->y
< yb
; ++r
)
25576 g
= r
->glyphs
[TEXT_AREA
];
25577 e
= g
+ r
->used
[TEXT_AREA
];
25579 for ( ; g
< e
; ++g
)
25580 if (EQ (g
->object
, object
)
25581 && startpos
<= g
->charpos
&& g
->charpos
<= endpos
)
25590 /* The highlighted region ends on the previous row. */
25593 /* Set the end row and its vertical pixel coordinate. */
25594 hlinfo
->mouse_face_end_row
= r
- w
->current_matrix
->rows
;
25595 hlinfo
->mouse_face_end_y
= r
->y
;
25597 /* Compute and set the end column and the end column's horizontal
25598 pixel coordinate. */
25599 if (!r
->reversed_p
)
25601 g
= r
->glyphs
[TEXT_AREA
];
25602 e
= g
+ r
->used
[TEXT_AREA
];
25603 for ( ; e
> g
; --e
)
25604 if (EQ ((e
-1)->object
, object
)
25605 && startpos
<= (e
-1)->charpos
&& (e
-1)->charpos
<= endpos
)
25607 hlinfo
->mouse_face_end_col
= e
- g
;
25609 for (gx
= r
->x
; g
< e
; ++g
)
25610 gx
+= g
->pixel_width
;
25611 hlinfo
->mouse_face_end_x
= gx
;
25615 e
= r
->glyphs
[TEXT_AREA
];
25616 g
= e
+ r
->used
[TEXT_AREA
];
25617 for (gx
= r
->x
; e
< g
; ++e
)
25619 if (EQ (e
->object
, object
)
25620 && startpos
<= e
->charpos
&& e
->charpos
<= endpos
)
25622 gx
+= e
->pixel_width
;
25624 hlinfo
->mouse_face_end_col
= e
- r
->glyphs
[TEXT_AREA
];
25625 hlinfo
->mouse_face_end_x
= gx
;
25629 #ifdef HAVE_WINDOW_SYSTEM
25631 /* See if position X, Y is within a hot-spot of an image. */
25634 on_hot_spot_p (Lisp_Object hot_spot
, int x
, int y
)
25636 if (!CONSP (hot_spot
))
25639 if (EQ (XCAR (hot_spot
), Qrect
))
25641 /* CDR is (Top-Left . Bottom-Right) = ((x0 . y0) . (x1 . y1)) */
25642 Lisp_Object rect
= XCDR (hot_spot
);
25646 if (!CONSP (XCAR (rect
)))
25648 if (!CONSP (XCDR (rect
)))
25650 if (!(tem
= XCAR (XCAR (rect
)), INTEGERP (tem
) && x
>= XINT (tem
)))
25652 if (!(tem
= XCDR (XCAR (rect
)), INTEGERP (tem
) && y
>= XINT (tem
)))
25654 if (!(tem
= XCAR (XCDR (rect
)), INTEGERP (tem
) && x
<= XINT (tem
)))
25656 if (!(tem
= XCDR (XCDR (rect
)), INTEGERP (tem
) && y
<= XINT (tem
)))
25660 else if (EQ (XCAR (hot_spot
), Qcircle
))
25662 /* CDR is (Center . Radius) = ((x0 . y0) . r) */
25663 Lisp_Object circ
= XCDR (hot_spot
);
25664 Lisp_Object lr
, lx0
, ly0
;
25666 && CONSP (XCAR (circ
))
25667 && (lr
= XCDR (circ
), INTEGERP (lr
) || FLOATP (lr
))
25668 && (lx0
= XCAR (XCAR (circ
)), INTEGERP (lx0
))
25669 && (ly0
= XCDR (XCAR (circ
)), INTEGERP (ly0
)))
25671 double r
= XFLOATINT (lr
);
25672 double dx
= XINT (lx0
) - x
;
25673 double dy
= XINT (ly0
) - y
;
25674 return (dx
* dx
+ dy
* dy
<= r
* r
);
25677 else if (EQ (XCAR (hot_spot
), Qpoly
))
25679 /* CDR is [x0 y0 x1 y1 x2 y2 ...x(n-1) y(n-1)] */
25680 if (VECTORP (XCDR (hot_spot
)))
25682 struct Lisp_Vector
*v
= XVECTOR (XCDR (hot_spot
));
25683 Lisp_Object
*poly
= v
->contents
;
25684 int n
= v
->header
.size
;
25687 Lisp_Object lx
, ly
;
25690 /* Need an even number of coordinates, and at least 3 edges. */
25691 if (n
< 6 || n
& 1)
25694 /* Count edge segments intersecting line from (X,Y) to (X,infinity).
25695 If count is odd, we are inside polygon. Pixels on edges
25696 may or may not be included depending on actual geometry of the
25698 if ((lx
= poly
[n
-2], !INTEGERP (lx
))
25699 || (ly
= poly
[n
-1], !INTEGERP (lx
)))
25701 x0
= XINT (lx
), y0
= XINT (ly
);
25702 for (i
= 0; i
< n
; i
+= 2)
25704 int x1
= x0
, y1
= y0
;
25705 if ((lx
= poly
[i
], !INTEGERP (lx
))
25706 || (ly
= poly
[i
+1], !INTEGERP (ly
)))
25708 x0
= XINT (lx
), y0
= XINT (ly
);
25710 /* Does this segment cross the X line? */
25718 if (y
> y0
&& y
> y1
)
25720 if (y
< y0
+ ((y1
- y0
) * (x
- x0
)) / (x1
- x0
))
25730 find_hot_spot (Lisp_Object map
, int x
, int y
)
25732 while (CONSP (map
))
25734 if (CONSP (XCAR (map
))
25735 && on_hot_spot_p (XCAR (XCAR (map
)), x
, y
))
25743 DEFUN ("lookup-image-map", Flookup_image_map
, Slookup_image_map
,
25745 doc
: /* Lookup in image map MAP coordinates X and Y.
25746 An image map is an alist where each element has the format (AREA ID PLIST).
25747 An AREA is specified as either a rectangle, a circle, or a polygon:
25748 A rectangle is a cons (rect . ((x0 . y0) . (x1 . y1))) specifying the
25749 pixel coordinates of the upper left and bottom right corners.
25750 A circle is a cons (circle . ((x0 . y0) . r)) specifying the center
25751 and the radius of the circle; r may be a float or integer.
25752 A polygon is a cons (poly . [x0 y0 x1 y1 ...]) where each pair in the
25753 vector describes one corner in the polygon.
25754 Returns the alist element for the first matching AREA in MAP. */)
25755 (Lisp_Object map
, Lisp_Object x
, Lisp_Object y
)
25763 return find_hot_spot (map
, XINT (x
), XINT (y
));
25767 /* Display frame CURSOR, optionally using shape defined by POINTER. */
25769 define_frame_cursor1 (struct frame
*f
, Cursor cursor
, Lisp_Object pointer
)
25771 /* Do not change cursor shape while dragging mouse. */
25772 if (!NILP (do_mouse_tracking
))
25775 if (!NILP (pointer
))
25777 if (EQ (pointer
, Qarrow
))
25778 cursor
= FRAME_X_OUTPUT (f
)->nontext_cursor
;
25779 else if (EQ (pointer
, Qhand
))
25780 cursor
= FRAME_X_OUTPUT (f
)->hand_cursor
;
25781 else if (EQ (pointer
, Qtext
))
25782 cursor
= FRAME_X_OUTPUT (f
)->text_cursor
;
25783 else if (EQ (pointer
, intern ("hdrag")))
25784 cursor
= FRAME_X_OUTPUT (f
)->horizontal_drag_cursor
;
25785 #ifdef HAVE_X_WINDOWS
25786 else if (EQ (pointer
, intern ("vdrag")))
25787 cursor
= FRAME_X_DISPLAY_INFO (f
)->vertical_scroll_bar_cursor
;
25789 else if (EQ (pointer
, intern ("hourglass")))
25790 cursor
= FRAME_X_OUTPUT (f
)->hourglass_cursor
;
25791 else if (EQ (pointer
, Qmodeline
))
25792 cursor
= FRAME_X_OUTPUT (f
)->modeline_cursor
;
25794 cursor
= FRAME_X_OUTPUT (f
)->nontext_cursor
;
25797 if (cursor
!= No_Cursor
)
25798 FRAME_RIF (f
)->define_frame_cursor (f
, cursor
);
25801 #endif /* HAVE_WINDOW_SYSTEM */
25803 /* Take proper action when mouse has moved to the mode or header line
25804 or marginal area AREA of window W, x-position X and y-position Y.
25805 X is relative to the start of the text display area of W, so the
25806 width of bitmap areas and scroll bars must be subtracted to get a
25807 position relative to the start of the mode line. */
25810 note_mode_line_or_margin_highlight (Lisp_Object window
, int x
, int y
,
25811 enum window_part area
)
25813 struct window
*w
= XWINDOW (window
);
25814 struct frame
*f
= XFRAME (w
->frame
);
25815 Mouse_HLInfo
*hlinfo
= MOUSE_HL_INFO (f
);
25816 #ifdef HAVE_WINDOW_SYSTEM
25817 Display_Info
*dpyinfo
;
25819 Cursor cursor
= No_Cursor
;
25820 Lisp_Object pointer
= Qnil
;
25821 int dx
, dy
, width
, height
;
25823 Lisp_Object string
, object
= Qnil
;
25824 Lisp_Object pos
, help
;
25826 Lisp_Object mouse_face
;
25827 int original_x_pixel
= x
;
25828 struct glyph
* glyph
= NULL
, * row_start_glyph
= NULL
;
25829 struct glyph_row
*row
;
25831 if (area
== ON_MODE_LINE
|| area
== ON_HEADER_LINE
)
25836 /* Kludge alert: mode_line_string takes X/Y in pixels, but
25837 returns them in row/column units! */
25838 string
= mode_line_string (w
, area
, &x
, &y
, &charpos
,
25839 &object
, &dx
, &dy
, &width
, &height
);
25841 row
= (area
== ON_MODE_LINE
25842 ? MATRIX_MODE_LINE_ROW (w
->current_matrix
)
25843 : MATRIX_HEADER_LINE_ROW (w
->current_matrix
));
25845 /* Find the glyph under the mouse pointer. */
25846 if (row
->mode_line_p
&& row
->enabled_p
)
25848 glyph
= row_start_glyph
= row
->glyphs
[TEXT_AREA
];
25849 end
= glyph
+ row
->used
[TEXT_AREA
];
25851 for (x0
= original_x_pixel
;
25852 glyph
< end
&& x0
>= glyph
->pixel_width
;
25854 x0
-= glyph
->pixel_width
;
25862 x
-= WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w
);
25863 /* Kludge alert: marginal_area_string takes X/Y in pixels, but
25864 returns them in row/column units! */
25865 string
= marginal_area_string (w
, area
, &x
, &y
, &charpos
,
25866 &object
, &dx
, &dy
, &width
, &height
);
25871 #ifdef HAVE_WINDOW_SYSTEM
25872 if (IMAGEP (object
))
25874 Lisp_Object image_map
, hotspot
;
25875 if ((image_map
= Fplist_get (XCDR (object
), QCmap
),
25877 && (hotspot
= find_hot_spot (image_map
, dx
, dy
),
25879 && (hotspot
= XCDR (hotspot
), CONSP (hotspot
)))
25883 /* Could check XCAR (hotspot) to see if we enter/leave this hot-spot.
25884 If so, we could look for mouse-enter, mouse-leave
25885 properties in PLIST (and do something...). */
25886 hotspot
= XCDR (hotspot
);
25887 if (CONSP (hotspot
)
25888 && (plist
= XCAR (hotspot
), CONSP (plist
)))
25890 pointer
= Fplist_get (plist
, Qpointer
);
25891 if (NILP (pointer
))
25893 help
= Fplist_get (plist
, Qhelp_echo
);
25896 help_echo_string
= help
;
25897 /* Is this correct? ++kfs */
25898 XSETWINDOW (help_echo_window
, w
);
25899 help_echo_object
= w
->buffer
;
25900 help_echo_pos
= charpos
;
25904 if (NILP (pointer
))
25905 pointer
= Fplist_get (XCDR (object
), QCpointer
);
25907 #endif /* HAVE_WINDOW_SYSTEM */
25909 if (STRINGP (string
))
25911 pos
= make_number (charpos
);
25912 /* If we're on a string with `help-echo' text property, arrange
25913 for the help to be displayed. This is done by setting the
25914 global variable help_echo_string to the help string. */
25917 help
= Fget_text_property (pos
, Qhelp_echo
, string
);
25920 help_echo_string
= help
;
25921 XSETWINDOW (help_echo_window
, w
);
25922 help_echo_object
= string
;
25923 help_echo_pos
= charpos
;
25927 #ifdef HAVE_WINDOW_SYSTEM
25928 if (FRAME_WINDOW_P (f
))
25930 dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
25931 cursor
= FRAME_X_OUTPUT (f
)->nontext_cursor
;
25932 if (NILP (pointer
))
25933 pointer
= Fget_text_property (pos
, Qpointer
, string
);
25935 /* Change the mouse pointer according to what is under X/Y. */
25937 && ((area
== ON_MODE_LINE
) || (area
== ON_HEADER_LINE
)))
25940 map
= Fget_text_property (pos
, Qlocal_map
, string
);
25941 if (!KEYMAPP (map
))
25942 map
= Fget_text_property (pos
, Qkeymap
, string
);
25943 if (!KEYMAPP (map
))
25944 cursor
= dpyinfo
->vertical_scroll_bar_cursor
;
25949 /* Change the mouse face according to what is under X/Y. */
25950 mouse_face
= Fget_text_property (pos
, Qmouse_face
, string
);
25951 if (!NILP (mouse_face
)
25952 && ((area
== ON_MODE_LINE
) || (area
== ON_HEADER_LINE
))
25957 struct glyph
* tmp_glyph
;
25961 int total_pixel_width
;
25962 EMACS_INT begpos
, endpos
, ignore
;
25966 b
= Fprevious_single_property_change (make_number (charpos
+ 1),
25967 Qmouse_face
, string
, Qnil
);
25973 e
= Fnext_single_property_change (pos
, Qmouse_face
, string
, Qnil
);
25975 endpos
= SCHARS (string
);
25979 /* Calculate the glyph position GPOS of GLYPH in the
25980 displayed string, relative to the beginning of the
25981 highlighted part of the string.
25983 Note: GPOS is different from CHARPOS. CHARPOS is the
25984 position of GLYPH in the internal string object. A mode
25985 line string format has structures which are converted to
25986 a flattened string by the Emacs Lisp interpreter. The
25987 internal string is an element of those structures. The
25988 displayed string is the flattened string. */
25989 tmp_glyph
= row_start_glyph
;
25990 while (tmp_glyph
< glyph
25991 && (!(EQ (tmp_glyph
->object
, glyph
->object
)
25992 && begpos
<= tmp_glyph
->charpos
25993 && tmp_glyph
->charpos
< endpos
)))
25995 gpos
= glyph
- tmp_glyph
;
25997 /* Calculate the length GSEQ_LENGTH of the glyph sequence of
25998 the highlighted part of the displayed string to which
25999 GLYPH belongs. Note: GSEQ_LENGTH is different from
26000 SCHARS (STRING), because the latter returns the length of
26001 the internal string. */
26002 for (tmp_glyph
= row
->glyphs
[TEXT_AREA
] + row
->used
[TEXT_AREA
] - 1;
26004 && (!(EQ (tmp_glyph
->object
, glyph
->object
)
26005 && begpos
<= tmp_glyph
->charpos
26006 && tmp_glyph
->charpos
< endpos
));
26009 gseq_length
= gpos
+ (tmp_glyph
- glyph
) + 1;
26011 /* Calculate the total pixel width of all the glyphs between
26012 the beginning of the highlighted area and GLYPH. */
26013 total_pixel_width
= 0;
26014 for (tmp_glyph
= glyph
- gpos
; tmp_glyph
!= glyph
; tmp_glyph
++)
26015 total_pixel_width
+= tmp_glyph
->pixel_width
;
26017 /* Pre calculation of re-rendering position. Note: X is in
26018 column units here, after the call to mode_line_string or
26019 marginal_area_string. */
26021 vpos
= (area
== ON_MODE_LINE
26022 ? (w
->current_matrix
)->nrows
- 1
26025 /* If GLYPH's position is included in the region that is
26026 already drawn in mouse face, we have nothing to do. */
26027 if ( EQ (window
, hlinfo
->mouse_face_window
)
26028 && (!row
->reversed_p
26029 ? (hlinfo
->mouse_face_beg_col
<= hpos
26030 && hpos
< hlinfo
->mouse_face_end_col
)
26031 /* In R2L rows we swap BEG and END, see below. */
26032 : (hlinfo
->mouse_face_end_col
<= hpos
26033 && hpos
< hlinfo
->mouse_face_beg_col
))
26034 && hlinfo
->mouse_face_beg_row
== vpos
)
26037 if (clear_mouse_face (hlinfo
))
26038 cursor
= No_Cursor
;
26040 if (!row
->reversed_p
)
26042 hlinfo
->mouse_face_beg_col
= hpos
;
26043 hlinfo
->mouse_face_beg_x
= original_x_pixel
26044 - (total_pixel_width
+ dx
);
26045 hlinfo
->mouse_face_end_col
= hpos
+ gseq_length
;
26046 hlinfo
->mouse_face_end_x
= 0;
26050 /* In R2L rows, show_mouse_face expects BEG and END
26051 coordinates to be swapped. */
26052 hlinfo
->mouse_face_end_col
= hpos
;
26053 hlinfo
->mouse_face_end_x
= original_x_pixel
26054 - (total_pixel_width
+ dx
);
26055 hlinfo
->mouse_face_beg_col
= hpos
+ gseq_length
;
26056 hlinfo
->mouse_face_beg_x
= 0;
26059 hlinfo
->mouse_face_beg_row
= vpos
;
26060 hlinfo
->mouse_face_end_row
= hlinfo
->mouse_face_beg_row
;
26061 hlinfo
->mouse_face_beg_y
= 0;
26062 hlinfo
->mouse_face_end_y
= 0;
26063 hlinfo
->mouse_face_past_end
= 0;
26064 hlinfo
->mouse_face_window
= window
;
26066 hlinfo
->mouse_face_face_id
= face_at_string_position (w
, string
,
26072 show_mouse_face (hlinfo
, DRAW_MOUSE_FACE
);
26074 if (NILP (pointer
))
26077 else if ((area
== ON_MODE_LINE
) || (area
== ON_HEADER_LINE
))
26078 clear_mouse_face (hlinfo
);
26080 #ifdef HAVE_WINDOW_SYSTEM
26081 if (FRAME_WINDOW_P (f
))
26082 define_frame_cursor1 (f
, cursor
, pointer
);
26088 Take proper action when the mouse has moved to position X, Y on
26089 frame F as regards highlighting characters that have mouse-face
26090 properties. Also de-highlighting chars where the mouse was before.
26091 X and Y can be negative or out of range. */
26094 note_mouse_highlight (struct frame
*f
, int x
, int y
)
26096 Mouse_HLInfo
*hlinfo
= MOUSE_HL_INFO (f
);
26097 enum window_part part
;
26098 Lisp_Object window
;
26100 Cursor cursor
= No_Cursor
;
26101 Lisp_Object pointer
= Qnil
; /* Takes precedence over cursor! */
26104 /* When a menu is active, don't highlight because this looks odd. */
26105 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NS) || defined (MSDOS)
26106 if (popup_activated ())
26110 if (NILP (Vmouse_highlight
)
26111 || !f
->glyphs_initialized_p
26112 || f
->pointer_invisible
)
26115 hlinfo
->mouse_face_mouse_x
= x
;
26116 hlinfo
->mouse_face_mouse_y
= y
;
26117 hlinfo
->mouse_face_mouse_frame
= f
;
26119 if (hlinfo
->mouse_face_defer
)
26122 if (gc_in_progress
)
26124 hlinfo
->mouse_face_deferred_gc
= 1;
26128 /* Which window is that in? */
26129 window
= window_from_coordinates (f
, x
, y
, &part
, 1);
26131 /* If we were displaying active text in another window, clear that.
26132 Also clear if we move out of text area in same window. */
26133 if (! EQ (window
, hlinfo
->mouse_face_window
)
26134 || (part
!= ON_TEXT
&& part
!= ON_MODE_LINE
&& part
!= ON_HEADER_LINE
26135 && !NILP (hlinfo
->mouse_face_window
)))
26136 clear_mouse_face (hlinfo
);
26138 /* Not on a window -> return. */
26139 if (!WINDOWP (window
))
26142 /* Reset help_echo_string. It will get recomputed below. */
26143 help_echo_string
= Qnil
;
26145 /* Convert to window-relative pixel coordinates. */
26146 w
= XWINDOW (window
);
26147 frame_to_window_pixel_xy (w
, &x
, &y
);
26149 #ifdef HAVE_WINDOW_SYSTEM
26150 /* Handle tool-bar window differently since it doesn't display a
26152 if (EQ (window
, f
->tool_bar_window
))
26154 note_tool_bar_highlight (f
, x
, y
);
26159 /* Mouse is on the mode, header line or margin? */
26160 if (part
== ON_MODE_LINE
|| part
== ON_HEADER_LINE
26161 || part
== ON_LEFT_MARGIN
|| part
== ON_RIGHT_MARGIN
)
26163 note_mode_line_or_margin_highlight (window
, x
, y
, part
);
26167 #ifdef HAVE_WINDOW_SYSTEM
26168 if (part
== ON_VERTICAL_BORDER
)
26170 cursor
= FRAME_X_OUTPUT (f
)->horizontal_drag_cursor
;
26171 help_echo_string
= build_string ("drag-mouse-1: resize");
26173 else if (part
== ON_LEFT_FRINGE
|| part
== ON_RIGHT_FRINGE
26174 || part
== ON_SCROLL_BAR
)
26175 cursor
= FRAME_X_OUTPUT (f
)->nontext_cursor
;
26177 cursor
= FRAME_X_OUTPUT (f
)->text_cursor
;
26180 /* Are we in a window whose display is up to date?
26181 And verify the buffer's text has not changed. */
26182 b
= XBUFFER (w
->buffer
);
26183 if (part
== ON_TEXT
26184 && EQ (w
->window_end_valid
, w
->buffer
)
26185 && XFASTINT (w
->last_modified
) == BUF_MODIFF (b
)
26186 && XFASTINT (w
->last_overlay_modified
) == BUF_OVERLAY_MODIFF (b
))
26188 int hpos
, vpos
, i
, dx
, dy
, area
;
26190 struct glyph
*glyph
;
26191 Lisp_Object object
;
26192 Lisp_Object mouse_face
= Qnil
, position
;
26193 Lisp_Object
*overlay_vec
= NULL
;
26195 struct buffer
*obuf
;
26196 EMACS_INT obegv
, ozv
;
26199 /* Find the glyph under X/Y. */
26200 glyph
= x_y_to_hpos_vpos (w
, x
, y
, &hpos
, &vpos
, &dx
, &dy
, &area
);
26202 #ifdef HAVE_WINDOW_SYSTEM
26203 /* Look for :pointer property on image. */
26204 if (glyph
!= NULL
&& glyph
->type
== IMAGE_GLYPH
)
26206 struct image
*img
= IMAGE_FROM_ID (f
, glyph
->u
.img_id
);
26207 if (img
!= NULL
&& IMAGEP (img
->spec
))
26209 Lisp_Object image_map
, hotspot
;
26210 if ((image_map
= Fplist_get (XCDR (img
->spec
), QCmap
),
26212 && (hotspot
= find_hot_spot (image_map
,
26213 glyph
->slice
.img
.x
+ dx
,
26214 glyph
->slice
.img
.y
+ dy
),
26216 && (hotspot
= XCDR (hotspot
), CONSP (hotspot
)))
26220 /* Could check XCAR (hotspot) to see if we enter/leave
26222 If so, we could look for mouse-enter, mouse-leave
26223 properties in PLIST (and do something...). */
26224 hotspot
= XCDR (hotspot
);
26225 if (CONSP (hotspot
)
26226 && (plist
= XCAR (hotspot
), CONSP (plist
)))
26228 pointer
= Fplist_get (plist
, Qpointer
);
26229 if (NILP (pointer
))
26231 help_echo_string
= Fplist_get (plist
, Qhelp_echo
);
26232 if (!NILP (help_echo_string
))
26234 help_echo_window
= window
;
26235 help_echo_object
= glyph
->object
;
26236 help_echo_pos
= glyph
->charpos
;
26240 if (NILP (pointer
))
26241 pointer
= Fplist_get (XCDR (img
->spec
), QCpointer
);
26244 #endif /* HAVE_WINDOW_SYSTEM */
26246 /* Clear mouse face if X/Y not over text. */
26248 || area
!= TEXT_AREA
26249 || !MATRIX_ROW (w
->current_matrix
, vpos
)->displays_text_p
26250 /* Glyph's OBJECT is an integer for glyphs inserted by the
26251 display engine for its internal purposes, like truncation
26252 and continuation glyphs and blanks beyond the end of
26253 line's text on text terminals. If we are over such a
26254 glyph, we are not over any text. */
26255 || INTEGERP (glyph
->object
)
26256 /* R2L rows have a stretch glyph at their front, which
26257 stands for no text, whereas L2R rows have no glyphs at
26258 all beyond the end of text. Treat such stretch glyphs
26259 like we do with NULL glyphs in L2R rows. */
26260 || (MATRIX_ROW (w
->current_matrix
, vpos
)->reversed_p
26261 && glyph
== MATRIX_ROW (w
->current_matrix
, vpos
)->glyphs
[TEXT_AREA
]
26262 && glyph
->type
== STRETCH_GLYPH
26263 && glyph
->avoid_cursor_p
))
26265 if (clear_mouse_face (hlinfo
))
26266 cursor
= No_Cursor
;
26267 #ifdef HAVE_WINDOW_SYSTEM
26268 if (FRAME_WINDOW_P (f
) && NILP (pointer
))
26270 if (area
!= TEXT_AREA
)
26271 cursor
= FRAME_X_OUTPUT (f
)->nontext_cursor
;
26273 pointer
= Vvoid_text_area_pointer
;
26279 pos
= glyph
->charpos
;
26280 object
= glyph
->object
;
26281 if (!STRINGP (object
) && !BUFFERP (object
))
26284 /* If we get an out-of-range value, return now; avoid an error. */
26285 if (BUFFERP (object
) && pos
> BUF_Z (b
))
26288 /* Make the window's buffer temporarily current for
26289 overlays_at and compute_char_face. */
26290 obuf
= current_buffer
;
26291 current_buffer
= b
;
26297 /* Is this char mouse-active or does it have help-echo? */
26298 position
= make_number (pos
);
26300 if (BUFFERP (object
))
26302 /* Put all the overlays we want in a vector in overlay_vec. */
26303 GET_OVERLAYS_AT (pos
, overlay_vec
, noverlays
, NULL
, 0);
26304 /* Sort overlays into increasing priority order. */
26305 noverlays
= sort_overlays (overlay_vec
, noverlays
, w
);
26310 same_region
= coords_in_mouse_face_p (w
, hpos
, vpos
);
26313 cursor
= No_Cursor
;
26315 /* Check mouse-face highlighting. */
26317 /* If there exists an overlay with mouse-face overlapping
26318 the one we are currently highlighting, we have to
26319 check if we enter the overlapping overlay, and then
26320 highlight only that. */
26321 || (OVERLAYP (hlinfo
->mouse_face_overlay
)
26322 && mouse_face_overlay_overlaps (hlinfo
->mouse_face_overlay
)))
26324 /* Find the highest priority overlay with a mouse-face. */
26325 Lisp_Object overlay
= Qnil
;
26326 for (i
= noverlays
- 1; i
>= 0 && NILP (overlay
); --i
)
26328 mouse_face
= Foverlay_get (overlay_vec
[i
], Qmouse_face
);
26329 if (!NILP (mouse_face
))
26330 overlay
= overlay_vec
[i
];
26333 /* If we're highlighting the same overlay as before, there's
26334 no need to do that again. */
26335 if (!NILP (overlay
) && EQ (overlay
, hlinfo
->mouse_face_overlay
))
26336 goto check_help_echo
;
26337 hlinfo
->mouse_face_overlay
= overlay
;
26339 /* Clear the display of the old active region, if any. */
26340 if (clear_mouse_face (hlinfo
))
26341 cursor
= No_Cursor
;
26343 /* If no overlay applies, get a text property. */
26344 if (NILP (overlay
))
26345 mouse_face
= Fget_text_property (position
, Qmouse_face
, object
);
26347 /* Next, compute the bounds of the mouse highlighting and
26349 if (!NILP (mouse_face
) && STRINGP (object
))
26351 /* The mouse-highlighting comes from a display string
26352 with a mouse-face. */
26356 s
= Fprevious_single_property_change
26357 (make_number (pos
+ 1), Qmouse_face
, object
, Qnil
);
26358 e
= Fnext_single_property_change
26359 (position
, Qmouse_face
, object
, Qnil
);
26361 s
= make_number (0);
26363 e
= make_number (SCHARS (object
) - 1);
26364 mouse_face_from_string_pos (w
, hlinfo
, object
,
26365 XINT (s
), XINT (e
));
26366 hlinfo
->mouse_face_past_end
= 0;
26367 hlinfo
->mouse_face_window
= window
;
26368 hlinfo
->mouse_face_face_id
26369 = face_at_string_position (w
, object
, pos
, 0, 0, 0, &ignore
,
26370 glyph
->face_id
, 1);
26371 show_mouse_face (hlinfo
, DRAW_MOUSE_FACE
);
26372 cursor
= No_Cursor
;
26376 /* The mouse-highlighting, if any, comes from an overlay
26377 or text property in the buffer. */
26378 Lisp_Object buffer
IF_LINT (= Qnil
);
26379 Lisp_Object cover_string
IF_LINT (= Qnil
);
26381 if (STRINGP (object
))
26383 /* If we are on a display string with no mouse-face,
26384 check if the text under it has one. */
26385 struct glyph_row
*r
= MATRIX_ROW (w
->current_matrix
, vpos
);
26386 EMACS_INT start
= MATRIX_ROW_START_CHARPOS (r
);
26387 pos
= string_buffer_position (object
, start
);
26390 mouse_face
= get_char_property_and_overlay
26391 (make_number (pos
), Qmouse_face
, w
->buffer
, &overlay
);
26392 buffer
= w
->buffer
;
26393 cover_string
= object
;
26399 cover_string
= Qnil
;
26402 if (!NILP (mouse_face
))
26404 Lisp_Object before
, after
;
26405 Lisp_Object before_string
, after_string
;
26406 /* To correctly find the limits of mouse highlight
26407 in a bidi-reordered buffer, we must not use the
26408 optimization of limiting the search in
26409 previous-single-property-change and
26410 next-single-property-change, because
26411 rows_from_pos_range needs the real start and end
26412 positions to DTRT in this case. That's because
26413 the first row visible in a window does not
26414 necessarily display the character whose position
26415 is the smallest. */
26417 NILP (BVAR (XBUFFER (buffer
), bidi_display_reordering
))
26418 ? Fmarker_position (w
->start
)
26421 NILP (BVAR (XBUFFER (buffer
), bidi_display_reordering
))
26422 ? make_number (BUF_Z (XBUFFER (buffer
))
26423 - XFASTINT (w
->window_end_pos
))
26426 if (NILP (overlay
))
26428 /* Handle the text property case. */
26429 before
= Fprevious_single_property_change
26430 (make_number (pos
+ 1), Qmouse_face
, buffer
, lim1
);
26431 after
= Fnext_single_property_change
26432 (make_number (pos
), Qmouse_face
, buffer
, lim2
);
26433 before_string
= after_string
= Qnil
;
26437 /* Handle the overlay case. */
26438 before
= Foverlay_start (overlay
);
26439 after
= Foverlay_end (overlay
);
26440 before_string
= Foverlay_get (overlay
, Qbefore_string
);
26441 after_string
= Foverlay_get (overlay
, Qafter_string
);
26443 if (!STRINGP (before_string
)) before_string
= Qnil
;
26444 if (!STRINGP (after_string
)) after_string
= Qnil
;
26447 mouse_face_from_buffer_pos (window
, hlinfo
, pos
,
26450 before_string
, after_string
,
26452 cursor
= No_Cursor
;
26459 /* Look for a `help-echo' property. */
26460 if (NILP (help_echo_string
)) {
26461 Lisp_Object help
, overlay
;
26463 /* Check overlays first. */
26464 help
= overlay
= Qnil
;
26465 for (i
= noverlays
- 1; i
>= 0 && NILP (help
); --i
)
26467 overlay
= overlay_vec
[i
];
26468 help
= Foverlay_get (overlay
, Qhelp_echo
);
26473 help_echo_string
= help
;
26474 help_echo_window
= window
;
26475 help_echo_object
= overlay
;
26476 help_echo_pos
= pos
;
26480 Lisp_Object obj
= glyph
->object
;
26481 EMACS_INT charpos
= glyph
->charpos
;
26483 /* Try text properties. */
26486 && charpos
< SCHARS (obj
))
26488 help
= Fget_text_property (make_number (charpos
),
26492 /* If the string itself doesn't specify a help-echo,
26493 see if the buffer text ``under'' it does. */
26494 struct glyph_row
*r
26495 = MATRIX_ROW (w
->current_matrix
, vpos
);
26496 EMACS_INT start
= MATRIX_ROW_START_CHARPOS (r
);
26497 EMACS_INT p
= string_buffer_position (obj
, start
);
26500 help
= Fget_char_property (make_number (p
),
26501 Qhelp_echo
, w
->buffer
);
26510 else if (BUFFERP (obj
)
26513 help
= Fget_text_property (make_number (charpos
), Qhelp_echo
,
26518 help_echo_string
= help
;
26519 help_echo_window
= window
;
26520 help_echo_object
= obj
;
26521 help_echo_pos
= charpos
;
26526 #ifdef HAVE_WINDOW_SYSTEM
26527 /* Look for a `pointer' property. */
26528 if (FRAME_WINDOW_P (f
) && NILP (pointer
))
26530 /* Check overlays first. */
26531 for (i
= noverlays
- 1; i
>= 0 && NILP (pointer
); --i
)
26532 pointer
= Foverlay_get (overlay_vec
[i
], Qpointer
);
26534 if (NILP (pointer
))
26536 Lisp_Object obj
= glyph
->object
;
26537 EMACS_INT charpos
= glyph
->charpos
;
26539 /* Try text properties. */
26542 && charpos
< SCHARS (obj
))
26544 pointer
= Fget_text_property (make_number (charpos
),
26546 if (NILP (pointer
))
26548 /* If the string itself doesn't specify a pointer,
26549 see if the buffer text ``under'' it does. */
26550 struct glyph_row
*r
26551 = MATRIX_ROW (w
->current_matrix
, vpos
);
26552 EMACS_INT start
= MATRIX_ROW_START_CHARPOS (r
);
26553 EMACS_INT p
= string_buffer_position (obj
, start
);
26555 pointer
= Fget_char_property (make_number (p
),
26556 Qpointer
, w
->buffer
);
26559 else if (BUFFERP (obj
)
26562 pointer
= Fget_text_property (make_number (charpos
),
26566 #endif /* HAVE_WINDOW_SYSTEM */
26570 current_buffer
= obuf
;
26575 #ifdef HAVE_WINDOW_SYSTEM
26576 if (FRAME_WINDOW_P (f
))
26577 define_frame_cursor1 (f
, cursor
, pointer
);
26579 /* This is here to prevent a compiler error, about "label at end of
26580 compound statement". */
26587 Clear any mouse-face on window W. This function is part of the
26588 redisplay interface, and is called from try_window_id and similar
26589 functions to ensure the mouse-highlight is off. */
26592 x_clear_window_mouse_face (struct window
*w
)
26594 Mouse_HLInfo
*hlinfo
= MOUSE_HL_INFO (XFRAME (w
->frame
));
26595 Lisp_Object window
;
26598 XSETWINDOW (window
, w
);
26599 if (EQ (window
, hlinfo
->mouse_face_window
))
26600 clear_mouse_face (hlinfo
);
26606 Just discard the mouse face information for frame F, if any.
26607 This is used when the size of F is changed. */
26610 cancel_mouse_face (struct frame
*f
)
26612 Lisp_Object window
;
26613 Mouse_HLInfo
*hlinfo
= MOUSE_HL_INFO (f
);
26615 window
= hlinfo
->mouse_face_window
;
26616 if (! NILP (window
) && XFRAME (XWINDOW (window
)->frame
) == f
)
26618 hlinfo
->mouse_face_beg_row
= hlinfo
->mouse_face_beg_col
= -1;
26619 hlinfo
->mouse_face_end_row
= hlinfo
->mouse_face_end_col
= -1;
26620 hlinfo
->mouse_face_window
= Qnil
;
26626 /***********************************************************************
26628 ***********************************************************************/
26630 #ifdef HAVE_WINDOW_SYSTEM
26632 /* Redraw the part of glyph row area AREA of glyph row ROW on window W
26633 which intersects rectangle R. R is in window-relative coordinates. */
26636 expose_area (struct window
*w
, struct glyph_row
*row
, XRectangle
*r
,
26637 enum glyph_row_area area
)
26639 struct glyph
*first
= row
->glyphs
[area
];
26640 struct glyph
*end
= row
->glyphs
[area
] + row
->used
[area
];
26641 struct glyph
*last
;
26642 int first_x
, start_x
, x
;
26644 if (area
== TEXT_AREA
&& row
->fill_line_p
)
26645 /* If row extends face to end of line write the whole line. */
26646 draw_glyphs (w
, 0, row
, area
,
26647 0, row
->used
[area
],
26648 DRAW_NORMAL_TEXT
, 0);
26651 /* Set START_X to the window-relative start position for drawing glyphs of
26652 AREA. The first glyph of the text area can be partially visible.
26653 The first glyphs of other areas cannot. */
26654 start_x
= window_box_left_offset (w
, area
);
26656 if (area
== TEXT_AREA
)
26659 /* Find the first glyph that must be redrawn. */
26661 && x
+ first
->pixel_width
< r
->x
)
26663 x
+= first
->pixel_width
;
26667 /* Find the last one. */
26671 && x
< r
->x
+ r
->width
)
26673 x
+= last
->pixel_width
;
26679 draw_glyphs (w
, first_x
- start_x
, row
, area
,
26680 first
- row
->glyphs
[area
], last
- row
->glyphs
[area
],
26681 DRAW_NORMAL_TEXT
, 0);
26686 /* Redraw the parts of the glyph row ROW on window W intersecting
26687 rectangle R. R is in window-relative coordinates. Value is
26688 non-zero if mouse-face was overwritten. */
26691 expose_line (struct window
*w
, struct glyph_row
*row
, XRectangle
*r
)
26693 xassert (row
->enabled_p
);
26695 if (row
->mode_line_p
|| w
->pseudo_window_p
)
26696 draw_glyphs (w
, 0, row
, TEXT_AREA
,
26697 0, row
->used
[TEXT_AREA
],
26698 DRAW_NORMAL_TEXT
, 0);
26701 if (row
->used
[LEFT_MARGIN_AREA
])
26702 expose_area (w
, row
, r
, LEFT_MARGIN_AREA
);
26703 if (row
->used
[TEXT_AREA
])
26704 expose_area (w
, row
, r
, TEXT_AREA
);
26705 if (row
->used
[RIGHT_MARGIN_AREA
])
26706 expose_area (w
, row
, r
, RIGHT_MARGIN_AREA
);
26707 draw_row_fringe_bitmaps (w
, row
);
26710 return row
->mouse_face_p
;
26714 /* Redraw those parts of glyphs rows during expose event handling that
26715 overlap other rows. Redrawing of an exposed line writes over parts
26716 of lines overlapping that exposed line; this function fixes that.
26718 W is the window being exposed. FIRST_OVERLAPPING_ROW is the first
26719 row in W's current matrix that is exposed and overlaps other rows.
26720 LAST_OVERLAPPING_ROW is the last such row. */
26723 expose_overlaps (struct window
*w
,
26724 struct glyph_row
*first_overlapping_row
,
26725 struct glyph_row
*last_overlapping_row
,
26728 struct glyph_row
*row
;
26730 for (row
= first_overlapping_row
; row
<= last_overlapping_row
; ++row
)
26731 if (row
->overlapping_p
)
26733 xassert (row
->enabled_p
&& !row
->mode_line_p
);
26736 if (row
->used
[LEFT_MARGIN_AREA
])
26737 x_fix_overlapping_area (w
, row
, LEFT_MARGIN_AREA
, OVERLAPS_BOTH
);
26739 if (row
->used
[TEXT_AREA
])
26740 x_fix_overlapping_area (w
, row
, TEXT_AREA
, OVERLAPS_BOTH
);
26742 if (row
->used
[RIGHT_MARGIN_AREA
])
26743 x_fix_overlapping_area (w
, row
, RIGHT_MARGIN_AREA
, OVERLAPS_BOTH
);
26749 /* Return non-zero if W's cursor intersects rectangle R. */
26752 phys_cursor_in_rect_p (struct window
*w
, XRectangle
*r
)
26754 XRectangle cr
, result
;
26755 struct glyph
*cursor_glyph
;
26756 struct glyph_row
*row
;
26758 if (w
->phys_cursor
.vpos
>= 0
26759 && w
->phys_cursor
.vpos
< w
->current_matrix
->nrows
26760 && (row
= MATRIX_ROW (w
->current_matrix
, w
->phys_cursor
.vpos
),
26762 && row
->cursor_in_fringe_p
)
26764 /* Cursor is in the fringe. */
26765 cr
.x
= window_box_right_offset (w
,
26766 (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
26767 ? RIGHT_MARGIN_AREA
26770 cr
.width
= WINDOW_RIGHT_FRINGE_WIDTH (w
);
26771 cr
.height
= row
->height
;
26772 return x_intersect_rectangles (&cr
, r
, &result
);
26775 cursor_glyph
= get_phys_cursor_glyph (w
);
26778 /* r is relative to W's box, but w->phys_cursor.x is relative
26779 to left edge of W's TEXT area. Adjust it. */
26780 cr
.x
= window_box_left_offset (w
, TEXT_AREA
) + w
->phys_cursor
.x
;
26781 cr
.y
= w
->phys_cursor
.y
;
26782 cr
.width
= cursor_glyph
->pixel_width
;
26783 cr
.height
= w
->phys_cursor_height
;
26784 /* ++KFS: W32 version used W32-specific IntersectRect here, but
26785 I assume the effect is the same -- and this is portable. */
26786 return x_intersect_rectangles (&cr
, r
, &result
);
26788 /* If we don't understand the format, pretend we're not in the hot-spot. */
26794 Draw a vertical window border to the right of window W if W doesn't
26795 have vertical scroll bars. */
26798 x_draw_vertical_border (struct window
*w
)
26800 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
26802 /* We could do better, if we knew what type of scroll-bar the adjacent
26803 windows (on either side) have... But we don't :-(
26804 However, I think this works ok. ++KFS 2003-04-25 */
26806 /* Redraw borders between horizontally adjacent windows. Don't
26807 do it for frames with vertical scroll bars because either the
26808 right scroll bar of a window, or the left scroll bar of its
26809 neighbor will suffice as a border. */
26810 if (FRAME_HAS_VERTICAL_SCROLL_BARS (XFRAME (w
->frame
)))
26813 if (!WINDOW_RIGHTMOST_P (w
)
26814 && !WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w
))
26816 int x0
, x1
, y0
, y1
;
26818 window_box_edges (w
, -1, &x0
, &y0
, &x1
, &y1
);
26821 if (WINDOW_LEFT_FRINGE_WIDTH (w
) == 0)
26824 FRAME_RIF (f
)->draw_vertical_window_border (w
, x1
, y0
, y1
);
26826 else if (!WINDOW_LEFTMOST_P (w
)
26827 && !WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w
))
26829 int x0
, x1
, y0
, y1
;
26831 window_box_edges (w
, -1, &x0
, &y0
, &x1
, &y1
);
26834 if (WINDOW_LEFT_FRINGE_WIDTH (w
) == 0)
26837 FRAME_RIF (f
)->draw_vertical_window_border (w
, x0
, y0
, y1
);
26842 /* Redraw the part of window W intersection rectangle FR. Pixel
26843 coordinates in FR are frame-relative. Call this function with
26844 input blocked. Value is non-zero if the exposure overwrites
26848 expose_window (struct window
*w
, XRectangle
*fr
)
26850 struct frame
*f
= XFRAME (w
->frame
);
26852 int mouse_face_overwritten_p
= 0;
26854 /* If window is not yet fully initialized, do nothing. This can
26855 happen when toolkit scroll bars are used and a window is split.
26856 Reconfiguring the scroll bar will generate an expose for a newly
26858 if (w
->current_matrix
== NULL
)
26861 /* When we're currently updating the window, display and current
26862 matrix usually don't agree. Arrange for a thorough display
26864 if (w
== updated_window
)
26866 SET_FRAME_GARBAGED (f
);
26870 /* Frame-relative pixel rectangle of W. */
26871 wr
.x
= WINDOW_LEFT_EDGE_X (w
);
26872 wr
.y
= WINDOW_TOP_EDGE_Y (w
);
26873 wr
.width
= WINDOW_TOTAL_WIDTH (w
);
26874 wr
.height
= WINDOW_TOTAL_HEIGHT (w
);
26876 if (x_intersect_rectangles (fr
, &wr
, &r
))
26878 int yb
= window_text_bottom_y (w
);
26879 struct glyph_row
*row
;
26880 int cursor_cleared_p
;
26881 struct glyph_row
*first_overlapping_row
, *last_overlapping_row
;
26883 TRACE ((stderr
, "expose_window (%d, %d, %d, %d)\n",
26884 r
.x
, r
.y
, r
.width
, r
.height
));
26886 /* Convert to window coordinates. */
26887 r
.x
-= WINDOW_LEFT_EDGE_X (w
);
26888 r
.y
-= WINDOW_TOP_EDGE_Y (w
);
26890 /* Turn off the cursor. */
26891 if (!w
->pseudo_window_p
26892 && phys_cursor_in_rect_p (w
, &r
))
26894 x_clear_cursor (w
);
26895 cursor_cleared_p
= 1;
26898 cursor_cleared_p
= 0;
26900 /* Update lines intersecting rectangle R. */
26901 first_overlapping_row
= last_overlapping_row
= NULL
;
26902 for (row
= w
->current_matrix
->rows
;
26907 int y1
= MATRIX_ROW_BOTTOM_Y (row
);
26909 if ((y0
>= r
.y
&& y0
< r
.y
+ r
.height
)
26910 || (y1
> r
.y
&& y1
< r
.y
+ r
.height
)
26911 || (r
.y
>= y0
&& r
.y
< y1
)
26912 || (r
.y
+ r
.height
> y0
&& r
.y
+ r
.height
< y1
))
26914 /* A header line may be overlapping, but there is no need
26915 to fix overlapping areas for them. KFS 2005-02-12 */
26916 if (row
->overlapping_p
&& !row
->mode_line_p
)
26918 if (first_overlapping_row
== NULL
)
26919 first_overlapping_row
= row
;
26920 last_overlapping_row
= row
;
26924 if (expose_line (w
, row
, &r
))
26925 mouse_face_overwritten_p
= 1;
26928 else if (row
->overlapping_p
)
26930 /* We must redraw a row overlapping the exposed area. */
26932 ? y0
+ row
->phys_height
> r
.y
26933 : y0
+ row
->ascent
- row
->phys_ascent
< r
.y
+r
.height
)
26935 if (first_overlapping_row
== NULL
)
26936 first_overlapping_row
= row
;
26937 last_overlapping_row
= row
;
26945 /* Display the mode line if there is one. */
26946 if (WINDOW_WANTS_MODELINE_P (w
)
26947 && (row
= MATRIX_MODE_LINE_ROW (w
->current_matrix
),
26949 && row
->y
< r
.y
+ r
.height
)
26951 if (expose_line (w
, row
, &r
))
26952 mouse_face_overwritten_p
= 1;
26955 if (!w
->pseudo_window_p
)
26957 /* Fix the display of overlapping rows. */
26958 if (first_overlapping_row
)
26959 expose_overlaps (w
, first_overlapping_row
, last_overlapping_row
,
26962 /* Draw border between windows. */
26963 x_draw_vertical_border (w
);
26965 /* Turn the cursor on again. */
26966 if (cursor_cleared_p
)
26967 update_window_cursor (w
, 1);
26971 return mouse_face_overwritten_p
;
26976 /* Redraw (parts) of all windows in the window tree rooted at W that
26977 intersect R. R contains frame pixel coordinates. Value is
26978 non-zero if the exposure overwrites mouse-face. */
26981 expose_window_tree (struct window
*w
, XRectangle
*r
)
26983 struct frame
*f
= XFRAME (w
->frame
);
26984 int mouse_face_overwritten_p
= 0;
26986 while (w
&& !FRAME_GARBAGED_P (f
))
26988 if (!NILP (w
->hchild
))
26989 mouse_face_overwritten_p
26990 |= expose_window_tree (XWINDOW (w
->hchild
), r
);
26991 else if (!NILP (w
->vchild
))
26992 mouse_face_overwritten_p
26993 |= expose_window_tree (XWINDOW (w
->vchild
), r
);
26995 mouse_face_overwritten_p
|= expose_window (w
, r
);
26997 w
= NILP (w
->next
) ? NULL
: XWINDOW (w
->next
);
27000 return mouse_face_overwritten_p
;
27005 Redisplay an exposed area of frame F. X and Y are the upper-left
27006 corner of the exposed rectangle. W and H are width and height of
27007 the exposed area. All are pixel values. W or H zero means redraw
27008 the entire frame. */
27011 expose_frame (struct frame
*f
, int x
, int y
, int w
, int h
)
27014 int mouse_face_overwritten_p
= 0;
27016 TRACE ((stderr
, "expose_frame "));
27018 /* No need to redraw if frame will be redrawn soon. */
27019 if (FRAME_GARBAGED_P (f
))
27021 TRACE ((stderr
, " garbaged\n"));
27025 /* If basic faces haven't been realized yet, there is no point in
27026 trying to redraw anything. This can happen when we get an expose
27027 event while Emacs is starting, e.g. by moving another window. */
27028 if (FRAME_FACE_CACHE (f
) == NULL
27029 || FRAME_FACE_CACHE (f
)->used
< BASIC_FACE_ID_SENTINEL
)
27031 TRACE ((stderr
, " no faces\n"));
27035 if (w
== 0 || h
== 0)
27038 r
.width
= FRAME_COLUMN_WIDTH (f
) * FRAME_COLS (f
);
27039 r
.height
= FRAME_LINE_HEIGHT (f
) * FRAME_LINES (f
);
27049 TRACE ((stderr
, "(%d, %d, %d, %d)\n", r
.x
, r
.y
, r
.width
, r
.height
));
27050 mouse_face_overwritten_p
= expose_window_tree (XWINDOW (f
->root_window
), &r
);
27052 if (WINDOWP (f
->tool_bar_window
))
27053 mouse_face_overwritten_p
27054 |= expose_window (XWINDOW (f
->tool_bar_window
), &r
);
27056 #ifdef HAVE_X_WINDOWS
27058 #ifndef USE_X_TOOLKIT
27059 if (WINDOWP (f
->menu_bar_window
))
27060 mouse_face_overwritten_p
27061 |= expose_window (XWINDOW (f
->menu_bar_window
), &r
);
27062 #endif /* not USE_X_TOOLKIT */
27066 /* Some window managers support a focus-follows-mouse style with
27067 delayed raising of frames. Imagine a partially obscured frame,
27068 and moving the mouse into partially obscured mouse-face on that
27069 frame. The visible part of the mouse-face will be highlighted,
27070 then the WM raises the obscured frame. With at least one WM, KDE
27071 2.1, Emacs is not getting any event for the raising of the frame
27072 (even tried with SubstructureRedirectMask), only Expose events.
27073 These expose events will draw text normally, i.e. not
27074 highlighted. Which means we must redo the highlight here.
27075 Subsume it under ``we love X''. --gerd 2001-08-15 */
27076 /* Included in Windows version because Windows most likely does not
27077 do the right thing if any third party tool offers
27078 focus-follows-mouse with delayed raise. --jason 2001-10-12 */
27079 if (mouse_face_overwritten_p
&& !FRAME_GARBAGED_P (f
))
27081 Mouse_HLInfo
*hlinfo
= MOUSE_HL_INFO (f
);
27082 if (f
== hlinfo
->mouse_face_mouse_frame
)
27084 int mouse_x
= hlinfo
->mouse_face_mouse_x
;
27085 int mouse_y
= hlinfo
->mouse_face_mouse_y
;
27086 clear_mouse_face (hlinfo
);
27087 note_mouse_highlight (f
, mouse_x
, mouse_y
);
27094 Determine the intersection of two rectangles R1 and R2. Return
27095 the intersection in *RESULT. Value is non-zero if RESULT is not
27099 x_intersect_rectangles (XRectangle
*r1
, XRectangle
*r2
, XRectangle
*result
)
27101 XRectangle
*left
, *right
;
27102 XRectangle
*upper
, *lower
;
27103 int intersection_p
= 0;
27105 /* Rearrange so that R1 is the left-most rectangle. */
27107 left
= r1
, right
= r2
;
27109 left
= r2
, right
= r1
;
27111 /* X0 of the intersection is right.x0, if this is inside R1,
27112 otherwise there is no intersection. */
27113 if (right
->x
<= left
->x
+ left
->width
)
27115 result
->x
= right
->x
;
27117 /* The right end of the intersection is the minimum of the
27118 the right ends of left and right. */
27119 result
->width
= (min (left
->x
+ left
->width
, right
->x
+ right
->width
)
27122 /* Same game for Y. */
27124 upper
= r1
, lower
= r2
;
27126 upper
= r2
, lower
= r1
;
27128 /* The upper end of the intersection is lower.y0, if this is inside
27129 of upper. Otherwise, there is no intersection. */
27130 if (lower
->y
<= upper
->y
+ upper
->height
)
27132 result
->y
= lower
->y
;
27134 /* The lower end of the intersection is the minimum of the lower
27135 ends of upper and lower. */
27136 result
->height
= (min (lower
->y
+ lower
->height
,
27137 upper
->y
+ upper
->height
)
27139 intersection_p
= 1;
27143 return intersection_p
;
27146 #endif /* HAVE_WINDOW_SYSTEM */
27149 /***********************************************************************
27151 ***********************************************************************/
27154 syms_of_xdisp (void)
27156 Vwith_echo_area_save_vector
= Qnil
;
27157 staticpro (&Vwith_echo_area_save_vector
);
27159 Vmessage_stack
= Qnil
;
27160 staticpro (&Vmessage_stack
);
27162 Qinhibit_redisplay
= intern_c_string ("inhibit-redisplay");
27163 staticpro (&Qinhibit_redisplay
);
27165 message_dolog_marker1
= Fmake_marker ();
27166 staticpro (&message_dolog_marker1
);
27167 message_dolog_marker2
= Fmake_marker ();
27168 staticpro (&message_dolog_marker2
);
27169 message_dolog_marker3
= Fmake_marker ();
27170 staticpro (&message_dolog_marker3
);
27173 defsubr (&Sdump_frame_glyph_matrix
);
27174 defsubr (&Sdump_glyph_matrix
);
27175 defsubr (&Sdump_glyph_row
);
27176 defsubr (&Sdump_tool_bar_row
);
27177 defsubr (&Strace_redisplay
);
27178 defsubr (&Strace_to_stderr
);
27180 #ifdef HAVE_WINDOW_SYSTEM
27181 defsubr (&Stool_bar_lines_needed
);
27182 defsubr (&Slookup_image_map
);
27184 defsubr (&Sformat_mode_line
);
27185 defsubr (&Sinvisible_p
);
27186 defsubr (&Scurrent_bidi_paragraph_direction
);
27188 staticpro (&Qmenu_bar_update_hook
);
27189 Qmenu_bar_update_hook
= intern_c_string ("menu-bar-update-hook");
27191 staticpro (&Qoverriding_terminal_local_map
);
27192 Qoverriding_terminal_local_map
= intern_c_string ("overriding-terminal-local-map");
27194 staticpro (&Qoverriding_local_map
);
27195 Qoverriding_local_map
= intern_c_string ("overriding-local-map");
27197 staticpro (&Qwindow_scroll_functions
);
27198 Qwindow_scroll_functions
= intern_c_string ("window-scroll-functions");
27200 staticpro (&Qwindow_text_change_functions
);
27201 Qwindow_text_change_functions
= intern_c_string ("window-text-change-functions");
27203 staticpro (&Qredisplay_end_trigger_functions
);
27204 Qredisplay_end_trigger_functions
= intern_c_string ("redisplay-end-trigger-functions");
27206 staticpro (&Qinhibit_point_motion_hooks
);
27207 Qinhibit_point_motion_hooks
= intern_c_string ("inhibit-point-motion-hooks");
27209 Qeval
= intern_c_string ("eval");
27210 staticpro (&Qeval
);
27212 QCdata
= intern_c_string (":data");
27213 staticpro (&QCdata
);
27214 Qdisplay
= intern_c_string ("display");
27215 staticpro (&Qdisplay
);
27216 Qspace_width
= intern_c_string ("space-width");
27217 staticpro (&Qspace_width
);
27218 Qraise
= intern_c_string ("raise");
27219 staticpro (&Qraise
);
27220 Qslice
= intern_c_string ("slice");
27221 staticpro (&Qslice
);
27222 Qspace
= intern_c_string ("space");
27223 staticpro (&Qspace
);
27224 Qmargin
= intern_c_string ("margin");
27225 staticpro (&Qmargin
);
27226 Qpointer
= intern_c_string ("pointer");
27227 staticpro (&Qpointer
);
27228 Qleft_margin
= intern_c_string ("left-margin");
27229 staticpro (&Qleft_margin
);
27230 Qright_margin
= intern_c_string ("right-margin");
27231 staticpro (&Qright_margin
);
27232 Qcenter
= intern_c_string ("center");
27233 staticpro (&Qcenter
);
27234 Qline_height
= intern_c_string ("line-height");
27235 staticpro (&Qline_height
);
27236 QCalign_to
= intern_c_string (":align-to");
27237 staticpro (&QCalign_to
);
27238 QCrelative_width
= intern_c_string (":relative-width");
27239 staticpro (&QCrelative_width
);
27240 QCrelative_height
= intern_c_string (":relative-height");
27241 staticpro (&QCrelative_height
);
27242 QCeval
= intern_c_string (":eval");
27243 staticpro (&QCeval
);
27244 QCpropertize
= intern_c_string (":propertize");
27245 staticpro (&QCpropertize
);
27246 QCfile
= intern_c_string (":file");
27247 staticpro (&QCfile
);
27248 Qfontified
= intern_c_string ("fontified");
27249 staticpro (&Qfontified
);
27250 Qfontification_functions
= intern_c_string ("fontification-functions");
27251 staticpro (&Qfontification_functions
);
27252 Qtrailing_whitespace
= intern_c_string ("trailing-whitespace");
27253 staticpro (&Qtrailing_whitespace
);
27254 Qescape_glyph
= intern_c_string ("escape-glyph");
27255 staticpro (&Qescape_glyph
);
27256 Qnobreak_space
= intern_c_string ("nobreak-space");
27257 staticpro (&Qnobreak_space
);
27258 Qimage
= intern_c_string ("image");
27259 staticpro (&Qimage
);
27260 Qtext
= intern_c_string ("text");
27261 staticpro (&Qtext
);
27262 Qboth
= intern_c_string ("both");
27263 staticpro (&Qboth
);
27264 Qboth_horiz
= intern_c_string ("both-horiz");
27265 staticpro (&Qboth_horiz
);
27266 Qtext_image_horiz
= intern_c_string ("text-image-horiz");
27267 staticpro (&Qtext_image_horiz
);
27268 QCmap
= intern_c_string (":map");
27269 staticpro (&QCmap
);
27270 QCpointer
= intern_c_string (":pointer");
27271 staticpro (&QCpointer
);
27272 Qrect
= intern_c_string ("rect");
27273 staticpro (&Qrect
);
27274 Qcircle
= intern_c_string ("circle");
27275 staticpro (&Qcircle
);
27276 Qpoly
= intern_c_string ("poly");
27277 staticpro (&Qpoly
);
27278 Qmessage_truncate_lines
= intern_c_string ("message-truncate-lines");
27279 staticpro (&Qmessage_truncate_lines
);
27280 Qgrow_only
= intern_c_string ("grow-only");
27281 staticpro (&Qgrow_only
);
27282 Qinhibit_menubar_update
= intern_c_string ("inhibit-menubar-update");
27283 staticpro (&Qinhibit_menubar_update
);
27284 Qinhibit_eval_during_redisplay
= intern_c_string ("inhibit-eval-during-redisplay");
27285 staticpro (&Qinhibit_eval_during_redisplay
);
27286 Qposition
= intern_c_string ("position");
27287 staticpro (&Qposition
);
27288 Qbuffer_position
= intern_c_string ("buffer-position");
27289 staticpro (&Qbuffer_position
);
27290 Qobject
= intern_c_string ("object");
27291 staticpro (&Qobject
);
27292 Qbar
= intern_c_string ("bar");
27294 Qhbar
= intern_c_string ("hbar");
27295 staticpro (&Qhbar
);
27296 Qbox
= intern_c_string ("box");
27298 Qhollow
= intern_c_string ("hollow");
27299 staticpro (&Qhollow
);
27300 Qhand
= intern_c_string ("hand");
27301 staticpro (&Qhand
);
27302 Qarrow
= intern_c_string ("arrow");
27303 staticpro (&Qarrow
);
27304 Qtext
= intern_c_string ("text");
27305 staticpro (&Qtext
);
27306 Qinhibit_free_realized_faces
= intern_c_string ("inhibit-free-realized-faces");
27307 staticpro (&Qinhibit_free_realized_faces
);
27309 list_of_error
= Fcons (Fcons (intern_c_string ("error"),
27310 Fcons (intern_c_string ("void-variable"), Qnil
)),
27312 staticpro (&list_of_error
);
27314 Qlast_arrow_position
= intern_c_string ("last-arrow-position");
27315 staticpro (&Qlast_arrow_position
);
27316 Qlast_arrow_string
= intern_c_string ("last-arrow-string");
27317 staticpro (&Qlast_arrow_string
);
27319 Qoverlay_arrow_string
= intern_c_string ("overlay-arrow-string");
27320 staticpro (&Qoverlay_arrow_string
);
27321 Qoverlay_arrow_bitmap
= intern_c_string ("overlay-arrow-bitmap");
27322 staticpro (&Qoverlay_arrow_bitmap
);
27324 echo_buffer
[0] = echo_buffer
[1] = Qnil
;
27325 staticpro (&echo_buffer
[0]);
27326 staticpro (&echo_buffer
[1]);
27328 echo_area_buffer
[0] = echo_area_buffer
[1] = Qnil
;
27329 staticpro (&echo_area_buffer
[0]);
27330 staticpro (&echo_area_buffer
[1]);
27332 Vmessages_buffer_name
= make_pure_c_string ("*Messages*");
27333 staticpro (&Vmessages_buffer_name
);
27335 mode_line_proptrans_alist
= Qnil
;
27336 staticpro (&mode_line_proptrans_alist
);
27337 mode_line_string_list
= Qnil
;
27338 staticpro (&mode_line_string_list
);
27339 mode_line_string_face
= Qnil
;
27340 staticpro (&mode_line_string_face
);
27341 mode_line_string_face_prop
= Qnil
;
27342 staticpro (&mode_line_string_face_prop
);
27343 Vmode_line_unwind_vector
= Qnil
;
27344 staticpro (&Vmode_line_unwind_vector
);
27346 help_echo_string
= Qnil
;
27347 staticpro (&help_echo_string
);
27348 help_echo_object
= Qnil
;
27349 staticpro (&help_echo_object
);
27350 help_echo_window
= Qnil
;
27351 staticpro (&help_echo_window
);
27352 previous_help_echo_string
= Qnil
;
27353 staticpro (&previous_help_echo_string
);
27354 help_echo_pos
= -1;
27356 Qright_to_left
= intern_c_string ("right-to-left");
27357 staticpro (&Qright_to_left
);
27358 Qleft_to_right
= intern_c_string ("left-to-right");
27359 staticpro (&Qleft_to_right
);
27361 #ifdef HAVE_WINDOW_SYSTEM
27362 DEFVAR_BOOL ("x-stretch-cursor", x_stretch_cursor_p
,
27363 doc
: /* *Non-nil means draw block cursor as wide as the glyph under it.
27364 For example, if a block cursor is over a tab, it will be drawn as
27365 wide as that tab on the display. */);
27366 x_stretch_cursor_p
= 0;
27369 DEFVAR_LISP ("show-trailing-whitespace", Vshow_trailing_whitespace
,
27370 doc
: /* *Non-nil means highlight trailing whitespace.
27371 The face used for trailing whitespace is `trailing-whitespace'. */);
27372 Vshow_trailing_whitespace
= Qnil
;
27374 DEFVAR_LISP ("nobreak-char-display", Vnobreak_char_display
,
27375 doc
: /* *Control highlighting of nobreak space and soft hyphen.
27376 A value of t means highlight the character itself (for nobreak space,
27377 use face `nobreak-space').
27378 A value of nil means no highlighting.
27379 Other values mean display the escape glyph followed by an ordinary
27380 space or ordinary hyphen. */);
27381 Vnobreak_char_display
= Qt
;
27383 DEFVAR_LISP ("void-text-area-pointer", Vvoid_text_area_pointer
,
27384 doc
: /* *The pointer shape to show in void text areas.
27385 A value of nil means to show the text pointer. Other options are `arrow',
27386 `text', `hand', `vdrag', `hdrag', `modeline', and `hourglass'. */);
27387 Vvoid_text_area_pointer
= Qarrow
;
27389 DEFVAR_LISP ("inhibit-redisplay", Vinhibit_redisplay
,
27390 doc
: /* Non-nil means don't actually do any redisplay.
27391 This is used for internal purposes. */);
27392 Vinhibit_redisplay
= Qnil
;
27394 DEFVAR_LISP ("global-mode-string", Vglobal_mode_string
,
27395 doc
: /* String (or mode line construct) included (normally) in `mode-line-format'. */);
27396 Vglobal_mode_string
= Qnil
;
27398 DEFVAR_LISP ("overlay-arrow-position", Voverlay_arrow_position
,
27399 doc
: /* Marker for where to display an arrow on top of the buffer text.
27400 This must be the beginning of a line in order to work.
27401 See also `overlay-arrow-string'. */);
27402 Voverlay_arrow_position
= Qnil
;
27404 DEFVAR_LISP ("overlay-arrow-string", Voverlay_arrow_string
,
27405 doc
: /* String to display as an arrow in non-window frames.
27406 See also `overlay-arrow-position'. */);
27407 Voverlay_arrow_string
= make_pure_c_string ("=>");
27409 DEFVAR_LISP ("overlay-arrow-variable-list", Voverlay_arrow_variable_list
,
27410 doc
: /* List of variables (symbols) which hold markers for overlay arrows.
27411 The symbols on this list are examined during redisplay to determine
27412 where to display overlay arrows. */);
27413 Voverlay_arrow_variable_list
27414 = Fcons (intern_c_string ("overlay-arrow-position"), Qnil
);
27416 DEFVAR_INT ("scroll-step", emacs_scroll_step
,
27417 doc
: /* *The number of lines to try scrolling a window by when point moves out.
27418 If that fails to bring point back on frame, point is centered instead.
27419 If this is zero, point is always centered after it moves off frame.
27420 If you want scrolling to always be a line at a time, you should set
27421 `scroll-conservatively' to a large value rather than set this to 1. */);
27423 DEFVAR_INT ("scroll-conservatively", scroll_conservatively
,
27424 doc
: /* *Scroll up to this many lines, to bring point back on screen.
27425 If point moves off-screen, redisplay will scroll by up to
27426 `scroll-conservatively' lines in order to bring point just barely
27427 onto the screen again. If that cannot be done, then redisplay
27428 recenters point as usual.
27430 If the value is greater than 100, redisplay will never recenter point,
27431 but will always scroll just enough text to bring point into view, even
27432 if you move far away.
27434 A value of zero means always recenter point if it moves off screen. */);
27435 scroll_conservatively
= 0;
27437 DEFVAR_INT ("scroll-margin", scroll_margin
,
27438 doc
: /* *Number of lines of margin at the top and bottom of a window.
27439 Recenter the window whenever point gets within this many lines
27440 of the top or bottom of the window. */);
27443 DEFVAR_LISP ("display-pixels-per-inch", Vdisplay_pixels_per_inch
,
27444 doc
: /* Pixels per inch value for non-window system displays.
27445 Value is a number or a cons (WIDTH-DPI . HEIGHT-DPI). */);
27446 Vdisplay_pixels_per_inch
= make_float (72.0);
27449 DEFVAR_INT ("debug-end-pos", debug_end_pos
, doc
: /* Don't ask. */);
27452 DEFVAR_LISP ("truncate-partial-width-windows",
27453 Vtruncate_partial_width_windows
,
27454 doc
: /* Non-nil means truncate lines in windows narrower than the frame.
27455 For an integer value, truncate lines in each window narrower than the
27456 full frame width, provided the window width is less than that integer;
27457 otherwise, respect the value of `truncate-lines'.
27459 For any other non-nil value, truncate lines in all windows that do
27460 not span the full frame width.
27462 A value of nil means to respect the value of `truncate-lines'.
27464 If `word-wrap' is enabled, you might want to reduce this. */);
27465 Vtruncate_partial_width_windows
= make_number (50);
27467 DEFVAR_BOOL ("mode-line-inverse-video", mode_line_inverse_video
,
27468 doc
: /* When nil, display the mode-line/header-line/menu-bar in the default face.
27469 Any other value means to use the appropriate face, `mode-line',
27470 `header-line', or `menu' respectively. */);
27471 mode_line_inverse_video
= 1;
27473 DEFVAR_LISP ("line-number-display-limit", Vline_number_display_limit
,
27474 doc
: /* *Maximum buffer size for which line number should be displayed.
27475 If the buffer is bigger than this, the line number does not appear
27476 in the mode line. A value of nil means no limit. */);
27477 Vline_number_display_limit
= Qnil
;
27479 DEFVAR_INT ("line-number-display-limit-width",
27480 line_number_display_limit_width
,
27481 doc
: /* *Maximum line width (in characters) for line number display.
27482 If the average length of the lines near point is bigger than this, then the
27483 line number may be omitted from the mode line. */);
27484 line_number_display_limit_width
= 200;
27486 DEFVAR_BOOL ("highlight-nonselected-windows", highlight_nonselected_windows
,
27487 doc
: /* *Non-nil means highlight region even in nonselected windows. */);
27488 highlight_nonselected_windows
= 0;
27490 DEFVAR_BOOL ("multiple-frames", multiple_frames
,
27491 doc
: /* Non-nil if more than one frame is visible on this display.
27492 Minibuffer-only frames don't count, but iconified frames do.
27493 This variable is not guaranteed to be accurate except while processing
27494 `frame-title-format' and `icon-title-format'. */);
27496 DEFVAR_LISP ("frame-title-format", Vframe_title_format
,
27497 doc
: /* Template for displaying the title bar of visible frames.
27498 \(Assuming the window manager supports this feature.)
27500 This variable has the same structure as `mode-line-format', except that
27501 the %c and %l constructs are ignored. It is used only on frames for
27502 which no explicit name has been set \(see `modify-frame-parameters'). */);
27504 DEFVAR_LISP ("icon-title-format", Vicon_title_format
,
27505 doc
: /* Template for displaying the title bar of an iconified frame.
27506 \(Assuming the window manager supports this feature.)
27507 This variable has the same structure as `mode-line-format' (which see),
27508 and is used only on frames for which no explicit name has been set
27509 \(see `modify-frame-parameters'). */);
27511 = Vframe_title_format
27512 = pure_cons (intern_c_string ("multiple-frames"),
27513 pure_cons (make_pure_c_string ("%b"),
27514 pure_cons (pure_cons (empty_unibyte_string
,
27515 pure_cons (intern_c_string ("invocation-name"),
27516 pure_cons (make_pure_c_string ("@"),
27517 pure_cons (intern_c_string ("system-name"),
27521 DEFVAR_LISP ("message-log-max", Vmessage_log_max
,
27522 doc
: /* Maximum number of lines to keep in the message log buffer.
27523 If nil, disable message logging. If t, log messages but don't truncate
27524 the buffer when it becomes large. */);
27525 Vmessage_log_max
= make_number (100);
27527 DEFVAR_LISP ("window-size-change-functions", Vwindow_size_change_functions
,
27528 doc
: /* Functions called before redisplay, if window sizes have changed.
27529 The value should be a list of functions that take one argument.
27530 Just before redisplay, for each frame, if any of its windows have changed
27531 size since the last redisplay, or have been split or deleted,
27532 all the functions in the list are called, with the frame as argument. */);
27533 Vwindow_size_change_functions
= Qnil
;
27535 DEFVAR_LISP ("window-scroll-functions", Vwindow_scroll_functions
,
27536 doc
: /* List of functions to call before redisplaying a window with scrolling.
27537 Each function is called with two arguments, the window and its new
27538 display-start position. Note that these functions are also called by
27539 `set-window-buffer'. Also note that the value of `window-end' is not
27540 valid when these functions are called. */);
27541 Vwindow_scroll_functions
= Qnil
;
27543 DEFVAR_LISP ("window-text-change-functions",
27544 Vwindow_text_change_functions
,
27545 doc
: /* Functions to call in redisplay when text in the window might change. */);
27546 Vwindow_text_change_functions
= Qnil
;
27548 DEFVAR_LISP ("redisplay-end-trigger-functions", Vredisplay_end_trigger_functions
,
27549 doc
: /* Functions called when redisplay of a window reaches the end trigger.
27550 Each function is called with two arguments, the window and the end trigger value.
27551 See `set-window-redisplay-end-trigger'. */);
27552 Vredisplay_end_trigger_functions
= Qnil
;
27554 DEFVAR_LISP ("mouse-autoselect-window", Vmouse_autoselect_window
,
27555 doc
: /* *Non-nil means autoselect window with mouse pointer.
27556 If nil, do not autoselect windows.
27557 A positive number means delay autoselection by that many seconds: a
27558 window is autoselected only after the mouse has remained in that
27559 window for the duration of the delay.
27560 A negative number has a similar effect, but causes windows to be
27561 autoselected only after the mouse has stopped moving. \(Because of
27562 the way Emacs compares mouse events, you will occasionally wait twice
27563 that time before the window gets selected.\)
27564 Any other value means to autoselect window instantaneously when the
27565 mouse pointer enters it.
27567 Autoselection selects the minibuffer only if it is active, and never
27568 unselects the minibuffer if it is active.
27570 When customizing this variable make sure that the actual value of
27571 `focus-follows-mouse' matches the behavior of your window manager. */);
27572 Vmouse_autoselect_window
= Qnil
;
27574 DEFVAR_LISP ("auto-resize-tool-bars", Vauto_resize_tool_bars
,
27575 doc
: /* *Non-nil means automatically resize tool-bars.
27576 This dynamically changes the tool-bar's height to the minimum height
27577 that is needed to make all tool-bar items visible.
27578 If value is `grow-only', the tool-bar's height is only increased
27579 automatically; to decrease the tool-bar height, use \\[recenter]. */);
27580 Vauto_resize_tool_bars
= Qt
;
27582 DEFVAR_BOOL ("auto-raise-tool-bar-buttons", auto_raise_tool_bar_buttons_p
,
27583 doc
: /* *Non-nil means raise tool-bar buttons when the mouse moves over them. */);
27584 auto_raise_tool_bar_buttons_p
= 1;
27586 DEFVAR_BOOL ("make-cursor-line-fully-visible", make_cursor_line_fully_visible_p
,
27587 doc
: /* *Non-nil means to scroll (recenter) cursor line if it is not fully visible. */);
27588 make_cursor_line_fully_visible_p
= 1;
27590 DEFVAR_LISP ("tool-bar-border", Vtool_bar_border
,
27591 doc
: /* *Border below tool-bar in pixels.
27592 If an integer, use it as the height of the border.
27593 If it is one of `internal-border-width' or `border-width', use the
27594 value of the corresponding frame parameter.
27595 Otherwise, no border is added below the tool-bar. */);
27596 Vtool_bar_border
= Qinternal_border_width
;
27598 DEFVAR_LISP ("tool-bar-button-margin", Vtool_bar_button_margin
,
27599 doc
: /* *Margin around tool-bar buttons in pixels.
27600 If an integer, use that for both horizontal and vertical margins.
27601 Otherwise, value should be a pair of integers `(HORZ . VERT)' with
27602 HORZ specifying the horizontal margin, and VERT specifying the
27603 vertical margin. */);
27604 Vtool_bar_button_margin
= make_number (DEFAULT_TOOL_BAR_BUTTON_MARGIN
);
27606 DEFVAR_INT ("tool-bar-button-relief", tool_bar_button_relief
,
27607 doc
: /* *Relief thickness of tool-bar buttons. */);
27608 tool_bar_button_relief
= DEFAULT_TOOL_BAR_BUTTON_RELIEF
;
27610 DEFVAR_LISP ("tool-bar-style", Vtool_bar_style
,
27611 doc
: /* Tool bar style to use.
27613 image - show images only
27614 text - show text only
27615 both - show both, text below image
27616 both-horiz - show text to the right of the image
27617 text-image-horiz - show text to the left of the image
27618 any other - use system default or image if no system default. */);
27619 Vtool_bar_style
= Qnil
;
27621 DEFVAR_INT ("tool-bar-max-label-size", tool_bar_max_label_size
,
27622 doc
: /* *Maximum number of characters a label can have to be shown.
27623 The tool bar style must also show labels for this to have any effect, see
27624 `tool-bar-style'. */);
27625 tool_bar_max_label_size
= DEFAULT_TOOL_BAR_LABEL_SIZE
;
27627 DEFVAR_LISP ("fontification-functions", Vfontification_functions
,
27628 doc
: /* List of functions to call to fontify regions of text.
27629 Each function is called with one argument POS. Functions must
27630 fontify a region starting at POS in the current buffer, and give
27631 fontified regions the property `fontified'. */);
27632 Vfontification_functions
= Qnil
;
27633 Fmake_variable_buffer_local (Qfontification_functions
);
27635 DEFVAR_BOOL ("unibyte-display-via-language-environment",
27636 unibyte_display_via_language_environment
,
27637 doc
: /* *Non-nil means display unibyte text according to language environment.
27638 Specifically, this means that raw bytes in the range 160-255 decimal
27639 are displayed by converting them to the equivalent multibyte characters
27640 according to the current language environment. As a result, they are
27641 displayed according to the current fontset.
27643 Note that this variable affects only how these bytes are displayed,
27644 but does not change the fact they are interpreted as raw bytes. */);
27645 unibyte_display_via_language_environment
= 0;
27647 DEFVAR_LISP ("max-mini-window-height", Vmax_mini_window_height
,
27648 doc
: /* *Maximum height for resizing mini-windows.
27649 If a float, it specifies a fraction of the mini-window frame's height.
27650 If an integer, it specifies a number of lines. */);
27651 Vmax_mini_window_height
= make_float (0.25);
27653 DEFVAR_LISP ("resize-mini-windows", Vresize_mini_windows
,
27654 doc
: /* *How to resize mini-windows.
27655 A value of nil means don't automatically resize mini-windows.
27656 A value of t means resize them to fit the text displayed in them.
27657 A value of `grow-only', the default, means let mini-windows grow
27658 only, until their display becomes empty, at which point the windows
27659 go back to their normal size. */);
27660 Vresize_mini_windows
= Qgrow_only
;
27662 DEFVAR_LISP ("blink-cursor-alist", Vblink_cursor_alist
,
27663 doc
: /* Alist specifying how to blink the cursor off.
27664 Each element has the form (ON-STATE . OFF-STATE). Whenever the
27665 `cursor-type' frame-parameter or variable equals ON-STATE,
27666 comparing using `equal', Emacs uses OFF-STATE to specify
27667 how to blink it off. ON-STATE and OFF-STATE are values for
27668 the `cursor-type' frame parameter.
27670 If a frame's ON-STATE has no entry in this list,
27671 the frame's other specifications determine how to blink the cursor off. */);
27672 Vblink_cursor_alist
= Qnil
;
27674 DEFVAR_BOOL ("auto-hscroll-mode", automatic_hscrolling_p
,
27675 doc
: /* Allow or disallow automatic horizontal scrolling of windows.
27676 If non-nil, windows are automatically scrolled horizontally to make
27677 point visible. */);
27678 automatic_hscrolling_p
= 1;
27679 Qauto_hscroll_mode
= intern_c_string ("auto-hscroll-mode");
27680 staticpro (&Qauto_hscroll_mode
);
27682 DEFVAR_INT ("hscroll-margin", hscroll_margin
,
27683 doc
: /* *How many columns away from the window edge point is allowed to get
27684 before automatic hscrolling will horizontally scroll the window. */);
27685 hscroll_margin
= 5;
27687 DEFVAR_LISP ("hscroll-step", Vhscroll_step
,
27688 doc
: /* *How many columns to scroll the window when point gets too close to the edge.
27689 When point is less than `hscroll-margin' columns from the window
27690 edge, automatic hscrolling will scroll the window by the amount of columns
27691 determined by this variable. If its value is a positive integer, scroll that
27692 many columns. If it's a positive floating-point number, it specifies the
27693 fraction of the window's width to scroll. If it's nil or zero, point will be
27694 centered horizontally after the scroll. Any other value, including negative
27695 numbers, are treated as if the value were zero.
27697 Automatic hscrolling always moves point outside the scroll margin, so if
27698 point was more than scroll step columns inside the margin, the window will
27699 scroll more than the value given by the scroll step.
27701 Note that the lower bound for automatic hscrolling specified by `scroll-left'
27702 and `scroll-right' overrides this variable's effect. */);
27703 Vhscroll_step
= make_number (0);
27705 DEFVAR_BOOL ("message-truncate-lines", message_truncate_lines
,
27706 doc
: /* If non-nil, messages are truncated instead of resizing the echo area.
27707 Bind this around calls to `message' to let it take effect. */);
27708 message_truncate_lines
= 0;
27710 DEFVAR_LISP ("menu-bar-update-hook", Vmenu_bar_update_hook
,
27711 doc
: /* Normal hook run to update the menu bar definitions.
27712 Redisplay runs this hook before it redisplays the menu bar.
27713 This is used to update submenus such as Buffers,
27714 whose contents depend on various data. */);
27715 Vmenu_bar_update_hook
= Qnil
;
27717 DEFVAR_LISP ("menu-updating-frame", Vmenu_updating_frame
,
27718 doc
: /* Frame for which we are updating a menu.
27719 The enable predicate for a menu binding should check this variable. */);
27720 Vmenu_updating_frame
= Qnil
;
27722 DEFVAR_BOOL ("inhibit-menubar-update", inhibit_menubar_update
,
27723 doc
: /* Non-nil means don't update menu bars. Internal use only. */);
27724 inhibit_menubar_update
= 0;
27726 DEFVAR_LISP ("wrap-prefix", Vwrap_prefix
,
27727 doc
: /* Prefix prepended to all continuation lines at display time.
27728 The value may be a string, an image, or a stretch-glyph; it is
27729 interpreted in the same way as the value of a `display' text property.
27731 This variable is overridden by any `wrap-prefix' text or overlay
27734 To add a prefix to non-continuation lines, use `line-prefix'. */);
27735 Vwrap_prefix
= Qnil
;
27736 staticpro (&Qwrap_prefix
);
27737 Qwrap_prefix
= intern_c_string ("wrap-prefix");
27738 Fmake_variable_buffer_local (Qwrap_prefix
);
27740 DEFVAR_LISP ("line-prefix", Vline_prefix
,
27741 doc
: /* Prefix prepended to all non-continuation lines at display time.
27742 The value may be a string, an image, or a stretch-glyph; it is
27743 interpreted in the same way as the value of a `display' text property.
27745 This variable is overridden by any `line-prefix' text or overlay
27748 To add a prefix to continuation lines, use `wrap-prefix'. */);
27749 Vline_prefix
= Qnil
;
27750 staticpro (&Qline_prefix
);
27751 Qline_prefix
= intern_c_string ("line-prefix");
27752 Fmake_variable_buffer_local (Qline_prefix
);
27754 DEFVAR_BOOL ("inhibit-eval-during-redisplay", inhibit_eval_during_redisplay
,
27755 doc
: /* Non-nil means don't eval Lisp during redisplay. */);
27756 inhibit_eval_during_redisplay
= 0;
27758 DEFVAR_BOOL ("inhibit-free-realized-faces", inhibit_free_realized_faces
,
27759 doc
: /* Non-nil means don't free realized faces. Internal use only. */);
27760 inhibit_free_realized_faces
= 0;
27763 DEFVAR_BOOL ("inhibit-try-window-id", inhibit_try_window_id
,
27764 doc
: /* Inhibit try_window_id display optimization. */);
27765 inhibit_try_window_id
= 0;
27767 DEFVAR_BOOL ("inhibit-try-window-reusing", inhibit_try_window_reusing
,
27768 doc
: /* Inhibit try_window_reusing display optimization. */);
27769 inhibit_try_window_reusing
= 0;
27771 DEFVAR_BOOL ("inhibit-try-cursor-movement", inhibit_try_cursor_movement
,
27772 doc
: /* Inhibit try_cursor_movement display optimization. */);
27773 inhibit_try_cursor_movement
= 0;
27774 #endif /* GLYPH_DEBUG */
27776 DEFVAR_INT ("overline-margin", overline_margin
,
27777 doc
: /* *Space between overline and text, in pixels.
27778 The default value is 2: the height of the overline (1 pixel) plus 1 pixel
27779 margin to the caracter height. */);
27780 overline_margin
= 2;
27782 DEFVAR_INT ("underline-minimum-offset",
27783 underline_minimum_offset
,
27784 doc
: /* Minimum distance between baseline and underline.
27785 This can improve legibility of underlined text at small font sizes,
27786 particularly when using variable `x-use-underline-position-properties'
27787 with fonts that specify an UNDERLINE_POSITION relatively close to the
27788 baseline. The default value is 1. */);
27789 underline_minimum_offset
= 1;
27791 DEFVAR_BOOL ("display-hourglass", display_hourglass_p
,
27792 doc
: /* Non-nil means show an hourglass pointer, when Emacs is busy.
27793 This feature only works when on a window system that can change
27794 cursor shapes. */);
27795 display_hourglass_p
= 1;
27797 DEFVAR_LISP ("hourglass-delay", Vhourglass_delay
,
27798 doc
: /* *Seconds to wait before displaying an hourglass pointer when Emacs is busy. */);
27799 Vhourglass_delay
= make_number (DEFAULT_HOURGLASS_DELAY
);
27801 hourglass_atimer
= NULL
;
27802 hourglass_shown_p
= 0;
27804 DEFSYM (Qglyphless_char
, "glyphless-char");
27805 DEFSYM (Qhex_code
, "hex-code");
27806 DEFSYM (Qempty_box
, "empty-box");
27807 DEFSYM (Qthin_space
, "thin-space");
27808 DEFSYM (Qzero_width
, "zero-width");
27810 DEFSYM (Qglyphless_char_display
, "glyphless-char-display");
27811 /* Intern this now in case it isn't already done.
27812 Setting this variable twice is harmless.
27813 But don't staticpro it here--that is done in alloc.c. */
27814 Qchar_table_extra_slots
= intern_c_string ("char-table-extra-slots");
27815 Fput (Qglyphless_char_display
, Qchar_table_extra_slots
, make_number (1));
27817 DEFVAR_LISP ("glyphless-char-display", Vglyphless_char_display
,
27818 doc
: /* Char-table defining glyphless characters.
27819 Each element, if non-nil, should be one of the following:
27820 an ASCII acronym string: display this string in a box
27821 `hex-code': display the hexadecimal code of a character in a box
27822 `empty-box': display as an empty box
27823 `thin-space': display as 1-pixel width space
27824 `zero-width': don't display
27825 An element may also be a cons cell (GRAPHICAL . TEXT), which specifies the
27826 display method for graphical terminals and text terminals respectively.
27827 GRAPHICAL and TEXT should each have one of the values listed above.
27829 The char-table has one extra slot to control the display of a character for
27830 which no font is found. This slot only takes effect on graphical terminals.
27831 Its value should be an ASCII acronym string, `hex-code', `empty-box', or
27832 `thin-space'. The default is `empty-box'. */);
27833 Vglyphless_char_display
= Fmake_char_table (Qglyphless_char_display
, Qnil
);
27834 Fset_char_table_extra_slot (Vglyphless_char_display
, make_number (0),
27839 /* Initialize this module when Emacs starts. */
27844 Lisp_Object root_window
;
27845 struct window
*mini_w
;
27847 current_header_line_height
= current_mode_line_height
= -1;
27849 CHARPOS (this_line_start_pos
) = 0;
27851 mini_w
= XWINDOW (minibuf_window
);
27852 root_window
= FRAME_ROOT_WINDOW (XFRAME (WINDOW_FRAME (mini_w
)));
27853 echo_area_window
= minibuf_window
;
27855 if (!noninteractive
)
27857 struct frame
*f
= XFRAME (WINDOW_FRAME (XWINDOW (root_window
)));
27860 XWINDOW (root_window
)->top_line
= make_number (FRAME_TOP_MARGIN (f
));
27861 set_window_height (root_window
,
27862 FRAME_LINES (f
) - 1 - FRAME_TOP_MARGIN (f
),
27864 mini_w
->top_line
= make_number (FRAME_LINES (f
) - 1);
27865 set_window_height (minibuf_window
, 1, 0);
27867 XWINDOW (root_window
)->total_cols
= make_number (FRAME_COLS (f
));
27868 mini_w
->total_cols
= make_number (FRAME_COLS (f
));
27870 scratch_glyph_row
.glyphs
[TEXT_AREA
] = scratch_glyphs
;
27871 scratch_glyph_row
.glyphs
[TEXT_AREA
+ 1]
27872 = scratch_glyphs
+ MAX_SCRATCH_GLYPHS
;
27874 /* The default ellipsis glyphs `...'. */
27875 for (i
= 0; i
< 3; ++i
)
27876 default_invis_vector
[i
] = make_number ('.');
27880 /* Allocate the buffer for frame titles.
27881 Also used for `format-mode-line'. */
27883 mode_line_noprop_buf
= (char *) xmalloc (size
);
27884 mode_line_noprop_buf_end
= mode_line_noprop_buf
+ size
;
27885 mode_line_noprop_ptr
= mode_line_noprop_buf
;
27886 mode_line_target
= MODE_LINE_DISPLAY
;
27889 help_echo_showing_p
= 0;
27892 /* Since w32 does not support atimers, it defines its own implementation of
27893 the following three functions in w32fns.c. */
27896 /* Platform-independent portion of hourglass implementation. */
27898 /* Return non-zero if houglass timer has been started or hourglass is shown. */
27900 hourglass_started (void)
27902 return hourglass_shown_p
|| hourglass_atimer
!= NULL
;
27905 /* Cancel a currently active hourglass timer, and start a new one. */
27907 start_hourglass (void)
27909 #if defined (HAVE_WINDOW_SYSTEM)
27911 int secs
, usecs
= 0;
27913 cancel_hourglass ();
27915 if (INTEGERP (Vhourglass_delay
)
27916 && XINT (Vhourglass_delay
) > 0)
27917 secs
= XFASTINT (Vhourglass_delay
);
27918 else if (FLOATP (Vhourglass_delay
)
27919 && XFLOAT_DATA (Vhourglass_delay
) > 0)
27922 tem
= Ftruncate (Vhourglass_delay
, Qnil
);
27923 secs
= XFASTINT (tem
);
27924 usecs
= (XFLOAT_DATA (Vhourglass_delay
) - secs
) * 1000000;
27927 secs
= DEFAULT_HOURGLASS_DELAY
;
27929 EMACS_SET_SECS_USECS (delay
, secs
, usecs
);
27930 hourglass_atimer
= start_atimer (ATIMER_RELATIVE
, delay
,
27931 show_hourglass
, NULL
);
27936 /* Cancel the hourglass cursor timer if active, hide a busy cursor if
27939 cancel_hourglass (void)
27941 #if defined (HAVE_WINDOW_SYSTEM)
27942 if (hourglass_atimer
)
27944 cancel_atimer (hourglass_atimer
);
27945 hourglass_atimer
= NULL
;
27948 if (hourglass_shown_p
)
27952 #endif /* ! WINDOWSNT */