1 /* Display generation from window structure and buffer text.
2 Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995,
3 1997, 1998, 1999, 2000, 2001, 2002, 2003,
4 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 /* New redisplay written by Gerd Moellmann <gerd@gnu.org>.
25 Emacs separates the task of updating the display from code
26 modifying global state, e.g. buffer text. This way functions
27 operating on buffers don't also have to be concerned with updating
30 Updating the display is triggered by the Lisp interpreter when it
31 decides it's time to do it. This is done either automatically for
32 you as part of the interpreter's command loop or as the result of
33 calling Lisp functions like `sit-for'. The C function `redisplay'
34 in xdisp.c is the only entry into the inner redisplay code. (Or,
35 let's say almost---see the description of direct update
38 The following diagram shows how redisplay code is invoked. As you
39 can see, Lisp calls redisplay and vice versa. Under window systems
40 like X, some portions of the redisplay code are also called
41 asynchronously during mouse movement or expose events. It is very
42 important that these code parts do NOT use the C library (malloc,
43 free) because many C libraries under Unix are not reentrant. They
44 may also NOT call functions of the Lisp interpreter which could
45 change the interpreter's state. If you don't follow these rules,
46 you will encounter bugs which are very hard to explain.
48 (Direct functions, see below)
49 direct_output_for_insert,
50 direct_forward_char (dispnew.c)
51 +---------------------------------+
54 +--------------+ redisplay +----------------+
55 | Lisp machine |---------------->| Redisplay code |<--+
56 +--------------+ (xdisp.c) +----------------+ |
58 +----------------------------------+ |
59 Don't use this path when called |
62 expose_window (asynchronous) |
64 X expose events -----+
66 What does redisplay do? Obviously, it has to figure out somehow what
67 has been changed since the last time the display has been updated,
68 and to make these changes visible. Preferably it would do that in
69 a moderately intelligent way, i.e. fast.
71 Changes in buffer text can be deduced from window and buffer
72 structures, and from some global variables like `beg_unchanged' and
73 `end_unchanged'. The contents of the display are additionally
74 recorded in a `glyph matrix', a two-dimensional matrix of glyph
75 structures. Each row in such a matrix corresponds to a line on the
76 display, and each glyph in a row corresponds to a column displaying
77 a character, an image, or what else. This matrix is called the
78 `current glyph matrix' or `current matrix' in redisplay
81 For buffer parts that have been changed since the last update, a
82 second glyph matrix is constructed, the so called `desired glyph
83 matrix' or short `desired matrix'. Current and desired matrix are
84 then compared to find a cheap way to update the display, e.g. by
85 reusing part of the display by scrolling lines.
90 You will find a lot of redisplay optimizations when you start
91 looking at the innards of redisplay. The overall goal of all these
92 optimizations is to make redisplay fast because it is done
95 Two optimizations are not found in xdisp.c. These are the direct
96 operations mentioned above. As the name suggests they follow a
97 different principle than the rest of redisplay. Instead of
98 building a desired matrix and then comparing it with the current
99 display, they perform their actions directly on the display and on
102 One direct operation updates the display after one character has
103 been entered. The other one moves the cursor by one position
104 forward or backward. You find these functions under the names
105 `direct_output_for_insert' and `direct_output_forward_char' in
111 Desired matrices are always built per Emacs window. The function
112 `display_line' is the central function to look at if you are
113 interested. It constructs one row in a desired matrix given an
114 iterator structure containing both a buffer position and a
115 description of the environment in which the text is to be
116 displayed. But this is too early, read on.
118 Characters and pixmaps displayed for a range of buffer text depend
119 on various settings of buffers and windows, on overlays and text
120 properties, on display tables, on selective display. The good news
121 is that all this hairy stuff is hidden behind a small set of
122 interface functions taking an iterator structure (struct it)
125 Iteration over things to be displayed is then simple. It is
126 started by initializing an iterator with a call to init_iterator.
127 Calls to get_next_display_element fill the iterator structure with
128 relevant information about the next thing to display. Calls to
129 set_iterator_to_next move the iterator to the next thing.
131 Besides this, an iterator also contains information about the
132 display environment in which glyphs for display elements are to be
133 produced. It has fields for the width and height of the display,
134 the information whether long lines are truncated or continued, a
135 current X and Y position, and lots of other stuff you can better
138 Glyphs in a desired matrix are normally constructed in a loop
139 calling get_next_display_element and then produce_glyphs. The call
140 to produce_glyphs will fill the iterator structure with pixel
141 information about the element being displayed and at the same time
142 produce glyphs for it. If the display element fits on the line
143 being displayed, set_iterator_to_next is called next, otherwise the
144 glyphs produced are discarded.
149 That just couldn't be all, could it? What about terminal types not
150 supporting operations on sub-windows of the screen? To update the
151 display on such a terminal, window-based glyph matrices are not
152 well suited. To be able to reuse part of the display (scrolling
153 lines up and down), we must instead have a view of the whole
154 screen. This is what `frame matrices' are for. They are a trick.
156 Frames on terminals like above have a glyph pool. Windows on such
157 a frame sub-allocate their glyph memory from their frame's glyph
158 pool. The frame itself is given its own glyph matrices. By
159 coincidence---or maybe something else---rows in window glyph
160 matrices are slices of corresponding rows in frame matrices. Thus
161 writing to window matrices implicitly updates a frame matrix which
162 provides us with the view of the whole screen that we originally
163 wanted to have without having to move many bytes around. To be
164 honest, there is a little bit more done, but not much more. If you
165 plan to extend that code, take a look at dispnew.c. The function
166 build_frame_matrix is a good starting point. */
173 #include "keyboard.h"
176 #include "termchar.h"
177 #include "dispextern.h"
179 #include "character.h"
182 #include "commands.h"
186 #include "termhooks.h"
187 #include "intervals.h"
190 #include "region-cache.h"
193 #include "blockinput.h"
195 #ifdef HAVE_X_WINDOWS
210 #ifndef FRAME_X_OUTPUT
211 #define FRAME_X_OUTPUT(f) ((f)->output_data.x)
214 #define INFINITY 10000000
216 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
217 || defined(HAVE_NS) || defined (USE_GTK)
218 extern void set_frame_menubar
P_ ((struct frame
*f
, int, int));
219 extern int pending_menu_activation
;
222 extern int interrupt_input
;
223 extern int command_loop_level
;
225 extern Lisp_Object do_mouse_tracking
;
227 extern int minibuffer_auto_raise
;
228 extern Lisp_Object Vminibuffer_list
;
230 extern Lisp_Object Qface
;
231 extern Lisp_Object Qmode_line
, Qmode_line_inactive
, Qheader_line
;
233 extern Lisp_Object Voverriding_local_map
;
234 extern Lisp_Object Voverriding_local_map_menu_flag
;
235 extern Lisp_Object Qmenu_item
;
236 extern Lisp_Object Qwhen
;
237 extern Lisp_Object Qhelp_echo
;
239 Lisp_Object Qoverriding_local_map
, Qoverriding_terminal_local_map
;
240 Lisp_Object Qwindow_scroll_functions
, Vwindow_scroll_functions
;
241 Lisp_Object Qwindow_text_change_functions
, Vwindow_text_change_functions
;
242 Lisp_Object Qredisplay_end_trigger_functions
, Vredisplay_end_trigger_functions
;
243 Lisp_Object Qinhibit_point_motion_hooks
;
244 Lisp_Object QCeval
, QCfile
, QCdata
, QCpropertize
;
245 Lisp_Object Qfontified
;
246 Lisp_Object Qgrow_only
;
247 Lisp_Object Qinhibit_eval_during_redisplay
;
248 Lisp_Object Qbuffer_position
, Qposition
, Qobject
;
251 Lisp_Object Qbar
, Qhbar
, Qbox
, Qhollow
;
254 Lisp_Object Qarrow
, Qhand
, Qtext
;
256 Lisp_Object Qrisky_local_variable
;
258 /* Holds the list (error). */
259 Lisp_Object list_of_error
;
261 /* Functions called to fontify regions of text. */
263 Lisp_Object Vfontification_functions
;
264 Lisp_Object Qfontification_functions
;
266 /* Non-nil means automatically select any window when the mouse
267 cursor moves into it. */
268 Lisp_Object Vmouse_autoselect_window
;
270 Lisp_Object Vwrap_prefix
, Qwrap_prefix
;
271 Lisp_Object Vline_prefix
, Qline_prefix
;
273 /* Non-zero means draw tool bar buttons raised when the mouse moves
276 int auto_raise_tool_bar_buttons_p
;
278 /* Non-zero means to reposition window if cursor line is only partially visible. */
280 int make_cursor_line_fully_visible_p
;
282 /* Margin below tool bar in pixels. 0 or nil means no margin.
283 If value is `internal-border-width' or `border-width',
284 the corresponding frame parameter is used. */
286 Lisp_Object Vtool_bar_border
;
288 /* Margin around tool bar buttons in pixels. */
290 Lisp_Object Vtool_bar_button_margin
;
292 /* Thickness of shadow to draw around tool bar buttons. */
294 EMACS_INT tool_bar_button_relief
;
296 /* Non-nil means automatically resize tool-bars so that all tool-bar
297 items are visible, and no blank lines remain.
299 If value is `grow-only', only make tool-bar bigger. */
301 Lisp_Object Vauto_resize_tool_bars
;
303 /* Non-zero means draw block and hollow cursor as wide as the glyph
304 under it. For example, if a block cursor is over a tab, it will be
305 drawn as wide as that tab on the display. */
307 int x_stretch_cursor_p
;
309 /* Non-nil means don't actually do any redisplay. */
311 Lisp_Object Vinhibit_redisplay
, Qinhibit_redisplay
;
313 /* Non-zero means Lisp evaluation during redisplay is inhibited. */
315 int inhibit_eval_during_redisplay
;
317 /* Names of text properties relevant for redisplay. */
319 Lisp_Object Qdisplay
;
320 extern Lisp_Object Qface
, Qinvisible
, Qwidth
;
322 /* Symbols used in text property values. */
324 Lisp_Object Vdisplay_pixels_per_inch
;
325 Lisp_Object Qspace
, QCalign_to
, QCrelative_width
, QCrelative_height
;
326 Lisp_Object Qleft_margin
, Qright_margin
, Qspace_width
, Qraise
;
329 Lisp_Object Qmargin
, Qpointer
;
330 Lisp_Object Qline_height
;
331 extern Lisp_Object Qheight
;
332 extern Lisp_Object QCwidth
, QCheight
, QCascent
;
333 extern Lisp_Object Qscroll_bar
;
334 extern Lisp_Object Qcursor
;
336 /* Non-nil means highlight trailing whitespace. */
338 Lisp_Object Vshow_trailing_whitespace
;
340 /* Non-nil means escape non-break space and hyphens. */
342 Lisp_Object Vnobreak_char_display
;
344 #ifdef HAVE_WINDOW_SYSTEM
345 extern Lisp_Object Voverflow_newline_into_fringe
;
347 /* Test if overflow newline into fringe. Called with iterator IT
348 at or past right window margin, and with IT->current_x set. */
350 #define IT_OVERFLOW_NEWLINE_INTO_FRINGE(it) \
351 (!NILP (Voverflow_newline_into_fringe) \
352 && FRAME_WINDOW_P (it->f) \
353 && WINDOW_RIGHT_FRINGE_WIDTH (it->w) > 0 \
354 && it->current_x == it->last_visible_x \
355 && it->line_wrap != WORD_WRAP)
357 #endif /* HAVE_WINDOW_SYSTEM */
359 /* Test if the display element loaded in IT is a space or tab
360 character. This is used to determine word wrapping. */
362 #define IT_DISPLAYING_WHITESPACE(it) \
363 (it->what == IT_CHARACTER && (it->c == ' ' || it->c == '\t'))
365 /* Non-nil means show the text cursor in void text areas
366 i.e. in blank areas after eol and eob. This used to be
367 the default in 21.3. */
369 Lisp_Object Vvoid_text_area_pointer
;
371 /* Name of the face used to highlight trailing whitespace. */
373 Lisp_Object Qtrailing_whitespace
;
375 /* Name and number of the face used to highlight escape glyphs. */
377 Lisp_Object Qescape_glyph
;
379 /* Name and number of the face used to highlight non-breaking spaces. */
381 Lisp_Object Qnobreak_space
;
383 /* The symbol `image' which is the car of the lists used to represent
388 /* The image map types. */
389 Lisp_Object QCmap
, QCpointer
;
390 Lisp_Object Qrect
, Qcircle
, Qpoly
;
392 /* Non-zero means print newline to stdout before next mini-buffer
395 int noninteractive_need_newline
;
397 /* Non-zero means print newline to message log before next message. */
399 static int message_log_need_newline
;
401 /* Three markers that message_dolog uses.
402 It could allocate them itself, but that causes trouble
403 in handling memory-full errors. */
404 static Lisp_Object message_dolog_marker1
;
405 static Lisp_Object message_dolog_marker2
;
406 static Lisp_Object message_dolog_marker3
;
408 /* The buffer position of the first character appearing entirely or
409 partially on the line of the selected window which contains the
410 cursor; <= 0 if not known. Set by set_cursor_from_row, used for
411 redisplay optimization in redisplay_internal. */
413 static struct text_pos this_line_start_pos
;
415 /* Number of characters past the end of the line above, including the
416 terminating newline. */
418 static struct text_pos this_line_end_pos
;
420 /* The vertical positions and the height of this line. */
422 static int this_line_vpos
;
423 static int this_line_y
;
424 static int this_line_pixel_height
;
426 /* X position at which this display line starts. Usually zero;
427 negative if first character is partially visible. */
429 static int this_line_start_x
;
431 /* Buffer that this_line_.* variables are referring to. */
433 static struct buffer
*this_line_buffer
;
435 /* Nonzero means truncate lines in all windows less wide than the
438 Lisp_Object Vtruncate_partial_width_windows
;
440 /* A flag to control how to display unibyte 8-bit character. */
442 int unibyte_display_via_language_environment
;
444 /* Nonzero means we have more than one non-mini-buffer-only frame.
445 Not guaranteed to be accurate except while parsing
446 frame-title-format. */
450 Lisp_Object Vglobal_mode_string
;
453 /* List of variables (symbols) which hold markers for overlay arrows.
454 The symbols on this list are examined during redisplay to determine
455 where to display overlay arrows. */
457 Lisp_Object Voverlay_arrow_variable_list
;
459 /* Marker for where to display an arrow on top of the buffer text. */
461 Lisp_Object Voverlay_arrow_position
;
463 /* String to display for the arrow. Only used on terminal frames. */
465 Lisp_Object Voverlay_arrow_string
;
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 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 Lisp_Object Qoverlay_arrow_string
, Qoverlay_arrow_bitmap
;
479 /* Like mode-line-format, but for the title bar on a visible frame. */
481 Lisp_Object Vframe_title_format
;
483 /* Like mode-line-format, but for the title bar on an iconified frame. */
485 Lisp_Object Vicon_title_format
;
487 /* List of functions to call when a window's size changes. These
488 functions get one arg, a frame on which one or more windows' sizes
491 static Lisp_Object Vwindow_size_change_functions
;
493 Lisp_Object Qmenu_bar_update_hook
, Vmenu_bar_update_hook
;
495 /* Nonzero if an overlay arrow has been displayed in this window. */
497 static int overlay_arrow_seen
;
499 /* Nonzero means highlight the region even in nonselected windows. */
501 int highlight_nonselected_windows
;
503 /* If cursor motion alone moves point off frame, try scrolling this
504 many lines up or down if that will bring it back. */
506 static EMACS_INT scroll_step
;
508 /* Nonzero means scroll just far enough to bring point back on the
509 screen, when appropriate. */
511 static EMACS_INT scroll_conservatively
;
513 /* Recenter the window whenever point gets within this many lines of
514 the top or bottom of the window. This value is translated into a
515 pixel value by multiplying it with FRAME_LINE_HEIGHT, which means
516 that there is really a fixed pixel height scroll margin. */
518 EMACS_INT scroll_margin
;
520 /* Number of windows showing the buffer of the selected window (or
521 another buffer with the same base buffer). keyboard.c refers to
526 /* Vector containing glyphs for an ellipsis `...'. */
528 static Lisp_Object default_invis_vector
[3];
530 /* Zero means display the mode-line/header-line/menu-bar in the default face
531 (this slightly odd definition is for compatibility with previous versions
532 of emacs), non-zero means display them using their respective faces.
534 This variable is deprecated. */
536 int mode_line_inverse_video
;
538 /* Prompt to display in front of the mini-buffer contents. */
540 Lisp_Object minibuf_prompt
;
542 /* Width of current mini-buffer prompt. Only set after display_line
543 of the line that contains the prompt. */
545 int minibuf_prompt_width
;
547 /* This is the window where the echo area message was displayed. It
548 is always a mini-buffer window, but it may not be the same window
549 currently active as a mini-buffer. */
551 Lisp_Object echo_area_window
;
553 /* List of pairs (MESSAGE . MULTIBYTE). The function save_message
554 pushes the current message and the value of
555 message_enable_multibyte on the stack, the function restore_message
556 pops the stack and displays MESSAGE again. */
558 Lisp_Object Vmessage_stack
;
560 /* Nonzero means multibyte characters were enabled when the echo area
561 message was specified. */
563 int message_enable_multibyte
;
565 /* Nonzero if we should redraw the mode lines on the next redisplay. */
567 int update_mode_lines
;
569 /* Nonzero if window sizes or contents have changed since last
570 redisplay that finished. */
572 int windows_or_buffers_changed
;
574 /* Nonzero means a frame's cursor type has been changed. */
576 int cursor_type_changed
;
578 /* Nonzero after display_mode_line if %l was used and it displayed a
581 int line_number_displayed
;
583 /* Maximum buffer size for which to display line numbers. */
585 Lisp_Object Vline_number_display_limit
;
587 /* Line width to consider when repositioning for line number display. */
589 static EMACS_INT line_number_display_limit_width
;
591 /* Number of lines to keep in the message log buffer. t means
592 infinite. nil means don't log at all. */
594 Lisp_Object Vmessage_log_max
;
596 /* The name of the *Messages* buffer, a string. */
598 static Lisp_Object Vmessages_buffer_name
;
600 /* Current, index 0, and last displayed echo area message. Either
601 buffers from echo_buffers, or nil to indicate no message. */
603 Lisp_Object echo_area_buffer
[2];
605 /* The buffers referenced from echo_area_buffer. */
607 static Lisp_Object echo_buffer
[2];
609 /* A vector saved used in with_area_buffer to reduce consing. */
611 static Lisp_Object Vwith_echo_area_save_vector
;
613 /* Non-zero means display_echo_area should display the last echo area
614 message again. Set by redisplay_preserve_echo_area. */
616 static int display_last_displayed_message_p
;
618 /* Nonzero if echo area is being used by print; zero if being used by
621 int message_buf_print
;
623 /* The symbol `inhibit-menubar-update' and its DEFVAR_BOOL variable. */
625 Lisp_Object Qinhibit_menubar_update
;
626 int inhibit_menubar_update
;
628 /* When evaluating expressions from menu bar items (enable conditions,
629 for instance), this is the frame they are being processed for. */
631 Lisp_Object Vmenu_updating_frame
;
633 /* Maximum height for resizing mini-windows. Either a float
634 specifying a fraction of the available height, or an integer
635 specifying a number of lines. */
637 Lisp_Object Vmax_mini_window_height
;
639 /* Non-zero means messages should be displayed with truncated
640 lines instead of being continued. */
642 int message_truncate_lines
;
643 Lisp_Object Qmessage_truncate_lines
;
645 /* Set to 1 in clear_message to make redisplay_internal aware
646 of an emptied echo area. */
648 static int message_cleared_p
;
650 /* How to blink the default frame cursor off. */
651 Lisp_Object Vblink_cursor_alist
;
653 /* A scratch glyph row with contents used for generating truncation
654 glyphs. Also used in direct_output_for_insert. */
656 #define MAX_SCRATCH_GLYPHS 100
657 struct glyph_row scratch_glyph_row
;
658 static struct glyph scratch_glyphs
[MAX_SCRATCH_GLYPHS
];
660 /* Ascent and height of the last line processed by move_it_to. */
662 static int last_max_ascent
, last_height
;
664 /* Non-zero if there's a help-echo in the echo area. */
666 int help_echo_showing_p
;
668 /* If >= 0, computed, exact values of mode-line and header-line height
669 to use in the macros CURRENT_MODE_LINE_HEIGHT and
670 CURRENT_HEADER_LINE_HEIGHT. */
672 int current_mode_line_height
, current_header_line_height
;
674 /* The maximum distance to look ahead for text properties. Values
675 that are too small let us call compute_char_face and similar
676 functions too often which is expensive. Values that are too large
677 let us call compute_char_face and alike too often because we
678 might not be interested in text properties that far away. */
680 #define TEXT_PROP_DISTANCE_LIMIT 100
684 /* Variables to turn off display optimizations from Lisp. */
686 int inhibit_try_window_id
, inhibit_try_window_reusing
;
687 int inhibit_try_cursor_movement
;
689 /* Non-zero means print traces of redisplay if compiled with
692 int trace_redisplay_p
;
694 #endif /* GLYPH_DEBUG */
696 #ifdef DEBUG_TRACE_MOVE
697 /* Non-zero means trace with TRACE_MOVE to stderr. */
700 #define TRACE_MOVE(x) if (trace_move) fprintf x; else (void) 0
702 #define TRACE_MOVE(x) (void) 0
705 /* Non-zero means automatically scroll windows horizontally to make
708 int automatic_hscrolling_p
;
709 Lisp_Object Qauto_hscroll_mode
;
711 /* How close to the margin can point get before the window is scrolled
713 EMACS_INT hscroll_margin
;
715 /* How much to scroll horizontally when point is inside the above margin. */
716 Lisp_Object Vhscroll_step
;
718 /* The variable `resize-mini-windows'. If nil, don't resize
719 mini-windows. If t, always resize them to fit the text they
720 display. If `grow-only', let mini-windows grow only until they
723 Lisp_Object Vresize_mini_windows
;
725 /* Buffer being redisplayed -- for redisplay_window_error. */
727 struct buffer
*displayed_buffer
;
729 /* Space between overline and text. */
731 EMACS_INT overline_margin
;
733 /* Require underline to be at least this many screen pixels below baseline
734 This to avoid underline "merging" with the base of letters at small
735 font sizes, particularly when x_use_underline_position_properties is on. */
737 EMACS_INT underline_minimum_offset
;
739 /* Value returned from text property handlers (see below). */
744 HANDLED_RECOMPUTE_PROPS
,
745 HANDLED_OVERLAY_STRING_CONSUMED
,
749 /* A description of text properties that redisplay is interested
754 /* The name of the property. */
757 /* A unique index for the property. */
760 /* A handler function called to set up iterator IT from the property
761 at IT's current position. Value is used to steer handle_stop. */
762 enum prop_handled (*handler
) P_ ((struct it
*it
));
765 static enum prop_handled handle_face_prop
P_ ((struct it
*));
766 static enum prop_handled handle_invisible_prop
P_ ((struct it
*));
767 static enum prop_handled handle_display_prop
P_ ((struct it
*));
768 static enum prop_handled handle_composition_prop
P_ ((struct it
*));
769 static enum prop_handled handle_overlay_change
P_ ((struct it
*));
770 static enum prop_handled handle_fontified_prop
P_ ((struct it
*));
772 /* Properties handled by iterators. */
774 static struct props it_props
[] =
776 {&Qfontified
, FONTIFIED_PROP_IDX
, handle_fontified_prop
},
777 /* Handle `face' before `display' because some sub-properties of
778 `display' need to know the face. */
779 {&Qface
, FACE_PROP_IDX
, handle_face_prop
},
780 {&Qdisplay
, DISPLAY_PROP_IDX
, handle_display_prop
},
781 {&Qinvisible
, INVISIBLE_PROP_IDX
, handle_invisible_prop
},
782 {&Qcomposition
, COMPOSITION_PROP_IDX
, handle_composition_prop
},
786 /* Value is the position described by X. If X is a marker, value is
787 the marker_position of X. Otherwise, value is X. */
789 #define COERCE_MARKER(X) (MARKERP ((X)) ? Fmarker_position (X) : (X))
791 /* Enumeration returned by some move_it_.* functions internally. */
795 /* Not used. Undefined value. */
798 /* Move ended at the requested buffer position or ZV. */
799 MOVE_POS_MATCH_OR_ZV
,
801 /* Move ended at the requested X pixel position. */
804 /* Move within a line ended at the end of a line that must be
808 /* Move within a line ended at the end of a line that would
809 be displayed truncated. */
812 /* Move within a line ended at a line end. */
816 /* This counter is used to clear the face cache every once in a while
817 in redisplay_internal. It is incremented for each redisplay.
818 Every CLEAR_FACE_CACHE_COUNT full redisplays, the face cache is
821 #define CLEAR_FACE_CACHE_COUNT 500
822 static int clear_face_cache_count
;
824 /* Similarly for the image cache. */
826 #ifdef HAVE_WINDOW_SYSTEM
827 #define CLEAR_IMAGE_CACHE_COUNT 101
828 static int clear_image_cache_count
;
831 /* Non-zero while redisplay_internal is in progress. */
835 /* Non-zero means don't free realized faces. Bound while freeing
836 realized faces is dangerous because glyph matrices might still
839 int inhibit_free_realized_faces
;
840 Lisp_Object Qinhibit_free_realized_faces
;
842 /* If a string, XTread_socket generates an event to display that string.
843 (The display is done in read_char.) */
845 Lisp_Object help_echo_string
;
846 Lisp_Object help_echo_window
;
847 Lisp_Object help_echo_object
;
850 /* Temporary variable for XTread_socket. */
852 Lisp_Object previous_help_echo_string
;
854 /* Null glyph slice */
856 static struct glyph_slice null_glyph_slice
= { 0, 0, 0, 0 };
858 /* Platform-independent portion of hourglass implementation. */
860 /* Non-zero means we're allowed to display a hourglass pointer. */
861 int display_hourglass_p
;
863 /* Non-zero means an hourglass cursor is currently shown. */
864 int hourglass_shown_p
;
866 /* If non-null, an asynchronous timer that, when it expires, displays
867 an hourglass cursor on all frames. */
868 struct atimer
*hourglass_atimer
;
870 /* Number of seconds to wait before displaying an hourglass cursor. */
871 Lisp_Object Vhourglass_delay
;
873 /* Default number of seconds to wait before displaying an hourglass
875 #define DEFAULT_HOURGLASS_DELAY 1
878 /* Function prototypes. */
880 static void setup_for_ellipsis
P_ ((struct it
*, int));
881 static void mark_window_display_accurate_1
P_ ((struct window
*, int));
882 static int single_display_spec_string_p
P_ ((Lisp_Object
, Lisp_Object
));
883 static int display_prop_string_p
P_ ((Lisp_Object
, Lisp_Object
));
884 static int cursor_row_p
P_ ((struct window
*, struct glyph_row
*));
885 static int redisplay_mode_lines
P_ ((Lisp_Object
, int));
886 static char *decode_mode_spec_coding
P_ ((Lisp_Object
, char *, int));
888 static Lisp_Object get_it_property
P_ ((struct it
*it
, Lisp_Object prop
));
890 static void handle_line_prefix
P_ ((struct it
*));
892 static void pint2str
P_ ((char *, int, int));
893 static void pint2hrstr
P_ ((char *, int, int));
894 static struct text_pos run_window_scroll_functions
P_ ((Lisp_Object
,
896 static void reconsider_clip_changes
P_ ((struct window
*, struct buffer
*));
897 static int text_outside_line_unchanged_p
P_ ((struct window
*, int, int));
898 static void store_mode_line_noprop_char
P_ ((char));
899 static int store_mode_line_noprop
P_ ((const unsigned char *, int, int));
900 static void x_consider_frame_title
P_ ((Lisp_Object
));
901 static void handle_stop
P_ ((struct it
*));
902 static int tool_bar_lines_needed
P_ ((struct frame
*, int *));
903 static int single_display_spec_intangible_p
P_ ((Lisp_Object
));
904 static void ensure_echo_area_buffers
P_ ((void));
905 static Lisp_Object unwind_with_echo_area_buffer
P_ ((Lisp_Object
));
906 static Lisp_Object with_echo_area_buffer_unwind_data
P_ ((struct window
*));
907 static int with_echo_area_buffer
P_ ((struct window
*, int,
908 int (*) (EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
),
909 EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
));
910 static void clear_garbaged_frames
P_ ((void));
911 static int current_message_1
P_ ((EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
));
912 static int truncate_message_1
P_ ((EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
));
913 static int set_message_1
P_ ((EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
));
914 static int display_echo_area
P_ ((struct window
*));
915 static int display_echo_area_1
P_ ((EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
));
916 static int resize_mini_window_1
P_ ((EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
));
917 static Lisp_Object unwind_redisplay
P_ ((Lisp_Object
));
918 static int string_char_and_length
P_ ((const unsigned char *, int, int *));
919 static struct text_pos display_prop_end
P_ ((struct it
*, Lisp_Object
,
921 static int compute_window_start_on_continuation_line
P_ ((struct window
*));
922 static Lisp_Object safe_eval_handler
P_ ((Lisp_Object
));
923 static void insert_left_trunc_glyphs
P_ ((struct it
*));
924 static struct glyph_row
*get_overlay_arrow_glyph_row
P_ ((struct window
*,
926 static void extend_face_to_end_of_line
P_ ((struct it
*));
927 static int append_space_for_newline
P_ ((struct it
*, int));
928 static int cursor_row_fully_visible_p
P_ ((struct window
*, int, int));
929 static int try_scrolling
P_ ((Lisp_Object
, int, EMACS_INT
, EMACS_INT
, int, int));
930 static int try_cursor_movement
P_ ((Lisp_Object
, struct text_pos
, int *));
931 static int trailing_whitespace_p
P_ ((int));
932 static int message_log_check_duplicate
P_ ((int, int, int, int));
933 static void push_it
P_ ((struct it
*));
934 static void pop_it
P_ ((struct it
*));
935 static void sync_frame_with_window_matrix_rows
P_ ((struct window
*));
936 static void select_frame_for_redisplay
P_ ((Lisp_Object
));
937 static void redisplay_internal
P_ ((int));
938 static int echo_area_display
P_ ((int));
939 static void redisplay_windows
P_ ((Lisp_Object
));
940 static void redisplay_window
P_ ((Lisp_Object
, int));
941 static Lisp_Object
redisplay_window_error ();
942 static Lisp_Object redisplay_window_0
P_ ((Lisp_Object
));
943 static Lisp_Object redisplay_window_1
P_ ((Lisp_Object
));
944 static int update_menu_bar
P_ ((struct frame
*, int, int));
945 static int try_window_reusing_current_matrix
P_ ((struct window
*));
946 static int try_window_id
P_ ((struct window
*));
947 static int display_line
P_ ((struct it
*));
948 static int display_mode_lines
P_ ((struct window
*));
949 static int display_mode_line
P_ ((struct window
*, enum face_id
, Lisp_Object
));
950 static int display_mode_element
P_ ((struct it
*, int, int, int, Lisp_Object
, Lisp_Object
, int));
951 static int store_mode_line_string
P_ ((char *, Lisp_Object
, int, int, int, Lisp_Object
));
952 static char *decode_mode_spec
P_ ((struct window
*, int, int, int, int *));
953 static void display_menu_bar
P_ ((struct window
*));
954 static int display_count_lines
P_ ((int, int, int, int, int *));
955 static int display_string
P_ ((unsigned char *, Lisp_Object
, Lisp_Object
,
956 EMACS_INT
, EMACS_INT
, struct it
*, int, int, int, int));
957 static void compute_line_metrics
P_ ((struct it
*));
958 static void run_redisplay_end_trigger_hook
P_ ((struct it
*));
959 static int get_overlay_strings
P_ ((struct it
*, int));
960 static int get_overlay_strings_1
P_ ((struct it
*, int, int));
961 static void next_overlay_string
P_ ((struct it
*));
962 static void reseat
P_ ((struct it
*, struct text_pos
, int));
963 static void reseat_1
P_ ((struct it
*, struct text_pos
, int));
964 static void back_to_previous_visible_line_start
P_ ((struct it
*));
965 void reseat_at_previous_visible_line_start
P_ ((struct it
*));
966 static void reseat_at_next_visible_line_start
P_ ((struct it
*, int));
967 static int next_element_from_ellipsis
P_ ((struct it
*));
968 static int next_element_from_display_vector
P_ ((struct it
*));
969 static int next_element_from_string
P_ ((struct it
*));
970 static int next_element_from_c_string
P_ ((struct it
*));
971 static int next_element_from_buffer
P_ ((struct it
*));
972 static int next_element_from_composition
P_ ((struct it
*));
973 static int next_element_from_image
P_ ((struct it
*));
974 static int next_element_from_stretch
P_ ((struct it
*));
975 static void load_overlay_strings
P_ ((struct it
*, int));
976 static int init_from_display_pos
P_ ((struct it
*, struct window
*,
977 struct display_pos
*));
978 static void reseat_to_string
P_ ((struct it
*, unsigned char *,
979 Lisp_Object
, int, int, int, int));
980 static enum move_it_result
981 move_it_in_display_line_to (struct it
*, EMACS_INT
, int,
982 enum move_operation_enum
);
983 void move_it_vertically_backward
P_ ((struct it
*, int));
984 static void init_to_row_start
P_ ((struct it
*, struct window
*,
985 struct glyph_row
*));
986 static int init_to_row_end
P_ ((struct it
*, struct window
*,
987 struct glyph_row
*));
988 static void back_to_previous_line_start
P_ ((struct it
*));
989 static int forward_to_next_line_start
P_ ((struct it
*, int *));
990 static struct text_pos string_pos_nchars_ahead
P_ ((struct text_pos
,
992 static struct text_pos string_pos
P_ ((int, Lisp_Object
));
993 static struct text_pos c_string_pos
P_ ((int, unsigned char *, int));
994 static int number_of_chars
P_ ((unsigned char *, int));
995 static void compute_stop_pos
P_ ((struct it
*));
996 static void compute_string_pos
P_ ((struct text_pos
*, struct text_pos
,
998 static int face_before_or_after_it_pos
P_ ((struct it
*, int));
999 static EMACS_INT next_overlay_change
P_ ((EMACS_INT
));
1000 static int handle_single_display_spec
P_ ((struct it
*, Lisp_Object
,
1001 Lisp_Object
, Lisp_Object
,
1002 struct text_pos
*, int));
1003 static int underlying_face_id
P_ ((struct it
*));
1004 static int in_ellipses_for_invisible_text_p
P_ ((struct display_pos
*,
1007 #define face_before_it_pos(IT) face_before_or_after_it_pos ((IT), 1)
1008 #define face_after_it_pos(IT) face_before_or_after_it_pos ((IT), 0)
1010 #ifdef HAVE_WINDOW_SYSTEM
1012 static void update_tool_bar
P_ ((struct frame
*, int));
1013 static void build_desired_tool_bar_string
P_ ((struct frame
*f
));
1014 static int redisplay_tool_bar
P_ ((struct frame
*));
1015 static void display_tool_bar_line
P_ ((struct it
*, int));
1016 static void notice_overwritten_cursor
P_ ((struct window
*,
1017 enum glyph_row_area
,
1018 int, int, int, int));
1022 #endif /* HAVE_WINDOW_SYSTEM */
1025 /***********************************************************************
1026 Window display dimensions
1027 ***********************************************************************/
1029 /* Return the bottom boundary y-position for text lines in window W.
1030 This is the first y position at which a line cannot start.
1031 It is relative to the top of the window.
1033 This is the height of W minus the height of a mode line, if any. */
1036 window_text_bottom_y (w
)
1039 int height
= WINDOW_TOTAL_HEIGHT (w
);
1041 if (WINDOW_WANTS_MODELINE_P (w
))
1042 height
-= CURRENT_MODE_LINE_HEIGHT (w
);
1046 /* Return the pixel width of display area AREA of window W. AREA < 0
1047 means return the total width of W, not including fringes to
1048 the left and right of the window. */
1051 window_box_width (w
, area
)
1055 int cols
= XFASTINT (w
->total_cols
);
1058 if (!w
->pseudo_window_p
)
1060 cols
-= WINDOW_SCROLL_BAR_COLS (w
);
1062 if (area
== TEXT_AREA
)
1064 if (INTEGERP (w
->left_margin_cols
))
1065 cols
-= XFASTINT (w
->left_margin_cols
);
1066 if (INTEGERP (w
->right_margin_cols
))
1067 cols
-= XFASTINT (w
->right_margin_cols
);
1068 pixels
= -WINDOW_TOTAL_FRINGE_WIDTH (w
);
1070 else if (area
== LEFT_MARGIN_AREA
)
1072 cols
= (INTEGERP (w
->left_margin_cols
)
1073 ? XFASTINT (w
->left_margin_cols
) : 0);
1076 else if (area
== RIGHT_MARGIN_AREA
)
1078 cols
= (INTEGERP (w
->right_margin_cols
)
1079 ? XFASTINT (w
->right_margin_cols
) : 0);
1084 return cols
* WINDOW_FRAME_COLUMN_WIDTH (w
) + pixels
;
1088 /* Return the pixel height of the display area of window W, not
1089 including mode lines of W, if any. */
1092 window_box_height (w
)
1095 struct frame
*f
= XFRAME (w
->frame
);
1096 int height
= WINDOW_TOTAL_HEIGHT (w
);
1098 xassert (height
>= 0);
1100 /* Note: the code below that determines the mode-line/header-line
1101 height is essentially the same as that contained in the macro
1102 CURRENT_{MODE,HEADER}_LINE_HEIGHT, except that it checks whether
1103 the appropriate glyph row has its `mode_line_p' flag set,
1104 and if it doesn't, uses estimate_mode_line_height instead. */
1106 if (WINDOW_WANTS_MODELINE_P (w
))
1108 struct glyph_row
*ml_row
1109 = (w
->current_matrix
&& w
->current_matrix
->rows
1110 ? MATRIX_MODE_LINE_ROW (w
->current_matrix
)
1112 if (ml_row
&& ml_row
->mode_line_p
)
1113 height
-= ml_row
->height
;
1115 height
-= estimate_mode_line_height (f
, CURRENT_MODE_LINE_FACE_ID (w
));
1118 if (WINDOW_WANTS_HEADER_LINE_P (w
))
1120 struct glyph_row
*hl_row
1121 = (w
->current_matrix
&& w
->current_matrix
->rows
1122 ? MATRIX_HEADER_LINE_ROW (w
->current_matrix
)
1124 if (hl_row
&& hl_row
->mode_line_p
)
1125 height
-= hl_row
->height
;
1127 height
-= estimate_mode_line_height (f
, HEADER_LINE_FACE_ID
);
1130 /* With a very small font and a mode-line that's taller than
1131 default, we might end up with a negative height. */
1132 return max (0, height
);
1135 /* Return the window-relative coordinate of the left edge of display
1136 area AREA of window W. AREA < 0 means return the left edge of the
1137 whole window, to the right of the left fringe of W. */
1140 window_box_left_offset (w
, area
)
1146 if (w
->pseudo_window_p
)
1149 x
= WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w
);
1151 if (area
== TEXT_AREA
)
1152 x
+= (WINDOW_LEFT_FRINGE_WIDTH (w
)
1153 + window_box_width (w
, LEFT_MARGIN_AREA
));
1154 else if (area
== RIGHT_MARGIN_AREA
)
1155 x
+= (WINDOW_LEFT_FRINGE_WIDTH (w
)
1156 + window_box_width (w
, LEFT_MARGIN_AREA
)
1157 + window_box_width (w
, TEXT_AREA
)
1158 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
1160 : WINDOW_RIGHT_FRINGE_WIDTH (w
)));
1161 else if (area
== LEFT_MARGIN_AREA
1162 && WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
))
1163 x
+= WINDOW_LEFT_FRINGE_WIDTH (w
);
1169 /* Return the window-relative coordinate of the right edge of display
1170 area AREA of window W. AREA < 0 means return the left edge of the
1171 whole window, to the left of the right fringe of W. */
1174 window_box_right_offset (w
, area
)
1178 return window_box_left_offset (w
, area
) + window_box_width (w
, area
);
1181 /* Return the frame-relative coordinate of the left edge of display
1182 area AREA of window W. AREA < 0 means return the left edge of the
1183 whole window, to the right of the left fringe of W. */
1186 window_box_left (w
, area
)
1190 struct frame
*f
= XFRAME (w
->frame
);
1193 if (w
->pseudo_window_p
)
1194 return FRAME_INTERNAL_BORDER_WIDTH (f
);
1196 x
= (WINDOW_LEFT_EDGE_X (w
)
1197 + window_box_left_offset (w
, area
));
1203 /* Return the frame-relative coordinate of the right edge of display
1204 area AREA of window W. AREA < 0 means return the left edge of the
1205 whole window, to the left of the right fringe of W. */
1208 window_box_right (w
, area
)
1212 return window_box_left (w
, area
) + window_box_width (w
, area
);
1215 /* Get the bounding box of the display area AREA of window W, without
1216 mode lines, in frame-relative coordinates. AREA < 0 means the
1217 whole window, not including the left and right fringes of
1218 the window. Return in *BOX_X and *BOX_Y the frame-relative pixel
1219 coordinates of the upper-left corner of the box. Return in
1220 *BOX_WIDTH, and *BOX_HEIGHT the pixel width and height of the box. */
1223 window_box (w
, area
, box_x
, box_y
, box_width
, box_height
)
1226 int *box_x
, *box_y
, *box_width
, *box_height
;
1229 *box_width
= window_box_width (w
, area
);
1231 *box_height
= window_box_height (w
);
1233 *box_x
= window_box_left (w
, area
);
1236 *box_y
= WINDOW_TOP_EDGE_Y (w
);
1237 if (WINDOW_WANTS_HEADER_LINE_P (w
))
1238 *box_y
+= CURRENT_HEADER_LINE_HEIGHT (w
);
1243 /* Get the bounding box of the display area AREA of window W, without
1244 mode lines. AREA < 0 means the whole window, not including the
1245 left and right fringe of the window. Return in *TOP_LEFT_X
1246 and TOP_LEFT_Y the frame-relative pixel coordinates of the
1247 upper-left corner of the box. Return in *BOTTOM_RIGHT_X, and
1248 *BOTTOM_RIGHT_Y the coordinates of the bottom-right corner of the
1252 window_box_edges (w
, area
, top_left_x
, top_left_y
,
1253 bottom_right_x
, bottom_right_y
)
1256 int *top_left_x
, *top_left_y
, *bottom_right_x
, *bottom_right_y
;
1258 window_box (w
, area
, top_left_x
, top_left_y
, bottom_right_x
,
1260 *bottom_right_x
+= *top_left_x
;
1261 *bottom_right_y
+= *top_left_y
;
1266 /***********************************************************************
1268 ***********************************************************************/
1270 /* Return the bottom y-position of the line the iterator IT is in.
1271 This can modify IT's settings. */
1277 int line_height
= it
->max_ascent
+ it
->max_descent
;
1278 int line_top_y
= it
->current_y
;
1280 if (line_height
== 0)
1283 line_height
= last_height
;
1284 else if (IT_CHARPOS (*it
) < ZV
)
1286 move_it_by_lines (it
, 1, 1);
1287 line_height
= (it
->max_ascent
|| it
->max_descent
1288 ? it
->max_ascent
+ it
->max_descent
1293 struct glyph_row
*row
= it
->glyph_row
;
1295 /* Use the default character height. */
1296 it
->glyph_row
= NULL
;
1297 it
->what
= IT_CHARACTER
;
1300 PRODUCE_GLYPHS (it
);
1301 line_height
= it
->ascent
+ it
->descent
;
1302 it
->glyph_row
= row
;
1306 return line_top_y
+ line_height
;
1310 /* Return 1 if position CHARPOS is visible in window W.
1311 CHARPOS < 0 means return info about WINDOW_END position.
1312 If visible, set *X and *Y to pixel coordinates of top left corner.
1313 Set *RTOP and *RBOT to pixel height of an invisible area of glyph at POS.
1314 Set *ROWH and *VPOS to row's visible height and VPOS (row number). */
1317 pos_visible_p (w
, charpos
, x
, y
, rtop
, rbot
, rowh
, vpos
)
1319 int charpos
, *x
, *y
, *rtop
, *rbot
, *rowh
, *vpos
;
1322 struct text_pos top
;
1324 struct buffer
*old_buffer
= NULL
;
1326 if (FRAME_INITIAL_P (XFRAME (WINDOW_FRAME (w
))))
1329 if (XBUFFER (w
->buffer
) != current_buffer
)
1331 old_buffer
= current_buffer
;
1332 set_buffer_internal_1 (XBUFFER (w
->buffer
));
1335 SET_TEXT_POS_FROM_MARKER (top
, w
->start
);
1337 /* Compute exact mode line heights. */
1338 if (WINDOW_WANTS_MODELINE_P (w
))
1339 current_mode_line_height
1340 = display_mode_line (w
, CURRENT_MODE_LINE_FACE_ID (w
),
1341 current_buffer
->mode_line_format
);
1343 if (WINDOW_WANTS_HEADER_LINE_P (w
))
1344 current_header_line_height
1345 = display_mode_line (w
, HEADER_LINE_FACE_ID
,
1346 current_buffer
->header_line_format
);
1348 start_display (&it
, w
, top
);
1349 move_it_to (&it
, charpos
, -1, it
.last_visible_y
-1, -1,
1350 (charpos
>= 0 ? MOVE_TO_POS
: 0) | MOVE_TO_Y
);
1352 if (charpos
>= 0 && IT_CHARPOS (it
) >= charpos
)
1354 /* We have reached CHARPOS, or passed it. How the call to
1355 move_it_to can overshoot: (i) If CHARPOS is on invisible
1356 text, move_it_to stops at the end of the invisible text,
1357 after CHARPOS. (ii) If CHARPOS is in a display vector,
1358 move_it_to stops on its last glyph. */
1359 int top_x
= it
.current_x
;
1360 int top_y
= it
.current_y
;
1361 enum it_method it_method
= it
.method
;
1362 /* Calling line_bottom_y may change it.method. */
1363 int bottom_y
= (last_height
= 0, line_bottom_y (&it
));
1364 int window_top_y
= WINDOW_HEADER_LINE_HEIGHT (w
);
1366 if (top_y
< window_top_y
)
1367 visible_p
= bottom_y
> window_top_y
;
1368 else if (top_y
< it
.last_visible_y
)
1372 if (it_method
== GET_FROM_BUFFER
)
1374 Lisp_Object window
, prop
;
1376 XSETWINDOW (window
, w
);
1377 prop
= Fget_char_property (make_number (it
.position
.charpos
),
1378 Qinvisible
, window
);
1380 /* If charpos coincides with invisible text covered with an
1381 ellipsis, use the first glyph of the ellipsis to compute
1382 the pixel positions. */
1383 if (TEXT_PROP_MEANS_INVISIBLE (prop
) == 2)
1385 struct glyph_row
*row
= it
.glyph_row
;
1386 struct glyph
*glyph
= row
->glyphs
[TEXT_AREA
];
1387 struct glyph
*end
= glyph
+ row
->used
[TEXT_AREA
];
1391 && (!BUFFERP (glyph
->object
)
1392 || glyph
->charpos
< charpos
);
1394 x
+= glyph
->pixel_width
;
1398 else if (it_method
== GET_FROM_DISPLAY_VECTOR
)
1400 /* We stopped on the last glyph of a display vector.
1401 Try and recompute. Hack alert! */
1402 if (charpos
< 2 || top
.charpos
>= charpos
)
1403 top_x
= it
.glyph_row
->x
;
1407 start_display (&it2
, w
, top
);
1408 move_it_to (&it2
, charpos
- 1, -1, -1, -1, MOVE_TO_POS
);
1409 get_next_display_element (&it2
);
1410 PRODUCE_GLYPHS (&it2
);
1411 if (ITERATOR_AT_END_OF_LINE_P (&it2
)
1412 || it2
.current_x
> it2
.last_visible_x
)
1413 top_x
= it
.glyph_row
->x
;
1416 top_x
= it2
.current_x
;
1417 top_y
= it2
.current_y
;
1423 *y
= max (top_y
+ max (0, it
.max_ascent
- it
.ascent
), window_top_y
);
1424 *rtop
= max (0, window_top_y
- top_y
);
1425 *rbot
= max (0, bottom_y
- it
.last_visible_y
);
1426 *rowh
= max (0, (min (bottom_y
, it
.last_visible_y
)
1427 - max (top_y
, window_top_y
)));
1436 if (IT_CHARPOS (it
) < ZV
&& FETCH_BYTE (IT_BYTEPOS (it
)) != '\n')
1437 move_it_by_lines (&it
, 1, 0);
1438 if (charpos
< IT_CHARPOS (it
)
1439 || (it
.what
== IT_EOB
&& charpos
== IT_CHARPOS (it
)))
1442 move_it_to (&it2
, charpos
, -1, -1, -1, MOVE_TO_POS
);
1444 *y
= it2
.current_y
+ it2
.max_ascent
- it2
.ascent
;
1445 *rtop
= max (0, -it2
.current_y
);
1446 *rbot
= max (0, ((it2
.current_y
+ it2
.max_ascent
+ it2
.max_descent
)
1447 - it
.last_visible_y
));
1448 *rowh
= max (0, (min (it2
.current_y
+ it2
.max_ascent
+ it2
.max_descent
,
1450 - max (it2
.current_y
,
1451 WINDOW_HEADER_LINE_HEIGHT (w
))));
1457 set_buffer_internal_1 (old_buffer
);
1459 current_header_line_height
= current_mode_line_height
= -1;
1461 if (visible_p
&& XFASTINT (w
->hscroll
) > 0)
1462 *x
-= XFASTINT (w
->hscroll
) * WINDOW_FRAME_COLUMN_WIDTH (w
);
1465 /* Debugging code. */
1467 fprintf (stderr
, "+pv pt=%d vs=%d --> x=%d y=%d rt=%d rb=%d rh=%d vp=%d\n",
1468 charpos
, w
->vscroll
, *x
, *y
, *rtop
, *rbot
, *rowh
, *vpos
);
1470 fprintf (stderr
, "-pv pt=%d vs=%d\n", charpos
, w
->vscroll
);
1477 /* Return the next character from STR which is MAXLEN bytes long.
1478 Return in *LEN the length of the character. This is like
1479 STRING_CHAR_AND_LENGTH but never returns an invalid character. If
1480 we find one, we return a `?', but with the length of the invalid
1484 string_char_and_length (str
, maxlen
, len
)
1485 const unsigned char *str
;
1490 c
= STRING_CHAR_AND_LENGTH (str
, maxlen
, *len
);
1491 if (!CHAR_VALID_P (c
, 1))
1492 /* We may not change the length here because other places in Emacs
1493 don't use this function, i.e. they silently accept invalid
1502 /* Given a position POS containing a valid character and byte position
1503 in STRING, return the position NCHARS ahead (NCHARS >= 0). */
1505 static struct text_pos
1506 string_pos_nchars_ahead (pos
, string
, nchars
)
1507 struct text_pos pos
;
1511 xassert (STRINGP (string
) && nchars
>= 0);
1513 if (STRING_MULTIBYTE (string
))
1515 int rest
= SBYTES (string
) - BYTEPOS (pos
);
1516 const unsigned char *p
= SDATA (string
) + BYTEPOS (pos
);
1521 string_char_and_length (p
, rest
, &len
);
1522 p
+= len
, rest
-= len
;
1523 xassert (rest
>= 0);
1525 BYTEPOS (pos
) += len
;
1529 SET_TEXT_POS (pos
, CHARPOS (pos
) + nchars
, BYTEPOS (pos
) + nchars
);
1535 /* Value is the text position, i.e. character and byte position,
1536 for character position CHARPOS in STRING. */
1538 static INLINE
struct text_pos
1539 string_pos (charpos
, string
)
1543 struct text_pos pos
;
1544 xassert (STRINGP (string
));
1545 xassert (charpos
>= 0);
1546 SET_TEXT_POS (pos
, charpos
, string_char_to_byte (string
, charpos
));
1551 /* Value is a text position, i.e. character and byte position, for
1552 character position CHARPOS in C string S. MULTIBYTE_P non-zero
1553 means recognize multibyte characters. */
1555 static struct text_pos
1556 c_string_pos (charpos
, s
, multibyte_p
)
1561 struct text_pos pos
;
1563 xassert (s
!= NULL
);
1564 xassert (charpos
>= 0);
1568 int rest
= strlen (s
), len
;
1570 SET_TEXT_POS (pos
, 0, 0);
1573 string_char_and_length (s
, rest
, &len
);
1574 s
+= len
, rest
-= len
;
1575 xassert (rest
>= 0);
1577 BYTEPOS (pos
) += len
;
1581 SET_TEXT_POS (pos
, charpos
, charpos
);
1587 /* Value is the number of characters in C string S. MULTIBYTE_P
1588 non-zero means recognize multibyte characters. */
1591 number_of_chars (s
, multibyte_p
)
1599 int rest
= strlen (s
), len
;
1600 unsigned char *p
= (unsigned char *) s
;
1602 for (nchars
= 0; rest
> 0; ++nchars
)
1604 string_char_and_length (p
, rest
, &len
);
1605 rest
-= len
, p
+= len
;
1609 nchars
= strlen (s
);
1615 /* Compute byte position NEWPOS->bytepos corresponding to
1616 NEWPOS->charpos. POS is a known position in string STRING.
1617 NEWPOS->charpos must be >= POS.charpos. */
1620 compute_string_pos (newpos
, pos
, string
)
1621 struct text_pos
*newpos
, pos
;
1624 xassert (STRINGP (string
));
1625 xassert (CHARPOS (*newpos
) >= CHARPOS (pos
));
1627 if (STRING_MULTIBYTE (string
))
1628 *newpos
= string_pos_nchars_ahead (pos
, string
,
1629 CHARPOS (*newpos
) - CHARPOS (pos
));
1631 BYTEPOS (*newpos
) = CHARPOS (*newpos
);
1635 Return an estimation of the pixel height of mode or top lines on
1636 frame F. FACE_ID specifies what line's height to estimate. */
1639 estimate_mode_line_height (f
, face_id
)
1641 enum face_id face_id
;
1643 #ifdef HAVE_WINDOW_SYSTEM
1644 if (FRAME_WINDOW_P (f
))
1646 int height
= FONT_HEIGHT (FRAME_FONT (f
));
1648 /* This function is called so early when Emacs starts that the face
1649 cache and mode line face are not yet initialized. */
1650 if (FRAME_FACE_CACHE (f
))
1652 struct face
*face
= FACE_FROM_ID (f
, face_id
);
1656 height
= FONT_HEIGHT (face
->font
);
1657 if (face
->box_line_width
> 0)
1658 height
+= 2 * face
->box_line_width
;
1669 /* Given a pixel position (PIX_X, PIX_Y) on frame F, return glyph
1670 co-ordinates in (*X, *Y). Set *BOUNDS to the rectangle that the
1671 glyph at X, Y occupies, if BOUNDS != 0. If NOCLIP is non-zero, do
1672 not force the value into range. */
1675 pixel_to_glyph_coords (f
, pix_x
, pix_y
, x
, y
, bounds
, noclip
)
1677 register int pix_x
, pix_y
;
1679 NativeRectangle
*bounds
;
1683 #ifdef HAVE_WINDOW_SYSTEM
1684 if (FRAME_WINDOW_P (f
))
1686 /* Arrange for the division in FRAME_PIXEL_X_TO_COL etc. to round down
1687 even for negative values. */
1689 pix_x
-= FRAME_COLUMN_WIDTH (f
) - 1;
1691 pix_y
-= FRAME_LINE_HEIGHT (f
) - 1;
1693 pix_x
= FRAME_PIXEL_X_TO_COL (f
, pix_x
);
1694 pix_y
= FRAME_PIXEL_Y_TO_LINE (f
, pix_y
);
1697 STORE_NATIVE_RECT (*bounds
,
1698 FRAME_COL_TO_PIXEL_X (f
, pix_x
),
1699 FRAME_LINE_TO_PIXEL_Y (f
, pix_y
),
1700 FRAME_COLUMN_WIDTH (f
) - 1,
1701 FRAME_LINE_HEIGHT (f
) - 1);
1707 else if (pix_x
> FRAME_TOTAL_COLS (f
))
1708 pix_x
= FRAME_TOTAL_COLS (f
);
1712 else if (pix_y
> FRAME_LINES (f
))
1713 pix_y
= FRAME_LINES (f
);
1723 /* Given HPOS/VPOS in the current matrix of W, return corresponding
1724 frame-relative pixel positions in *FRAME_X and *FRAME_Y. If we
1725 can't tell the positions because W's display is not up to date,
1729 glyph_to_pixel_coords (w
, hpos
, vpos
, frame_x
, frame_y
)
1732 int *frame_x
, *frame_y
;
1734 #ifdef HAVE_WINDOW_SYSTEM
1735 if (FRAME_WINDOW_P (XFRAME (WINDOW_FRAME (w
))))
1739 xassert (hpos
>= 0 && hpos
< w
->current_matrix
->matrix_w
);
1740 xassert (vpos
>= 0 && vpos
< w
->current_matrix
->matrix_h
);
1742 if (display_completed
)
1744 struct glyph_row
*row
= MATRIX_ROW (w
->current_matrix
, vpos
);
1745 struct glyph
*glyph
= row
->glyphs
[TEXT_AREA
];
1746 struct glyph
*end
= glyph
+ min (hpos
, row
->used
[TEXT_AREA
]);
1752 hpos
+= glyph
->pixel_width
;
1756 /* If first glyph is partially visible, its first visible position is still 0. */
1768 *frame_x
= WINDOW_TO_FRAME_PIXEL_X (w
, hpos
);
1769 *frame_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, vpos
);
1780 #ifdef HAVE_WINDOW_SYSTEM
1782 /* Find the glyph under window-relative coordinates X/Y in window W.
1783 Consider only glyphs from buffer text, i.e. no glyphs from overlay
1784 strings. Return in *HPOS and *VPOS the row and column number of
1785 the glyph found. Return in *AREA the glyph area containing X.
1786 Value is a pointer to the glyph found or null if X/Y is not on
1787 text, or we can't tell because W's current matrix is not up to
1792 x_y_to_hpos_vpos (w
, x
, y
, hpos
, vpos
, dx
, dy
, area
)
1795 int *hpos
, *vpos
, *dx
, *dy
, *area
;
1797 struct glyph
*glyph
, *end
;
1798 struct glyph_row
*row
= NULL
;
1801 /* Find row containing Y. Give up if some row is not enabled. */
1802 for (i
= 0; i
< w
->current_matrix
->nrows
; ++i
)
1804 row
= MATRIX_ROW (w
->current_matrix
, i
);
1805 if (!row
->enabled_p
)
1807 if (y
>= row
->y
&& y
< MATRIX_ROW_BOTTOM_Y (row
))
1814 /* Give up if Y is not in the window. */
1815 if (i
== w
->current_matrix
->nrows
)
1818 /* Get the glyph area containing X. */
1819 if (w
->pseudo_window_p
)
1826 if (x
< window_box_left_offset (w
, TEXT_AREA
))
1828 *area
= LEFT_MARGIN_AREA
;
1829 x0
= window_box_left_offset (w
, LEFT_MARGIN_AREA
);
1831 else if (x
< window_box_right_offset (w
, TEXT_AREA
))
1834 x0
= window_box_left_offset (w
, TEXT_AREA
) + min (row
->x
, 0);
1838 *area
= RIGHT_MARGIN_AREA
;
1839 x0
= window_box_left_offset (w
, RIGHT_MARGIN_AREA
);
1843 /* Find glyph containing X. */
1844 glyph
= row
->glyphs
[*area
];
1845 end
= glyph
+ row
->used
[*area
];
1847 while (glyph
< end
&& x
>= glyph
->pixel_width
)
1849 x
-= glyph
->pixel_width
;
1859 *dy
= y
- (row
->y
+ row
->ascent
- glyph
->ascent
);
1862 *hpos
= glyph
- row
->glyphs
[*area
];
1868 Convert frame-relative x/y to coordinates relative to window W.
1869 Takes pseudo-windows into account. */
1872 frame_to_window_pixel_xy (w
, x
, y
)
1876 if (w
->pseudo_window_p
)
1878 /* A pseudo-window is always full-width, and starts at the
1879 left edge of the frame, plus a frame border. */
1880 struct frame
*f
= XFRAME (w
->frame
);
1881 *x
-= FRAME_INTERNAL_BORDER_WIDTH (f
);
1882 *y
= FRAME_TO_WINDOW_PIXEL_Y (w
, *y
);
1886 *x
-= WINDOW_LEFT_EDGE_X (w
);
1887 *y
= FRAME_TO_WINDOW_PIXEL_Y (w
, *y
);
1892 Return in RECTS[] at most N clipping rectangles for glyph string S.
1893 Return the number of stored rectangles. */
1896 get_glyph_string_clip_rects (s
, rects
, n
)
1897 struct glyph_string
*s
;
1898 NativeRectangle
*rects
;
1906 if (s
->row
->full_width_p
)
1908 /* Draw full-width. X coordinates are relative to S->w->left_col. */
1909 r
.x
= WINDOW_LEFT_EDGE_X (s
->w
);
1910 r
.width
= WINDOW_TOTAL_WIDTH (s
->w
);
1912 /* Unless displaying a mode or menu bar line, which are always
1913 fully visible, clip to the visible part of the row. */
1914 if (s
->w
->pseudo_window_p
)
1915 r
.height
= s
->row
->visible_height
;
1917 r
.height
= s
->height
;
1921 /* This is a text line that may be partially visible. */
1922 r
.x
= window_box_left (s
->w
, s
->area
);
1923 r
.width
= window_box_width (s
->w
, s
->area
);
1924 r
.height
= s
->row
->visible_height
;
1928 if (r
.x
< s
->clip_head
->x
)
1930 if (r
.width
>= s
->clip_head
->x
- r
.x
)
1931 r
.width
-= s
->clip_head
->x
- r
.x
;
1934 r
.x
= s
->clip_head
->x
;
1937 if (r
.x
+ r
.width
> s
->clip_tail
->x
+ s
->clip_tail
->background_width
)
1939 if (s
->clip_tail
->x
+ s
->clip_tail
->background_width
>= r
.x
)
1940 r
.width
= s
->clip_tail
->x
+ s
->clip_tail
->background_width
- r
.x
;
1945 /* If S draws overlapping rows, it's sufficient to use the top and
1946 bottom of the window for clipping because this glyph string
1947 intentionally draws over other lines. */
1948 if (s
->for_overlaps
)
1950 r
.y
= WINDOW_HEADER_LINE_HEIGHT (s
->w
);
1951 r
.height
= window_text_bottom_y (s
->w
) - r
.y
;
1953 /* Alas, the above simple strategy does not work for the
1954 environments with anti-aliased text: if the same text is
1955 drawn onto the same place multiple times, it gets thicker.
1956 If the overlap we are processing is for the erased cursor, we
1957 take the intersection with the rectagle of the cursor. */
1958 if (s
->for_overlaps
& OVERLAPS_ERASED_CURSOR
)
1960 XRectangle rc
, r_save
= r
;
1962 rc
.x
= WINDOW_TEXT_TO_FRAME_PIXEL_X (s
->w
, s
->w
->phys_cursor
.x
);
1963 rc
.y
= s
->w
->phys_cursor
.y
;
1964 rc
.width
= s
->w
->phys_cursor_width
;
1965 rc
.height
= s
->w
->phys_cursor_height
;
1967 x_intersect_rectangles (&r_save
, &rc
, &r
);
1972 /* Don't use S->y for clipping because it doesn't take partially
1973 visible lines into account. For example, it can be negative for
1974 partially visible lines at the top of a window. */
1975 if (!s
->row
->full_width_p
1976 && MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P (s
->w
, s
->row
))
1977 r
.y
= WINDOW_HEADER_LINE_HEIGHT (s
->w
);
1979 r
.y
= max (0, s
->row
->y
);
1981 /* If drawing a tool-bar window, draw it over the internal border
1982 at the top of the window. */
1983 if (WINDOWP (s
->f
->tool_bar_window
)
1984 && s
->w
== XWINDOW (s
->f
->tool_bar_window
))
1985 r
.y
-= FRAME_INTERNAL_BORDER_WIDTH (s
->f
);
1988 r
.y
= WINDOW_TO_FRAME_PIXEL_Y (s
->w
, r
.y
);
1990 /* If drawing the cursor, don't let glyph draw outside its
1991 advertised boundaries. Cleartype does this under some circumstances. */
1992 if (s
->hl
== DRAW_CURSOR
)
1994 struct glyph
*glyph
= s
->first_glyph
;
1999 r
.width
-= s
->x
- r
.x
;
2002 r
.width
= min (r
.width
, glyph
->pixel_width
);
2004 /* If r.y is below window bottom, ensure that we still see a cursor. */
2005 height
= min (glyph
->ascent
+ glyph
->descent
,
2006 min (FRAME_LINE_HEIGHT (s
->f
), s
->row
->visible_height
));
2007 max_y
= window_text_bottom_y (s
->w
) - height
;
2008 max_y
= WINDOW_TO_FRAME_PIXEL_Y (s
->w
, max_y
);
2009 if (s
->ybase
- glyph
->ascent
> max_y
)
2016 /* Don't draw cursor glyph taller than our actual glyph. */
2017 height
= max (FRAME_LINE_HEIGHT (s
->f
), glyph
->ascent
+ glyph
->descent
);
2018 if (height
< r
.height
)
2020 max_y
= r
.y
+ r
.height
;
2021 r
.y
= min (max_y
, max (r
.y
, s
->ybase
+ glyph
->descent
- height
));
2022 r
.height
= min (max_y
- r
.y
, height
);
2029 XRectangle r_save
= r
;
2031 if (! x_intersect_rectangles (&r_save
, s
->row
->clip
, &r
))
2035 if ((s
->for_overlaps
& OVERLAPS_BOTH
) == 0
2036 || ((s
->for_overlaps
& OVERLAPS_BOTH
) == OVERLAPS_BOTH
&& n
== 1))
2038 #ifdef CONVERT_FROM_XRECT
2039 CONVERT_FROM_XRECT (r
, *rects
);
2047 /* If we are processing overlapping and allowed to return
2048 multiple clipping rectangles, we exclude the row of the glyph
2049 string from the clipping rectangle. This is to avoid drawing
2050 the same text on the environment with anti-aliasing. */
2051 #ifdef CONVERT_FROM_XRECT
2054 XRectangle
*rs
= rects
;
2056 int i
= 0, row_y
= WINDOW_TO_FRAME_PIXEL_Y (s
->w
, s
->row
->y
);
2058 if (s
->for_overlaps
& OVERLAPS_PRED
)
2061 if (r
.y
+ r
.height
> row_y
)
2064 rs
[i
].height
= row_y
- r
.y
;
2070 if (s
->for_overlaps
& OVERLAPS_SUCC
)
2073 if (r
.y
< row_y
+ s
->row
->visible_height
)
2075 if (r
.y
+ r
.height
> row_y
+ s
->row
->visible_height
)
2077 rs
[i
].y
= row_y
+ s
->row
->visible_height
;
2078 rs
[i
].height
= r
.y
+ r
.height
- rs
[i
].y
;
2087 #ifdef CONVERT_FROM_XRECT
2088 for (i
= 0; i
< n
; i
++)
2089 CONVERT_FROM_XRECT (rs
[i
], rects
[i
]);
2096 Return in *NR the clipping rectangle for glyph string S. */
2099 get_glyph_string_clip_rect (s
, nr
)
2100 struct glyph_string
*s
;
2101 NativeRectangle
*nr
;
2103 get_glyph_string_clip_rects (s
, nr
, 1);
2108 Return the position and height of the phys cursor in window W.
2109 Set w->phys_cursor_width to width of phys cursor.
2113 get_phys_cursor_geometry (w
, row
, glyph
, xp
, yp
, heightp
)
2115 struct glyph_row
*row
;
2116 struct glyph
*glyph
;
2117 int *xp
, *yp
, *heightp
;
2119 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
2120 int x
, y
, wd
, h
, h0
, y0
;
2122 /* Compute the width of the rectangle to draw. If on a stretch
2123 glyph, and `x-stretch-block-cursor' is nil, don't draw a
2124 rectangle as wide as the glyph, but use a canonical character
2126 wd
= glyph
->pixel_width
- 1;
2127 #if defined(HAVE_NTGUI) || defined(HAVE_NS)
2131 x
= w
->phys_cursor
.x
;
2138 if (glyph
->type
== STRETCH_GLYPH
2139 && !x_stretch_cursor_p
)
2140 wd
= min (FRAME_COLUMN_WIDTH (f
), wd
);
2141 w
->phys_cursor_width
= wd
;
2143 y
= w
->phys_cursor
.y
+ row
->ascent
- glyph
->ascent
;
2145 /* If y is below window bottom, ensure that we still see a cursor. */
2146 h0
= min (FRAME_LINE_HEIGHT (f
), row
->visible_height
);
2148 h
= max (h0
, glyph
->ascent
+ glyph
->descent
);
2149 h0
= min (h0
, glyph
->ascent
+ glyph
->descent
);
2151 y0
= WINDOW_HEADER_LINE_HEIGHT (w
);
2154 h
= max (h
- (y0
- y
) + 1, h0
);
2159 y0
= window_text_bottom_y (w
) - h0
;
2167 *xp
= WINDOW_TEXT_TO_FRAME_PIXEL_X (w
, x
);
2168 *yp
= WINDOW_TO_FRAME_PIXEL_Y (w
, y
);
2173 * Remember which glyph the mouse is over.
2177 remember_mouse_glyph (f
, gx
, gy
, rect
)
2180 NativeRectangle
*rect
;
2184 struct glyph_row
*r
, *gr
, *end_row
;
2185 enum window_part part
;
2186 enum glyph_row_area area
;
2187 int x
, y
, width
, height
;
2189 /* Try to determine frame pixel position and size of the glyph under
2190 frame pixel coordinates X/Y on frame F. */
2192 if (!f
->glyphs_initialized_p
2193 || (window
= window_from_coordinates (f
, gx
, gy
, &part
, &x
, &y
, 0),
2196 width
= FRAME_SMALLEST_CHAR_WIDTH (f
);
2197 height
= FRAME_SMALLEST_FONT_HEIGHT (f
);
2201 w
= XWINDOW (window
);
2202 width
= WINDOW_FRAME_COLUMN_WIDTH (w
);
2203 height
= WINDOW_FRAME_LINE_HEIGHT (w
);
2205 r
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
2206 end_row
= MATRIX_BOTTOM_TEXT_ROW (w
->current_matrix
, w
);
2208 if (w
->pseudo_window_p
)
2211 part
= ON_MODE_LINE
; /* Don't adjust margin. */
2217 case ON_LEFT_MARGIN
:
2218 area
= LEFT_MARGIN_AREA
;
2221 case ON_RIGHT_MARGIN
:
2222 area
= RIGHT_MARGIN_AREA
;
2225 case ON_HEADER_LINE
:
2227 gr
= (part
== ON_HEADER_LINE
2228 ? MATRIX_HEADER_LINE_ROW (w
->current_matrix
)
2229 : MATRIX_MODE_LINE_ROW (w
->current_matrix
));
2232 goto text_glyph_row_found
;
2239 for (; r
<= end_row
&& r
->enabled_p
; ++r
)
2240 if (r
->y
+ r
->height
> y
)
2246 text_glyph_row_found
:
2249 struct glyph
*g
= gr
->glyphs
[area
];
2250 struct glyph
*end
= g
+ gr
->used
[area
];
2252 height
= gr
->height
;
2253 for (gx
= gr
->x
; g
< end
; gx
+= g
->pixel_width
, ++g
)
2254 if (gx
+ g
->pixel_width
> x
)
2259 if (g
->type
== IMAGE_GLYPH
)
2261 /* Don't remember when mouse is over image, as
2262 image may have hot-spots. */
2263 STORE_NATIVE_RECT (*rect
, 0, 0, 0, 0);
2266 width
= g
->pixel_width
;
2270 /* Use nominal char spacing at end of line. */
2272 gx
+= (x
/ width
) * width
;
2275 if (part
!= ON_MODE_LINE
&& part
!= ON_HEADER_LINE
)
2276 gx
+= window_box_left_offset (w
, area
);
2280 /* Use nominal line height at end of window. */
2281 gx
= (x
/ width
) * width
;
2283 gy
+= (y
/ height
) * height
;
2287 case ON_LEFT_FRINGE
:
2288 gx
= (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
2289 ? WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w
)
2290 : window_box_right_offset (w
, LEFT_MARGIN_AREA
));
2291 width
= WINDOW_LEFT_FRINGE_WIDTH (w
);
2294 case ON_RIGHT_FRINGE
:
2295 gx
= (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
2296 ? window_box_right_offset (w
, RIGHT_MARGIN_AREA
)
2297 : window_box_right_offset (w
, TEXT_AREA
));
2298 width
= WINDOW_RIGHT_FRINGE_WIDTH (w
);
2302 gx
= (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w
)
2304 : (window_box_right_offset (w
, RIGHT_MARGIN_AREA
)
2305 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
2306 ? WINDOW_RIGHT_FRINGE_WIDTH (w
)
2308 width
= WINDOW_SCROLL_BAR_AREA_WIDTH (w
);
2312 for (; r
<= end_row
&& r
->enabled_p
; ++r
)
2313 if (r
->y
+ r
->height
> y
)
2320 height
= gr
->height
;
2323 /* Use nominal line height at end of window. */
2325 gy
+= (y
/ height
) * height
;
2332 /* If there is no glyph under the mouse, then we divide the screen
2333 into a grid of the smallest glyph in the frame, and use that
2336 /* Arrange for the division in FRAME_PIXEL_X_TO_COL etc. to
2337 round down even for negative values. */
2343 gx
= (gx
/ width
) * width
;
2344 gy
= (gy
/ height
) * height
;
2349 gx
+= WINDOW_LEFT_EDGE_X (w
);
2350 gy
+= WINDOW_TOP_EDGE_Y (w
);
2353 STORE_NATIVE_RECT (*rect
, gx
, gy
, width
, height
);
2355 /* Visible feedback for debugging. */
2358 XDrawRectangle (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2359 f
->output_data
.x
->normal_gc
,
2360 gx
, gy
, width
, height
);
2366 #endif /* HAVE_WINDOW_SYSTEM */
2369 /***********************************************************************
2370 Lisp form evaluation
2371 ***********************************************************************/
2373 /* Error handler for safe_eval and safe_call. */
2376 safe_eval_handler (arg
)
2379 add_to_log ("Error during redisplay: %s", arg
, Qnil
);
2384 /* Evaluate SEXPR and return the result, or nil if something went
2385 wrong. Prevent redisplay during the evaluation. */
2387 /* Call function ARGS[0] with arguments ARGS[1] to ARGS[NARGS - 1].
2388 Return the result, or nil if something went wrong. Prevent
2389 redisplay during the evaluation. */
2392 safe_call (nargs
, args
)
2398 if (inhibit_eval_during_redisplay
)
2402 int count
= SPECPDL_INDEX ();
2403 struct gcpro gcpro1
;
2406 gcpro1
.nvars
= nargs
;
2407 specbind (Qinhibit_redisplay
, Qt
);
2408 /* Use Qt to ensure debugger does not run,
2409 so there is no possibility of wanting to redisplay. */
2410 val
= internal_condition_case_2 (Ffuncall
, nargs
, args
, Qt
,
2413 val
= unbind_to (count
, val
);
2420 /* Call function FN with one argument ARG.
2421 Return the result, or nil if something went wrong. */
2424 safe_call1 (fn
, arg
)
2425 Lisp_Object fn
, arg
;
2427 Lisp_Object args
[2];
2430 return safe_call (2, args
);
2433 static Lisp_Object Qeval
;
2436 safe_eval (Lisp_Object sexpr
)
2438 return safe_call1 (Qeval
, sexpr
);
2441 /* Call function FN with one argument ARG.
2442 Return the result, or nil if something went wrong. */
2445 safe_call2 (Lisp_Object fn
, Lisp_Object arg1
, Lisp_Object arg2
)
2447 Lisp_Object args
[3];
2451 return safe_call (3, args
);
2456 /***********************************************************************
2458 ***********************************************************************/
2462 /* Define CHECK_IT to perform sanity checks on iterators.
2463 This is for debugging. It is too slow to do unconditionally. */
2469 if (it
->method
== GET_FROM_STRING
)
2471 xassert (STRINGP (it
->string
));
2472 xassert (IT_STRING_CHARPOS (*it
) >= 0);
2476 xassert (IT_STRING_CHARPOS (*it
) < 0);
2477 if (it
->method
== GET_FROM_BUFFER
)
2479 /* Check that character and byte positions agree. */
2480 xassert (IT_CHARPOS (*it
) == BYTE_TO_CHAR (IT_BYTEPOS (*it
)));
2485 xassert (it
->current
.dpvec_index
>= 0);
2487 xassert (it
->current
.dpvec_index
< 0);
2490 #define CHECK_IT(IT) check_it ((IT))
2494 #define CHECK_IT(IT) (void) 0
2501 /* Check that the window end of window W is what we expect it
2502 to be---the last row in the current matrix displaying text. */
2505 check_window_end (w
)
2508 if (!MINI_WINDOW_P (w
)
2509 && !NILP (w
->window_end_valid
))
2511 struct glyph_row
*row
;
2512 xassert ((row
= MATRIX_ROW (w
->current_matrix
,
2513 XFASTINT (w
->window_end_vpos
)),
2515 || MATRIX_ROW_DISPLAYS_TEXT_P (row
)
2516 || MATRIX_ROW_VPOS (row
, w
->current_matrix
) == 0));
2520 #define CHECK_WINDOW_END(W) check_window_end ((W))
2522 #else /* not GLYPH_DEBUG */
2524 #define CHECK_WINDOW_END(W) (void) 0
2526 #endif /* not GLYPH_DEBUG */
2530 /***********************************************************************
2531 Iterator initialization
2532 ***********************************************************************/
2534 /* Initialize IT for displaying current_buffer in window W, starting
2535 at character position CHARPOS. CHARPOS < 0 means that no buffer
2536 position is specified which is useful when the iterator is assigned
2537 a position later. BYTEPOS is the byte position corresponding to
2538 CHARPOS. BYTEPOS < 0 means compute it from CHARPOS.
2540 If ROW is not null, calls to produce_glyphs with IT as parameter
2541 will produce glyphs in that row.
2543 BASE_FACE_ID is the id of a base face to use. It must be one of
2544 DEFAULT_FACE_ID for normal text, MODE_LINE_FACE_ID,
2545 MODE_LINE_INACTIVE_FACE_ID, or HEADER_LINE_FACE_ID for displaying
2546 mode lines, or TOOL_BAR_FACE_ID for displaying the tool-bar.
2548 If ROW is null and BASE_FACE_ID is equal to MODE_LINE_FACE_ID,
2549 MODE_LINE_INACTIVE_FACE_ID, or HEADER_LINE_FACE_ID, the iterator
2550 will be initialized to use the corresponding mode line glyph row of
2551 the desired matrix of W. */
2554 init_iterator (it
, w
, charpos
, bytepos
, row
, base_face_id
)
2557 int charpos
, bytepos
;
2558 struct glyph_row
*row
;
2559 enum face_id base_face_id
;
2561 int highlight_region_p
;
2562 enum face_id remapped_base_face_id
= base_face_id
;
2564 /* Some precondition checks. */
2565 xassert (w
!= NULL
&& it
!= NULL
);
2566 xassert (charpos
< 0 || (charpos
>= BUF_BEG (current_buffer
)
2569 /* If face attributes have been changed since the last redisplay,
2570 free realized faces now because they depend on face definitions
2571 that might have changed. Don't free faces while there might be
2572 desired matrices pending which reference these faces. */
2573 if (face_change_count
&& !inhibit_free_realized_faces
)
2575 face_change_count
= 0;
2576 free_all_realized_faces (Qnil
);
2579 /* Perhaps remap BASE_FACE_ID to a user-specified alternative. */
2580 if (! NILP (Vface_remapping_alist
))
2581 remapped_base_face_id
= lookup_basic_face (XFRAME (w
->frame
), base_face_id
);
2583 /* Use one of the mode line rows of W's desired matrix if
2587 if (base_face_id
== MODE_LINE_FACE_ID
2588 || base_face_id
== MODE_LINE_INACTIVE_FACE_ID
)
2589 row
= MATRIX_MODE_LINE_ROW (w
->desired_matrix
);
2590 else if (base_face_id
== HEADER_LINE_FACE_ID
)
2591 row
= MATRIX_HEADER_LINE_ROW (w
->desired_matrix
);
2595 bzero (it
, sizeof *it
);
2596 it
->current
.overlay_string_index
= -1;
2597 it
->current
.dpvec_index
= -1;
2598 it
->base_face_id
= remapped_base_face_id
;
2600 IT_STRING_CHARPOS (*it
) = IT_STRING_BYTEPOS (*it
) = -1;
2602 /* The window in which we iterate over current_buffer: */
2603 XSETWINDOW (it
->window
, w
);
2605 it
->f
= XFRAME (w
->frame
);
2609 /* Extra space between lines (on window systems only). */
2610 if (base_face_id
== DEFAULT_FACE_ID
2611 && FRAME_WINDOW_P (it
->f
))
2613 if (NATNUMP (current_buffer
->extra_line_spacing
))
2614 it
->extra_line_spacing
= XFASTINT (current_buffer
->extra_line_spacing
);
2615 else if (FLOATP (current_buffer
->extra_line_spacing
))
2616 it
->extra_line_spacing
= (XFLOAT_DATA (current_buffer
->extra_line_spacing
)
2617 * FRAME_LINE_HEIGHT (it
->f
));
2618 else if (it
->f
->extra_line_spacing
> 0)
2619 it
->extra_line_spacing
= it
->f
->extra_line_spacing
;
2620 it
->max_extra_line_spacing
= 0;
2623 /* If realized faces have been removed, e.g. because of face
2624 attribute changes of named faces, recompute them. When running
2625 in batch mode, the face cache of the initial frame is null. If
2626 we happen to get called, make a dummy face cache. */
2627 if (FRAME_FACE_CACHE (it
->f
) == NULL
)
2628 init_frame_faces (it
->f
);
2629 if (FRAME_FACE_CACHE (it
->f
)->used
== 0)
2630 recompute_basic_faces (it
->f
);
2632 /* Current value of the `slice', `space-width', and 'height' properties. */
2633 it
->slice
.x
= it
->slice
.y
= it
->slice
.width
= it
->slice
.height
= Qnil
;
2634 it
->space_width
= Qnil
;
2635 it
->font_height
= Qnil
;
2636 it
->override_ascent
= -1;
2638 /* Are control characters displayed as `^C'? */
2639 it
->ctl_arrow_p
= !NILP (current_buffer
->ctl_arrow
);
2641 /* -1 means everything between a CR and the following line end
2642 is invisible. >0 means lines indented more than this value are
2644 it
->selective
= (INTEGERP (current_buffer
->selective_display
)
2645 ? XFASTINT (current_buffer
->selective_display
)
2646 : (!NILP (current_buffer
->selective_display
)
2648 it
->selective_display_ellipsis_p
2649 = !NILP (current_buffer
->selective_display_ellipses
);
2651 /* Display table to use. */
2652 it
->dp
= window_display_table (w
);
2654 /* Are multibyte characters enabled in current_buffer? */
2655 it
->multibyte_p
= !NILP (current_buffer
->enable_multibyte_characters
);
2657 /* Non-zero if we should highlight the region. */
2659 = (!NILP (Vtransient_mark_mode
)
2660 && !NILP (current_buffer
->mark_active
)
2661 && XMARKER (current_buffer
->mark
)->buffer
!= 0);
2663 /* Set IT->region_beg_charpos and IT->region_end_charpos to the
2664 start and end of a visible region in window IT->w. Set both to
2665 -1 to indicate no region. */
2666 if (highlight_region_p
2667 /* Maybe highlight only in selected window. */
2668 && (/* Either show region everywhere. */
2669 highlight_nonselected_windows
2670 /* Or show region in the selected window. */
2671 || w
== XWINDOW (selected_window
)
2672 /* Or show the region if we are in the mini-buffer and W is
2673 the window the mini-buffer refers to. */
2674 || (MINI_WINDOW_P (XWINDOW (selected_window
))
2675 && WINDOWP (minibuf_selected_window
)
2676 && w
== XWINDOW (minibuf_selected_window
))))
2678 int charpos
= marker_position (current_buffer
->mark
);
2679 it
->region_beg_charpos
= min (PT
, charpos
);
2680 it
->region_end_charpos
= max (PT
, charpos
);
2683 it
->region_beg_charpos
= it
->region_end_charpos
= -1;
2685 /* Get the position at which the redisplay_end_trigger hook should
2686 be run, if it is to be run at all. */
2687 if (MARKERP (w
->redisplay_end_trigger
)
2688 && XMARKER (w
->redisplay_end_trigger
)->buffer
!= 0)
2689 it
->redisplay_end_trigger_charpos
2690 = marker_position (w
->redisplay_end_trigger
);
2691 else if (INTEGERP (w
->redisplay_end_trigger
))
2692 it
->redisplay_end_trigger_charpos
= XINT (w
->redisplay_end_trigger
);
2694 /* Correct bogus values of tab_width. */
2695 it
->tab_width
= XINT (current_buffer
->tab_width
);
2696 if (it
->tab_width
<= 0 || it
->tab_width
> 1000)
2699 /* Are lines in the display truncated? */
2700 if (base_face_id
!= DEFAULT_FACE_ID
2701 || XINT (it
->w
->hscroll
)
2702 || (! WINDOW_FULL_WIDTH_P (it
->w
)
2703 && ((!NILP (Vtruncate_partial_width_windows
)
2704 && !INTEGERP (Vtruncate_partial_width_windows
))
2705 || (INTEGERP (Vtruncate_partial_width_windows
)
2706 && (WINDOW_TOTAL_COLS (it
->w
)
2707 < XINT (Vtruncate_partial_width_windows
))))))
2708 it
->line_wrap
= TRUNCATE
;
2709 else if (NILP (current_buffer
->truncate_lines
))
2710 it
->line_wrap
= NILP (current_buffer
->word_wrap
)
2711 ? WINDOW_WRAP
: WORD_WRAP
;
2713 it
->line_wrap
= TRUNCATE
;
2715 /* Get dimensions of truncation and continuation glyphs. These are
2716 displayed as fringe bitmaps under X, so we don't need them for such
2718 if (!FRAME_WINDOW_P (it
->f
))
2720 if (it
->line_wrap
== TRUNCATE
)
2722 /* We will need the truncation glyph. */
2723 xassert (it
->glyph_row
== NULL
);
2724 produce_special_glyphs (it
, IT_TRUNCATION
);
2725 it
->truncation_pixel_width
= it
->pixel_width
;
2729 /* We will need the continuation glyph. */
2730 xassert (it
->glyph_row
== NULL
);
2731 produce_special_glyphs (it
, IT_CONTINUATION
);
2732 it
->continuation_pixel_width
= it
->pixel_width
;
2735 /* Reset these values to zero because the produce_special_glyphs
2736 above has changed them. */
2737 it
->pixel_width
= it
->ascent
= it
->descent
= 0;
2738 it
->phys_ascent
= it
->phys_descent
= 0;
2741 /* Set this after getting the dimensions of truncation and
2742 continuation glyphs, so that we don't produce glyphs when calling
2743 produce_special_glyphs, above. */
2744 it
->glyph_row
= row
;
2745 it
->area
= TEXT_AREA
;
2747 /* Get the dimensions of the display area. The display area
2748 consists of the visible window area plus a horizontally scrolled
2749 part to the left of the window. All x-values are relative to the
2750 start of this total display area. */
2751 if (base_face_id
!= DEFAULT_FACE_ID
)
2753 /* Mode lines, menu bar in terminal frames. */
2754 it
->first_visible_x
= 0;
2755 it
->last_visible_x
= WINDOW_TOTAL_WIDTH (w
);
2760 = XFASTINT (it
->w
->hscroll
) * FRAME_COLUMN_WIDTH (it
->f
);
2761 it
->last_visible_x
= (it
->first_visible_x
2762 + window_box_width (w
, TEXT_AREA
));
2764 /* If we truncate lines, leave room for the truncator glyph(s) at
2765 the right margin. Otherwise, leave room for the continuation
2766 glyph(s). Truncation and continuation glyphs are not inserted
2767 for window-based redisplay. */
2768 if (!FRAME_WINDOW_P (it
->f
))
2770 if (it
->line_wrap
== TRUNCATE
)
2771 it
->last_visible_x
-= it
->truncation_pixel_width
;
2773 it
->last_visible_x
-= it
->continuation_pixel_width
;
2776 it
->header_line_p
= WINDOW_WANTS_HEADER_LINE_P (w
);
2777 it
->current_y
= WINDOW_HEADER_LINE_HEIGHT (w
) + w
->vscroll
;
2780 /* Leave room for a border glyph. */
2781 if (!FRAME_WINDOW_P (it
->f
)
2782 && !WINDOW_RIGHTMOST_P (it
->w
))
2783 it
->last_visible_x
-= 1;
2785 it
->last_visible_y
= window_text_bottom_y (w
);
2787 /* For mode lines and alike, arrange for the first glyph having a
2788 left box line if the face specifies a box. */
2789 if (base_face_id
!= DEFAULT_FACE_ID
)
2793 it
->face_id
= remapped_base_face_id
;
2795 /* If we have a boxed mode line, make the first character appear
2796 with a left box line. */
2797 face
= FACE_FROM_ID (it
->f
, remapped_base_face_id
);
2798 if (face
->box
!= FACE_NO_BOX
)
2799 it
->start_of_box_run_p
= 1;
2802 /* If a buffer position was specified, set the iterator there,
2803 getting overlays and face properties from that position. */
2804 if (charpos
>= BUF_BEG (current_buffer
))
2806 it
->end_charpos
= ZV
;
2808 IT_CHARPOS (*it
) = charpos
;
2810 /* Compute byte position if not specified. */
2811 if (bytepos
< charpos
)
2812 IT_BYTEPOS (*it
) = CHAR_TO_BYTE (charpos
);
2814 IT_BYTEPOS (*it
) = bytepos
;
2816 it
->start
= it
->current
;
2818 /* Compute faces etc. */
2819 reseat (it
, it
->current
.pos
, 1);
2826 /* Initialize IT for the display of window W with window start POS. */
2829 start_display (it
, w
, pos
)
2832 struct text_pos pos
;
2834 struct glyph_row
*row
;
2835 int first_vpos
= WINDOW_WANTS_HEADER_LINE_P (w
) ? 1 : 0;
2837 row
= w
->desired_matrix
->rows
+ first_vpos
;
2838 init_iterator (it
, w
, CHARPOS (pos
), BYTEPOS (pos
), row
, DEFAULT_FACE_ID
);
2839 it
->first_vpos
= first_vpos
;
2841 /* Don't reseat to previous visible line start if current start
2842 position is in a string or image. */
2843 if (it
->method
== GET_FROM_BUFFER
&& it
->line_wrap
!= TRUNCATE
)
2845 int start_at_line_beg_p
;
2846 int first_y
= it
->current_y
;
2848 /* If window start is not at a line start, skip forward to POS to
2849 get the correct continuation lines width. */
2850 start_at_line_beg_p
= (CHARPOS (pos
) == BEGV
2851 || FETCH_BYTE (BYTEPOS (pos
) - 1) == '\n');
2852 if (!start_at_line_beg_p
)
2856 reseat_at_previous_visible_line_start (it
);
2857 move_it_to (it
, CHARPOS (pos
), -1, -1, -1, MOVE_TO_POS
);
2859 new_x
= it
->current_x
+ it
->pixel_width
;
2861 /* If lines are continued, this line may end in the middle
2862 of a multi-glyph character (e.g. a control character
2863 displayed as \003, or in the middle of an overlay
2864 string). In this case move_it_to above will not have
2865 taken us to the start of the continuation line but to the
2866 end of the continued line. */
2867 if (it
->current_x
> 0
2868 && it
->line_wrap
!= TRUNCATE
/* Lines are continued. */
2869 && (/* And glyph doesn't fit on the line. */
2870 new_x
> it
->last_visible_x
2871 /* Or it fits exactly and we're on a window
2873 || (new_x
== it
->last_visible_x
2874 && FRAME_WINDOW_P (it
->f
))))
2876 if (it
->current
.dpvec_index
>= 0
2877 || it
->current
.overlay_string_index
>= 0)
2879 set_iterator_to_next (it
, 1);
2880 move_it_in_display_line_to (it
, -1, -1, 0);
2883 it
->continuation_lines_width
+= it
->current_x
;
2886 /* We're starting a new display line, not affected by the
2887 height of the continued line, so clear the appropriate
2888 fields in the iterator structure. */
2889 it
->max_ascent
= it
->max_descent
= 0;
2890 it
->max_phys_ascent
= it
->max_phys_descent
= 0;
2892 it
->current_y
= first_y
;
2894 it
->current_x
= it
->hpos
= 0;
2898 #if 0 /* Don't assert the following because start_display is sometimes
2899 called intentionally with a window start that is not at a
2900 line start. Please leave this code in as a comment. */
2902 /* Window start should be on a line start, now. */
2903 xassert (it
->continuation_lines_width
2904 || IT_CHARPOS (it
) == BEGV
2905 || FETCH_BYTE (IT_BYTEPOS (it
) - 1) == '\n');
2910 /* Return 1 if POS is a position in ellipses displayed for invisible
2911 text. W is the window we display, for text property lookup. */
2914 in_ellipses_for_invisible_text_p (pos
, w
)
2915 struct display_pos
*pos
;
2918 Lisp_Object prop
, window
;
2920 int charpos
= CHARPOS (pos
->pos
);
2922 /* If POS specifies a position in a display vector, this might
2923 be for an ellipsis displayed for invisible text. We won't
2924 get the iterator set up for delivering that ellipsis unless
2925 we make sure that it gets aware of the invisible text. */
2926 if (pos
->dpvec_index
>= 0
2927 && pos
->overlay_string_index
< 0
2928 && CHARPOS (pos
->string_pos
) < 0
2930 && (XSETWINDOW (window
, w
),
2931 prop
= Fget_char_property (make_number (charpos
),
2932 Qinvisible
, window
),
2933 !TEXT_PROP_MEANS_INVISIBLE (prop
)))
2935 prop
= Fget_char_property (make_number (charpos
- 1), Qinvisible
,
2937 ellipses_p
= 2 == TEXT_PROP_MEANS_INVISIBLE (prop
);
2944 /* Initialize IT for stepping through current_buffer in window W,
2945 starting at position POS that includes overlay string and display
2946 vector/ control character translation position information. Value
2947 is zero if there are overlay strings with newlines at POS. */
2950 init_from_display_pos (it
, w
, pos
)
2953 struct display_pos
*pos
;
2955 int charpos
= CHARPOS (pos
->pos
), bytepos
= BYTEPOS (pos
->pos
);
2956 int i
, overlay_strings_with_newlines
= 0;
2958 /* If POS specifies a position in a display vector, this might
2959 be for an ellipsis displayed for invisible text. We won't
2960 get the iterator set up for delivering that ellipsis unless
2961 we make sure that it gets aware of the invisible text. */
2962 if (in_ellipses_for_invisible_text_p (pos
, w
))
2968 /* Keep in mind: the call to reseat in init_iterator skips invisible
2969 text, so we might end up at a position different from POS. This
2970 is only a problem when POS is a row start after a newline and an
2971 overlay starts there with an after-string, and the overlay has an
2972 invisible property. Since we don't skip invisible text in
2973 display_line and elsewhere immediately after consuming the
2974 newline before the row start, such a POS will not be in a string,
2975 but the call to init_iterator below will move us to the
2977 init_iterator (it
, w
, charpos
, bytepos
, NULL
, DEFAULT_FACE_ID
);
2979 /* This only scans the current chunk -- it should scan all chunks.
2980 However, OVERLAY_STRING_CHUNK_SIZE has been increased from 3 in 21.1
2981 to 16 in 22.1 to make this a lesser problem. */
2982 for (i
= 0; i
< it
->n_overlay_strings
&& i
< OVERLAY_STRING_CHUNK_SIZE
; ++i
)
2984 const char *s
= SDATA (it
->overlay_strings
[i
]);
2985 const char *e
= s
+ SBYTES (it
->overlay_strings
[i
]);
2987 while (s
< e
&& *s
!= '\n')
2992 overlay_strings_with_newlines
= 1;
2997 /* If position is within an overlay string, set up IT to the right
2999 if (pos
->overlay_string_index
>= 0)
3003 /* If the first overlay string happens to have a `display'
3004 property for an image, the iterator will be set up for that
3005 image, and we have to undo that setup first before we can
3006 correct the overlay string index. */
3007 if (it
->method
== GET_FROM_IMAGE
)
3010 /* We already have the first chunk of overlay strings in
3011 IT->overlay_strings. Load more until the one for
3012 pos->overlay_string_index is in IT->overlay_strings. */
3013 if (pos
->overlay_string_index
>= OVERLAY_STRING_CHUNK_SIZE
)
3015 int n
= pos
->overlay_string_index
/ OVERLAY_STRING_CHUNK_SIZE
;
3016 it
->current
.overlay_string_index
= 0;
3019 load_overlay_strings (it
, 0);
3020 it
->current
.overlay_string_index
+= OVERLAY_STRING_CHUNK_SIZE
;
3024 it
->current
.overlay_string_index
= pos
->overlay_string_index
;
3025 relative_index
= (it
->current
.overlay_string_index
3026 % OVERLAY_STRING_CHUNK_SIZE
);
3027 it
->string
= it
->overlay_strings
[relative_index
];
3028 xassert (STRINGP (it
->string
));
3029 it
->current
.string_pos
= pos
->string_pos
;
3030 it
->method
= GET_FROM_STRING
;
3033 if (CHARPOS (pos
->string_pos
) >= 0)
3035 /* Recorded position is not in an overlay string, but in another
3036 string. This can only be a string from a `display' property.
3037 IT should already be filled with that string. */
3038 it
->current
.string_pos
= pos
->string_pos
;
3039 xassert (STRINGP (it
->string
));
3042 /* Restore position in display vector translations, control
3043 character translations or ellipses. */
3044 if (pos
->dpvec_index
>= 0)
3046 if (it
->dpvec
== NULL
)
3047 get_next_display_element (it
);
3048 xassert (it
->dpvec
&& it
->current
.dpvec_index
== 0);
3049 it
->current
.dpvec_index
= pos
->dpvec_index
;
3053 return !overlay_strings_with_newlines
;
3057 /* Initialize IT for stepping through current_buffer in window W
3058 starting at ROW->start. */
3061 init_to_row_start (it
, w
, row
)
3064 struct glyph_row
*row
;
3066 init_from_display_pos (it
, w
, &row
->start
);
3067 it
->start
= row
->start
;
3068 it
->continuation_lines_width
= row
->continuation_lines_width
;
3073 /* Initialize IT for stepping through current_buffer in window W
3074 starting in the line following ROW, i.e. starting at ROW->end.
3075 Value is zero if there are overlay strings with newlines at ROW's
3079 init_to_row_end (it
, w
, row
)
3082 struct glyph_row
*row
;
3086 if (init_from_display_pos (it
, w
, &row
->end
))
3088 if (row
->continued_p
)
3089 it
->continuation_lines_width
3090 = row
->continuation_lines_width
+ row
->pixel_width
;
3101 /***********************************************************************
3103 ***********************************************************************/
3105 /* Called when IT reaches IT->stop_charpos. Handle text property and
3106 overlay changes. Set IT->stop_charpos to the next position where
3113 enum prop_handled handled
;
3114 int handle_overlay_change_p
;
3118 it
->current
.dpvec_index
= -1;
3119 handle_overlay_change_p
= !it
->ignore_overlay_strings_at_pos_p
;
3120 it
->ignore_overlay_strings_at_pos_p
= 0;
3123 /* Use face of preceding text for ellipsis (if invisible) */
3124 if (it
->selective_display_ellipsis_p
)
3125 it
->saved_face_id
= it
->face_id
;
3129 handled
= HANDLED_NORMALLY
;
3131 /* Call text property handlers. */
3132 for (p
= it_props
; p
->handler
; ++p
)
3134 handled
= p
->handler (it
);
3136 if (handled
== HANDLED_RECOMPUTE_PROPS
)
3138 else if (handled
== HANDLED_RETURN
)
3140 /* We still want to show before and after strings from
3141 overlays even if the actual buffer text is replaced. */
3142 if (!handle_overlay_change_p
3144 || !get_overlay_strings_1 (it
, 0, 0))
3147 setup_for_ellipsis (it
, 0);
3148 /* When handling a display spec, we might load an
3149 empty string. In that case, discard it here. We
3150 used to discard it in handle_single_display_spec,
3151 but that causes get_overlay_strings_1, above, to
3152 ignore overlay strings that we must check. */
3153 if (STRINGP (it
->string
) && !SCHARS (it
->string
))
3157 else if (STRINGP (it
->string
) && !SCHARS (it
->string
))
3161 it
->ignore_overlay_strings_at_pos_p
= 1;
3162 it
->string_from_display_prop_p
= 0;
3163 handle_overlay_change_p
= 0;
3165 handled
= HANDLED_RECOMPUTE_PROPS
;
3168 else if (handled
== HANDLED_OVERLAY_STRING_CONSUMED
)
3169 handle_overlay_change_p
= 0;
3172 if (handled
!= HANDLED_RECOMPUTE_PROPS
)
3174 /* Don't check for overlay strings below when set to deliver
3175 characters from a display vector. */
3176 if (it
->method
== GET_FROM_DISPLAY_VECTOR
)
3177 handle_overlay_change_p
= 0;
3179 /* Handle overlay changes.
3180 This sets HANDLED to HANDLED_RECOMPUTE_PROPS
3181 if it finds overlays. */
3182 if (handle_overlay_change_p
)
3183 handled
= handle_overlay_change (it
);
3188 setup_for_ellipsis (it
, 0);
3192 while (handled
== HANDLED_RECOMPUTE_PROPS
);
3194 /* Determine where to stop next. */
3195 if (handled
== HANDLED_NORMALLY
)
3196 compute_stop_pos (it
);
3200 /* Compute IT->stop_charpos from text property and overlay change
3201 information for IT's current position. */
3204 compute_stop_pos (it
)
3207 register INTERVAL iv
, next_iv
;
3208 Lisp_Object object
, limit
, position
;
3209 EMACS_INT charpos
, bytepos
;
3211 /* If nowhere else, stop at the end. */
3212 it
->stop_charpos
= it
->end_charpos
;
3214 if (STRINGP (it
->string
))
3216 /* Strings are usually short, so don't limit the search for
3218 object
= it
->string
;
3220 charpos
= IT_STRING_CHARPOS (*it
);
3221 bytepos
= IT_STRING_BYTEPOS (*it
);
3227 /* If next overlay change is in front of the current stop pos
3228 (which is IT->end_charpos), stop there. Note: value of
3229 next_overlay_change is point-max if no overlay change
3231 charpos
= IT_CHARPOS (*it
);
3232 bytepos
= IT_BYTEPOS (*it
);
3233 pos
= next_overlay_change (charpos
);
3234 if (pos
< it
->stop_charpos
)
3235 it
->stop_charpos
= pos
;
3237 /* If showing the region, we have to stop at the region
3238 start or end because the face might change there. */
3239 if (it
->region_beg_charpos
> 0)
3241 if (IT_CHARPOS (*it
) < it
->region_beg_charpos
)
3242 it
->stop_charpos
= min (it
->stop_charpos
, it
->region_beg_charpos
);
3243 else if (IT_CHARPOS (*it
) < it
->region_end_charpos
)
3244 it
->stop_charpos
= min (it
->stop_charpos
, it
->region_end_charpos
);
3247 /* Set up variables for computing the stop position from text
3248 property changes. */
3249 XSETBUFFER (object
, current_buffer
);
3250 limit
= make_number (IT_CHARPOS (*it
) + TEXT_PROP_DISTANCE_LIMIT
);
3253 /* Get the interval containing IT's position. Value is a null
3254 interval if there isn't such an interval. */
3255 position
= make_number (charpos
);
3256 iv
= validate_interval_range (object
, &position
, &position
, 0);
3257 if (!NULL_INTERVAL_P (iv
))
3259 Lisp_Object values_here
[LAST_PROP_IDX
];
3262 /* Get properties here. */
3263 for (p
= it_props
; p
->handler
; ++p
)
3264 values_here
[p
->idx
] = textget (iv
->plist
, *p
->name
);
3266 /* Look for an interval following iv that has different
3268 for (next_iv
= next_interval (iv
);
3269 (!NULL_INTERVAL_P (next_iv
)
3271 || XFASTINT (limit
) > next_iv
->position
));
3272 next_iv
= next_interval (next_iv
))
3274 for (p
= it_props
; p
->handler
; ++p
)
3276 Lisp_Object new_value
;
3278 new_value
= textget (next_iv
->plist
, *p
->name
);
3279 if (!EQ (values_here
[p
->idx
], new_value
))
3287 if (!NULL_INTERVAL_P (next_iv
))
3289 if (INTEGERP (limit
)
3290 && next_iv
->position
>= XFASTINT (limit
))
3291 /* No text property change up to limit. */
3292 it
->stop_charpos
= min (XFASTINT (limit
), it
->stop_charpos
);
3294 /* Text properties change in next_iv. */
3295 it
->stop_charpos
= min (it
->stop_charpos
, next_iv
->position
);
3299 composition_compute_stop_pos (&it
->cmp_it
, charpos
, bytepos
,
3300 it
->stop_charpos
, it
->string
);
3302 xassert (STRINGP (it
->string
)
3303 || (it
->stop_charpos
>= BEGV
3304 && it
->stop_charpos
>= IT_CHARPOS (*it
)));
3308 /* Return the position of the next overlay change after POS in
3309 current_buffer. Value is point-max if no overlay change
3310 follows. This is like `next-overlay-change' but doesn't use
3314 next_overlay_change (pos
)
3319 Lisp_Object
*overlays
;
3322 /* Get all overlays at the given position. */
3323 GET_OVERLAYS_AT (pos
, overlays
, noverlays
, &endpos
, 1);
3325 /* If any of these overlays ends before endpos,
3326 use its ending point instead. */
3327 for (i
= 0; i
< noverlays
; ++i
)
3332 oend
= OVERLAY_END (overlays
[i
]);
3333 oendpos
= OVERLAY_POSITION (oend
);
3334 endpos
= min (endpos
, oendpos
);
3342 /***********************************************************************
3344 ***********************************************************************/
3346 /* Handle changes in the `fontified' property of the current buffer by
3347 calling hook functions from Qfontification_functions to fontify
3350 static enum prop_handled
3351 handle_fontified_prop (it
)
3354 Lisp_Object prop
, pos
;
3355 enum prop_handled handled
= HANDLED_NORMALLY
;
3357 if (!NILP (Vmemory_full
))
3360 /* Get the value of the `fontified' property at IT's current buffer
3361 position. (The `fontified' property doesn't have a special
3362 meaning in strings.) If the value is nil, call functions from
3363 Qfontification_functions. */
3364 if (!STRINGP (it
->string
)
3366 && !NILP (Vfontification_functions
)
3367 && !NILP (Vrun_hooks
)
3368 && (pos
= make_number (IT_CHARPOS (*it
)),
3369 prop
= Fget_char_property (pos
, Qfontified
, Qnil
),
3370 /* Ignore the special cased nil value always present at EOB since
3371 no amount of fontifying will be able to change it. */
3372 NILP (prop
) && IT_CHARPOS (*it
) < Z
))
3374 int count
= SPECPDL_INDEX ();
3377 val
= Vfontification_functions
;
3378 specbind (Qfontification_functions
, Qnil
);
3380 if (!CONSP (val
) || EQ (XCAR (val
), Qlambda
))
3381 safe_call1 (val
, pos
);
3384 Lisp_Object globals
, fn
;
3385 struct gcpro gcpro1
, gcpro2
;
3388 GCPRO2 (val
, globals
);
3390 for (; CONSP (val
); val
= XCDR (val
))
3396 /* A value of t indicates this hook has a local
3397 binding; it means to run the global binding too.
3398 In a global value, t should not occur. If it
3399 does, we must ignore it to avoid an endless
3401 for (globals
= Fdefault_value (Qfontification_functions
);
3403 globals
= XCDR (globals
))
3405 fn
= XCAR (globals
);
3407 safe_call1 (fn
, pos
);
3411 safe_call1 (fn
, pos
);
3417 unbind_to (count
, Qnil
);
3419 /* Return HANDLED_RECOMPUTE_PROPS only if function fontified
3420 something. This avoids an endless loop if they failed to
3421 fontify the text for which reason ever. */
3422 if (!NILP (Fget_char_property (pos
, Qfontified
, Qnil
)))
3423 handled
= HANDLED_RECOMPUTE_PROPS
;
3431 /***********************************************************************
3433 ***********************************************************************/
3435 /* Set up iterator IT from face properties at its current position.
3436 Called from handle_stop. */
3438 static enum prop_handled
3439 handle_face_prop (it
)
3443 EMACS_INT next_stop
;
3445 if (!STRINGP (it
->string
))
3448 = face_at_buffer_position (it
->w
,
3450 it
->region_beg_charpos
,
3451 it
->region_end_charpos
,
3454 + TEXT_PROP_DISTANCE_LIMIT
),
3455 0, it
->base_face_id
);
3457 /* Is this a start of a run of characters with box face?
3458 Caveat: this can be called for a freshly initialized
3459 iterator; face_id is -1 in this case. We know that the new
3460 face will not change until limit, i.e. if the new face has a
3461 box, all characters up to limit will have one. But, as
3462 usual, we don't know whether limit is really the end. */
3463 if (new_face_id
!= it
->face_id
)
3465 struct face
*new_face
= FACE_FROM_ID (it
->f
, new_face_id
);
3467 /* If new face has a box but old face has not, this is
3468 the start of a run of characters with box, i.e. it has
3469 a shadow on the left side. The value of face_id of the
3470 iterator will be -1 if this is the initial call that gets
3471 the face. In this case, we have to look in front of IT's
3472 position and see whether there is a face != new_face_id. */
3473 it
->start_of_box_run_p
3474 = (new_face
->box
!= FACE_NO_BOX
3475 && (it
->face_id
>= 0
3476 || IT_CHARPOS (*it
) == BEG
3477 || new_face_id
!= face_before_it_pos (it
)));
3478 it
->face_box_p
= new_face
->box
!= FACE_NO_BOX
;
3483 int base_face_id
, bufpos
;
3485 Lisp_Object from_overlay
3486 = (it
->current
.overlay_string_index
>= 0
3487 ? it
->string_overlays
[it
->current
.overlay_string_index
]
3490 /* See if we got to this string directly or indirectly from
3491 an overlay property. That includes the before-string or
3492 after-string of an overlay, strings in display properties
3493 provided by an overlay, their text properties, etc.
3495 FROM_OVERLAY is the overlay that brought us here, or nil if none. */
3496 if (! NILP (from_overlay
))
3497 for (i
= it
->sp
- 1; i
>= 0; i
--)
3499 if (it
->stack
[i
].current
.overlay_string_index
>= 0)
3501 = it
->string_overlays
[it
->stack
[i
].current
.overlay_string_index
];
3502 else if (! NILP (it
->stack
[i
].from_overlay
))
3503 from_overlay
= it
->stack
[i
].from_overlay
;
3505 if (!NILP (from_overlay
))
3509 if (! NILP (from_overlay
))
3511 bufpos
= IT_CHARPOS (*it
);
3512 /* For a string from an overlay, the base face depends
3513 only on text properties and ignores overlays. */
3515 = face_for_overlay_string (it
->w
,
3517 it
->region_beg_charpos
,
3518 it
->region_end_charpos
,
3521 + TEXT_PROP_DISTANCE_LIMIT
),
3529 /* For strings from a `display' property, use the face at
3530 IT's current buffer position as the base face to merge
3531 with, so that overlay strings appear in the same face as
3532 surrounding text, unless they specify their own
3534 base_face_id
= underlying_face_id (it
);
3537 new_face_id
= face_at_string_position (it
->w
,
3539 IT_STRING_CHARPOS (*it
),
3541 it
->region_beg_charpos
,
3542 it
->region_end_charpos
,
3546 #if 0 /* This shouldn't be neccessary. Let's check it. */
3547 /* If IT is used to display a mode line we would really like to
3548 use the mode line face instead of the frame's default face. */
3549 if (it
->glyph_row
== MATRIX_MODE_LINE_ROW (it
->w
->desired_matrix
)
3550 && new_face_id
== DEFAULT_FACE_ID
)
3551 new_face_id
= CURRENT_MODE_LINE_FACE_ID (it
->w
);
3554 /* Is this a start of a run of characters with box? Caveat:
3555 this can be called for a freshly allocated iterator; face_id
3556 is -1 is this case. We know that the new face will not
3557 change until the next check pos, i.e. if the new face has a
3558 box, all characters up to that position will have a
3559 box. But, as usual, we don't know whether that position
3560 is really the end. */
3561 if (new_face_id
!= it
->face_id
)
3563 struct face
*new_face
= FACE_FROM_ID (it
->f
, new_face_id
);
3564 struct face
*old_face
= FACE_FROM_ID (it
->f
, it
->face_id
);
3566 /* If new face has a box but old face hasn't, this is the
3567 start of a run of characters with box, i.e. it has a
3568 shadow on the left side. */
3569 it
->start_of_box_run_p
3570 = new_face
->box
&& (old_face
== NULL
|| !old_face
->box
);
3571 it
->face_box_p
= new_face
->box
!= FACE_NO_BOX
;
3575 it
->face_id
= new_face_id
;
3576 return HANDLED_NORMALLY
;
3580 /* Return the ID of the face ``underlying'' IT's current position,
3581 which is in a string. If the iterator is associated with a
3582 buffer, return the face at IT's current buffer position.
3583 Otherwise, use the iterator's base_face_id. */
3586 underlying_face_id (it
)
3589 int face_id
= it
->base_face_id
, i
;
3591 xassert (STRINGP (it
->string
));
3593 for (i
= it
->sp
- 1; i
>= 0; --i
)
3594 if (NILP (it
->stack
[i
].string
))
3595 face_id
= it
->stack
[i
].face_id
;
3601 /* Compute the face one character before or after the current position
3602 of IT. BEFORE_P non-zero means get the face in front of IT's
3603 position. Value is the id of the face. */
3606 face_before_or_after_it_pos (it
, before_p
)
3611 EMACS_INT next_check_charpos
;
3612 struct text_pos pos
;
3614 xassert (it
->s
== NULL
);
3616 if (STRINGP (it
->string
))
3618 int bufpos
, base_face_id
;
3620 /* No face change past the end of the string (for the case
3621 we are padding with spaces). No face change before the
3623 if (IT_STRING_CHARPOS (*it
) >= SCHARS (it
->string
)
3624 || (IT_STRING_CHARPOS (*it
) == 0 && before_p
))
3627 /* Set pos to the position before or after IT's current position. */
3629 pos
= string_pos (IT_STRING_CHARPOS (*it
) - 1, it
->string
);
3631 /* For composition, we must check the character after the
3633 pos
= (it
->what
== IT_COMPOSITION
3634 ? string_pos (IT_STRING_CHARPOS (*it
)
3635 + it
->cmp_it
.nchars
, it
->string
)
3636 : string_pos (IT_STRING_CHARPOS (*it
) + 1, it
->string
));
3638 if (it
->current
.overlay_string_index
>= 0)
3639 bufpos
= IT_CHARPOS (*it
);
3643 base_face_id
= underlying_face_id (it
);
3645 /* Get the face for ASCII, or unibyte. */
3646 face_id
= face_at_string_position (it
->w
,
3650 it
->region_beg_charpos
,
3651 it
->region_end_charpos
,
3652 &next_check_charpos
,
3655 /* Correct the face for charsets different from ASCII. Do it
3656 for the multibyte case only. The face returned above is
3657 suitable for unibyte text if IT->string is unibyte. */
3658 if (STRING_MULTIBYTE (it
->string
))
3660 const unsigned char *p
= SDATA (it
->string
) + BYTEPOS (pos
);
3661 int rest
= SBYTES (it
->string
) - BYTEPOS (pos
);
3663 struct face
*face
= FACE_FROM_ID (it
->f
, face_id
);
3665 c
= string_char_and_length (p
, rest
, &len
);
3666 face_id
= FACE_FOR_CHAR (it
->f
, face
, c
, CHARPOS (pos
), it
->string
);
3671 if ((IT_CHARPOS (*it
) >= ZV
&& !before_p
)
3672 || (IT_CHARPOS (*it
) <= BEGV
&& before_p
))
3675 limit
= IT_CHARPOS (*it
) + TEXT_PROP_DISTANCE_LIMIT
;
3676 pos
= it
->current
.pos
;
3679 DEC_TEXT_POS (pos
, it
->multibyte_p
);
3682 if (it
->what
== IT_COMPOSITION
)
3683 /* For composition, we must check the position after the
3685 pos
.charpos
+= it
->cmp_it
.nchars
, pos
.bytepos
+= it
->len
;
3687 INC_TEXT_POS (pos
, it
->multibyte_p
);
3690 /* Determine face for CHARSET_ASCII, or unibyte. */
3691 face_id
= face_at_buffer_position (it
->w
,
3693 it
->region_beg_charpos
,
3694 it
->region_end_charpos
,
3695 &next_check_charpos
,
3698 /* Correct the face for charsets different from ASCII. Do it
3699 for the multibyte case only. The face returned above is
3700 suitable for unibyte text if current_buffer is unibyte. */
3701 if (it
->multibyte_p
)
3703 int c
= FETCH_MULTIBYTE_CHAR (BYTEPOS (pos
));
3704 struct face
*face
= FACE_FROM_ID (it
->f
, face_id
);
3705 face_id
= FACE_FOR_CHAR (it
->f
, face
, c
, CHARPOS (pos
), Qnil
);
3714 /***********************************************************************
3716 ***********************************************************************/
3718 /* Set up iterator IT from invisible properties at its current
3719 position. Called from handle_stop. */
3721 static enum prop_handled
3722 handle_invisible_prop (it
)
3725 enum prop_handled handled
= HANDLED_NORMALLY
;
3727 if (STRINGP (it
->string
))
3729 extern Lisp_Object Qinvisible
;
3730 Lisp_Object prop
, end_charpos
, limit
, charpos
;
3732 /* Get the value of the invisible text property at the
3733 current position. Value will be nil if there is no such
3735 charpos
= make_number (IT_STRING_CHARPOS (*it
));
3736 prop
= Fget_text_property (charpos
, Qinvisible
, it
->string
);
3739 && IT_STRING_CHARPOS (*it
) < it
->end_charpos
)
3741 handled
= HANDLED_RECOMPUTE_PROPS
;
3743 /* Get the position at which the next change of the
3744 invisible text property can be found in IT->string.
3745 Value will be nil if the property value is the same for
3746 all the rest of IT->string. */
3747 XSETINT (limit
, SCHARS (it
->string
));
3748 end_charpos
= Fnext_single_property_change (charpos
, Qinvisible
,
3751 /* Text at current position is invisible. The next
3752 change in the property is at position end_charpos.
3753 Move IT's current position to that position. */
3754 if (INTEGERP (end_charpos
)
3755 && XFASTINT (end_charpos
) < XFASTINT (limit
))
3757 struct text_pos old
;
3758 old
= it
->current
.string_pos
;
3759 IT_STRING_CHARPOS (*it
) = XFASTINT (end_charpos
);
3760 compute_string_pos (&it
->current
.string_pos
, old
, it
->string
);
3764 /* The rest of the string is invisible. If this is an
3765 overlay string, proceed with the next overlay string
3766 or whatever comes and return a character from there. */
3767 if (it
->current
.overlay_string_index
>= 0)
3769 next_overlay_string (it
);
3770 /* Don't check for overlay strings when we just
3771 finished processing them. */
3772 handled
= HANDLED_OVERLAY_STRING_CONSUMED
;
3776 IT_STRING_CHARPOS (*it
) = SCHARS (it
->string
);
3777 IT_STRING_BYTEPOS (*it
) = SBYTES (it
->string
);
3785 EMACS_INT newpos
, next_stop
, start_charpos
;
3786 Lisp_Object pos
, prop
, overlay
;
3788 /* First of all, is there invisible text at this position? */
3789 start_charpos
= IT_CHARPOS (*it
);
3790 pos
= make_number (IT_CHARPOS (*it
));
3791 prop
= get_char_property_and_overlay (pos
, Qinvisible
, it
->window
,
3793 invis_p
= TEXT_PROP_MEANS_INVISIBLE (prop
);
3795 /* If we are on invisible text, skip over it. */
3796 if (invis_p
&& IT_CHARPOS (*it
) < it
->end_charpos
)
3798 /* Record whether we have to display an ellipsis for the
3800 int display_ellipsis_p
= invis_p
== 2;
3802 handled
= HANDLED_RECOMPUTE_PROPS
;
3804 /* Loop skipping over invisible text. The loop is left at
3805 ZV or with IT on the first char being visible again. */
3808 /* Try to skip some invisible text. Return value is the
3809 position reached which can be equal to IT's position
3810 if there is nothing invisible here. This skips both
3811 over invisible text properties and overlays with
3812 invisible property. */
3813 newpos
= skip_invisible (IT_CHARPOS (*it
),
3814 &next_stop
, ZV
, it
->window
);
3816 /* If we skipped nothing at all we weren't at invisible
3817 text in the first place. If everything to the end of
3818 the buffer was skipped, end the loop. */
3819 if (newpos
== IT_CHARPOS (*it
) || newpos
>= ZV
)
3823 /* We skipped some characters but not necessarily
3824 all there are. Check if we ended up on visible
3825 text. Fget_char_property returns the property of
3826 the char before the given position, i.e. if we
3827 get invis_p = 0, this means that the char at
3828 newpos is visible. */
3829 pos
= make_number (newpos
);
3830 prop
= Fget_char_property (pos
, Qinvisible
, it
->window
);
3831 invis_p
= TEXT_PROP_MEANS_INVISIBLE (prop
);
3834 /* If we ended up on invisible text, proceed to
3835 skip starting with next_stop. */
3837 IT_CHARPOS (*it
) = next_stop
;
3839 /* If there are adjacent invisible texts, don't lose the
3840 second one's ellipsis. */
3842 display_ellipsis_p
= 1;
3846 /* The position newpos is now either ZV or on visible text. */
3847 IT_CHARPOS (*it
) = newpos
;
3848 IT_BYTEPOS (*it
) = CHAR_TO_BYTE (newpos
);
3850 /* If there are before-strings at the start of invisible
3851 text, and the text is invisible because of a text
3852 property, arrange to show before-strings because 20.x did
3853 it that way. (If the text is invisible because of an
3854 overlay property instead of a text property, this is
3855 already handled in the overlay code.) */
3857 && get_overlay_strings (it
, start_charpos
))
3859 handled
= HANDLED_RECOMPUTE_PROPS
;
3860 it
->stack
[it
->sp
- 1].display_ellipsis_p
= display_ellipsis_p
;
3862 else if (display_ellipsis_p
)
3864 /* Make sure that the glyphs of the ellipsis will get
3865 correct `charpos' values. If we would not update
3866 it->position here, the glyphs would belong to the
3867 last visible character _before_ the invisible
3868 text, which confuses `set_cursor_from_row'.
3870 We use the last invisible position instead of the
3871 first because this way the cursor is always drawn on
3872 the first "." of the ellipsis, whenever PT is inside
3873 the invisible text. Otherwise the cursor would be
3874 placed _after_ the ellipsis when the point is after the
3875 first invisible character. */
3876 if (!STRINGP (it
->object
))
3878 it
->position
.charpos
= IT_CHARPOS (*it
) - 1;
3879 it
->position
.bytepos
= CHAR_TO_BYTE (it
->position
.charpos
);
3882 /* Let the ellipsis display before
3883 considering any properties of the following char.
3884 Fixes jasonr@gnu.org 01 Oct 07 bug. */
3885 handled
= HANDLED_RETURN
;
3894 /* Make iterator IT return `...' next.
3895 Replaces LEN characters from buffer. */
3898 setup_for_ellipsis (it
, len
)
3902 /* Use the display table definition for `...'. Invalid glyphs
3903 will be handled by the method returning elements from dpvec. */
3904 if (it
->dp
&& VECTORP (DISP_INVIS_VECTOR (it
->dp
)))
3906 struct Lisp_Vector
*v
= XVECTOR (DISP_INVIS_VECTOR (it
->dp
));
3907 it
->dpvec
= v
->contents
;
3908 it
->dpend
= v
->contents
+ v
->size
;
3912 /* Default `...'. */
3913 it
->dpvec
= default_invis_vector
;
3914 it
->dpend
= default_invis_vector
+ 3;
3917 it
->dpvec_char_len
= len
;
3918 it
->current
.dpvec_index
= 0;
3919 it
->dpvec_face_id
= -1;
3921 /* Remember the current face id in case glyphs specify faces.
3922 IT's face is restored in set_iterator_to_next.
3923 saved_face_id was set to preceding char's face in handle_stop. */
3924 if (it
->saved_face_id
< 0 || it
->saved_face_id
!= it
->face_id
)
3925 it
->saved_face_id
= it
->face_id
= DEFAULT_FACE_ID
;
3927 it
->method
= GET_FROM_DISPLAY_VECTOR
;
3933 /***********************************************************************
3935 ***********************************************************************/
3937 /* Set up iterator IT from `display' property at its current position.
3938 Called from handle_stop.
3939 We return HANDLED_RETURN if some part of the display property
3940 overrides the display of the buffer text itself.
3941 Otherwise we return HANDLED_NORMALLY. */
3943 static enum prop_handled
3944 handle_display_prop (it
)
3947 Lisp_Object prop
, object
, overlay
;
3948 struct text_pos
*position
;
3949 /* Nonzero if some property replaces the display of the text itself. */
3950 int display_replaced_p
= 0;
3952 if (STRINGP (it
->string
))
3954 object
= it
->string
;
3955 position
= &it
->current
.string_pos
;
3959 XSETWINDOW (object
, it
->w
);
3960 position
= &it
->current
.pos
;
3963 /* Reset those iterator values set from display property values. */
3964 it
->slice
.x
= it
->slice
.y
= it
->slice
.width
= it
->slice
.height
= Qnil
;
3965 it
->space_width
= Qnil
;
3966 it
->font_height
= Qnil
;
3969 /* We don't support recursive `display' properties, i.e. string
3970 values that have a string `display' property, that have a string
3971 `display' property etc. */
3972 if (!it
->string_from_display_prop_p
)
3973 it
->area
= TEXT_AREA
;
3975 prop
= get_char_property_and_overlay (make_number (position
->charpos
),
3976 Qdisplay
, object
, &overlay
);
3978 return HANDLED_NORMALLY
;
3979 /* Now OVERLAY is the overlay that gave us this property, or nil
3980 if it was a text property. */
3982 if (!STRINGP (it
->string
))
3983 object
= it
->w
->buffer
;
3986 /* Simple properties. */
3987 && !EQ (XCAR (prop
), Qimage
)
3988 && !EQ (XCAR (prop
), Qspace
)
3989 && !EQ (XCAR (prop
), Qwhen
)
3990 && !EQ (XCAR (prop
), Qslice
)
3991 && !EQ (XCAR (prop
), Qspace_width
)
3992 && !EQ (XCAR (prop
), Qheight
)
3993 && !EQ (XCAR (prop
), Qraise
)
3994 /* Marginal area specifications. */
3995 && !(CONSP (XCAR (prop
)) && EQ (XCAR (XCAR (prop
)), Qmargin
))
3996 && !EQ (XCAR (prop
), Qleft_fringe
)
3997 && !EQ (XCAR (prop
), Qright_fringe
)
3998 && !NILP (XCAR (prop
)))
4000 for (; CONSP (prop
); prop
= XCDR (prop
))
4002 if (handle_single_display_spec (it
, XCAR (prop
), object
, overlay
,
4003 position
, display_replaced_p
))
4005 display_replaced_p
= 1;
4006 /* If some text in a string is replaced, `position' no
4007 longer points to the position of `object'. */
4008 if (STRINGP (object
))
4013 else if (VECTORP (prop
))
4016 for (i
= 0; i
< ASIZE (prop
); ++i
)
4017 if (handle_single_display_spec (it
, AREF (prop
, i
), object
, overlay
,
4018 position
, display_replaced_p
))
4020 display_replaced_p
= 1;
4021 /* If some text in a string is replaced, `position' no
4022 longer points to the position of `object'. */
4023 if (STRINGP (object
))
4029 if (handle_single_display_spec (it
, prop
, object
, overlay
,
4031 display_replaced_p
= 1;
4034 return display_replaced_p
? HANDLED_RETURN
: HANDLED_NORMALLY
;
4038 /* Value is the position of the end of the `display' property starting
4039 at START_POS in OBJECT. */
4041 static struct text_pos
4042 display_prop_end (it
, object
, start_pos
)
4045 struct text_pos start_pos
;
4048 struct text_pos end_pos
;
4050 end
= Fnext_single_char_property_change (make_number (CHARPOS (start_pos
)),
4051 Qdisplay
, object
, Qnil
);
4052 CHARPOS (end_pos
) = XFASTINT (end
);
4053 if (STRINGP (object
))
4054 compute_string_pos (&end_pos
, start_pos
, it
->string
);
4056 BYTEPOS (end_pos
) = CHAR_TO_BYTE (XFASTINT (end
));
4062 /* Set up IT from a single `display' specification PROP. OBJECT
4063 is the object in which the `display' property was found. *POSITION
4064 is the position at which it was found. DISPLAY_REPLACED_P non-zero
4065 means that we previously saw a display specification which already
4066 replaced text display with something else, for example an image;
4067 we ignore such properties after the first one has been processed.
4069 OVERLAY is the overlay this `display' property came from,
4070 or nil if it was a text property.
4072 If PROP is a `space' or `image' specification, and in some other
4073 cases too, set *POSITION to the position where the `display'
4076 Value is non-zero if something was found which replaces the display
4077 of buffer or string text. */
4080 handle_single_display_spec (it
, spec
, object
, overlay
, position
,
4081 display_replaced_before_p
)
4085 Lisp_Object overlay
;
4086 struct text_pos
*position
;
4087 int display_replaced_before_p
;
4090 Lisp_Object location
, value
;
4091 struct text_pos start_pos
, save_pos
;
4094 /* If SPEC is a list of the form `(when FORM . VALUE)', evaluate FORM.
4095 If the result is non-nil, use VALUE instead of SPEC. */
4097 if (CONSP (spec
) && EQ (XCAR (spec
), Qwhen
))
4106 if (!NILP (form
) && !EQ (form
, Qt
))
4108 int count
= SPECPDL_INDEX ();
4109 struct gcpro gcpro1
;
4111 /* Bind `object' to the object having the `display' property, a
4112 buffer or string. Bind `position' to the position in the
4113 object where the property was found, and `buffer-position'
4114 to the current position in the buffer. */
4115 specbind (Qobject
, object
);
4116 specbind (Qposition
, make_number (CHARPOS (*position
)));
4117 specbind (Qbuffer_position
,
4118 make_number (STRINGP (object
)
4119 ? IT_CHARPOS (*it
) : CHARPOS (*position
)));
4121 form
= safe_eval (form
);
4123 unbind_to (count
, Qnil
);
4129 /* Handle `(height HEIGHT)' specifications. */
4131 && EQ (XCAR (spec
), Qheight
)
4132 && CONSP (XCDR (spec
)))
4134 if (!FRAME_WINDOW_P (it
->f
))
4137 it
->font_height
= XCAR (XCDR (spec
));
4138 if (!NILP (it
->font_height
))
4140 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
4141 int new_height
= -1;
4143 if (CONSP (it
->font_height
)
4144 && (EQ (XCAR (it
->font_height
), Qplus
)
4145 || EQ (XCAR (it
->font_height
), Qminus
))
4146 && CONSP (XCDR (it
->font_height
))
4147 && INTEGERP (XCAR (XCDR (it
->font_height
))))
4149 /* `(+ N)' or `(- N)' where N is an integer. */
4150 int steps
= XINT (XCAR (XCDR (it
->font_height
)));
4151 if (EQ (XCAR (it
->font_height
), Qplus
))
4153 it
->face_id
= smaller_face (it
->f
, it
->face_id
, steps
);
4155 else if (FUNCTIONP (it
->font_height
))
4157 /* Call function with current height as argument.
4158 Value is the new height. */
4160 height
= safe_call1 (it
->font_height
,
4161 face
->lface
[LFACE_HEIGHT_INDEX
]);
4162 if (NUMBERP (height
))
4163 new_height
= XFLOATINT (height
);
4165 else if (NUMBERP (it
->font_height
))
4167 /* Value is a multiple of the canonical char height. */
4170 face
= FACE_FROM_ID (it
->f
,
4171 lookup_basic_face (it
->f
, DEFAULT_FACE_ID
));
4172 new_height
= (XFLOATINT (it
->font_height
)
4173 * XINT (face
->lface
[LFACE_HEIGHT_INDEX
]));
4177 /* Evaluate IT->font_height with `height' bound to the
4178 current specified height to get the new height. */
4179 int count
= SPECPDL_INDEX ();
4181 specbind (Qheight
, face
->lface
[LFACE_HEIGHT_INDEX
]);
4182 value
= safe_eval (it
->font_height
);
4183 unbind_to (count
, Qnil
);
4185 if (NUMBERP (value
))
4186 new_height
= XFLOATINT (value
);
4190 it
->face_id
= face_with_height (it
->f
, it
->face_id
, new_height
);
4196 /* Handle `(space-width WIDTH)'. */
4198 && EQ (XCAR (spec
), Qspace_width
)
4199 && CONSP (XCDR (spec
)))
4201 if (!FRAME_WINDOW_P (it
->f
))
4204 value
= XCAR (XCDR (spec
));
4205 if (NUMBERP (value
) && XFLOATINT (value
) > 0)
4206 it
->space_width
= value
;
4211 /* Handle `(slice X Y WIDTH HEIGHT)'. */
4213 && EQ (XCAR (spec
), Qslice
))
4217 if (!FRAME_WINDOW_P (it
->f
))
4220 if (tem
= XCDR (spec
), CONSP (tem
))
4222 it
->slice
.x
= XCAR (tem
);
4223 if (tem
= XCDR (tem
), CONSP (tem
))
4225 it
->slice
.y
= XCAR (tem
);
4226 if (tem
= XCDR (tem
), CONSP (tem
))
4228 it
->slice
.width
= XCAR (tem
);
4229 if (tem
= XCDR (tem
), CONSP (tem
))
4230 it
->slice
.height
= XCAR (tem
);
4238 /* Handle `(raise FACTOR)'. */
4240 && EQ (XCAR (spec
), Qraise
)
4241 && CONSP (XCDR (spec
)))
4243 if (!FRAME_WINDOW_P (it
->f
))
4246 #ifdef HAVE_WINDOW_SYSTEM
4247 value
= XCAR (XCDR (spec
));
4248 if (NUMBERP (value
))
4250 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
4251 it
->voffset
= - (XFLOATINT (value
)
4252 * (FONT_HEIGHT (face
->font
)));
4254 #endif /* HAVE_WINDOW_SYSTEM */
4259 /* Don't handle the other kinds of display specifications
4260 inside a string that we got from a `display' property. */
4261 if (it
->string_from_display_prop_p
)
4264 /* Characters having this form of property are not displayed, so
4265 we have to find the end of the property. */
4266 start_pos
= *position
;
4267 *position
= display_prop_end (it
, object
, start_pos
);
4270 /* Stop the scan at that end position--we assume that all
4271 text properties change there. */
4272 it
->stop_charpos
= position
->charpos
;
4274 /* Handle `(left-fringe BITMAP [FACE])'
4275 and `(right-fringe BITMAP [FACE])'. */
4277 && (EQ (XCAR (spec
), Qleft_fringe
)
4278 || EQ (XCAR (spec
), Qright_fringe
))
4279 && CONSP (XCDR (spec
)))
4281 int face_id
= lookup_basic_face (it
->f
, DEFAULT_FACE_ID
);
4284 if (!FRAME_WINDOW_P (it
->f
))
4285 /* If we return here, POSITION has been advanced
4286 across the text with this property. */
4289 #ifdef HAVE_WINDOW_SYSTEM
4290 value
= XCAR (XCDR (spec
));
4291 if (!SYMBOLP (value
)
4292 || !(fringe_bitmap
= lookup_fringe_bitmap (value
)))
4293 /* If we return here, POSITION has been advanced
4294 across the text with this property. */
4297 if (CONSP (XCDR (XCDR (spec
))))
4299 Lisp_Object face_name
= XCAR (XCDR (XCDR (spec
)));
4300 int face_id2
= lookup_derived_face (it
->f
, face_name
,
4306 /* Save current settings of IT so that we can restore them
4307 when we are finished with the glyph property value. */
4309 save_pos
= it
->position
;
4310 it
->position
= *position
;
4312 it
->position
= save_pos
;
4314 it
->area
= TEXT_AREA
;
4315 it
->what
= IT_IMAGE
;
4316 it
->image_id
= -1; /* no image */
4317 it
->position
= start_pos
;
4318 it
->object
= NILP (object
) ? it
->w
->buffer
: object
;
4319 it
->method
= GET_FROM_IMAGE
;
4320 it
->from_overlay
= Qnil
;
4321 it
->face_id
= face_id
;
4323 /* Say that we haven't consumed the characters with
4324 `display' property yet. The call to pop_it in
4325 set_iterator_to_next will clean this up. */
4326 *position
= start_pos
;
4328 if (EQ (XCAR (spec
), Qleft_fringe
))
4330 it
->left_user_fringe_bitmap
= fringe_bitmap
;
4331 it
->left_user_fringe_face_id
= face_id
;
4335 it
->right_user_fringe_bitmap
= fringe_bitmap
;
4336 it
->right_user_fringe_face_id
= face_id
;
4338 #endif /* HAVE_WINDOW_SYSTEM */
4342 /* Prepare to handle `((margin left-margin) ...)',
4343 `((margin right-margin) ...)' and `((margin nil) ...)'
4344 prefixes for display specifications. */
4345 location
= Qunbound
;
4346 if (CONSP (spec
) && CONSP (XCAR (spec
)))
4350 value
= XCDR (spec
);
4352 value
= XCAR (value
);
4355 if (EQ (XCAR (tem
), Qmargin
)
4356 && (tem
= XCDR (tem
),
4357 tem
= CONSP (tem
) ? XCAR (tem
) : Qnil
,
4359 || EQ (tem
, Qleft_margin
)
4360 || EQ (tem
, Qright_margin
))))
4364 if (EQ (location
, Qunbound
))
4370 /* After this point, VALUE is the property after any
4371 margin prefix has been stripped. It must be a string,
4372 an image specification, or `(space ...)'.
4374 LOCATION specifies where to display: `left-margin',
4375 `right-margin' or nil. */
4377 valid_p
= (STRINGP (value
)
4378 #ifdef HAVE_WINDOW_SYSTEM
4379 || (FRAME_WINDOW_P (it
->f
) && valid_image_p (value
))
4380 #endif /* not HAVE_WINDOW_SYSTEM */
4381 || (CONSP (value
) && EQ (XCAR (value
), Qspace
)));
4383 if (valid_p
&& !display_replaced_before_p
)
4385 /* Save current settings of IT so that we can restore them
4386 when we are finished with the glyph property value. */
4387 save_pos
= it
->position
;
4388 it
->position
= *position
;
4390 it
->position
= save_pos
;
4391 it
->from_overlay
= overlay
;
4393 if (NILP (location
))
4394 it
->area
= TEXT_AREA
;
4395 else if (EQ (location
, Qleft_margin
))
4396 it
->area
= LEFT_MARGIN_AREA
;
4398 it
->area
= RIGHT_MARGIN_AREA
;
4400 if (STRINGP (value
))
4403 it
->multibyte_p
= STRING_MULTIBYTE (it
->string
);
4404 it
->current
.overlay_string_index
= -1;
4405 IT_STRING_CHARPOS (*it
) = IT_STRING_BYTEPOS (*it
) = 0;
4406 it
->end_charpos
= it
->string_nchars
= SCHARS (it
->string
);
4407 it
->method
= GET_FROM_STRING
;
4408 it
->stop_charpos
= 0;
4409 it
->string_from_display_prop_p
= 1;
4410 /* Say that we haven't consumed the characters with
4411 `display' property yet. The call to pop_it in
4412 set_iterator_to_next will clean this up. */
4413 if (BUFFERP (object
))
4414 *position
= start_pos
;
4416 else if (CONSP (value
) && EQ (XCAR (value
), Qspace
))
4418 it
->method
= GET_FROM_STRETCH
;
4420 *position
= it
->position
= start_pos
;
4422 #ifdef HAVE_WINDOW_SYSTEM
4425 it
->what
= IT_IMAGE
;
4426 it
->image_id
= lookup_image (it
->f
, value
);
4427 it
->position
= start_pos
;
4428 it
->object
= NILP (object
) ? it
->w
->buffer
: object
;
4429 it
->method
= GET_FROM_IMAGE
;
4431 /* Say that we haven't consumed the characters with
4432 `display' property yet. The call to pop_it in
4433 set_iterator_to_next will clean this up. */
4434 *position
= start_pos
;
4436 #endif /* HAVE_WINDOW_SYSTEM */
4441 /* Invalid property or property not supported. Restore
4442 POSITION to what it was before. */
4443 *position
= start_pos
;
4448 /* Check if SPEC is a display sub-property value whose text should be
4449 treated as intangible. */
4452 single_display_spec_intangible_p (prop
)
4455 /* Skip over `when FORM'. */
4456 if (CONSP (prop
) && EQ (XCAR (prop
), Qwhen
))
4470 /* Skip over `margin LOCATION'. If LOCATION is in the margins,
4471 we don't need to treat text as intangible. */
4472 if (EQ (XCAR (prop
), Qmargin
))
4480 || EQ (XCAR (prop
), Qleft_margin
)
4481 || EQ (XCAR (prop
), Qright_margin
))
4485 return (CONSP (prop
)
4486 && (EQ (XCAR (prop
), Qimage
)
4487 || EQ (XCAR (prop
), Qspace
)));
4491 /* Check if PROP is a display property value whose text should be
4492 treated as intangible. */
4495 display_prop_intangible_p (prop
)
4499 && CONSP (XCAR (prop
))
4500 && !EQ (Qmargin
, XCAR (XCAR (prop
))))
4502 /* A list of sub-properties. */
4503 while (CONSP (prop
))
4505 if (single_display_spec_intangible_p (XCAR (prop
)))
4510 else if (VECTORP (prop
))
4512 /* A vector of sub-properties. */
4514 for (i
= 0; i
< ASIZE (prop
); ++i
)
4515 if (single_display_spec_intangible_p (AREF (prop
, i
)))
4519 return single_display_spec_intangible_p (prop
);
4525 /* Return 1 if PROP is a display sub-property value containing STRING. */
4528 single_display_spec_string_p (prop
, string
)
4529 Lisp_Object prop
, string
;
4531 if (EQ (string
, prop
))
4534 /* Skip over `when FORM'. */
4535 if (CONSP (prop
) && EQ (XCAR (prop
), Qwhen
))
4544 /* Skip over `margin LOCATION'. */
4545 if (EQ (XCAR (prop
), Qmargin
))
4556 return CONSP (prop
) && EQ (XCAR (prop
), string
);
4560 /* Return 1 if STRING appears in the `display' property PROP. */
4563 display_prop_string_p (prop
, string
)
4564 Lisp_Object prop
, string
;
4567 && CONSP (XCAR (prop
))
4568 && !EQ (Qmargin
, XCAR (XCAR (prop
))))
4570 /* A list of sub-properties. */
4571 while (CONSP (prop
))
4573 if (single_display_spec_string_p (XCAR (prop
), string
))
4578 else if (VECTORP (prop
))
4580 /* A vector of sub-properties. */
4582 for (i
= 0; i
< ASIZE (prop
); ++i
)
4583 if (single_display_spec_string_p (AREF (prop
, i
), string
))
4587 return single_display_spec_string_p (prop
, string
);
4593 /* Determine from which buffer position in W's buffer STRING comes
4594 from. AROUND_CHARPOS is an approximate position where it could
4595 be from. Value is the buffer position or 0 if it couldn't be
4598 W's buffer must be current.
4600 This function is necessary because we don't record buffer positions
4601 in glyphs generated from strings (to keep struct glyph small).
4602 This function may only use code that doesn't eval because it is
4603 called asynchronously from note_mouse_highlight. */
4606 string_buffer_position (w
, string
, around_charpos
)
4611 Lisp_Object limit
, prop
, pos
;
4612 const int MAX_DISTANCE
= 1000;
4615 pos
= make_number (around_charpos
);
4616 limit
= make_number (min (XINT (pos
) + MAX_DISTANCE
, ZV
));
4617 while (!found
&& !EQ (pos
, limit
))
4619 prop
= Fget_char_property (pos
, Qdisplay
, Qnil
);
4620 if (!NILP (prop
) && display_prop_string_p (prop
, string
))
4623 pos
= Fnext_single_char_property_change (pos
, Qdisplay
, Qnil
, limit
);
4628 pos
= make_number (around_charpos
);
4629 limit
= make_number (max (XINT (pos
) - MAX_DISTANCE
, BEGV
));
4630 while (!found
&& !EQ (pos
, limit
))
4632 prop
= Fget_char_property (pos
, Qdisplay
, Qnil
);
4633 if (!NILP (prop
) && display_prop_string_p (prop
, string
))
4636 pos
= Fprevious_single_char_property_change (pos
, Qdisplay
, Qnil
,
4641 return found
? XINT (pos
) : 0;
4646 /***********************************************************************
4647 `composition' property
4648 ***********************************************************************/
4650 /* Set up iterator IT from `composition' property at its current
4651 position. Called from handle_stop. */
4653 static enum prop_handled
4654 handle_composition_prop (it
)
4657 Lisp_Object prop
, string
;
4658 EMACS_INT pos
, pos_byte
, start
, end
;
4660 if (STRINGP (it
->string
))
4664 pos
= IT_STRING_CHARPOS (*it
);
4665 pos_byte
= IT_STRING_BYTEPOS (*it
);
4666 string
= it
->string
;
4667 s
= SDATA (string
) + pos_byte
;
4668 it
->c
= STRING_CHAR (s
, 0);
4672 pos
= IT_CHARPOS (*it
);
4673 pos_byte
= IT_BYTEPOS (*it
);
4675 it
->c
= FETCH_CHAR (pos_byte
);
4678 /* If there's a valid composition and point is not inside of the
4679 composition (in the case that the composition is from the current
4680 buffer), draw a glyph composed from the composition components. */
4681 if (find_composition (pos
, -1, &start
, &end
, &prop
, string
)
4682 && COMPOSITION_VALID_P (start
, end
, prop
)
4683 && (STRINGP (it
->string
) || (PT
<= start
|| PT
>= end
)))
4687 if (STRINGP (it
->string
))
4688 pos_byte
= string_char_to_byte (it
->string
, start
);
4690 pos_byte
= CHAR_TO_BYTE (start
);
4692 it
->cmp_it
.id
= get_composition_id (start
, pos_byte
, end
- start
,
4695 if (it
->cmp_it
.id
>= 0)
4698 it
->cmp_it
.nchars
= COMPOSITION_LENGTH (prop
);
4699 it
->cmp_it
.nglyphs
= -1;
4703 return HANDLED_NORMALLY
;
4708 /***********************************************************************
4710 ***********************************************************************/
4712 /* The following structure is used to record overlay strings for
4713 later sorting in load_overlay_strings. */
4715 struct overlay_entry
4717 Lisp_Object overlay
;
4724 /* Set up iterator IT from overlay strings at its current position.
4725 Called from handle_stop. */
4727 static enum prop_handled
4728 handle_overlay_change (it
)
4731 if (!STRINGP (it
->string
) && get_overlay_strings (it
, 0))
4732 return HANDLED_RECOMPUTE_PROPS
;
4734 return HANDLED_NORMALLY
;
4738 /* Set up the next overlay string for delivery by IT, if there is an
4739 overlay string to deliver. Called by set_iterator_to_next when the
4740 end of the current overlay string is reached. If there are more
4741 overlay strings to display, IT->string and
4742 IT->current.overlay_string_index are set appropriately here.
4743 Otherwise IT->string is set to nil. */
4746 next_overlay_string (it
)
4749 ++it
->current
.overlay_string_index
;
4750 if (it
->current
.overlay_string_index
== it
->n_overlay_strings
)
4752 /* No more overlay strings. Restore IT's settings to what
4753 they were before overlay strings were processed, and
4754 continue to deliver from current_buffer. */
4756 it
->ellipsis_p
= (it
->stack
[it
->sp
- 1].display_ellipsis_p
!= 0);
4759 || (NILP (it
->string
)
4760 && it
->method
== GET_FROM_BUFFER
4761 && it
->stop_charpos
>= BEGV
4762 && it
->stop_charpos
<= it
->end_charpos
));
4763 it
->current
.overlay_string_index
= -1;
4764 it
->n_overlay_strings
= 0;
4766 /* If we're at the end of the buffer, record that we have
4767 processed the overlay strings there already, so that
4768 next_element_from_buffer doesn't try it again. */
4769 if (NILP (it
->string
) && IT_CHARPOS (*it
) >= it
->end_charpos
)
4770 it
->overlay_strings_at_end_processed_p
= 1;
4774 /* There are more overlay strings to process. If
4775 IT->current.overlay_string_index has advanced to a position
4776 where we must load IT->overlay_strings with more strings, do
4778 int i
= it
->current
.overlay_string_index
% OVERLAY_STRING_CHUNK_SIZE
;
4780 if (it
->current
.overlay_string_index
&& i
== 0)
4781 load_overlay_strings (it
, 0);
4783 /* Initialize IT to deliver display elements from the overlay
4785 it
->string
= it
->overlay_strings
[i
];
4786 it
->multibyte_p
= STRING_MULTIBYTE (it
->string
);
4787 SET_TEXT_POS (it
->current
.string_pos
, 0, 0);
4788 it
->method
= GET_FROM_STRING
;
4789 it
->stop_charpos
= 0;
4790 if (it
->cmp_it
.stop_pos
>= 0)
4791 it
->cmp_it
.stop_pos
= 0;
4798 /* Compare two overlay_entry structures E1 and E2. Used as a
4799 comparison function for qsort in load_overlay_strings. Overlay
4800 strings for the same position are sorted so that
4802 1. All after-strings come in front of before-strings, except
4803 when they come from the same overlay.
4805 2. Within after-strings, strings are sorted so that overlay strings
4806 from overlays with higher priorities come first.
4808 2. Within before-strings, strings are sorted so that overlay
4809 strings from overlays with higher priorities come last.
4811 Value is analogous to strcmp. */
4815 compare_overlay_entries (e1
, e2
)
4818 struct overlay_entry
*entry1
= (struct overlay_entry
*) e1
;
4819 struct overlay_entry
*entry2
= (struct overlay_entry
*) e2
;
4822 if (entry1
->after_string_p
!= entry2
->after_string_p
)
4824 /* Let after-strings appear in front of before-strings if
4825 they come from different overlays. */
4826 if (EQ (entry1
->overlay
, entry2
->overlay
))
4827 result
= entry1
->after_string_p
? 1 : -1;
4829 result
= entry1
->after_string_p
? -1 : 1;
4831 else if (entry1
->after_string_p
)
4832 /* After-strings sorted in order of decreasing priority. */
4833 result
= entry2
->priority
- entry1
->priority
;
4835 /* Before-strings sorted in order of increasing priority. */
4836 result
= entry1
->priority
- entry2
->priority
;
4842 /* Load the vector IT->overlay_strings with overlay strings from IT's
4843 current buffer position, or from CHARPOS if that is > 0. Set
4844 IT->n_overlays to the total number of overlay strings found.
4846 Overlay strings are processed OVERLAY_STRING_CHUNK_SIZE strings at
4847 a time. On entry into load_overlay_strings,
4848 IT->current.overlay_string_index gives the number of overlay
4849 strings that have already been loaded by previous calls to this
4852 IT->add_overlay_start contains an additional overlay start
4853 position to consider for taking overlay strings from, if non-zero.
4854 This position comes into play when the overlay has an `invisible'
4855 property, and both before and after-strings. When we've skipped to
4856 the end of the overlay, because of its `invisible' property, we
4857 nevertheless want its before-string to appear.
4858 IT->add_overlay_start will contain the overlay start position
4861 Overlay strings are sorted so that after-string strings come in
4862 front of before-string strings. Within before and after-strings,
4863 strings are sorted by overlay priority. See also function
4864 compare_overlay_entries. */
4867 load_overlay_strings (it
, charpos
)
4871 extern Lisp_Object Qafter_string
, Qbefore_string
, Qwindow
, Qpriority
;
4872 Lisp_Object overlay
, window
, str
, invisible
;
4873 struct Lisp_Overlay
*ov
;
4876 int n
= 0, i
, j
, invis_p
;
4877 struct overlay_entry
*entries
4878 = (struct overlay_entry
*) alloca (size
* sizeof *entries
);
4881 charpos
= IT_CHARPOS (*it
);
4883 /* Append the overlay string STRING of overlay OVERLAY to vector
4884 `entries' which has size `size' and currently contains `n'
4885 elements. AFTER_P non-zero means STRING is an after-string of
4887 #define RECORD_OVERLAY_STRING(OVERLAY, STRING, AFTER_P) \
4890 Lisp_Object priority; \
4894 int new_size = 2 * size; \
4895 struct overlay_entry *old = entries; \
4897 (struct overlay_entry *) alloca (new_size \
4898 * sizeof *entries); \
4899 bcopy (old, entries, size * sizeof *entries); \
4903 entries[n].string = (STRING); \
4904 entries[n].overlay = (OVERLAY); \
4905 priority = Foverlay_get ((OVERLAY), Qpriority); \
4906 entries[n].priority = INTEGERP (priority) ? XINT (priority) : 0; \
4907 entries[n].after_string_p = (AFTER_P); \
4912 /* Process overlay before the overlay center. */
4913 for (ov
= current_buffer
->overlays_before
; ov
; ov
= ov
->next
)
4915 XSETMISC (overlay
, ov
);
4916 xassert (OVERLAYP (overlay
));
4917 start
= OVERLAY_POSITION (OVERLAY_START (overlay
));
4918 end
= OVERLAY_POSITION (OVERLAY_END (overlay
));
4923 /* Skip this overlay if it doesn't start or end at IT's current
4925 if (end
!= charpos
&& start
!= charpos
)
4928 /* Skip this overlay if it doesn't apply to IT->w. */
4929 window
= Foverlay_get (overlay
, Qwindow
);
4930 if (WINDOWP (window
) && XWINDOW (window
) != it
->w
)
4933 /* If the text ``under'' the overlay is invisible, both before-
4934 and after-strings from this overlay are visible; start and
4935 end position are indistinguishable. */
4936 invisible
= Foverlay_get (overlay
, Qinvisible
);
4937 invis_p
= TEXT_PROP_MEANS_INVISIBLE (invisible
);
4939 /* If overlay has a non-empty before-string, record it. */
4940 if ((start
== charpos
|| (end
== charpos
&& invis_p
))
4941 && (str
= Foverlay_get (overlay
, Qbefore_string
), STRINGP (str
))
4943 RECORD_OVERLAY_STRING (overlay
, str
, 0);
4945 /* If overlay has a non-empty after-string, record it. */
4946 if ((end
== charpos
|| (start
== charpos
&& invis_p
))
4947 && (str
= Foverlay_get (overlay
, Qafter_string
), STRINGP (str
))
4949 RECORD_OVERLAY_STRING (overlay
, str
, 1);
4952 /* Process overlays after the overlay center. */
4953 for (ov
= current_buffer
->overlays_after
; ov
; ov
= ov
->next
)
4955 XSETMISC (overlay
, ov
);
4956 xassert (OVERLAYP (overlay
));
4957 start
= OVERLAY_POSITION (OVERLAY_START (overlay
));
4958 end
= OVERLAY_POSITION (OVERLAY_END (overlay
));
4960 if (start
> charpos
)
4963 /* Skip this overlay if it doesn't start or end at IT's current
4965 if (end
!= charpos
&& start
!= charpos
)
4968 /* Skip this overlay if it doesn't apply to IT->w. */
4969 window
= Foverlay_get (overlay
, Qwindow
);
4970 if (WINDOWP (window
) && XWINDOW (window
) != it
->w
)
4973 /* If the text ``under'' the overlay is invisible, it has a zero
4974 dimension, and both before- and after-strings apply. */
4975 invisible
= Foverlay_get (overlay
, Qinvisible
);
4976 invis_p
= TEXT_PROP_MEANS_INVISIBLE (invisible
);
4978 /* If overlay has a non-empty before-string, record it. */
4979 if ((start
== charpos
|| (end
== charpos
&& invis_p
))
4980 && (str
= Foverlay_get (overlay
, Qbefore_string
), STRINGP (str
))
4982 RECORD_OVERLAY_STRING (overlay
, str
, 0);
4984 /* If overlay has a non-empty after-string, record it. */
4985 if ((end
== charpos
|| (start
== charpos
&& invis_p
))
4986 && (str
= Foverlay_get (overlay
, Qafter_string
), STRINGP (str
))
4988 RECORD_OVERLAY_STRING (overlay
, str
, 1);
4991 #undef RECORD_OVERLAY_STRING
4995 qsort (entries
, n
, sizeof *entries
, compare_overlay_entries
);
4997 /* Record the total number of strings to process. */
4998 it
->n_overlay_strings
= n
;
5000 /* IT->current.overlay_string_index is the number of overlay strings
5001 that have already been consumed by IT. Copy some of the
5002 remaining overlay strings to IT->overlay_strings. */
5004 j
= it
->current
.overlay_string_index
;
5005 while (i
< OVERLAY_STRING_CHUNK_SIZE
&& j
< n
)
5007 it
->overlay_strings
[i
] = entries
[j
].string
;
5008 it
->string_overlays
[i
++] = entries
[j
++].overlay
;
5015 /* Get the first chunk of overlay strings at IT's current buffer
5016 position, or at CHARPOS if that is > 0. Value is non-zero if at
5017 least one overlay string was found. */
5020 get_overlay_strings_1 (it
, charpos
, compute_stop_p
)
5025 /* Get the first OVERLAY_STRING_CHUNK_SIZE overlay strings to
5026 process. This fills IT->overlay_strings with strings, and sets
5027 IT->n_overlay_strings to the total number of strings to process.
5028 IT->pos.overlay_string_index has to be set temporarily to zero
5029 because load_overlay_strings needs this; it must be set to -1
5030 when no overlay strings are found because a zero value would
5031 indicate a position in the first overlay string. */
5032 it
->current
.overlay_string_index
= 0;
5033 load_overlay_strings (it
, charpos
);
5035 /* If we found overlay strings, set up IT to deliver display
5036 elements from the first one. Otherwise set up IT to deliver
5037 from current_buffer. */
5038 if (it
->n_overlay_strings
)
5040 /* Make sure we know settings in current_buffer, so that we can
5041 restore meaningful values when we're done with the overlay
5044 compute_stop_pos (it
);
5045 xassert (it
->face_id
>= 0);
5047 /* Save IT's settings. They are restored after all overlay
5048 strings have been processed. */
5049 xassert (!compute_stop_p
|| it
->sp
== 0);
5051 /* When called from handle_stop, there might be an empty display
5052 string loaded. In that case, don't bother saving it. */
5053 if (!STRINGP (it
->string
) || SCHARS (it
->string
))
5056 /* Set up IT to deliver display elements from the first overlay
5058 IT_STRING_CHARPOS (*it
) = IT_STRING_BYTEPOS (*it
) = 0;
5059 it
->string
= it
->overlay_strings
[0];
5060 it
->from_overlay
= Qnil
;
5061 it
->stop_charpos
= 0;
5062 xassert (STRINGP (it
->string
));
5063 it
->end_charpos
= SCHARS (it
->string
);
5064 it
->multibyte_p
= STRING_MULTIBYTE (it
->string
);
5065 it
->method
= GET_FROM_STRING
;
5069 it
->current
.overlay_string_index
= -1;
5074 get_overlay_strings (it
, charpos
)
5079 it
->method
= GET_FROM_BUFFER
;
5081 (void) get_overlay_strings_1 (it
, charpos
, 1);
5085 /* Value is non-zero if we found at least one overlay string. */
5086 return STRINGP (it
->string
);
5091 /***********************************************************************
5092 Saving and restoring state
5093 ***********************************************************************/
5095 /* Save current settings of IT on IT->stack. Called, for example,
5096 before setting up IT for an overlay string, to be able to restore
5097 IT's settings to what they were after the overlay string has been
5104 struct iterator_stack_entry
*p
;
5106 xassert (it
->sp
< IT_STACK_SIZE
);
5107 p
= it
->stack
+ it
->sp
;
5109 p
->stop_charpos
= it
->stop_charpos
;
5110 p
->cmp_it
= it
->cmp_it
;
5111 xassert (it
->face_id
>= 0);
5112 p
->face_id
= it
->face_id
;
5113 p
->string
= it
->string
;
5114 p
->method
= it
->method
;
5115 p
->from_overlay
= it
->from_overlay
;
5118 case GET_FROM_IMAGE
:
5119 p
->u
.image
.object
= it
->object
;
5120 p
->u
.image
.image_id
= it
->image_id
;
5121 p
->u
.image
.slice
= it
->slice
;
5123 case GET_FROM_STRETCH
:
5124 p
->u
.stretch
.object
= it
->object
;
5127 p
->position
= it
->position
;
5128 p
->current
= it
->current
;
5129 p
->end_charpos
= it
->end_charpos
;
5130 p
->string_nchars
= it
->string_nchars
;
5132 p
->multibyte_p
= it
->multibyte_p
;
5133 p
->avoid_cursor_p
= it
->avoid_cursor_p
;
5134 p
->space_width
= it
->space_width
;
5135 p
->font_height
= it
->font_height
;
5136 p
->voffset
= it
->voffset
;
5137 p
->string_from_display_prop_p
= it
->string_from_display_prop_p
;
5138 p
->display_ellipsis_p
= 0;
5139 p
->line_wrap
= it
->line_wrap
;
5144 /* Restore IT's settings from IT->stack. Called, for example, when no
5145 more overlay strings must be processed, and we return to delivering
5146 display elements from a buffer, or when the end of a string from a
5147 `display' property is reached and we return to delivering display
5148 elements from an overlay string, or from a buffer. */
5154 struct iterator_stack_entry
*p
;
5156 xassert (it
->sp
> 0);
5158 p
= it
->stack
+ it
->sp
;
5159 it
->stop_charpos
= p
->stop_charpos
;
5160 it
->cmp_it
= p
->cmp_it
;
5161 it
->face_id
= p
->face_id
;
5162 it
->current
= p
->current
;
5163 it
->position
= p
->position
;
5164 it
->string
= p
->string
;
5165 it
->from_overlay
= p
->from_overlay
;
5166 if (NILP (it
->string
))
5167 SET_TEXT_POS (it
->current
.string_pos
, -1, -1);
5168 it
->method
= p
->method
;
5171 case GET_FROM_IMAGE
:
5172 it
->image_id
= p
->u
.image
.image_id
;
5173 it
->object
= p
->u
.image
.object
;
5174 it
->slice
= p
->u
.image
.slice
;
5176 case GET_FROM_STRETCH
:
5177 it
->object
= p
->u
.comp
.object
;
5179 case GET_FROM_BUFFER
:
5180 it
->object
= it
->w
->buffer
;
5182 case GET_FROM_STRING
:
5183 it
->object
= it
->string
;
5186 it
->end_charpos
= p
->end_charpos
;
5187 it
->string_nchars
= p
->string_nchars
;
5189 it
->multibyte_p
= p
->multibyte_p
;
5190 it
->avoid_cursor_p
= p
->avoid_cursor_p
;
5191 it
->space_width
= p
->space_width
;
5192 it
->font_height
= p
->font_height
;
5193 it
->voffset
= p
->voffset
;
5194 it
->string_from_display_prop_p
= p
->string_from_display_prop_p
;
5195 it
->line_wrap
= p
->line_wrap
;
5200 /***********************************************************************
5202 ***********************************************************************/
5204 /* Set IT's current position to the previous line start. */
5207 back_to_previous_line_start (it
)
5210 IT_CHARPOS (*it
) = find_next_newline_no_quit (IT_CHARPOS (*it
) - 1, -1);
5211 IT_BYTEPOS (*it
) = CHAR_TO_BYTE (IT_CHARPOS (*it
));
5215 /* Move IT to the next line start.
5217 Value is non-zero if a newline was found. Set *SKIPPED_P to 1 if
5218 we skipped over part of the text (as opposed to moving the iterator
5219 continuously over the text). Otherwise, don't change the value
5222 Newlines may come from buffer text, overlay strings, or strings
5223 displayed via the `display' property. That's the reason we can't
5224 simply use find_next_newline_no_quit.
5226 Note that this function may not skip over invisible text that is so
5227 because of text properties and immediately follows a newline. If
5228 it would, function reseat_at_next_visible_line_start, when called
5229 from set_iterator_to_next, would effectively make invisible
5230 characters following a newline part of the wrong glyph row, which
5231 leads to wrong cursor motion. */
5234 forward_to_next_line_start (it
, skipped_p
)
5238 int old_selective
, newline_found_p
, n
;
5239 const int MAX_NEWLINE_DISTANCE
= 500;
5241 /* If already on a newline, just consume it to avoid unintended
5242 skipping over invisible text below. */
5243 if (it
->what
== IT_CHARACTER
5245 && CHARPOS (it
->position
) == IT_CHARPOS (*it
))
5247 set_iterator_to_next (it
, 0);
5252 /* Don't handle selective display in the following. It's (a)
5253 unnecessary because it's done by the caller, and (b) leads to an
5254 infinite recursion because next_element_from_ellipsis indirectly
5255 calls this function. */
5256 old_selective
= it
->selective
;
5259 /* Scan for a newline within MAX_NEWLINE_DISTANCE display elements
5260 from buffer text. */
5261 for (n
= newline_found_p
= 0;
5262 !newline_found_p
&& n
< MAX_NEWLINE_DISTANCE
;
5263 n
+= STRINGP (it
->string
) ? 0 : 1)
5265 if (!get_next_display_element (it
))
5267 newline_found_p
= it
->what
== IT_CHARACTER
&& it
->c
== '\n';
5268 set_iterator_to_next (it
, 0);
5271 /* If we didn't find a newline near enough, see if we can use a
5273 if (!newline_found_p
)
5275 int start
= IT_CHARPOS (*it
);
5276 int limit
= find_next_newline_no_quit (start
, 1);
5279 xassert (!STRINGP (it
->string
));
5281 /* If there isn't any `display' property in sight, and no
5282 overlays, we can just use the position of the newline in
5284 if (it
->stop_charpos
>= limit
5285 || ((pos
= Fnext_single_property_change (make_number (start
),
5287 Qnil
, make_number (limit
)),
5289 && next_overlay_change (start
) == ZV
))
5291 IT_CHARPOS (*it
) = limit
;
5292 IT_BYTEPOS (*it
) = CHAR_TO_BYTE (limit
);
5293 *skipped_p
= newline_found_p
= 1;
5297 while (get_next_display_element (it
)
5298 && !newline_found_p
)
5300 newline_found_p
= ITERATOR_AT_END_OF_LINE_P (it
);
5301 set_iterator_to_next (it
, 0);
5306 it
->selective
= old_selective
;
5307 return newline_found_p
;
5311 /* Set IT's current position to the previous visible line start. Skip
5312 invisible text that is so either due to text properties or due to
5313 selective display. Caution: this does not change IT->current_x and
5317 back_to_previous_visible_line_start (it
)
5320 while (IT_CHARPOS (*it
) > BEGV
)
5322 back_to_previous_line_start (it
);
5324 if (IT_CHARPOS (*it
) <= BEGV
)
5327 /* If selective > 0, then lines indented more than that values
5329 if (it
->selective
> 0
5330 && indented_beyond_p (IT_CHARPOS (*it
), IT_BYTEPOS (*it
),
5331 (double) it
->selective
)) /* iftc */
5334 /* Check the newline before point for invisibility. */
5337 prop
= Fget_char_property (make_number (IT_CHARPOS (*it
) - 1),
5338 Qinvisible
, it
->window
);
5339 if (TEXT_PROP_MEANS_INVISIBLE (prop
))
5343 if (IT_CHARPOS (*it
) <= BEGV
)
5350 Lisp_Object val
, overlay
;
5352 /* If newline is part of a composition, continue from start of composition */
5353 if (find_composition (IT_CHARPOS (*it
), -1, &beg
, &end
, &val
, Qnil
)
5354 && beg
< IT_CHARPOS (*it
))
5357 /* If newline is replaced by a display property, find start of overlay
5358 or interval and continue search from that point. */
5360 pos
= --IT_CHARPOS (it2
);
5363 it2
.string_from_display_prop_p
= 0;
5364 if (handle_display_prop (&it2
) == HANDLED_RETURN
5365 && !NILP (val
= get_char_property_and_overlay
5366 (make_number (pos
), Qdisplay
, Qnil
, &overlay
))
5367 && (OVERLAYP (overlay
)
5368 ? (beg
= OVERLAY_POSITION (OVERLAY_START (overlay
)))
5369 : get_property_and_range (pos
, Qdisplay
, &val
, &beg
, &end
, Qnil
)))
5372 /* Newline is not replaced by anything -- so we are done. */
5378 IT_CHARPOS (*it
) = beg
;
5379 IT_BYTEPOS (*it
) = buf_charpos_to_bytepos (current_buffer
, beg
);
5383 it
->continuation_lines_width
= 0;
5385 xassert (IT_CHARPOS (*it
) >= BEGV
);
5386 xassert (IT_CHARPOS (*it
) == BEGV
5387 || FETCH_BYTE (IT_BYTEPOS (*it
) - 1) == '\n');
5392 /* Reseat iterator IT at the previous visible line start. Skip
5393 invisible text that is so either due to text properties or due to
5394 selective display. At the end, update IT's overlay information,
5395 face information etc. */
5398 reseat_at_previous_visible_line_start (it
)
5401 back_to_previous_visible_line_start (it
);
5402 reseat (it
, it
->current
.pos
, 1);
5407 /* Reseat iterator IT on the next visible line start in the current
5408 buffer. ON_NEWLINE_P non-zero means position IT on the newline
5409 preceding the line start. Skip over invisible text that is so
5410 because of selective display. Compute faces, overlays etc at the
5411 new position. Note that this function does not skip over text that
5412 is invisible because of text properties. */
5415 reseat_at_next_visible_line_start (it
, on_newline_p
)
5419 int newline_found_p
, skipped_p
= 0;
5421 newline_found_p
= forward_to_next_line_start (it
, &skipped_p
);
5423 /* Skip over lines that are invisible because they are indented
5424 more than the value of IT->selective. */
5425 if (it
->selective
> 0)
5426 while (IT_CHARPOS (*it
) < ZV
5427 && indented_beyond_p (IT_CHARPOS (*it
), IT_BYTEPOS (*it
),
5428 (double) it
->selective
)) /* iftc */
5430 xassert (IT_BYTEPOS (*it
) == BEGV
5431 || FETCH_BYTE (IT_BYTEPOS (*it
) - 1) == '\n');
5432 newline_found_p
= forward_to_next_line_start (it
, &skipped_p
);
5435 /* Position on the newline if that's what's requested. */
5436 if (on_newline_p
&& newline_found_p
)
5438 if (STRINGP (it
->string
))
5440 if (IT_STRING_CHARPOS (*it
) > 0)
5442 --IT_STRING_CHARPOS (*it
);
5443 --IT_STRING_BYTEPOS (*it
);
5446 else if (IT_CHARPOS (*it
) > BEGV
)
5450 reseat (it
, it
->current
.pos
, 0);
5454 reseat (it
, it
->current
.pos
, 0);
5461 /***********************************************************************
5462 Changing an iterator's position
5463 ***********************************************************************/
5465 /* Change IT's current position to POS in current_buffer. If FORCE_P
5466 is non-zero, always check for text properties at the new position.
5467 Otherwise, text properties are only looked up if POS >=
5468 IT->check_charpos of a property. */
5471 reseat (it
, pos
, force_p
)
5473 struct text_pos pos
;
5476 int original_pos
= IT_CHARPOS (*it
);
5478 reseat_1 (it
, pos
, 0);
5480 /* Determine where to check text properties. Avoid doing it
5481 where possible because text property lookup is very expensive. */
5483 || CHARPOS (pos
) > it
->stop_charpos
5484 || CHARPOS (pos
) < original_pos
)
5491 /* Change IT's buffer position to POS. SET_STOP_P non-zero means set
5492 IT->stop_pos to POS, also. */
5495 reseat_1 (it
, pos
, set_stop_p
)
5497 struct text_pos pos
;
5500 /* Don't call this function when scanning a C string. */
5501 xassert (it
->s
== NULL
);
5503 /* POS must be a reasonable value. */
5504 xassert (CHARPOS (pos
) >= BEGV
&& CHARPOS (pos
) <= ZV
);
5506 it
->current
.pos
= it
->position
= pos
;
5507 it
->end_charpos
= ZV
;
5509 it
->current
.dpvec_index
= -1;
5510 it
->current
.overlay_string_index
= -1;
5511 IT_STRING_CHARPOS (*it
) = -1;
5512 IT_STRING_BYTEPOS (*it
) = -1;
5514 it
->string_from_display_prop_p
= 0;
5515 it
->method
= GET_FROM_BUFFER
;
5516 it
->object
= it
->w
->buffer
;
5517 it
->area
= TEXT_AREA
;
5518 it
->multibyte_p
= !NILP (current_buffer
->enable_multibyte_characters
);
5520 it
->string_from_display_prop_p
= 0;
5521 it
->face_before_selective_p
= 0;
5524 it
->stop_charpos
= CHARPOS (pos
);
5528 /* Set up IT for displaying a string, starting at CHARPOS in window W.
5529 If S is non-null, it is a C string to iterate over. Otherwise,
5530 STRING gives a Lisp string to iterate over.
5532 If PRECISION > 0, don't return more then PRECISION number of
5533 characters from the string.
5535 If FIELD_WIDTH > 0, return padding spaces until FIELD_WIDTH
5536 characters have been returned. FIELD_WIDTH < 0 means an infinite
5539 MULTIBYTE = 0 means disable processing of multibyte characters,
5540 MULTIBYTE > 0 means enable it,
5541 MULTIBYTE < 0 means use IT->multibyte_p.
5543 IT must be initialized via a prior call to init_iterator before
5544 calling this function. */
5547 reseat_to_string (it
, s
, string
, charpos
, precision
, field_width
, multibyte
)
5552 int precision
, field_width
, multibyte
;
5554 /* No region in strings. */
5555 it
->region_beg_charpos
= it
->region_end_charpos
= -1;
5557 /* No text property checks performed by default, but see below. */
5558 it
->stop_charpos
= -1;
5560 /* Set iterator position and end position. */
5561 bzero (&it
->current
, sizeof it
->current
);
5562 it
->current
.overlay_string_index
= -1;
5563 it
->current
.dpvec_index
= -1;
5564 xassert (charpos
>= 0);
5566 /* If STRING is specified, use its multibyteness, otherwise use the
5567 setting of MULTIBYTE, if specified. */
5569 it
->multibyte_p
= multibyte
> 0;
5573 xassert (STRINGP (string
));
5574 it
->string
= string
;
5576 it
->end_charpos
= it
->string_nchars
= SCHARS (string
);
5577 it
->method
= GET_FROM_STRING
;
5578 it
->current
.string_pos
= string_pos (charpos
, string
);
5585 /* Note that we use IT->current.pos, not it->current.string_pos,
5586 for displaying C strings. */
5587 IT_STRING_CHARPOS (*it
) = IT_STRING_BYTEPOS (*it
) = -1;
5588 if (it
->multibyte_p
)
5590 it
->current
.pos
= c_string_pos (charpos
, s
, 1);
5591 it
->end_charpos
= it
->string_nchars
= number_of_chars (s
, 1);
5595 IT_CHARPOS (*it
) = IT_BYTEPOS (*it
) = charpos
;
5596 it
->end_charpos
= it
->string_nchars
= strlen (s
);
5599 it
->method
= GET_FROM_C_STRING
;
5602 /* PRECISION > 0 means don't return more than PRECISION characters
5604 if (precision
> 0 && it
->end_charpos
- charpos
> precision
)
5605 it
->end_charpos
= it
->string_nchars
= charpos
+ precision
;
5607 /* FIELD_WIDTH > 0 means pad with spaces until FIELD_WIDTH
5608 characters have been returned. FIELD_WIDTH == 0 means don't pad,
5609 FIELD_WIDTH < 0 means infinite field width. This is useful for
5610 padding with `-' at the end of a mode line. */
5611 if (field_width
< 0)
5612 field_width
= INFINITY
;
5613 if (field_width
> it
->end_charpos
- charpos
)
5614 it
->end_charpos
= charpos
+ field_width
;
5616 /* Use the standard display table for displaying strings. */
5617 if (DISP_TABLE_P (Vstandard_display_table
))
5618 it
->dp
= XCHAR_TABLE (Vstandard_display_table
);
5620 it
->stop_charpos
= charpos
;
5626 /***********************************************************************
5628 ***********************************************************************/
5630 /* Map enum it_method value to corresponding next_element_from_* function. */
5632 static int (* get_next_element
[NUM_IT_METHODS
]) P_ ((struct it
*it
)) =
5634 next_element_from_buffer
,
5635 next_element_from_display_vector
,
5636 next_element_from_string
,
5637 next_element_from_c_string
,
5638 next_element_from_image
,
5639 next_element_from_stretch
5642 #define GET_NEXT_DISPLAY_ELEMENT(it) (*get_next_element[(it)->method]) (it)
5645 /* Return 1 iff a character at CHARPOS (and BYTEPOS) is composed
5646 (possibly with the following characters). */
5648 #define CHAR_COMPOSED_P(IT,CHARPOS,BYTEPOS) \
5649 ((IT)->cmp_it.id >= 0 \
5650 || ((IT)->cmp_it.stop_pos == (CHARPOS) \
5651 && composition_reseat_it (&(IT)->cmp_it, CHARPOS, BYTEPOS, \
5652 (IT)->end_charpos, (IT)->w, \
5653 FACE_FROM_ID ((IT)->f, (IT)->face_id), \
5657 /* Load IT's display element fields with information about the next
5658 display element from the current position of IT. Value is zero if
5659 end of buffer (or C string) is reached. */
5661 static struct frame
*last_escape_glyph_frame
= NULL
;
5662 static unsigned last_escape_glyph_face_id
= (1 << FACE_ID_BITS
);
5663 static int last_escape_glyph_merged_face_id
= 0;
5666 get_next_display_element (it
)
5669 /* Non-zero means that we found a display element. Zero means that
5670 we hit the end of what we iterate over. Performance note: the
5671 function pointer `method' used here turns out to be faster than
5672 using a sequence of if-statements. */
5676 success_p
= GET_NEXT_DISPLAY_ELEMENT (it
);
5678 if (it
->what
== IT_CHARACTER
)
5680 /* Map via display table or translate control characters.
5681 IT->c, IT->len etc. have been set to the next character by
5682 the function call above. If we have a display table, and it
5683 contains an entry for IT->c, translate it. Don't do this if
5684 IT->c itself comes from a display table, otherwise we could
5685 end up in an infinite recursion. (An alternative could be to
5686 count the recursion depth of this function and signal an
5687 error when a certain maximum depth is reached.) Is it worth
5689 if (success_p
&& it
->dpvec
== NULL
)
5694 && (dv
= DISP_CHAR_VECTOR (it
->dp
, it
->c
),
5697 struct Lisp_Vector
*v
= XVECTOR (dv
);
5699 /* Return the first character from the display table
5700 entry, if not empty. If empty, don't display the
5701 current character. */
5704 it
->dpvec_char_len
= it
->len
;
5705 it
->dpvec
= v
->contents
;
5706 it
->dpend
= v
->contents
+ v
->size
;
5707 it
->current
.dpvec_index
= 0;
5708 it
->dpvec_face_id
= -1;
5709 it
->saved_face_id
= it
->face_id
;
5710 it
->method
= GET_FROM_DISPLAY_VECTOR
;
5715 set_iterator_to_next (it
, 0);
5720 /* Translate control characters into `\003' or `^C' form.
5721 Control characters coming from a display table entry are
5722 currently not translated because we use IT->dpvec to hold
5723 the translation. This could easily be changed but I
5724 don't believe that it is worth doing.
5726 If it->multibyte_p is nonzero, non-printable non-ASCII
5727 characters are also translated to octal form.
5729 If it->multibyte_p is zero, eight-bit characters that
5730 don't have corresponding multibyte char code are also
5731 translated to octal form. */
5732 else if ((it
->c
< ' '
5733 ? (it
->area
!= TEXT_AREA
5734 /* In mode line, treat \n, \t like other crl chars. */
5737 && (it
->glyph_row
->mode_line_p
|| it
->avoid_cursor_p
))
5738 || (it
->c
!= '\n' && it
->c
!= '\t'))
5740 ? (!CHAR_PRINTABLE_P (it
->c
)
5741 || (!NILP (Vnobreak_char_display
)
5742 && (it
->c
== 0xA0 /* NO-BREAK SPACE */
5743 || it
->c
== 0xAD /* SOFT HYPHEN */)))
5745 && (! unibyte_display_via_language_environment
5746 || (UNIBYTE_CHAR_HAS_MULTIBYTE_P (it
->c
)))))))
5748 /* IT->c is a control character which must be displayed
5749 either as '\003' or as `^C' where the '\\' and '^'
5750 can be defined in the display table. Fill
5751 IT->ctl_chars with glyphs for what we have to
5752 display. Then, set IT->dpvec to these glyphs. */
5755 int face_id
, lface_id
= 0 ;
5758 /* Handle control characters with ^. */
5760 if (it
->c
< 128 && it
->ctl_arrow_p
)
5764 g
= '^'; /* default glyph for Control */
5765 /* Set IT->ctl_chars[0] to the glyph for `^'. */
5767 && (gc
= DISP_CTRL_GLYPH (it
->dp
), GLYPH_CODE_P (gc
))
5768 && GLYPH_CODE_CHAR_VALID_P (gc
))
5770 g
= GLYPH_CODE_CHAR (gc
);
5771 lface_id
= GLYPH_CODE_FACE (gc
);
5775 face_id
= merge_faces (it
->f
, Qt
, lface_id
, it
->face_id
);
5777 else if (it
->f
== last_escape_glyph_frame
5778 && it
->face_id
== last_escape_glyph_face_id
)
5780 face_id
= last_escape_glyph_merged_face_id
;
5784 /* Merge the escape-glyph face into the current face. */
5785 face_id
= merge_faces (it
->f
, Qescape_glyph
, 0,
5787 last_escape_glyph_frame
= it
->f
;
5788 last_escape_glyph_face_id
= it
->face_id
;
5789 last_escape_glyph_merged_face_id
= face_id
;
5792 XSETINT (it
->ctl_chars
[0], g
);
5793 XSETINT (it
->ctl_chars
[1], it
->c
^ 0100);
5795 goto display_control
;
5798 /* Handle non-break space in the mode where it only gets
5801 if (EQ (Vnobreak_char_display
, Qt
)
5804 /* Merge the no-break-space face into the current face. */
5805 face_id
= merge_faces (it
->f
, Qnobreak_space
, 0,
5809 XSETINT (it
->ctl_chars
[0], ' ');
5811 goto display_control
;
5814 /* Handle sequences that start with the "escape glyph". */
5816 /* the default escape glyph is \. */
5817 escape_glyph
= '\\';
5820 && (gc
= DISP_ESCAPE_GLYPH (it
->dp
), GLYPH_CODE_P (gc
))
5821 && GLYPH_CODE_CHAR_VALID_P (gc
))
5823 escape_glyph
= GLYPH_CODE_CHAR (gc
);
5824 lface_id
= GLYPH_CODE_FACE (gc
);
5828 /* The display table specified a face.
5829 Merge it into face_id and also into escape_glyph. */
5830 face_id
= merge_faces (it
->f
, Qt
, lface_id
,
5833 else if (it
->f
== last_escape_glyph_frame
5834 && it
->face_id
== last_escape_glyph_face_id
)
5836 face_id
= last_escape_glyph_merged_face_id
;
5840 /* Merge the escape-glyph face into the current face. */
5841 face_id
= merge_faces (it
->f
, Qescape_glyph
, 0,
5843 last_escape_glyph_frame
= it
->f
;
5844 last_escape_glyph_face_id
= it
->face_id
;
5845 last_escape_glyph_merged_face_id
= face_id
;
5848 /* Handle soft hyphens in the mode where they only get
5851 if (EQ (Vnobreak_char_display
, Qt
)
5855 XSETINT (it
->ctl_chars
[0], '-');
5857 goto display_control
;
5860 /* Handle non-break space and soft hyphen
5861 with the escape glyph. */
5863 if (it
->c
== 0xA0 || it
->c
== 0xAD)
5865 XSETINT (it
->ctl_chars
[0], escape_glyph
);
5866 it
->c
= (it
->c
== 0xA0 ? ' ' : '-');
5867 XSETINT (it
->ctl_chars
[1], it
->c
);
5869 goto display_control
;
5873 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
5877 /* Set IT->ctl_chars[0] to the glyph for `\\'. */
5878 if (CHAR_BYTE8_P (it
->c
))
5880 str
[0] = CHAR_TO_BYTE8 (it
->c
);
5883 else if (it
->c
< 256)
5890 /* It's an invalid character, which shouldn't
5891 happen actually, but due to bugs it may
5892 happen. Let's print the char as is, there's
5893 not much meaningful we can do with it. */
5895 str
[1] = it
->c
>> 8;
5896 str
[2] = it
->c
>> 16;
5897 str
[3] = it
->c
>> 24;
5901 for (i
= 0; i
< len
; i
++)
5904 XSETINT (it
->ctl_chars
[i
* 4], escape_glyph
);
5905 /* Insert three more glyphs into IT->ctl_chars for
5906 the octal display of the character. */
5907 g
= ((str
[i
] >> 6) & 7) + '0';
5908 XSETINT (it
->ctl_chars
[i
* 4 + 1], g
);
5909 g
= ((str
[i
] >> 3) & 7) + '0';
5910 XSETINT (it
->ctl_chars
[i
* 4 + 2], g
);
5911 g
= (str
[i
] & 7) + '0';
5912 XSETINT (it
->ctl_chars
[i
* 4 + 3], g
);
5918 /* Set up IT->dpvec and return first character from it. */
5919 it
->dpvec_char_len
= it
->len
;
5920 it
->dpvec
= it
->ctl_chars
;
5921 it
->dpend
= it
->dpvec
+ ctl_len
;
5922 it
->current
.dpvec_index
= 0;
5923 it
->dpvec_face_id
= face_id
;
5924 it
->saved_face_id
= it
->face_id
;
5925 it
->method
= GET_FROM_DISPLAY_VECTOR
;
5932 #ifdef HAVE_WINDOW_SYSTEM
5933 /* Adjust face id for a multibyte character. There are no multibyte
5934 character in unibyte text. */
5935 if ((it
->what
== IT_CHARACTER
|| it
->what
== IT_COMPOSITION
)
5938 && FRAME_WINDOW_P (it
->f
))
5940 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
5942 if (it
->what
== IT_COMPOSITION
&& it
->cmp_it
.ch
>= 0)
5944 /* Automatic composition with glyph-string. */
5945 Lisp_Object gstring
= composition_gstring_from_id (it
->cmp_it
.id
);
5947 it
->face_id
= face_for_font (it
->f
, LGSTRING_FONT (gstring
), face
);
5951 int pos
= (it
->s
? -1
5952 : STRINGP (it
->string
) ? IT_STRING_CHARPOS (*it
)
5953 : IT_CHARPOS (*it
));
5955 it
->face_id
= FACE_FOR_CHAR (it
->f
, face
, it
->c
, pos
, it
->string
);
5960 /* Is this character the last one of a run of characters with
5961 box? If yes, set IT->end_of_box_run_p to 1. */
5965 if (it
->method
== GET_FROM_STRING
&& it
->sp
)
5967 int face_id
= underlying_face_id (it
);
5968 struct face
*face
= FACE_FROM_ID (it
->f
, face_id
);
5972 if (face
->box
== FACE_NO_BOX
)
5974 /* If the box comes from face properties in a
5975 display string, check faces in that string. */
5976 int string_face_id
= face_after_it_pos (it
);
5977 it
->end_of_box_run_p
5978 = (FACE_FROM_ID (it
->f
, string_face_id
)->box
5981 /* Otherwise, the box comes from the underlying face.
5982 If this is the last string character displayed, check
5983 the next buffer location. */
5984 else if ((IT_STRING_CHARPOS (*it
) >= SCHARS (it
->string
) - 1)
5985 && (it
->current
.overlay_string_index
5986 == it
->n_overlay_strings
- 1))
5990 struct text_pos pos
= it
->current
.pos
;
5991 INC_TEXT_POS (pos
, it
->multibyte_p
);
5993 next_face_id
= face_at_buffer_position
5994 (it
->w
, CHARPOS (pos
), it
->region_beg_charpos
,
5995 it
->region_end_charpos
, &ignore
,
5996 (IT_CHARPOS (*it
) + TEXT_PROP_DISTANCE_LIMIT
), 0,
5998 it
->end_of_box_run_p
5999 = (FACE_FROM_ID (it
->f
, next_face_id
)->box
6006 int face_id
= face_after_it_pos (it
);
6007 it
->end_of_box_run_p
6008 = (face_id
!= it
->face_id
6009 && FACE_FROM_ID (it
->f
, face_id
)->box
== FACE_NO_BOX
);
6013 /* Value is 0 if end of buffer or string reached. */
6018 /* Move IT to the next display element.
6020 RESEAT_P non-zero means if called on a newline in buffer text,
6021 skip to the next visible line start.
6023 Functions get_next_display_element and set_iterator_to_next are
6024 separate because I find this arrangement easier to handle than a
6025 get_next_display_element function that also increments IT's
6026 position. The way it is we can first look at an iterator's current
6027 display element, decide whether it fits on a line, and if it does,
6028 increment the iterator position. The other way around we probably
6029 would either need a flag indicating whether the iterator has to be
6030 incremented the next time, or we would have to implement a
6031 decrement position function which would not be easy to write. */
6034 set_iterator_to_next (it
, reseat_p
)
6038 /* Reset flags indicating start and end of a sequence of characters
6039 with box. Reset them at the start of this function because
6040 moving the iterator to a new position might set them. */
6041 it
->start_of_box_run_p
= it
->end_of_box_run_p
= 0;
6045 case GET_FROM_BUFFER
:
6046 /* The current display element of IT is a character from
6047 current_buffer. Advance in the buffer, and maybe skip over
6048 invisible lines that are so because of selective display. */
6049 if (ITERATOR_AT_END_OF_LINE_P (it
) && reseat_p
)
6050 reseat_at_next_visible_line_start (it
, 0);
6051 else if (it
->cmp_it
.id
>= 0)
6053 IT_CHARPOS (*it
) += it
->cmp_it
.nchars
;
6054 IT_BYTEPOS (*it
) += it
->cmp_it
.nbytes
;
6055 if (it
->cmp_it
.to
< it
->cmp_it
.nglyphs
)
6056 it
->cmp_it
.from
= it
->cmp_it
.to
;
6060 composition_compute_stop_pos (&it
->cmp_it
, IT_CHARPOS (*it
),
6061 IT_BYTEPOS (*it
), it
->stop_charpos
,
6067 xassert (it
->len
!= 0);
6068 IT_BYTEPOS (*it
) += it
->len
;
6069 IT_CHARPOS (*it
) += 1;
6070 xassert (IT_BYTEPOS (*it
) == CHAR_TO_BYTE (IT_CHARPOS (*it
)));
6074 case GET_FROM_C_STRING
:
6075 /* Current display element of IT is from a C string. */
6076 IT_BYTEPOS (*it
) += it
->len
;
6077 IT_CHARPOS (*it
) += 1;
6080 case GET_FROM_DISPLAY_VECTOR
:
6081 /* Current display element of IT is from a display table entry.
6082 Advance in the display table definition. Reset it to null if
6083 end reached, and continue with characters from buffers/
6085 ++it
->current
.dpvec_index
;
6087 /* Restore face of the iterator to what they were before the
6088 display vector entry (these entries may contain faces). */
6089 it
->face_id
= it
->saved_face_id
;
6091 if (it
->dpvec
+ it
->current
.dpvec_index
== it
->dpend
)
6093 int recheck_faces
= it
->ellipsis_p
;
6096 it
->method
= GET_FROM_C_STRING
;
6097 else if (STRINGP (it
->string
))
6098 it
->method
= GET_FROM_STRING
;
6101 it
->method
= GET_FROM_BUFFER
;
6102 it
->object
= it
->w
->buffer
;
6106 it
->current
.dpvec_index
= -1;
6108 /* Skip over characters which were displayed via IT->dpvec. */
6109 if (it
->dpvec_char_len
< 0)
6110 reseat_at_next_visible_line_start (it
, 1);
6111 else if (it
->dpvec_char_len
> 0)
6113 if (it
->method
== GET_FROM_STRING
6114 && it
->n_overlay_strings
> 0)
6115 it
->ignore_overlay_strings_at_pos_p
= 1;
6116 it
->len
= it
->dpvec_char_len
;
6117 set_iterator_to_next (it
, reseat_p
);
6120 /* Maybe recheck faces after display vector */
6122 it
->stop_charpos
= IT_CHARPOS (*it
);
6126 case GET_FROM_STRING
:
6127 /* Current display element is a character from a Lisp string. */
6128 xassert (it
->s
== NULL
&& STRINGP (it
->string
));
6129 if (it
->cmp_it
.id
>= 0)
6131 IT_STRING_CHARPOS (*it
) += it
->cmp_it
.nchars
;
6132 IT_STRING_BYTEPOS (*it
) += it
->cmp_it
.nbytes
;
6133 if (it
->cmp_it
.to
< it
->cmp_it
.nglyphs
)
6134 it
->cmp_it
.from
= it
->cmp_it
.to
;
6138 composition_compute_stop_pos (&it
->cmp_it
,
6139 IT_STRING_CHARPOS (*it
),
6140 IT_STRING_BYTEPOS (*it
),
6141 it
->stop_charpos
, it
->string
);
6146 IT_STRING_BYTEPOS (*it
) += it
->len
;
6147 IT_STRING_CHARPOS (*it
) += 1;
6150 consider_string_end
:
6152 if (it
->current
.overlay_string_index
>= 0)
6154 /* IT->string is an overlay string. Advance to the
6155 next, if there is one. */
6156 if (IT_STRING_CHARPOS (*it
) >= SCHARS (it
->string
))
6159 next_overlay_string (it
);
6161 setup_for_ellipsis (it
, 0);
6166 /* IT->string is not an overlay string. If we reached
6167 its end, and there is something on IT->stack, proceed
6168 with what is on the stack. This can be either another
6169 string, this time an overlay string, or a buffer. */
6170 if (IT_STRING_CHARPOS (*it
) == SCHARS (it
->string
)
6174 if (it
->method
== GET_FROM_STRING
)
6175 goto consider_string_end
;
6180 case GET_FROM_IMAGE
:
6181 case GET_FROM_STRETCH
:
6182 /* The position etc with which we have to proceed are on
6183 the stack. The position may be at the end of a string,
6184 if the `display' property takes up the whole string. */
6185 xassert (it
->sp
> 0);
6187 if (it
->method
== GET_FROM_STRING
)
6188 goto consider_string_end
;
6192 /* There are no other methods defined, so this should be a bug. */
6196 xassert (it
->method
!= GET_FROM_STRING
6197 || (STRINGP (it
->string
)
6198 && IT_STRING_CHARPOS (*it
) >= 0));
6201 /* Load IT's display element fields with information about the next
6202 display element which comes from a display table entry or from the
6203 result of translating a control character to one of the forms `^C'
6206 IT->dpvec holds the glyphs to return as characters.
6207 IT->saved_face_id holds the face id before the display vector--
6208 it is restored into IT->face_idin set_iterator_to_next. */
6211 next_element_from_display_vector (it
)
6217 xassert (it
->dpvec
&& it
->current
.dpvec_index
>= 0);
6219 it
->face_id
= it
->saved_face_id
;
6221 /* KFS: This code used to check ip->dpvec[0] instead of the current element.
6222 That seemed totally bogus - so I changed it... */
6223 gc
= it
->dpvec
[it
->current
.dpvec_index
];
6225 if (GLYPH_CODE_P (gc
) && GLYPH_CODE_CHAR_VALID_P (gc
))
6227 it
->c
= GLYPH_CODE_CHAR (gc
);
6228 it
->len
= CHAR_BYTES (it
->c
);
6230 /* The entry may contain a face id to use. Such a face id is
6231 the id of a Lisp face, not a realized face. A face id of
6232 zero means no face is specified. */
6233 if (it
->dpvec_face_id
>= 0)
6234 it
->face_id
= it
->dpvec_face_id
;
6237 int lface_id
= GLYPH_CODE_FACE (gc
);
6239 it
->face_id
= merge_faces (it
->f
, Qt
, lface_id
,
6244 /* Display table entry is invalid. Return a space. */
6245 it
->c
= ' ', it
->len
= 1;
6247 /* Don't change position and object of the iterator here. They are
6248 still the values of the character that had this display table
6249 entry or was translated, and that's what we want. */
6250 it
->what
= IT_CHARACTER
;
6255 /* Load IT with the next display element from Lisp string IT->string.
6256 IT->current.string_pos is the current position within the string.
6257 If IT->current.overlay_string_index >= 0, the Lisp string is an
6261 next_element_from_string (it
)
6264 struct text_pos position
;
6266 xassert (STRINGP (it
->string
));
6267 xassert (IT_STRING_CHARPOS (*it
) >= 0);
6268 position
= it
->current
.string_pos
;
6270 /* Time to check for invisible text? */
6271 if (IT_STRING_CHARPOS (*it
) < it
->end_charpos
6272 && IT_STRING_CHARPOS (*it
) == it
->stop_charpos
)
6276 /* Since a handler may have changed IT->method, we must
6278 return GET_NEXT_DISPLAY_ELEMENT (it
);
6281 if (it
->current
.overlay_string_index
>= 0)
6283 /* Get the next character from an overlay string. In overlay
6284 strings, There is no field width or padding with spaces to
6286 if (IT_STRING_CHARPOS (*it
) >= SCHARS (it
->string
))
6291 else if (CHAR_COMPOSED_P (it
, IT_STRING_CHARPOS (*it
),
6292 IT_STRING_BYTEPOS (*it
))
6293 && next_element_from_composition (it
))
6297 else if (STRING_MULTIBYTE (it
->string
))
6299 int remaining
= SBYTES (it
->string
) - IT_STRING_BYTEPOS (*it
);
6300 const unsigned char *s
= (SDATA (it
->string
)
6301 + IT_STRING_BYTEPOS (*it
));
6302 it
->c
= string_char_and_length (s
, remaining
, &it
->len
);
6306 it
->c
= SREF (it
->string
, IT_STRING_BYTEPOS (*it
));
6312 /* Get the next character from a Lisp string that is not an
6313 overlay string. Such strings come from the mode line, for
6314 example. We may have to pad with spaces, or truncate the
6315 string. See also next_element_from_c_string. */
6316 if (IT_STRING_CHARPOS (*it
) >= it
->end_charpos
)
6321 else if (IT_STRING_CHARPOS (*it
) >= it
->string_nchars
)
6323 /* Pad with spaces. */
6324 it
->c
= ' ', it
->len
= 1;
6325 CHARPOS (position
) = BYTEPOS (position
) = -1;
6327 else if (CHAR_COMPOSED_P (it
, IT_STRING_CHARPOS (*it
),
6328 IT_STRING_BYTEPOS (*it
))
6329 && next_element_from_composition (it
))
6333 else if (STRING_MULTIBYTE (it
->string
))
6335 int maxlen
= SBYTES (it
->string
) - IT_STRING_BYTEPOS (*it
);
6336 const unsigned char *s
= (SDATA (it
->string
)
6337 + IT_STRING_BYTEPOS (*it
));
6338 it
->c
= string_char_and_length (s
, maxlen
, &it
->len
);
6342 it
->c
= SREF (it
->string
, IT_STRING_BYTEPOS (*it
));
6347 /* Record what we have and where it came from. */
6348 it
->what
= IT_CHARACTER
;
6349 it
->object
= it
->string
;
6350 it
->position
= position
;
6355 /* Load IT with next display element from C string IT->s.
6356 IT->string_nchars is the maximum number of characters to return
6357 from the string. IT->end_charpos may be greater than
6358 IT->string_nchars when this function is called, in which case we
6359 may have to return padding spaces. Value is zero if end of string
6360 reached, including padding spaces. */
6363 next_element_from_c_string (it
)
6369 it
->what
= IT_CHARACTER
;
6370 BYTEPOS (it
->position
) = CHARPOS (it
->position
) = 0;
6373 /* IT's position can be greater IT->string_nchars in case a field
6374 width or precision has been specified when the iterator was
6376 if (IT_CHARPOS (*it
) >= it
->end_charpos
)
6378 /* End of the game. */
6382 else if (IT_CHARPOS (*it
) >= it
->string_nchars
)
6384 /* Pad with spaces. */
6385 it
->c
= ' ', it
->len
= 1;
6386 BYTEPOS (it
->position
) = CHARPOS (it
->position
) = -1;
6388 else if (it
->multibyte_p
)
6390 /* Implementation note: The calls to strlen apparently aren't a
6391 performance problem because there is no noticeable performance
6392 difference between Emacs running in unibyte or multibyte mode. */
6393 int maxlen
= strlen (it
->s
) - IT_BYTEPOS (*it
);
6394 it
->c
= string_char_and_length (it
->s
+ IT_BYTEPOS (*it
),
6398 it
->c
= it
->s
[IT_BYTEPOS (*it
)], it
->len
= 1;
6404 /* Set up IT to return characters from an ellipsis, if appropriate.
6405 The definition of the ellipsis glyphs may come from a display table
6406 entry. This function Fills IT with the first glyph from the
6407 ellipsis if an ellipsis is to be displayed. */
6410 next_element_from_ellipsis (it
)
6413 if (it
->selective_display_ellipsis_p
)
6414 setup_for_ellipsis (it
, it
->len
);
6417 /* The face at the current position may be different from the
6418 face we find after the invisible text. Remember what it
6419 was in IT->saved_face_id, and signal that it's there by
6420 setting face_before_selective_p. */
6421 it
->saved_face_id
= it
->face_id
;
6422 it
->method
= GET_FROM_BUFFER
;
6423 it
->object
= it
->w
->buffer
;
6424 reseat_at_next_visible_line_start (it
, 1);
6425 it
->face_before_selective_p
= 1;
6428 return GET_NEXT_DISPLAY_ELEMENT (it
);
6432 /* Deliver an image display element. The iterator IT is already
6433 filled with image information (done in handle_display_prop). Value
6438 next_element_from_image (it
)
6441 it
->what
= IT_IMAGE
;
6446 /* Fill iterator IT with next display element from a stretch glyph
6447 property. IT->object is the value of the text property. Value is
6451 next_element_from_stretch (it
)
6454 it
->what
= IT_STRETCH
;
6459 /* Load IT with the next display element from current_buffer. Value
6460 is zero if end of buffer reached. IT->stop_charpos is the next
6461 position at which to stop and check for text properties or buffer
6465 next_element_from_buffer (it
)
6470 xassert (IT_CHARPOS (*it
) >= BEGV
);
6472 if (IT_CHARPOS (*it
) >= it
->stop_charpos
)
6474 if (IT_CHARPOS (*it
) >= it
->end_charpos
)
6476 int overlay_strings_follow_p
;
6478 /* End of the game, except when overlay strings follow that
6479 haven't been returned yet. */
6480 if (it
->overlay_strings_at_end_processed_p
)
6481 overlay_strings_follow_p
= 0;
6484 it
->overlay_strings_at_end_processed_p
= 1;
6485 overlay_strings_follow_p
= get_overlay_strings (it
, 0);
6488 if (overlay_strings_follow_p
)
6489 success_p
= GET_NEXT_DISPLAY_ELEMENT (it
);
6493 it
->position
= it
->current
.pos
;
6500 return GET_NEXT_DISPLAY_ELEMENT (it
);
6505 /* No face changes, overlays etc. in sight, so just return a
6506 character from current_buffer. */
6509 /* Maybe run the redisplay end trigger hook. Performance note:
6510 This doesn't seem to cost measurable time. */
6511 if (it
->redisplay_end_trigger_charpos
6513 && IT_CHARPOS (*it
) >= it
->redisplay_end_trigger_charpos
)
6514 run_redisplay_end_trigger_hook (it
);
6516 if (CHAR_COMPOSED_P (it
, IT_CHARPOS (*it
), IT_BYTEPOS (*it
))
6517 && next_element_from_composition (it
))
6522 /* Get the next character, maybe multibyte. */
6523 p
= BYTE_POS_ADDR (IT_BYTEPOS (*it
));
6524 if (it
->multibyte_p
&& !ASCII_BYTE_P (*p
))
6525 it
->c
= STRING_CHAR_AND_LENGTH (p
, 0, it
->len
);
6527 it
->c
= *p
, it
->len
= 1;
6529 /* Record what we have and where it came from. */
6530 it
->what
= IT_CHARACTER
;
6531 it
->object
= it
->w
->buffer
;
6532 it
->position
= it
->current
.pos
;
6534 /* Normally we return the character found above, except when we
6535 really want to return an ellipsis for selective display. */
6540 /* A value of selective > 0 means hide lines indented more
6541 than that number of columns. */
6542 if (it
->selective
> 0
6543 && IT_CHARPOS (*it
) + 1 < ZV
6544 && indented_beyond_p (IT_CHARPOS (*it
) + 1,
6545 IT_BYTEPOS (*it
) + 1,
6546 (double) it
->selective
)) /* iftc */
6548 success_p
= next_element_from_ellipsis (it
);
6549 it
->dpvec_char_len
= -1;
6552 else if (it
->c
== '\r' && it
->selective
== -1)
6554 /* A value of selective == -1 means that everything from the
6555 CR to the end of the line is invisible, with maybe an
6556 ellipsis displayed for it. */
6557 success_p
= next_element_from_ellipsis (it
);
6558 it
->dpvec_char_len
= -1;
6563 /* Value is zero if end of buffer reached. */
6564 xassert (!success_p
|| it
->what
!= IT_CHARACTER
|| it
->len
> 0);
6569 /* Run the redisplay end trigger hook for IT. */
6572 run_redisplay_end_trigger_hook (it
)
6575 Lisp_Object args
[3];
6577 /* IT->glyph_row should be non-null, i.e. we should be actually
6578 displaying something, or otherwise we should not run the hook. */
6579 xassert (it
->glyph_row
);
6581 /* Set up hook arguments. */
6582 args
[0] = Qredisplay_end_trigger_functions
;
6583 args
[1] = it
->window
;
6584 XSETINT (args
[2], it
->redisplay_end_trigger_charpos
);
6585 it
->redisplay_end_trigger_charpos
= 0;
6587 /* Since we are *trying* to run these functions, don't try to run
6588 them again, even if they get an error. */
6589 it
->w
->redisplay_end_trigger
= Qnil
;
6590 Frun_hook_with_args (3, args
);
6592 /* Notice if it changed the face of the character we are on. */
6593 handle_face_prop (it
);
6597 /* Deliver a composition display element. Unlike the other
6598 next_element_from_XXX, this function is not registered in the array
6599 get_next_element[]. It is called from next_element_from_buffer and
6600 next_element_from_string when necessary. */
6603 next_element_from_composition (it
)
6606 it
->what
= IT_COMPOSITION
;
6607 it
->len
= it
->cmp_it
.nbytes
;
6608 if (STRINGP (it
->string
))
6612 IT_STRING_CHARPOS (*it
) += it
->cmp_it
.nchars
;
6613 IT_STRING_BYTEPOS (*it
) += it
->cmp_it
.nbytes
;
6616 it
->position
= it
->current
.string_pos
;
6617 it
->object
= it
->string
;
6618 it
->c
= composition_update_it (&it
->cmp_it
, IT_STRING_CHARPOS (*it
),
6619 IT_STRING_BYTEPOS (*it
), it
->string
);
6625 IT_CHARPOS (*it
) += it
->cmp_it
.nchars
;
6626 IT_BYTEPOS (*it
) += it
->cmp_it
.nbytes
;
6629 it
->position
= it
->current
.pos
;
6630 it
->object
= it
->w
->buffer
;
6631 it
->c
= composition_update_it (&it
->cmp_it
, IT_CHARPOS (*it
),
6632 IT_BYTEPOS (*it
), Qnil
);
6639 /***********************************************************************
6640 Moving an iterator without producing glyphs
6641 ***********************************************************************/
6643 /* Check if iterator is at a position corresponding to a valid buffer
6644 position after some move_it_ call. */
6646 #define IT_POS_VALID_AFTER_MOVE_P(it) \
6647 ((it)->method == GET_FROM_STRING \
6648 ? IT_STRING_CHARPOS (*it) == 0 \
6652 /* Move iterator IT to a specified buffer or X position within one
6653 line on the display without producing glyphs.
6655 OP should be a bit mask including some or all of these bits:
6656 MOVE_TO_X: Stop on reaching x-position TO_X.
6657 MOVE_TO_POS: Stop on reaching buffer or string position TO_CHARPOS.
6658 Regardless of OP's value, stop in reaching the end of the display line.
6660 TO_X is normally a value 0 <= TO_X <= IT->last_visible_x.
6661 This means, in particular, that TO_X includes window's horizontal
6664 The return value has several possible values that
6665 say what condition caused the scan to stop:
6667 MOVE_POS_MATCH_OR_ZV
6668 - when TO_POS or ZV was reached.
6671 -when TO_X was reached before TO_POS or ZV were reached.
6674 - when we reached the end of the display area and the line must
6678 - when we reached the end of the display area and the line is
6682 - when we stopped at a line end, i.e. a newline or a CR and selective
6685 static enum move_it_result
6686 move_it_in_display_line_to (struct it
*it
,
6687 EMACS_INT to_charpos
, int to_x
,
6688 enum move_operation_enum op
)
6690 enum move_it_result result
= MOVE_UNDEFINED
;
6691 struct glyph_row
*saved_glyph_row
;
6692 struct it wrap_it
, atpos_it
, atx_it
;
6695 /* Don't produce glyphs in produce_glyphs. */
6696 saved_glyph_row
= it
->glyph_row
;
6697 it
->glyph_row
= NULL
;
6699 /* Use wrap_it to save a copy of IT wherever a word wrap could
6700 occur. Use atpos_it to save a copy of IT at the desired buffer
6701 position, if found, so that we can scan ahead and check if the
6702 word later overshoots the window edge. Use atx_it similarly, for
6708 #define BUFFER_POS_REACHED_P() \
6709 ((op & MOVE_TO_POS) != 0 \
6710 && BUFFERP (it->object) \
6711 && IT_CHARPOS (*it) >= to_charpos \
6712 && (it->method == GET_FROM_BUFFER \
6713 || (it->method == GET_FROM_DISPLAY_VECTOR \
6714 && it->dpvec + it->current.dpvec_index + 1 >= it->dpend)))
6716 /* If there's a line-/wrap-prefix, handle it. */
6717 if (it
->hpos
== 0 && it
->method
== GET_FROM_BUFFER
6718 && it
->current_y
< it
->last_visible_y
)
6719 handle_line_prefix (it
);
6723 int x
, i
, ascent
= 0, descent
= 0;
6725 /* Utility macro to reset an iterator with x, ascent, and descent. */
6726 #define IT_RESET_X_ASCENT_DESCENT(IT) \
6727 ((IT)->current_x = x, (IT)->max_ascent = ascent, \
6728 (IT)->max_descent = descent)
6730 /* Stop if we move beyond TO_CHARPOS (after an image or stretch
6732 if ((op
& MOVE_TO_POS
) != 0
6733 && BUFFERP (it
->object
)
6734 && it
->method
== GET_FROM_BUFFER
6735 && IT_CHARPOS (*it
) > to_charpos
)
6737 if (it
->line_wrap
!= WORD_WRAP
|| wrap_it
.sp
< 0)
6739 result
= MOVE_POS_MATCH_OR_ZV
;
6742 else if (it
->line_wrap
== WORD_WRAP
&& atpos_it
.sp
< 0)
6743 /* If wrap_it is valid, the current position might be in a
6744 word that is wrapped. So, save the iterator in
6745 atpos_it and continue to see if wrapping happens. */
6749 /* Stop when ZV reached.
6750 We used to stop here when TO_CHARPOS reached as well, but that is
6751 too soon if this glyph does not fit on this line. So we handle it
6752 explicitly below. */
6753 if (!get_next_display_element (it
))
6755 result
= MOVE_POS_MATCH_OR_ZV
;
6759 if (it
->line_wrap
== TRUNCATE
)
6761 if (BUFFER_POS_REACHED_P ())
6763 result
= MOVE_POS_MATCH_OR_ZV
;
6769 if (it
->line_wrap
== WORD_WRAP
)
6771 if (IT_DISPLAYING_WHITESPACE (it
))
6775 /* We have reached a glyph that follows one or more
6776 whitespace characters. If the position is
6777 already found, we are done. */
6778 if (atpos_it
.sp
>= 0)
6781 result
= MOVE_POS_MATCH_OR_ZV
;
6787 result
= MOVE_X_REACHED
;
6790 /* Otherwise, we can wrap here. */
6797 /* Remember the line height for the current line, in case
6798 the next element doesn't fit on the line. */
6799 ascent
= it
->max_ascent
;
6800 descent
= it
->max_descent
;
6802 /* The call to produce_glyphs will get the metrics of the
6803 display element IT is loaded with. Record the x-position
6804 before this display element, in case it doesn't fit on the
6808 PRODUCE_GLYPHS (it
);
6810 if (it
->area
!= TEXT_AREA
)
6812 set_iterator_to_next (it
, 1);
6816 /* The number of glyphs we get back in IT->nglyphs will normally
6817 be 1 except when IT->c is (i) a TAB, or (ii) a multi-glyph
6818 character on a terminal frame, or (iii) a line end. For the
6819 second case, IT->nglyphs - 1 padding glyphs will be present
6820 (on X frames, there is only one glyph produced for a
6821 composite character.
6823 The behavior implemented below means, for continuation lines,
6824 that as many spaces of a TAB as fit on the current line are
6825 displayed there. For terminal frames, as many glyphs of a
6826 multi-glyph character are displayed in the current line, too.
6827 This is what the old redisplay code did, and we keep it that
6828 way. Under X, the whole shape of a complex character must
6829 fit on the line or it will be completely displayed in the
6832 Note that both for tabs and padding glyphs, all glyphs have
6836 /* More than one glyph or glyph doesn't fit on line. All
6837 glyphs have the same width. */
6838 int single_glyph_width
= it
->pixel_width
/ it
->nglyphs
;
6840 int x_before_this_char
= x
;
6841 int hpos_before_this_char
= it
->hpos
;
6843 for (i
= 0; i
< it
->nglyphs
; ++i
, x
= new_x
)
6845 new_x
= x
+ single_glyph_width
;
6847 /* We want to leave anything reaching TO_X to the caller. */
6848 if ((op
& MOVE_TO_X
) && new_x
> to_x
)
6850 if (BUFFER_POS_REACHED_P ())
6852 if (it
->line_wrap
!= WORD_WRAP
|| wrap_it
.sp
< 0)
6853 goto buffer_pos_reached
;
6854 if (atpos_it
.sp
< 0)
6857 IT_RESET_X_ASCENT_DESCENT (&atpos_it
);
6862 if (it
->line_wrap
!= WORD_WRAP
|| wrap_it
.sp
< 0)
6865 result
= MOVE_X_REACHED
;
6871 IT_RESET_X_ASCENT_DESCENT (&atx_it
);
6876 if (/* Lines are continued. */
6877 it
->line_wrap
!= TRUNCATE
6878 && (/* And glyph doesn't fit on the line. */
6879 new_x
> it
->last_visible_x
6880 /* Or it fits exactly and we're on a window
6882 || (new_x
== it
->last_visible_x
6883 && FRAME_WINDOW_P (it
->f
))))
6885 if (/* IT->hpos == 0 means the very first glyph
6886 doesn't fit on the line, e.g. a wide image. */
6888 || (new_x
== it
->last_visible_x
6889 && FRAME_WINDOW_P (it
->f
)))
6892 it
->current_x
= new_x
;
6894 /* The character's last glyph just barely fits
6896 if (i
== it
->nglyphs
- 1)
6898 /* If this is the destination position,
6899 return a position *before* it in this row,
6900 now that we know it fits in this row. */
6901 if (BUFFER_POS_REACHED_P ())
6903 if (it
->line_wrap
!= WORD_WRAP
6906 it
->hpos
= hpos_before_this_char
;
6907 it
->current_x
= x_before_this_char
;
6908 result
= MOVE_POS_MATCH_OR_ZV
;
6911 if (it
->line_wrap
== WORD_WRAP
6915 atpos_it
.current_x
= x_before_this_char
;
6916 atpos_it
.hpos
= hpos_before_this_char
;
6920 set_iterator_to_next (it
, 1);
6921 #ifdef HAVE_WINDOW_SYSTEM
6922 /* One graphical terminals, newlines may
6923 "overflow" into the fringe if
6924 overflow-newline-into-fringe is non-nil.
6925 On text-only terminals, newlines may
6926 overflow into the last glyph on the
6928 if (!FRAME_WINDOW_P (it
->f
)
6929 || IT_OVERFLOW_NEWLINE_INTO_FRINGE (it
))
6931 if (!get_next_display_element (it
))
6933 result
= MOVE_POS_MATCH_OR_ZV
;
6936 if (BUFFER_POS_REACHED_P ())
6938 if (ITERATOR_AT_END_OF_LINE_P (it
))
6939 result
= MOVE_POS_MATCH_OR_ZV
;
6941 result
= MOVE_LINE_CONTINUED
;
6944 if (ITERATOR_AT_END_OF_LINE_P (it
))
6946 result
= MOVE_NEWLINE_OR_CR
;
6950 #endif /* HAVE_WINDOW_SYSTEM */
6954 IT_RESET_X_ASCENT_DESCENT (it
);
6956 if (wrap_it
.sp
>= 0)
6963 TRACE_MOVE ((stderr
, "move_it_in: continued at %d\n",
6965 result
= MOVE_LINE_CONTINUED
;
6969 if (BUFFER_POS_REACHED_P ())
6971 if (it
->line_wrap
!= WORD_WRAP
|| wrap_it
.sp
< 0)
6972 goto buffer_pos_reached
;
6973 if (it
->line_wrap
== WORD_WRAP
&& atpos_it
.sp
< 0)
6976 IT_RESET_X_ASCENT_DESCENT (&atpos_it
);
6980 if (new_x
> it
->first_visible_x
)
6982 /* Glyph is visible. Increment number of glyphs that
6983 would be displayed. */
6988 if (result
!= MOVE_UNDEFINED
)
6991 else if (BUFFER_POS_REACHED_P ())
6994 IT_RESET_X_ASCENT_DESCENT (it
);
6995 result
= MOVE_POS_MATCH_OR_ZV
;
6998 else if ((op
& MOVE_TO_X
) && it
->current_x
>= to_x
)
7000 /* Stop when TO_X specified and reached. This check is
7001 necessary here because of lines consisting of a line end,
7002 only. The line end will not produce any glyphs and we
7003 would never get MOVE_X_REACHED. */
7004 xassert (it
->nglyphs
== 0);
7005 result
= MOVE_X_REACHED
;
7009 /* Is this a line end? If yes, we're done. */
7010 if (ITERATOR_AT_END_OF_LINE_P (it
))
7012 result
= MOVE_NEWLINE_OR_CR
;
7016 /* The current display element has been consumed. Advance
7018 set_iterator_to_next (it
, 1);
7020 /* Stop if lines are truncated and IT's current x-position is
7021 past the right edge of the window now. */
7022 if (it
->line_wrap
== TRUNCATE
7023 && it
->current_x
>= it
->last_visible_x
)
7025 #ifdef HAVE_WINDOW_SYSTEM
7026 if (!FRAME_WINDOW_P (it
->f
)
7027 || IT_OVERFLOW_NEWLINE_INTO_FRINGE (it
))
7029 if (!get_next_display_element (it
)
7030 || BUFFER_POS_REACHED_P ())
7032 result
= MOVE_POS_MATCH_OR_ZV
;
7035 if (ITERATOR_AT_END_OF_LINE_P (it
))
7037 result
= MOVE_NEWLINE_OR_CR
;
7041 #endif /* HAVE_WINDOW_SYSTEM */
7042 result
= MOVE_LINE_TRUNCATED
;
7045 #undef IT_RESET_X_ASCENT_DESCENT
7048 #undef BUFFER_POS_REACHED_P
7050 /* If we scanned beyond to_pos and didn't find a point to wrap at,
7051 restore the saved iterator. */
7052 if (atpos_it
.sp
>= 0)
7054 else if (atx_it
.sp
>= 0)
7059 /* Restore the iterator settings altered at the beginning of this
7061 it
->glyph_row
= saved_glyph_row
;
7065 /* For external use. */
7067 move_it_in_display_line (struct it
*it
,
7068 EMACS_INT to_charpos
, int to_x
,
7069 enum move_operation_enum op
)
7071 if (it
->line_wrap
== WORD_WRAP
7072 && (op
& MOVE_TO_X
))
7074 struct it save_it
= *it
;
7075 int skip
= move_it_in_display_line_to (it
, to_charpos
, to_x
, op
);
7076 /* When word-wrap is on, TO_X may lie past the end
7077 of a wrapped line. Then it->current is the
7078 character on the next line, so backtrack to the
7079 space before the wrap point. */
7080 if (skip
== MOVE_LINE_CONTINUED
)
7082 int prev_x
= max (it
->current_x
- 1, 0);
7084 move_it_in_display_line_to
7085 (it
, -1, prev_x
, MOVE_TO_X
);
7089 move_it_in_display_line_to (it
, to_charpos
, to_x
, op
);
7093 /* Move IT forward until it satisfies one or more of the criteria in
7094 TO_CHARPOS, TO_X, TO_Y, and TO_VPOS.
7096 OP is a bit-mask that specifies where to stop, and in particular,
7097 which of those four position arguments makes a difference. See the
7098 description of enum move_operation_enum.
7100 If TO_CHARPOS is in invisible text, e.g. a truncated part of a
7101 screen line, this function will set IT to the next position >
7105 move_it_to (it
, to_charpos
, to_x
, to_y
, to_vpos
, op
)
7107 int to_charpos
, to_x
, to_y
, to_vpos
;
7110 enum move_it_result skip
, skip2
= MOVE_X_REACHED
;
7116 if (op
& MOVE_TO_VPOS
)
7118 /* If no TO_CHARPOS and no TO_X specified, stop at the
7119 start of the line TO_VPOS. */
7120 if ((op
& (MOVE_TO_X
| MOVE_TO_POS
)) == 0)
7122 if (it
->vpos
== to_vpos
)
7128 skip
= move_it_in_display_line_to (it
, -1, -1, 0);
7132 /* TO_VPOS >= 0 means stop at TO_X in the line at
7133 TO_VPOS, or at TO_POS, whichever comes first. */
7134 if (it
->vpos
== to_vpos
)
7140 skip
= move_it_in_display_line_to (it
, to_charpos
, to_x
, op
);
7142 if (skip
== MOVE_POS_MATCH_OR_ZV
|| it
->vpos
== to_vpos
)
7147 else if (skip
== MOVE_X_REACHED
&& it
->vpos
!= to_vpos
)
7149 /* We have reached TO_X but not in the line we want. */
7150 skip
= move_it_in_display_line_to (it
, to_charpos
,
7152 if (skip
== MOVE_POS_MATCH_OR_ZV
)
7160 else if (op
& MOVE_TO_Y
)
7162 struct it it_backup
;
7164 if (it
->line_wrap
== WORD_WRAP
)
7167 /* TO_Y specified means stop at TO_X in the line containing
7168 TO_Y---or at TO_CHARPOS if this is reached first. The
7169 problem is that we can't really tell whether the line
7170 contains TO_Y before we have completely scanned it, and
7171 this may skip past TO_X. What we do is to first scan to
7174 If TO_X is not specified, use a TO_X of zero. The reason
7175 is to make the outcome of this function more predictable.
7176 If we didn't use TO_X == 0, we would stop at the end of
7177 the line which is probably not what a caller would expect
7179 skip
= move_it_in_display_line_to
7180 (it
, to_charpos
, ((op
& MOVE_TO_X
) ? to_x
: 0),
7181 (MOVE_TO_X
| (op
& MOVE_TO_POS
)));
7183 /* If TO_CHARPOS is reached or ZV, we don't have to do more. */
7184 if (skip
== MOVE_POS_MATCH_OR_ZV
)
7186 else if (skip
== MOVE_X_REACHED
)
7188 /* If TO_X was reached, we want to know whether TO_Y is
7189 in the line. We know this is the case if the already
7190 scanned glyphs make the line tall enough. Otherwise,
7191 we must check by scanning the rest of the line. */
7192 line_height
= it
->max_ascent
+ it
->max_descent
;
7193 if (to_y
>= it
->current_y
7194 && to_y
< it
->current_y
+ line_height
)
7200 TRACE_MOVE ((stderr
, "move_it: from %d\n", IT_CHARPOS (*it
)));
7201 skip2
= move_it_in_display_line_to (it
, to_charpos
, -1,
7203 TRACE_MOVE ((stderr
, "move_it: to %d\n", IT_CHARPOS (*it
)));
7204 line_height
= it
->max_ascent
+ it
->max_descent
;
7205 TRACE_MOVE ((stderr
, "move_it: line_height = %d\n", line_height
));
7207 if (to_y
>= it
->current_y
7208 && to_y
< it
->current_y
+ line_height
)
7210 /* If TO_Y is in this line and TO_X was reached
7211 above, we scanned too far. We have to restore
7212 IT's settings to the ones before skipping. */
7219 if (skip
== MOVE_POS_MATCH_OR_ZV
)
7225 /* Check whether TO_Y is in this line. */
7226 line_height
= it
->max_ascent
+ it
->max_descent
;
7227 TRACE_MOVE ((stderr
, "move_it: line_height = %d\n", line_height
));
7229 if (to_y
>= it
->current_y
7230 && to_y
< it
->current_y
+ line_height
)
7232 /* When word-wrap is on, TO_X may lie past the end
7233 of a wrapped line. Then it->current is the
7234 character on the next line, so backtrack to the
7235 space before the wrap point. */
7236 if (skip
== MOVE_LINE_CONTINUED
7237 && it
->line_wrap
== WORD_WRAP
)
7239 int prev_x
= max (it
->current_x
- 1, 0);
7241 skip
= move_it_in_display_line_to
7242 (it
, -1, prev_x
, MOVE_TO_X
);
7251 else if (BUFFERP (it
->object
)
7252 && (it
->method
== GET_FROM_BUFFER
7253 || it
->method
== GET_FROM_STRETCH
)
7254 && IT_CHARPOS (*it
) >= to_charpos
)
7255 skip
= MOVE_POS_MATCH_OR_ZV
;
7257 skip
= move_it_in_display_line_to (it
, to_charpos
, -1, MOVE_TO_POS
);
7261 case MOVE_POS_MATCH_OR_ZV
:
7265 case MOVE_NEWLINE_OR_CR
:
7266 set_iterator_to_next (it
, 1);
7267 it
->continuation_lines_width
= 0;
7270 case MOVE_LINE_TRUNCATED
:
7271 it
->continuation_lines_width
= 0;
7272 reseat_at_next_visible_line_start (it
, 0);
7273 if ((op
& MOVE_TO_POS
) != 0
7274 && IT_CHARPOS (*it
) > to_charpos
)
7281 case MOVE_LINE_CONTINUED
:
7282 /* For continued lines ending in a tab, some of the glyphs
7283 associated with the tab are displayed on the current
7284 line. Since it->current_x does not include these glyphs,
7285 we use it->last_visible_x instead. */
7288 it
->continuation_lines_width
+= it
->last_visible_x
;
7289 /* When moving by vpos, ensure that the iterator really
7290 advances to the next line (bug#847, bug#969). Fixme:
7291 do we need to do this in other circumstances? */
7292 if (it
->current_x
!= it
->last_visible_x
7293 && (op
& MOVE_TO_VPOS
)
7294 && !(op
& (MOVE_TO_X
| MOVE_TO_POS
)))
7295 set_iterator_to_next (it
, 0);
7298 it
->continuation_lines_width
+= it
->current_x
;
7305 /* Reset/increment for the next run. */
7306 recenter_overlay_lists (current_buffer
, IT_CHARPOS (*it
));
7307 it
->current_x
= it
->hpos
= 0;
7308 it
->current_y
+= it
->max_ascent
+ it
->max_descent
;
7310 last_height
= it
->max_ascent
+ it
->max_descent
;
7311 last_max_ascent
= it
->max_ascent
;
7312 it
->max_ascent
= it
->max_descent
= 0;
7317 /* On text terminals, we may stop at the end of a line in the middle
7318 of a multi-character glyph. If the glyph itself is continued,
7319 i.e. it is actually displayed on the next line, don't treat this
7320 stopping point as valid; move to the next line instead (unless
7321 that brings us offscreen). */
7322 if (!FRAME_WINDOW_P (it
->f
)
7324 && IT_CHARPOS (*it
) == to_charpos
7325 && it
->what
== IT_CHARACTER
7327 && it
->line_wrap
== WINDOW_WRAP
7328 && it
->current_x
== it
->last_visible_x
- 1
7331 && it
->vpos
< XFASTINT (it
->w
->window_end_vpos
))
7333 it
->continuation_lines_width
+= it
->current_x
;
7334 it
->current_x
= it
->hpos
= it
->max_ascent
= it
->max_descent
= 0;
7335 it
->current_y
+= it
->max_ascent
+ it
->max_descent
;
7337 last_height
= it
->max_ascent
+ it
->max_descent
;
7338 last_max_ascent
= it
->max_ascent
;
7341 TRACE_MOVE ((stderr
, "move_it_to: reached %d\n", reached
));
7345 /* Move iterator IT backward by a specified y-distance DY, DY >= 0.
7347 If DY > 0, move IT backward at least that many pixels. DY = 0
7348 means move IT backward to the preceding line start or BEGV. This
7349 function may move over more than DY pixels if IT->current_y - DY
7350 ends up in the middle of a line; in this case IT->current_y will be
7351 set to the top of the line moved to. */
7354 move_it_vertically_backward (it
, dy
)
7365 start_pos
= IT_CHARPOS (*it
);
7367 /* Estimate how many newlines we must move back. */
7368 nlines
= max (1, dy
/ FRAME_LINE_HEIGHT (it
->f
));
7370 /* Set the iterator's position that many lines back. */
7371 while (nlines
-- && IT_CHARPOS (*it
) > BEGV
)
7372 back_to_previous_visible_line_start (it
);
7374 /* Reseat the iterator here. When moving backward, we don't want
7375 reseat to skip forward over invisible text, set up the iterator
7376 to deliver from overlay strings at the new position etc. So,
7377 use reseat_1 here. */
7378 reseat_1 (it
, it
->current
.pos
, 1);
7380 /* We are now surely at a line start. */
7381 it
->current_x
= it
->hpos
= 0;
7382 it
->continuation_lines_width
= 0;
7384 /* Move forward and see what y-distance we moved. First move to the
7385 start of the next line so that we get its height. We need this
7386 height to be able to tell whether we reached the specified
7389 it2
.max_ascent
= it2
.max_descent
= 0;
7392 move_it_to (&it2
, start_pos
, -1, -1, it2
.vpos
+ 1,
7393 MOVE_TO_POS
| MOVE_TO_VPOS
);
7395 while (!IT_POS_VALID_AFTER_MOVE_P (&it2
));
7396 xassert (IT_CHARPOS (*it
) >= BEGV
);
7399 move_it_to (&it2
, start_pos
, -1, -1, -1, MOVE_TO_POS
);
7400 xassert (IT_CHARPOS (*it
) >= BEGV
);
7401 /* H is the actual vertical distance from the position in *IT
7402 and the starting position. */
7403 h
= it2
.current_y
- it
->current_y
;
7404 /* NLINES is the distance in number of lines. */
7405 nlines
= it2
.vpos
- it
->vpos
;
7407 /* Correct IT's y and vpos position
7408 so that they are relative to the starting point. */
7414 /* DY == 0 means move to the start of the screen line. The
7415 value of nlines is > 0 if continuation lines were involved. */
7417 move_it_by_lines (it
, nlines
, 1);
7419 /* I think this assert is bogus if buffer contains
7420 invisible text or images. KFS. */
7421 xassert (IT_CHARPOS (*it
) <= start_pos
);
7426 /* The y-position we try to reach, relative to *IT.
7427 Note that H has been subtracted in front of the if-statement. */
7428 int target_y
= it
->current_y
+ h
- dy
;
7429 int y0
= it3
.current_y
;
7430 int y1
= line_bottom_y (&it3
);
7431 int line_height
= y1
- y0
;
7433 /* If we did not reach target_y, try to move further backward if
7434 we can. If we moved too far backward, try to move forward. */
7435 if (target_y
< it
->current_y
7436 /* This is heuristic. In a window that's 3 lines high, with
7437 a line height of 13 pixels each, recentering with point
7438 on the bottom line will try to move -39/2 = 19 pixels
7439 backward. Try to avoid moving into the first line. */
7440 && (it
->current_y
- target_y
7441 > min (window_box_height (it
->w
), line_height
* 2 / 3))
7442 && IT_CHARPOS (*it
) > BEGV
)
7444 TRACE_MOVE ((stderr
, " not far enough -> move_vert %d\n",
7445 target_y
- it
->current_y
));
7446 dy
= it
->current_y
- target_y
;
7447 goto move_further_back
;
7449 else if (target_y
>= it
->current_y
+ line_height
7450 && IT_CHARPOS (*it
) < ZV
)
7452 /* Should move forward by at least one line, maybe more.
7454 Note: Calling move_it_by_lines can be expensive on
7455 terminal frames, where compute_motion is used (via
7456 vmotion) to do the job, when there are very long lines
7457 and truncate-lines is nil. That's the reason for
7458 treating terminal frames specially here. */
7460 if (!FRAME_WINDOW_P (it
->f
))
7461 move_it_vertically (it
, target_y
- (it
->current_y
+ line_height
));
7466 move_it_by_lines (it
, 1, 1);
7468 while (target_y
>= line_bottom_y (it
) && IT_CHARPOS (*it
) < ZV
);
7472 /* I think this assert is bogus if buffer contains
7473 invisible text or images. KFS. */
7474 xassert (IT_CHARPOS (*it
) >= BEGV
);
7481 /* Move IT by a specified amount of pixel lines DY. DY negative means
7482 move backwards. DY = 0 means move to start of screen line. At the
7483 end, IT will be on the start of a screen line. */
7486 move_it_vertically (it
, dy
)
7491 move_it_vertically_backward (it
, -dy
);
7494 TRACE_MOVE ((stderr
, "move_it_v: from %d, %d\n", IT_CHARPOS (*it
), dy
));
7495 move_it_to (it
, ZV
, -1, it
->current_y
+ dy
, -1,
7496 MOVE_TO_POS
| MOVE_TO_Y
);
7497 TRACE_MOVE ((stderr
, "move_it_v: to %d\n", IT_CHARPOS (*it
)));
7499 /* If buffer ends in ZV without a newline, move to the start of
7500 the line to satisfy the post-condition. */
7501 if (IT_CHARPOS (*it
) == ZV
7503 && FETCH_BYTE (IT_BYTEPOS (*it
) - 1) != '\n')
7504 move_it_by_lines (it
, 0, 0);
7509 /* Move iterator IT past the end of the text line it is in. */
7512 move_it_past_eol (it
)
7515 enum move_it_result rc
;
7517 rc
= move_it_in_display_line_to (it
, Z
, 0, MOVE_TO_POS
);
7518 if (rc
== MOVE_NEWLINE_OR_CR
)
7519 set_iterator_to_next (it
, 0);
7523 /* Move IT by a specified number DVPOS of screen lines down. DVPOS
7524 negative means move up. DVPOS == 0 means move to the start of the
7525 screen line. NEED_Y_P non-zero means calculate IT->current_y. If
7526 NEED_Y_P is zero, IT->current_y will be left unchanged.
7528 Further optimization ideas: If we would know that IT->f doesn't use
7529 a face with proportional font, we could be faster for
7530 truncate-lines nil. */
7533 move_it_by_lines (it
, dvpos
, need_y_p
)
7535 int dvpos
, need_y_p
;
7537 struct position pos
;
7539 /* The commented-out optimization uses vmotion on terminals. This
7540 gives bad results, because elements like it->what, on which
7541 callers such as pos_visible_p rely, aren't updated. */
7542 /* if (!FRAME_WINDOW_P (it->f))
7544 struct text_pos textpos;
7546 pos = *vmotion (IT_CHARPOS (*it), dvpos, it->w);
7547 SET_TEXT_POS (textpos, pos.bufpos, pos.bytepos);
7548 reseat (it, textpos, 1);
7549 it->vpos += pos.vpos;
7550 it->current_y += pos.vpos;
7556 /* DVPOS == 0 means move to the start of the screen line. */
7557 move_it_vertically_backward (it
, 0);
7558 xassert (it
->current_x
== 0 && it
->hpos
== 0);
7559 /* Let next call to line_bottom_y calculate real line height */
7564 move_it_to (it
, -1, -1, -1, it
->vpos
+ dvpos
, MOVE_TO_VPOS
);
7565 if (!IT_POS_VALID_AFTER_MOVE_P (it
))
7566 move_it_to (it
, IT_CHARPOS (*it
) + 1, -1, -1, -1, MOVE_TO_POS
);
7571 int start_charpos
, i
;
7573 /* Start at the beginning of the screen line containing IT's
7574 position. This may actually move vertically backwards,
7575 in case of overlays, so adjust dvpos accordingly. */
7577 move_it_vertically_backward (it
, 0);
7580 /* Go back -DVPOS visible lines and reseat the iterator there. */
7581 start_charpos
= IT_CHARPOS (*it
);
7582 for (i
= -dvpos
; i
> 0 && IT_CHARPOS (*it
) > BEGV
; --i
)
7583 back_to_previous_visible_line_start (it
);
7584 reseat (it
, it
->current
.pos
, 1);
7586 /* Move further back if we end up in a string or an image. */
7587 while (!IT_POS_VALID_AFTER_MOVE_P (it
))
7589 /* First try to move to start of display line. */
7591 move_it_vertically_backward (it
, 0);
7593 if (IT_POS_VALID_AFTER_MOVE_P (it
))
7595 /* If start of line is still in string or image,
7596 move further back. */
7597 back_to_previous_visible_line_start (it
);
7598 reseat (it
, it
->current
.pos
, 1);
7602 it
->current_x
= it
->hpos
= 0;
7604 /* Above call may have moved too far if continuation lines
7605 are involved. Scan forward and see if it did. */
7607 it2
.vpos
= it2
.current_y
= 0;
7608 move_it_to (&it2
, start_charpos
, -1, -1, -1, MOVE_TO_POS
);
7609 it
->vpos
-= it2
.vpos
;
7610 it
->current_y
-= it2
.current_y
;
7611 it
->current_x
= it
->hpos
= 0;
7613 /* If we moved too far back, move IT some lines forward. */
7614 if (it2
.vpos
> -dvpos
)
7616 int delta
= it2
.vpos
+ dvpos
;
7618 move_it_to (it
, -1, -1, -1, it
->vpos
+ delta
, MOVE_TO_VPOS
);
7619 /* Move back again if we got too far ahead. */
7620 if (IT_CHARPOS (*it
) >= start_charpos
)
7626 /* Return 1 if IT points into the middle of a display vector. */
7629 in_display_vector_p (it
)
7632 return (it
->method
== GET_FROM_DISPLAY_VECTOR
7633 && it
->current
.dpvec_index
> 0
7634 && it
->dpvec
+ it
->current
.dpvec_index
!= it
->dpend
);
7638 /***********************************************************************
7640 ***********************************************************************/
7643 /* Add a message with format string FORMAT and arguments ARG1 and ARG2
7647 add_to_log (format
, arg1
, arg2
)
7649 Lisp_Object arg1
, arg2
;
7651 Lisp_Object args
[3];
7652 Lisp_Object msg
, fmt
;
7655 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
7658 /* Do nothing if called asynchronously. Inserting text into
7659 a buffer may call after-change-functions and alike and
7660 that would means running Lisp asynchronously. */
7661 if (handling_signal
)
7665 GCPRO4 (fmt
, msg
, arg1
, arg2
);
7667 args
[0] = fmt
= build_string (format
);
7670 msg
= Fformat (3, args
);
7672 len
= SBYTES (msg
) + 1;
7673 SAFE_ALLOCA (buffer
, char *, len
);
7674 bcopy (SDATA (msg
), buffer
, len
);
7676 message_dolog (buffer
, len
- 1, 1, 0);
7683 /* Output a newline in the *Messages* buffer if "needs" one. */
7686 message_log_maybe_newline ()
7688 if (message_log_need_newline
)
7689 message_dolog ("", 0, 1, 0);
7693 /* Add a string M of length NBYTES to the message log, optionally
7694 terminated with a newline when NLFLAG is non-zero. MULTIBYTE, if
7695 nonzero, means interpret the contents of M as multibyte. This
7696 function calls low-level routines in order to bypass text property
7697 hooks, etc. which might not be safe to run.
7699 This may GC (insert may run before/after change hooks),
7700 so the buffer M must NOT point to a Lisp string. */
7703 message_dolog (m
, nbytes
, nlflag
, multibyte
)
7705 int nbytes
, nlflag
, multibyte
;
7707 if (!NILP (Vmemory_full
))
7710 if (!NILP (Vmessage_log_max
))
7712 struct buffer
*oldbuf
;
7713 Lisp_Object oldpoint
, oldbegv
, oldzv
;
7714 int old_windows_or_buffers_changed
= windows_or_buffers_changed
;
7715 int point_at_end
= 0;
7717 Lisp_Object old_deactivate_mark
, tem
;
7718 struct gcpro gcpro1
;
7720 old_deactivate_mark
= Vdeactivate_mark
;
7721 oldbuf
= current_buffer
;
7722 Fset_buffer (Fget_buffer_create (Vmessages_buffer_name
));
7723 current_buffer
->undo_list
= Qt
;
7725 oldpoint
= message_dolog_marker1
;
7726 set_marker_restricted (oldpoint
, make_number (PT
), Qnil
);
7727 oldbegv
= message_dolog_marker2
;
7728 set_marker_restricted (oldbegv
, make_number (BEGV
), Qnil
);
7729 oldzv
= message_dolog_marker3
;
7730 set_marker_restricted (oldzv
, make_number (ZV
), Qnil
);
7731 GCPRO1 (old_deactivate_mark
);
7739 BEGV_BYTE
= BEG_BYTE
;
7742 TEMP_SET_PT_BOTH (Z
, Z_BYTE
);
7744 /* Insert the string--maybe converting multibyte to single byte
7745 or vice versa, so that all the text fits the buffer. */
7747 && NILP (current_buffer
->enable_multibyte_characters
))
7749 int i
, c
, char_bytes
;
7750 unsigned char work
[1];
7752 /* Convert a multibyte string to single-byte
7753 for the *Message* buffer. */
7754 for (i
= 0; i
< nbytes
; i
+= char_bytes
)
7756 c
= string_char_and_length (m
+ i
, nbytes
- i
, &char_bytes
);
7757 work
[0] = (ASCII_CHAR_P (c
)
7759 : multibyte_char_to_unibyte (c
, Qnil
));
7760 insert_1_both (work
, 1, 1, 1, 0, 0);
7763 else if (! multibyte
7764 && ! NILP (current_buffer
->enable_multibyte_characters
))
7766 int i
, c
, char_bytes
;
7767 unsigned char *msg
= (unsigned char *) m
;
7768 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
7769 /* Convert a single-byte string to multibyte
7770 for the *Message* buffer. */
7771 for (i
= 0; i
< nbytes
; i
++)
7774 c
= unibyte_char_to_multibyte (c
);
7775 char_bytes
= CHAR_STRING (c
, str
);
7776 insert_1_both (str
, 1, char_bytes
, 1, 0, 0);
7780 insert_1 (m
, nbytes
, 1, 0, 0);
7784 int this_bol
, this_bol_byte
, prev_bol
, prev_bol_byte
, dup
;
7785 insert_1 ("\n", 1, 1, 0, 0);
7787 scan_newline (Z
, Z_BYTE
, BEG
, BEG_BYTE
, -2, 0);
7789 this_bol_byte
= PT_BYTE
;
7791 /* See if this line duplicates the previous one.
7792 If so, combine duplicates. */
7795 scan_newline (PT
, PT_BYTE
, BEG
, BEG_BYTE
, -2, 0);
7797 prev_bol_byte
= PT_BYTE
;
7799 dup
= message_log_check_duplicate (prev_bol
, prev_bol_byte
,
7800 this_bol
, this_bol_byte
);
7803 del_range_both (prev_bol
, prev_bol_byte
,
7804 this_bol
, this_bol_byte
, 0);
7810 /* If you change this format, don't forget to also
7811 change message_log_check_duplicate. */
7812 sprintf (dupstr
, " [%d times]", dup
);
7813 duplen
= strlen (dupstr
);
7814 TEMP_SET_PT_BOTH (Z
- 1, Z_BYTE
- 1);
7815 insert_1 (dupstr
, duplen
, 1, 0, 1);
7820 /* If we have more than the desired maximum number of lines
7821 in the *Messages* buffer now, delete the oldest ones.
7822 This is safe because we don't have undo in this buffer. */
7824 if (NATNUMP (Vmessage_log_max
))
7826 scan_newline (Z
, Z_BYTE
, BEG
, BEG_BYTE
,
7827 -XFASTINT (Vmessage_log_max
) - 1, 0);
7828 del_range_both (BEG
, BEG_BYTE
, PT
, PT_BYTE
, 0);
7831 BEGV
= XMARKER (oldbegv
)->charpos
;
7832 BEGV_BYTE
= marker_byte_position (oldbegv
);
7841 ZV
= XMARKER (oldzv
)->charpos
;
7842 ZV_BYTE
= marker_byte_position (oldzv
);
7846 TEMP_SET_PT_BOTH (Z
, Z_BYTE
);
7848 /* We can't do Fgoto_char (oldpoint) because it will run some
7850 TEMP_SET_PT_BOTH (XMARKER (oldpoint
)->charpos
,
7851 XMARKER (oldpoint
)->bytepos
);
7854 unchain_marker (XMARKER (oldpoint
));
7855 unchain_marker (XMARKER (oldbegv
));
7856 unchain_marker (XMARKER (oldzv
));
7858 tem
= Fget_buffer_window (Fcurrent_buffer (), Qt
);
7859 set_buffer_internal (oldbuf
);
7861 windows_or_buffers_changed
= old_windows_or_buffers_changed
;
7862 message_log_need_newline
= !nlflag
;
7863 Vdeactivate_mark
= old_deactivate_mark
;
7868 /* We are at the end of the buffer after just having inserted a newline.
7869 (Note: We depend on the fact we won't be crossing the gap.)
7870 Check to see if the most recent message looks a lot like the previous one.
7871 Return 0 if different, 1 if the new one should just replace it, or a
7872 value N > 1 if we should also append " [N times]". */
7875 message_log_check_duplicate (prev_bol
, prev_bol_byte
, this_bol
, this_bol_byte
)
7876 int prev_bol
, this_bol
;
7877 int prev_bol_byte
, this_bol_byte
;
7880 int len
= Z_BYTE
- 1 - this_bol_byte
;
7882 unsigned char *p1
= BUF_BYTE_ADDRESS (current_buffer
, prev_bol_byte
);
7883 unsigned char *p2
= BUF_BYTE_ADDRESS (current_buffer
, this_bol_byte
);
7885 for (i
= 0; i
< len
; i
++)
7887 if (i
>= 3 && p1
[i
-3] == '.' && p1
[i
-2] == '.' && p1
[i
-1] == '.')
7895 if (*p1
++ == ' ' && *p1
++ == '[')
7898 while (*p1
>= '0' && *p1
<= '9')
7899 n
= n
* 10 + *p1
++ - '0';
7900 if (strncmp (p1
, " times]\n", 8) == 0)
7907 /* Display an echo area message M with a specified length of NBYTES
7908 bytes. The string may include null characters. If M is 0, clear
7909 out any existing message, and let the mini-buffer text show
7912 This may GC, so the buffer M must NOT point to a Lisp string. */
7915 message2 (m
, nbytes
, multibyte
)
7920 /* First flush out any partial line written with print. */
7921 message_log_maybe_newline ();
7923 message_dolog (m
, nbytes
, 1, multibyte
);
7924 message2_nolog (m
, nbytes
, multibyte
);
7928 /* The non-logging counterpart of message2. */
7931 message2_nolog (m
, nbytes
, multibyte
)
7933 int nbytes
, multibyte
;
7935 struct frame
*sf
= SELECTED_FRAME ();
7936 message_enable_multibyte
= multibyte
;
7938 if (FRAME_INITIAL_P (sf
))
7940 if (noninteractive_need_newline
)
7941 putc ('\n', stderr
);
7942 noninteractive_need_newline
= 0;
7944 fwrite (m
, nbytes
, 1, stderr
);
7945 if (cursor_in_echo_area
== 0)
7946 fprintf (stderr
, "\n");
7949 /* A null message buffer means that the frame hasn't really been
7950 initialized yet. Error messages get reported properly by
7951 cmd_error, so this must be just an informative message; toss it. */
7952 else if (INTERACTIVE
7953 && sf
->glyphs_initialized_p
7954 && FRAME_MESSAGE_BUF (sf
))
7956 Lisp_Object mini_window
;
7959 /* Get the frame containing the mini-buffer
7960 that the selected frame is using. */
7961 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
7962 f
= XFRAME (WINDOW_FRAME (XWINDOW (mini_window
)));
7964 FRAME_SAMPLE_VISIBILITY (f
);
7965 if (FRAME_VISIBLE_P (sf
)
7966 && ! FRAME_VISIBLE_P (f
))
7967 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (mini_window
)));
7971 set_message (m
, Qnil
, nbytes
, multibyte
);
7972 if (minibuffer_auto_raise
)
7973 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window
)));
7976 clear_message (1, 1);
7978 do_pending_window_change (0);
7979 echo_area_display (1);
7980 do_pending_window_change (0);
7981 if (FRAME_TERMINAL (f
)->frame_up_to_date_hook
!= 0 && ! gc_in_progress
)
7982 (*FRAME_TERMINAL (f
)->frame_up_to_date_hook
) (f
);
7987 /* Display an echo area message M with a specified length of NBYTES
7988 bytes. The string may include null characters. If M is not a
7989 string, clear out any existing message, and let the mini-buffer
7992 This function cancels echoing. */
7995 message3 (m
, nbytes
, multibyte
)
8000 struct gcpro gcpro1
;
8003 clear_message (1,1);
8006 /* First flush out any partial line written with print. */
8007 message_log_maybe_newline ();
8013 SAFE_ALLOCA (buffer
, char *, nbytes
);
8014 bcopy (SDATA (m
), buffer
, nbytes
);
8015 message_dolog (buffer
, nbytes
, 1, multibyte
);
8018 message3_nolog (m
, nbytes
, multibyte
);
8024 /* The non-logging version of message3.
8025 This does not cancel echoing, because it is used for echoing.
8026 Perhaps we need to make a separate function for echoing
8027 and make this cancel echoing. */
8030 message3_nolog (m
, nbytes
, multibyte
)
8032 int nbytes
, multibyte
;
8034 struct frame
*sf
= SELECTED_FRAME ();
8035 message_enable_multibyte
= multibyte
;
8037 if (FRAME_INITIAL_P (sf
))
8039 if (noninteractive_need_newline
)
8040 putc ('\n', stderr
);
8041 noninteractive_need_newline
= 0;
8043 fwrite (SDATA (m
), nbytes
, 1, stderr
);
8044 if (cursor_in_echo_area
== 0)
8045 fprintf (stderr
, "\n");
8048 /* A null message buffer means that the frame hasn't really been
8049 initialized yet. Error messages get reported properly by
8050 cmd_error, so this must be just an informative message; toss it. */
8051 else if (INTERACTIVE
8052 && sf
->glyphs_initialized_p
8053 && FRAME_MESSAGE_BUF (sf
))
8055 Lisp_Object mini_window
;
8059 /* Get the frame containing the mini-buffer
8060 that the selected frame is using. */
8061 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
8062 frame
= XWINDOW (mini_window
)->frame
;
8065 FRAME_SAMPLE_VISIBILITY (f
);
8066 if (FRAME_VISIBLE_P (sf
)
8067 && !FRAME_VISIBLE_P (f
))
8068 Fmake_frame_visible (frame
);
8070 if (STRINGP (m
) && SCHARS (m
) > 0)
8072 set_message (NULL
, m
, nbytes
, multibyte
);
8073 if (minibuffer_auto_raise
)
8074 Fraise_frame (frame
);
8075 /* Assume we are not echoing.
8076 (If we are, echo_now will override this.) */
8077 echo_message_buffer
= Qnil
;
8080 clear_message (1, 1);
8082 do_pending_window_change (0);
8083 echo_area_display (1);
8084 do_pending_window_change (0);
8085 if (FRAME_TERMINAL (f
)->frame_up_to_date_hook
!= 0 && ! gc_in_progress
)
8086 (*FRAME_TERMINAL (f
)->frame_up_to_date_hook
) (f
);
8091 /* Display a null-terminated echo area message M. If M is 0, clear
8092 out any existing message, and let the mini-buffer text show through.
8094 The buffer M must continue to exist until after the echo area gets
8095 cleared or some other message gets displayed there. Do not pass
8096 text that is stored in a Lisp string. Do not pass text in a buffer
8097 that was alloca'd. */
8103 message2 (m
, (m
? strlen (m
) : 0), 0);
8107 /* The non-logging counterpart of message1. */
8113 message2_nolog (m
, (m
? strlen (m
) : 0), 0);
8116 /* Display a message M which contains a single %s
8117 which gets replaced with STRING. */
8120 message_with_string (m
, string
, log
)
8125 CHECK_STRING (string
);
8131 if (noninteractive_need_newline
)
8132 putc ('\n', stderr
);
8133 noninteractive_need_newline
= 0;
8134 fprintf (stderr
, m
, SDATA (string
));
8135 if (!cursor_in_echo_area
)
8136 fprintf (stderr
, "\n");
8140 else if (INTERACTIVE
)
8142 /* The frame whose minibuffer we're going to display the message on.
8143 It may be larger than the selected frame, so we need
8144 to use its buffer, not the selected frame's buffer. */
8145 Lisp_Object mini_window
;
8146 struct frame
*f
, *sf
= SELECTED_FRAME ();
8148 /* Get the frame containing the minibuffer
8149 that the selected frame is using. */
8150 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
8151 f
= XFRAME (WINDOW_FRAME (XWINDOW (mini_window
)));
8153 /* A null message buffer means that the frame hasn't really been
8154 initialized yet. Error messages get reported properly by
8155 cmd_error, so this must be just an informative message; toss it. */
8156 if (FRAME_MESSAGE_BUF (f
))
8158 Lisp_Object args
[2], message
;
8159 struct gcpro gcpro1
, gcpro2
;
8161 args
[0] = build_string (m
);
8162 args
[1] = message
= string
;
8163 GCPRO2 (args
[0], message
);
8166 message
= Fformat (2, args
);
8169 message3 (message
, SBYTES (message
), STRING_MULTIBYTE (message
));
8171 message3_nolog (message
, SBYTES (message
), STRING_MULTIBYTE (message
));
8175 /* Print should start at the beginning of the message
8176 buffer next time. */
8177 message_buf_print
= 0;
8183 /* Dump an informative message to the minibuf. If M is 0, clear out
8184 any existing message, and let the mini-buffer text show through. */
8188 message (m
, a1
, a2
, a3
)
8190 EMACS_INT a1
, a2
, a3
;
8196 if (noninteractive_need_newline
)
8197 putc ('\n', stderr
);
8198 noninteractive_need_newline
= 0;
8199 fprintf (stderr
, m
, a1
, a2
, a3
);
8200 if (cursor_in_echo_area
== 0)
8201 fprintf (stderr
, "\n");
8205 else if (INTERACTIVE
)
8207 /* The frame whose mini-buffer we're going to display the message
8208 on. It may be larger than the selected frame, so we need to
8209 use its buffer, not the selected frame's buffer. */
8210 Lisp_Object mini_window
;
8211 struct frame
*f
, *sf
= SELECTED_FRAME ();
8213 /* Get the frame containing the mini-buffer
8214 that the selected frame is using. */
8215 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
8216 f
= XFRAME (WINDOW_FRAME (XWINDOW (mini_window
)));
8218 /* A null message buffer means that the frame hasn't really been
8219 initialized yet. Error messages get reported properly by
8220 cmd_error, so this must be just an informative message; toss
8222 if (FRAME_MESSAGE_BUF (f
))
8233 len
= doprnt (FRAME_MESSAGE_BUF (f
),
8234 FRAME_MESSAGE_BUF_SIZE (f
), m
, (char *)0, 3, a
);
8236 len
= doprnt (FRAME_MESSAGE_BUF (f
),
8237 FRAME_MESSAGE_BUF_SIZE (f
), m
, (char *)0, 3,
8239 #endif /* NO_ARG_ARRAY */
8241 message2 (FRAME_MESSAGE_BUF (f
), len
, 0);
8246 /* Print should start at the beginning of the message
8247 buffer next time. */
8248 message_buf_print
= 0;
8254 /* The non-logging version of message. */
8257 message_nolog (m
, a1
, a2
, a3
)
8259 EMACS_INT a1
, a2
, a3
;
8261 Lisp_Object old_log_max
;
8262 old_log_max
= Vmessage_log_max
;
8263 Vmessage_log_max
= Qnil
;
8264 message (m
, a1
, a2
, a3
);
8265 Vmessage_log_max
= old_log_max
;
8269 /* Display the current message in the current mini-buffer. This is
8270 only called from error handlers in process.c, and is not time
8276 if (!NILP (echo_area_buffer
[0]))
8279 string
= Fcurrent_message ();
8280 message3 (string
, SBYTES (string
),
8281 !NILP (current_buffer
->enable_multibyte_characters
));
8286 /* Make sure echo area buffers in `echo_buffers' are live.
8287 If they aren't, make new ones. */
8290 ensure_echo_area_buffers ()
8294 for (i
= 0; i
< 2; ++i
)
8295 if (!BUFFERP (echo_buffer
[i
])
8296 || NILP (XBUFFER (echo_buffer
[i
])->name
))
8299 Lisp_Object old_buffer
;
8302 old_buffer
= echo_buffer
[i
];
8303 sprintf (name
, " *Echo Area %d*", i
);
8304 echo_buffer
[i
] = Fget_buffer_create (build_string (name
));
8305 XBUFFER (echo_buffer
[i
])->truncate_lines
= Qnil
;
8306 /* to force word wrap in echo area -
8307 it was decided to postpone this*/
8308 /* XBUFFER (echo_buffer[i])->word_wrap = Qt; */
8310 for (j
= 0; j
< 2; ++j
)
8311 if (EQ (old_buffer
, echo_area_buffer
[j
]))
8312 echo_area_buffer
[j
] = echo_buffer
[i
];
8317 /* Call FN with args A1..A4 with either the current or last displayed
8318 echo_area_buffer as current buffer.
8320 WHICH zero means use the current message buffer
8321 echo_area_buffer[0]. If that is nil, choose a suitable buffer
8322 from echo_buffer[] and clear it.
8324 WHICH > 0 means use echo_area_buffer[1]. If that is nil, choose a
8325 suitable buffer from echo_buffer[] and clear it.
8327 If WHICH < 0, set echo_area_buffer[1] to echo_area_buffer[0], so
8328 that the current message becomes the last displayed one, make
8329 choose a suitable buffer for echo_area_buffer[0], and clear it.
8331 Value is what FN returns. */
8334 with_echo_area_buffer (w
, which
, fn
, a1
, a2
, a3
, a4
)
8337 int (*fn
) P_ ((EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
));
8343 int this_one
, the_other
, clear_buffer_p
, rc
;
8344 int count
= SPECPDL_INDEX ();
8346 /* If buffers aren't live, make new ones. */
8347 ensure_echo_area_buffers ();
8352 this_one
= 0, the_other
= 1;
8354 this_one
= 1, the_other
= 0;
8357 this_one
= 0, the_other
= 1;
8360 /* We need a fresh one in case the current echo buffer equals
8361 the one containing the last displayed echo area message. */
8362 if (!NILP (echo_area_buffer
[this_one
])
8363 && EQ (echo_area_buffer
[this_one
], echo_area_buffer
[the_other
]))
8364 echo_area_buffer
[this_one
] = Qnil
;
8367 /* Choose a suitable buffer from echo_buffer[] is we don't
8369 if (NILP (echo_area_buffer
[this_one
]))
8371 echo_area_buffer
[this_one
]
8372 = (EQ (echo_area_buffer
[the_other
], echo_buffer
[this_one
])
8373 ? echo_buffer
[the_other
]
8374 : echo_buffer
[this_one
]);
8378 buffer
= echo_area_buffer
[this_one
];
8380 /* Don't get confused by reusing the buffer used for echoing
8381 for a different purpose. */
8382 if (echo_kboard
== NULL
&& EQ (buffer
, echo_message_buffer
))
8385 record_unwind_protect (unwind_with_echo_area_buffer
,
8386 with_echo_area_buffer_unwind_data (w
));
8388 /* Make the echo area buffer current. Note that for display
8389 purposes, it is not necessary that the displayed window's buffer
8390 == current_buffer, except for text property lookup. So, let's
8391 only set that buffer temporarily here without doing a full
8392 Fset_window_buffer. We must also change w->pointm, though,
8393 because otherwise an assertions in unshow_buffer fails, and Emacs
8395 set_buffer_internal_1 (XBUFFER (buffer
));
8399 set_marker_both (w
->pointm
, buffer
, BEG
, BEG_BYTE
);
8402 current_buffer
->undo_list
= Qt
;
8403 current_buffer
->read_only
= Qnil
;
8404 specbind (Qinhibit_read_only
, Qt
);
8405 specbind (Qinhibit_modification_hooks
, Qt
);
8407 if (clear_buffer_p
&& Z
> BEG
)
8410 xassert (BEGV
>= BEG
);
8411 xassert (ZV
<= Z
&& ZV
>= BEGV
);
8413 rc
= fn (a1
, a2
, a3
, a4
);
8415 xassert (BEGV
>= BEG
);
8416 xassert (ZV
<= Z
&& ZV
>= BEGV
);
8418 unbind_to (count
, Qnil
);
8423 /* Save state that should be preserved around the call to the function
8424 FN called in with_echo_area_buffer. */
8427 with_echo_area_buffer_unwind_data (w
)
8431 Lisp_Object vector
, tmp
;
8433 /* Reduce consing by keeping one vector in
8434 Vwith_echo_area_save_vector. */
8435 vector
= Vwith_echo_area_save_vector
;
8436 Vwith_echo_area_save_vector
= Qnil
;
8439 vector
= Fmake_vector (make_number (7), Qnil
);
8441 XSETBUFFER (tmp
, current_buffer
); ASET (vector
, i
, tmp
); ++i
;
8442 ASET (vector
, i
, Vdeactivate_mark
); ++i
;
8443 ASET (vector
, i
, make_number (windows_or_buffers_changed
)); ++i
;
8447 XSETWINDOW (tmp
, w
); ASET (vector
, i
, tmp
); ++i
;
8448 ASET (vector
, i
, w
->buffer
); ++i
;
8449 ASET (vector
, i
, make_number (XMARKER (w
->pointm
)->charpos
)); ++i
;
8450 ASET (vector
, i
, make_number (XMARKER (w
->pointm
)->bytepos
)); ++i
;
8455 for (; i
< end
; ++i
)
8456 ASET (vector
, i
, Qnil
);
8459 xassert (i
== ASIZE (vector
));
8464 /* Restore global state from VECTOR which was created by
8465 with_echo_area_buffer_unwind_data. */
8468 unwind_with_echo_area_buffer (vector
)
8471 set_buffer_internal_1 (XBUFFER (AREF (vector
, 0)));
8472 Vdeactivate_mark
= AREF (vector
, 1);
8473 windows_or_buffers_changed
= XFASTINT (AREF (vector
, 2));
8475 if (WINDOWP (AREF (vector
, 3)))
8478 Lisp_Object buffer
, charpos
, bytepos
;
8480 w
= XWINDOW (AREF (vector
, 3));
8481 buffer
= AREF (vector
, 4);
8482 charpos
= AREF (vector
, 5);
8483 bytepos
= AREF (vector
, 6);
8486 set_marker_both (w
->pointm
, buffer
,
8487 XFASTINT (charpos
), XFASTINT (bytepos
));
8490 Vwith_echo_area_save_vector
= vector
;
8495 /* Set up the echo area for use by print functions. MULTIBYTE_P
8496 non-zero means we will print multibyte. */
8499 setup_echo_area_for_printing (multibyte_p
)
8502 /* If we can't find an echo area any more, exit. */
8503 if (! FRAME_LIVE_P (XFRAME (selected_frame
)))
8506 ensure_echo_area_buffers ();
8508 if (!message_buf_print
)
8510 /* A message has been output since the last time we printed.
8511 Choose a fresh echo area buffer. */
8512 if (EQ (echo_area_buffer
[1], echo_buffer
[0]))
8513 echo_area_buffer
[0] = echo_buffer
[1];
8515 echo_area_buffer
[0] = echo_buffer
[0];
8517 /* Switch to that buffer and clear it. */
8518 set_buffer_internal (XBUFFER (echo_area_buffer
[0]));
8519 current_buffer
->truncate_lines
= Qnil
;
8523 int count
= SPECPDL_INDEX ();
8524 specbind (Qinhibit_read_only
, Qt
);
8525 /* Note that undo recording is always disabled. */
8527 unbind_to (count
, Qnil
);
8529 TEMP_SET_PT_BOTH (BEG
, BEG_BYTE
);
8531 /* Set up the buffer for the multibyteness we need. */
8533 != !NILP (current_buffer
->enable_multibyte_characters
))
8534 Fset_buffer_multibyte (multibyte_p
? Qt
: Qnil
);
8536 /* Raise the frame containing the echo area. */
8537 if (minibuffer_auto_raise
)
8539 struct frame
*sf
= SELECTED_FRAME ();
8540 Lisp_Object mini_window
;
8541 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
8542 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window
)));
8545 message_log_maybe_newline ();
8546 message_buf_print
= 1;
8550 if (NILP (echo_area_buffer
[0]))
8552 if (EQ (echo_area_buffer
[1], echo_buffer
[0]))
8553 echo_area_buffer
[0] = echo_buffer
[1];
8555 echo_area_buffer
[0] = echo_buffer
[0];
8558 if (current_buffer
!= XBUFFER (echo_area_buffer
[0]))
8560 /* Someone switched buffers between print requests. */
8561 set_buffer_internal (XBUFFER (echo_area_buffer
[0]));
8562 current_buffer
->truncate_lines
= Qnil
;
8568 /* Display an echo area message in window W. Value is non-zero if W's
8569 height is changed. If display_last_displayed_message_p is
8570 non-zero, display the message that was last displayed, otherwise
8571 display the current message. */
8574 display_echo_area (w
)
8577 int i
, no_message_p
, window_height_changed_p
, count
;
8579 /* Temporarily disable garbage collections while displaying the echo
8580 area. This is done because a GC can print a message itself.
8581 That message would modify the echo area buffer's contents while a
8582 redisplay of the buffer is going on, and seriously confuse
8584 count
= inhibit_garbage_collection ();
8586 /* If there is no message, we must call display_echo_area_1
8587 nevertheless because it resizes the window. But we will have to
8588 reset the echo_area_buffer in question to nil at the end because
8589 with_echo_area_buffer will sets it to an empty buffer. */
8590 i
= display_last_displayed_message_p
? 1 : 0;
8591 no_message_p
= NILP (echo_area_buffer
[i
]);
8593 window_height_changed_p
8594 = with_echo_area_buffer (w
, display_last_displayed_message_p
,
8595 display_echo_area_1
,
8596 (EMACS_INT
) w
, Qnil
, 0, 0);
8599 echo_area_buffer
[i
] = Qnil
;
8601 unbind_to (count
, Qnil
);
8602 return window_height_changed_p
;
8606 /* Helper for display_echo_area. Display the current buffer which
8607 contains the current echo area message in window W, a mini-window,
8608 a pointer to which is passed in A1. A2..A4 are currently not used.
8609 Change the height of W so that all of the message is displayed.
8610 Value is non-zero if height of W was changed. */
8613 display_echo_area_1 (a1
, a2
, a3
, a4
)
8618 struct window
*w
= (struct window
*) a1
;
8620 struct text_pos start
;
8621 int window_height_changed_p
= 0;
8623 /* Do this before displaying, so that we have a large enough glyph
8624 matrix for the display. If we can't get enough space for the
8625 whole text, display the last N lines. That works by setting w->start. */
8626 window_height_changed_p
= resize_mini_window (w
, 0);
8628 /* Use the starting position chosen by resize_mini_window. */
8629 SET_TEXT_POS_FROM_MARKER (start
, w
->start
);
8632 clear_glyph_matrix (w
->desired_matrix
);
8633 XSETWINDOW (window
, w
);
8634 try_window (window
, start
, 0);
8636 return window_height_changed_p
;
8640 /* Resize the echo area window to exactly the size needed for the
8641 currently displayed message, if there is one. If a mini-buffer
8642 is active, don't shrink it. */
8645 resize_echo_area_exactly ()
8647 if (BUFFERP (echo_area_buffer
[0])
8648 && WINDOWP (echo_area_window
))
8650 struct window
*w
= XWINDOW (echo_area_window
);
8652 Lisp_Object resize_exactly
;
8654 if (minibuf_level
== 0)
8655 resize_exactly
= Qt
;
8657 resize_exactly
= Qnil
;
8659 resized_p
= with_echo_area_buffer (w
, 0, resize_mini_window_1
,
8660 (EMACS_INT
) w
, resize_exactly
, 0, 0);
8663 ++windows_or_buffers_changed
;
8664 ++update_mode_lines
;
8665 redisplay_internal (0);
8671 /* Callback function for with_echo_area_buffer, when used from
8672 resize_echo_area_exactly. A1 contains a pointer to the window to
8673 resize, EXACTLY non-nil means resize the mini-window exactly to the
8674 size of the text displayed. A3 and A4 are not used. Value is what
8675 resize_mini_window returns. */
8678 resize_mini_window_1 (a1
, exactly
, a3
, a4
)
8680 Lisp_Object exactly
;
8683 return resize_mini_window ((struct window
*) a1
, !NILP (exactly
));
8687 /* Resize mini-window W to fit the size of its contents. EXACT_P
8688 means size the window exactly to the size needed. Otherwise, it's
8689 only enlarged until W's buffer is empty.
8691 Set W->start to the right place to begin display. If the whole
8692 contents fit, start at the beginning. Otherwise, start so as
8693 to make the end of the contents appear. This is particularly
8694 important for y-or-n-p, but seems desirable generally.
8696 Value is non-zero if the window height has been changed. */
8699 resize_mini_window (w
, exact_p
)
8703 struct frame
*f
= XFRAME (w
->frame
);
8704 int window_height_changed_p
= 0;
8706 xassert (MINI_WINDOW_P (w
));
8708 /* By default, start display at the beginning. */
8709 set_marker_both (w
->start
, w
->buffer
,
8710 BUF_BEGV (XBUFFER (w
->buffer
)),
8711 BUF_BEGV_BYTE (XBUFFER (w
->buffer
)));
8713 /* Don't resize windows while redisplaying a window; it would
8714 confuse redisplay functions when the size of the window they are
8715 displaying changes from under them. Such a resizing can happen,
8716 for instance, when which-func prints a long message while
8717 we are running fontification-functions. We're running these
8718 functions with safe_call which binds inhibit-redisplay to t. */
8719 if (!NILP (Vinhibit_redisplay
))
8722 /* Nil means don't try to resize. */
8723 if (NILP (Vresize_mini_windows
)
8724 || (FRAME_X_P (f
) && FRAME_X_OUTPUT (f
) == NULL
))
8727 if (!FRAME_MINIBUF_ONLY_P (f
))
8730 struct window
*root
= XWINDOW (FRAME_ROOT_WINDOW (f
));
8731 int total_height
= WINDOW_TOTAL_LINES (root
) + WINDOW_TOTAL_LINES (w
);
8732 int height
, max_height
;
8733 int unit
= FRAME_LINE_HEIGHT (f
);
8734 struct text_pos start
;
8735 struct buffer
*old_current_buffer
= NULL
;
8737 if (current_buffer
!= XBUFFER (w
->buffer
))
8739 old_current_buffer
= current_buffer
;
8740 set_buffer_internal (XBUFFER (w
->buffer
));
8743 init_iterator (&it
, w
, BEGV
, BEGV_BYTE
, NULL
, DEFAULT_FACE_ID
);
8745 /* Compute the max. number of lines specified by the user. */
8746 if (FLOATP (Vmax_mini_window_height
))
8747 max_height
= XFLOATINT (Vmax_mini_window_height
) * FRAME_LINES (f
);
8748 else if (INTEGERP (Vmax_mini_window_height
))
8749 max_height
= XINT (Vmax_mini_window_height
);
8751 max_height
= total_height
/ 4;
8753 /* Correct that max. height if it's bogus. */
8754 max_height
= max (1, max_height
);
8755 max_height
= min (total_height
, max_height
);
8757 /* Find out the height of the text in the window. */
8758 if (it
.line_wrap
== TRUNCATE
)
8763 move_it_to (&it
, ZV
, -1, -1, -1, MOVE_TO_POS
);
8764 if (it
.max_ascent
== 0 && it
.max_descent
== 0)
8765 height
= it
.current_y
+ last_height
;
8767 height
= it
.current_y
+ it
.max_ascent
+ it
.max_descent
;
8768 height
-= min (it
.extra_line_spacing
, it
.max_extra_line_spacing
);
8769 height
= (height
+ unit
- 1) / unit
;
8772 /* Compute a suitable window start. */
8773 if (height
> max_height
)
8775 height
= max_height
;
8776 init_iterator (&it
, w
, ZV
, ZV_BYTE
, NULL
, DEFAULT_FACE_ID
);
8777 move_it_vertically_backward (&it
, (height
- 1) * unit
);
8778 start
= it
.current
.pos
;
8781 SET_TEXT_POS (start
, BEGV
, BEGV_BYTE
);
8782 SET_MARKER_FROM_TEXT_POS (w
->start
, start
);
8784 if (EQ (Vresize_mini_windows
, Qgrow_only
))
8786 /* Let it grow only, until we display an empty message, in which
8787 case the window shrinks again. */
8788 if (height
> WINDOW_TOTAL_LINES (w
))
8790 int old_height
= WINDOW_TOTAL_LINES (w
);
8791 freeze_window_starts (f
, 1);
8792 grow_mini_window (w
, height
- WINDOW_TOTAL_LINES (w
));
8793 window_height_changed_p
= WINDOW_TOTAL_LINES (w
) != old_height
;
8795 else if (height
< WINDOW_TOTAL_LINES (w
)
8796 && (exact_p
|| BEGV
== ZV
))
8798 int old_height
= WINDOW_TOTAL_LINES (w
);
8799 freeze_window_starts (f
, 0);
8800 shrink_mini_window (w
);
8801 window_height_changed_p
= WINDOW_TOTAL_LINES (w
) != old_height
;
8806 /* Always resize to exact size needed. */
8807 if (height
> WINDOW_TOTAL_LINES (w
))
8809 int old_height
= WINDOW_TOTAL_LINES (w
);
8810 freeze_window_starts (f
, 1);
8811 grow_mini_window (w
, height
- WINDOW_TOTAL_LINES (w
));
8812 window_height_changed_p
= WINDOW_TOTAL_LINES (w
) != old_height
;
8814 else if (height
< WINDOW_TOTAL_LINES (w
))
8816 int old_height
= WINDOW_TOTAL_LINES (w
);
8817 freeze_window_starts (f
, 0);
8818 shrink_mini_window (w
);
8822 freeze_window_starts (f
, 1);
8823 grow_mini_window (w
, height
- WINDOW_TOTAL_LINES (w
));
8826 window_height_changed_p
= WINDOW_TOTAL_LINES (w
) != old_height
;
8830 if (old_current_buffer
)
8831 set_buffer_internal (old_current_buffer
);
8834 return window_height_changed_p
;
8838 /* Value is the current message, a string, or nil if there is no
8846 if (!BUFFERP (echo_area_buffer
[0]))
8850 with_echo_area_buffer (0, 0, current_message_1
,
8851 (EMACS_INT
) &msg
, Qnil
, 0, 0);
8853 echo_area_buffer
[0] = Qnil
;
8861 current_message_1 (a1
, a2
, a3
, a4
)
8866 Lisp_Object
*msg
= (Lisp_Object
*) a1
;
8869 *msg
= make_buffer_string (BEG
, Z
, 1);
8876 /* Push the current message on Vmessage_stack for later restauration
8877 by restore_message. Value is non-zero if the current message isn't
8878 empty. This is a relatively infrequent operation, so it's not
8879 worth optimizing. */
8885 msg
= current_message ();
8886 Vmessage_stack
= Fcons (msg
, Vmessage_stack
);
8887 return STRINGP (msg
);
8891 /* Restore message display from the top of Vmessage_stack. */
8898 xassert (CONSP (Vmessage_stack
));
8899 msg
= XCAR (Vmessage_stack
);
8901 message3_nolog (msg
, SBYTES (msg
), STRING_MULTIBYTE (msg
));
8903 message3_nolog (msg
, 0, 0);
8907 /* Handler for record_unwind_protect calling pop_message. */
8910 pop_message_unwind (dummy
)
8917 /* Pop the top-most entry off Vmessage_stack. */
8922 xassert (CONSP (Vmessage_stack
));
8923 Vmessage_stack
= XCDR (Vmessage_stack
);
8927 /* Check that Vmessage_stack is nil. Called from emacs.c when Emacs
8928 exits. If the stack is not empty, we have a missing pop_message
8932 check_message_stack ()
8934 if (!NILP (Vmessage_stack
))
8939 /* Truncate to NCHARS what will be displayed in the echo area the next
8940 time we display it---but don't redisplay it now. */
8943 truncate_echo_area (nchars
)
8947 echo_area_buffer
[0] = Qnil
;
8948 /* A null message buffer means that the frame hasn't really been
8949 initialized yet. Error messages get reported properly by
8950 cmd_error, so this must be just an informative message; toss it. */
8951 else if (!noninteractive
8953 && !NILP (echo_area_buffer
[0]))
8955 struct frame
*sf
= SELECTED_FRAME ();
8956 if (FRAME_MESSAGE_BUF (sf
))
8957 with_echo_area_buffer (0, 0, truncate_message_1
, nchars
, Qnil
, 0, 0);
8962 /* Helper function for truncate_echo_area. Truncate the current
8963 message to at most NCHARS characters. */
8966 truncate_message_1 (nchars
, a2
, a3
, a4
)
8971 if (BEG
+ nchars
< Z
)
8972 del_range (BEG
+ nchars
, Z
);
8974 echo_area_buffer
[0] = Qnil
;
8979 /* Set the current message to a substring of S or STRING.
8981 If STRING is a Lisp string, set the message to the first NBYTES
8982 bytes from STRING. NBYTES zero means use the whole string. If
8983 STRING is multibyte, the message will be displayed multibyte.
8985 If S is not null, set the message to the first LEN bytes of S. LEN
8986 zero means use the whole string. MULTIBYTE_P non-zero means S is
8987 multibyte. Display the message multibyte in that case.
8989 Doesn't GC, as with_echo_area_buffer binds Qinhibit_modification_hooks
8990 to t before calling set_message_1 (which calls insert).
8994 set_message (s
, string
, nbytes
, multibyte_p
)
8997 int nbytes
, multibyte_p
;
8999 message_enable_multibyte
9000 = ((s
&& multibyte_p
)
9001 || (STRINGP (string
) && STRING_MULTIBYTE (string
)));
9003 with_echo_area_buffer (0, -1, set_message_1
,
9004 (EMACS_INT
) s
, string
, nbytes
, multibyte_p
);
9005 message_buf_print
= 0;
9006 help_echo_showing_p
= 0;
9010 /* Helper function for set_message. Arguments have the same meaning
9011 as there, with A1 corresponding to S and A2 corresponding to STRING
9012 This function is called with the echo area buffer being
9016 set_message_1 (a1
, a2
, nbytes
, multibyte_p
)
9019 EMACS_INT nbytes
, multibyte_p
;
9021 const char *s
= (const char *) a1
;
9022 Lisp_Object string
= a2
;
9024 /* Change multibyteness of the echo buffer appropriately. */
9025 if (message_enable_multibyte
9026 != !NILP (current_buffer
->enable_multibyte_characters
))
9027 Fset_buffer_multibyte (message_enable_multibyte
? Qt
: Qnil
);
9029 current_buffer
->truncate_lines
= message_truncate_lines
? Qt
: Qnil
;
9031 /* Insert new message at BEG. */
9032 TEMP_SET_PT_BOTH (BEG
, BEG_BYTE
);
9034 if (STRINGP (string
))
9039 nbytes
= SBYTES (string
);
9040 nchars
= string_byte_to_char (string
, nbytes
);
9042 /* This function takes care of single/multibyte conversion. We
9043 just have to ensure that the echo area buffer has the right
9044 setting of enable_multibyte_characters. */
9045 insert_from_string (string
, 0, 0, nchars
, nbytes
, 1);
9050 nbytes
= strlen (s
);
9052 if (multibyte_p
&& NILP (current_buffer
->enable_multibyte_characters
))
9054 /* Convert from multi-byte to single-byte. */
9056 unsigned char work
[1];
9058 /* Convert a multibyte string to single-byte. */
9059 for (i
= 0; i
< nbytes
; i
+= n
)
9061 c
= string_char_and_length (s
+ i
, nbytes
- i
, &n
);
9062 work
[0] = (ASCII_CHAR_P (c
)
9064 : multibyte_char_to_unibyte (c
, Qnil
));
9065 insert_1_both (work
, 1, 1, 1, 0, 0);
9068 else if (!multibyte_p
9069 && !NILP (current_buffer
->enable_multibyte_characters
))
9071 /* Convert from single-byte to multi-byte. */
9073 const unsigned char *msg
= (const unsigned char *) s
;
9074 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
9076 /* Convert a single-byte string to multibyte. */
9077 for (i
= 0; i
< nbytes
; i
++)
9080 c
= unibyte_char_to_multibyte (c
);
9081 n
= CHAR_STRING (c
, str
);
9082 insert_1_both (str
, 1, n
, 1, 0, 0);
9086 insert_1 (s
, nbytes
, 1, 0, 0);
9093 /* Clear messages. CURRENT_P non-zero means clear the current
9094 message. LAST_DISPLAYED_P non-zero means clear the message
9098 clear_message (current_p
, last_displayed_p
)
9099 int current_p
, last_displayed_p
;
9103 echo_area_buffer
[0] = Qnil
;
9104 message_cleared_p
= 1;
9107 if (last_displayed_p
)
9108 echo_area_buffer
[1] = Qnil
;
9110 message_buf_print
= 0;
9113 /* Clear garbaged frames.
9115 This function is used where the old redisplay called
9116 redraw_garbaged_frames which in turn called redraw_frame which in
9117 turn called clear_frame. The call to clear_frame was a source of
9118 flickering. I believe a clear_frame is not necessary. It should
9119 suffice in the new redisplay to invalidate all current matrices,
9120 and ensure a complete redisplay of all windows. */
9123 clear_garbaged_frames ()
9127 Lisp_Object tail
, frame
;
9128 int changed_count
= 0;
9130 FOR_EACH_FRAME (tail
, frame
)
9132 struct frame
*f
= XFRAME (frame
);
9134 if (FRAME_VISIBLE_P (f
) && FRAME_GARBAGED_P (f
))
9138 Fredraw_frame (frame
);
9139 f
->force_flush_display_p
= 1;
9141 clear_current_matrices (f
);
9150 ++windows_or_buffers_changed
;
9155 /* Redisplay the echo area of the selected frame. If UPDATE_FRAME_P
9156 is non-zero update selected_frame. Value is non-zero if the
9157 mini-windows height has been changed. */
9160 echo_area_display (update_frame_p
)
9163 Lisp_Object mini_window
;
9166 int window_height_changed_p
= 0;
9167 struct frame
*sf
= SELECTED_FRAME ();
9169 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
9170 w
= XWINDOW (mini_window
);
9171 f
= XFRAME (WINDOW_FRAME (w
));
9173 /* Don't display if frame is invisible or not yet initialized. */
9174 if (!FRAME_VISIBLE_P (f
) || !f
->glyphs_initialized_p
)
9177 #ifdef HAVE_WINDOW_SYSTEM
9178 /* When Emacs starts, selected_frame may be the initial terminal
9179 frame. If we let this through, a message would be displayed on
9181 if (FRAME_INITIAL_P (XFRAME (selected_frame
)))
9183 #endif /* HAVE_WINDOW_SYSTEM */
9185 /* Redraw garbaged frames. */
9187 clear_garbaged_frames ();
9189 if (!NILP (echo_area_buffer
[0]) || minibuf_level
== 0)
9191 echo_area_window
= mini_window
;
9192 window_height_changed_p
= display_echo_area (w
);
9193 w
->must_be_updated_p
= 1;
9195 /* Update the display, unless called from redisplay_internal.
9196 Also don't update the screen during redisplay itself. The
9197 update will happen at the end of redisplay, and an update
9198 here could cause confusion. */
9199 if (update_frame_p
&& !redisplaying_p
)
9203 /* If the display update has been interrupted by pending
9204 input, update mode lines in the frame. Due to the
9205 pending input, it might have been that redisplay hasn't
9206 been called, so that mode lines above the echo area are
9207 garbaged. This looks odd, so we prevent it here. */
9208 if (!display_completed
)
9209 n
= redisplay_mode_lines (FRAME_ROOT_WINDOW (f
), 0);
9211 if (window_height_changed_p
9212 /* Don't do this if Emacs is shutting down. Redisplay
9213 needs to run hooks. */
9214 && !NILP (Vrun_hooks
))
9216 /* Must update other windows. Likewise as in other
9217 cases, don't let this update be interrupted by
9219 int count
= SPECPDL_INDEX ();
9220 specbind (Qredisplay_dont_pause
, Qt
);
9221 windows_or_buffers_changed
= 1;
9222 redisplay_internal (0);
9223 unbind_to (count
, Qnil
);
9225 else if (FRAME_WINDOW_P (f
) && n
== 0)
9227 /* Window configuration is the same as before.
9228 Can do with a display update of the echo area,
9229 unless we displayed some mode lines. */
9230 update_single_window (w
, 1);
9231 FRAME_RIF (f
)->flush_display (f
);
9234 update_frame (f
, 1, 1);
9236 /* If cursor is in the echo area, make sure that the next
9237 redisplay displays the minibuffer, so that the cursor will
9238 be replaced with what the minibuffer wants. */
9239 if (cursor_in_echo_area
)
9240 ++windows_or_buffers_changed
;
9243 else if (!EQ (mini_window
, selected_window
))
9244 windows_or_buffers_changed
++;
9246 /* Last displayed message is now the current message. */
9247 echo_area_buffer
[1] = echo_area_buffer
[0];
9248 /* Inform read_char that we're not echoing. */
9249 echo_message_buffer
= Qnil
;
9251 /* Prevent redisplay optimization in redisplay_internal by resetting
9252 this_line_start_pos. This is done because the mini-buffer now
9253 displays the message instead of its buffer text. */
9254 if (EQ (mini_window
, selected_window
))
9255 CHARPOS (this_line_start_pos
) = 0;
9257 return window_height_changed_p
;
9262 /***********************************************************************
9263 Mode Lines and Frame Titles
9264 ***********************************************************************/
9266 /* A buffer for constructing non-propertized mode-line strings and
9267 frame titles in it; allocated from the heap in init_xdisp and
9268 resized as needed in store_mode_line_noprop_char. */
9270 static char *mode_line_noprop_buf
;
9272 /* The buffer's end, and a current output position in it. */
9274 static char *mode_line_noprop_buf_end
;
9275 static char *mode_line_noprop_ptr
;
9277 #define MODE_LINE_NOPROP_LEN(start) \
9278 ((mode_line_noprop_ptr - mode_line_noprop_buf) - start)
9281 MODE_LINE_DISPLAY
= 0,
9287 /* Alist that caches the results of :propertize.
9288 Each element is (PROPERTIZED-STRING . PROPERTY-LIST). */
9289 static Lisp_Object mode_line_proptrans_alist
;
9291 /* List of strings making up the mode-line. */
9292 static Lisp_Object mode_line_string_list
;
9294 /* Base face property when building propertized mode line string. */
9295 static Lisp_Object mode_line_string_face
;
9296 static Lisp_Object mode_line_string_face_prop
;
9299 /* Unwind data for mode line strings */
9301 static Lisp_Object Vmode_line_unwind_vector
;
9304 format_mode_line_unwind_data (struct buffer
*obuf
,
9308 Lisp_Object vector
, tmp
;
9310 /* Reduce consing by keeping one vector in
9311 Vwith_echo_area_save_vector. */
9312 vector
= Vmode_line_unwind_vector
;
9313 Vmode_line_unwind_vector
= Qnil
;
9316 vector
= Fmake_vector (make_number (8), Qnil
);
9318 ASET (vector
, 0, make_number (mode_line_target
));
9319 ASET (vector
, 1, make_number (MODE_LINE_NOPROP_LEN (0)));
9320 ASET (vector
, 2, mode_line_string_list
);
9321 ASET (vector
, 3, save_proptrans
? mode_line_proptrans_alist
: Qt
);
9322 ASET (vector
, 4, mode_line_string_face
);
9323 ASET (vector
, 5, mode_line_string_face_prop
);
9326 XSETBUFFER (tmp
, obuf
);
9329 ASET (vector
, 6, tmp
);
9330 ASET (vector
, 7, owin
);
9336 unwind_format_mode_line (vector
)
9339 mode_line_target
= XINT (AREF (vector
, 0));
9340 mode_line_noprop_ptr
= mode_line_noprop_buf
+ XINT (AREF (vector
, 1));
9341 mode_line_string_list
= AREF (vector
, 2);
9342 if (! EQ (AREF (vector
, 3), Qt
))
9343 mode_line_proptrans_alist
= AREF (vector
, 3);
9344 mode_line_string_face
= AREF (vector
, 4);
9345 mode_line_string_face_prop
= AREF (vector
, 5);
9347 if (!NILP (AREF (vector
, 7)))
9348 /* Select window before buffer, since it may change the buffer. */
9349 Fselect_window (AREF (vector
, 7), Qt
);
9351 if (!NILP (AREF (vector
, 6)))
9353 set_buffer_internal_1 (XBUFFER (AREF (vector
, 6)));
9354 ASET (vector
, 6, Qnil
);
9357 Vmode_line_unwind_vector
= vector
;
9362 /* Store a single character C for the frame title in mode_line_noprop_buf.
9363 Re-allocate mode_line_noprop_buf if necessary. */
9367 store_mode_line_noprop_char (char c
)
9369 store_mode_line_noprop_char (c
)
9373 /* If output position has reached the end of the allocated buffer,
9374 double the buffer's size. */
9375 if (mode_line_noprop_ptr
== mode_line_noprop_buf_end
)
9377 int len
= MODE_LINE_NOPROP_LEN (0);
9378 int new_size
= 2 * len
* sizeof *mode_line_noprop_buf
;
9379 mode_line_noprop_buf
= (char *) xrealloc (mode_line_noprop_buf
, new_size
);
9380 mode_line_noprop_buf_end
= mode_line_noprop_buf
+ new_size
;
9381 mode_line_noprop_ptr
= mode_line_noprop_buf
+ len
;
9384 *mode_line_noprop_ptr
++ = c
;
9388 /* Store part of a frame title in mode_line_noprop_buf, beginning at
9389 mode_line_noprop_ptr. STR is the string to store. Do not copy
9390 characters that yield more columns than PRECISION; PRECISION <= 0
9391 means copy the whole string. Pad with spaces until FIELD_WIDTH
9392 number of characters have been copied; FIELD_WIDTH <= 0 means don't
9393 pad. Called from display_mode_element when it is used to build a
9397 store_mode_line_noprop (str
, field_width
, precision
)
9398 const unsigned char *str
;
9399 int field_width
, precision
;
9404 /* Copy at most PRECISION chars from STR. */
9405 nbytes
= strlen (str
);
9406 n
+= c_string_width (str
, nbytes
, precision
, &dummy
, &nbytes
);
9408 store_mode_line_noprop_char (*str
++);
9410 /* Fill up with spaces until FIELD_WIDTH reached. */
9411 while (field_width
> 0
9414 store_mode_line_noprop_char (' ');
9421 /***********************************************************************
9423 ***********************************************************************/
9425 #ifdef HAVE_WINDOW_SYSTEM
9427 /* Set the title of FRAME, if it has changed. The title format is
9428 Vicon_title_format if FRAME is iconified, otherwise it is
9429 frame_title_format. */
9432 x_consider_frame_title (frame
)
9435 struct frame
*f
= XFRAME (frame
);
9437 if (FRAME_WINDOW_P (f
)
9438 || FRAME_MINIBUF_ONLY_P (f
)
9439 || f
->explicit_name
)
9441 /* Do we have more than one visible frame on this X display? */
9448 int count
= SPECPDL_INDEX ();
9450 for (tail
= Vframe_list
; CONSP (tail
); tail
= XCDR (tail
))
9452 Lisp_Object other_frame
= XCAR (tail
);
9453 struct frame
*tf
= XFRAME (other_frame
);
9456 && FRAME_KBOARD (tf
) == FRAME_KBOARD (f
)
9457 && !FRAME_MINIBUF_ONLY_P (tf
)
9458 && !EQ (other_frame
, tip_frame
)
9459 && (FRAME_VISIBLE_P (tf
) || FRAME_ICONIFIED_P (tf
)))
9463 /* Set global variable indicating that multiple frames exist. */
9464 multiple_frames
= CONSP (tail
);
9466 /* Switch to the buffer of selected window of the frame. Set up
9467 mode_line_target so that display_mode_element will output into
9468 mode_line_noprop_buf; then display the title. */
9469 record_unwind_protect (unwind_format_mode_line
,
9470 format_mode_line_unwind_data
9471 (current_buffer
, selected_window
, 0));
9473 Fselect_window (f
->selected_window
, Qt
);
9474 set_buffer_internal_1 (XBUFFER (XWINDOW (f
->selected_window
)->buffer
));
9475 fmt
= FRAME_ICONIFIED_P (f
) ? Vicon_title_format
: Vframe_title_format
;
9477 mode_line_target
= MODE_LINE_TITLE
;
9478 title_start
= MODE_LINE_NOPROP_LEN (0);
9479 init_iterator (&it
, XWINDOW (f
->selected_window
), -1, -1,
9480 NULL
, DEFAULT_FACE_ID
);
9481 display_mode_element (&it
, 0, -1, -1, fmt
, Qnil
, 0);
9482 len
= MODE_LINE_NOPROP_LEN (title_start
);
9483 title
= mode_line_noprop_buf
+ title_start
;
9484 unbind_to (count
, Qnil
);
9486 /* Set the title only if it's changed. This avoids consing in
9487 the common case where it hasn't. (If it turns out that we've
9488 already wasted too much time by walking through the list with
9489 display_mode_element, then we might need to optimize at a
9490 higher level than this.) */
9491 if (! STRINGP (f
->name
)
9492 || SBYTES (f
->name
) != len
9493 || bcmp (title
, SDATA (f
->name
), len
) != 0)
9498 if (!MINI_WINDOW_P(XWINDOW(f
->selected_window
)))
9501 ns_set_name_as_filename (f
);
9503 x_implicitly_set_name (f
, make_string(title
, len
),
9509 x_implicitly_set_name (f
, make_string (title
, len
), Qnil
);
9514 /* do this also for frames with explicit names */
9515 ns_implicitly_set_icon_type(f
);
9516 ns_set_doc_edited(f
, Fbuffer_modified_p
9517 (XWINDOW (f
->selected_window
)->buffer
), Qnil
);
9523 #endif /* not HAVE_WINDOW_SYSTEM */
9528 /***********************************************************************
9530 ***********************************************************************/
9533 /* Prepare for redisplay by updating menu-bar item lists when
9534 appropriate. This can call eval. */
9537 prepare_menu_bars ()
9540 struct gcpro gcpro1
, gcpro2
;
9542 Lisp_Object tooltip_frame
;
9544 #ifdef HAVE_WINDOW_SYSTEM
9545 tooltip_frame
= tip_frame
;
9547 tooltip_frame
= Qnil
;
9550 /* Update all frame titles based on their buffer names, etc. We do
9551 this before the menu bars so that the buffer-menu will show the
9552 up-to-date frame titles. */
9553 #ifdef HAVE_WINDOW_SYSTEM
9554 if (windows_or_buffers_changed
|| update_mode_lines
)
9556 Lisp_Object tail
, frame
;
9558 FOR_EACH_FRAME (tail
, frame
)
9561 if (!EQ (frame
, tooltip_frame
)
9562 && (FRAME_VISIBLE_P (f
) || FRAME_ICONIFIED_P (f
)))
9563 x_consider_frame_title (frame
);
9566 #endif /* HAVE_WINDOW_SYSTEM */
9568 /* Update the menu bar item lists, if appropriate. This has to be
9569 done before any actual redisplay or generation of display lines. */
9570 all_windows
= (update_mode_lines
9571 || buffer_shared
> 1
9572 || windows_or_buffers_changed
);
9575 Lisp_Object tail
, frame
;
9576 int count
= SPECPDL_INDEX ();
9577 /* 1 means that update_menu_bar has run its hooks
9578 so any further calls to update_menu_bar shouldn't do so again. */
9579 int menu_bar_hooks_run
= 0;
9581 record_unwind_save_match_data ();
9583 FOR_EACH_FRAME (tail
, frame
)
9587 /* Ignore tooltip frame. */
9588 if (EQ (frame
, tooltip_frame
))
9591 /* If a window on this frame changed size, report that to
9592 the user and clear the size-change flag. */
9593 if (FRAME_WINDOW_SIZES_CHANGED (f
))
9595 Lisp_Object functions
;
9597 /* Clear flag first in case we get an error below. */
9598 FRAME_WINDOW_SIZES_CHANGED (f
) = 0;
9599 functions
= Vwindow_size_change_functions
;
9600 GCPRO2 (tail
, functions
);
9602 while (CONSP (functions
))
9604 if (!EQ (XCAR (functions
), Qt
))
9605 call1 (XCAR (functions
), frame
);
9606 functions
= XCDR (functions
);
9612 menu_bar_hooks_run
= update_menu_bar (f
, 0, menu_bar_hooks_run
);
9613 #ifdef HAVE_WINDOW_SYSTEM
9614 update_tool_bar (f
, 0);
9619 unbind_to (count
, Qnil
);
9623 struct frame
*sf
= SELECTED_FRAME ();
9624 update_menu_bar (sf
, 1, 0);
9625 #ifdef HAVE_WINDOW_SYSTEM
9626 update_tool_bar (sf
, 1);
9630 /* Motif needs this. See comment in xmenu.c. Turn it off when
9631 pending_menu_activation is not defined. */
9632 #ifdef USE_X_TOOLKIT
9633 pending_menu_activation
= 0;
9638 /* Update the menu bar item list for frame F. This has to be done
9639 before we start to fill in any display lines, because it can call
9642 If SAVE_MATCH_DATA is non-zero, we must save and restore it here.
9644 If HOOKS_RUN is 1, that means a previous call to update_menu_bar
9645 already ran the menu bar hooks for this redisplay, so there
9646 is no need to run them again. The return value is the
9647 updated value of this flag, to pass to the next call. */
9650 update_menu_bar (f
, save_match_data
, hooks_run
)
9652 int save_match_data
;
9656 register struct window
*w
;
9658 /* If called recursively during a menu update, do nothing. This can
9659 happen when, for instance, an activate-menubar-hook causes a
9661 if (inhibit_menubar_update
)
9664 window
= FRAME_SELECTED_WINDOW (f
);
9665 w
= XWINDOW (window
);
9667 if (FRAME_WINDOW_P (f
)
9669 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
9670 || defined (HAVE_NS) || defined (USE_GTK)
9671 FRAME_EXTERNAL_MENU_BAR (f
)
9673 FRAME_MENU_BAR_LINES (f
) > 0
9675 : FRAME_MENU_BAR_LINES (f
) > 0)
9677 /* If the user has switched buffers or windows, we need to
9678 recompute to reflect the new bindings. But we'll
9679 recompute when update_mode_lines is set too; that means
9680 that people can use force-mode-line-update to request
9681 that the menu bar be recomputed. The adverse effect on
9682 the rest of the redisplay algorithm is about the same as
9683 windows_or_buffers_changed anyway. */
9684 if (windows_or_buffers_changed
9685 /* This used to test w->update_mode_line, but we believe
9686 there is no need to recompute the menu in that case. */
9687 || update_mode_lines
9688 || ((BUF_SAVE_MODIFF (XBUFFER (w
->buffer
))
9689 < BUF_MODIFF (XBUFFER (w
->buffer
)))
9690 != !NILP (w
->last_had_star
))
9691 || ((!NILP (Vtransient_mark_mode
)
9692 && !NILP (XBUFFER (w
->buffer
)->mark_active
))
9693 != !NILP (w
->region_showing
)))
9695 struct buffer
*prev
= current_buffer
;
9696 int count
= SPECPDL_INDEX ();
9698 specbind (Qinhibit_menubar_update
, Qt
);
9700 set_buffer_internal_1 (XBUFFER (w
->buffer
));
9701 if (save_match_data
)
9702 record_unwind_save_match_data ();
9703 if (NILP (Voverriding_local_map_menu_flag
))
9705 specbind (Qoverriding_terminal_local_map
, Qnil
);
9706 specbind (Qoverriding_local_map
, Qnil
);
9711 /* Run the Lucid hook. */
9712 safe_run_hooks (Qactivate_menubar_hook
);
9714 /* If it has changed current-menubar from previous value,
9715 really recompute the menu-bar from the value. */
9716 if (! NILP (Vlucid_menu_bar_dirty_flag
))
9717 call0 (Qrecompute_lucid_menubar
);
9719 safe_run_hooks (Qmenu_bar_update_hook
);
9724 XSETFRAME (Vmenu_updating_frame
, f
);
9725 FRAME_MENU_BAR_ITEMS (f
) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f
));
9727 /* Redisplay the menu bar in case we changed it. */
9728 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
9729 || defined (HAVE_NS) || defined (USE_GTK)
9730 if (FRAME_WINDOW_P (f
))
9732 #if defined (HAVE_NS)
9733 /* All frames on Mac OS share the same menubar. So only
9734 the selected frame should be allowed to set it. */
9735 if (f
== SELECTED_FRAME ())
9737 set_frame_menubar (f
, 0, 0);
9740 /* On a terminal screen, the menu bar is an ordinary screen
9741 line, and this makes it get updated. */
9742 w
->update_mode_line
= Qt
;
9743 #else /* ! (USE_X_TOOLKIT || HAVE_NTGUI || HAVE_NS || USE_GTK) */
9744 /* In the non-toolkit version, the menu bar is an ordinary screen
9745 line, and this makes it get updated. */
9746 w
->update_mode_line
= Qt
;
9747 #endif /* ! (USE_X_TOOLKIT || HAVE_NTGUI || HAVE_NS || USE_GTK) */
9749 unbind_to (count
, Qnil
);
9750 set_buffer_internal_1 (prev
);
9759 /***********************************************************************
9761 ***********************************************************************/
9763 #ifdef HAVE_WINDOW_SYSTEM
9766 Nominal cursor position -- where to draw output.
9767 HPOS and VPOS are window relative glyph matrix coordinates.
9768 X and Y are window relative pixel coordinates. */
9770 struct cursor_pos output_cursor
;
9774 Set the global variable output_cursor to CURSOR. All cursor
9775 positions are relative to updated_window. */
9778 set_output_cursor (cursor
)
9779 struct cursor_pos
*cursor
;
9781 output_cursor
.hpos
= cursor
->hpos
;
9782 output_cursor
.vpos
= cursor
->vpos
;
9783 output_cursor
.x
= cursor
->x
;
9784 output_cursor
.y
= cursor
->y
;
9789 Set a nominal cursor position.
9791 HPOS and VPOS are column/row positions in a window glyph matrix. X
9792 and Y are window text area relative pixel positions.
9794 If this is done during an update, updated_window will contain the
9795 window that is being updated and the position is the future output
9796 cursor position for that window. If updated_window is null, use
9797 selected_window and display the cursor at the given position. */
9800 x_cursor_to (vpos
, hpos
, y
, x
)
9801 int vpos
, hpos
, y
, x
;
9805 /* If updated_window is not set, work on selected_window. */
9809 w
= XWINDOW (selected_window
);
9811 /* Set the output cursor. */
9812 output_cursor
.hpos
= hpos
;
9813 output_cursor
.vpos
= vpos
;
9814 output_cursor
.x
= x
;
9815 output_cursor
.y
= y
;
9817 /* If not called as part of an update, really display the cursor.
9818 This will also set the cursor position of W. */
9819 if (updated_window
== NULL
)
9822 display_and_set_cursor (w
, 1, hpos
, vpos
, x
, y
);
9823 if (FRAME_RIF (SELECTED_FRAME ())->flush_display_optional
)
9824 FRAME_RIF (SELECTED_FRAME ())->flush_display_optional (SELECTED_FRAME ());
9829 #endif /* HAVE_WINDOW_SYSTEM */
9832 /***********************************************************************
9834 ***********************************************************************/
9836 #ifdef HAVE_WINDOW_SYSTEM
9838 /* Where the mouse was last time we reported a mouse event. */
9840 FRAME_PTR last_mouse_frame
;
9842 /* Tool-bar item index of the item on which a mouse button was pressed
9845 int last_tool_bar_item
;
9849 update_tool_bar_unwind (frame
)
9852 selected_frame
= frame
;
9856 /* Update the tool-bar item list for frame F. This has to be done
9857 before we start to fill in any display lines. Called from
9858 prepare_menu_bars. If SAVE_MATCH_DATA is non-zero, we must save
9859 and restore it here. */
9862 update_tool_bar (f
, save_match_data
)
9864 int save_match_data
;
9866 #if defined (USE_GTK) || defined (HAVE_NS)
9867 int do_update
= FRAME_EXTERNAL_TOOL_BAR (f
);
9869 int do_update
= WINDOWP (f
->tool_bar_window
)
9870 && WINDOW_TOTAL_LINES (XWINDOW (f
->tool_bar_window
)) > 0;
9878 window
= FRAME_SELECTED_WINDOW (f
);
9879 w
= XWINDOW (window
);
9881 /* If the user has switched buffers or windows, we need to
9882 recompute to reflect the new bindings. But we'll
9883 recompute when update_mode_lines is set too; that means
9884 that people can use force-mode-line-update to request
9885 that the menu bar be recomputed. The adverse effect on
9886 the rest of the redisplay algorithm is about the same as
9887 windows_or_buffers_changed anyway. */
9888 if (windows_or_buffers_changed
9889 || !NILP (w
->update_mode_line
)
9890 || update_mode_lines
9891 || ((BUF_SAVE_MODIFF (XBUFFER (w
->buffer
))
9892 < BUF_MODIFF (XBUFFER (w
->buffer
)))
9893 != !NILP (w
->last_had_star
))
9894 || ((!NILP (Vtransient_mark_mode
)
9895 && !NILP (XBUFFER (w
->buffer
)->mark_active
))
9896 != !NILP (w
->region_showing
)))
9898 struct buffer
*prev
= current_buffer
;
9899 int count
= SPECPDL_INDEX ();
9900 Lisp_Object frame
, new_tool_bar
;
9902 struct gcpro gcpro1
;
9904 /* Set current_buffer to the buffer of the selected
9905 window of the frame, so that we get the right local
9907 set_buffer_internal_1 (XBUFFER (w
->buffer
));
9909 /* Save match data, if we must. */
9910 if (save_match_data
)
9911 record_unwind_save_match_data ();
9913 /* Make sure that we don't accidentally use bogus keymaps. */
9914 if (NILP (Voverriding_local_map_menu_flag
))
9916 specbind (Qoverriding_terminal_local_map
, Qnil
);
9917 specbind (Qoverriding_local_map
, Qnil
);
9920 GCPRO1 (new_tool_bar
);
9922 /* We must temporarily set the selected frame to this frame
9923 before calling tool_bar_items, because the calculation of
9924 the tool-bar keymap uses the selected frame (see
9925 `tool-bar-make-keymap' in tool-bar.el). */
9926 record_unwind_protect (update_tool_bar_unwind
, selected_frame
);
9927 XSETFRAME (frame
, f
);
9928 selected_frame
= frame
;
9930 /* Build desired tool-bar items from keymaps. */
9931 new_tool_bar
= tool_bar_items (Fcopy_sequence (f
->tool_bar_items
),
9934 /* Redisplay the tool-bar if we changed it. */
9935 if (new_n_tool_bar
!= f
->n_tool_bar_items
9936 || NILP (Fequal (new_tool_bar
, f
->tool_bar_items
)))
9938 /* Redisplay that happens asynchronously due to an expose event
9939 may access f->tool_bar_items. Make sure we update both
9940 variables within BLOCK_INPUT so no such event interrupts. */
9942 f
->tool_bar_items
= new_tool_bar
;
9943 f
->n_tool_bar_items
= new_n_tool_bar
;
9944 w
->update_mode_line
= Qt
;
9950 unbind_to (count
, Qnil
);
9951 set_buffer_internal_1 (prev
);
9957 /* Set F->desired_tool_bar_string to a Lisp string representing frame
9958 F's desired tool-bar contents. F->tool_bar_items must have
9959 been set up previously by calling prepare_menu_bars. */
9962 build_desired_tool_bar_string (f
)
9965 int i
, size
, size_needed
;
9966 struct gcpro gcpro1
, gcpro2
, gcpro3
;
9967 Lisp_Object image
, plist
, props
;
9969 image
= plist
= props
= Qnil
;
9970 GCPRO3 (image
, plist
, props
);
9972 /* Prepare F->desired_tool_bar_string. If we can reuse it, do so.
9973 Otherwise, make a new string. */
9975 /* The size of the string we might be able to reuse. */
9976 size
= (STRINGP (f
->desired_tool_bar_string
)
9977 ? SCHARS (f
->desired_tool_bar_string
)
9980 /* We need one space in the string for each image. */
9981 size_needed
= f
->n_tool_bar_items
;
9983 /* Reuse f->desired_tool_bar_string, if possible. */
9984 if (size
< size_needed
|| NILP (f
->desired_tool_bar_string
))
9985 f
->desired_tool_bar_string
= Fmake_string (make_number (size_needed
),
9989 props
= list4 (Qdisplay
, Qnil
, Qmenu_item
, Qnil
);
9990 Fremove_text_properties (make_number (0), make_number (size
),
9991 props
, f
->desired_tool_bar_string
);
9994 /* Put a `display' property on the string for the images to display,
9995 put a `menu_item' property on tool-bar items with a value that
9996 is the index of the item in F's tool-bar item vector. */
9997 for (i
= 0; i
< f
->n_tool_bar_items
; ++i
)
9999 #define PROP(IDX) AREF (f->tool_bar_items, i * TOOL_BAR_ITEM_NSLOTS + (IDX))
10001 int enabled_p
= !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P
));
10002 int selected_p
= !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P
));
10003 int hmargin
, vmargin
, relief
, idx
, end
;
10004 extern Lisp_Object QCrelief
, QCmargin
, QCconversion
;
10006 /* If image is a vector, choose the image according to the
10008 image
= PROP (TOOL_BAR_ITEM_IMAGES
);
10009 if (VECTORP (image
))
10013 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
10014 : TOOL_BAR_IMAGE_ENABLED_DESELECTED
);
10017 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
10018 : TOOL_BAR_IMAGE_DISABLED_DESELECTED
);
10020 xassert (ASIZE (image
) >= idx
);
10021 image
= AREF (image
, idx
);
10026 /* Ignore invalid image specifications. */
10027 if (!valid_image_p (image
))
10030 /* Display the tool-bar button pressed, or depressed. */
10031 plist
= Fcopy_sequence (XCDR (image
));
10033 /* Compute margin and relief to draw. */
10034 relief
= (tool_bar_button_relief
>= 0
10035 ? tool_bar_button_relief
10036 : DEFAULT_TOOL_BAR_BUTTON_RELIEF
);
10037 hmargin
= vmargin
= relief
;
10039 if (INTEGERP (Vtool_bar_button_margin
)
10040 && XINT (Vtool_bar_button_margin
) > 0)
10042 hmargin
+= XFASTINT (Vtool_bar_button_margin
);
10043 vmargin
+= XFASTINT (Vtool_bar_button_margin
);
10045 else if (CONSP (Vtool_bar_button_margin
))
10047 if (INTEGERP (XCAR (Vtool_bar_button_margin
))
10048 && XINT (XCAR (Vtool_bar_button_margin
)) > 0)
10049 hmargin
+= XFASTINT (XCAR (Vtool_bar_button_margin
));
10051 if (INTEGERP (XCDR (Vtool_bar_button_margin
))
10052 && XINT (XCDR (Vtool_bar_button_margin
)) > 0)
10053 vmargin
+= XFASTINT (XCDR (Vtool_bar_button_margin
));
10056 if (auto_raise_tool_bar_buttons_p
)
10058 /* Add a `:relief' property to the image spec if the item is
10062 plist
= Fplist_put (plist
, QCrelief
, make_number (-relief
));
10069 /* If image is selected, display it pressed, i.e. with a
10070 negative relief. If it's not selected, display it with a
10072 plist
= Fplist_put (plist
, QCrelief
,
10074 ? make_number (-relief
)
10075 : make_number (relief
)));
10080 /* Put a margin around the image. */
10081 if (hmargin
|| vmargin
)
10083 if (hmargin
== vmargin
)
10084 plist
= Fplist_put (plist
, QCmargin
, make_number (hmargin
));
10086 plist
= Fplist_put (plist
, QCmargin
,
10087 Fcons (make_number (hmargin
),
10088 make_number (vmargin
)));
10091 /* If button is not enabled, and we don't have special images
10092 for the disabled state, make the image appear disabled by
10093 applying an appropriate algorithm to it. */
10094 if (!enabled_p
&& idx
< 0)
10095 plist
= Fplist_put (plist
, QCconversion
, Qdisabled
);
10097 /* Put a `display' text property on the string for the image to
10098 display. Put a `menu-item' property on the string that gives
10099 the start of this item's properties in the tool-bar items
10101 image
= Fcons (Qimage
, plist
);
10102 props
= list4 (Qdisplay
, image
,
10103 Qmenu_item
, make_number (i
* TOOL_BAR_ITEM_NSLOTS
));
10105 /* Let the last image hide all remaining spaces in the tool bar
10106 string. The string can be longer than needed when we reuse a
10107 previous string. */
10108 if (i
+ 1 == f
->n_tool_bar_items
)
10109 end
= SCHARS (f
->desired_tool_bar_string
);
10112 Fadd_text_properties (make_number (i
), make_number (end
),
10113 props
, f
->desired_tool_bar_string
);
10121 /* Display one line of the tool-bar of frame IT->f.
10123 HEIGHT specifies the desired height of the tool-bar line.
10124 If the actual height of the glyph row is less than HEIGHT, the
10125 row's height is increased to HEIGHT, and the icons are centered
10126 vertically in the new height.
10128 If HEIGHT is -1, we are counting needed tool-bar lines, so don't
10129 count a final empty row in case the tool-bar width exactly matches
10134 display_tool_bar_line (it
, height
)
10138 struct glyph_row
*row
= it
->glyph_row
;
10139 int max_x
= it
->last_visible_x
;
10140 struct glyph
*last
;
10142 prepare_desired_row (row
);
10143 row
->y
= it
->current_y
;
10145 /* Note that this isn't made use of if the face hasn't a box,
10146 so there's no need to check the face here. */
10147 it
->start_of_box_run_p
= 1;
10149 while (it
->current_x
< max_x
)
10151 int x
, n_glyphs_before
, i
, nglyphs
;
10152 struct it it_before
;
10154 /* Get the next display element. */
10155 if (!get_next_display_element (it
))
10157 /* Don't count empty row if we are counting needed tool-bar lines. */
10158 if (height
< 0 && !it
->hpos
)
10163 /* Produce glyphs. */
10164 n_glyphs_before
= row
->used
[TEXT_AREA
];
10167 PRODUCE_GLYPHS (it
);
10169 nglyphs
= row
->used
[TEXT_AREA
] - n_glyphs_before
;
10171 x
= it_before
.current_x
;
10172 while (i
< nglyphs
)
10174 struct glyph
*glyph
= row
->glyphs
[TEXT_AREA
] + n_glyphs_before
+ i
;
10176 if (x
+ glyph
->pixel_width
> max_x
)
10178 /* Glyph doesn't fit on line. Backtrack. */
10179 row
->used
[TEXT_AREA
] = n_glyphs_before
;
10181 /* If this is the only glyph on this line, it will never fit on the
10182 toolbar, so skip it. But ensure there is at least one glyph,
10183 so we don't accidentally disable the tool-bar. */
10184 if (n_glyphs_before
== 0
10185 && (it
->vpos
> 0 || IT_STRING_CHARPOS (*it
) < it
->end_charpos
-1))
10191 x
+= glyph
->pixel_width
;
10195 /* Stop at line ends. */
10196 if (ITERATOR_AT_END_OF_LINE_P (it
))
10199 set_iterator_to_next (it
, 1);
10204 row
->displays_text_p
= row
->used
[TEXT_AREA
] != 0;
10206 /* Use default face for the border below the tool bar.
10208 FIXME: When auto-resize-tool-bars is grow-only, there is
10209 no additional border below the possibly empty tool-bar lines.
10210 So to make the extra empty lines look "normal", we have to
10211 use the tool-bar face for the border too. */
10212 if (!row
->displays_text_p
&& !EQ (Vauto_resize_tool_bars
, Qgrow_only
))
10213 it
->face_id
= DEFAULT_FACE_ID
;
10215 extend_face_to_end_of_line (it
);
10216 last
= row
->glyphs
[TEXT_AREA
] + row
->used
[TEXT_AREA
] - 1;
10217 last
->right_box_line_p
= 1;
10218 if (last
== row
->glyphs
[TEXT_AREA
])
10219 last
->left_box_line_p
= 1;
10221 /* Make line the desired height and center it vertically. */
10222 if ((height
-= it
->max_ascent
+ it
->max_descent
) > 0)
10224 /* Don't add more than one line height. */
10225 height
%= FRAME_LINE_HEIGHT (it
->f
);
10226 it
->max_ascent
+= height
/ 2;
10227 it
->max_descent
+= (height
+ 1) / 2;
10230 compute_line_metrics (it
);
10232 /* If line is empty, make it occupy the rest of the tool-bar. */
10233 if (!row
->displays_text_p
)
10235 row
->height
= row
->phys_height
= it
->last_visible_y
- row
->y
;
10236 row
->visible_height
= row
->height
;
10237 row
->ascent
= row
->phys_ascent
= 0;
10238 row
->extra_line_spacing
= 0;
10241 row
->full_width_p
= 1;
10242 row
->continued_p
= 0;
10243 row
->truncated_on_left_p
= 0;
10244 row
->truncated_on_right_p
= 0;
10246 it
->current_x
= it
->hpos
= 0;
10247 it
->current_y
+= row
->height
;
10253 /* Max tool-bar height. */
10255 #define MAX_FRAME_TOOL_BAR_HEIGHT(f) \
10256 ((FRAME_LINE_HEIGHT (f) * FRAME_LINES (f)))
10258 /* Value is the number of screen lines needed to make all tool-bar
10259 items of frame F visible. The number of actual rows needed is
10260 returned in *N_ROWS if non-NULL. */
10263 tool_bar_lines_needed (f
, n_rows
)
10267 struct window
*w
= XWINDOW (f
->tool_bar_window
);
10269 /* tool_bar_lines_needed is called from redisplay_tool_bar after building
10270 the desired matrix, so use (unused) mode-line row as temporary row to
10271 avoid destroying the first tool-bar row. */
10272 struct glyph_row
*temp_row
= MATRIX_MODE_LINE_ROW (w
->desired_matrix
);
10274 /* Initialize an iterator for iteration over
10275 F->desired_tool_bar_string in the tool-bar window of frame F. */
10276 init_iterator (&it
, w
, -1, -1, temp_row
, TOOL_BAR_FACE_ID
);
10277 it
.first_visible_x
= 0;
10278 it
.last_visible_x
= FRAME_TOTAL_COLS (f
) * FRAME_COLUMN_WIDTH (f
);
10279 reseat_to_string (&it
, NULL
, f
->desired_tool_bar_string
, 0, 0, 0, -1);
10281 while (!ITERATOR_AT_END_P (&it
))
10283 clear_glyph_row (temp_row
);
10284 it
.glyph_row
= temp_row
;
10285 display_tool_bar_line (&it
, -1);
10287 clear_glyph_row (temp_row
);
10289 /* f->n_tool_bar_rows == 0 means "unknown"; -1 means no tool-bar. */
10291 *n_rows
= it
.vpos
> 0 ? it
.vpos
: -1;
10293 return (it
.current_y
+ FRAME_LINE_HEIGHT (f
) - 1) / FRAME_LINE_HEIGHT (f
);
10297 DEFUN ("tool-bar-lines-needed", Ftool_bar_lines_needed
, Stool_bar_lines_needed
,
10299 doc
: /* Return the number of lines occupied by the tool bar of FRAME. */)
10308 frame
= selected_frame
;
10310 CHECK_FRAME (frame
);
10311 f
= XFRAME (frame
);
10313 if (WINDOWP (f
->tool_bar_window
)
10314 || (w
= XWINDOW (f
->tool_bar_window
),
10315 WINDOW_TOTAL_LINES (w
) > 0))
10317 update_tool_bar (f
, 1);
10318 if (f
->n_tool_bar_items
)
10320 build_desired_tool_bar_string (f
);
10321 nlines
= tool_bar_lines_needed (f
, NULL
);
10325 return make_number (nlines
);
10329 /* Display the tool-bar of frame F. Value is non-zero if tool-bar's
10330 height should be changed. */
10333 redisplay_tool_bar (f
)
10338 struct glyph_row
*row
;
10340 #if defined (USE_GTK) || defined (HAVE_NS)
10341 if (FRAME_EXTERNAL_TOOL_BAR (f
))
10342 update_frame_tool_bar (f
);
10346 /* If frame hasn't a tool-bar window or if it is zero-height, don't
10347 do anything. This means you must start with tool-bar-lines
10348 non-zero to get the auto-sizing effect. Or in other words, you
10349 can turn off tool-bars by specifying tool-bar-lines zero. */
10350 if (!WINDOWP (f
->tool_bar_window
)
10351 || (w
= XWINDOW (f
->tool_bar_window
),
10352 WINDOW_TOTAL_LINES (w
) == 0))
10355 /* Set up an iterator for the tool-bar window. */
10356 init_iterator (&it
, w
, -1, -1, w
->desired_matrix
->rows
, TOOL_BAR_FACE_ID
);
10357 it
.first_visible_x
= 0;
10358 it
.last_visible_x
= FRAME_TOTAL_COLS (f
) * FRAME_COLUMN_WIDTH (f
);
10359 row
= it
.glyph_row
;
10361 /* Build a string that represents the contents of the tool-bar. */
10362 build_desired_tool_bar_string (f
);
10363 reseat_to_string (&it
, NULL
, f
->desired_tool_bar_string
, 0, 0, 0, -1);
10365 if (f
->n_tool_bar_rows
== 0)
10369 if ((nlines
= tool_bar_lines_needed (f
, &f
->n_tool_bar_rows
),
10370 nlines
!= WINDOW_TOTAL_LINES (w
)))
10372 extern Lisp_Object Qtool_bar_lines
;
10374 int old_height
= WINDOW_TOTAL_LINES (w
);
10376 XSETFRAME (frame
, f
);
10377 Fmodify_frame_parameters (frame
,
10378 Fcons (Fcons (Qtool_bar_lines
,
10379 make_number (nlines
)),
10381 if (WINDOW_TOTAL_LINES (w
) != old_height
)
10383 clear_glyph_matrix (w
->desired_matrix
);
10384 fonts_changed_p
= 1;
10390 /* Display as many lines as needed to display all tool-bar items. */
10392 if (f
->n_tool_bar_rows
> 0)
10394 int border
, rows
, height
, extra
;
10396 if (INTEGERP (Vtool_bar_border
))
10397 border
= XINT (Vtool_bar_border
);
10398 else if (EQ (Vtool_bar_border
, Qinternal_border_width
))
10399 border
= FRAME_INTERNAL_BORDER_WIDTH (f
);
10400 else if (EQ (Vtool_bar_border
, Qborder_width
))
10401 border
= f
->border_width
;
10407 rows
= f
->n_tool_bar_rows
;
10408 height
= max (1, (it
.last_visible_y
- border
) / rows
);
10409 extra
= it
.last_visible_y
- border
- height
* rows
;
10411 while (it
.current_y
< it
.last_visible_y
)
10414 if (extra
> 0 && rows
-- > 0)
10416 h
= (extra
+ rows
- 1) / rows
;
10419 display_tool_bar_line (&it
, height
+ h
);
10424 while (it
.current_y
< it
.last_visible_y
)
10425 display_tool_bar_line (&it
, 0);
10428 /* It doesn't make much sense to try scrolling in the tool-bar
10429 window, so don't do it. */
10430 w
->desired_matrix
->no_scrolling_p
= 1;
10431 w
->must_be_updated_p
= 1;
10433 if (!NILP (Vauto_resize_tool_bars
))
10435 int max_tool_bar_height
= MAX_FRAME_TOOL_BAR_HEIGHT (f
);
10436 int change_height_p
= 0;
10438 /* If we couldn't display everything, change the tool-bar's
10439 height if there is room for more. */
10440 if (IT_STRING_CHARPOS (it
) < it
.end_charpos
10441 && it
.current_y
< max_tool_bar_height
)
10442 change_height_p
= 1;
10444 row
= it
.glyph_row
- 1;
10446 /* If there are blank lines at the end, except for a partially
10447 visible blank line at the end that is smaller than
10448 FRAME_LINE_HEIGHT, change the tool-bar's height. */
10449 if (!row
->displays_text_p
10450 && row
->height
>= FRAME_LINE_HEIGHT (f
))
10451 change_height_p
= 1;
10453 /* If row displays tool-bar items, but is partially visible,
10454 change the tool-bar's height. */
10455 if (row
->displays_text_p
10456 && MATRIX_ROW_BOTTOM_Y (row
) > it
.last_visible_y
10457 && MATRIX_ROW_BOTTOM_Y (row
) < max_tool_bar_height
)
10458 change_height_p
= 1;
10460 /* Resize windows as needed by changing the `tool-bar-lines'
10461 frame parameter. */
10462 if (change_height_p
)
10464 extern Lisp_Object Qtool_bar_lines
;
10466 int old_height
= WINDOW_TOTAL_LINES (w
);
10468 int nlines
= tool_bar_lines_needed (f
, &nrows
);
10470 change_height_p
= ((EQ (Vauto_resize_tool_bars
, Qgrow_only
)
10471 && !f
->minimize_tool_bar_window_p
)
10472 ? (nlines
> old_height
)
10473 : (nlines
!= old_height
));
10474 f
->minimize_tool_bar_window_p
= 0;
10476 if (change_height_p
)
10478 XSETFRAME (frame
, f
);
10479 Fmodify_frame_parameters (frame
,
10480 Fcons (Fcons (Qtool_bar_lines
,
10481 make_number (nlines
)),
10483 if (WINDOW_TOTAL_LINES (w
) != old_height
)
10485 clear_glyph_matrix (w
->desired_matrix
);
10486 f
->n_tool_bar_rows
= nrows
;
10487 fonts_changed_p
= 1;
10494 f
->minimize_tool_bar_window_p
= 0;
10499 /* Get information about the tool-bar item which is displayed in GLYPH
10500 on frame F. Return in *PROP_IDX the index where tool-bar item
10501 properties start in F->tool_bar_items. Value is zero if
10502 GLYPH doesn't display a tool-bar item. */
10505 tool_bar_item_info (f
, glyph
, prop_idx
)
10507 struct glyph
*glyph
;
10514 /* This function can be called asynchronously, which means we must
10515 exclude any possibility that Fget_text_property signals an
10517 charpos
= min (SCHARS (f
->current_tool_bar_string
), glyph
->charpos
);
10518 charpos
= max (0, charpos
);
10520 /* Get the text property `menu-item' at pos. The value of that
10521 property is the start index of this item's properties in
10522 F->tool_bar_items. */
10523 prop
= Fget_text_property (make_number (charpos
),
10524 Qmenu_item
, f
->current_tool_bar_string
);
10525 if (INTEGERP (prop
))
10527 *prop_idx
= XINT (prop
);
10537 /* Get information about the tool-bar item at position X/Y on frame F.
10538 Return in *GLYPH a pointer to the glyph of the tool-bar item in
10539 the current matrix of the tool-bar window of F, or NULL if not
10540 on a tool-bar item. Return in *PROP_IDX the index of the tool-bar
10541 item in F->tool_bar_items. Value is
10543 -1 if X/Y is not on a tool-bar item
10544 0 if X/Y is on the same item that was highlighted before.
10548 get_tool_bar_item (f
, x
, y
, glyph
, hpos
, vpos
, prop_idx
)
10551 struct glyph
**glyph
;
10552 int *hpos
, *vpos
, *prop_idx
;
10554 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
10555 struct window
*w
= XWINDOW (f
->tool_bar_window
);
10558 /* Find the glyph under X/Y. */
10559 *glyph
= x_y_to_hpos_vpos (w
, x
, y
, hpos
, vpos
, 0, 0, &area
);
10560 if (*glyph
== NULL
)
10563 /* Get the start of this tool-bar item's properties in
10564 f->tool_bar_items. */
10565 if (!tool_bar_item_info (f
, *glyph
, prop_idx
))
10568 /* Is mouse on the highlighted item? */
10569 if (EQ (f
->tool_bar_window
, dpyinfo
->mouse_face_window
)
10570 && *vpos
>= dpyinfo
->mouse_face_beg_row
10571 && *vpos
<= dpyinfo
->mouse_face_end_row
10572 && (*vpos
> dpyinfo
->mouse_face_beg_row
10573 || *hpos
>= dpyinfo
->mouse_face_beg_col
)
10574 && (*vpos
< dpyinfo
->mouse_face_end_row
10575 || *hpos
< dpyinfo
->mouse_face_end_col
10576 || dpyinfo
->mouse_face_past_end
))
10584 Handle mouse button event on the tool-bar of frame F, at
10585 frame-relative coordinates X/Y. DOWN_P is 1 for a button press,
10586 0 for button release. MODIFIERS is event modifiers for button
10590 handle_tool_bar_click (f
, x
, y
, down_p
, modifiers
)
10593 unsigned int modifiers
;
10595 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
10596 struct window
*w
= XWINDOW (f
->tool_bar_window
);
10597 int hpos
, vpos
, prop_idx
;
10598 struct glyph
*glyph
;
10599 Lisp_Object enabled_p
;
10601 /* If not on the highlighted tool-bar item, return. */
10602 frame_to_window_pixel_xy (w
, &x
, &y
);
10603 if (get_tool_bar_item (f
, x
, y
, &glyph
, &hpos
, &vpos
, &prop_idx
) != 0)
10606 /* If item is disabled, do nothing. */
10607 enabled_p
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_ENABLED_P
);
10608 if (NILP (enabled_p
))
10613 /* Show item in pressed state. */
10614 show_mouse_face (dpyinfo
, DRAW_IMAGE_SUNKEN
);
10615 dpyinfo
->mouse_face_image_state
= DRAW_IMAGE_SUNKEN
;
10616 last_tool_bar_item
= prop_idx
;
10620 Lisp_Object key
, frame
;
10621 struct input_event event
;
10622 EVENT_INIT (event
);
10624 /* Show item in released state. */
10625 show_mouse_face (dpyinfo
, DRAW_IMAGE_RAISED
);
10626 dpyinfo
->mouse_face_image_state
= DRAW_IMAGE_RAISED
;
10628 key
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_KEY
);
10630 XSETFRAME (frame
, f
);
10631 event
.kind
= TOOL_BAR_EVENT
;
10632 event
.frame_or_window
= frame
;
10634 kbd_buffer_store_event (&event
);
10636 event
.kind
= TOOL_BAR_EVENT
;
10637 event
.frame_or_window
= frame
;
10639 event
.modifiers
= modifiers
;
10640 kbd_buffer_store_event (&event
);
10641 last_tool_bar_item
= -1;
10646 /* Possibly highlight a tool-bar item on frame F when mouse moves to
10647 tool-bar window-relative coordinates X/Y. Called from
10648 note_mouse_highlight. */
10651 note_tool_bar_highlight (f
, x
, y
)
10655 Lisp_Object window
= f
->tool_bar_window
;
10656 struct window
*w
= XWINDOW (window
);
10657 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
10659 struct glyph
*glyph
;
10660 struct glyph_row
*row
;
10662 Lisp_Object enabled_p
;
10664 enum draw_glyphs_face draw
= DRAW_IMAGE_RAISED
;
10665 int mouse_down_p
, rc
;
10667 /* Function note_mouse_highlight is called with negative x(y
10668 values when mouse moves outside of the frame. */
10669 if (x
<= 0 || y
<= 0)
10671 clear_mouse_face (dpyinfo
);
10675 rc
= get_tool_bar_item (f
, x
, y
, &glyph
, &hpos
, &vpos
, &prop_idx
);
10678 /* Not on tool-bar item. */
10679 clear_mouse_face (dpyinfo
);
10683 /* On same tool-bar item as before. */
10684 goto set_help_echo
;
10686 clear_mouse_face (dpyinfo
);
10688 /* Mouse is down, but on different tool-bar item? */
10689 mouse_down_p
= (dpyinfo
->grabbed
10690 && f
== last_mouse_frame
10691 && FRAME_LIVE_P (f
));
10693 && last_tool_bar_item
!= prop_idx
)
10696 dpyinfo
->mouse_face_image_state
= DRAW_NORMAL_TEXT
;
10697 draw
= mouse_down_p
? DRAW_IMAGE_SUNKEN
: DRAW_IMAGE_RAISED
;
10699 /* If tool-bar item is not enabled, don't highlight it. */
10700 enabled_p
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_ENABLED_P
);
10701 if (!NILP (enabled_p
))
10703 /* Compute the x-position of the glyph. In front and past the
10704 image is a space. We include this in the highlighted area. */
10705 row
= MATRIX_ROW (w
->current_matrix
, vpos
);
10706 for (i
= x
= 0; i
< hpos
; ++i
)
10707 x
+= row
->glyphs
[TEXT_AREA
][i
].pixel_width
;
10709 /* Record this as the current active region. */
10710 dpyinfo
->mouse_face_beg_col
= hpos
;
10711 dpyinfo
->mouse_face_beg_row
= vpos
;
10712 dpyinfo
->mouse_face_beg_x
= x
;
10713 dpyinfo
->mouse_face_beg_y
= row
->y
;
10714 dpyinfo
->mouse_face_past_end
= 0;
10716 dpyinfo
->mouse_face_end_col
= hpos
+ 1;
10717 dpyinfo
->mouse_face_end_row
= vpos
;
10718 dpyinfo
->mouse_face_end_x
= x
+ glyph
->pixel_width
;
10719 dpyinfo
->mouse_face_end_y
= row
->y
;
10720 dpyinfo
->mouse_face_window
= window
;
10721 dpyinfo
->mouse_face_face_id
= TOOL_BAR_FACE_ID
;
10723 /* Display it as active. */
10724 show_mouse_face (dpyinfo
, draw
);
10725 dpyinfo
->mouse_face_image_state
= draw
;
10730 /* Set help_echo_string to a help string to display for this tool-bar item.
10731 XTread_socket does the rest. */
10732 help_echo_object
= help_echo_window
= Qnil
;
10733 help_echo_pos
= -1;
10734 help_echo_string
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_HELP
);
10735 if (NILP (help_echo_string
))
10736 help_echo_string
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_CAPTION
);
10739 #endif /* HAVE_WINDOW_SYSTEM */
10743 /************************************************************************
10744 Horizontal scrolling
10745 ************************************************************************/
10747 static int hscroll_window_tree
P_ ((Lisp_Object
));
10748 static int hscroll_windows
P_ ((Lisp_Object
));
10750 /* For all leaf windows in the window tree rooted at WINDOW, set their
10751 hscroll value so that PT is (i) visible in the window, and (ii) so
10752 that it is not within a certain margin at the window's left and
10753 right border. Value is non-zero if any window's hscroll has been
10757 hscroll_window_tree (window
)
10758 Lisp_Object window
;
10760 int hscrolled_p
= 0;
10761 int hscroll_relative_p
= FLOATP (Vhscroll_step
);
10762 int hscroll_step_abs
= 0;
10763 double hscroll_step_rel
= 0;
10765 if (hscroll_relative_p
)
10767 hscroll_step_rel
= XFLOAT_DATA (Vhscroll_step
);
10768 if (hscroll_step_rel
< 0)
10770 hscroll_relative_p
= 0;
10771 hscroll_step_abs
= 0;
10774 else if (INTEGERP (Vhscroll_step
))
10776 hscroll_step_abs
= XINT (Vhscroll_step
);
10777 if (hscroll_step_abs
< 0)
10778 hscroll_step_abs
= 0;
10781 hscroll_step_abs
= 0;
10783 while (WINDOWP (window
))
10785 struct window
*w
= XWINDOW (window
);
10787 if (WINDOWP (w
->hchild
))
10788 hscrolled_p
|= hscroll_window_tree (w
->hchild
);
10789 else if (WINDOWP (w
->vchild
))
10790 hscrolled_p
|= hscroll_window_tree (w
->vchild
);
10791 else if (w
->cursor
.vpos
>= 0)
10794 int text_area_width
;
10795 struct glyph_row
*current_cursor_row
10796 = MATRIX_ROW (w
->current_matrix
, w
->cursor
.vpos
);
10797 struct glyph_row
*desired_cursor_row
10798 = MATRIX_ROW (w
->desired_matrix
, w
->cursor
.vpos
);
10799 struct glyph_row
*cursor_row
10800 = (desired_cursor_row
->enabled_p
10801 ? desired_cursor_row
10802 : current_cursor_row
);
10804 text_area_width
= window_box_width (w
, TEXT_AREA
);
10806 /* Scroll when cursor is inside this scroll margin. */
10807 h_margin
= hscroll_margin
* WINDOW_FRAME_COLUMN_WIDTH (w
);
10809 if (!NILP (Fbuffer_local_value (Qauto_hscroll_mode
, w
->buffer
))
10810 && ((XFASTINT (w
->hscroll
)
10811 && w
->cursor
.x
<= h_margin
)
10812 || (cursor_row
->enabled_p
10813 && cursor_row
->truncated_on_right_p
10814 && (w
->cursor
.x
>= text_area_width
- h_margin
))))
10818 struct buffer
*saved_current_buffer
;
10822 /* Find point in a display of infinite width. */
10823 saved_current_buffer
= current_buffer
;
10824 current_buffer
= XBUFFER (w
->buffer
);
10826 if (w
== XWINDOW (selected_window
))
10827 pt
= BUF_PT (current_buffer
);
10830 pt
= marker_position (w
->pointm
);
10831 pt
= max (BEGV
, pt
);
10835 /* Move iterator to pt starting at cursor_row->start in
10836 a line with infinite width. */
10837 init_to_row_start (&it
, w
, cursor_row
);
10838 it
.last_visible_x
= INFINITY
;
10839 move_it_in_display_line_to (&it
, pt
, -1, MOVE_TO_POS
);
10840 current_buffer
= saved_current_buffer
;
10842 /* Position cursor in window. */
10843 if (!hscroll_relative_p
&& hscroll_step_abs
== 0)
10844 hscroll
= max (0, (it
.current_x
10845 - (ITERATOR_AT_END_OF_LINE_P (&it
)
10846 ? (text_area_width
- 4 * FRAME_COLUMN_WIDTH (it
.f
))
10847 : (text_area_width
/ 2))))
10848 / FRAME_COLUMN_WIDTH (it
.f
);
10849 else if (w
->cursor
.x
>= text_area_width
- h_margin
)
10851 if (hscroll_relative_p
)
10852 wanted_x
= text_area_width
* (1 - hscroll_step_rel
)
10855 wanted_x
= text_area_width
10856 - hscroll_step_abs
* FRAME_COLUMN_WIDTH (it
.f
)
10859 = max (0, it
.current_x
- wanted_x
) / FRAME_COLUMN_WIDTH (it
.f
);
10863 if (hscroll_relative_p
)
10864 wanted_x
= text_area_width
* hscroll_step_rel
10867 wanted_x
= hscroll_step_abs
* FRAME_COLUMN_WIDTH (it
.f
)
10870 = max (0, it
.current_x
- wanted_x
) / FRAME_COLUMN_WIDTH (it
.f
);
10872 hscroll
= max (hscroll
, XFASTINT (w
->min_hscroll
));
10874 /* Don't call Fset_window_hscroll if value hasn't
10875 changed because it will prevent redisplay
10877 if (XFASTINT (w
->hscroll
) != hscroll
)
10879 XBUFFER (w
->buffer
)->prevent_redisplay_optimizations_p
= 1;
10880 w
->hscroll
= make_number (hscroll
);
10889 /* Value is non-zero if hscroll of any leaf window has been changed. */
10890 return hscrolled_p
;
10894 /* Set hscroll so that cursor is visible and not inside horizontal
10895 scroll margins for all windows in the tree rooted at WINDOW. See
10896 also hscroll_window_tree above. Value is non-zero if any window's
10897 hscroll has been changed. If it has, desired matrices on the frame
10898 of WINDOW are cleared. */
10901 hscroll_windows (window
)
10902 Lisp_Object window
;
10904 int hscrolled_p
= hscroll_window_tree (window
);
10906 clear_desired_matrices (XFRAME (WINDOW_FRAME (XWINDOW (window
))));
10907 return hscrolled_p
;
10912 /************************************************************************
10914 ************************************************************************/
10916 /* Variables holding some state of redisplay if GLYPH_DEBUG is defined
10917 to a non-zero value. This is sometimes handy to have in a debugger
10922 /* First and last unchanged row for try_window_id. */
10924 int debug_first_unchanged_at_end_vpos
;
10925 int debug_last_unchanged_at_beg_vpos
;
10927 /* Delta vpos and y. */
10929 int debug_dvpos
, debug_dy
;
10931 /* Delta in characters and bytes for try_window_id. */
10933 int debug_delta
, debug_delta_bytes
;
10935 /* Values of window_end_pos and window_end_vpos at the end of
10938 EMACS_INT debug_end_pos
, debug_end_vpos
;
10940 /* Append a string to W->desired_matrix->method. FMT is a printf
10941 format string. A1...A9 are a supplement for a variable-length
10942 argument list. If trace_redisplay_p is non-zero also printf the
10943 resulting string to stderr. */
10946 debug_method_add (w
, fmt
, a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
, a9
)
10949 int a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
, a9
;
10952 char *method
= w
->desired_matrix
->method
;
10953 int len
= strlen (method
);
10954 int size
= sizeof w
->desired_matrix
->method
;
10955 int remaining
= size
- len
- 1;
10957 sprintf (buffer
, fmt
, a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
, a9
);
10958 if (len
&& remaining
)
10961 --remaining
, ++len
;
10964 strncpy (method
+ len
, buffer
, remaining
);
10966 if (trace_redisplay_p
)
10967 fprintf (stderr
, "%p (%s): %s\n",
10969 ((BUFFERP (w
->buffer
)
10970 && STRINGP (XBUFFER (w
->buffer
)->name
))
10971 ? (char *) SDATA (XBUFFER (w
->buffer
)->name
)
10976 #endif /* GLYPH_DEBUG */
10979 /* Value is non-zero if all changes in window W, which displays
10980 current_buffer, are in the text between START and END. START is a
10981 buffer position, END is given as a distance from Z. Used in
10982 redisplay_internal for display optimization. */
10985 text_outside_line_unchanged_p (w
, start
, end
)
10989 int unchanged_p
= 1;
10991 /* If text or overlays have changed, see where. */
10992 if (XFASTINT (w
->last_modified
) < MODIFF
10993 || XFASTINT (w
->last_overlay_modified
) < OVERLAY_MODIFF
)
10995 /* Gap in the line? */
10996 if (GPT
< start
|| Z
- GPT
< end
)
10999 /* Changes start in front of the line, or end after it? */
11001 && (BEG_UNCHANGED
< start
- 1
11002 || END_UNCHANGED
< end
))
11005 /* If selective display, can't optimize if changes start at the
11006 beginning of the line. */
11008 && INTEGERP (current_buffer
->selective_display
)
11009 && XINT (current_buffer
->selective_display
) > 0
11010 && (BEG_UNCHANGED
< start
|| GPT
<= start
))
11013 /* If there are overlays at the start or end of the line, these
11014 may have overlay strings with newlines in them. A change at
11015 START, for instance, may actually concern the display of such
11016 overlay strings as well, and they are displayed on different
11017 lines. So, quickly rule out this case. (For the future, it
11018 might be desirable to implement something more telling than
11019 just BEG/END_UNCHANGED.) */
11022 if (BEG
+ BEG_UNCHANGED
== start
11023 && overlay_touches_p (start
))
11025 if (END_UNCHANGED
== end
11026 && overlay_touches_p (Z
- end
))
11031 return unchanged_p
;
11035 /* Do a frame update, taking possible shortcuts into account. This is
11036 the main external entry point for redisplay.
11038 If the last redisplay displayed an echo area message and that message
11039 is no longer requested, we clear the echo area or bring back the
11040 mini-buffer if that is in use. */
11045 redisplay_internal (0);
11050 overlay_arrow_string_or_property (var
)
11055 if (val
= Fget (var
, Qoverlay_arrow_string
), STRINGP (val
))
11058 return Voverlay_arrow_string
;
11061 /* Return 1 if there are any overlay-arrows in current_buffer. */
11063 overlay_arrow_in_current_buffer_p ()
11067 for (vlist
= Voverlay_arrow_variable_list
;
11069 vlist
= XCDR (vlist
))
11071 Lisp_Object var
= XCAR (vlist
);
11074 if (!SYMBOLP (var
))
11076 val
= find_symbol_value (var
);
11078 && current_buffer
== XMARKER (val
)->buffer
)
11085 /* Return 1 if any overlay_arrows have moved or overlay-arrow-string
11089 overlay_arrows_changed_p ()
11093 for (vlist
= Voverlay_arrow_variable_list
;
11095 vlist
= XCDR (vlist
))
11097 Lisp_Object var
= XCAR (vlist
);
11098 Lisp_Object val
, pstr
;
11100 if (!SYMBOLP (var
))
11102 val
= find_symbol_value (var
);
11103 if (!MARKERP (val
))
11105 if (! EQ (COERCE_MARKER (val
),
11106 Fget (var
, Qlast_arrow_position
))
11107 || ! (pstr
= overlay_arrow_string_or_property (var
),
11108 EQ (pstr
, Fget (var
, Qlast_arrow_string
))))
11114 /* Mark overlay arrows to be updated on next redisplay. */
11117 update_overlay_arrows (up_to_date
)
11122 for (vlist
= Voverlay_arrow_variable_list
;
11124 vlist
= XCDR (vlist
))
11126 Lisp_Object var
= XCAR (vlist
);
11128 if (!SYMBOLP (var
))
11131 if (up_to_date
> 0)
11133 Lisp_Object val
= find_symbol_value (var
);
11134 Fput (var
, Qlast_arrow_position
,
11135 COERCE_MARKER (val
));
11136 Fput (var
, Qlast_arrow_string
,
11137 overlay_arrow_string_or_property (var
));
11139 else if (up_to_date
< 0
11140 || !NILP (Fget (var
, Qlast_arrow_position
)))
11142 Fput (var
, Qlast_arrow_position
, Qt
);
11143 Fput (var
, Qlast_arrow_string
, Qt
);
11149 /* Return overlay arrow string to display at row.
11150 Return integer (bitmap number) for arrow bitmap in left fringe.
11151 Return nil if no overlay arrow. */
11154 overlay_arrow_at_row (it
, row
)
11156 struct glyph_row
*row
;
11160 for (vlist
= Voverlay_arrow_variable_list
;
11162 vlist
= XCDR (vlist
))
11164 Lisp_Object var
= XCAR (vlist
);
11167 if (!SYMBOLP (var
))
11170 val
= find_symbol_value (var
);
11173 && current_buffer
== XMARKER (val
)->buffer
11174 && (MATRIX_ROW_START_CHARPOS (row
) == marker_position (val
)))
11176 if (FRAME_WINDOW_P (it
->f
)
11177 && WINDOW_LEFT_FRINGE_WIDTH (it
->w
) > 0)
11179 #ifdef HAVE_WINDOW_SYSTEM
11180 if (val
= Fget (var
, Qoverlay_arrow_bitmap
), SYMBOLP (val
))
11183 if ((fringe_bitmap
= lookup_fringe_bitmap (val
)) != 0)
11184 return make_number (fringe_bitmap
);
11187 return make_number (-1); /* Use default arrow bitmap */
11189 return overlay_arrow_string_or_property (var
);
11196 /* Return 1 if point moved out of or into a composition. Otherwise
11197 return 0. PREV_BUF and PREV_PT are the last point buffer and
11198 position. BUF and PT are the current point buffer and position. */
11201 check_point_in_composition (prev_buf
, prev_pt
, buf
, pt
)
11202 struct buffer
*prev_buf
, *buf
;
11205 EMACS_INT start
, end
;
11207 Lisp_Object buffer
;
11209 XSETBUFFER (buffer
, buf
);
11210 /* Check a composition at the last point if point moved within the
11212 if (prev_buf
== buf
)
11215 /* Point didn't move. */
11218 if (prev_pt
> BUF_BEGV (buf
) && prev_pt
< BUF_ZV (buf
)
11219 && find_composition (prev_pt
, -1, &start
, &end
, &prop
, buffer
)
11220 && COMPOSITION_VALID_P (start
, end
, prop
)
11221 && start
< prev_pt
&& end
> prev_pt
)
11222 /* The last point was within the composition. Return 1 iff
11223 point moved out of the composition. */
11224 return (pt
<= start
|| pt
>= end
);
11227 /* Check a composition at the current point. */
11228 return (pt
> BUF_BEGV (buf
) && pt
< BUF_ZV (buf
)
11229 && find_composition (pt
, -1, &start
, &end
, &prop
, buffer
)
11230 && COMPOSITION_VALID_P (start
, end
, prop
)
11231 && start
< pt
&& end
> pt
);
11235 /* Reconsider the setting of B->clip_changed which is displayed
11239 reconsider_clip_changes (w
, b
)
11243 if (b
->clip_changed
11244 && !NILP (w
->window_end_valid
)
11245 && w
->current_matrix
->buffer
== b
11246 && w
->current_matrix
->zv
== BUF_ZV (b
)
11247 && w
->current_matrix
->begv
== BUF_BEGV (b
))
11248 b
->clip_changed
= 0;
11250 /* If display wasn't paused, and W is not a tool bar window, see if
11251 point has been moved into or out of a composition. In that case,
11252 we set b->clip_changed to 1 to force updating the screen. If
11253 b->clip_changed has already been set to 1, we can skip this
11255 if (!b
->clip_changed
11256 && BUFFERP (w
->buffer
) && !NILP (w
->window_end_valid
))
11260 if (w
== XWINDOW (selected_window
))
11261 pt
= BUF_PT (current_buffer
);
11263 pt
= marker_position (w
->pointm
);
11265 if ((w
->current_matrix
->buffer
!= XBUFFER (w
->buffer
)
11266 || pt
!= XINT (w
->last_point
))
11267 && check_point_in_composition (w
->current_matrix
->buffer
,
11268 XINT (w
->last_point
),
11269 XBUFFER (w
->buffer
), pt
))
11270 b
->clip_changed
= 1;
11275 /* Select FRAME to forward the values of frame-local variables into C
11276 variables so that the redisplay routines can access those values
11280 select_frame_for_redisplay (frame
)
11283 Lisp_Object tail
, symbol
, val
;
11284 Lisp_Object old
= selected_frame
;
11285 struct Lisp_Symbol
*sym
;
11287 xassert (FRAMEP (frame
) && FRAME_LIVE_P (XFRAME (frame
)));
11289 selected_frame
= frame
;
11293 for (tail
= XFRAME (frame
)->param_alist
; CONSP (tail
); tail
= XCDR (tail
))
11294 if (CONSP (XCAR (tail
))
11295 && (symbol
= XCAR (XCAR (tail
)),
11297 && (sym
= indirect_variable (XSYMBOL (symbol
)),
11299 (BUFFER_LOCAL_VALUEP (val
)))
11300 && XBUFFER_LOCAL_VALUE (val
)->check_frame
)
11301 /* Use find_symbol_value rather than Fsymbol_value
11302 to avoid an error if it is void. */
11303 find_symbol_value (symbol
);
11304 } while (!EQ (frame
, old
) && (frame
= old
, 1));
11308 #define STOP_POLLING \
11309 do { if (! polling_stopped_here) stop_polling (); \
11310 polling_stopped_here = 1; } while (0)
11312 #define RESUME_POLLING \
11313 do { if (polling_stopped_here) start_polling (); \
11314 polling_stopped_here = 0; } while (0)
11317 /* If PRESERVE_ECHO_AREA is nonzero, it means this redisplay is not in
11318 response to any user action; therefore, we should preserve the echo
11319 area. (Actually, our caller does that job.) Perhaps in the future
11320 avoid recentering windows if it is not necessary; currently that
11321 causes some problems. */
11324 redisplay_internal (preserve_echo_area
)
11325 int preserve_echo_area
;
11327 struct window
*w
= XWINDOW (selected_window
);
11330 int must_finish
= 0;
11331 struct text_pos tlbufpos
, tlendpos
;
11332 int number_of_visible_frames
;
11335 int polling_stopped_here
= 0;
11336 Lisp_Object old_frame
= selected_frame
;
11338 /* Non-zero means redisplay has to consider all windows on all
11339 frames. Zero means, only selected_window is considered. */
11340 int consider_all_windows_p
;
11342 TRACE ((stderr
, "redisplay_internal %d\n", redisplaying_p
));
11344 /* No redisplay if running in batch mode or frame is not yet fully
11345 initialized, or redisplay is explicitly turned off by setting
11346 Vinhibit_redisplay. */
11347 if (FRAME_INITIAL_P (SELECTED_FRAME ())
11348 || !NILP (Vinhibit_redisplay
))
11351 /* Don't examine these until after testing Vinhibit_redisplay.
11352 When Emacs is shutting down, perhaps because its connection to
11353 X has dropped, we should not look at them at all. */
11354 f
= XFRAME (w
->frame
);
11355 sf
= SELECTED_FRAME ();
11357 if (!f
->glyphs_initialized_p
)
11360 /* The flag redisplay_performed_directly_p is set by
11361 direct_output_for_insert when it already did the whole screen
11362 update necessary. */
11363 if (redisplay_performed_directly_p
)
11365 redisplay_performed_directly_p
= 0;
11366 if (!hscroll_windows (selected_window
))
11370 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NS)
11371 if (popup_activated ())
11375 /* I don't think this happens but let's be paranoid. */
11376 if (redisplaying_p
)
11379 /* Record a function that resets redisplaying_p to its old value
11380 when we leave this function. */
11381 count
= SPECPDL_INDEX ();
11382 record_unwind_protect (unwind_redisplay
,
11383 Fcons (make_number (redisplaying_p
), selected_frame
));
11385 specbind (Qinhibit_free_realized_faces
, Qnil
);
11388 Lisp_Object tail
, frame
;
11390 FOR_EACH_FRAME (tail
, frame
)
11392 struct frame
*f
= XFRAME (frame
);
11393 f
->already_hscrolled_p
= 0;
11398 if (!EQ (old_frame
, selected_frame
)
11399 && FRAME_LIVE_P (XFRAME (old_frame
)))
11400 /* When running redisplay, we play a bit fast-and-loose and allow e.g.
11401 selected_frame and selected_window to be temporarily out-of-sync so
11402 when we come back here via `goto retry', we need to resync because we
11403 may need to run Elisp code (via prepare_menu_bars). */
11404 select_frame_for_redisplay (old_frame
);
11407 reconsider_clip_changes (w
, current_buffer
);
11408 last_escape_glyph_frame
= NULL
;
11409 last_escape_glyph_face_id
= (1 << FACE_ID_BITS
);
11411 /* If new fonts have been loaded that make a glyph matrix adjustment
11412 necessary, do it. */
11413 if (fonts_changed_p
)
11415 adjust_glyphs (NULL
);
11416 ++windows_or_buffers_changed
;
11417 fonts_changed_p
= 0;
11420 /* If face_change_count is non-zero, init_iterator will free all
11421 realized faces, which includes the faces referenced from current
11422 matrices. So, we can't reuse current matrices in this case. */
11423 if (face_change_count
)
11424 ++windows_or_buffers_changed
;
11426 if ((FRAME_TERMCAP_P (sf
) || FRAME_MSDOS_P (sf
))
11427 && FRAME_TTY (sf
)->previous_frame
!= sf
)
11429 /* Since frames on a single ASCII terminal share the same
11430 display area, displaying a different frame means redisplay
11431 the whole thing. */
11432 windows_or_buffers_changed
++;
11433 SET_FRAME_GARBAGED (sf
);
11435 set_tty_color_mode (FRAME_TTY (sf
), sf
);
11437 FRAME_TTY (sf
)->previous_frame
= sf
;
11440 /* Set the visible flags for all frames. Do this before checking
11441 for resized or garbaged frames; they want to know if their frames
11442 are visible. See the comment in frame.h for
11443 FRAME_SAMPLE_VISIBILITY. */
11445 Lisp_Object tail
, frame
;
11447 number_of_visible_frames
= 0;
11449 FOR_EACH_FRAME (tail
, frame
)
11451 struct frame
*f
= XFRAME (frame
);
11453 FRAME_SAMPLE_VISIBILITY (f
);
11454 if (FRAME_VISIBLE_P (f
))
11455 ++number_of_visible_frames
;
11456 clear_desired_matrices (f
);
11461 /* Notice any pending interrupt request to change frame size. */
11462 do_pending_window_change (1);
11464 /* Clear frames marked as garbaged. */
11465 if (frame_garbaged
)
11466 clear_garbaged_frames ();
11468 /* Build menubar and tool-bar items. */
11469 if (NILP (Vmemory_full
))
11470 prepare_menu_bars ();
11472 if (windows_or_buffers_changed
)
11473 update_mode_lines
++;
11475 /* Detect case that we need to write or remove a star in the mode line. */
11476 if ((SAVE_MODIFF
< MODIFF
) != !NILP (w
->last_had_star
))
11478 w
->update_mode_line
= Qt
;
11479 if (buffer_shared
> 1)
11480 update_mode_lines
++;
11483 /* Avoid invocation of point motion hooks by `current_column' below. */
11484 count1
= SPECPDL_INDEX ();
11485 specbind (Qinhibit_point_motion_hooks
, Qt
);
11487 /* If %c is in the mode line, update it if needed. */
11488 if (!NILP (w
->column_number_displayed
)
11489 /* This alternative quickly identifies a common case
11490 where no change is needed. */
11491 && !(PT
== XFASTINT (w
->last_point
)
11492 && XFASTINT (w
->last_modified
) >= MODIFF
11493 && XFASTINT (w
->last_overlay_modified
) >= OVERLAY_MODIFF
)
11494 && (XFASTINT (w
->column_number_displayed
)
11495 != (int) current_column ())) /* iftc */
11496 w
->update_mode_line
= Qt
;
11498 unbind_to (count1
, Qnil
);
11500 FRAME_SCROLL_BOTTOM_VPOS (XFRAME (w
->frame
)) = -1;
11502 /* The variable buffer_shared is set in redisplay_window and
11503 indicates that we redisplay a buffer in different windows. See
11505 consider_all_windows_p
= (update_mode_lines
|| buffer_shared
> 1
11506 || cursor_type_changed
);
11508 /* If specs for an arrow have changed, do thorough redisplay
11509 to ensure we remove any arrow that should no longer exist. */
11510 if (overlay_arrows_changed_p ())
11511 consider_all_windows_p
= windows_or_buffers_changed
= 1;
11513 /* Normally the message* functions will have already displayed and
11514 updated the echo area, but the frame may have been trashed, or
11515 the update may have been preempted, so display the echo area
11516 again here. Checking message_cleared_p captures the case that
11517 the echo area should be cleared. */
11518 if ((!NILP (echo_area_buffer
[0]) && !display_last_displayed_message_p
)
11519 || (!NILP (echo_area_buffer
[1]) && display_last_displayed_message_p
)
11520 || (message_cleared_p
11521 && minibuf_level
== 0
11522 /* If the mini-window is currently selected, this means the
11523 echo-area doesn't show through. */
11524 && !MINI_WINDOW_P (XWINDOW (selected_window
))))
11526 int window_height_changed_p
= echo_area_display (0);
11529 /* If we don't display the current message, don't clear the
11530 message_cleared_p flag, because, if we did, we wouldn't clear
11531 the echo area in the next redisplay which doesn't preserve
11533 if (!display_last_displayed_message_p
)
11534 message_cleared_p
= 0;
11536 if (fonts_changed_p
)
11538 else if (window_height_changed_p
)
11540 consider_all_windows_p
= 1;
11541 ++update_mode_lines
;
11542 ++windows_or_buffers_changed
;
11544 /* If window configuration was changed, frames may have been
11545 marked garbaged. Clear them or we will experience
11546 surprises wrt scrolling. */
11547 if (frame_garbaged
)
11548 clear_garbaged_frames ();
11551 else if (EQ (selected_window
, minibuf_window
)
11552 && (current_buffer
->clip_changed
11553 || XFASTINT (w
->last_modified
) < MODIFF
11554 || XFASTINT (w
->last_overlay_modified
) < OVERLAY_MODIFF
)
11555 && resize_mini_window (w
, 0))
11557 /* Resized active mini-window to fit the size of what it is
11558 showing if its contents might have changed. */
11560 /* FIXME: this causes all frames to be updated, which seems unnecessary
11561 since only the current frame needs to be considered. This function needs
11562 to be rewritten with two variables, consider_all_windows and
11563 consider_all_frames. */
11564 consider_all_windows_p
= 1;
11565 ++windows_or_buffers_changed
;
11566 ++update_mode_lines
;
11568 /* If window configuration was changed, frames may have been
11569 marked garbaged. Clear them or we will experience
11570 surprises wrt scrolling. */
11571 if (frame_garbaged
)
11572 clear_garbaged_frames ();
11576 /* If showing the region, and mark has changed, we must redisplay
11577 the whole window. The assignment to this_line_start_pos prevents
11578 the optimization directly below this if-statement. */
11579 if (((!NILP (Vtransient_mark_mode
)
11580 && !NILP (XBUFFER (w
->buffer
)->mark_active
))
11581 != !NILP (w
->region_showing
))
11582 || (!NILP (w
->region_showing
)
11583 && !EQ (w
->region_showing
,
11584 Fmarker_position (XBUFFER (w
->buffer
)->mark
))))
11585 CHARPOS (this_line_start_pos
) = 0;
11587 /* Optimize the case that only the line containing the cursor in the
11588 selected window has changed. Variables starting with this_ are
11589 set in display_line and record information about the line
11590 containing the cursor. */
11591 tlbufpos
= this_line_start_pos
;
11592 tlendpos
= this_line_end_pos
;
11593 if (!consider_all_windows_p
11594 && CHARPOS (tlbufpos
) > 0
11595 && NILP (w
->update_mode_line
)
11596 && !current_buffer
->clip_changed
11597 && !current_buffer
->prevent_redisplay_optimizations_p
11598 && FRAME_VISIBLE_P (XFRAME (w
->frame
))
11599 && !FRAME_OBSCURED_P (XFRAME (w
->frame
))
11600 /* Make sure recorded data applies to current buffer, etc. */
11601 && this_line_buffer
== current_buffer
11602 && current_buffer
== XBUFFER (w
->buffer
)
11603 && NILP (w
->force_start
)
11604 && NILP (w
->optional_new_start
)
11605 /* Point must be on the line that we have info recorded about. */
11606 && PT
>= CHARPOS (tlbufpos
)
11607 && PT
<= Z
- CHARPOS (tlendpos
)
11608 /* All text outside that line, including its final newline,
11609 must be unchanged */
11610 && text_outside_line_unchanged_p (w
, CHARPOS (tlbufpos
),
11611 CHARPOS (tlendpos
)))
11613 if (CHARPOS (tlbufpos
) > BEGV
11614 && FETCH_BYTE (BYTEPOS (tlbufpos
) - 1) != '\n'
11615 && (CHARPOS (tlbufpos
) == ZV
11616 || FETCH_BYTE (BYTEPOS (tlbufpos
)) == '\n'))
11617 /* Former continuation line has disappeared by becoming empty */
11619 else if (XFASTINT (w
->last_modified
) < MODIFF
11620 || XFASTINT (w
->last_overlay_modified
) < OVERLAY_MODIFF
11621 || MINI_WINDOW_P (w
))
11623 /* We have to handle the case of continuation around a
11624 wide-column character (See the comment in indent.c around
11627 For instance, in the following case:
11629 -------- Insert --------
11630 K_A_N_\\ `a' K_A_N_a\ `X_' are wide-column chars.
11631 J_I_ ==> J_I_ `^^' are cursors.
11635 As we have to redraw the line above, we should goto cancel. */
11638 int line_height_before
= this_line_pixel_height
;
11640 /* Note that start_display will handle the case that the
11641 line starting at tlbufpos is a continuation lines. */
11642 start_display (&it
, w
, tlbufpos
);
11644 /* Implementation note: It this still necessary? */
11645 if (it
.current_x
!= this_line_start_x
)
11648 TRACE ((stderr
, "trying display optimization 1\n"));
11649 w
->cursor
.vpos
= -1;
11650 overlay_arrow_seen
= 0;
11651 it
.vpos
= this_line_vpos
;
11652 it
.current_y
= this_line_y
;
11653 it
.glyph_row
= MATRIX_ROW (w
->desired_matrix
, this_line_vpos
);
11654 display_line (&it
);
11656 /* If line contains point, is not continued,
11657 and ends at same distance from eob as before, we win */
11658 if (w
->cursor
.vpos
>= 0
11659 /* Line is not continued, otherwise this_line_start_pos
11660 would have been set to 0 in display_line. */
11661 && CHARPOS (this_line_start_pos
)
11662 /* Line ends as before. */
11663 && CHARPOS (this_line_end_pos
) == CHARPOS (tlendpos
)
11664 /* Line has same height as before. Otherwise other lines
11665 would have to be shifted up or down. */
11666 && this_line_pixel_height
== line_height_before
)
11668 /* If this is not the window's last line, we must adjust
11669 the charstarts of the lines below. */
11670 if (it
.current_y
< it
.last_visible_y
)
11672 struct glyph_row
*row
11673 = MATRIX_ROW (w
->current_matrix
, this_line_vpos
+ 1);
11674 int delta
, delta_bytes
;
11676 if (Z
- CHARPOS (tlendpos
) == ZV
)
11678 /* This line ends at end of (accessible part of)
11679 buffer. There is no newline to count. */
11681 - CHARPOS (tlendpos
)
11682 - MATRIX_ROW_START_CHARPOS (row
));
11683 delta_bytes
= (Z_BYTE
11684 - BYTEPOS (tlendpos
)
11685 - MATRIX_ROW_START_BYTEPOS (row
));
11689 /* This line ends in a newline. Must take
11690 account of the newline and the rest of the
11691 text that follows. */
11693 - CHARPOS (tlendpos
)
11694 - MATRIX_ROW_START_CHARPOS (row
));
11695 delta_bytes
= (Z_BYTE
11696 - BYTEPOS (tlendpos
)
11697 - MATRIX_ROW_START_BYTEPOS (row
));
11700 increment_matrix_positions (w
->current_matrix
,
11701 this_line_vpos
+ 1,
11702 w
->current_matrix
->nrows
,
11703 delta
, delta_bytes
);
11706 /* If this row displays text now but previously didn't,
11707 or vice versa, w->window_end_vpos may have to be
11709 if ((it
.glyph_row
- 1)->displays_text_p
)
11711 if (XFASTINT (w
->window_end_vpos
) < this_line_vpos
)
11712 XSETINT (w
->window_end_vpos
, this_line_vpos
);
11714 else if (XFASTINT (w
->window_end_vpos
) == this_line_vpos
11715 && this_line_vpos
> 0)
11716 XSETINT (w
->window_end_vpos
, this_line_vpos
- 1);
11717 w
->window_end_valid
= Qnil
;
11719 /* Update hint: No need to try to scroll in update_window. */
11720 w
->desired_matrix
->no_scrolling_p
= 1;
11723 *w
->desired_matrix
->method
= 0;
11724 debug_method_add (w
, "optimization 1");
11726 #ifdef HAVE_WINDOW_SYSTEM
11727 update_window_fringes (w
, 0);
11734 else if (/* Cursor position hasn't changed. */
11735 PT
== XFASTINT (w
->last_point
)
11736 /* Make sure the cursor was last displayed
11737 in this window. Otherwise we have to reposition it. */
11738 && 0 <= w
->cursor
.vpos
11739 && WINDOW_TOTAL_LINES (w
) > w
->cursor
.vpos
)
11743 do_pending_window_change (1);
11745 /* We used to always goto end_of_redisplay here, but this
11746 isn't enough if we have a blinking cursor. */
11747 if (w
->cursor_off_p
== w
->last_cursor_off_p
)
11748 goto end_of_redisplay
;
11752 /* If highlighting the region, or if the cursor is in the echo area,
11753 then we can't just move the cursor. */
11754 else if (! (!NILP (Vtransient_mark_mode
)
11755 && !NILP (current_buffer
->mark_active
))
11756 && (EQ (selected_window
, current_buffer
->last_selected_window
)
11757 || highlight_nonselected_windows
)
11758 && NILP (w
->region_showing
)
11759 && NILP (Vshow_trailing_whitespace
)
11760 && !cursor_in_echo_area
)
11763 struct glyph_row
*row
;
11765 /* Skip from tlbufpos to PT and see where it is. Note that
11766 PT may be in invisible text. If so, we will end at the
11767 next visible position. */
11768 init_iterator (&it
, w
, CHARPOS (tlbufpos
), BYTEPOS (tlbufpos
),
11769 NULL
, DEFAULT_FACE_ID
);
11770 it
.current_x
= this_line_start_x
;
11771 it
.current_y
= this_line_y
;
11772 it
.vpos
= this_line_vpos
;
11774 /* The call to move_it_to stops in front of PT, but
11775 moves over before-strings. */
11776 move_it_to (&it
, PT
, -1, -1, -1, MOVE_TO_POS
);
11778 if (it
.vpos
== this_line_vpos
11779 && (row
= MATRIX_ROW (w
->current_matrix
, this_line_vpos
),
11782 xassert (this_line_vpos
== it
.vpos
);
11783 xassert (this_line_y
== it
.current_y
);
11784 set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0, 0, 0);
11786 *w
->desired_matrix
->method
= 0;
11787 debug_method_add (w
, "optimization 3");
11796 /* Text changed drastically or point moved off of line. */
11797 SET_MATRIX_ROW_ENABLED_P (w
->desired_matrix
, this_line_vpos
, 0);
11800 CHARPOS (this_line_start_pos
) = 0;
11801 consider_all_windows_p
|= buffer_shared
> 1;
11802 ++clear_face_cache_count
;
11803 #ifdef HAVE_WINDOW_SYSTEM
11804 ++clear_image_cache_count
;
11807 /* Build desired matrices, and update the display. If
11808 consider_all_windows_p is non-zero, do it for all windows on all
11809 frames. Otherwise do it for selected_window, only. */
11811 if (consider_all_windows_p
)
11813 Lisp_Object tail
, frame
;
11815 FOR_EACH_FRAME (tail
, frame
)
11816 XFRAME (frame
)->updated_p
= 0;
11818 /* Recompute # windows showing selected buffer. This will be
11819 incremented each time such a window is displayed. */
11822 FOR_EACH_FRAME (tail
, frame
)
11824 struct frame
*f
= XFRAME (frame
);
11826 if (FRAME_WINDOW_P (f
) || FRAME_TERMCAP_P (f
) || f
== sf
)
11828 if (! EQ (frame
, selected_frame
))
11829 /* Select the frame, for the sake of frame-local
11831 select_frame_for_redisplay (frame
);
11833 /* Mark all the scroll bars to be removed; we'll redeem
11834 the ones we want when we redisplay their windows. */
11835 if (FRAME_TERMINAL (f
)->condemn_scroll_bars_hook
)
11836 FRAME_TERMINAL (f
)->condemn_scroll_bars_hook (f
);
11838 if (FRAME_VISIBLE_P (f
) && !FRAME_OBSCURED_P (f
))
11839 redisplay_windows (FRAME_ROOT_WINDOW (f
));
11841 /* Any scroll bars which redisplay_windows should have
11842 nuked should now go away. */
11843 if (FRAME_TERMINAL (f
)->judge_scroll_bars_hook
)
11844 FRAME_TERMINAL (f
)->judge_scroll_bars_hook (f
);
11846 /* If fonts changed, display again. */
11847 /* ??? rms: I suspect it is a mistake to jump all the way
11848 back to retry here. It should just retry this frame. */
11849 if (fonts_changed_p
)
11852 if (FRAME_VISIBLE_P (f
) && !FRAME_OBSCURED_P (f
))
11854 /* See if we have to hscroll. */
11855 if (!f
->already_hscrolled_p
)
11857 f
->already_hscrolled_p
= 1;
11858 if (hscroll_windows (f
->root_window
))
11862 /* Prevent various kinds of signals during display
11863 update. stdio is not robust about handling
11864 signals, which can cause an apparent I/O
11866 if (interrupt_input
)
11867 unrequest_sigio ();
11870 /* Update the display. */
11871 set_window_update_flags (XWINDOW (f
->root_window
), 1);
11872 pause
|= update_frame (f
, 0, 0);
11878 if (!EQ (old_frame
, selected_frame
)
11879 && FRAME_LIVE_P (XFRAME (old_frame
)))
11880 /* We played a bit fast-and-loose above and allowed selected_frame
11881 and selected_window to be temporarily out-of-sync but let's make
11882 sure this stays contained. */
11883 select_frame_for_redisplay (old_frame
);
11884 eassert (EQ (XFRAME (selected_frame
)->selected_window
, selected_window
));
11888 /* Do the mark_window_display_accurate after all windows have
11889 been redisplayed because this call resets flags in buffers
11890 which are needed for proper redisplay. */
11891 FOR_EACH_FRAME (tail
, frame
)
11893 struct frame
*f
= XFRAME (frame
);
11896 mark_window_display_accurate (f
->root_window
, 1);
11897 if (FRAME_TERMINAL (f
)->frame_up_to_date_hook
)
11898 FRAME_TERMINAL (f
)->frame_up_to_date_hook (f
);
11903 else if (FRAME_VISIBLE_P (sf
) && !FRAME_OBSCURED_P (sf
))
11905 Lisp_Object mini_window
;
11906 struct frame
*mini_frame
;
11908 displayed_buffer
= XBUFFER (XWINDOW (selected_window
)->buffer
);
11909 /* Use list_of_error, not Qerror, so that
11910 we catch only errors and don't run the debugger. */
11911 internal_condition_case_1 (redisplay_window_1
, selected_window
,
11913 redisplay_window_error
);
11915 /* Compare desired and current matrices, perform output. */
11918 /* If fonts changed, display again. */
11919 if (fonts_changed_p
)
11922 /* Prevent various kinds of signals during display update.
11923 stdio is not robust about handling signals,
11924 which can cause an apparent I/O error. */
11925 if (interrupt_input
)
11926 unrequest_sigio ();
11929 if (FRAME_VISIBLE_P (sf
) && !FRAME_OBSCURED_P (sf
))
11931 if (hscroll_windows (selected_window
))
11934 XWINDOW (selected_window
)->must_be_updated_p
= 1;
11935 pause
= update_frame (sf
, 0, 0);
11938 /* We may have called echo_area_display at the top of this
11939 function. If the echo area is on another frame, that may
11940 have put text on a frame other than the selected one, so the
11941 above call to update_frame would not have caught it. Catch
11943 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
11944 mini_frame
= XFRAME (WINDOW_FRAME (XWINDOW (mini_window
)));
11946 if (mini_frame
!= sf
&& FRAME_WINDOW_P (mini_frame
))
11948 XWINDOW (mini_window
)->must_be_updated_p
= 1;
11949 pause
|= update_frame (mini_frame
, 0, 0);
11950 if (!pause
&& hscroll_windows (mini_window
))
11955 /* If display was paused because of pending input, make sure we do a
11956 thorough update the next time. */
11959 /* Prevent the optimization at the beginning of
11960 redisplay_internal that tries a single-line update of the
11961 line containing the cursor in the selected window. */
11962 CHARPOS (this_line_start_pos
) = 0;
11964 /* Let the overlay arrow be updated the next time. */
11965 update_overlay_arrows (0);
11967 /* If we pause after scrolling, some rows in the current
11968 matrices of some windows are not valid. */
11969 if (!WINDOW_FULL_WIDTH_P (w
)
11970 && !FRAME_WINDOW_P (XFRAME (w
->frame
)))
11971 update_mode_lines
= 1;
11975 if (!consider_all_windows_p
)
11977 /* This has already been done above if
11978 consider_all_windows_p is set. */
11979 mark_window_display_accurate_1 (w
, 1);
11981 /* Say overlay arrows are up to date. */
11982 update_overlay_arrows (1);
11984 if (FRAME_TERMINAL (sf
)->frame_up_to_date_hook
!= 0)
11985 FRAME_TERMINAL (sf
)->frame_up_to_date_hook (sf
);
11988 update_mode_lines
= 0;
11989 windows_or_buffers_changed
= 0;
11990 cursor_type_changed
= 0;
11993 /* Start SIGIO interrupts coming again. Having them off during the
11994 code above makes it less likely one will discard output, but not
11995 impossible, since there might be stuff in the system buffer here.
11996 But it is much hairier to try to do anything about that. */
11997 if (interrupt_input
)
12001 /* If a frame has become visible which was not before, redisplay
12002 again, so that we display it. Expose events for such a frame
12003 (which it gets when becoming visible) don't call the parts of
12004 redisplay constructing glyphs, so simply exposing a frame won't
12005 display anything in this case. So, we have to display these
12006 frames here explicitly. */
12009 Lisp_Object tail
, frame
;
12012 FOR_EACH_FRAME (tail
, frame
)
12014 int this_is_visible
= 0;
12016 if (XFRAME (frame
)->visible
)
12017 this_is_visible
= 1;
12018 FRAME_SAMPLE_VISIBILITY (XFRAME (frame
));
12019 if (XFRAME (frame
)->visible
)
12020 this_is_visible
= 1;
12022 if (this_is_visible
)
12026 if (new_count
!= number_of_visible_frames
)
12027 windows_or_buffers_changed
++;
12030 /* Change frame size now if a change is pending. */
12031 do_pending_window_change (1);
12033 /* If we just did a pending size change, or have additional
12034 visible frames, redisplay again. */
12035 if (windows_or_buffers_changed
&& !pause
)
12038 /* Clear the face cache eventually. */
12039 if (consider_all_windows_p
)
12041 if (clear_face_cache_count
> CLEAR_FACE_CACHE_COUNT
)
12043 clear_face_cache (0);
12044 clear_face_cache_count
= 0;
12046 #ifdef HAVE_WINDOW_SYSTEM
12047 if (clear_image_cache_count
> CLEAR_IMAGE_CACHE_COUNT
)
12049 clear_image_caches (Qnil
);
12050 clear_image_cache_count
= 0;
12052 #endif /* HAVE_WINDOW_SYSTEM */
12056 unbind_to (count
, Qnil
);
12061 /* Redisplay, but leave alone any recent echo area message unless
12062 another message has been requested in its place.
12064 This is useful in situations where you need to redisplay but no
12065 user action has occurred, making it inappropriate for the message
12066 area to be cleared. See tracking_off and
12067 wait_reading_process_output for examples of these situations.
12069 FROM_WHERE is an integer saying from where this function was
12070 called. This is useful for debugging. */
12073 redisplay_preserve_echo_area (from_where
)
12076 TRACE ((stderr
, "redisplay_preserve_echo_area (%d)\n", from_where
));
12078 if (!NILP (echo_area_buffer
[1]))
12080 /* We have a previously displayed message, but no current
12081 message. Redisplay the previous message. */
12082 display_last_displayed_message_p
= 1;
12083 redisplay_internal (1);
12084 display_last_displayed_message_p
= 0;
12087 redisplay_internal (1);
12089 if (FRAME_RIF (SELECTED_FRAME ()) != NULL
12090 && FRAME_RIF (SELECTED_FRAME ())->flush_display_optional
)
12091 FRAME_RIF (SELECTED_FRAME ())->flush_display_optional (NULL
);
12095 /* Function registered with record_unwind_protect in
12096 redisplay_internal. Reset redisplaying_p to the value it had
12097 before redisplay_internal was called, and clear
12098 prevent_freeing_realized_faces_p. It also selects the previously
12099 selected frame, unless it has been deleted (by an X connection
12100 failure during redisplay, for example). */
12103 unwind_redisplay (val
)
12106 Lisp_Object old_redisplaying_p
, old_frame
;
12108 old_redisplaying_p
= XCAR (val
);
12109 redisplaying_p
= XFASTINT (old_redisplaying_p
);
12110 old_frame
= XCDR (val
);
12111 if (! EQ (old_frame
, selected_frame
)
12112 && FRAME_LIVE_P (XFRAME (old_frame
)))
12113 select_frame_for_redisplay (old_frame
);
12118 /* Mark the display of window W as accurate or inaccurate. If
12119 ACCURATE_P is non-zero mark display of W as accurate. If
12120 ACCURATE_P is zero, arrange for W to be redisplayed the next time
12121 redisplay_internal is called. */
12124 mark_window_display_accurate_1 (w
, accurate_p
)
12128 if (BUFFERP (w
->buffer
))
12130 struct buffer
*b
= XBUFFER (w
->buffer
);
12133 = make_number (accurate_p
? BUF_MODIFF (b
) : 0);
12134 w
->last_overlay_modified
12135 = make_number (accurate_p
? BUF_OVERLAY_MODIFF (b
) : 0);
12137 = BUF_MODIFF (b
) > BUF_SAVE_MODIFF (b
) ? Qt
: Qnil
;
12141 b
->clip_changed
= 0;
12142 b
->prevent_redisplay_optimizations_p
= 0;
12144 BUF_UNCHANGED_MODIFIED (b
) = BUF_MODIFF (b
);
12145 BUF_OVERLAY_UNCHANGED_MODIFIED (b
) = BUF_OVERLAY_MODIFF (b
);
12146 BUF_BEG_UNCHANGED (b
) = BUF_GPT (b
) - BUF_BEG (b
);
12147 BUF_END_UNCHANGED (b
) = BUF_Z (b
) - BUF_GPT (b
);
12149 w
->current_matrix
->buffer
= b
;
12150 w
->current_matrix
->begv
= BUF_BEGV (b
);
12151 w
->current_matrix
->zv
= BUF_ZV (b
);
12153 w
->last_cursor
= w
->cursor
;
12154 w
->last_cursor_off_p
= w
->cursor_off_p
;
12156 if (w
== XWINDOW (selected_window
))
12157 w
->last_point
= make_number (BUF_PT (b
));
12159 w
->last_point
= make_number (XMARKER (w
->pointm
)->charpos
);
12165 w
->window_end_valid
= w
->buffer
;
12166 w
->update_mode_line
= Qnil
;
12171 /* Mark the display of windows in the window tree rooted at WINDOW as
12172 accurate or inaccurate. If ACCURATE_P is non-zero mark display of
12173 windows as accurate. If ACCURATE_P is zero, arrange for windows to
12174 be redisplayed the next time redisplay_internal is called. */
12177 mark_window_display_accurate (window
, accurate_p
)
12178 Lisp_Object window
;
12183 for (; !NILP (window
); window
= w
->next
)
12185 w
= XWINDOW (window
);
12186 mark_window_display_accurate_1 (w
, accurate_p
);
12188 if (!NILP (w
->vchild
))
12189 mark_window_display_accurate (w
->vchild
, accurate_p
);
12190 if (!NILP (w
->hchild
))
12191 mark_window_display_accurate (w
->hchild
, accurate_p
);
12196 update_overlay_arrows (1);
12200 /* Force a thorough redisplay the next time by setting
12201 last_arrow_position and last_arrow_string to t, which is
12202 unequal to any useful value of Voverlay_arrow_... */
12203 update_overlay_arrows (-1);
12208 /* Return value in display table DP (Lisp_Char_Table *) for character
12209 C. Since a display table doesn't have any parent, we don't have to
12210 follow parent. Do not call this function directly but use the
12211 macro DISP_CHAR_VECTOR. */
12214 disp_char_vector (dp
, c
)
12215 struct Lisp_Char_Table
*dp
;
12220 if (ASCII_CHAR_P (c
))
12223 if (SUB_CHAR_TABLE_P (val
))
12224 val
= XSUB_CHAR_TABLE (val
)->contents
[c
];
12230 XSETCHAR_TABLE (table
, dp
);
12231 val
= char_table_ref (table
, c
);
12240 /***********************************************************************
12242 ***********************************************************************/
12244 /* Redisplay all leaf windows in the window tree rooted at WINDOW. */
12247 redisplay_windows (window
)
12248 Lisp_Object window
;
12250 while (!NILP (window
))
12252 struct window
*w
= XWINDOW (window
);
12254 if (!NILP (w
->hchild
))
12255 redisplay_windows (w
->hchild
);
12256 else if (!NILP (w
->vchild
))
12257 redisplay_windows (w
->vchild
);
12260 displayed_buffer
= XBUFFER (w
->buffer
);
12261 /* Use list_of_error, not Qerror, so that
12262 we catch only errors and don't run the debugger. */
12263 internal_condition_case_1 (redisplay_window_0
, window
,
12265 redisplay_window_error
);
12273 redisplay_window_error ()
12275 displayed_buffer
->display_error_modiff
= BUF_MODIFF (displayed_buffer
);
12280 redisplay_window_0 (window
)
12281 Lisp_Object window
;
12283 if (displayed_buffer
->display_error_modiff
< BUF_MODIFF (displayed_buffer
))
12284 redisplay_window (window
, 0);
12289 redisplay_window_1 (window
)
12290 Lisp_Object window
;
12292 if (displayed_buffer
->display_error_modiff
< BUF_MODIFF (displayed_buffer
))
12293 redisplay_window (window
, 1);
12298 /* Increment GLYPH until it reaches END or CONDITION fails while
12299 adding (GLYPH)->pixel_width to X. */
12301 #define SKIP_GLYPHS(glyph, end, x, condition) \
12304 (x) += (glyph)->pixel_width; \
12307 while ((glyph) < (end) && (condition))
12310 /* Set cursor position of W. PT is assumed to be displayed in ROW.
12311 DELTA is the number of bytes by which positions recorded in ROW
12312 differ from current buffer positions.
12314 Return 0 if cursor is not on this row. 1 otherwise. */
12317 set_cursor_from_row (w
, row
, matrix
, delta
, delta_bytes
, dy
, dvpos
)
12319 struct glyph_row
*row
;
12320 struct glyph_matrix
*matrix
;
12321 int delta
, delta_bytes
, dy
, dvpos
;
12323 struct glyph
*glyph
= row
->glyphs
[TEXT_AREA
];
12324 struct glyph
*end
= glyph
+ row
->used
[TEXT_AREA
];
12325 struct glyph
*cursor
= NULL
;
12326 /* The first glyph that starts a sequence of glyphs from string. */
12327 struct glyph
*string_start
;
12328 /* The X coordinate of string_start. */
12329 int string_start_x
;
12330 /* The last known character position. */
12331 int last_pos
= MATRIX_ROW_START_CHARPOS (row
) + delta
;
12332 /* The last known character position before string_start. */
12333 int string_before_pos
;
12336 int cursor_from_overlay_pos
= 0;
12337 int pt_old
= PT
- delta
;
12339 /* Skip over glyphs not having an object at the start of the row.
12340 These are special glyphs like truncation marks on terminal
12342 if (row
->displays_text_p
)
12344 && INTEGERP (glyph
->object
)
12345 && glyph
->charpos
< 0)
12347 x
+= glyph
->pixel_width
;
12351 string_start
= NULL
;
12353 && !INTEGERP (glyph
->object
)
12354 && (!BUFFERP (glyph
->object
)
12355 || (last_pos
= glyph
->charpos
) < pt_old
12356 || glyph
->avoid_cursor_p
))
12358 if (! STRINGP (glyph
->object
))
12360 string_start
= NULL
;
12361 x
+= glyph
->pixel_width
;
12363 if (cursor_from_overlay_pos
12364 && last_pos
>= cursor_from_overlay_pos
)
12366 cursor_from_overlay_pos
= 0;
12372 if (string_start
== NULL
)
12374 string_before_pos
= last_pos
;
12375 string_start
= glyph
;
12376 string_start_x
= x
;
12378 /* Skip all glyphs from string. */
12383 if ((cursor
== NULL
|| glyph
> cursor
)
12384 && (cprop
= Fget_char_property (make_number ((glyph
)->charpos
),
12385 Qcursor
, (glyph
)->object
),
12387 && (pos
= string_buffer_position (w
, glyph
->object
,
12388 string_before_pos
),
12389 (pos
== 0 /* From overlay */
12390 || pos
== pt_old
)))
12392 /* Estimate overlay buffer position from the buffer
12393 positions of the glyphs before and after the overlay.
12394 Add 1 to last_pos so that if point corresponds to the
12395 glyph right after the overlay, we still use a 'cursor'
12396 property found in that overlay. */
12397 cursor_from_overlay_pos
= (pos
? 0 : last_pos
12398 + (INTEGERP (cprop
) ? XINT (cprop
) : 0));
12402 x
+= glyph
->pixel_width
;
12405 while (glyph
< end
&& EQ (glyph
->object
, string_start
->object
));
12409 if (cursor
!= NULL
)
12414 else if (row
->ends_in_ellipsis_p
&& glyph
== end
)
12416 /* Scan back over the ellipsis glyphs, decrementing positions. */
12417 while (glyph
> row
->glyphs
[TEXT_AREA
]
12418 && (glyph
- 1)->charpos
== last_pos
)
12419 glyph
--, x
-= glyph
->pixel_width
;
12420 /* That loop always goes one position too far,
12421 including the glyph before the ellipsis.
12422 So scan forward over that one. */
12423 x
+= glyph
->pixel_width
;
12426 else if (string_start
12427 && (glyph
== end
|| !BUFFERP (glyph
->object
) || last_pos
> pt_old
))
12429 /* We may have skipped over point because the previous glyphs
12430 are from string. As there's no easy way to know the
12431 character position of the current glyph, find the correct
12432 glyph on point by scanning from string_start again. */
12434 Lisp_Object string
;
12435 struct glyph
*stop
= glyph
;
12438 limit
= make_number (pt_old
+ 1);
12439 glyph
= string_start
;
12440 x
= string_start_x
;
12441 string
= glyph
->object
;
12442 pos
= string_buffer_position (w
, string
, string_before_pos
);
12443 /* If STRING is from overlay, LAST_POS == 0. We skip such glyphs
12444 because we always put cursor after overlay strings. */
12445 while (pos
== 0 && glyph
< stop
)
12447 string
= glyph
->object
;
12448 SKIP_GLYPHS (glyph
, stop
, x
, EQ (glyph
->object
, string
));
12450 pos
= string_buffer_position (w
, glyph
->object
, string_before_pos
);
12453 while (glyph
< stop
)
12455 pos
= XINT (Fnext_single_char_property_change
12456 (make_number (pos
), Qdisplay
, Qnil
, limit
));
12459 /* Skip glyphs from the same string. */
12460 string
= glyph
->object
;
12461 SKIP_GLYPHS (glyph
, stop
, x
, EQ (glyph
->object
, string
));
12462 /* Skip glyphs from an overlay. */
12463 while (glyph
< stop
12464 && ! string_buffer_position (w
, glyph
->object
, pos
))
12466 string
= glyph
->object
;
12467 SKIP_GLYPHS (glyph
, stop
, x
, EQ (glyph
->object
, string
));
12471 /* If we reached the end of the line, and end was from a string,
12472 cursor is not on this line. */
12473 if (glyph
== end
&& row
->continued_p
)
12477 w
->cursor
.hpos
= glyph
- row
->glyphs
[TEXT_AREA
];
12479 w
->cursor
.vpos
= MATRIX_ROW_VPOS (row
, matrix
) + dvpos
;
12480 w
->cursor
.y
= row
->y
+ dy
;
12482 if (w
== XWINDOW (selected_window
))
12484 if (!row
->continued_p
12485 && !MATRIX_ROW_CONTINUATION_LINE_P (row
)
12488 this_line_buffer
= XBUFFER (w
->buffer
);
12490 CHARPOS (this_line_start_pos
)
12491 = MATRIX_ROW_START_CHARPOS (row
) + delta
;
12492 BYTEPOS (this_line_start_pos
)
12493 = MATRIX_ROW_START_BYTEPOS (row
) + delta_bytes
;
12495 CHARPOS (this_line_end_pos
)
12496 = Z
- (MATRIX_ROW_END_CHARPOS (row
) + delta
);
12497 BYTEPOS (this_line_end_pos
)
12498 = Z_BYTE
- (MATRIX_ROW_END_BYTEPOS (row
) + delta_bytes
);
12500 this_line_y
= w
->cursor
.y
;
12501 this_line_pixel_height
= row
->height
;
12502 this_line_vpos
= w
->cursor
.vpos
;
12503 this_line_start_x
= row
->x
;
12506 CHARPOS (this_line_start_pos
) = 0;
12513 /* Run window scroll functions, if any, for WINDOW with new window
12514 start STARTP. Sets the window start of WINDOW to that position.
12516 We assume that the window's buffer is really current. */
12518 static INLINE
struct text_pos
12519 run_window_scroll_functions (window
, startp
)
12520 Lisp_Object window
;
12521 struct text_pos startp
;
12523 struct window
*w
= XWINDOW (window
);
12524 SET_MARKER_FROM_TEXT_POS (w
->start
, startp
);
12526 if (current_buffer
!= XBUFFER (w
->buffer
))
12529 if (!NILP (Vwindow_scroll_functions
))
12531 run_hook_with_args_2 (Qwindow_scroll_functions
, window
,
12532 make_number (CHARPOS (startp
)));
12533 SET_TEXT_POS_FROM_MARKER (startp
, w
->start
);
12534 /* In case the hook functions switch buffers. */
12535 if (current_buffer
!= XBUFFER (w
->buffer
))
12536 set_buffer_internal_1 (XBUFFER (w
->buffer
));
12543 /* Make sure the line containing the cursor is fully visible.
12544 A value of 1 means there is nothing to be done.
12545 (Either the line is fully visible, or it cannot be made so,
12546 or we cannot tell.)
12548 If FORCE_P is non-zero, return 0 even if partial visible cursor row
12549 is higher than window.
12551 A value of 0 means the caller should do scrolling
12552 as if point had gone off the screen. */
12555 cursor_row_fully_visible_p (w
, force_p
, current_matrix_p
)
12558 int current_matrix_p
;
12560 struct glyph_matrix
*matrix
;
12561 struct glyph_row
*row
;
12564 if (!make_cursor_line_fully_visible_p
)
12567 /* It's not always possible to find the cursor, e.g, when a window
12568 is full of overlay strings. Don't do anything in that case. */
12569 if (w
->cursor
.vpos
< 0)
12572 matrix
= current_matrix_p
? w
->current_matrix
: w
->desired_matrix
;
12573 row
= MATRIX_ROW (matrix
, w
->cursor
.vpos
);
12575 /* If the cursor row is not partially visible, there's nothing to do. */
12576 if (!MATRIX_ROW_PARTIALLY_VISIBLE_P (w
, row
))
12579 /* If the row the cursor is in is taller than the window's height,
12580 it's not clear what to do, so do nothing. */
12581 window_height
= window_box_height (w
);
12582 if (row
->height
>= window_height
)
12584 if (!force_p
|| MINI_WINDOW_P (w
)
12585 || w
->vscroll
|| w
->cursor
.vpos
== 0)
12591 /* This code used to try to scroll the window just enough to make
12592 the line visible. It returned 0 to say that the caller should
12593 allocate larger glyph matrices. */
12595 if (MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P (w
, row
))
12597 int dy
= row
->height
- row
->visible_height
;
12600 shift_glyph_matrix (w
, matrix
, 0, matrix
->nrows
, dy
);
12602 else /* MATRIX_ROW_PARTIALLY_VISIBLE_AT_BOTTOM_P (w, row)) */
12604 int dy
= - (row
->height
- row
->visible_height
);
12607 shift_glyph_matrix (w
, matrix
, 0, matrix
->nrows
, dy
);
12610 /* When we change the cursor y-position of the selected window,
12611 change this_line_y as well so that the display optimization for
12612 the cursor line of the selected window in redisplay_internal uses
12613 the correct y-position. */
12614 if (w
== XWINDOW (selected_window
))
12615 this_line_y
= w
->cursor
.y
;
12617 /* If vscrolling requires a larger glyph matrix, arrange for a fresh
12618 redisplay with larger matrices. */
12619 if (matrix
->nrows
< required_matrix_height (w
))
12621 fonts_changed_p
= 1;
12630 /* Try scrolling PT into view in window WINDOW. JUST_THIS_ONE_P
12631 non-zero means only WINDOW is redisplayed in redisplay_internal.
12632 TEMP_SCROLL_STEP has the same meaning as scroll_step, and is used
12633 in redisplay_window to bring a partially visible line into view in
12634 the case that only the cursor has moved.
12636 LAST_LINE_MISFIT should be nonzero if we're scrolling because the
12637 last screen line's vertical height extends past the end of the screen.
12641 1 if scrolling succeeded
12643 0 if scrolling didn't find point.
12645 -1 if new fonts have been loaded so that we must interrupt
12646 redisplay, adjust glyph matrices, and try again. */
12652 SCROLLING_NEED_LARGER_MATRICES
12656 try_scrolling (window
, just_this_one_p
, scroll_conservatively
,
12657 scroll_step
, temp_scroll_step
, last_line_misfit
)
12658 Lisp_Object window
;
12659 int just_this_one_p
;
12660 EMACS_INT scroll_conservatively
, scroll_step
;
12661 int temp_scroll_step
;
12662 int last_line_misfit
;
12664 struct window
*w
= XWINDOW (window
);
12665 struct frame
*f
= XFRAME (w
->frame
);
12666 struct text_pos pos
, startp
;
12668 int this_scroll_margin
, scroll_max
, rc
, height
;
12669 int dy
= 0, amount_to_scroll
= 0, scroll_down_p
= 0;
12670 int extra_scroll_margin_lines
= last_line_misfit
? 1 : 0;
12671 Lisp_Object aggressive
;
12672 int scroll_limit
= INT_MAX
/ FRAME_LINE_HEIGHT (f
);
12675 debug_method_add (w
, "try_scrolling");
12678 SET_TEXT_POS_FROM_MARKER (startp
, w
->start
);
12680 /* Compute scroll margin height in pixels. We scroll when point is
12681 within this distance from the top or bottom of the window. */
12682 if (scroll_margin
> 0)
12683 this_scroll_margin
= min (scroll_margin
, WINDOW_TOTAL_LINES (w
) / 4)
12684 * FRAME_LINE_HEIGHT (f
);
12686 this_scroll_margin
= 0;
12688 /* Force scroll_conservatively to have a reasonable value, to avoid
12689 overflow while computing how much to scroll. Note that the user
12690 can supply scroll-conservatively equal to `most-positive-fixnum',
12691 which can be larger than INT_MAX. */
12692 if (scroll_conservatively
> scroll_limit
)
12694 scroll_conservatively
= scroll_limit
;
12695 scroll_max
= INT_MAX
;
12697 else if (scroll_step
|| scroll_conservatively
|| temp_scroll_step
)
12698 /* Compute how much we should try to scroll maximally to bring
12699 point into view. */
12700 scroll_max
= (max (scroll_step
,
12701 max (scroll_conservatively
, temp_scroll_step
))
12702 * FRAME_LINE_HEIGHT (f
));
12703 else if (NUMBERP (current_buffer
->scroll_down_aggressively
)
12704 || NUMBERP (current_buffer
->scroll_up_aggressively
))
12705 /* We're trying to scroll because of aggressive scrolling but no
12706 scroll_step is set. Choose an arbitrary one. */
12707 scroll_max
= 10 * FRAME_LINE_HEIGHT (f
);
12713 /* Decide whether to scroll down. */
12714 if (PT
> CHARPOS (startp
))
12716 int scroll_margin_y
;
12718 /* Compute the pixel ypos of the scroll margin, then move it to
12719 either that ypos or PT, whichever comes first. */
12720 start_display (&it
, w
, startp
);
12721 scroll_margin_y
= it
.last_visible_y
- this_scroll_margin
12722 - FRAME_LINE_HEIGHT (f
) * extra_scroll_margin_lines
;
12723 move_it_to (&it
, PT
, -1, scroll_margin_y
- 1, -1,
12724 (MOVE_TO_POS
| MOVE_TO_Y
));
12726 if (PT
> CHARPOS (it
.current
.pos
))
12728 int y0
= line_bottom_y (&it
);
12730 /* Compute the distance from the scroll margin to PT
12731 (including the height of the cursor line). Moving the
12732 iterator unconditionally to PT can be slow if PT is far
12733 away, so stop 10 lines past the window bottom (is there a
12734 way to do the right thing quickly?). */
12735 move_it_to (&it
, PT
, -1,
12736 it
.last_visible_y
+ 10 * FRAME_LINE_HEIGHT (f
),
12737 -1, MOVE_TO_POS
| MOVE_TO_Y
);
12738 dy
= line_bottom_y (&it
) - y0
;
12740 if (dy
> scroll_max
)
12741 return SCROLLING_FAILED
;
12749 /* Point is in or below the bottom scroll margin, so move the
12750 window start down. If scrolling conservatively, move it just
12751 enough down to make point visible. If scroll_step is set,
12752 move it down by scroll_step. */
12753 if (scroll_conservatively
)
12755 = min (max (dy
, FRAME_LINE_HEIGHT (f
)),
12756 FRAME_LINE_HEIGHT (f
) * scroll_conservatively
);
12757 else if (scroll_step
|| temp_scroll_step
)
12758 amount_to_scroll
= scroll_max
;
12761 aggressive
= current_buffer
->scroll_up_aggressively
;
12762 height
= WINDOW_BOX_TEXT_HEIGHT (w
);
12763 if (NUMBERP (aggressive
))
12765 double float_amount
= XFLOATINT (aggressive
) * height
;
12766 amount_to_scroll
= float_amount
;
12767 if (amount_to_scroll
== 0 && float_amount
> 0)
12768 amount_to_scroll
= 1;
12772 if (amount_to_scroll
<= 0)
12773 return SCROLLING_FAILED
;
12775 start_display (&it
, w
, startp
);
12776 move_it_vertically (&it
, amount_to_scroll
);
12778 /* If STARTP is unchanged, move it down another screen line. */
12779 if (CHARPOS (it
.current
.pos
) == CHARPOS (startp
))
12780 move_it_by_lines (&it
, 1, 1);
12781 startp
= it
.current
.pos
;
12785 struct text_pos scroll_margin_pos
= startp
;
12787 /* See if point is inside the scroll margin at the top of the
12789 if (this_scroll_margin
)
12791 start_display (&it
, w
, startp
);
12792 move_it_vertically (&it
, this_scroll_margin
);
12793 scroll_margin_pos
= it
.current
.pos
;
12796 if (PT
< CHARPOS (scroll_margin_pos
))
12798 /* Point is in the scroll margin at the top of the window or
12799 above what is displayed in the window. */
12802 /* Compute the vertical distance from PT to the scroll
12803 margin position. Give up if distance is greater than
12805 SET_TEXT_POS (pos
, PT
, PT_BYTE
);
12806 start_display (&it
, w
, pos
);
12808 move_it_to (&it
, CHARPOS (scroll_margin_pos
), 0,
12809 it
.last_visible_y
, -1,
12810 MOVE_TO_POS
| MOVE_TO_X
| MOVE_TO_Y
);
12811 dy
= it
.current_y
- y0
;
12812 if (dy
> scroll_max
)
12813 return SCROLLING_FAILED
;
12815 /* Compute new window start. */
12816 start_display (&it
, w
, startp
);
12818 if (scroll_conservatively
)
12820 = max (dy
, FRAME_LINE_HEIGHT (f
) * max (scroll_step
, temp_scroll_step
));
12821 else if (scroll_step
|| temp_scroll_step
)
12822 amount_to_scroll
= scroll_max
;
12825 aggressive
= current_buffer
->scroll_down_aggressively
;
12826 height
= WINDOW_BOX_TEXT_HEIGHT (w
);
12827 if (NUMBERP (aggressive
))
12829 double float_amount
= XFLOATINT (aggressive
) * height
;
12830 amount_to_scroll
= float_amount
;
12831 if (amount_to_scroll
== 0 && float_amount
> 0)
12832 amount_to_scroll
= 1;
12836 if (amount_to_scroll
<= 0)
12837 return SCROLLING_FAILED
;
12839 move_it_vertically_backward (&it
, amount_to_scroll
);
12840 startp
= it
.current
.pos
;
12844 /* Run window scroll functions. */
12845 startp
= run_window_scroll_functions (window
, startp
);
12847 /* Display the window. Give up if new fonts are loaded, or if point
12849 if (!try_window (window
, startp
, 0))
12850 rc
= SCROLLING_NEED_LARGER_MATRICES
;
12851 else if (w
->cursor
.vpos
< 0)
12853 clear_glyph_matrix (w
->desired_matrix
);
12854 rc
= SCROLLING_FAILED
;
12858 /* Maybe forget recorded base line for line number display. */
12859 if (!just_this_one_p
12860 || current_buffer
->clip_changed
12861 || BEG_UNCHANGED
< CHARPOS (startp
))
12862 w
->base_line_number
= Qnil
;
12864 /* If cursor ends up on a partially visible line,
12865 treat that as being off the bottom of the screen. */
12866 if (! cursor_row_fully_visible_p (w
, extra_scroll_margin_lines
<= 1, 0))
12868 clear_glyph_matrix (w
->desired_matrix
);
12869 ++extra_scroll_margin_lines
;
12872 rc
= SCROLLING_SUCCESS
;
12879 /* Compute a suitable window start for window W if display of W starts
12880 on a continuation line. Value is non-zero if a new window start
12883 The new window start will be computed, based on W's width, starting
12884 from the start of the continued line. It is the start of the
12885 screen line with the minimum distance from the old start W->start. */
12888 compute_window_start_on_continuation_line (w
)
12891 struct text_pos pos
, start_pos
;
12892 int window_start_changed_p
= 0;
12894 SET_TEXT_POS_FROM_MARKER (start_pos
, w
->start
);
12896 /* If window start is on a continuation line... Window start may be
12897 < BEGV in case there's invisible text at the start of the
12898 buffer (M-x rmail, for example). */
12899 if (CHARPOS (start_pos
) > BEGV
12900 && FETCH_BYTE (BYTEPOS (start_pos
) - 1) != '\n')
12903 struct glyph_row
*row
;
12905 /* Handle the case that the window start is out of range. */
12906 if (CHARPOS (start_pos
) < BEGV
)
12907 SET_TEXT_POS (start_pos
, BEGV
, BEGV_BYTE
);
12908 else if (CHARPOS (start_pos
) > ZV
)
12909 SET_TEXT_POS (start_pos
, ZV
, ZV_BYTE
);
12911 /* Find the start of the continued line. This should be fast
12912 because scan_buffer is fast (newline cache). */
12913 row
= w
->desired_matrix
->rows
+ (WINDOW_WANTS_HEADER_LINE_P (w
) ? 1 : 0);
12914 init_iterator (&it
, w
, CHARPOS (start_pos
), BYTEPOS (start_pos
),
12915 row
, DEFAULT_FACE_ID
);
12916 reseat_at_previous_visible_line_start (&it
);
12918 /* If the line start is "too far" away from the window start,
12919 say it takes too much time to compute a new window start. */
12920 if (CHARPOS (start_pos
) - IT_CHARPOS (it
)
12921 < WINDOW_TOTAL_LINES (w
) * WINDOW_TOTAL_COLS (w
))
12923 int min_distance
, distance
;
12925 /* Move forward by display lines to find the new window
12926 start. If window width was enlarged, the new start can
12927 be expected to be > the old start. If window width was
12928 decreased, the new window start will be < the old start.
12929 So, we're looking for the display line start with the
12930 minimum distance from the old window start. */
12931 pos
= it
.current
.pos
;
12932 min_distance
= INFINITY
;
12933 while ((distance
= eabs (CHARPOS (start_pos
) - IT_CHARPOS (it
))),
12934 distance
< min_distance
)
12936 min_distance
= distance
;
12937 pos
= it
.current
.pos
;
12938 move_it_by_lines (&it
, 1, 0);
12941 /* Set the window start there. */
12942 SET_MARKER_FROM_TEXT_POS (w
->start
, pos
);
12943 window_start_changed_p
= 1;
12947 return window_start_changed_p
;
12951 /* Try cursor movement in case text has not changed in window WINDOW,
12952 with window start STARTP. Value is
12954 CURSOR_MOVEMENT_SUCCESS if successful
12956 CURSOR_MOVEMENT_CANNOT_BE_USED if this method cannot be used
12958 CURSOR_MOVEMENT_MUST_SCROLL if we know we have to scroll the
12959 display. *SCROLL_STEP is set to 1, under certain circumstances, if
12960 we want to scroll as if scroll-step were set to 1. See the code.
12962 CURSOR_MOVEMENT_NEED_LARGER_MATRICES if we need larger matrices, in
12963 which case we have to abort this redisplay, and adjust matrices
12968 CURSOR_MOVEMENT_SUCCESS
,
12969 CURSOR_MOVEMENT_CANNOT_BE_USED
,
12970 CURSOR_MOVEMENT_MUST_SCROLL
,
12971 CURSOR_MOVEMENT_NEED_LARGER_MATRICES
12975 try_cursor_movement (window
, startp
, scroll_step
)
12976 Lisp_Object window
;
12977 struct text_pos startp
;
12980 struct window
*w
= XWINDOW (window
);
12981 struct frame
*f
= XFRAME (w
->frame
);
12982 int rc
= CURSOR_MOVEMENT_CANNOT_BE_USED
;
12985 if (inhibit_try_cursor_movement
)
12989 /* Handle case where text has not changed, only point, and it has
12990 not moved off the frame. */
12991 if (/* Point may be in this window. */
12992 PT
>= CHARPOS (startp
)
12993 /* Selective display hasn't changed. */
12994 && !current_buffer
->clip_changed
12995 /* Function force-mode-line-update is used to force a thorough
12996 redisplay. It sets either windows_or_buffers_changed or
12997 update_mode_lines. So don't take a shortcut here for these
12999 && !update_mode_lines
13000 && !windows_or_buffers_changed
13001 && !cursor_type_changed
13002 /* Can't use this case if highlighting a region. When a
13003 region exists, cursor movement has to do more than just
13005 && !(!NILP (Vtransient_mark_mode
)
13006 && !NILP (current_buffer
->mark_active
))
13007 && NILP (w
->region_showing
)
13008 && NILP (Vshow_trailing_whitespace
)
13009 /* Right after splitting windows, last_point may be nil. */
13010 && INTEGERP (w
->last_point
)
13011 /* This code is not used for mini-buffer for the sake of the case
13012 of redisplaying to replace an echo area message; since in
13013 that case the mini-buffer contents per se are usually
13014 unchanged. This code is of no real use in the mini-buffer
13015 since the handling of this_line_start_pos, etc., in redisplay
13016 handles the same cases. */
13017 && !EQ (window
, minibuf_window
)
13018 /* When splitting windows or for new windows, it happens that
13019 redisplay is called with a nil window_end_vpos or one being
13020 larger than the window. This should really be fixed in
13021 window.c. I don't have this on my list, now, so we do
13022 approximately the same as the old redisplay code. --gerd. */
13023 && INTEGERP (w
->window_end_vpos
)
13024 && XFASTINT (w
->window_end_vpos
) < w
->current_matrix
->nrows
13025 && (FRAME_WINDOW_P (f
)
13026 || !overlay_arrow_in_current_buffer_p ()))
13028 int this_scroll_margin
, top_scroll_margin
;
13029 struct glyph_row
*row
= NULL
;
13032 debug_method_add (w
, "cursor movement");
13035 /* Scroll if point within this distance from the top or bottom
13036 of the window. This is a pixel value. */
13037 if (scroll_margin
> 0)
13039 this_scroll_margin
= min (scroll_margin
, WINDOW_TOTAL_LINES (w
) / 4);
13040 this_scroll_margin
*= FRAME_LINE_HEIGHT (f
);
13043 this_scroll_margin
= 0;
13045 top_scroll_margin
= this_scroll_margin
;
13046 if (WINDOW_WANTS_HEADER_LINE_P (w
))
13047 top_scroll_margin
+= CURRENT_HEADER_LINE_HEIGHT (w
);
13049 /* Start with the row the cursor was displayed during the last
13050 not paused redisplay. Give up if that row is not valid. */
13051 if (w
->last_cursor
.vpos
< 0
13052 || w
->last_cursor
.vpos
>= w
->current_matrix
->nrows
)
13053 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
13056 row
= MATRIX_ROW (w
->current_matrix
, w
->last_cursor
.vpos
);
13057 if (row
->mode_line_p
)
13059 if (!row
->enabled_p
)
13060 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
13063 if (rc
== CURSOR_MOVEMENT_CANNOT_BE_USED
)
13066 int last_y
= window_text_bottom_y (w
) - this_scroll_margin
;
13068 if (PT
> XFASTINT (w
->last_point
))
13070 /* Point has moved forward. */
13071 while (MATRIX_ROW_END_CHARPOS (row
) < PT
13072 && MATRIX_ROW_BOTTOM_Y (row
) < last_y
)
13074 xassert (row
->enabled_p
);
13078 /* The end position of a row equals the start position
13079 of the next row. If PT is there, we would rather
13080 display it in the next line. */
13081 while (MATRIX_ROW_BOTTOM_Y (row
) < last_y
13082 && MATRIX_ROW_END_CHARPOS (row
) == PT
13083 && !cursor_row_p (w
, row
))
13086 /* If within the scroll margin, scroll. Note that
13087 MATRIX_ROW_BOTTOM_Y gives the pixel position at which
13088 the next line would be drawn, and that
13089 this_scroll_margin can be zero. */
13090 if (MATRIX_ROW_BOTTOM_Y (row
) > last_y
13091 || PT
> MATRIX_ROW_END_CHARPOS (row
)
13092 /* Line is completely visible last line in window
13093 and PT is to be set in the next line. */
13094 || (MATRIX_ROW_BOTTOM_Y (row
) == last_y
13095 && PT
== MATRIX_ROW_END_CHARPOS (row
)
13096 && !row
->ends_at_zv_p
13097 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row
)))
13100 else if (PT
< XFASTINT (w
->last_point
))
13102 /* Cursor has to be moved backward. Note that PT >=
13103 CHARPOS (startp) because of the outer if-statement. */
13104 while (!row
->mode_line_p
13105 && (MATRIX_ROW_START_CHARPOS (row
) > PT
13106 || (MATRIX_ROW_START_CHARPOS (row
) == PT
13107 && (MATRIX_ROW_STARTS_IN_MIDDLE_OF_CHAR_P (row
)
13108 || (/* STARTS_IN_MIDDLE_OF_STRING_P (row) */
13109 row
> w
->current_matrix
->rows
13110 && (row
-1)->ends_in_newline_from_string_p
))))
13111 && (row
->y
> top_scroll_margin
13112 || CHARPOS (startp
) == BEGV
))
13114 xassert (row
->enabled_p
);
13118 /* Consider the following case: Window starts at BEGV,
13119 there is invisible, intangible text at BEGV, so that
13120 display starts at some point START > BEGV. It can
13121 happen that we are called with PT somewhere between
13122 BEGV and START. Try to handle that case. */
13123 if (row
< w
->current_matrix
->rows
13124 || row
->mode_line_p
)
13126 row
= w
->current_matrix
->rows
;
13127 if (row
->mode_line_p
)
13131 /* Due to newlines in overlay strings, we may have to
13132 skip forward over overlay strings. */
13133 while (MATRIX_ROW_BOTTOM_Y (row
) < last_y
13134 && MATRIX_ROW_END_CHARPOS (row
) == PT
13135 && !cursor_row_p (w
, row
))
13138 /* If within the scroll margin, scroll. */
13139 if (row
->y
< top_scroll_margin
13140 && CHARPOS (startp
) != BEGV
)
13145 /* Cursor did not move. So don't scroll even if cursor line
13146 is partially visible, as it was so before. */
13147 rc
= CURSOR_MOVEMENT_SUCCESS
;
13150 if (PT
< MATRIX_ROW_START_CHARPOS (row
)
13151 || PT
> MATRIX_ROW_END_CHARPOS (row
))
13153 /* if PT is not in the glyph row, give up. */
13154 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
13156 else if (rc
!= CURSOR_MOVEMENT_SUCCESS
13157 && MATRIX_ROW_PARTIALLY_VISIBLE_P (w
, row
)
13158 && make_cursor_line_fully_visible_p
)
13160 if (PT
== MATRIX_ROW_END_CHARPOS (row
)
13161 && !row
->ends_at_zv_p
13162 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row
))
13163 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
13164 else if (row
->height
> window_box_height (w
))
13166 /* If we end up in a partially visible line, let's
13167 make it fully visible, except when it's taller
13168 than the window, in which case we can't do much
13171 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
13175 set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0, 0, 0);
13176 if (!cursor_row_fully_visible_p (w
, 0, 1))
13177 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
13179 rc
= CURSOR_MOVEMENT_SUCCESS
;
13183 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
13188 if (set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0, 0, 0))
13190 rc
= CURSOR_MOVEMENT_SUCCESS
;
13195 while (MATRIX_ROW_BOTTOM_Y (row
) < last_y
13196 && MATRIX_ROW_START_CHARPOS (row
) == PT
13197 && cursor_row_p (w
, row
));
13206 set_vertical_scroll_bar (w
)
13209 int start
, end
, whole
;
13211 /* Calculate the start and end positions for the current window.
13212 At some point, it would be nice to choose between scrollbars
13213 which reflect the whole buffer size, with special markers
13214 indicating narrowing, and scrollbars which reflect only the
13217 Note that mini-buffers sometimes aren't displaying any text. */
13218 if (!MINI_WINDOW_P (w
)
13219 || (w
== XWINDOW (minibuf_window
)
13220 && NILP (echo_area_buffer
[0])))
13222 struct buffer
*buf
= XBUFFER (w
->buffer
);
13223 whole
= BUF_ZV (buf
) - BUF_BEGV (buf
);
13224 start
= marker_position (w
->start
) - BUF_BEGV (buf
);
13225 /* I don't think this is guaranteed to be right. For the
13226 moment, we'll pretend it is. */
13227 end
= BUF_Z (buf
) - XFASTINT (w
->window_end_pos
) - BUF_BEGV (buf
);
13231 if (whole
< (end
- start
))
13232 whole
= end
- start
;
13235 start
= end
= whole
= 0;
13237 /* Indicate what this scroll bar ought to be displaying now. */
13238 if (FRAME_TERMINAL (XFRAME (w
->frame
))->set_vertical_scroll_bar_hook
)
13239 (*FRAME_TERMINAL (XFRAME (w
->frame
))->set_vertical_scroll_bar_hook
)
13240 (w
, end
- start
, whole
, start
);
13244 /* Redisplay leaf window WINDOW. JUST_THIS_ONE_P non-zero means only
13245 selected_window is redisplayed.
13247 We can return without actually redisplaying the window if
13248 fonts_changed_p is nonzero. In that case, redisplay_internal will
13252 redisplay_window (window
, just_this_one_p
)
13253 Lisp_Object window
;
13254 int just_this_one_p
;
13256 struct window
*w
= XWINDOW (window
);
13257 struct frame
*f
= XFRAME (w
->frame
);
13258 struct buffer
*buffer
= XBUFFER (w
->buffer
);
13259 struct buffer
*old
= current_buffer
;
13260 struct text_pos lpoint
, opoint
, startp
;
13261 int update_mode_line
;
13264 /* Record it now because it's overwritten. */
13265 int current_matrix_up_to_date_p
= 0;
13266 int used_current_matrix_p
= 0;
13267 /* This is less strict than current_matrix_up_to_date_p.
13268 It indictes that the buffer contents and narrowing are unchanged. */
13269 int buffer_unchanged_p
= 0;
13270 int temp_scroll_step
= 0;
13271 int count
= SPECPDL_INDEX ();
13273 int centering_position
= -1;
13274 int last_line_misfit
= 0;
13275 int beg_unchanged
, end_unchanged
;
13277 SET_TEXT_POS (lpoint
, PT
, PT_BYTE
);
13280 /* W must be a leaf window here. */
13281 xassert (!NILP (w
->buffer
));
13283 *w
->desired_matrix
->method
= 0;
13287 reconsider_clip_changes (w
, buffer
);
13289 /* Has the mode line to be updated? */
13290 update_mode_line
= (!NILP (w
->update_mode_line
)
13291 || update_mode_lines
13292 || buffer
->clip_changed
13293 || buffer
->prevent_redisplay_optimizations_p
);
13295 if (MINI_WINDOW_P (w
))
13297 if (w
== XWINDOW (echo_area_window
)
13298 && !NILP (echo_area_buffer
[0]))
13300 if (update_mode_line
)
13301 /* We may have to update a tty frame's menu bar or a
13302 tool-bar. Example `M-x C-h C-h C-g'. */
13303 goto finish_menu_bars
;
13305 /* We've already displayed the echo area glyphs in this window. */
13306 goto finish_scroll_bars
;
13308 else if ((w
!= XWINDOW (minibuf_window
)
13309 || minibuf_level
== 0)
13310 /* When buffer is nonempty, redisplay window normally. */
13311 && BUF_Z (XBUFFER (w
->buffer
)) == BUF_BEG (XBUFFER (w
->buffer
))
13312 /* Quail displays non-mini buffers in minibuffer window.
13313 In that case, redisplay the window normally. */
13314 && !NILP (Fmemq (w
->buffer
, Vminibuffer_list
)))
13316 /* W is a mini-buffer window, but it's not active, so clear
13318 int yb
= window_text_bottom_y (w
);
13319 struct glyph_row
*row
;
13322 for (y
= 0, row
= w
->desired_matrix
->rows
;
13324 y
+= row
->height
, ++row
)
13325 blank_row (w
, row
, y
);
13326 goto finish_scroll_bars
;
13329 clear_glyph_matrix (w
->desired_matrix
);
13332 /* Otherwise set up data on this window; select its buffer and point
13334 /* Really select the buffer, for the sake of buffer-local
13336 set_buffer_internal_1 (XBUFFER (w
->buffer
));
13338 current_matrix_up_to_date_p
13339 = (!NILP (w
->window_end_valid
)
13340 && !current_buffer
->clip_changed
13341 && !current_buffer
->prevent_redisplay_optimizations_p
13342 && XFASTINT (w
->last_modified
) >= MODIFF
13343 && XFASTINT (w
->last_overlay_modified
) >= OVERLAY_MODIFF
);
13345 /* Run the window-bottom-change-functions
13346 if it is possible that the text on the screen has changed
13347 (either due to modification of the text, or any other reason). */
13348 if (!current_matrix_up_to_date_p
13349 && !NILP (Vwindow_text_change_functions
))
13351 safe_run_hooks (Qwindow_text_change_functions
);
13355 beg_unchanged
= BEG_UNCHANGED
;
13356 end_unchanged
= END_UNCHANGED
;
13358 SET_TEXT_POS (opoint
, PT
, PT_BYTE
);
13360 specbind (Qinhibit_point_motion_hooks
, Qt
);
13363 = (!NILP (w
->window_end_valid
)
13364 && !current_buffer
->clip_changed
13365 && XFASTINT (w
->last_modified
) >= MODIFF
13366 && XFASTINT (w
->last_overlay_modified
) >= OVERLAY_MODIFF
);
13368 /* When windows_or_buffers_changed is non-zero, we can't rely on
13369 the window end being valid, so set it to nil there. */
13370 if (windows_or_buffers_changed
)
13372 /* If window starts on a continuation line, maybe adjust the
13373 window start in case the window's width changed. */
13374 if (XMARKER (w
->start
)->buffer
== current_buffer
)
13375 compute_window_start_on_continuation_line (w
);
13377 w
->window_end_valid
= Qnil
;
13380 /* Some sanity checks. */
13381 CHECK_WINDOW_END (w
);
13382 if (Z
== Z_BYTE
&& CHARPOS (opoint
) != BYTEPOS (opoint
))
13384 if (BYTEPOS (opoint
) < CHARPOS (opoint
))
13387 /* If %c is in mode line, update it if needed. */
13388 if (!NILP (w
->column_number_displayed
)
13389 /* This alternative quickly identifies a common case
13390 where no change is needed. */
13391 && !(PT
== XFASTINT (w
->last_point
)
13392 && XFASTINT (w
->last_modified
) >= MODIFF
13393 && XFASTINT (w
->last_overlay_modified
) >= OVERLAY_MODIFF
)
13394 && (XFASTINT (w
->column_number_displayed
)
13395 != (int) current_column ())) /* iftc */
13396 update_mode_line
= 1;
13398 /* Count number of windows showing the selected buffer. An indirect
13399 buffer counts as its base buffer. */
13400 if (!just_this_one_p
)
13402 struct buffer
*current_base
, *window_base
;
13403 current_base
= current_buffer
;
13404 window_base
= XBUFFER (XWINDOW (selected_window
)->buffer
);
13405 if (current_base
->base_buffer
)
13406 current_base
= current_base
->base_buffer
;
13407 if (window_base
->base_buffer
)
13408 window_base
= window_base
->base_buffer
;
13409 if (current_base
== window_base
)
13413 /* Point refers normally to the selected window. For any other
13414 window, set up appropriate value. */
13415 if (!EQ (window
, selected_window
))
13417 int new_pt
= XMARKER (w
->pointm
)->charpos
;
13418 int new_pt_byte
= marker_byte_position (w
->pointm
);
13422 new_pt_byte
= BEGV_BYTE
;
13423 set_marker_both (w
->pointm
, Qnil
, BEGV
, BEGV_BYTE
);
13425 else if (new_pt
> (ZV
- 1))
13428 new_pt_byte
= ZV_BYTE
;
13429 set_marker_both (w
->pointm
, Qnil
, ZV
, ZV_BYTE
);
13432 /* We don't use SET_PT so that the point-motion hooks don't run. */
13433 TEMP_SET_PT_BOTH (new_pt
, new_pt_byte
);
13436 /* If any of the character widths specified in the display table
13437 have changed, invalidate the width run cache. It's true that
13438 this may be a bit late to catch such changes, but the rest of
13439 redisplay goes (non-fatally) haywire when the display table is
13440 changed, so why should we worry about doing any better? */
13441 if (current_buffer
->width_run_cache
)
13443 struct Lisp_Char_Table
*disptab
= buffer_display_table ();
13445 if (! disptab_matches_widthtab (disptab
,
13446 XVECTOR (current_buffer
->width_table
)))
13448 invalidate_region_cache (current_buffer
,
13449 current_buffer
->width_run_cache
,
13451 recompute_width_table (current_buffer
, disptab
);
13455 /* If window-start is screwed up, choose a new one. */
13456 if (XMARKER (w
->start
)->buffer
!= current_buffer
)
13459 SET_TEXT_POS_FROM_MARKER (startp
, w
->start
);
13461 /* If someone specified a new starting point but did not insist,
13462 check whether it can be used. */
13463 if (!NILP (w
->optional_new_start
)
13464 && CHARPOS (startp
) >= BEGV
13465 && CHARPOS (startp
) <= ZV
)
13467 w
->optional_new_start
= Qnil
;
13468 start_display (&it
, w
, startp
);
13469 move_it_to (&it
, PT
, 0, it
.last_visible_y
, -1,
13470 MOVE_TO_POS
| MOVE_TO_X
| MOVE_TO_Y
);
13471 if (IT_CHARPOS (it
) == PT
)
13472 w
->force_start
= Qt
;
13473 /* IT may overshoot PT if text at PT is invisible. */
13474 else if (IT_CHARPOS (it
) > PT
&& CHARPOS (startp
) <= PT
)
13475 w
->force_start
= Qt
;
13480 /* Handle case where place to start displaying has been specified,
13481 unless the specified location is outside the accessible range. */
13482 if (!NILP (w
->force_start
)
13483 || w
->frozen_window_start_p
)
13485 /* We set this later on if we have to adjust point. */
13488 w
->force_start
= Qnil
;
13490 w
->window_end_valid
= Qnil
;
13492 /* Forget any recorded base line for line number display. */
13493 if (!buffer_unchanged_p
)
13494 w
->base_line_number
= Qnil
;
13496 /* Redisplay the mode line. Select the buffer properly for that.
13497 Also, run the hook window-scroll-functions
13498 because we have scrolled. */
13499 /* Note, we do this after clearing force_start because
13500 if there's an error, it is better to forget about force_start
13501 than to get into an infinite loop calling the hook functions
13502 and having them get more errors. */
13503 if (!update_mode_line
13504 || ! NILP (Vwindow_scroll_functions
))
13506 update_mode_line
= 1;
13507 w
->update_mode_line
= Qt
;
13508 startp
= run_window_scroll_functions (window
, startp
);
13511 w
->last_modified
= make_number (0);
13512 w
->last_overlay_modified
= make_number (0);
13513 if (CHARPOS (startp
) < BEGV
)
13514 SET_TEXT_POS (startp
, BEGV
, BEGV_BYTE
);
13515 else if (CHARPOS (startp
) > ZV
)
13516 SET_TEXT_POS (startp
, ZV
, ZV_BYTE
);
13518 /* Redisplay, then check if cursor has been set during the
13519 redisplay. Give up if new fonts were loaded. */
13520 /* We used to issue a CHECK_MARGINS argument to try_window here,
13521 but this causes scrolling to fail when point begins inside
13522 the scroll margin (bug#148) -- cyd */
13523 if (!try_window (window
, startp
, 0))
13525 w
->force_start
= Qt
;
13526 clear_glyph_matrix (w
->desired_matrix
);
13527 goto need_larger_matrices
;
13530 if (w
->cursor
.vpos
< 0 && !w
->frozen_window_start_p
)
13532 /* If point does not appear, try to move point so it does
13533 appear. The desired matrix has been built above, so we
13534 can use it here. */
13535 new_vpos
= window_box_height (w
) / 2;
13538 if (!cursor_row_fully_visible_p (w
, 0, 0))
13540 /* Point does appear, but on a line partly visible at end of window.
13541 Move it back to a fully-visible line. */
13542 new_vpos
= window_box_height (w
);
13545 /* If we need to move point for either of the above reasons,
13546 now actually do it. */
13549 struct glyph_row
*row
;
13551 row
= MATRIX_FIRST_TEXT_ROW (w
->desired_matrix
);
13552 while (MATRIX_ROW_BOTTOM_Y (row
) < new_vpos
)
13555 TEMP_SET_PT_BOTH (MATRIX_ROW_START_CHARPOS (row
),
13556 MATRIX_ROW_START_BYTEPOS (row
));
13558 if (w
!= XWINDOW (selected_window
))
13559 set_marker_both (w
->pointm
, Qnil
, PT
, PT_BYTE
);
13560 else if (current_buffer
== old
)
13561 SET_TEXT_POS (lpoint
, PT
, PT_BYTE
);
13563 set_cursor_from_row (w
, row
, w
->desired_matrix
, 0, 0, 0, 0);
13565 /* If we are highlighting the region, then we just changed
13566 the region, so redisplay to show it. */
13567 if (!NILP (Vtransient_mark_mode
)
13568 && !NILP (current_buffer
->mark_active
))
13570 clear_glyph_matrix (w
->desired_matrix
);
13571 if (!try_window (window
, startp
, 0))
13572 goto need_larger_matrices
;
13577 debug_method_add (w
, "forced window start");
13582 /* Handle case where text has not changed, only point, and it has
13583 not moved off the frame, and we are not retrying after hscroll.
13584 (current_matrix_up_to_date_p is nonzero when retrying.) */
13585 if (current_matrix_up_to_date_p
13586 && (rc
= try_cursor_movement (window
, startp
, &temp_scroll_step
),
13587 rc
!= CURSOR_MOVEMENT_CANNOT_BE_USED
))
13591 case CURSOR_MOVEMENT_SUCCESS
:
13592 used_current_matrix_p
= 1;
13595 #if 0 /* try_cursor_movement never returns this value. */
13596 case CURSOR_MOVEMENT_NEED_LARGER_MATRICES
:
13597 goto need_larger_matrices
;
13600 case CURSOR_MOVEMENT_MUST_SCROLL
:
13601 goto try_to_scroll
;
13607 /* If current starting point was originally the beginning of a line
13608 but no longer is, find a new starting point. */
13609 else if (!NILP (w
->start_at_line_beg
)
13610 && !(CHARPOS (startp
) <= BEGV
13611 || FETCH_BYTE (BYTEPOS (startp
) - 1) == '\n'))
13614 debug_method_add (w
, "recenter 1");
13619 /* Try scrolling with try_window_id. Value is > 0 if update has
13620 been done, it is -1 if we know that the same window start will
13621 not work. It is 0 if unsuccessful for some other reason. */
13622 else if ((tem
= try_window_id (w
)) != 0)
13625 debug_method_add (w
, "try_window_id %d", tem
);
13628 if (fonts_changed_p
)
13629 goto need_larger_matrices
;
13633 /* Otherwise try_window_id has returned -1 which means that we
13634 don't want the alternative below this comment to execute. */
13636 else if (CHARPOS (startp
) >= BEGV
13637 && CHARPOS (startp
) <= ZV
13638 && PT
>= CHARPOS (startp
)
13639 && (CHARPOS (startp
) < ZV
13640 /* Avoid starting at end of buffer. */
13641 || CHARPOS (startp
) == BEGV
13642 || (XFASTINT (w
->last_modified
) >= MODIFF
13643 && XFASTINT (w
->last_overlay_modified
) >= OVERLAY_MODIFF
)))
13646 /* If first window line is a continuation line, and window start
13647 is inside the modified region, but the first change is before
13648 current window start, we must select a new window start.
13650 However, if this is the result of a down-mouse event (e.g. by
13651 extending the mouse-drag-overlay), we don't want to select a
13652 new window start, since that would change the position under
13653 the mouse, resulting in an unwanted mouse-movement rather
13654 than a simple mouse-click. */
13655 if (NILP (w
->start_at_line_beg
)
13656 && NILP (do_mouse_tracking
)
13657 && CHARPOS (startp
) > BEGV
13658 && CHARPOS (startp
) > BEG
+ beg_unchanged
13659 && CHARPOS (startp
) <= Z
- end_unchanged
13660 /* Even if w->start_at_line_beg is nil, a new window may
13661 start at a line_beg, since that's how set_buffer_window
13662 sets it. So, we need to check the return value of
13663 compute_window_start_on_continuation_line. (See also
13665 && XMARKER (w
->start
)->buffer
== current_buffer
13666 && compute_window_start_on_continuation_line (w
))
13668 w
->force_start
= Qt
;
13669 SET_TEXT_POS_FROM_MARKER (startp
, w
->start
);
13674 debug_method_add (w
, "same window start");
13677 /* Try to redisplay starting at same place as before.
13678 If point has not moved off frame, accept the results. */
13679 if (!current_matrix_up_to_date_p
13680 /* Don't use try_window_reusing_current_matrix in this case
13681 because a window scroll function can have changed the
13683 || !NILP (Vwindow_scroll_functions
)
13684 || MINI_WINDOW_P (w
)
13685 || !(used_current_matrix_p
13686 = try_window_reusing_current_matrix (w
)))
13688 IF_DEBUG (debug_method_add (w
, "1"));
13689 if (try_window (window
, startp
, 1) < 0)
13690 /* -1 means we need to scroll.
13691 0 means we need new matrices, but fonts_changed_p
13692 is set in that case, so we will detect it below. */
13693 goto try_to_scroll
;
13696 if (fonts_changed_p
)
13697 goto need_larger_matrices
;
13699 if (w
->cursor
.vpos
>= 0)
13701 if (!just_this_one_p
13702 || current_buffer
->clip_changed
13703 || BEG_UNCHANGED
< CHARPOS (startp
))
13704 /* Forget any recorded base line for line number display. */
13705 w
->base_line_number
= Qnil
;
13707 if (!cursor_row_fully_visible_p (w
, 1, 0))
13709 clear_glyph_matrix (w
->desired_matrix
);
13710 last_line_misfit
= 1;
13712 /* Drop through and scroll. */
13717 clear_glyph_matrix (w
->desired_matrix
);
13722 w
->last_modified
= make_number (0);
13723 w
->last_overlay_modified
= make_number (0);
13725 /* Redisplay the mode line. Select the buffer properly for that. */
13726 if (!update_mode_line
)
13728 update_mode_line
= 1;
13729 w
->update_mode_line
= Qt
;
13732 /* Try to scroll by specified few lines. */
13733 if ((scroll_conservatively
13735 || temp_scroll_step
13736 || NUMBERP (current_buffer
->scroll_up_aggressively
)
13737 || NUMBERP (current_buffer
->scroll_down_aggressively
))
13738 && !current_buffer
->clip_changed
13739 && CHARPOS (startp
) >= BEGV
13740 && CHARPOS (startp
) <= ZV
)
13742 /* The function returns -1 if new fonts were loaded, 1 if
13743 successful, 0 if not successful. */
13744 int rc
= try_scrolling (window
, just_this_one_p
,
13745 scroll_conservatively
,
13747 temp_scroll_step
, last_line_misfit
);
13750 case SCROLLING_SUCCESS
:
13753 case SCROLLING_NEED_LARGER_MATRICES
:
13754 goto need_larger_matrices
;
13756 case SCROLLING_FAILED
:
13764 /* Finally, just choose place to start which centers point */
13767 if (centering_position
< 0)
13768 centering_position
= window_box_height (w
) / 2;
13771 debug_method_add (w
, "recenter");
13774 /* w->vscroll = 0; */
13776 /* Forget any previously recorded base line for line number display. */
13777 if (!buffer_unchanged_p
)
13778 w
->base_line_number
= Qnil
;
13780 /* Move backward half the height of the window. */
13781 init_iterator (&it
, w
, PT
, PT_BYTE
, NULL
, DEFAULT_FACE_ID
);
13782 it
.current_y
= it
.last_visible_y
;
13783 move_it_vertically_backward (&it
, centering_position
);
13784 xassert (IT_CHARPOS (it
) >= BEGV
);
13786 /* The function move_it_vertically_backward may move over more
13787 than the specified y-distance. If it->w is small, e.g. a
13788 mini-buffer window, we may end up in front of the window's
13789 display area. Start displaying at the start of the line
13790 containing PT in this case. */
13791 if (it
.current_y
<= 0)
13793 init_iterator (&it
, w
, PT
, PT_BYTE
, NULL
, DEFAULT_FACE_ID
);
13794 move_it_vertically_backward (&it
, 0);
13798 it
.current_x
= it
.hpos
= 0;
13800 /* Set startp here explicitly in case that helps avoid an infinite loop
13801 in case the window-scroll-functions functions get errors. */
13802 set_marker_both (w
->start
, Qnil
, IT_CHARPOS (it
), IT_BYTEPOS (it
));
13804 /* Run scroll hooks. */
13805 startp
= run_window_scroll_functions (window
, it
.current
.pos
);
13807 /* Redisplay the window. */
13808 if (!current_matrix_up_to_date_p
13809 || windows_or_buffers_changed
13810 || cursor_type_changed
13811 /* Don't use try_window_reusing_current_matrix in this case
13812 because it can have changed the buffer. */
13813 || !NILP (Vwindow_scroll_functions
)
13814 || !just_this_one_p
13815 || MINI_WINDOW_P (w
)
13816 || !(used_current_matrix_p
13817 = try_window_reusing_current_matrix (w
)))
13818 try_window (window
, startp
, 0);
13820 /* If new fonts have been loaded (due to fontsets), give up. We
13821 have to start a new redisplay since we need to re-adjust glyph
13823 if (fonts_changed_p
)
13824 goto need_larger_matrices
;
13826 /* If cursor did not appear assume that the middle of the window is
13827 in the first line of the window. Do it again with the next line.
13828 (Imagine a window of height 100, displaying two lines of height
13829 60. Moving back 50 from it->last_visible_y will end in the first
13831 if (w
->cursor
.vpos
< 0)
13833 if (!NILP (w
->window_end_valid
)
13834 && PT
>= Z
- XFASTINT (w
->window_end_pos
))
13836 clear_glyph_matrix (w
->desired_matrix
);
13837 move_it_by_lines (&it
, 1, 0);
13838 try_window (window
, it
.current
.pos
, 0);
13840 else if (PT
< IT_CHARPOS (it
))
13842 clear_glyph_matrix (w
->desired_matrix
);
13843 move_it_by_lines (&it
, -1, 0);
13844 try_window (window
, it
.current
.pos
, 0);
13848 /* Not much we can do about it. */
13852 /* Consider the following case: Window starts at BEGV, there is
13853 invisible, intangible text at BEGV, so that display starts at
13854 some point START > BEGV. It can happen that we are called with
13855 PT somewhere between BEGV and START. Try to handle that case. */
13856 if (w
->cursor
.vpos
< 0)
13858 struct glyph_row
*row
= w
->current_matrix
->rows
;
13859 if (row
->mode_line_p
)
13861 set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0, 0, 0);
13864 if (!cursor_row_fully_visible_p (w
, 0, 0))
13866 /* If vscroll is enabled, disable it and try again. */
13870 clear_glyph_matrix (w
->desired_matrix
);
13874 /* If centering point failed to make the whole line visible,
13875 put point at the top instead. That has to make the whole line
13876 visible, if it can be done. */
13877 if (centering_position
== 0)
13880 clear_glyph_matrix (w
->desired_matrix
);
13881 centering_position
= 0;
13887 SET_TEXT_POS_FROM_MARKER (startp
, w
->start
);
13888 w
->start_at_line_beg
= ((CHARPOS (startp
) == BEGV
13889 || FETCH_BYTE (BYTEPOS (startp
) - 1) == '\n')
13892 /* Display the mode line, if we must. */
13893 if ((update_mode_line
13894 /* If window not full width, must redo its mode line
13895 if (a) the window to its side is being redone and
13896 (b) we do a frame-based redisplay. This is a consequence
13897 of how inverted lines are drawn in frame-based redisplay. */
13898 || (!just_this_one_p
13899 && !FRAME_WINDOW_P (f
)
13900 && !WINDOW_FULL_WIDTH_P (w
))
13901 /* Line number to display. */
13902 || INTEGERP (w
->base_line_pos
)
13903 /* Column number is displayed and different from the one displayed. */
13904 || (!NILP (w
->column_number_displayed
)
13905 && (XFASTINT (w
->column_number_displayed
)
13906 != (int) current_column ()))) /* iftc */
13907 /* This means that the window has a mode line. */
13908 && (WINDOW_WANTS_MODELINE_P (w
)
13909 || WINDOW_WANTS_HEADER_LINE_P (w
)))
13911 display_mode_lines (w
);
13913 /* If mode line height has changed, arrange for a thorough
13914 immediate redisplay using the correct mode line height. */
13915 if (WINDOW_WANTS_MODELINE_P (w
)
13916 && CURRENT_MODE_LINE_HEIGHT (w
) != DESIRED_MODE_LINE_HEIGHT (w
))
13918 fonts_changed_p
= 1;
13919 MATRIX_MODE_LINE_ROW (w
->current_matrix
)->height
13920 = DESIRED_MODE_LINE_HEIGHT (w
);
13923 /* If top line height has changed, arrange for a thorough
13924 immediate redisplay using the correct mode line height. */
13925 if (WINDOW_WANTS_HEADER_LINE_P (w
)
13926 && CURRENT_HEADER_LINE_HEIGHT (w
) != DESIRED_HEADER_LINE_HEIGHT (w
))
13928 fonts_changed_p
= 1;
13929 MATRIX_HEADER_LINE_ROW (w
->current_matrix
)->height
13930 = DESIRED_HEADER_LINE_HEIGHT (w
);
13933 if (fonts_changed_p
)
13934 goto need_larger_matrices
;
13937 if (!line_number_displayed
13938 && !BUFFERP (w
->base_line_pos
))
13940 w
->base_line_pos
= Qnil
;
13941 w
->base_line_number
= Qnil
;
13946 /* When we reach a frame's selected window, redo the frame's menu bar. */
13947 if (update_mode_line
13948 && EQ (FRAME_SELECTED_WINDOW (f
), window
))
13950 int redisplay_menu_p
= 0;
13951 int redisplay_tool_bar_p
= 0;
13953 if (FRAME_WINDOW_P (f
))
13955 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
13956 || defined (HAVE_NS) || defined (USE_GTK)
13957 redisplay_menu_p
= FRAME_EXTERNAL_MENU_BAR (f
);
13959 redisplay_menu_p
= FRAME_MENU_BAR_LINES (f
) > 0;
13963 redisplay_menu_p
= FRAME_MENU_BAR_LINES (f
) > 0;
13965 if (redisplay_menu_p
)
13966 display_menu_bar (w
);
13968 #ifdef HAVE_WINDOW_SYSTEM
13969 if (FRAME_WINDOW_P (f
))
13971 #if defined (USE_GTK) || defined (HAVE_NS)
13972 redisplay_tool_bar_p
= FRAME_EXTERNAL_TOOL_BAR (f
);
13974 redisplay_tool_bar_p
= WINDOWP (f
->tool_bar_window
)
13975 && (FRAME_TOOL_BAR_LINES (f
) > 0
13976 || !NILP (Vauto_resize_tool_bars
));
13979 if (redisplay_tool_bar_p
&& redisplay_tool_bar (f
))
13981 extern int ignore_mouse_drag_p
;
13982 ignore_mouse_drag_p
= 1;
13988 #ifdef HAVE_WINDOW_SYSTEM
13989 if (FRAME_WINDOW_P (f
)
13990 && update_window_fringes (w
, (just_this_one_p
13991 || (!used_current_matrix_p
&& !overlay_arrow_seen
)
13992 || w
->pseudo_window_p
)))
13996 if (draw_window_fringes (w
, 1))
13997 x_draw_vertical_border (w
);
14001 #endif /* HAVE_WINDOW_SYSTEM */
14003 /* We go to this label, with fonts_changed_p nonzero,
14004 if it is necessary to try again using larger glyph matrices.
14005 We have to redeem the scroll bar even in this case,
14006 because the loop in redisplay_internal expects that. */
14007 need_larger_matrices
:
14009 finish_scroll_bars
:
14011 if (WINDOW_HAS_VERTICAL_SCROLL_BAR (w
))
14013 /* Set the thumb's position and size. */
14014 set_vertical_scroll_bar (w
);
14016 /* Note that we actually used the scroll bar attached to this
14017 window, so it shouldn't be deleted at the end of redisplay. */
14018 if (FRAME_TERMINAL (f
)->redeem_scroll_bar_hook
)
14019 (*FRAME_TERMINAL (f
)->redeem_scroll_bar_hook
) (w
);
14022 /* Restore current_buffer and value of point in it. */
14023 TEMP_SET_PT_BOTH (CHARPOS (opoint
), BYTEPOS (opoint
));
14024 set_buffer_internal_1 (old
);
14025 /* Avoid an abort in TEMP_SET_PT_BOTH if the buffer has become
14026 shorter. This can be caused by log truncation in *Messages*. */
14027 if (CHARPOS (lpoint
) <= ZV
)
14028 TEMP_SET_PT_BOTH (CHARPOS (lpoint
), BYTEPOS (lpoint
));
14030 unbind_to (count
, Qnil
);
14034 /* Build the complete desired matrix of WINDOW with a window start
14035 buffer position POS.
14037 Value is 1 if successful. It is zero if fonts were loaded during
14038 redisplay which makes re-adjusting glyph matrices necessary, and -1
14039 if point would appear in the scroll margins.
14040 (We check that only if CHECK_MARGINS is nonzero. */
14043 try_window (window
, pos
, check_margins
)
14044 Lisp_Object window
;
14045 struct text_pos pos
;
14048 struct window
*w
= XWINDOW (window
);
14050 struct glyph_row
*last_text_row
= NULL
;
14051 struct frame
*f
= XFRAME (w
->frame
);
14053 /* Make POS the new window start. */
14054 set_marker_both (w
->start
, Qnil
, CHARPOS (pos
), BYTEPOS (pos
));
14056 /* Mark cursor position as unknown. No overlay arrow seen. */
14057 w
->cursor
.vpos
= -1;
14058 overlay_arrow_seen
= 0;
14060 /* Initialize iterator and info to start at POS. */
14061 start_display (&it
, w
, pos
);
14063 /* Display all lines of W. */
14064 while (it
.current_y
< it
.last_visible_y
)
14066 if (display_line (&it
))
14067 last_text_row
= it
.glyph_row
- 1;
14068 if (fonts_changed_p
)
14072 /* Don't let the cursor end in the scroll margins. */
14074 && !MINI_WINDOW_P (w
))
14076 int this_scroll_margin
;
14078 if (scroll_margin
> 0)
14080 this_scroll_margin
= min (scroll_margin
, WINDOW_TOTAL_LINES (w
) / 4);
14081 this_scroll_margin
*= FRAME_LINE_HEIGHT (f
);
14084 this_scroll_margin
= 0;
14086 if ((w
->cursor
.y
>= 0 /* not vscrolled */
14087 && w
->cursor
.y
< this_scroll_margin
14088 && CHARPOS (pos
) > BEGV
14089 && IT_CHARPOS (it
) < ZV
)
14090 /* rms: considering make_cursor_line_fully_visible_p here
14091 seems to give wrong results. We don't want to recenter
14092 when the last line is partly visible, we want to allow
14093 that case to be handled in the usual way. */
14094 || w
->cursor
.y
> it
.last_visible_y
- this_scroll_margin
- 1)
14096 w
->cursor
.vpos
= -1;
14097 clear_glyph_matrix (w
->desired_matrix
);
14102 /* If bottom moved off end of frame, change mode line percentage. */
14103 if (XFASTINT (w
->window_end_pos
) <= 0
14104 && Z
!= IT_CHARPOS (it
))
14105 w
->update_mode_line
= Qt
;
14107 /* Set window_end_pos to the offset of the last character displayed
14108 on the window from the end of current_buffer. Set
14109 window_end_vpos to its row number. */
14112 xassert (MATRIX_ROW_DISPLAYS_TEXT_P (last_text_row
));
14113 w
->window_end_bytepos
14114 = Z_BYTE
- MATRIX_ROW_END_BYTEPOS (last_text_row
);
14116 = make_number (Z
- MATRIX_ROW_END_CHARPOS (last_text_row
));
14118 = make_number (MATRIX_ROW_VPOS (last_text_row
, w
->desired_matrix
));
14119 xassert (MATRIX_ROW (w
->desired_matrix
, XFASTINT (w
->window_end_vpos
))
14120 ->displays_text_p
);
14124 w
->window_end_bytepos
= Z_BYTE
- ZV_BYTE
;
14125 w
->window_end_pos
= make_number (Z
- ZV
);
14126 w
->window_end_vpos
= make_number (0);
14129 /* But that is not valid info until redisplay finishes. */
14130 w
->window_end_valid
= Qnil
;
14136 /************************************************************************
14137 Window redisplay reusing current matrix when buffer has not changed
14138 ************************************************************************/
14140 /* Try redisplay of window W showing an unchanged buffer with a
14141 different window start than the last time it was displayed by
14142 reusing its current matrix. Value is non-zero if successful.
14143 W->start is the new window start. */
14146 try_window_reusing_current_matrix (w
)
14149 struct frame
*f
= XFRAME (w
->frame
);
14150 struct glyph_row
*row
, *bottom_row
;
14153 struct text_pos start
, new_start
;
14154 int nrows_scrolled
, i
;
14155 struct glyph_row
*last_text_row
;
14156 struct glyph_row
*last_reused_text_row
;
14157 struct glyph_row
*start_row
;
14158 int start_vpos
, min_y
, max_y
;
14161 if (inhibit_try_window_reusing
)
14165 if (/* This function doesn't handle terminal frames. */
14166 !FRAME_WINDOW_P (f
)
14167 /* Don't try to reuse the display if windows have been split
14169 || windows_or_buffers_changed
14170 || cursor_type_changed
)
14173 /* Can't do this if region may have changed. */
14174 if ((!NILP (Vtransient_mark_mode
)
14175 && !NILP (current_buffer
->mark_active
))
14176 || !NILP (w
->region_showing
)
14177 || !NILP (Vshow_trailing_whitespace
))
14180 /* If top-line visibility has changed, give up. */
14181 if (WINDOW_WANTS_HEADER_LINE_P (w
)
14182 != MATRIX_HEADER_LINE_ROW (w
->current_matrix
)->mode_line_p
)
14185 /* Give up if old or new display is scrolled vertically. We could
14186 make this function handle this, but right now it doesn't. */
14187 start_row
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
14188 if (w
->vscroll
|| MATRIX_ROW_PARTIALLY_VISIBLE_P (w
, start_row
))
14191 /* The variable new_start now holds the new window start. The old
14192 start `start' can be determined from the current matrix. */
14193 SET_TEXT_POS_FROM_MARKER (new_start
, w
->start
);
14194 start
= start_row
->start
.pos
;
14195 start_vpos
= MATRIX_ROW_VPOS (start_row
, w
->current_matrix
);
14197 /* Clear the desired matrix for the display below. */
14198 clear_glyph_matrix (w
->desired_matrix
);
14200 if (CHARPOS (new_start
) <= CHARPOS (start
))
14204 /* Don't use this method if the display starts with an ellipsis
14205 displayed for invisible text. It's not easy to handle that case
14206 below, and it's certainly not worth the effort since this is
14207 not a frequent case. */
14208 if (in_ellipses_for_invisible_text_p (&start_row
->start
, w
))
14211 IF_DEBUG (debug_method_add (w
, "twu1"));
14213 /* Display up to a row that can be reused. The variable
14214 last_text_row is set to the last row displayed that displays
14215 text. Note that it.vpos == 0 if or if not there is a
14216 header-line; it's not the same as the MATRIX_ROW_VPOS! */
14217 start_display (&it
, w
, new_start
);
14218 first_row_y
= it
.current_y
;
14219 w
->cursor
.vpos
= -1;
14220 last_text_row
= last_reused_text_row
= NULL
;
14222 while (it
.current_y
< it
.last_visible_y
14223 && !fonts_changed_p
)
14225 /* If we have reached into the characters in the START row,
14226 that means the line boundaries have changed. So we
14227 can't start copying with the row START. Maybe it will
14228 work to start copying with the following row. */
14229 while (IT_CHARPOS (it
) > CHARPOS (start
))
14231 /* Advance to the next row as the "start". */
14233 start
= start_row
->start
.pos
;
14234 /* If there are no more rows to try, or just one, give up. */
14235 if (start_row
== MATRIX_MODE_LINE_ROW (w
->current_matrix
) - 1
14236 || w
->vscroll
|| MATRIX_ROW_PARTIALLY_VISIBLE_P (w
, start_row
)
14237 || CHARPOS (start
) == ZV
)
14239 clear_glyph_matrix (w
->desired_matrix
);
14243 start_vpos
= MATRIX_ROW_VPOS (start_row
, w
->current_matrix
);
14245 /* If we have reached alignment,
14246 we can copy the rest of the rows. */
14247 if (IT_CHARPOS (it
) == CHARPOS (start
))
14250 if (display_line (&it
))
14251 last_text_row
= it
.glyph_row
- 1;
14254 /* A value of current_y < last_visible_y means that we stopped
14255 at the previous window start, which in turn means that we
14256 have at least one reusable row. */
14257 if (it
.current_y
< it
.last_visible_y
)
14259 /* IT.vpos always starts from 0; it counts text lines. */
14260 nrows_scrolled
= it
.vpos
- (start_row
- MATRIX_FIRST_TEXT_ROW (w
->current_matrix
));
14262 /* Find PT if not already found in the lines displayed. */
14263 if (w
->cursor
.vpos
< 0)
14265 int dy
= it
.current_y
- start_row
->y
;
14267 row
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
14268 row
= row_containing_pos (w
, PT
, row
, NULL
, dy
);
14270 set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0,
14271 dy
, nrows_scrolled
);
14274 clear_glyph_matrix (w
->desired_matrix
);
14279 /* Scroll the display. Do it before the current matrix is
14280 changed. The problem here is that update has not yet
14281 run, i.e. part of the current matrix is not up to date.
14282 scroll_run_hook will clear the cursor, and use the
14283 current matrix to get the height of the row the cursor is
14285 run
.current_y
= start_row
->y
;
14286 run
.desired_y
= it
.current_y
;
14287 run
.height
= it
.last_visible_y
- it
.current_y
;
14289 if (run
.height
> 0 && run
.current_y
!= run
.desired_y
)
14292 FRAME_RIF (f
)->update_window_begin_hook (w
);
14293 FRAME_RIF (f
)->clear_window_mouse_face (w
);
14294 FRAME_RIF (f
)->scroll_run_hook (w
, &run
);
14295 FRAME_RIF (f
)->update_window_end_hook (w
, 0, 0);
14299 /* Shift current matrix down by nrows_scrolled lines. */
14300 bottom_row
= MATRIX_BOTTOM_TEXT_ROW (w
->current_matrix
, w
);
14301 rotate_matrix (w
->current_matrix
,
14303 MATRIX_ROW_VPOS (bottom_row
, w
->current_matrix
),
14306 /* Disable lines that must be updated. */
14307 for (i
= 0; i
< nrows_scrolled
; ++i
)
14308 (start_row
+ i
)->enabled_p
= 0;
14310 /* Re-compute Y positions. */
14311 min_y
= WINDOW_HEADER_LINE_HEIGHT (w
);
14312 max_y
= it
.last_visible_y
;
14313 for (row
= start_row
+ nrows_scrolled
;
14317 row
->y
= it
.current_y
;
14318 row
->visible_height
= row
->height
;
14320 if (row
->y
< min_y
)
14321 row
->visible_height
-= min_y
- row
->y
;
14322 if (row
->y
+ row
->height
> max_y
)
14323 row
->visible_height
-= row
->y
+ row
->height
- max_y
;
14324 row
->redraw_fringe_bitmaps_p
= 1;
14326 it
.current_y
+= row
->height
;
14328 if (MATRIX_ROW_DISPLAYS_TEXT_P (row
))
14329 last_reused_text_row
= row
;
14330 if (MATRIX_ROW_BOTTOM_Y (row
) >= it
.last_visible_y
)
14334 /* Disable lines in the current matrix which are now
14335 below the window. */
14336 for (++row
; row
< bottom_row
; ++row
)
14337 row
->enabled_p
= row
->mode_line_p
= 0;
14340 /* Update window_end_pos etc.; last_reused_text_row is the last
14341 reused row from the current matrix containing text, if any.
14342 The value of last_text_row is the last displayed line
14343 containing text. */
14344 if (last_reused_text_row
)
14346 w
->window_end_bytepos
14347 = Z_BYTE
- MATRIX_ROW_END_BYTEPOS (last_reused_text_row
);
14349 = make_number (Z
- MATRIX_ROW_END_CHARPOS (last_reused_text_row
));
14351 = make_number (MATRIX_ROW_VPOS (last_reused_text_row
,
14352 w
->current_matrix
));
14354 else if (last_text_row
)
14356 w
->window_end_bytepos
14357 = Z_BYTE
- MATRIX_ROW_END_BYTEPOS (last_text_row
);
14359 = make_number (Z
- MATRIX_ROW_END_CHARPOS (last_text_row
));
14361 = make_number (MATRIX_ROW_VPOS (last_text_row
, w
->desired_matrix
));
14365 /* This window must be completely empty. */
14366 w
->window_end_bytepos
= Z_BYTE
- ZV_BYTE
;
14367 w
->window_end_pos
= make_number (Z
- ZV
);
14368 w
->window_end_vpos
= make_number (0);
14370 w
->window_end_valid
= Qnil
;
14372 /* Update hint: don't try scrolling again in update_window. */
14373 w
->desired_matrix
->no_scrolling_p
= 1;
14376 debug_method_add (w
, "try_window_reusing_current_matrix 1");
14380 else if (CHARPOS (new_start
) > CHARPOS (start
))
14382 struct glyph_row
*pt_row
, *row
;
14383 struct glyph_row
*first_reusable_row
;
14384 struct glyph_row
*first_row_to_display
;
14386 int yb
= window_text_bottom_y (w
);
14388 /* Find the row starting at new_start, if there is one. Don't
14389 reuse a partially visible line at the end. */
14390 first_reusable_row
= start_row
;
14391 while (first_reusable_row
->enabled_p
14392 && MATRIX_ROW_BOTTOM_Y (first_reusable_row
) < yb
14393 && (MATRIX_ROW_START_CHARPOS (first_reusable_row
)
14394 < CHARPOS (new_start
)))
14395 ++first_reusable_row
;
14397 /* Give up if there is no row to reuse. */
14398 if (MATRIX_ROW_BOTTOM_Y (first_reusable_row
) >= yb
14399 || !first_reusable_row
->enabled_p
14400 || (MATRIX_ROW_START_CHARPOS (first_reusable_row
)
14401 != CHARPOS (new_start
)))
14404 /* We can reuse fully visible rows beginning with
14405 first_reusable_row to the end of the window. Set
14406 first_row_to_display to the first row that cannot be reused.
14407 Set pt_row to the row containing point, if there is any. */
14409 for (first_row_to_display
= first_reusable_row
;
14410 MATRIX_ROW_BOTTOM_Y (first_row_to_display
) < yb
;
14411 ++first_row_to_display
)
14413 if (PT
>= MATRIX_ROW_START_CHARPOS (first_row_to_display
)
14414 && PT
< MATRIX_ROW_END_CHARPOS (first_row_to_display
))
14415 pt_row
= first_row_to_display
;
14418 /* Start displaying at the start of first_row_to_display. */
14419 xassert (first_row_to_display
->y
< yb
);
14420 init_to_row_start (&it
, w
, first_row_to_display
);
14422 nrows_scrolled
= (MATRIX_ROW_VPOS (first_reusable_row
, w
->current_matrix
)
14424 it
.vpos
= (MATRIX_ROW_VPOS (first_row_to_display
, w
->current_matrix
)
14426 it
.current_y
= (first_row_to_display
->y
- first_reusable_row
->y
14427 + WINDOW_HEADER_LINE_HEIGHT (w
));
14429 /* Display lines beginning with first_row_to_display in the
14430 desired matrix. Set last_text_row to the last row displayed
14431 that displays text. */
14432 it
.glyph_row
= MATRIX_ROW (w
->desired_matrix
, it
.vpos
);
14433 if (pt_row
== NULL
)
14434 w
->cursor
.vpos
= -1;
14435 last_text_row
= NULL
;
14436 while (it
.current_y
< it
.last_visible_y
&& !fonts_changed_p
)
14437 if (display_line (&it
))
14438 last_text_row
= it
.glyph_row
- 1;
14440 /* If point is in a reused row, adjust y and vpos of the cursor
14444 w
->cursor
.vpos
-= nrows_scrolled
;
14445 w
->cursor
.y
-= first_reusable_row
->y
- start_row
->y
;
14448 /* Give up if point isn't in a row displayed or reused. (This
14449 also handles the case where w->cursor.vpos < nrows_scrolled
14450 after the calls to display_line, which can happen with scroll
14451 margins. See bug#1295.) */
14452 if (w
->cursor
.vpos
< 0)
14454 clear_glyph_matrix (w
->desired_matrix
);
14458 /* Scroll the display. */
14459 run
.current_y
= first_reusable_row
->y
;
14460 run
.desired_y
= WINDOW_HEADER_LINE_HEIGHT (w
);
14461 run
.height
= it
.last_visible_y
- run
.current_y
;
14462 dy
= run
.current_y
- run
.desired_y
;
14467 FRAME_RIF (f
)->update_window_begin_hook (w
);
14468 FRAME_RIF (f
)->clear_window_mouse_face (w
);
14469 FRAME_RIF (f
)->scroll_run_hook (w
, &run
);
14470 FRAME_RIF (f
)->update_window_end_hook (w
, 0, 0);
14474 /* Adjust Y positions of reused rows. */
14475 bottom_row
= MATRIX_BOTTOM_TEXT_ROW (w
->current_matrix
, w
);
14476 min_y
= WINDOW_HEADER_LINE_HEIGHT (w
);
14477 max_y
= it
.last_visible_y
;
14478 for (row
= first_reusable_row
; row
< first_row_to_display
; ++row
)
14481 row
->visible_height
= row
->height
;
14482 if (row
->y
< min_y
)
14483 row
->visible_height
-= min_y
- row
->y
;
14484 if (row
->y
+ row
->height
> max_y
)
14485 row
->visible_height
-= row
->y
+ row
->height
- max_y
;
14486 row
->redraw_fringe_bitmaps_p
= 1;
14489 /* Scroll the current matrix. */
14490 xassert (nrows_scrolled
> 0);
14491 rotate_matrix (w
->current_matrix
,
14493 MATRIX_ROW_VPOS (bottom_row
, w
->current_matrix
),
14496 /* Disable rows not reused. */
14497 for (row
-= nrows_scrolled
; row
< bottom_row
; ++row
)
14498 row
->enabled_p
= 0;
14500 /* Point may have moved to a different line, so we cannot assume that
14501 the previous cursor position is valid; locate the correct row. */
14504 for (row
= MATRIX_ROW (w
->current_matrix
, w
->cursor
.vpos
);
14505 row
< bottom_row
&& PT
>= MATRIX_ROW_END_CHARPOS (row
);
14509 w
->cursor
.y
= row
->y
;
14511 if (row
< bottom_row
)
14513 struct glyph
*glyph
= row
->glyphs
[TEXT_AREA
] + w
->cursor
.hpos
;
14514 struct glyph
*end
= glyph
+ row
->used
[TEXT_AREA
];
14517 && (!BUFFERP (glyph
->object
)
14518 || glyph
->charpos
< PT
);
14522 w
->cursor
.x
+= glyph
->pixel_width
;
14527 /* Adjust window end. A null value of last_text_row means that
14528 the window end is in reused rows which in turn means that
14529 only its vpos can have changed. */
14532 w
->window_end_bytepos
14533 = Z_BYTE
- MATRIX_ROW_END_BYTEPOS (last_text_row
);
14535 = make_number (Z
- MATRIX_ROW_END_CHARPOS (last_text_row
));
14537 = make_number (MATRIX_ROW_VPOS (last_text_row
, w
->desired_matrix
));
14542 = make_number (XFASTINT (w
->window_end_vpos
) - nrows_scrolled
);
14545 w
->window_end_valid
= Qnil
;
14546 w
->desired_matrix
->no_scrolling_p
= 1;
14549 debug_method_add (w
, "try_window_reusing_current_matrix 2");
14559 /************************************************************************
14560 Window redisplay reusing current matrix when buffer has changed
14561 ************************************************************************/
14563 static struct glyph_row
*find_last_unchanged_at_beg_row
P_ ((struct window
*));
14564 static struct glyph_row
*find_first_unchanged_at_end_row
P_ ((struct window
*,
14566 static struct glyph_row
*
14567 find_last_row_displaying_text
P_ ((struct glyph_matrix
*, struct it
*,
14568 struct glyph_row
*));
14571 /* Return the last row in MATRIX displaying text. If row START is
14572 non-null, start searching with that row. IT gives the dimensions
14573 of the display. Value is null if matrix is empty; otherwise it is
14574 a pointer to the row found. */
14576 static struct glyph_row
*
14577 find_last_row_displaying_text (matrix
, it
, start
)
14578 struct glyph_matrix
*matrix
;
14580 struct glyph_row
*start
;
14582 struct glyph_row
*row
, *row_found
;
14584 /* Set row_found to the last row in IT->w's current matrix
14585 displaying text. The loop looks funny but think of partially
14588 row
= start
? start
: MATRIX_FIRST_TEXT_ROW (matrix
);
14589 while (MATRIX_ROW_DISPLAYS_TEXT_P (row
))
14591 xassert (row
->enabled_p
);
14593 if (MATRIX_ROW_BOTTOM_Y (row
) >= it
->last_visible_y
)
14602 /* Return the last row in the current matrix of W that is not affected
14603 by changes at the start of current_buffer that occurred since W's
14604 current matrix was built. Value is null if no such row exists.
14606 BEG_UNCHANGED us the number of characters unchanged at the start of
14607 current_buffer. BEG + BEG_UNCHANGED is the buffer position of the
14608 first changed character in current_buffer. Characters at positions <
14609 BEG + BEG_UNCHANGED are at the same buffer positions as they were
14610 when the current matrix was built. */
14612 static struct glyph_row
*
14613 find_last_unchanged_at_beg_row (w
)
14616 int first_changed_pos
= BEG
+ BEG_UNCHANGED
;
14617 struct glyph_row
*row
;
14618 struct glyph_row
*row_found
= NULL
;
14619 int yb
= window_text_bottom_y (w
);
14621 /* Find the last row displaying unchanged text. */
14622 for (row
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
14623 MATRIX_ROW_DISPLAYS_TEXT_P (row
)
14624 && MATRIX_ROW_START_CHARPOS (row
) < first_changed_pos
;
14627 if (/* If row ends before first_changed_pos, it is unchanged,
14628 except in some case. */
14629 MATRIX_ROW_END_CHARPOS (row
) <= first_changed_pos
14630 /* When row ends in ZV and we write at ZV it is not
14632 && !row
->ends_at_zv_p
14633 /* When first_changed_pos is the end of a continued line,
14634 row is not unchanged because it may be no longer
14636 && !(MATRIX_ROW_END_CHARPOS (row
) == first_changed_pos
14637 && (row
->continued_p
14638 || row
->exact_window_width_line_p
)))
14641 /* Stop if last visible row. */
14642 if (MATRIX_ROW_BOTTOM_Y (row
) >= yb
)
14650 /* Find the first glyph row in the current matrix of W that is not
14651 affected by changes at the end of current_buffer since the
14652 time W's current matrix was built.
14654 Return in *DELTA the number of chars by which buffer positions in
14655 unchanged text at the end of current_buffer must be adjusted.
14657 Return in *DELTA_BYTES the corresponding number of bytes.
14659 Value is null if no such row exists, i.e. all rows are affected by
14662 static struct glyph_row
*
14663 find_first_unchanged_at_end_row (w
, delta
, delta_bytes
)
14665 int *delta
, *delta_bytes
;
14667 struct glyph_row
*row
;
14668 struct glyph_row
*row_found
= NULL
;
14670 *delta
= *delta_bytes
= 0;
14672 /* Display must not have been paused, otherwise the current matrix
14673 is not up to date. */
14674 eassert (!NILP (w
->window_end_valid
));
14676 /* A value of window_end_pos >= END_UNCHANGED means that the window
14677 end is in the range of changed text. If so, there is no
14678 unchanged row at the end of W's current matrix. */
14679 if (XFASTINT (w
->window_end_pos
) >= END_UNCHANGED
)
14682 /* Set row to the last row in W's current matrix displaying text. */
14683 row
= MATRIX_ROW (w
->current_matrix
, XFASTINT (w
->window_end_vpos
));
14685 /* If matrix is entirely empty, no unchanged row exists. */
14686 if (MATRIX_ROW_DISPLAYS_TEXT_P (row
))
14688 /* The value of row is the last glyph row in the matrix having a
14689 meaningful buffer position in it. The end position of row
14690 corresponds to window_end_pos. This allows us to translate
14691 buffer positions in the current matrix to current buffer
14692 positions for characters not in changed text. */
14693 int Z_old
= MATRIX_ROW_END_CHARPOS (row
) + XFASTINT (w
->window_end_pos
);
14694 int Z_BYTE_old
= MATRIX_ROW_END_BYTEPOS (row
) + w
->window_end_bytepos
;
14695 int last_unchanged_pos
, last_unchanged_pos_old
;
14696 struct glyph_row
*first_text_row
14697 = MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
14699 *delta
= Z
- Z_old
;
14700 *delta_bytes
= Z_BYTE
- Z_BYTE_old
;
14702 /* Set last_unchanged_pos to the buffer position of the last
14703 character in the buffer that has not been changed. Z is the
14704 index + 1 of the last character in current_buffer, i.e. by
14705 subtracting END_UNCHANGED we get the index of the last
14706 unchanged character, and we have to add BEG to get its buffer
14708 last_unchanged_pos
= Z
- END_UNCHANGED
+ BEG
;
14709 last_unchanged_pos_old
= last_unchanged_pos
- *delta
;
14711 /* Search backward from ROW for a row displaying a line that
14712 starts at a minimum position >= last_unchanged_pos_old. */
14713 for (; row
> first_text_row
; --row
)
14715 /* This used to abort, but it can happen.
14716 It is ok to just stop the search instead here. KFS. */
14717 if (!row
->enabled_p
|| !MATRIX_ROW_DISPLAYS_TEXT_P (row
))
14720 if (MATRIX_ROW_START_CHARPOS (row
) >= last_unchanged_pos_old
)
14725 eassert (!row_found
|| MATRIX_ROW_DISPLAYS_TEXT_P (row_found
));
14731 /* Make sure that glyph rows in the current matrix of window W
14732 reference the same glyph memory as corresponding rows in the
14733 frame's frame matrix. This function is called after scrolling W's
14734 current matrix on a terminal frame in try_window_id and
14735 try_window_reusing_current_matrix. */
14738 sync_frame_with_window_matrix_rows (w
)
14741 struct frame
*f
= XFRAME (w
->frame
);
14742 struct glyph_row
*window_row
, *window_row_end
, *frame_row
;
14744 /* Preconditions: W must be a leaf window and full-width. Its frame
14745 must have a frame matrix. */
14746 xassert (NILP (w
->hchild
) && NILP (w
->vchild
));
14747 xassert (WINDOW_FULL_WIDTH_P (w
));
14748 xassert (!FRAME_WINDOW_P (f
));
14750 /* If W is a full-width window, glyph pointers in W's current matrix
14751 have, by definition, to be the same as glyph pointers in the
14752 corresponding frame matrix. Note that frame matrices have no
14753 marginal areas (see build_frame_matrix). */
14754 window_row
= w
->current_matrix
->rows
;
14755 window_row_end
= window_row
+ w
->current_matrix
->nrows
;
14756 frame_row
= f
->current_matrix
->rows
+ WINDOW_TOP_EDGE_LINE (w
);
14757 while (window_row
< window_row_end
)
14759 struct glyph
*start
= window_row
->glyphs
[LEFT_MARGIN_AREA
];
14760 struct glyph
*end
= window_row
->glyphs
[LAST_AREA
];
14762 frame_row
->glyphs
[LEFT_MARGIN_AREA
] = start
;
14763 frame_row
->glyphs
[TEXT_AREA
] = start
;
14764 frame_row
->glyphs
[RIGHT_MARGIN_AREA
] = end
;
14765 frame_row
->glyphs
[LAST_AREA
] = end
;
14767 /* Disable frame rows whose corresponding window rows have
14768 been disabled in try_window_id. */
14769 if (!window_row
->enabled_p
)
14770 frame_row
->enabled_p
= 0;
14772 ++window_row
, ++frame_row
;
14777 /* Find the glyph row in window W containing CHARPOS. Consider all
14778 rows between START and END (not inclusive). END null means search
14779 all rows to the end of the display area of W. Value is the row
14780 containing CHARPOS or null. */
14783 row_containing_pos (w
, charpos
, start
, end
, dy
)
14786 struct glyph_row
*start
, *end
;
14789 struct glyph_row
*row
= start
;
14792 /* If we happen to start on a header-line, skip that. */
14793 if (row
->mode_line_p
)
14796 if ((end
&& row
>= end
) || !row
->enabled_p
)
14799 last_y
= window_text_bottom_y (w
) - dy
;
14803 /* Give up if we have gone too far. */
14804 if (end
&& row
>= end
)
14806 /* This formerly returned if they were equal.
14807 I think that both quantities are of a "last plus one" type;
14808 if so, when they are equal, the row is within the screen. -- rms. */
14809 if (MATRIX_ROW_BOTTOM_Y (row
) > last_y
)
14812 /* If it is in this row, return this row. */
14813 if (! (MATRIX_ROW_END_CHARPOS (row
) < charpos
14814 || (MATRIX_ROW_END_CHARPOS (row
) == charpos
14815 /* The end position of a row equals the start
14816 position of the next row. If CHARPOS is there, we
14817 would rather display it in the next line, except
14818 when this line ends in ZV. */
14819 && !row
->ends_at_zv_p
14820 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row
)))
14821 && charpos
>= MATRIX_ROW_START_CHARPOS (row
))
14828 /* Try to redisplay window W by reusing its existing display. W's
14829 current matrix must be up to date when this function is called,
14830 i.e. window_end_valid must not be nil.
14834 1 if display has been updated
14835 0 if otherwise unsuccessful
14836 -1 if redisplay with same window start is known not to succeed
14838 The following steps are performed:
14840 1. Find the last row in the current matrix of W that is not
14841 affected by changes at the start of current_buffer. If no such row
14844 2. Find the first row in W's current matrix that is not affected by
14845 changes at the end of current_buffer. Maybe there is no such row.
14847 3. Display lines beginning with the row + 1 found in step 1 to the
14848 row found in step 2 or, if step 2 didn't find a row, to the end of
14851 4. If cursor is not known to appear on the window, give up.
14853 5. If display stopped at the row found in step 2, scroll the
14854 display and current matrix as needed.
14856 6. Maybe display some lines at the end of W, if we must. This can
14857 happen under various circumstances, like a partially visible line
14858 becoming fully visible, or because newly displayed lines are displayed
14859 in smaller font sizes.
14861 7. Update W's window end information. */
14867 struct frame
*f
= XFRAME (w
->frame
);
14868 struct glyph_matrix
*current_matrix
= w
->current_matrix
;
14869 struct glyph_matrix
*desired_matrix
= w
->desired_matrix
;
14870 struct glyph_row
*last_unchanged_at_beg_row
;
14871 struct glyph_row
*first_unchanged_at_end_row
;
14872 struct glyph_row
*row
;
14873 struct glyph_row
*bottom_row
;
14876 int delta
= 0, delta_bytes
= 0, stop_pos
, dvpos
, dy
;
14877 struct text_pos start_pos
;
14879 int first_unchanged_at_end_vpos
= 0;
14880 struct glyph_row
*last_text_row
, *last_text_row_at_end
;
14881 struct text_pos start
;
14882 int first_changed_charpos
, last_changed_charpos
;
14885 if (inhibit_try_window_id
)
14889 /* This is handy for debugging. */
14891 #define GIVE_UP(X) \
14893 fprintf (stderr, "try_window_id give up %d\n", (X)); \
14897 #define GIVE_UP(X) return 0
14900 SET_TEXT_POS_FROM_MARKER (start
, w
->start
);
14902 /* Don't use this for mini-windows because these can show
14903 messages and mini-buffers, and we don't handle that here. */
14904 if (MINI_WINDOW_P (w
))
14907 /* This flag is used to prevent redisplay optimizations. */
14908 if (windows_or_buffers_changed
|| cursor_type_changed
)
14911 /* Verify that narrowing has not changed.
14912 Also verify that we were not told to prevent redisplay optimizations.
14913 It would be nice to further
14914 reduce the number of cases where this prevents try_window_id. */
14915 if (current_buffer
->clip_changed
14916 || current_buffer
->prevent_redisplay_optimizations_p
)
14919 /* Window must either use window-based redisplay or be full width. */
14920 if (!FRAME_WINDOW_P (f
)
14921 && (!FRAME_LINE_INS_DEL_OK (f
)
14922 || !WINDOW_FULL_WIDTH_P (w
)))
14925 /* Give up if point is not known NOT to appear in W. */
14926 if (PT
< CHARPOS (start
))
14929 /* Another way to prevent redisplay optimizations. */
14930 if (XFASTINT (w
->last_modified
) == 0)
14933 /* Verify that window is not hscrolled. */
14934 if (XFASTINT (w
->hscroll
) != 0)
14937 /* Verify that display wasn't paused. */
14938 if (NILP (w
->window_end_valid
))
14941 /* Can't use this if highlighting a region because a cursor movement
14942 will do more than just set the cursor. */
14943 if (!NILP (Vtransient_mark_mode
)
14944 && !NILP (current_buffer
->mark_active
))
14947 /* Likewise if highlighting trailing whitespace. */
14948 if (!NILP (Vshow_trailing_whitespace
))
14951 /* Likewise if showing a region. */
14952 if (!NILP (w
->region_showing
))
14955 /* Can use this if overlay arrow position and or string have changed. */
14956 if (overlay_arrows_changed_p ())
14959 /* When word-wrap is on, adding a space to the first word of a
14960 wrapped line can change the wrap position, altering the line
14961 above it. It might be worthwhile to handle this more
14962 intelligently, but for now just redisplay from scratch. */
14963 if (!NILP (XBUFFER (w
->buffer
)->word_wrap
))
14966 /* Make sure beg_unchanged and end_unchanged are up to date. Do it
14967 only if buffer has really changed. The reason is that the gap is
14968 initially at Z for freshly visited files. The code below would
14969 set end_unchanged to 0 in that case. */
14970 if (MODIFF
> SAVE_MODIFF
14971 /* This seems to happen sometimes after saving a buffer. */
14972 || BEG_UNCHANGED
+ END_UNCHANGED
> Z_BYTE
)
14974 if (GPT
- BEG
< BEG_UNCHANGED
)
14975 BEG_UNCHANGED
= GPT
- BEG
;
14976 if (Z
- GPT
< END_UNCHANGED
)
14977 END_UNCHANGED
= Z
- GPT
;
14980 /* The position of the first and last character that has been changed. */
14981 first_changed_charpos
= BEG
+ BEG_UNCHANGED
;
14982 last_changed_charpos
= Z
- END_UNCHANGED
;
14984 /* If window starts after a line end, and the last change is in
14985 front of that newline, then changes don't affect the display.
14986 This case happens with stealth-fontification. Note that although
14987 the display is unchanged, glyph positions in the matrix have to
14988 be adjusted, of course. */
14989 row
= MATRIX_ROW (w
->current_matrix
, XFASTINT (w
->window_end_vpos
));
14990 if (MATRIX_ROW_DISPLAYS_TEXT_P (row
)
14991 && ((last_changed_charpos
< CHARPOS (start
)
14992 && CHARPOS (start
) == BEGV
)
14993 || (last_changed_charpos
< CHARPOS (start
) - 1
14994 && FETCH_BYTE (BYTEPOS (start
) - 1) == '\n')))
14996 int Z_old
, delta
, Z_BYTE_old
, delta_bytes
;
14997 struct glyph_row
*r0
;
14999 /* Compute how many chars/bytes have been added to or removed
15000 from the buffer. */
15001 Z_old
= MATRIX_ROW_END_CHARPOS (row
) + XFASTINT (w
->window_end_pos
);
15002 Z_BYTE_old
= MATRIX_ROW_END_BYTEPOS (row
) + w
->window_end_bytepos
;
15004 delta_bytes
= Z_BYTE
- Z_BYTE_old
;
15006 /* Give up if PT is not in the window. Note that it already has
15007 been checked at the start of try_window_id that PT is not in
15008 front of the window start. */
15009 if (PT
>= MATRIX_ROW_END_CHARPOS (row
) + delta
)
15012 /* If window start is unchanged, we can reuse the whole matrix
15013 as is, after adjusting glyph positions. No need to compute
15014 the window end again, since its offset from Z hasn't changed. */
15015 r0
= MATRIX_FIRST_TEXT_ROW (current_matrix
);
15016 if (CHARPOS (start
) == MATRIX_ROW_START_CHARPOS (r0
) + delta
15017 && BYTEPOS (start
) == MATRIX_ROW_START_BYTEPOS (r0
) + delta_bytes
15018 /* PT must not be in a partially visible line. */
15019 && !(PT
>= MATRIX_ROW_START_CHARPOS (row
) + delta
15020 && MATRIX_ROW_BOTTOM_Y (row
) > window_text_bottom_y (w
)))
15022 /* Adjust positions in the glyph matrix. */
15023 if (delta
|| delta_bytes
)
15025 struct glyph_row
*r1
15026 = MATRIX_BOTTOM_TEXT_ROW (current_matrix
, w
);
15027 increment_matrix_positions (w
->current_matrix
,
15028 MATRIX_ROW_VPOS (r0
, current_matrix
),
15029 MATRIX_ROW_VPOS (r1
, current_matrix
),
15030 delta
, delta_bytes
);
15033 /* Set the cursor. */
15034 row
= row_containing_pos (w
, PT
, r0
, NULL
, 0);
15036 set_cursor_from_row (w
, row
, current_matrix
, 0, 0, 0, 0);
15043 /* Handle the case that changes are all below what is displayed in
15044 the window, and that PT is in the window. This shortcut cannot
15045 be taken if ZV is visible in the window, and text has been added
15046 there that is visible in the window. */
15047 if (first_changed_charpos
>= MATRIX_ROW_END_CHARPOS (row
)
15048 /* ZV is not visible in the window, or there are no
15049 changes at ZV, actually. */
15050 && (current_matrix
->zv
> MATRIX_ROW_END_CHARPOS (row
)
15051 || first_changed_charpos
== last_changed_charpos
))
15053 struct glyph_row
*r0
;
15055 /* Give up if PT is not in the window. Note that it already has
15056 been checked at the start of try_window_id that PT is not in
15057 front of the window start. */
15058 if (PT
>= MATRIX_ROW_END_CHARPOS (row
))
15061 /* If window start is unchanged, we can reuse the whole matrix
15062 as is, without changing glyph positions since no text has
15063 been added/removed in front of the window end. */
15064 r0
= MATRIX_FIRST_TEXT_ROW (current_matrix
);
15065 if (TEXT_POS_EQUAL_P (start
, r0
->start
.pos
)
15066 /* PT must not be in a partially visible line. */
15067 && !(PT
>= MATRIX_ROW_START_CHARPOS (row
)
15068 && MATRIX_ROW_BOTTOM_Y (row
) > window_text_bottom_y (w
)))
15070 /* We have to compute the window end anew since text
15071 can have been added/removed after it. */
15073 = make_number (Z
- MATRIX_ROW_END_CHARPOS (row
));
15074 w
->window_end_bytepos
15075 = Z_BYTE
- MATRIX_ROW_END_BYTEPOS (row
);
15077 /* Set the cursor. */
15078 row
= row_containing_pos (w
, PT
, r0
, NULL
, 0);
15080 set_cursor_from_row (w
, row
, current_matrix
, 0, 0, 0, 0);
15087 /* Give up if window start is in the changed area.
15089 The condition used to read
15091 (BEG_UNCHANGED + END_UNCHANGED != Z - BEG && ...)
15093 but why that was tested escapes me at the moment. */
15094 if (CHARPOS (start
) >= first_changed_charpos
15095 && CHARPOS (start
) <= last_changed_charpos
)
15098 /* Check that window start agrees with the start of the first glyph
15099 row in its current matrix. Check this after we know the window
15100 start is not in changed text, otherwise positions would not be
15102 row
= MATRIX_FIRST_TEXT_ROW (current_matrix
);
15103 if (!TEXT_POS_EQUAL_P (start
, row
->start
.pos
))
15106 /* Give up if the window ends in strings. Overlay strings
15107 at the end are difficult to handle, so don't try. */
15108 row
= MATRIX_ROW (current_matrix
, XFASTINT (w
->window_end_vpos
));
15109 if (MATRIX_ROW_START_CHARPOS (row
) == MATRIX_ROW_END_CHARPOS (row
))
15112 /* Compute the position at which we have to start displaying new
15113 lines. Some of the lines at the top of the window might be
15114 reusable because they are not displaying changed text. Find the
15115 last row in W's current matrix not affected by changes at the
15116 start of current_buffer. Value is null if changes start in the
15117 first line of window. */
15118 last_unchanged_at_beg_row
= find_last_unchanged_at_beg_row (w
);
15119 if (last_unchanged_at_beg_row
)
15121 /* Avoid starting to display in the moddle of a character, a TAB
15122 for instance. This is easier than to set up the iterator
15123 exactly, and it's not a frequent case, so the additional
15124 effort wouldn't really pay off. */
15125 while ((MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (last_unchanged_at_beg_row
)
15126 || last_unchanged_at_beg_row
->ends_in_newline_from_string_p
)
15127 && last_unchanged_at_beg_row
> w
->current_matrix
->rows
)
15128 --last_unchanged_at_beg_row
;
15130 if (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (last_unchanged_at_beg_row
))
15133 if (init_to_row_end (&it
, w
, last_unchanged_at_beg_row
) == 0)
15135 start_pos
= it
.current
.pos
;
15137 /* Start displaying new lines in the desired matrix at the same
15138 vpos we would use in the current matrix, i.e. below
15139 last_unchanged_at_beg_row. */
15140 it
.vpos
= 1 + MATRIX_ROW_VPOS (last_unchanged_at_beg_row
,
15142 it
.glyph_row
= MATRIX_ROW (desired_matrix
, it
.vpos
);
15143 it
.current_y
= MATRIX_ROW_BOTTOM_Y (last_unchanged_at_beg_row
);
15145 xassert (it
.hpos
== 0 && it
.current_x
== 0);
15149 /* There are no reusable lines at the start of the window.
15150 Start displaying in the first text line. */
15151 start_display (&it
, w
, start
);
15152 it
.vpos
= it
.first_vpos
;
15153 start_pos
= it
.current
.pos
;
15156 /* Find the first row that is not affected by changes at the end of
15157 the buffer. Value will be null if there is no unchanged row, in
15158 which case we must redisplay to the end of the window. delta
15159 will be set to the value by which buffer positions beginning with
15160 first_unchanged_at_end_row have to be adjusted due to text
15162 first_unchanged_at_end_row
15163 = find_first_unchanged_at_end_row (w
, &delta
, &delta_bytes
);
15164 IF_DEBUG (debug_delta
= delta
);
15165 IF_DEBUG (debug_delta_bytes
= delta_bytes
);
15167 /* Set stop_pos to the buffer position up to which we will have to
15168 display new lines. If first_unchanged_at_end_row != NULL, this
15169 is the buffer position of the start of the line displayed in that
15170 row. For first_unchanged_at_end_row == NULL, use 0 to indicate
15171 that we don't stop at a buffer position. */
15173 if (first_unchanged_at_end_row
)
15175 xassert (last_unchanged_at_beg_row
== NULL
15176 || first_unchanged_at_end_row
>= last_unchanged_at_beg_row
);
15178 /* If this is a continuation line, move forward to the next one
15179 that isn't. Changes in lines above affect this line.
15180 Caution: this may move first_unchanged_at_end_row to a row
15181 not displaying text. */
15182 while (MATRIX_ROW_CONTINUATION_LINE_P (first_unchanged_at_end_row
)
15183 && MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row
)
15184 && (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row
)
15185 < it
.last_visible_y
))
15186 ++first_unchanged_at_end_row
;
15188 if (!MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row
)
15189 || (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row
)
15190 >= it
.last_visible_y
))
15191 first_unchanged_at_end_row
= NULL
;
15194 stop_pos
= (MATRIX_ROW_START_CHARPOS (first_unchanged_at_end_row
)
15196 first_unchanged_at_end_vpos
15197 = MATRIX_ROW_VPOS (first_unchanged_at_end_row
, current_matrix
);
15198 xassert (stop_pos
>= Z
- END_UNCHANGED
);
15201 else if (last_unchanged_at_beg_row
== NULL
)
15207 /* Either there is no unchanged row at the end, or the one we have
15208 now displays text. This is a necessary condition for the window
15209 end pos calculation at the end of this function. */
15210 xassert (first_unchanged_at_end_row
== NULL
15211 || MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row
));
15213 debug_last_unchanged_at_beg_vpos
15214 = (last_unchanged_at_beg_row
15215 ? MATRIX_ROW_VPOS (last_unchanged_at_beg_row
, current_matrix
)
15217 debug_first_unchanged_at_end_vpos
= first_unchanged_at_end_vpos
;
15219 #endif /* GLYPH_DEBUG != 0 */
15222 /* Display new lines. Set last_text_row to the last new line
15223 displayed which has text on it, i.e. might end up as being the
15224 line where the window_end_vpos is. */
15225 w
->cursor
.vpos
= -1;
15226 last_text_row
= NULL
;
15227 overlay_arrow_seen
= 0;
15228 while (it
.current_y
< it
.last_visible_y
15229 && !fonts_changed_p
15230 && (first_unchanged_at_end_row
== NULL
15231 || IT_CHARPOS (it
) < stop_pos
))
15233 if (display_line (&it
))
15234 last_text_row
= it
.glyph_row
- 1;
15237 if (fonts_changed_p
)
15241 /* Compute differences in buffer positions, y-positions etc. for
15242 lines reused at the bottom of the window. Compute what we can
15244 if (first_unchanged_at_end_row
15245 /* No lines reused because we displayed everything up to the
15246 bottom of the window. */
15247 && it
.current_y
< it
.last_visible_y
)
15250 - MATRIX_ROW_VPOS (first_unchanged_at_end_row
,
15252 dy
= it
.current_y
- first_unchanged_at_end_row
->y
;
15253 run
.current_y
= first_unchanged_at_end_row
->y
;
15254 run
.desired_y
= run
.current_y
+ dy
;
15255 run
.height
= it
.last_visible_y
- max (run
.current_y
, run
.desired_y
);
15259 delta
= delta_bytes
= dvpos
= dy
15260 = run
.current_y
= run
.desired_y
= run
.height
= 0;
15261 first_unchanged_at_end_row
= NULL
;
15263 IF_DEBUG (debug_dvpos
= dvpos
; debug_dy
= dy
);
15266 /* Find the cursor if not already found. We have to decide whether
15267 PT will appear on this window (it sometimes doesn't, but this is
15268 not a very frequent case.) This decision has to be made before
15269 the current matrix is altered. A value of cursor.vpos < 0 means
15270 that PT is either in one of the lines beginning at
15271 first_unchanged_at_end_row or below the window. Don't care for
15272 lines that might be displayed later at the window end; as
15273 mentioned, this is not a frequent case. */
15274 if (w
->cursor
.vpos
< 0)
15276 /* Cursor in unchanged rows at the top? */
15277 if (PT
< CHARPOS (start_pos
)
15278 && last_unchanged_at_beg_row
)
15280 row
= row_containing_pos (w
, PT
,
15281 MATRIX_FIRST_TEXT_ROW (w
->current_matrix
),
15282 last_unchanged_at_beg_row
+ 1, 0);
15284 set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0, 0, 0);
15287 /* Start from first_unchanged_at_end_row looking for PT. */
15288 else if (first_unchanged_at_end_row
)
15290 row
= row_containing_pos (w
, PT
- delta
,
15291 first_unchanged_at_end_row
, NULL
, 0);
15293 set_cursor_from_row (w
, row
, w
->current_matrix
, delta
,
15294 delta_bytes
, dy
, dvpos
);
15297 /* Give up if cursor was not found. */
15298 if (w
->cursor
.vpos
< 0)
15300 clear_glyph_matrix (w
->desired_matrix
);
15305 /* Don't let the cursor end in the scroll margins. */
15307 int this_scroll_margin
, cursor_height
;
15309 this_scroll_margin
= max (0, scroll_margin
);
15310 this_scroll_margin
= min (this_scroll_margin
, WINDOW_TOTAL_LINES (w
) / 4);
15311 this_scroll_margin
*= FRAME_LINE_HEIGHT (it
.f
);
15312 cursor_height
= MATRIX_ROW (w
->desired_matrix
, w
->cursor
.vpos
)->height
;
15314 if ((w
->cursor
.y
< this_scroll_margin
15315 && CHARPOS (start
) > BEGV
)
15316 /* Old redisplay didn't take scroll margin into account at the bottom,
15317 but then global-hl-line-mode doesn't scroll. KFS 2004-06-14 */
15318 || (w
->cursor
.y
+ (make_cursor_line_fully_visible_p
15319 ? cursor_height
+ this_scroll_margin
15320 : 1)) > it
.last_visible_y
)
15322 w
->cursor
.vpos
= -1;
15323 clear_glyph_matrix (w
->desired_matrix
);
15328 /* Scroll the display. Do it before changing the current matrix so
15329 that xterm.c doesn't get confused about where the cursor glyph is
15331 if (dy
&& run
.height
)
15335 if (FRAME_WINDOW_P (f
))
15337 FRAME_RIF (f
)->update_window_begin_hook (w
);
15338 FRAME_RIF (f
)->clear_window_mouse_face (w
);
15339 FRAME_RIF (f
)->scroll_run_hook (w
, &run
);
15340 FRAME_RIF (f
)->update_window_end_hook (w
, 0, 0);
15344 /* Terminal frame. In this case, dvpos gives the number of
15345 lines to scroll by; dvpos < 0 means scroll up. */
15346 int first_unchanged_at_end_vpos
15347 = MATRIX_ROW_VPOS (first_unchanged_at_end_row
, w
->current_matrix
);
15348 int from
= WINDOW_TOP_EDGE_LINE (w
) + first_unchanged_at_end_vpos
;
15349 int end
= (WINDOW_TOP_EDGE_LINE (w
)
15350 + (WINDOW_WANTS_HEADER_LINE_P (w
) ? 1 : 0)
15351 + window_internal_height (w
));
15353 /* Perform the operation on the screen. */
15356 /* Scroll last_unchanged_at_beg_row to the end of the
15357 window down dvpos lines. */
15358 set_terminal_window (f
, end
);
15360 /* On dumb terminals delete dvpos lines at the end
15361 before inserting dvpos empty lines. */
15362 if (!FRAME_SCROLL_REGION_OK (f
))
15363 ins_del_lines (f
, end
- dvpos
, -dvpos
);
15365 /* Insert dvpos empty lines in front of
15366 last_unchanged_at_beg_row. */
15367 ins_del_lines (f
, from
, dvpos
);
15369 else if (dvpos
< 0)
15371 /* Scroll up last_unchanged_at_beg_vpos to the end of
15372 the window to last_unchanged_at_beg_vpos - |dvpos|. */
15373 set_terminal_window (f
, end
);
15375 /* Delete dvpos lines in front of
15376 last_unchanged_at_beg_vpos. ins_del_lines will set
15377 the cursor to the given vpos and emit |dvpos| delete
15379 ins_del_lines (f
, from
+ dvpos
, dvpos
);
15381 /* On a dumb terminal insert dvpos empty lines at the
15383 if (!FRAME_SCROLL_REGION_OK (f
))
15384 ins_del_lines (f
, end
+ dvpos
, -dvpos
);
15387 set_terminal_window (f
, 0);
15393 /* Shift reused rows of the current matrix to the right position.
15394 BOTTOM_ROW is the last + 1 row in the current matrix reserved for
15396 bottom_row
= MATRIX_BOTTOM_TEXT_ROW (current_matrix
, w
);
15397 bottom_vpos
= MATRIX_ROW_VPOS (bottom_row
, current_matrix
);
15400 rotate_matrix (current_matrix
, first_unchanged_at_end_vpos
+ dvpos
,
15401 bottom_vpos
, dvpos
);
15402 enable_glyph_matrix_rows (current_matrix
, bottom_vpos
+ dvpos
,
15405 else if (dvpos
> 0)
15407 rotate_matrix (current_matrix
, first_unchanged_at_end_vpos
,
15408 bottom_vpos
, dvpos
);
15409 enable_glyph_matrix_rows (current_matrix
, first_unchanged_at_end_vpos
,
15410 first_unchanged_at_end_vpos
+ dvpos
, 0);
15413 /* For frame-based redisplay, make sure that current frame and window
15414 matrix are in sync with respect to glyph memory. */
15415 if (!FRAME_WINDOW_P (f
))
15416 sync_frame_with_window_matrix_rows (w
);
15418 /* Adjust buffer positions in reused rows. */
15419 if (delta
|| delta_bytes
)
15420 increment_matrix_positions (current_matrix
,
15421 first_unchanged_at_end_vpos
+ dvpos
,
15422 bottom_vpos
, delta
, delta_bytes
);
15424 /* Adjust Y positions. */
15426 shift_glyph_matrix (w
, current_matrix
,
15427 first_unchanged_at_end_vpos
+ dvpos
,
15430 if (first_unchanged_at_end_row
)
15432 first_unchanged_at_end_row
+= dvpos
;
15433 if (first_unchanged_at_end_row
->y
>= it
.last_visible_y
15434 || !MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row
))
15435 first_unchanged_at_end_row
= NULL
;
15438 /* If scrolling up, there may be some lines to display at the end of
15440 last_text_row_at_end
= NULL
;
15443 /* Scrolling up can leave for example a partially visible line
15444 at the end of the window to be redisplayed. */
15445 /* Set last_row to the glyph row in the current matrix where the
15446 window end line is found. It has been moved up or down in
15447 the matrix by dvpos. */
15448 int last_vpos
= XFASTINT (w
->window_end_vpos
) + dvpos
;
15449 struct glyph_row
*last_row
= MATRIX_ROW (current_matrix
, last_vpos
);
15451 /* If last_row is the window end line, it should display text. */
15452 xassert (last_row
->displays_text_p
);
15454 /* If window end line was partially visible before, begin
15455 displaying at that line. Otherwise begin displaying with the
15456 line following it. */
15457 if (MATRIX_ROW_BOTTOM_Y (last_row
) - dy
>= it
.last_visible_y
)
15459 init_to_row_start (&it
, w
, last_row
);
15460 it
.vpos
= last_vpos
;
15461 it
.current_y
= last_row
->y
;
15465 init_to_row_end (&it
, w
, last_row
);
15466 it
.vpos
= 1 + last_vpos
;
15467 it
.current_y
= MATRIX_ROW_BOTTOM_Y (last_row
);
15471 /* We may start in a continuation line. If so, we have to
15472 get the right continuation_lines_width and current_x. */
15473 it
.continuation_lines_width
= last_row
->continuation_lines_width
;
15474 it
.hpos
= it
.current_x
= 0;
15476 /* Display the rest of the lines at the window end. */
15477 it
.glyph_row
= MATRIX_ROW (desired_matrix
, it
.vpos
);
15478 while (it
.current_y
< it
.last_visible_y
15479 && !fonts_changed_p
)
15481 /* Is it always sure that the display agrees with lines in
15482 the current matrix? I don't think so, so we mark rows
15483 displayed invalid in the current matrix by setting their
15484 enabled_p flag to zero. */
15485 MATRIX_ROW (w
->current_matrix
, it
.vpos
)->enabled_p
= 0;
15486 if (display_line (&it
))
15487 last_text_row_at_end
= it
.glyph_row
- 1;
15491 /* Update window_end_pos and window_end_vpos. */
15492 if (first_unchanged_at_end_row
15493 && !last_text_row_at_end
)
15495 /* Window end line if one of the preserved rows from the current
15496 matrix. Set row to the last row displaying text in current
15497 matrix starting at first_unchanged_at_end_row, after
15499 xassert (first_unchanged_at_end_row
->displays_text_p
);
15500 row
= find_last_row_displaying_text (w
->current_matrix
, &it
,
15501 first_unchanged_at_end_row
);
15502 xassert (row
&& MATRIX_ROW_DISPLAYS_TEXT_P (row
));
15504 w
->window_end_pos
= make_number (Z
- MATRIX_ROW_END_CHARPOS (row
));
15505 w
->window_end_bytepos
= Z_BYTE
- MATRIX_ROW_END_BYTEPOS (row
);
15507 = make_number (MATRIX_ROW_VPOS (row
, w
->current_matrix
));
15508 xassert (w
->window_end_bytepos
>= 0);
15509 IF_DEBUG (debug_method_add (w
, "A"));
15511 else if (last_text_row_at_end
)
15514 = make_number (Z
- MATRIX_ROW_END_CHARPOS (last_text_row_at_end
));
15515 w
->window_end_bytepos
15516 = Z_BYTE
- MATRIX_ROW_END_BYTEPOS (last_text_row_at_end
);
15518 = make_number (MATRIX_ROW_VPOS (last_text_row_at_end
, desired_matrix
));
15519 xassert (w
->window_end_bytepos
>= 0);
15520 IF_DEBUG (debug_method_add (w
, "B"));
15522 else if (last_text_row
)
15524 /* We have displayed either to the end of the window or at the
15525 end of the window, i.e. the last row with text is to be found
15526 in the desired matrix. */
15528 = make_number (Z
- MATRIX_ROW_END_CHARPOS (last_text_row
));
15529 w
->window_end_bytepos
15530 = Z_BYTE
- MATRIX_ROW_END_BYTEPOS (last_text_row
);
15532 = make_number (MATRIX_ROW_VPOS (last_text_row
, desired_matrix
));
15533 xassert (w
->window_end_bytepos
>= 0);
15535 else if (first_unchanged_at_end_row
== NULL
15536 && last_text_row
== NULL
15537 && last_text_row_at_end
== NULL
)
15539 /* Displayed to end of window, but no line containing text was
15540 displayed. Lines were deleted at the end of the window. */
15541 int first_vpos
= WINDOW_WANTS_HEADER_LINE_P (w
) ? 1 : 0;
15542 int vpos
= XFASTINT (w
->window_end_vpos
);
15543 struct glyph_row
*current_row
= current_matrix
->rows
+ vpos
;
15544 struct glyph_row
*desired_row
= desired_matrix
->rows
+ vpos
;
15547 row
== NULL
&& vpos
>= first_vpos
;
15548 --vpos
, --current_row
, --desired_row
)
15550 if (desired_row
->enabled_p
)
15552 if (desired_row
->displays_text_p
)
15555 else if (current_row
->displays_text_p
)
15559 xassert (row
!= NULL
);
15560 w
->window_end_vpos
= make_number (vpos
+ 1);
15561 w
->window_end_pos
= make_number (Z
- MATRIX_ROW_END_CHARPOS (row
));
15562 w
->window_end_bytepos
= Z_BYTE
- MATRIX_ROW_END_BYTEPOS (row
);
15563 xassert (w
->window_end_bytepos
>= 0);
15564 IF_DEBUG (debug_method_add (w
, "C"));
15569 #if 0 /* This leads to problems, for instance when the cursor is
15570 at ZV, and the cursor line displays no text. */
15571 /* Disable rows below what's displayed in the window. This makes
15572 debugging easier. */
15573 enable_glyph_matrix_rows (current_matrix
,
15574 XFASTINT (w
->window_end_vpos
) + 1,
15578 IF_DEBUG (debug_end_pos
= XFASTINT (w
->window_end_pos
);
15579 debug_end_vpos
= XFASTINT (w
->window_end_vpos
));
15581 /* Record that display has not been completed. */
15582 w
->window_end_valid
= Qnil
;
15583 w
->desired_matrix
->no_scrolling_p
= 1;
15591 /***********************************************************************
15592 More debugging support
15593 ***********************************************************************/
15597 void dump_glyph_row
P_ ((struct glyph_row
*, int, int));
15598 void dump_glyph_matrix
P_ ((struct glyph_matrix
*, int));
15599 void dump_glyph
P_ ((struct glyph_row
*, struct glyph
*, int));
15602 /* Dump the contents of glyph matrix MATRIX on stderr.
15604 GLYPHS 0 means don't show glyph contents.
15605 GLYPHS 1 means show glyphs in short form
15606 GLYPHS > 1 means show glyphs in long form. */
15609 dump_glyph_matrix (matrix
, glyphs
)
15610 struct glyph_matrix
*matrix
;
15614 for (i
= 0; i
< matrix
->nrows
; ++i
)
15615 dump_glyph_row (MATRIX_ROW (matrix
, i
), i
, glyphs
);
15619 /* Dump contents of glyph GLYPH to stderr. ROW and AREA are
15620 the glyph row and area where the glyph comes from. */
15623 dump_glyph (row
, glyph
, area
)
15624 struct glyph_row
*row
;
15625 struct glyph
*glyph
;
15628 if (glyph
->type
== CHAR_GLYPH
)
15631 " %5d %4c %6d %c %3d 0x%05x %c %4d %1.1d%1.1d\n",
15632 glyph
- row
->glyphs
[TEXT_AREA
],
15635 (BUFFERP (glyph
->object
)
15637 : (STRINGP (glyph
->object
)
15640 glyph
->pixel_width
,
15642 (glyph
->u
.ch
< 0x80 && glyph
->u
.ch
>= ' '
15646 glyph
->left_box_line_p
,
15647 glyph
->right_box_line_p
);
15649 else if (glyph
->type
== STRETCH_GLYPH
)
15652 " %5d %4c %6d %c %3d 0x%05x %c %4d %1.1d%1.1d\n",
15653 glyph
- row
->glyphs
[TEXT_AREA
],
15656 (BUFFERP (glyph
->object
)
15658 : (STRINGP (glyph
->object
)
15661 glyph
->pixel_width
,
15665 glyph
->left_box_line_p
,
15666 glyph
->right_box_line_p
);
15668 else if (glyph
->type
== IMAGE_GLYPH
)
15671 " %5d %4c %6d %c %3d 0x%05x %c %4d %1.1d%1.1d\n",
15672 glyph
- row
->glyphs
[TEXT_AREA
],
15675 (BUFFERP (glyph
->object
)
15677 : (STRINGP (glyph
->object
)
15680 glyph
->pixel_width
,
15684 glyph
->left_box_line_p
,
15685 glyph
->right_box_line_p
);
15687 else if (glyph
->type
== COMPOSITE_GLYPH
)
15690 " %5d %4c %6d %c %3d 0x%05x",
15691 glyph
- row
->glyphs
[TEXT_AREA
],
15694 (BUFFERP (glyph
->object
)
15696 : (STRINGP (glyph
->object
)
15699 glyph
->pixel_width
,
15701 if (glyph
->u
.cmp
.automatic
)
15704 glyph
->u
.cmp
.from
, glyph
->u
.cmp
.to
);
15705 fprintf (stderr
, " . %4d %1.1d%1.1d\n",
15707 glyph
->left_box_line_p
,
15708 glyph
->right_box_line_p
);
15713 /* Dump the contents of glyph row at VPOS in MATRIX to stderr.
15714 GLYPHS 0 means don't show glyph contents.
15715 GLYPHS 1 means show glyphs in short form
15716 GLYPHS > 1 means show glyphs in long form. */
15719 dump_glyph_row (row
, vpos
, glyphs
)
15720 struct glyph_row
*row
;
15725 fprintf (stderr
, "Row Start End Used oE><\\CTZFesm X Y W H V A P\n");
15726 fprintf (stderr
, "======================================================================\n");
15728 fprintf (stderr
, "%3d %5d %5d %4d %1.1d%1.1d%1.1d%1.1d\
15729 %1.1d%1.1d%1.1d%1.1d%1.1d%1.1d%1.1d%1.1d %4d %4d %4d %4d %4d %4d %4d\n",
15731 MATRIX_ROW_START_CHARPOS (row
),
15732 MATRIX_ROW_END_CHARPOS (row
),
15733 row
->used
[TEXT_AREA
],
15734 row
->contains_overlapping_glyphs_p
,
15736 row
->truncated_on_left_p
,
15737 row
->truncated_on_right_p
,
15739 MATRIX_ROW_CONTINUATION_LINE_P (row
),
15740 row
->displays_text_p
,
15743 row
->ends_in_middle_of_char_p
,
15744 row
->starts_in_middle_of_char_p
,
15750 row
->visible_height
,
15753 fprintf (stderr
, "%9d %5d\t%5d\n", row
->start
.overlay_string_index
,
15754 row
->end
.overlay_string_index
,
15755 row
->continuation_lines_width
);
15756 fprintf (stderr
, "%9d %5d\n",
15757 CHARPOS (row
->start
.string_pos
),
15758 CHARPOS (row
->end
.string_pos
));
15759 fprintf (stderr
, "%9d %5d\n", row
->start
.dpvec_index
,
15760 row
->end
.dpvec_index
);
15767 for (area
= LEFT_MARGIN_AREA
; area
< LAST_AREA
; ++area
)
15769 struct glyph
*glyph
= row
->glyphs
[area
];
15770 struct glyph
*glyph_end
= glyph
+ row
->used
[area
];
15772 /* Glyph for a line end in text. */
15773 if (area
== TEXT_AREA
&& glyph
== glyph_end
&& glyph
->charpos
> 0)
15776 if (glyph
< glyph_end
)
15777 fprintf (stderr
, " Glyph Type Pos O W Code C Face LR\n");
15779 for (; glyph
< glyph_end
; ++glyph
)
15780 dump_glyph (row
, glyph
, area
);
15783 else if (glyphs
== 1)
15787 for (area
= LEFT_MARGIN_AREA
; area
< LAST_AREA
; ++area
)
15789 char *s
= (char *) alloca (row
->used
[area
] + 1);
15792 for (i
= 0; i
< row
->used
[area
]; ++i
)
15794 struct glyph
*glyph
= row
->glyphs
[area
] + i
;
15795 if (glyph
->type
== CHAR_GLYPH
15796 && glyph
->u
.ch
< 0x80
15797 && glyph
->u
.ch
>= ' ')
15798 s
[i
] = glyph
->u
.ch
;
15804 fprintf (stderr
, "%3d: (%d) '%s'\n", vpos
, row
->enabled_p
, s
);
15810 DEFUN ("dump-glyph-matrix", Fdump_glyph_matrix
,
15811 Sdump_glyph_matrix
, 0, 1, "p",
15812 doc
: /* Dump the current matrix of the selected window to stderr.
15813 Shows contents of glyph row structures. With non-nil
15814 parameter GLYPHS, dump glyphs as well. If GLYPHS is 1 show
15815 glyphs in short form, otherwise show glyphs in long form. */)
15817 Lisp_Object glyphs
;
15819 struct window
*w
= XWINDOW (selected_window
);
15820 struct buffer
*buffer
= XBUFFER (w
->buffer
);
15822 fprintf (stderr
, "PT = %d, BEGV = %d. ZV = %d\n",
15823 BUF_PT (buffer
), BUF_BEGV (buffer
), BUF_ZV (buffer
));
15824 fprintf (stderr
, "Cursor x = %d, y = %d, hpos = %d, vpos = %d\n",
15825 w
->cursor
.x
, w
->cursor
.y
, w
->cursor
.hpos
, w
->cursor
.vpos
);
15826 fprintf (stderr
, "=============================================\n");
15827 dump_glyph_matrix (w
->current_matrix
,
15828 NILP (glyphs
) ? 0 : XINT (glyphs
));
15833 DEFUN ("dump-frame-glyph-matrix", Fdump_frame_glyph_matrix
,
15834 Sdump_frame_glyph_matrix
, 0, 0, "", doc
: /* */)
15837 struct frame
*f
= XFRAME (selected_frame
);
15838 dump_glyph_matrix (f
->current_matrix
, 1);
15843 DEFUN ("dump-glyph-row", Fdump_glyph_row
, Sdump_glyph_row
, 1, 2, "",
15844 doc
: /* Dump glyph row ROW to stderr.
15845 GLYPH 0 means don't dump glyphs.
15846 GLYPH 1 means dump glyphs in short form.
15847 GLYPH > 1 or omitted means dump glyphs in long form. */)
15849 Lisp_Object row
, glyphs
;
15851 struct glyph_matrix
*matrix
;
15854 CHECK_NUMBER (row
);
15855 matrix
= XWINDOW (selected_window
)->current_matrix
;
15857 if (vpos
>= 0 && vpos
< matrix
->nrows
)
15858 dump_glyph_row (MATRIX_ROW (matrix
, vpos
),
15860 INTEGERP (glyphs
) ? XINT (glyphs
) : 2);
15865 DEFUN ("dump-tool-bar-row", Fdump_tool_bar_row
, Sdump_tool_bar_row
, 1, 2, "",
15866 doc
: /* Dump glyph row ROW of the tool-bar of the current frame to stderr.
15867 GLYPH 0 means don't dump glyphs.
15868 GLYPH 1 means dump glyphs in short form.
15869 GLYPH > 1 or omitted means dump glyphs in long form. */)
15871 Lisp_Object row
, glyphs
;
15873 struct frame
*sf
= SELECTED_FRAME ();
15874 struct glyph_matrix
*m
= XWINDOW (sf
->tool_bar_window
)->current_matrix
;
15877 CHECK_NUMBER (row
);
15879 if (vpos
>= 0 && vpos
< m
->nrows
)
15880 dump_glyph_row (MATRIX_ROW (m
, vpos
), vpos
,
15881 INTEGERP (glyphs
) ? XINT (glyphs
) : 2);
15886 DEFUN ("trace-redisplay", Ftrace_redisplay
, Strace_redisplay
, 0, 1, "P",
15887 doc
: /* Toggle tracing of redisplay.
15888 With ARG, turn tracing on if and only if ARG is positive. */)
15893 trace_redisplay_p
= !trace_redisplay_p
;
15896 arg
= Fprefix_numeric_value (arg
);
15897 trace_redisplay_p
= XINT (arg
) > 0;
15904 DEFUN ("trace-to-stderr", Ftrace_to_stderr
, Strace_to_stderr
, 1, MANY
, "",
15905 doc
: /* Like `format', but print result to stderr.
15906 usage: (trace-to-stderr STRING &rest OBJECTS) */)
15911 Lisp_Object s
= Fformat (nargs
, args
);
15912 fprintf (stderr
, "%s", SDATA (s
));
15916 #endif /* GLYPH_DEBUG */
15920 /***********************************************************************
15921 Building Desired Matrix Rows
15922 ***********************************************************************/
15924 /* Return a temporary glyph row holding the glyphs of an overlay arrow.
15925 Used for non-window-redisplay windows, and for windows w/o left fringe. */
15927 static struct glyph_row
*
15928 get_overlay_arrow_glyph_row (w
, overlay_arrow_string
)
15930 Lisp_Object overlay_arrow_string
;
15932 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
15933 struct buffer
*buffer
= XBUFFER (w
->buffer
);
15934 struct buffer
*old
= current_buffer
;
15935 const unsigned char *arrow_string
= SDATA (overlay_arrow_string
);
15936 int arrow_len
= SCHARS (overlay_arrow_string
);
15937 const unsigned char *arrow_end
= arrow_string
+ arrow_len
;
15938 const unsigned char *p
;
15941 int n_glyphs_before
;
15943 set_buffer_temp (buffer
);
15944 init_iterator (&it
, w
, -1, -1, &scratch_glyph_row
, DEFAULT_FACE_ID
);
15945 it
.glyph_row
->used
[TEXT_AREA
] = 0;
15946 SET_TEXT_POS (it
.position
, 0, 0);
15948 multibyte_p
= !NILP (buffer
->enable_multibyte_characters
);
15950 while (p
< arrow_end
)
15952 Lisp_Object face
, ilisp
;
15954 /* Get the next character. */
15956 it
.c
= string_char_and_length (p
, arrow_len
, &it
.len
);
15958 it
.c
= *p
, it
.len
= 1;
15961 /* Get its face. */
15962 ilisp
= make_number (p
- arrow_string
);
15963 face
= Fget_text_property (ilisp
, Qface
, overlay_arrow_string
);
15964 it
.face_id
= compute_char_face (f
, it
.c
, face
);
15966 /* Compute its width, get its glyphs. */
15967 n_glyphs_before
= it
.glyph_row
->used
[TEXT_AREA
];
15968 SET_TEXT_POS (it
.position
, -1, -1);
15969 PRODUCE_GLYPHS (&it
);
15971 /* If this character doesn't fit any more in the line, we have
15972 to remove some glyphs. */
15973 if (it
.current_x
> it
.last_visible_x
)
15975 it
.glyph_row
->used
[TEXT_AREA
] = n_glyphs_before
;
15980 set_buffer_temp (old
);
15981 return it
.glyph_row
;
15985 /* Insert truncation glyphs at the start of IT->glyph_row. Truncation
15986 glyphs are only inserted for terminal frames since we can't really
15987 win with truncation glyphs when partially visible glyphs are
15988 involved. Which glyphs to insert is determined by
15989 produce_special_glyphs. */
15992 insert_left_trunc_glyphs (it
)
15995 struct it truncate_it
;
15996 struct glyph
*from
, *end
, *to
, *toend
;
15998 xassert (!FRAME_WINDOW_P (it
->f
));
16000 /* Get the truncation glyphs. */
16002 truncate_it
.current_x
= 0;
16003 truncate_it
.face_id
= DEFAULT_FACE_ID
;
16004 truncate_it
.glyph_row
= &scratch_glyph_row
;
16005 truncate_it
.glyph_row
->used
[TEXT_AREA
] = 0;
16006 CHARPOS (truncate_it
.position
) = BYTEPOS (truncate_it
.position
) = -1;
16007 truncate_it
.object
= make_number (0);
16008 produce_special_glyphs (&truncate_it
, IT_TRUNCATION
);
16010 /* Overwrite glyphs from IT with truncation glyphs. */
16011 from
= truncate_it
.glyph_row
->glyphs
[TEXT_AREA
];
16012 end
= from
+ truncate_it
.glyph_row
->used
[TEXT_AREA
];
16013 to
= it
->glyph_row
->glyphs
[TEXT_AREA
];
16014 toend
= to
+ it
->glyph_row
->used
[TEXT_AREA
];
16019 /* There may be padding glyphs left over. Overwrite them too. */
16020 while (to
< toend
&& CHAR_GLYPH_PADDING_P (*to
))
16022 from
= truncate_it
.glyph_row
->glyphs
[TEXT_AREA
];
16028 it
->glyph_row
->used
[TEXT_AREA
] = to
- it
->glyph_row
->glyphs
[TEXT_AREA
];
16032 /* Compute the pixel height and width of IT->glyph_row.
16034 Most of the time, ascent and height of a display line will be equal
16035 to the max_ascent and max_height values of the display iterator
16036 structure. This is not the case if
16038 1. We hit ZV without displaying anything. In this case, max_ascent
16039 and max_height will be zero.
16041 2. We have some glyphs that don't contribute to the line height.
16042 (The glyph row flag contributes_to_line_height_p is for future
16043 pixmap extensions).
16045 The first case is easily covered by using default values because in
16046 these cases, the line height does not really matter, except that it
16047 must not be zero. */
16050 compute_line_metrics (it
)
16053 struct glyph_row
*row
= it
->glyph_row
;
16056 if (FRAME_WINDOW_P (it
->f
))
16058 int i
, min_y
, max_y
;
16060 /* The line may consist of one space only, that was added to
16061 place the cursor on it. If so, the row's height hasn't been
16063 if (row
->height
== 0)
16065 if (it
->max_ascent
+ it
->max_descent
== 0)
16066 it
->max_descent
= it
->max_phys_descent
= FRAME_LINE_HEIGHT (it
->f
);
16067 row
->ascent
= it
->max_ascent
;
16068 row
->height
= it
->max_ascent
+ it
->max_descent
;
16069 row
->phys_ascent
= it
->max_phys_ascent
;
16070 row
->phys_height
= it
->max_phys_ascent
+ it
->max_phys_descent
;
16071 row
->extra_line_spacing
= it
->max_extra_line_spacing
;
16074 /* Compute the width of this line. */
16075 row
->pixel_width
= row
->x
;
16076 for (i
= 0; i
< row
->used
[TEXT_AREA
]; ++i
)
16077 row
->pixel_width
+= row
->glyphs
[TEXT_AREA
][i
].pixel_width
;
16079 xassert (row
->pixel_width
>= 0);
16080 xassert (row
->ascent
>= 0 && row
->height
> 0);
16082 row
->overlapping_p
= (MATRIX_ROW_OVERLAPS_SUCC_P (row
)
16083 || MATRIX_ROW_OVERLAPS_PRED_P (row
));
16085 /* If first line's physical ascent is larger than its logical
16086 ascent, use the physical ascent, and make the row taller.
16087 This makes accented characters fully visible. */
16088 if (row
== MATRIX_FIRST_TEXT_ROW (it
->w
->desired_matrix
)
16089 && row
->phys_ascent
> row
->ascent
)
16091 row
->height
+= row
->phys_ascent
- row
->ascent
;
16092 row
->ascent
= row
->phys_ascent
;
16095 /* Compute how much of the line is visible. */
16096 row
->visible_height
= row
->height
;
16098 min_y
= WINDOW_HEADER_LINE_HEIGHT (it
->w
);
16099 max_y
= WINDOW_BOX_HEIGHT_NO_MODE_LINE (it
->w
);
16101 if (row
->y
< min_y
)
16102 row
->visible_height
-= min_y
- row
->y
;
16103 if (row
->y
+ row
->height
> max_y
)
16104 row
->visible_height
-= row
->y
+ row
->height
- max_y
;
16108 row
->pixel_width
= row
->used
[TEXT_AREA
];
16109 if (row
->continued_p
)
16110 row
->pixel_width
-= it
->continuation_pixel_width
;
16111 else if (row
->truncated_on_right_p
)
16112 row
->pixel_width
-= it
->truncation_pixel_width
;
16113 row
->ascent
= row
->phys_ascent
= 0;
16114 row
->height
= row
->phys_height
= row
->visible_height
= 1;
16115 row
->extra_line_spacing
= 0;
16118 /* Compute a hash code for this row. */
16120 for (area
= LEFT_MARGIN_AREA
; area
< LAST_AREA
; ++area
)
16121 for (i
= 0; i
< row
->used
[area
]; ++i
)
16122 row
->hash
= ((((row
->hash
<< 4) + (row
->hash
>> 24)) & 0x0fffffff)
16123 + row
->glyphs
[area
][i
].u
.val
16124 + row
->glyphs
[area
][i
].face_id
16125 + row
->glyphs
[area
][i
].padding_p
16126 + (row
->glyphs
[area
][i
].type
<< 2));
16128 it
->max_ascent
= it
->max_descent
= 0;
16129 it
->max_phys_ascent
= it
->max_phys_descent
= 0;
16133 /* Append one space to the glyph row of iterator IT if doing a
16134 window-based redisplay. The space has the same face as
16135 IT->face_id. Value is non-zero if a space was added.
16137 This function is called to make sure that there is always one glyph
16138 at the end of a glyph row that the cursor can be set on under
16139 window-systems. (If there weren't such a glyph we would not know
16140 how wide and tall a box cursor should be displayed).
16142 At the same time this space let's a nicely handle clearing to the
16143 end of the line if the row ends in italic text. */
16146 append_space_for_newline (it
, default_face_p
)
16148 int default_face_p
;
16150 if (FRAME_WINDOW_P (it
->f
))
16152 int n
= it
->glyph_row
->used
[TEXT_AREA
];
16154 if (it
->glyph_row
->glyphs
[TEXT_AREA
] + n
16155 < it
->glyph_row
->glyphs
[1 + TEXT_AREA
])
16157 /* Save some values that must not be changed.
16158 Must save IT->c and IT->len because otherwise
16159 ITERATOR_AT_END_P wouldn't work anymore after
16160 append_space_for_newline has been called. */
16161 enum display_element_type saved_what
= it
->what
;
16162 int saved_c
= it
->c
, saved_len
= it
->len
;
16163 int saved_x
= it
->current_x
;
16164 int saved_face_id
= it
->face_id
;
16165 struct text_pos saved_pos
;
16166 Lisp_Object saved_object
;
16169 saved_object
= it
->object
;
16170 saved_pos
= it
->position
;
16172 it
->what
= IT_CHARACTER
;
16173 bzero (&it
->position
, sizeof it
->position
);
16174 it
->object
= make_number (0);
16178 if (default_face_p
)
16179 it
->face_id
= DEFAULT_FACE_ID
;
16180 else if (it
->face_before_selective_p
)
16181 it
->face_id
= it
->saved_face_id
;
16182 face
= FACE_FROM_ID (it
->f
, it
->face_id
);
16183 it
->face_id
= FACE_FOR_CHAR (it
->f
, face
, 0, -1, Qnil
);
16185 PRODUCE_GLYPHS (it
);
16187 it
->override_ascent
= -1;
16188 it
->constrain_row_ascent_descent_p
= 0;
16189 it
->current_x
= saved_x
;
16190 it
->object
= saved_object
;
16191 it
->position
= saved_pos
;
16192 it
->what
= saved_what
;
16193 it
->face_id
= saved_face_id
;
16194 it
->len
= saved_len
;
16204 /* Extend the face of the last glyph in the text area of IT->glyph_row
16205 to the end of the display line. Called from display_line.
16206 If the glyph row is empty, add a space glyph to it so that we
16207 know the face to draw. Set the glyph row flag fill_line_p. */
16210 extend_face_to_end_of_line (it
)
16214 struct frame
*f
= it
->f
;
16216 /* If line is already filled, do nothing. */
16217 if (it
->current_x
>= it
->last_visible_x
)
16220 /* Face extension extends the background and box of IT->face_id
16221 to the end of the line. If the background equals the background
16222 of the frame, we don't have to do anything. */
16223 if (it
->face_before_selective_p
)
16224 face
= FACE_FROM_ID (it
->f
, it
->saved_face_id
);
16226 face
= FACE_FROM_ID (f
, it
->face_id
);
16228 if (FRAME_WINDOW_P (f
)
16229 && it
->glyph_row
->displays_text_p
16230 && face
->box
== FACE_NO_BOX
16231 && face
->background
== FRAME_BACKGROUND_PIXEL (f
)
16235 /* Set the glyph row flag indicating that the face of the last glyph
16236 in the text area has to be drawn to the end of the text area. */
16237 it
->glyph_row
->fill_line_p
= 1;
16239 /* If current character of IT is not ASCII, make sure we have the
16240 ASCII face. This will be automatically undone the next time
16241 get_next_display_element returns a multibyte character. Note
16242 that the character will always be single byte in unibyte text. */
16243 if (!ASCII_CHAR_P (it
->c
))
16245 it
->face_id
= FACE_FOR_CHAR (f
, face
, 0, -1, Qnil
);
16248 if (FRAME_WINDOW_P (f
))
16250 /* If the row is empty, add a space with the current face of IT,
16251 so that we know which face to draw. */
16252 if (it
->glyph_row
->used
[TEXT_AREA
] == 0)
16254 it
->glyph_row
->glyphs
[TEXT_AREA
][0] = space_glyph
;
16255 it
->glyph_row
->glyphs
[TEXT_AREA
][0].face_id
= it
->face_id
;
16256 it
->glyph_row
->used
[TEXT_AREA
] = 1;
16261 /* Save some values that must not be changed. */
16262 int saved_x
= it
->current_x
;
16263 struct text_pos saved_pos
;
16264 Lisp_Object saved_object
;
16265 enum display_element_type saved_what
= it
->what
;
16266 int saved_face_id
= it
->face_id
;
16268 saved_object
= it
->object
;
16269 saved_pos
= it
->position
;
16271 it
->what
= IT_CHARACTER
;
16272 bzero (&it
->position
, sizeof it
->position
);
16273 it
->object
= make_number (0);
16276 it
->face_id
= face
->id
;
16278 PRODUCE_GLYPHS (it
);
16280 while (it
->current_x
<= it
->last_visible_x
)
16281 PRODUCE_GLYPHS (it
);
16283 /* Don't count these blanks really. It would let us insert a left
16284 truncation glyph below and make us set the cursor on them, maybe. */
16285 it
->current_x
= saved_x
;
16286 it
->object
= saved_object
;
16287 it
->position
= saved_pos
;
16288 it
->what
= saved_what
;
16289 it
->face_id
= saved_face_id
;
16294 /* Value is non-zero if text starting at CHARPOS in current_buffer is
16295 trailing whitespace. */
16298 trailing_whitespace_p (charpos
)
16301 int bytepos
= CHAR_TO_BYTE (charpos
);
16304 while (bytepos
< ZV_BYTE
16305 && (c
= FETCH_CHAR (bytepos
),
16306 c
== ' ' || c
== '\t'))
16309 if (bytepos
>= ZV_BYTE
|| c
== '\n' || c
== '\r')
16311 if (bytepos
!= PT_BYTE
)
16318 /* Highlight trailing whitespace, if any, in ROW. */
16321 highlight_trailing_whitespace (f
, row
)
16323 struct glyph_row
*row
;
16325 int used
= row
->used
[TEXT_AREA
];
16329 struct glyph
*start
= row
->glyphs
[TEXT_AREA
];
16330 struct glyph
*glyph
= start
+ used
- 1;
16332 /* Skip over glyphs inserted to display the cursor at the
16333 end of a line, for extending the face of the last glyph
16334 to the end of the line on terminals, and for truncation
16335 and continuation glyphs. */
16336 while (glyph
>= start
16337 && glyph
->type
== CHAR_GLYPH
16338 && INTEGERP (glyph
->object
))
16341 /* If last glyph is a space or stretch, and it's trailing
16342 whitespace, set the face of all trailing whitespace glyphs in
16343 IT->glyph_row to `trailing-whitespace'. */
16345 && BUFFERP (glyph
->object
)
16346 && (glyph
->type
== STRETCH_GLYPH
16347 || (glyph
->type
== CHAR_GLYPH
16348 && glyph
->u
.ch
== ' '))
16349 && trailing_whitespace_p (glyph
->charpos
))
16351 int face_id
= lookup_named_face (f
, Qtrailing_whitespace
, 0);
16355 while (glyph
>= start
16356 && BUFFERP (glyph
->object
)
16357 && (glyph
->type
== STRETCH_GLYPH
16358 || (glyph
->type
== CHAR_GLYPH
16359 && glyph
->u
.ch
== ' ')))
16360 (glyph
--)->face_id
= face_id
;
16366 /* Value is non-zero if glyph row ROW in window W should be
16367 used to hold the cursor. */
16370 cursor_row_p (w
, row
)
16372 struct glyph_row
*row
;
16374 int cursor_row_p
= 1;
16376 if (PT
== MATRIX_ROW_END_CHARPOS (row
))
16378 /* Suppose the row ends on a string.
16379 Unless the row is continued, that means it ends on a newline
16380 in the string. If it's anything other than a display string
16381 (e.g. a before-string from an overlay), we don't want the
16382 cursor there. (This heuristic seems to give the optimal
16383 behavior for the various types of multi-line strings.) */
16384 if (CHARPOS (row
->end
.string_pos
) >= 0)
16386 if (row
->continued_p
)
16390 /* Check for `display' property. */
16391 struct glyph
*beg
= row
->glyphs
[TEXT_AREA
];
16392 struct glyph
*end
= beg
+ row
->used
[TEXT_AREA
] - 1;
16393 struct glyph
*glyph
;
16396 for (glyph
= end
; glyph
>= beg
; --glyph
)
16397 if (STRINGP (glyph
->object
))
16400 = Fget_char_property (make_number (PT
),
16404 && display_prop_string_p (prop
, glyph
->object
));
16409 else if (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row
))
16411 /* If the row ends in middle of a real character,
16412 and the line is continued, we want the cursor here.
16413 That's because MATRIX_ROW_END_CHARPOS would equal
16414 PT if PT is before the character. */
16415 if (!row
->ends_in_ellipsis_p
)
16416 cursor_row_p
= row
->continued_p
;
16418 /* If the row ends in an ellipsis, then
16419 MATRIX_ROW_END_CHARPOS will equal point after the invisible text.
16420 We want that position to be displayed after the ellipsis. */
16423 /* If the row ends at ZV, display the cursor at the end of that
16424 row instead of at the start of the row below. */
16425 else if (row
->ends_at_zv_p
)
16431 return cursor_row_p
;
16436 /* Push the display property PROP so that it will be rendered at the
16437 current position in IT. */
16440 push_display_prop (struct it
*it
, Lisp_Object prop
)
16444 /* Never display a cursor on the prefix. */
16445 it
->avoid_cursor_p
= 1;
16447 if (STRINGP (prop
))
16449 if (SCHARS (prop
) == 0)
16456 it
->multibyte_p
= STRING_MULTIBYTE (it
->string
);
16457 it
->current
.overlay_string_index
= -1;
16458 IT_STRING_CHARPOS (*it
) = IT_STRING_BYTEPOS (*it
) = 0;
16459 it
->end_charpos
= it
->string_nchars
= SCHARS (it
->string
);
16460 it
->method
= GET_FROM_STRING
;
16461 it
->stop_charpos
= 0;
16463 else if (CONSP (prop
) && EQ (XCAR (prop
), Qspace
))
16465 it
->method
= GET_FROM_STRETCH
;
16468 #ifdef HAVE_WINDOW_SYSTEM
16469 else if (IMAGEP (prop
))
16471 it
->what
= IT_IMAGE
;
16472 it
->image_id
= lookup_image (it
->f
, prop
);
16473 it
->method
= GET_FROM_IMAGE
;
16475 #endif /* HAVE_WINDOW_SYSTEM */
16478 pop_it (it
); /* bogus display property, give up */
16483 /* Return the character-property PROP at the current position in IT. */
16486 get_it_property (it
, prop
)
16490 Lisp_Object position
;
16492 if (STRINGP (it
->object
))
16493 position
= make_number (IT_STRING_CHARPOS (*it
));
16494 else if (BUFFERP (it
->object
))
16495 position
= make_number (IT_CHARPOS (*it
));
16499 return Fget_char_property (position
, prop
, it
->object
);
16502 /* See if there's a line- or wrap-prefix, and if so, push it on IT. */
16505 handle_line_prefix (struct it
*it
)
16507 Lisp_Object prefix
;
16508 if (it
->continuation_lines_width
> 0)
16510 prefix
= get_it_property (it
, Qwrap_prefix
);
16512 prefix
= Vwrap_prefix
;
16516 prefix
= get_it_property (it
, Qline_prefix
);
16518 prefix
= Vline_prefix
;
16520 if (! NILP (prefix
))
16522 push_display_prop (it
, prefix
);
16523 /* If the prefix is wider than the window, and we try to wrap
16524 it, it would acquire its own wrap prefix, and so on till the
16525 iterator stack overflows. So, don't wrap the prefix. */
16526 it
->line_wrap
= TRUNCATE
;
16532 /* Construct the glyph row IT->glyph_row in the desired matrix of
16533 IT->w from text at the current position of IT. See dispextern.h
16534 for an overview of struct it. Value is non-zero if
16535 IT->glyph_row displays text, as opposed to a line displaying ZV
16542 struct glyph_row
*row
= it
->glyph_row
;
16543 Lisp_Object overlay_arrow_string
;
16545 int may_wrap
= 0, wrap_x
;
16546 int wrap_row_used
= -1, wrap_row_ascent
, wrap_row_height
;
16547 int wrap_row_phys_ascent
, wrap_row_phys_height
;
16548 int wrap_row_extra_line_spacing
;
16550 /* We always start displaying at hpos zero even if hscrolled. */
16551 xassert (it
->hpos
== 0 && it
->current_x
== 0);
16553 if (MATRIX_ROW_VPOS (row
, it
->w
->desired_matrix
)
16554 >= it
->w
->desired_matrix
->nrows
)
16556 it
->w
->nrows_scale_factor
++;
16557 fonts_changed_p
= 1;
16561 /* Is IT->w showing the region? */
16562 it
->w
->region_showing
= it
->region_beg_charpos
> 0 ? Qt
: Qnil
;
16564 /* Clear the result glyph row and enable it. */
16565 prepare_desired_row (row
);
16567 row
->y
= it
->current_y
;
16568 row
->start
= it
->start
;
16569 row
->continuation_lines_width
= it
->continuation_lines_width
;
16570 row
->displays_text_p
= 1;
16571 row
->starts_in_middle_of_char_p
= it
->starts_in_middle_of_char_p
;
16572 it
->starts_in_middle_of_char_p
= 0;
16574 /* Arrange the overlays nicely for our purposes. Usually, we call
16575 display_line on only one line at a time, in which case this
16576 can't really hurt too much, or we call it on lines which appear
16577 one after another in the buffer, in which case all calls to
16578 recenter_overlay_lists but the first will be pretty cheap. */
16579 recenter_overlay_lists (current_buffer
, IT_CHARPOS (*it
));
16581 /* Move over display elements that are not visible because we are
16582 hscrolled. This may stop at an x-position < IT->first_visible_x
16583 if the first glyph is partially visible or if we hit a line end. */
16584 if (it
->current_x
< it
->first_visible_x
)
16586 move_it_in_display_line_to (it
, ZV
, it
->first_visible_x
,
16587 MOVE_TO_POS
| MOVE_TO_X
);
16591 /* We only do this when not calling `move_it_in_display_line_to'
16592 above, because move_it_in_display_line_to calls
16593 handle_line_prefix itself. */
16594 handle_line_prefix (it
);
16597 /* Get the initial row height. This is either the height of the
16598 text hscrolled, if there is any, or zero. */
16599 row
->ascent
= it
->max_ascent
;
16600 row
->height
= it
->max_ascent
+ it
->max_descent
;
16601 row
->phys_ascent
= it
->max_phys_ascent
;
16602 row
->phys_height
= it
->max_phys_ascent
+ it
->max_phys_descent
;
16603 row
->extra_line_spacing
= it
->max_extra_line_spacing
;
16605 /* Loop generating characters. The loop is left with IT on the next
16606 character to display. */
16609 int n_glyphs_before
, hpos_before
, x_before
;
16611 int ascent
= 0, descent
= 0, phys_ascent
= 0, phys_descent
= 0;
16613 /* Retrieve the next thing to display. Value is zero if end of
16615 if (!get_next_display_element (it
))
16617 /* Maybe add a space at the end of this line that is used to
16618 display the cursor there under X. Set the charpos of the
16619 first glyph of blank lines not corresponding to any text
16621 #ifdef HAVE_WINDOW_SYSTEM
16622 if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it
))
16623 row
->exact_window_width_line_p
= 1;
16625 #endif /* HAVE_WINDOW_SYSTEM */
16626 if ((append_space_for_newline (it
, 1) && row
->used
[TEXT_AREA
] == 1)
16627 || row
->used
[TEXT_AREA
] == 0)
16629 row
->glyphs
[TEXT_AREA
]->charpos
= -1;
16630 row
->displays_text_p
= 0;
16632 if (!NILP (XBUFFER (it
->w
->buffer
)->indicate_empty_lines
)
16633 && (!MINI_WINDOW_P (it
->w
)
16634 || (minibuf_level
&& EQ (it
->window
, minibuf_window
))))
16635 row
->indicate_empty_line_p
= 1;
16638 it
->continuation_lines_width
= 0;
16639 row
->ends_at_zv_p
= 1;
16643 /* Now, get the metrics of what we want to display. This also
16644 generates glyphs in `row' (which is IT->glyph_row). */
16645 n_glyphs_before
= row
->used
[TEXT_AREA
];
16648 /* Remember the line height so far in case the next element doesn't
16649 fit on the line. */
16650 if (it
->line_wrap
!= TRUNCATE
)
16652 ascent
= it
->max_ascent
;
16653 descent
= it
->max_descent
;
16654 phys_ascent
= it
->max_phys_ascent
;
16655 phys_descent
= it
->max_phys_descent
;
16657 if (it
->line_wrap
== WORD_WRAP
&& it
->area
== TEXT_AREA
)
16659 if (IT_DISPLAYING_WHITESPACE (it
))
16665 wrap_row_used
= row
->used
[TEXT_AREA
];
16666 wrap_row_ascent
= row
->ascent
;
16667 wrap_row_height
= row
->height
;
16668 wrap_row_phys_ascent
= row
->phys_ascent
;
16669 wrap_row_phys_height
= row
->phys_height
;
16670 wrap_row_extra_line_spacing
= row
->extra_line_spacing
;
16676 PRODUCE_GLYPHS (it
);
16678 /* If this display element was in marginal areas, continue with
16680 if (it
->area
!= TEXT_AREA
)
16682 row
->ascent
= max (row
->ascent
, it
->max_ascent
);
16683 row
->height
= max (row
->height
, it
->max_ascent
+ it
->max_descent
);
16684 row
->phys_ascent
= max (row
->phys_ascent
, it
->max_phys_ascent
);
16685 row
->phys_height
= max (row
->phys_height
,
16686 it
->max_phys_ascent
+ it
->max_phys_descent
);
16687 row
->extra_line_spacing
= max (row
->extra_line_spacing
,
16688 it
->max_extra_line_spacing
);
16689 set_iterator_to_next (it
, 1);
16693 /* Does the display element fit on the line? If we truncate
16694 lines, we should draw past the right edge of the window. If
16695 we don't truncate, we want to stop so that we can display the
16696 continuation glyph before the right margin. If lines are
16697 continued, there are two possible strategies for characters
16698 resulting in more than 1 glyph (e.g. tabs): Display as many
16699 glyphs as possible in this line and leave the rest for the
16700 continuation line, or display the whole element in the next
16701 line. Original redisplay did the former, so we do it also. */
16702 nglyphs
= row
->used
[TEXT_AREA
] - n_glyphs_before
;
16703 hpos_before
= it
->hpos
;
16706 if (/* Not a newline. */
16708 /* Glyphs produced fit entirely in the line. */
16709 && it
->current_x
< it
->last_visible_x
)
16711 it
->hpos
+= nglyphs
;
16712 row
->ascent
= max (row
->ascent
, it
->max_ascent
);
16713 row
->height
= max (row
->height
, it
->max_ascent
+ it
->max_descent
);
16714 row
->phys_ascent
= max (row
->phys_ascent
, it
->max_phys_ascent
);
16715 row
->phys_height
= max (row
->phys_height
,
16716 it
->max_phys_ascent
+ it
->max_phys_descent
);
16717 row
->extra_line_spacing
= max (row
->extra_line_spacing
,
16718 it
->max_extra_line_spacing
);
16719 if (it
->current_x
- it
->pixel_width
< it
->first_visible_x
)
16720 row
->x
= x
- it
->first_visible_x
;
16725 struct glyph
*glyph
;
16727 for (i
= 0; i
< nglyphs
; ++i
, x
= new_x
)
16729 glyph
= row
->glyphs
[TEXT_AREA
] + n_glyphs_before
+ i
;
16730 new_x
= x
+ glyph
->pixel_width
;
16732 if (/* Lines are continued. */
16733 it
->line_wrap
!= TRUNCATE
16734 && (/* Glyph doesn't fit on the line. */
16735 new_x
> it
->last_visible_x
16736 /* Or it fits exactly on a window system frame. */
16737 || (new_x
== it
->last_visible_x
16738 && FRAME_WINDOW_P (it
->f
))))
16740 /* End of a continued line. */
16743 || (new_x
== it
->last_visible_x
16744 && FRAME_WINDOW_P (it
->f
)))
16746 /* Current glyph is the only one on the line or
16747 fits exactly on the line. We must continue
16748 the line because we can't draw the cursor
16749 after the glyph. */
16750 row
->continued_p
= 1;
16751 it
->current_x
= new_x
;
16752 it
->continuation_lines_width
+= new_x
;
16754 if (i
== nglyphs
- 1)
16756 /* If line-wrap is on, check if a previous
16757 wrap point was found. */
16758 if (wrap_row_used
> 0
16759 /* Even if there is a previous wrap
16760 point, continue the line here as
16761 usual, if (i) the previous character
16762 was a space or tab AND (ii) the
16763 current character is not. */
16765 || IT_DISPLAYING_WHITESPACE (it
)))
16768 set_iterator_to_next (it
, 1);
16769 #ifdef HAVE_WINDOW_SYSTEM
16770 if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it
))
16772 if (!get_next_display_element (it
))
16774 row
->exact_window_width_line_p
= 1;
16775 it
->continuation_lines_width
= 0;
16776 row
->continued_p
= 0;
16777 row
->ends_at_zv_p
= 1;
16779 else if (ITERATOR_AT_END_OF_LINE_P (it
))
16781 row
->continued_p
= 0;
16782 row
->exact_window_width_line_p
= 1;
16785 #endif /* HAVE_WINDOW_SYSTEM */
16788 else if (CHAR_GLYPH_PADDING_P (*glyph
)
16789 && !FRAME_WINDOW_P (it
->f
))
16791 /* A padding glyph that doesn't fit on this line.
16792 This means the whole character doesn't fit
16794 row
->used
[TEXT_AREA
] = n_glyphs_before
;
16796 /* Fill the rest of the row with continuation
16797 glyphs like in 20.x. */
16798 while (row
->glyphs
[TEXT_AREA
] + row
->used
[TEXT_AREA
]
16799 < row
->glyphs
[1 + TEXT_AREA
])
16800 produce_special_glyphs (it
, IT_CONTINUATION
);
16802 row
->continued_p
= 1;
16803 it
->current_x
= x_before
;
16804 it
->continuation_lines_width
+= x_before
;
16806 /* Restore the height to what it was before the
16807 element not fitting on the line. */
16808 it
->max_ascent
= ascent
;
16809 it
->max_descent
= descent
;
16810 it
->max_phys_ascent
= phys_ascent
;
16811 it
->max_phys_descent
= phys_descent
;
16813 else if (wrap_row_used
> 0)
16817 it
->continuation_lines_width
+= wrap_x
;
16818 row
->used
[TEXT_AREA
] = wrap_row_used
;
16819 row
->ascent
= wrap_row_ascent
;
16820 row
->height
= wrap_row_height
;
16821 row
->phys_ascent
= wrap_row_phys_ascent
;
16822 row
->phys_height
= wrap_row_phys_height
;
16823 row
->extra_line_spacing
= wrap_row_extra_line_spacing
;
16824 row
->continued_p
= 1;
16825 row
->ends_at_zv_p
= 0;
16826 row
->exact_window_width_line_p
= 0;
16827 it
->continuation_lines_width
+= x
;
16829 /* Make sure that a non-default face is extended
16830 up to the right margin of the window. */
16831 extend_face_to_end_of_line (it
);
16833 else if (it
->c
== '\t' && FRAME_WINDOW_P (it
->f
))
16835 /* A TAB that extends past the right edge of the
16836 window. This produces a single glyph on
16837 window system frames. We leave the glyph in
16838 this row and let it fill the row, but don't
16839 consume the TAB. */
16840 it
->continuation_lines_width
+= it
->last_visible_x
;
16841 row
->ends_in_middle_of_char_p
= 1;
16842 row
->continued_p
= 1;
16843 glyph
->pixel_width
= it
->last_visible_x
- x
;
16844 it
->starts_in_middle_of_char_p
= 1;
16848 /* Something other than a TAB that draws past
16849 the right edge of the window. Restore
16850 positions to values before the element. */
16851 row
->used
[TEXT_AREA
] = n_glyphs_before
+ i
;
16853 /* Display continuation glyphs. */
16854 if (!FRAME_WINDOW_P (it
->f
))
16855 produce_special_glyphs (it
, IT_CONTINUATION
);
16856 row
->continued_p
= 1;
16858 it
->current_x
= x_before
;
16859 it
->continuation_lines_width
+= x
;
16860 extend_face_to_end_of_line (it
);
16862 if (nglyphs
> 1 && i
> 0)
16864 row
->ends_in_middle_of_char_p
= 1;
16865 it
->starts_in_middle_of_char_p
= 1;
16868 /* Restore the height to what it was before the
16869 element not fitting on the line. */
16870 it
->max_ascent
= ascent
;
16871 it
->max_descent
= descent
;
16872 it
->max_phys_ascent
= phys_ascent
;
16873 it
->max_phys_descent
= phys_descent
;
16878 else if (new_x
> it
->first_visible_x
)
16880 /* Increment number of glyphs actually displayed. */
16883 if (x
< it
->first_visible_x
)
16884 /* Glyph is partially visible, i.e. row starts at
16885 negative X position. */
16886 row
->x
= x
- it
->first_visible_x
;
16890 /* Glyph is completely off the left margin of the
16891 window. This should not happen because of the
16892 move_it_in_display_line at the start of this
16893 function, unless the text display area of the
16894 window is empty. */
16895 xassert (it
->first_visible_x
<= it
->last_visible_x
);
16899 row
->ascent
= max (row
->ascent
, it
->max_ascent
);
16900 row
->height
= max (row
->height
, it
->max_ascent
+ it
->max_descent
);
16901 row
->phys_ascent
= max (row
->phys_ascent
, it
->max_phys_ascent
);
16902 row
->phys_height
= max (row
->phys_height
,
16903 it
->max_phys_ascent
+ it
->max_phys_descent
);
16904 row
->extra_line_spacing
= max (row
->extra_line_spacing
,
16905 it
->max_extra_line_spacing
);
16907 /* End of this display line if row is continued. */
16908 if (row
->continued_p
|| row
->ends_at_zv_p
)
16913 /* Is this a line end? If yes, we're also done, after making
16914 sure that a non-default face is extended up to the right
16915 margin of the window. */
16916 if (ITERATOR_AT_END_OF_LINE_P (it
))
16918 int used_before
= row
->used
[TEXT_AREA
];
16920 row
->ends_in_newline_from_string_p
= STRINGP (it
->object
);
16922 #ifdef HAVE_WINDOW_SYSTEM
16923 /* Add a space at the end of the line that is used to
16924 display the cursor there. */
16925 if (!IT_OVERFLOW_NEWLINE_INTO_FRINGE (it
))
16926 append_space_for_newline (it
, 0);
16927 #endif /* HAVE_WINDOW_SYSTEM */
16929 /* Extend the face to the end of the line. */
16930 extend_face_to_end_of_line (it
);
16932 /* Make sure we have the position. */
16933 if (used_before
== 0)
16934 row
->glyphs
[TEXT_AREA
]->charpos
= CHARPOS (it
->position
);
16936 /* Consume the line end. This skips over invisible lines. */
16937 set_iterator_to_next (it
, 1);
16938 it
->continuation_lines_width
= 0;
16942 /* Proceed with next display element. Note that this skips
16943 over lines invisible because of selective display. */
16944 set_iterator_to_next (it
, 1);
16946 /* If we truncate lines, we are done when the last displayed
16947 glyphs reach past the right margin of the window. */
16948 if (it
->line_wrap
== TRUNCATE
16949 && (FRAME_WINDOW_P (it
->f
)
16950 ? (it
->current_x
>= it
->last_visible_x
)
16951 : (it
->current_x
> it
->last_visible_x
)))
16953 /* Maybe add truncation glyphs. */
16954 if (!FRAME_WINDOW_P (it
->f
))
16958 for (i
= row
->used
[TEXT_AREA
] - 1; i
> 0; --i
)
16959 if (!CHAR_GLYPH_PADDING_P (row
->glyphs
[TEXT_AREA
][i
]))
16962 for (n
= row
->used
[TEXT_AREA
]; i
< n
; ++i
)
16964 row
->used
[TEXT_AREA
] = i
;
16965 produce_special_glyphs (it
, IT_TRUNCATION
);
16968 #ifdef HAVE_WINDOW_SYSTEM
16971 /* Don't truncate if we can overflow newline into fringe. */
16972 if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it
))
16974 if (!get_next_display_element (it
))
16976 it
->continuation_lines_width
= 0;
16977 row
->ends_at_zv_p
= 1;
16978 row
->exact_window_width_line_p
= 1;
16981 if (ITERATOR_AT_END_OF_LINE_P (it
))
16983 row
->exact_window_width_line_p
= 1;
16984 goto at_end_of_line
;
16988 #endif /* HAVE_WINDOW_SYSTEM */
16990 row
->truncated_on_right_p
= 1;
16991 it
->continuation_lines_width
= 0;
16992 reseat_at_next_visible_line_start (it
, 0);
16993 row
->ends_at_zv_p
= FETCH_BYTE (IT_BYTEPOS (*it
) - 1) != '\n';
16994 it
->hpos
= hpos_before
;
16995 it
->current_x
= x_before
;
17000 /* If line is not empty and hscrolled, maybe insert truncation glyphs
17001 at the left window margin. */
17002 if (it
->first_visible_x
17003 && IT_CHARPOS (*it
) != MATRIX_ROW_START_CHARPOS (row
))
17005 if (!FRAME_WINDOW_P (it
->f
))
17006 insert_left_trunc_glyphs (it
);
17007 row
->truncated_on_left_p
= 1;
17010 /* If the start of this line is the overlay arrow-position, then
17011 mark this glyph row as the one containing the overlay arrow.
17012 This is clearly a mess with variable size fonts. It would be
17013 better to let it be displayed like cursors under X. */
17014 if ((row
->displays_text_p
|| !overlay_arrow_seen
)
17015 && (overlay_arrow_string
= overlay_arrow_at_row (it
, row
),
17016 !NILP (overlay_arrow_string
)))
17018 /* Overlay arrow in window redisplay is a fringe bitmap. */
17019 if (STRINGP (overlay_arrow_string
))
17021 struct glyph_row
*arrow_row
17022 = get_overlay_arrow_glyph_row (it
->w
, overlay_arrow_string
);
17023 struct glyph
*glyph
= arrow_row
->glyphs
[TEXT_AREA
];
17024 struct glyph
*arrow_end
= glyph
+ arrow_row
->used
[TEXT_AREA
];
17025 struct glyph
*p
= row
->glyphs
[TEXT_AREA
];
17026 struct glyph
*p2
, *end
;
17028 /* Copy the arrow glyphs. */
17029 while (glyph
< arrow_end
)
17032 /* Throw away padding glyphs. */
17034 end
= row
->glyphs
[TEXT_AREA
] + row
->used
[TEXT_AREA
];
17035 while (p2
< end
&& CHAR_GLYPH_PADDING_P (*p2
))
17041 row
->used
[TEXT_AREA
] = p2
- row
->glyphs
[TEXT_AREA
];
17046 xassert (INTEGERP (overlay_arrow_string
));
17047 row
->overlay_arrow_bitmap
= XINT (overlay_arrow_string
);
17049 overlay_arrow_seen
= 1;
17052 /* Compute pixel dimensions of this line. */
17053 compute_line_metrics (it
);
17055 /* Remember the position at which this line ends. */
17056 row
->end
= it
->current
;
17058 /* Record whether this row ends inside an ellipsis. */
17059 row
->ends_in_ellipsis_p
17060 = (it
->method
== GET_FROM_DISPLAY_VECTOR
17061 && it
->ellipsis_p
);
17063 /* Save fringe bitmaps in this row. */
17064 row
->left_user_fringe_bitmap
= it
->left_user_fringe_bitmap
;
17065 row
->left_user_fringe_face_id
= it
->left_user_fringe_face_id
;
17066 row
->right_user_fringe_bitmap
= it
->right_user_fringe_bitmap
;
17067 row
->right_user_fringe_face_id
= it
->right_user_fringe_face_id
;
17069 it
->left_user_fringe_bitmap
= 0;
17070 it
->left_user_fringe_face_id
= 0;
17071 it
->right_user_fringe_bitmap
= 0;
17072 it
->right_user_fringe_face_id
= 0;
17074 /* Maybe set the cursor. */
17075 if (it
->w
->cursor
.vpos
< 0
17076 && PT
>= MATRIX_ROW_START_CHARPOS (row
)
17077 && PT
<= MATRIX_ROW_END_CHARPOS (row
)
17078 && cursor_row_p (it
->w
, row
))
17079 set_cursor_from_row (it
->w
, row
, it
->w
->desired_matrix
, 0, 0, 0, 0);
17081 /* Highlight trailing whitespace. */
17082 if (!NILP (Vshow_trailing_whitespace
))
17083 highlight_trailing_whitespace (it
->f
, it
->glyph_row
);
17085 /* Prepare for the next line. This line starts horizontally at (X
17086 HPOS) = (0 0). Vertical positions are incremented. As a
17087 convenience for the caller, IT->glyph_row is set to the next
17089 it
->current_x
= it
->hpos
= 0;
17090 it
->current_y
+= row
->height
;
17093 it
->start
= it
->current
;
17094 return row
->displays_text_p
;
17099 /***********************************************************************
17101 ***********************************************************************/
17103 /* Redisplay the menu bar in the frame for window W.
17105 The menu bar of X frames that don't have X toolkit support is
17106 displayed in a special window W->frame->menu_bar_window.
17108 The menu bar of terminal frames is treated specially as far as
17109 glyph matrices are concerned. Menu bar lines are not part of
17110 windows, so the update is done directly on the frame matrix rows
17111 for the menu bar. */
17114 display_menu_bar (w
)
17117 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
17122 /* Don't do all this for graphical frames. */
17124 if (FRAME_W32_P (f
))
17127 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
17133 if (FRAME_NS_P (f
))
17135 #endif /* HAVE_NS */
17137 #ifdef USE_X_TOOLKIT
17138 xassert (!FRAME_WINDOW_P (f
));
17139 init_iterator (&it
, w
, -1, -1, f
->desired_matrix
->rows
, MENU_FACE_ID
);
17140 it
.first_visible_x
= 0;
17141 it
.last_visible_x
= FRAME_TOTAL_COLS (f
) * FRAME_COLUMN_WIDTH (f
);
17142 #else /* not USE_X_TOOLKIT */
17143 if (FRAME_WINDOW_P (f
))
17145 /* Menu bar lines are displayed in the desired matrix of the
17146 dummy window menu_bar_window. */
17147 struct window
*menu_w
;
17148 xassert (WINDOWP (f
->menu_bar_window
));
17149 menu_w
= XWINDOW (f
->menu_bar_window
);
17150 init_iterator (&it
, menu_w
, -1, -1, menu_w
->desired_matrix
->rows
,
17152 it
.first_visible_x
= 0;
17153 it
.last_visible_x
= FRAME_TOTAL_COLS (f
) * FRAME_COLUMN_WIDTH (f
);
17157 /* This is a TTY frame, i.e. character hpos/vpos are used as
17159 init_iterator (&it
, w
, -1, -1, f
->desired_matrix
->rows
,
17161 it
.first_visible_x
= 0;
17162 it
.last_visible_x
= FRAME_COLS (f
);
17164 #endif /* not USE_X_TOOLKIT */
17166 if (! mode_line_inverse_video
)
17167 /* Force the menu-bar to be displayed in the default face. */
17168 it
.base_face_id
= it
.face_id
= DEFAULT_FACE_ID
;
17170 /* Clear all rows of the menu bar. */
17171 for (i
= 0; i
< FRAME_MENU_BAR_LINES (f
); ++i
)
17173 struct glyph_row
*row
= it
.glyph_row
+ i
;
17174 clear_glyph_row (row
);
17175 row
->enabled_p
= 1;
17176 row
->full_width_p
= 1;
17179 /* Display all items of the menu bar. */
17180 items
= FRAME_MENU_BAR_ITEMS (it
.f
);
17181 for (i
= 0; i
< XVECTOR (items
)->size
; i
+= 4)
17183 Lisp_Object string
;
17185 /* Stop at nil string. */
17186 string
= AREF (items
, i
+ 1);
17190 /* Remember where item was displayed. */
17191 ASET (items
, i
+ 3, make_number (it
.hpos
));
17193 /* Display the item, pad with one space. */
17194 if (it
.current_x
< it
.last_visible_x
)
17195 display_string (NULL
, string
, Qnil
, 0, 0, &it
,
17196 SCHARS (string
) + 1, 0, 0, -1);
17199 /* Fill out the line with spaces. */
17200 if (it
.current_x
< it
.last_visible_x
)
17201 display_string ("", Qnil
, Qnil
, 0, 0, &it
, -1, 0, 0, -1);
17203 /* Compute the total height of the lines. */
17204 compute_line_metrics (&it
);
17209 /***********************************************************************
17211 ***********************************************************************/
17213 /* Redisplay mode lines in the window tree whose root is WINDOW. If
17214 FORCE is non-zero, redisplay mode lines unconditionally.
17215 Otherwise, redisplay only mode lines that are garbaged. Value is
17216 the number of windows whose mode lines were redisplayed. */
17219 redisplay_mode_lines (window
, force
)
17220 Lisp_Object window
;
17225 while (!NILP (window
))
17227 struct window
*w
= XWINDOW (window
);
17229 if (WINDOWP (w
->hchild
))
17230 nwindows
+= redisplay_mode_lines (w
->hchild
, force
);
17231 else if (WINDOWP (w
->vchild
))
17232 nwindows
+= redisplay_mode_lines (w
->vchild
, force
);
17234 || FRAME_GARBAGED_P (XFRAME (w
->frame
))
17235 || !MATRIX_MODE_LINE_ROW (w
->current_matrix
)->enabled_p
)
17237 struct text_pos lpoint
;
17238 struct buffer
*old
= current_buffer
;
17240 /* Set the window's buffer for the mode line display. */
17241 SET_TEXT_POS (lpoint
, PT
, PT_BYTE
);
17242 set_buffer_internal_1 (XBUFFER (w
->buffer
));
17244 /* Point refers normally to the selected window. For any
17245 other window, set up appropriate value. */
17246 if (!EQ (window
, selected_window
))
17248 struct text_pos pt
;
17250 SET_TEXT_POS_FROM_MARKER (pt
, w
->pointm
);
17251 if (CHARPOS (pt
) < BEGV
)
17252 TEMP_SET_PT_BOTH (BEGV
, BEGV_BYTE
);
17253 else if (CHARPOS (pt
) > (ZV
- 1))
17254 TEMP_SET_PT_BOTH (ZV
, ZV_BYTE
);
17256 TEMP_SET_PT_BOTH (CHARPOS (pt
), BYTEPOS (pt
));
17259 /* Display mode lines. */
17260 clear_glyph_matrix (w
->desired_matrix
);
17261 if (display_mode_lines (w
))
17264 w
->must_be_updated_p
= 1;
17267 /* Restore old settings. */
17268 set_buffer_internal_1 (old
);
17269 TEMP_SET_PT_BOTH (CHARPOS (lpoint
), BYTEPOS (lpoint
));
17279 /* Display the mode and/or top line of window W. Value is the number
17280 of mode lines displayed. */
17283 display_mode_lines (w
)
17286 Lisp_Object old_selected_window
, old_selected_frame
;
17289 old_selected_frame
= selected_frame
;
17290 selected_frame
= w
->frame
;
17291 old_selected_window
= selected_window
;
17292 XSETWINDOW (selected_window
, w
);
17294 /* These will be set while the mode line specs are processed. */
17295 line_number_displayed
= 0;
17296 w
->column_number_displayed
= Qnil
;
17298 if (WINDOW_WANTS_MODELINE_P (w
))
17300 struct window
*sel_w
= XWINDOW (old_selected_window
);
17302 /* Select mode line face based on the real selected window. */
17303 display_mode_line (w
, CURRENT_MODE_LINE_FACE_ID_3 (sel_w
, sel_w
, w
),
17304 current_buffer
->mode_line_format
);
17308 if (WINDOW_WANTS_HEADER_LINE_P (w
))
17310 display_mode_line (w
, HEADER_LINE_FACE_ID
,
17311 current_buffer
->header_line_format
);
17315 selected_frame
= old_selected_frame
;
17316 selected_window
= old_selected_window
;
17321 /* Display mode or top line of window W. FACE_ID specifies which line
17322 to display; it is either MODE_LINE_FACE_ID or HEADER_LINE_FACE_ID.
17323 FORMAT is the mode line format to display. Value is the pixel
17324 height of the mode line displayed. */
17327 display_mode_line (w
, face_id
, format
)
17329 enum face_id face_id
;
17330 Lisp_Object format
;
17334 int count
= SPECPDL_INDEX ();
17336 init_iterator (&it
, w
, -1, -1, NULL
, face_id
);
17337 /* Don't extend on a previously drawn mode-line.
17338 This may happen if called from pos_visible_p. */
17339 it
.glyph_row
->enabled_p
= 0;
17340 prepare_desired_row (it
.glyph_row
);
17342 it
.glyph_row
->mode_line_p
= 1;
17344 if (! mode_line_inverse_video
)
17345 /* Force the mode-line to be displayed in the default face. */
17346 it
.base_face_id
= it
.face_id
= DEFAULT_FACE_ID
;
17348 record_unwind_protect (unwind_format_mode_line
,
17349 format_mode_line_unwind_data (NULL
, Qnil
, 0));
17351 mode_line_target
= MODE_LINE_DISPLAY
;
17353 /* Temporarily make frame's keyboard the current kboard so that
17354 kboard-local variables in the mode_line_format will get the right
17356 push_kboard (FRAME_KBOARD (it
.f
));
17357 record_unwind_save_match_data ();
17358 display_mode_element (&it
, 0, 0, 0, format
, Qnil
, 0);
17361 unbind_to (count
, Qnil
);
17363 /* Fill up with spaces. */
17364 display_string (" ", Qnil
, Qnil
, 0, 0, &it
, 10000, -1, -1, 0);
17366 compute_line_metrics (&it
);
17367 it
.glyph_row
->full_width_p
= 1;
17368 it
.glyph_row
->continued_p
= 0;
17369 it
.glyph_row
->truncated_on_left_p
= 0;
17370 it
.glyph_row
->truncated_on_right_p
= 0;
17372 /* Make a 3D mode-line have a shadow at its right end. */
17373 face
= FACE_FROM_ID (it
.f
, face_id
);
17374 extend_face_to_end_of_line (&it
);
17375 if (face
->box
!= FACE_NO_BOX
)
17377 struct glyph
*last
= (it
.glyph_row
->glyphs
[TEXT_AREA
]
17378 + it
.glyph_row
->used
[TEXT_AREA
] - 1);
17379 last
->right_box_line_p
= 1;
17382 return it
.glyph_row
->height
;
17385 /* Move element ELT in LIST to the front of LIST.
17386 Return the updated list. */
17389 move_elt_to_front (elt
, list
)
17390 Lisp_Object elt
, list
;
17392 register Lisp_Object tail
, prev
;
17393 register Lisp_Object tem
;
17397 while (CONSP (tail
))
17403 /* Splice out the link TAIL. */
17405 list
= XCDR (tail
);
17407 Fsetcdr (prev
, XCDR (tail
));
17409 /* Now make it the first. */
17410 Fsetcdr (tail
, list
);
17415 tail
= XCDR (tail
);
17419 /* Not found--return unchanged LIST. */
17423 /* Contribute ELT to the mode line for window IT->w. How it
17424 translates into text depends on its data type.
17426 IT describes the display environment in which we display, as usual.
17428 DEPTH is the depth in recursion. It is used to prevent
17429 infinite recursion here.
17431 FIELD_WIDTH is the number of characters the display of ELT should
17432 occupy in the mode line, and PRECISION is the maximum number of
17433 characters to display from ELT's representation. See
17434 display_string for details.
17436 Returns the hpos of the end of the text generated by ELT.
17438 PROPS is a property list to add to any string we encounter.
17440 If RISKY is nonzero, remove (disregard) any properties in any string
17441 we encounter, and ignore :eval and :propertize.
17443 The global variable `mode_line_target' determines whether the
17444 output is passed to `store_mode_line_noprop',
17445 `store_mode_line_string', or `display_string'. */
17448 display_mode_element (it
, depth
, field_width
, precision
, elt
, props
, risky
)
17451 int field_width
, precision
;
17452 Lisp_Object elt
, props
;
17455 int n
= 0, field
, prec
;
17460 elt
= build_string ("*too-deep*");
17464 switch (SWITCH_ENUM_CAST (XTYPE (elt
)))
17468 /* A string: output it and check for %-constructs within it. */
17472 if (SCHARS (elt
) > 0
17473 && (!NILP (props
) || risky
))
17475 Lisp_Object oprops
, aelt
;
17476 oprops
= Ftext_properties_at (make_number (0), elt
);
17478 /* If the starting string's properties are not what
17479 we want, translate the string. Also, if the string
17480 is risky, do that anyway. */
17482 if (NILP (Fequal (props
, oprops
)) || risky
)
17484 /* If the starting string has properties,
17485 merge the specified ones onto the existing ones. */
17486 if (! NILP (oprops
) && !risky
)
17490 oprops
= Fcopy_sequence (oprops
);
17492 while (CONSP (tem
))
17494 oprops
= Fplist_put (oprops
, XCAR (tem
),
17495 XCAR (XCDR (tem
)));
17496 tem
= XCDR (XCDR (tem
));
17501 aelt
= Fassoc (elt
, mode_line_proptrans_alist
);
17502 if (! NILP (aelt
) && !NILP (Fequal (props
, XCDR (aelt
))))
17504 /* AELT is what we want. Move it to the front
17505 without consing. */
17507 mode_line_proptrans_alist
17508 = move_elt_to_front (aelt
, mode_line_proptrans_alist
);
17514 /* If AELT has the wrong props, it is useless.
17515 so get rid of it. */
17517 mode_line_proptrans_alist
17518 = Fdelq (aelt
, mode_line_proptrans_alist
);
17520 elt
= Fcopy_sequence (elt
);
17521 Fset_text_properties (make_number (0), Flength (elt
),
17523 /* Add this item to mode_line_proptrans_alist. */
17524 mode_line_proptrans_alist
17525 = Fcons (Fcons (elt
, props
),
17526 mode_line_proptrans_alist
);
17527 /* Truncate mode_line_proptrans_alist
17528 to at most 50 elements. */
17529 tem
= Fnthcdr (make_number (50),
17530 mode_line_proptrans_alist
);
17532 XSETCDR (tem
, Qnil
);
17541 prec
= precision
- n
;
17542 switch (mode_line_target
)
17544 case MODE_LINE_NOPROP
:
17545 case MODE_LINE_TITLE
:
17546 n
+= store_mode_line_noprop (SDATA (elt
), -1, prec
);
17548 case MODE_LINE_STRING
:
17549 n
+= store_mode_line_string (NULL
, elt
, 1, 0, prec
, Qnil
);
17551 case MODE_LINE_DISPLAY
:
17552 n
+= display_string (NULL
, elt
, Qnil
, 0, 0, it
,
17553 0, prec
, 0, STRING_MULTIBYTE (elt
));
17560 /* Handle the non-literal case. */
17562 while ((precision
<= 0 || n
< precision
)
17563 && SREF (elt
, offset
) != 0
17564 && (mode_line_target
!= MODE_LINE_DISPLAY
17565 || it
->current_x
< it
->last_visible_x
))
17567 int last_offset
= offset
;
17569 /* Advance to end of string or next format specifier. */
17570 while ((c
= SREF (elt
, offset
++)) != '\0' && c
!= '%')
17573 if (offset
- 1 != last_offset
)
17575 int nchars
, nbytes
;
17577 /* Output to end of string or up to '%'. Field width
17578 is length of string. Don't output more than
17579 PRECISION allows us. */
17582 prec
= c_string_width (SDATA (elt
) + last_offset
,
17583 offset
- last_offset
, precision
- n
,
17586 switch (mode_line_target
)
17588 case MODE_LINE_NOPROP
:
17589 case MODE_LINE_TITLE
:
17590 n
+= store_mode_line_noprop (SDATA (elt
) + last_offset
, 0, prec
);
17592 case MODE_LINE_STRING
:
17594 int bytepos
= last_offset
;
17595 int charpos
= string_byte_to_char (elt
, bytepos
);
17596 int endpos
= (precision
<= 0
17597 ? string_byte_to_char (elt
, offset
)
17598 : charpos
+ nchars
);
17600 n
+= store_mode_line_string (NULL
,
17601 Fsubstring (elt
, make_number (charpos
),
17602 make_number (endpos
)),
17606 case MODE_LINE_DISPLAY
:
17608 int bytepos
= last_offset
;
17609 int charpos
= string_byte_to_char (elt
, bytepos
);
17611 if (precision
<= 0)
17612 nchars
= string_byte_to_char (elt
, offset
) - charpos
;
17613 n
+= display_string (NULL
, elt
, Qnil
, 0, charpos
,
17615 STRING_MULTIBYTE (elt
));
17620 else /* c == '%' */
17622 int percent_position
= offset
;
17624 /* Get the specified minimum width. Zero means
17627 while ((c
= SREF (elt
, offset
++)) >= '0' && c
<= '9')
17628 field
= field
* 10 + c
- '0';
17630 /* Don't pad beyond the total padding allowed. */
17631 if (field_width
- n
> 0 && field
> field_width
- n
)
17632 field
= field_width
- n
;
17634 /* Note that either PRECISION <= 0 or N < PRECISION. */
17635 prec
= precision
- n
;
17638 n
+= display_mode_element (it
, depth
, field
, prec
,
17639 Vglobal_mode_string
, props
,
17644 int bytepos
, charpos
;
17645 unsigned char *spec
;
17647 bytepos
= percent_position
;
17648 charpos
= (STRING_MULTIBYTE (elt
)
17649 ? string_byte_to_char (elt
, bytepos
)
17652 = decode_mode_spec (it
->w
, c
, field
, prec
, &multibyte
);
17654 switch (mode_line_target
)
17656 case MODE_LINE_NOPROP
:
17657 case MODE_LINE_TITLE
:
17658 n
+= store_mode_line_noprop (spec
, field
, prec
);
17660 case MODE_LINE_STRING
:
17662 int len
= strlen (spec
);
17663 Lisp_Object tem
= make_string (spec
, len
);
17664 props
= Ftext_properties_at (make_number (charpos
), elt
);
17665 /* Should only keep face property in props */
17666 n
+= store_mode_line_string (NULL
, tem
, 0, field
, prec
, props
);
17669 case MODE_LINE_DISPLAY
:
17671 int nglyphs_before
, nwritten
;
17673 nglyphs_before
= it
->glyph_row
->used
[TEXT_AREA
];
17674 nwritten
= display_string (spec
, Qnil
, elt
,
17679 /* Assign to the glyphs written above the
17680 string where the `%x' came from, position
17684 struct glyph
*glyph
17685 = (it
->glyph_row
->glyphs
[TEXT_AREA
]
17689 for (i
= 0; i
< nwritten
; ++i
)
17691 glyph
[i
].object
= elt
;
17692 glyph
[i
].charpos
= charpos
;
17709 /* A symbol: process the value of the symbol recursively
17710 as if it appeared here directly. Avoid error if symbol void.
17711 Special case: if value of symbol is a string, output the string
17714 register Lisp_Object tem
;
17716 /* If the variable is not marked as risky to set
17717 then its contents are risky to use. */
17718 if (NILP (Fget (elt
, Qrisky_local_variable
)))
17721 tem
= Fboundp (elt
);
17724 tem
= Fsymbol_value (elt
);
17725 /* If value is a string, output that string literally:
17726 don't check for % within it. */
17730 if (!EQ (tem
, elt
))
17732 /* Give up right away for nil or t. */
17742 register Lisp_Object car
, tem
;
17744 /* A cons cell: five distinct cases.
17745 If first element is :eval or :propertize, do something special.
17746 If first element is a string or a cons, process all the elements
17747 and effectively concatenate them.
17748 If first element is a negative number, truncate displaying cdr to
17749 at most that many characters. If positive, pad (with spaces)
17750 to at least that many characters.
17751 If first element is a symbol, process the cadr or caddr recursively
17752 according to whether the symbol's value is non-nil or nil. */
17754 if (EQ (car
, QCeval
))
17756 /* An element of the form (:eval FORM) means evaluate FORM
17757 and use the result as mode line elements. */
17762 if (CONSP (XCDR (elt
)))
17765 spec
= safe_eval (XCAR (XCDR (elt
)));
17766 n
+= display_mode_element (it
, depth
, field_width
- n
,
17767 precision
- n
, spec
, props
,
17771 else if (EQ (car
, QCpropertize
))
17773 /* An element of the form (:propertize ELT PROPS...)
17774 means display ELT but applying properties PROPS. */
17779 if (CONSP (XCDR (elt
)))
17780 n
+= display_mode_element (it
, depth
, field_width
- n
,
17781 precision
- n
, XCAR (XCDR (elt
)),
17782 XCDR (XCDR (elt
)), risky
);
17784 else if (SYMBOLP (car
))
17786 tem
= Fboundp (car
);
17790 /* elt is now the cdr, and we know it is a cons cell.
17791 Use its car if CAR has a non-nil value. */
17794 tem
= Fsymbol_value (car
);
17801 /* Symbol's value is nil (or symbol is unbound)
17802 Get the cddr of the original list
17803 and if possible find the caddr and use that. */
17807 else if (!CONSP (elt
))
17812 else if (INTEGERP (car
))
17814 register int lim
= XINT (car
);
17818 /* Negative int means reduce maximum width. */
17819 if (precision
<= 0)
17822 precision
= min (precision
, -lim
);
17826 /* Padding specified. Don't let it be more than
17827 current maximum. */
17829 lim
= min (precision
, lim
);
17831 /* If that's more padding than already wanted, queue it.
17832 But don't reduce padding already specified even if
17833 that is beyond the current truncation point. */
17834 field_width
= max (lim
, field_width
);
17838 else if (STRINGP (car
) || CONSP (car
))
17840 register int limit
= 50;
17841 /* Limit is to protect against circular lists. */
17844 && (precision
<= 0 || n
< precision
))
17846 n
+= display_mode_element (it
, depth
,
17847 /* Do padding only after the last
17848 element in the list. */
17849 (! CONSP (XCDR (elt
))
17852 precision
- n
, XCAR (elt
),
17862 elt
= build_string ("*invalid*");
17866 /* Pad to FIELD_WIDTH. */
17867 if (field_width
> 0 && n
< field_width
)
17869 switch (mode_line_target
)
17871 case MODE_LINE_NOPROP
:
17872 case MODE_LINE_TITLE
:
17873 n
+= store_mode_line_noprop ("", field_width
- n
, 0);
17875 case MODE_LINE_STRING
:
17876 n
+= store_mode_line_string ("", Qnil
, 0, field_width
- n
, 0, Qnil
);
17878 case MODE_LINE_DISPLAY
:
17879 n
+= display_string ("", Qnil
, Qnil
, 0, 0, it
, field_width
- n
,
17888 /* Store a mode-line string element in mode_line_string_list.
17890 If STRING is non-null, display that C string. Otherwise, the Lisp
17891 string LISP_STRING is displayed.
17893 FIELD_WIDTH is the minimum number of output glyphs to produce.
17894 If STRING has fewer characters than FIELD_WIDTH, pad to the right
17895 with spaces. FIELD_WIDTH <= 0 means don't pad.
17897 PRECISION is the maximum number of characters to output from
17898 STRING. PRECISION <= 0 means don't truncate the string.
17900 If COPY_STRING is non-zero, make a copy of LISP_STRING before adding
17901 properties to the string.
17903 PROPS are the properties to add to the string.
17904 The mode_line_string_face face property is always added to the string.
17908 store_mode_line_string (string
, lisp_string
, copy_string
, field_width
, precision
, props
)
17910 Lisp_Object lisp_string
;
17919 if (string
!= NULL
)
17921 len
= strlen (string
);
17922 if (precision
> 0 && len
> precision
)
17924 lisp_string
= make_string (string
, len
);
17926 props
= mode_line_string_face_prop
;
17927 else if (!NILP (mode_line_string_face
))
17929 Lisp_Object face
= Fplist_get (props
, Qface
);
17930 props
= Fcopy_sequence (props
);
17932 face
= mode_line_string_face
;
17934 face
= Fcons (face
, Fcons (mode_line_string_face
, Qnil
));
17935 props
= Fplist_put (props
, Qface
, face
);
17937 Fadd_text_properties (make_number (0), make_number (len
),
17938 props
, lisp_string
);
17942 len
= XFASTINT (Flength (lisp_string
));
17943 if (precision
> 0 && len
> precision
)
17946 lisp_string
= Fsubstring (lisp_string
, make_number (0), make_number (len
));
17949 if (!NILP (mode_line_string_face
))
17953 props
= Ftext_properties_at (make_number (0), lisp_string
);
17954 face
= Fplist_get (props
, Qface
);
17956 face
= mode_line_string_face
;
17958 face
= Fcons (face
, Fcons (mode_line_string_face
, Qnil
));
17959 props
= Fcons (Qface
, Fcons (face
, Qnil
));
17961 lisp_string
= Fcopy_sequence (lisp_string
);
17964 Fadd_text_properties (make_number (0), make_number (len
),
17965 props
, lisp_string
);
17970 mode_line_string_list
= Fcons (lisp_string
, mode_line_string_list
);
17974 if (field_width
> len
)
17976 field_width
-= len
;
17977 lisp_string
= Fmake_string (make_number (field_width
), make_number (' '));
17979 Fadd_text_properties (make_number (0), make_number (field_width
),
17980 props
, lisp_string
);
17981 mode_line_string_list
= Fcons (lisp_string
, mode_line_string_list
);
17989 DEFUN ("format-mode-line", Fformat_mode_line
, Sformat_mode_line
,
17991 doc
: /* Format a string out of a mode line format specification.
17992 First arg FORMAT specifies the mode line format (see `mode-line-format'
17993 for details) to use.
17995 Optional second arg FACE specifies the face property to put
17996 on all characters for which no face is specified.
17997 The value t means whatever face the window's mode line currently uses
17998 \(either `mode-line' or `mode-line-inactive', depending).
17999 A value of nil means the default is no face property.
18000 If FACE is an integer, the value string has no text properties.
18002 Optional third and fourth args WINDOW and BUFFER specify the window
18003 and buffer to use as the context for the formatting (defaults
18004 are the selected window and the window's buffer). */)
18005 (format
, face
, window
, buffer
)
18006 Lisp_Object format
, face
, window
, buffer
;
18011 struct buffer
*old_buffer
= NULL
;
18013 int no_props
= INTEGERP (face
);
18014 int count
= SPECPDL_INDEX ();
18016 int string_start
= 0;
18019 window
= selected_window
;
18020 CHECK_WINDOW (window
);
18021 w
= XWINDOW (window
);
18024 buffer
= w
->buffer
;
18025 CHECK_BUFFER (buffer
);
18027 /* Make formatting the modeline a non-op when noninteractive, otherwise
18028 there will be problems later caused by a partially initialized frame. */
18029 if (NILP (format
) || noninteractive
)
18030 return empty_unibyte_string
;
18038 face
= (EQ (window
, selected_window
) ? Qmode_line
: Qmode_line_inactive
);
18039 face_id
= lookup_named_face (XFRAME (WINDOW_FRAME (w
)), face
, 0);
18043 face_id
= DEFAULT_FACE_ID
;
18045 if (XBUFFER (buffer
) != current_buffer
)
18046 old_buffer
= current_buffer
;
18048 /* Save things including mode_line_proptrans_alist,
18049 and set that to nil so that we don't alter the outer value. */
18050 record_unwind_protect (unwind_format_mode_line
,
18051 format_mode_line_unwind_data
18052 (old_buffer
, selected_window
, 1));
18053 mode_line_proptrans_alist
= Qnil
;
18055 Fselect_window (window
, Qt
);
18057 set_buffer_internal_1 (XBUFFER (buffer
));
18059 init_iterator (&it
, w
, -1, -1, NULL
, face_id
);
18063 mode_line_target
= MODE_LINE_NOPROP
;
18064 mode_line_string_face_prop
= Qnil
;
18065 mode_line_string_list
= Qnil
;
18066 string_start
= MODE_LINE_NOPROP_LEN (0);
18070 mode_line_target
= MODE_LINE_STRING
;
18071 mode_line_string_list
= Qnil
;
18072 mode_line_string_face
= face
;
18073 mode_line_string_face_prop
18074 = (NILP (face
) ? Qnil
: Fcons (Qface
, Fcons (face
, Qnil
)));
18077 push_kboard (FRAME_KBOARD (it
.f
));
18078 display_mode_element (&it
, 0, 0, 0, format
, Qnil
, 0);
18083 len
= MODE_LINE_NOPROP_LEN (string_start
);
18084 str
= make_string (mode_line_noprop_buf
+ string_start
, len
);
18088 mode_line_string_list
= Fnreverse (mode_line_string_list
);
18089 str
= Fmapconcat (intern ("identity"), mode_line_string_list
,
18090 empty_unibyte_string
);
18093 unbind_to (count
, Qnil
);
18097 /* Write a null-terminated, right justified decimal representation of
18098 the positive integer D to BUF using a minimal field width WIDTH. */
18101 pint2str (buf
, width
, d
)
18102 register char *buf
;
18103 register int width
;
18106 register char *p
= buf
;
18114 *p
++ = d
% 10 + '0';
18119 for (width
-= (int) (p
- buf
); width
> 0; --width
)
18130 /* Write a null-terminated, right justified decimal and "human
18131 readable" representation of the nonnegative integer D to BUF using
18132 a minimal field width WIDTH. D should be smaller than 999.5e24. */
18134 static const char power_letter
[] =
18148 pint2hrstr (buf
, width
, d
)
18153 /* We aim to represent the nonnegative integer D as
18154 QUOTIENT.TENTHS * 10 ^ (3 * EXPONENT). */
18157 /* -1 means: do not use TENTHS. */
18161 /* Length of QUOTIENT.TENTHS as a string. */
18167 if (1000 <= quotient
)
18169 /* Scale to the appropriate EXPONENT. */
18172 remainder
= quotient
% 1000;
18176 while (1000 <= quotient
);
18178 /* Round to nearest and decide whether to use TENTHS or not. */
18181 tenths
= remainder
/ 100;
18182 if (50 <= remainder
% 100)
18189 if (quotient
== 10)
18197 if (500 <= remainder
)
18199 if (quotient
< 999)
18210 /* Calculate the LENGTH of QUOTIENT.TENTHS as a string. */
18211 if (tenths
== -1 && quotient
<= 99)
18218 p
= psuffix
= buf
+ max (width
, length
);
18220 /* Print EXPONENT. */
18222 *psuffix
++ = power_letter
[exponent
];
18225 /* Print TENTHS. */
18228 *--p
= '0' + tenths
;
18232 /* Print QUOTIENT. */
18235 int digit
= quotient
% 10;
18236 *--p
= '0' + digit
;
18238 while ((quotient
/= 10) != 0);
18240 /* Print leading spaces. */
18245 /* Set a mnemonic character for coding_system (Lisp symbol) in BUF.
18246 If EOL_FLAG is 1, set also a mnemonic character for end-of-line
18247 type of CODING_SYSTEM. Return updated pointer into BUF. */
18249 static unsigned char invalid_eol_type
[] = "(*invalid*)";
18252 decode_mode_spec_coding (coding_system
, buf
, eol_flag
)
18253 Lisp_Object coding_system
;
18254 register char *buf
;
18258 int multibyte
= !NILP (current_buffer
->enable_multibyte_characters
);
18259 const unsigned char *eol_str
;
18261 /* The EOL conversion we are using. */
18262 Lisp_Object eoltype
;
18264 val
= CODING_SYSTEM_SPEC (coding_system
);
18267 if (!VECTORP (val
)) /* Not yet decided. */
18272 eoltype
= eol_mnemonic_undecided
;
18273 /* Don't mention EOL conversion if it isn't decided. */
18278 Lisp_Object eolvalue
;
18280 attrs
= AREF (val
, 0);
18281 eolvalue
= AREF (val
, 2);
18284 *buf
++ = XFASTINT (CODING_ATTR_MNEMONIC (attrs
));
18288 /* The EOL conversion that is normal on this system. */
18290 if (NILP (eolvalue
)) /* Not yet decided. */
18291 eoltype
= eol_mnemonic_undecided
;
18292 else if (VECTORP (eolvalue
)) /* Not yet decided. */
18293 eoltype
= eol_mnemonic_undecided
;
18294 else /* eolvalue is Qunix, Qdos, or Qmac. */
18295 eoltype
= (EQ (eolvalue
, Qunix
)
18296 ? eol_mnemonic_unix
18297 : (EQ (eolvalue
, Qdos
) == 1
18298 ? eol_mnemonic_dos
: eol_mnemonic_mac
));
18304 /* Mention the EOL conversion if it is not the usual one. */
18305 if (STRINGP (eoltype
))
18307 eol_str
= SDATA (eoltype
);
18308 eol_str_len
= SBYTES (eoltype
);
18310 else if (CHARACTERP (eoltype
))
18312 unsigned char *tmp
= (unsigned char *) alloca (MAX_MULTIBYTE_LENGTH
);
18313 eol_str_len
= CHAR_STRING (XINT (eoltype
), tmp
);
18318 eol_str
= invalid_eol_type
;
18319 eol_str_len
= sizeof (invalid_eol_type
) - 1;
18321 bcopy (eol_str
, buf
, eol_str_len
);
18322 buf
+= eol_str_len
;
18328 /* Return a string for the output of a mode line %-spec for window W,
18329 generated by character C. PRECISION >= 0 means don't return a
18330 string longer than that value. FIELD_WIDTH > 0 means pad the
18331 string returned with spaces to that value. Return 1 in *MULTIBYTE
18332 if the result is multibyte text.
18334 Note we operate on the current buffer for most purposes,
18335 the exception being w->base_line_pos. */
18337 static char lots_of_dashes
[] = "--------------------------------------------------------------------------------------------------------------------------------------------";
18340 decode_mode_spec (w
, c
, field_width
, precision
, multibyte
)
18343 int field_width
, precision
;
18347 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
18348 char *decode_mode_spec_buf
= f
->decode_mode_spec_buffer
;
18349 struct buffer
*b
= current_buffer
;
18357 if (!NILP (b
->read_only
))
18359 if (BUF_MODIFF (b
) > BUF_SAVE_MODIFF (b
))
18364 /* This differs from %* only for a modified read-only buffer. */
18365 if (BUF_MODIFF (b
) > BUF_SAVE_MODIFF (b
))
18367 if (!NILP (b
->read_only
))
18372 /* This differs from %* in ignoring read-only-ness. */
18373 if (BUF_MODIFF (b
) > BUF_SAVE_MODIFF (b
))
18385 if (command_loop_level
> 5)
18387 p
= decode_mode_spec_buf
;
18388 for (i
= 0; i
< command_loop_level
; i
++)
18391 return decode_mode_spec_buf
;
18399 if (command_loop_level
> 5)
18401 p
= decode_mode_spec_buf
;
18402 for (i
= 0; i
< command_loop_level
; i
++)
18405 return decode_mode_spec_buf
;
18412 /* Let lots_of_dashes be a string of infinite length. */
18413 if (mode_line_target
== MODE_LINE_NOPROP
||
18414 mode_line_target
== MODE_LINE_STRING
)
18416 if (field_width
<= 0
18417 || field_width
> sizeof (lots_of_dashes
))
18419 for (i
= 0; i
< FRAME_MESSAGE_BUF_SIZE (f
) - 1; ++i
)
18420 decode_mode_spec_buf
[i
] = '-';
18421 decode_mode_spec_buf
[i
] = '\0';
18422 return decode_mode_spec_buf
;
18425 return lots_of_dashes
;
18433 /* %c and %l are ignored in `frame-title-format'.
18434 (In redisplay_internal, the frame title is drawn _before_ the
18435 windows are updated, so the stuff which depends on actual
18436 window contents (such as %l) may fail to render properly, or
18437 even crash emacs.) */
18438 if (mode_line_target
== MODE_LINE_TITLE
)
18442 int col
= (int) current_column (); /* iftc */
18443 w
->column_number_displayed
= make_number (col
);
18444 pint2str (decode_mode_spec_buf
, field_width
, col
);
18445 return decode_mode_spec_buf
;
18449 #ifndef SYSTEM_MALLOC
18451 if (NILP (Vmemory_full
))
18454 return "!MEM FULL! ";
18461 /* %F displays the frame name. */
18462 if (!NILP (f
->title
))
18463 return (char *) SDATA (f
->title
);
18464 if (f
->explicit_name
|| ! FRAME_WINDOW_P (f
))
18465 return (char *) SDATA (f
->name
);
18474 int size
= ZV
- BEGV
;
18475 pint2str (decode_mode_spec_buf
, field_width
, size
);
18476 return decode_mode_spec_buf
;
18481 int size
= ZV
- BEGV
;
18482 pint2hrstr (decode_mode_spec_buf
, field_width
, size
);
18483 return decode_mode_spec_buf
;
18488 int startpos
, startpos_byte
, line
, linepos
, linepos_byte
;
18489 int topline
, nlines
, junk
, height
;
18491 /* %c and %l are ignored in `frame-title-format'. */
18492 if (mode_line_target
== MODE_LINE_TITLE
)
18495 startpos
= XMARKER (w
->start
)->charpos
;
18496 startpos_byte
= marker_byte_position (w
->start
);
18497 height
= WINDOW_TOTAL_LINES (w
);
18499 /* If we decided that this buffer isn't suitable for line numbers,
18500 don't forget that too fast. */
18501 if (EQ (w
->base_line_pos
, w
->buffer
))
18503 /* But do forget it, if the window shows a different buffer now. */
18504 else if (BUFFERP (w
->base_line_pos
))
18505 w
->base_line_pos
= Qnil
;
18507 /* If the buffer is very big, don't waste time. */
18508 if (INTEGERP (Vline_number_display_limit
)
18509 && BUF_ZV (b
) - BUF_BEGV (b
) > XINT (Vline_number_display_limit
))
18511 w
->base_line_pos
= Qnil
;
18512 w
->base_line_number
= Qnil
;
18516 if (INTEGERP (w
->base_line_number
)
18517 && INTEGERP (w
->base_line_pos
)
18518 && XFASTINT (w
->base_line_pos
) <= startpos
)
18520 line
= XFASTINT (w
->base_line_number
);
18521 linepos
= XFASTINT (w
->base_line_pos
);
18522 linepos_byte
= buf_charpos_to_bytepos (b
, linepos
);
18527 linepos
= BUF_BEGV (b
);
18528 linepos_byte
= BUF_BEGV_BYTE (b
);
18531 /* Count lines from base line to window start position. */
18532 nlines
= display_count_lines (linepos
, linepos_byte
,
18536 topline
= nlines
+ line
;
18538 /* Determine a new base line, if the old one is too close
18539 or too far away, or if we did not have one.
18540 "Too close" means it's plausible a scroll-down would
18541 go back past it. */
18542 if (startpos
== BUF_BEGV (b
))
18544 w
->base_line_number
= make_number (topline
);
18545 w
->base_line_pos
= make_number (BUF_BEGV (b
));
18547 else if (nlines
< height
+ 25 || nlines
> height
* 3 + 50
18548 || linepos
== BUF_BEGV (b
))
18550 int limit
= BUF_BEGV (b
);
18551 int limit_byte
= BUF_BEGV_BYTE (b
);
18553 int distance
= (height
* 2 + 30) * line_number_display_limit_width
;
18555 if (startpos
- distance
> limit
)
18557 limit
= startpos
- distance
;
18558 limit_byte
= CHAR_TO_BYTE (limit
);
18561 nlines
= display_count_lines (startpos
, startpos_byte
,
18563 - (height
* 2 + 30),
18565 /* If we couldn't find the lines we wanted within
18566 line_number_display_limit_width chars per line,
18567 give up on line numbers for this window. */
18568 if (position
== limit_byte
&& limit
== startpos
- distance
)
18570 w
->base_line_pos
= w
->buffer
;
18571 w
->base_line_number
= Qnil
;
18575 w
->base_line_number
= make_number (topline
- nlines
);
18576 w
->base_line_pos
= make_number (BYTE_TO_CHAR (position
));
18579 /* Now count lines from the start pos to point. */
18580 nlines
= display_count_lines (startpos
, startpos_byte
,
18581 PT_BYTE
, PT
, &junk
);
18583 /* Record that we did display the line number. */
18584 line_number_displayed
= 1;
18586 /* Make the string to show. */
18587 pint2str (decode_mode_spec_buf
, field_width
, topline
+ nlines
);
18588 return decode_mode_spec_buf
;
18591 char* p
= decode_mode_spec_buf
;
18592 int pad
= field_width
- 2;
18598 return decode_mode_spec_buf
;
18604 obj
= b
->mode_name
;
18608 if (BUF_BEGV (b
) > BUF_BEG (b
) || BUF_ZV (b
) < BUF_Z (b
))
18614 int pos
= marker_position (w
->start
);
18615 int total
= BUF_ZV (b
) - BUF_BEGV (b
);
18617 if (XFASTINT (w
->window_end_pos
) <= BUF_Z (b
) - BUF_ZV (b
))
18619 if (pos
<= BUF_BEGV (b
))
18624 else if (pos
<= BUF_BEGV (b
))
18628 if (total
> 1000000)
18629 /* Do it differently for a large value, to avoid overflow. */
18630 total
= ((pos
- BUF_BEGV (b
)) + (total
/ 100) - 1) / (total
/ 100);
18632 total
= ((pos
- BUF_BEGV (b
)) * 100 + total
- 1) / total
;
18633 /* We can't normally display a 3-digit number,
18634 so get us a 2-digit number that is close. */
18637 sprintf (decode_mode_spec_buf
, "%2d%%", total
);
18638 return decode_mode_spec_buf
;
18642 /* Display percentage of size above the bottom of the screen. */
18645 int toppos
= marker_position (w
->start
);
18646 int botpos
= BUF_Z (b
) - XFASTINT (w
->window_end_pos
);
18647 int total
= BUF_ZV (b
) - BUF_BEGV (b
);
18649 if (botpos
>= BUF_ZV (b
))
18651 if (toppos
<= BUF_BEGV (b
))
18658 if (total
> 1000000)
18659 /* Do it differently for a large value, to avoid overflow. */
18660 total
= ((botpos
- BUF_BEGV (b
)) + (total
/ 100) - 1) / (total
/ 100);
18662 total
= ((botpos
- BUF_BEGV (b
)) * 100 + total
- 1) / total
;
18663 /* We can't normally display a 3-digit number,
18664 so get us a 2-digit number that is close. */
18667 if (toppos
<= BUF_BEGV (b
))
18668 sprintf (decode_mode_spec_buf
, "Top%2d%%", total
);
18670 sprintf (decode_mode_spec_buf
, "%2d%%", total
);
18671 return decode_mode_spec_buf
;
18676 /* status of process */
18677 obj
= Fget_buffer_process (Fcurrent_buffer ());
18679 return "no process";
18680 #ifdef subprocesses
18681 obj
= Fsymbol_name (Fprocess_status (obj
));
18688 val
= call1 (intern ("file-remote-p"), current_buffer
->directory
);
18695 case 't': /* indicate TEXT or BINARY */
18696 #ifdef MODE_LINE_BINARY_TEXT
18697 return MODE_LINE_BINARY_TEXT (b
);
18703 /* coding-system (not including end-of-line format) */
18705 /* coding-system (including end-of-line type) */
18707 int eol_flag
= (c
== 'Z');
18708 char *p
= decode_mode_spec_buf
;
18710 if (! FRAME_WINDOW_P (f
))
18712 /* No need to mention EOL here--the terminal never needs
18713 to do EOL conversion. */
18714 p
= decode_mode_spec_coding (CODING_ID_NAME
18715 (FRAME_KEYBOARD_CODING (f
)->id
),
18717 p
= decode_mode_spec_coding (CODING_ID_NAME
18718 (FRAME_TERMINAL_CODING (f
)->id
),
18721 p
= decode_mode_spec_coding (b
->buffer_file_coding_system
,
18724 #if 0 /* This proves to be annoying; I think we can do without. -- rms. */
18725 #ifdef subprocesses
18726 obj
= Fget_buffer_process (Fcurrent_buffer ());
18727 if (PROCESSP (obj
))
18729 p
= decode_mode_spec_coding (XPROCESS (obj
)->decode_coding_system
,
18731 p
= decode_mode_spec_coding (XPROCESS (obj
)->encode_coding_system
,
18734 #endif /* subprocesses */
18737 return decode_mode_spec_buf
;
18743 *multibyte
= STRING_MULTIBYTE (obj
);
18744 return (char *) SDATA (obj
);
18751 /* Count up to COUNT lines starting from START / START_BYTE.
18752 But don't go beyond LIMIT_BYTE.
18753 Return the number of lines thus found (always nonnegative).
18755 Set *BYTE_POS_PTR to 1 if we found COUNT lines, 0 if we hit LIMIT. */
18758 display_count_lines (start
, start_byte
, limit_byte
, count
, byte_pos_ptr
)
18759 int start
, start_byte
, limit_byte
, count
;
18762 register unsigned char *cursor
;
18763 unsigned char *base
;
18765 register int ceiling
;
18766 register unsigned char *ceiling_addr
;
18767 int orig_count
= count
;
18769 /* If we are not in selective display mode,
18770 check only for newlines. */
18771 int selective_display
= (!NILP (current_buffer
->selective_display
)
18772 && !INTEGERP (current_buffer
->selective_display
));
18776 while (start_byte
< limit_byte
)
18778 ceiling
= BUFFER_CEILING_OF (start_byte
);
18779 ceiling
= min (limit_byte
- 1, ceiling
);
18780 ceiling_addr
= BYTE_POS_ADDR (ceiling
) + 1;
18781 base
= (cursor
= BYTE_POS_ADDR (start_byte
));
18784 if (selective_display
)
18785 while (*cursor
!= '\n' && *cursor
!= 015 && ++cursor
!= ceiling_addr
)
18788 while (*cursor
!= '\n' && ++cursor
!= ceiling_addr
)
18791 if (cursor
!= ceiling_addr
)
18795 start_byte
+= cursor
- base
+ 1;
18796 *byte_pos_ptr
= start_byte
;
18800 if (++cursor
== ceiling_addr
)
18806 start_byte
+= cursor
- base
;
18811 while (start_byte
> limit_byte
)
18813 ceiling
= BUFFER_FLOOR_OF (start_byte
- 1);
18814 ceiling
= max (limit_byte
, ceiling
);
18815 ceiling_addr
= BYTE_POS_ADDR (ceiling
) - 1;
18816 base
= (cursor
= BYTE_POS_ADDR (start_byte
- 1) + 1);
18819 if (selective_display
)
18820 while (--cursor
!= ceiling_addr
18821 && *cursor
!= '\n' && *cursor
!= 015)
18824 while (--cursor
!= ceiling_addr
&& *cursor
!= '\n')
18827 if (cursor
!= ceiling_addr
)
18831 start_byte
+= cursor
- base
+ 1;
18832 *byte_pos_ptr
= start_byte
;
18833 /* When scanning backwards, we should
18834 not count the newline posterior to which we stop. */
18835 return - orig_count
- 1;
18841 /* Here we add 1 to compensate for the last decrement
18842 of CURSOR, which took it past the valid range. */
18843 start_byte
+= cursor
- base
+ 1;
18847 *byte_pos_ptr
= limit_byte
;
18850 return - orig_count
+ count
;
18851 return orig_count
- count
;
18857 /***********************************************************************
18859 ***********************************************************************/
18861 /* Display a NUL-terminated string, starting with index START.
18863 If STRING is non-null, display that C string. Otherwise, the Lisp
18864 string LISP_STRING is displayed.
18866 If FACE_STRING is not nil, FACE_STRING_POS is a position in
18867 FACE_STRING. Display STRING or LISP_STRING with the face at
18868 FACE_STRING_POS in FACE_STRING:
18870 Display the string in the environment given by IT, but use the
18871 standard display table, temporarily.
18873 FIELD_WIDTH is the minimum number of output glyphs to produce.
18874 If STRING has fewer characters than FIELD_WIDTH, pad to the right
18875 with spaces. If STRING has more characters, more than FIELD_WIDTH
18876 glyphs will be produced. FIELD_WIDTH <= 0 means don't pad.
18878 PRECISION is the maximum number of characters to output from
18879 STRING. PRECISION < 0 means don't truncate the string.
18881 This is roughly equivalent to printf format specifiers:
18883 FIELD_WIDTH PRECISION PRINTF
18884 ----------------------------------------
18890 MULTIBYTE zero means do not display multibyte chars, > 0 means do
18891 display them, and < 0 means obey the current buffer's value of
18892 enable_multibyte_characters.
18894 Value is the number of columns displayed. */
18897 display_string (string
, lisp_string
, face_string
, face_string_pos
,
18898 start
, it
, field_width
, precision
, max_x
, multibyte
)
18899 unsigned char *string
;
18900 Lisp_Object lisp_string
;
18901 Lisp_Object face_string
;
18902 EMACS_INT face_string_pos
;
18905 int field_width
, precision
, max_x
;
18908 int hpos_at_start
= it
->hpos
;
18909 int saved_face_id
= it
->face_id
;
18910 struct glyph_row
*row
= it
->glyph_row
;
18912 /* Initialize the iterator IT for iteration over STRING beginning
18913 with index START. */
18914 reseat_to_string (it
, string
, lisp_string
, start
,
18915 precision
, field_width
, multibyte
);
18917 /* If displaying STRING, set up the face of the iterator
18918 from LISP_STRING, if that's given. */
18919 if (STRINGP (face_string
))
18925 = face_at_string_position (it
->w
, face_string
, face_string_pos
,
18926 0, it
->region_beg_charpos
,
18927 it
->region_end_charpos
,
18928 &endptr
, it
->base_face_id
, 0);
18929 face
= FACE_FROM_ID (it
->f
, it
->face_id
);
18930 it
->face_box_p
= face
->box
!= FACE_NO_BOX
;
18933 /* Set max_x to the maximum allowed X position. Don't let it go
18934 beyond the right edge of the window. */
18936 max_x
= it
->last_visible_x
;
18938 max_x
= min (max_x
, it
->last_visible_x
);
18940 /* Skip over display elements that are not visible. because IT->w is
18942 if (it
->current_x
< it
->first_visible_x
)
18943 move_it_in_display_line_to (it
, 100000, it
->first_visible_x
,
18944 MOVE_TO_POS
| MOVE_TO_X
);
18946 row
->ascent
= it
->max_ascent
;
18947 row
->height
= it
->max_ascent
+ it
->max_descent
;
18948 row
->phys_ascent
= it
->max_phys_ascent
;
18949 row
->phys_height
= it
->max_phys_ascent
+ it
->max_phys_descent
;
18950 row
->extra_line_spacing
= it
->max_extra_line_spacing
;
18952 /* This condition is for the case that we are called with current_x
18953 past last_visible_x. */
18954 while (it
->current_x
< max_x
)
18956 int x_before
, x
, n_glyphs_before
, i
, nglyphs
;
18958 /* Get the next display element. */
18959 if (!get_next_display_element (it
))
18962 /* Produce glyphs. */
18963 x_before
= it
->current_x
;
18964 n_glyphs_before
= it
->glyph_row
->used
[TEXT_AREA
];
18965 PRODUCE_GLYPHS (it
);
18967 nglyphs
= it
->glyph_row
->used
[TEXT_AREA
] - n_glyphs_before
;
18970 while (i
< nglyphs
)
18972 struct glyph
*glyph
= row
->glyphs
[TEXT_AREA
] + n_glyphs_before
+ i
;
18974 if (it
->line_wrap
!= TRUNCATE
18975 && x
+ glyph
->pixel_width
> max_x
)
18977 /* End of continued line or max_x reached. */
18978 if (CHAR_GLYPH_PADDING_P (*glyph
))
18980 /* A wide character is unbreakable. */
18981 it
->glyph_row
->used
[TEXT_AREA
] = n_glyphs_before
;
18982 it
->current_x
= x_before
;
18986 it
->glyph_row
->used
[TEXT_AREA
] = n_glyphs_before
+ i
;
18991 else if (x
+ glyph
->pixel_width
>= it
->first_visible_x
)
18993 /* Glyph is at least partially visible. */
18995 if (x
< it
->first_visible_x
)
18996 it
->glyph_row
->x
= x
- it
->first_visible_x
;
19000 /* Glyph is off the left margin of the display area.
19001 Should not happen. */
19005 row
->ascent
= max (row
->ascent
, it
->max_ascent
);
19006 row
->height
= max (row
->height
, it
->max_ascent
+ it
->max_descent
);
19007 row
->phys_ascent
= max (row
->phys_ascent
, it
->max_phys_ascent
);
19008 row
->phys_height
= max (row
->phys_height
,
19009 it
->max_phys_ascent
+ it
->max_phys_descent
);
19010 row
->extra_line_spacing
= max (row
->extra_line_spacing
,
19011 it
->max_extra_line_spacing
);
19012 x
+= glyph
->pixel_width
;
19016 /* Stop if max_x reached. */
19020 /* Stop at line ends. */
19021 if (ITERATOR_AT_END_OF_LINE_P (it
))
19023 it
->continuation_lines_width
= 0;
19027 set_iterator_to_next (it
, 1);
19029 /* Stop if truncating at the right edge. */
19030 if (it
->line_wrap
== TRUNCATE
19031 && it
->current_x
>= it
->last_visible_x
)
19033 /* Add truncation mark, but don't do it if the line is
19034 truncated at a padding space. */
19035 if (IT_CHARPOS (*it
) < it
->string_nchars
)
19037 if (!FRAME_WINDOW_P (it
->f
))
19041 if (it
->current_x
> it
->last_visible_x
)
19043 for (i
= row
->used
[TEXT_AREA
] - 1; i
> 0; --i
)
19044 if (!CHAR_GLYPH_PADDING_P (row
->glyphs
[TEXT_AREA
][i
]))
19046 for (n
= row
->used
[TEXT_AREA
]; i
< n
; ++i
)
19048 row
->used
[TEXT_AREA
] = i
;
19049 produce_special_glyphs (it
, IT_TRUNCATION
);
19052 produce_special_glyphs (it
, IT_TRUNCATION
);
19054 it
->glyph_row
->truncated_on_right_p
= 1;
19060 /* Maybe insert a truncation at the left. */
19061 if (it
->first_visible_x
19062 && IT_CHARPOS (*it
) > 0)
19064 if (!FRAME_WINDOW_P (it
->f
))
19065 insert_left_trunc_glyphs (it
);
19066 it
->glyph_row
->truncated_on_left_p
= 1;
19069 it
->face_id
= saved_face_id
;
19071 /* Value is number of columns displayed. */
19072 return it
->hpos
- hpos_at_start
;
19077 /* This is like a combination of memq and assq. Return 1/2 if PROPVAL
19078 appears as an element of LIST or as the car of an element of LIST.
19079 If PROPVAL is a list, compare each element against LIST in that
19080 way, and return 1/2 if any element of PROPVAL is found in LIST.
19081 Otherwise return 0. This function cannot quit.
19082 The return value is 2 if the text is invisible but with an ellipsis
19083 and 1 if it's invisible and without an ellipsis. */
19086 invisible_p (propval
, list
)
19087 register Lisp_Object propval
;
19090 register Lisp_Object tail
, proptail
;
19092 for (tail
= list
; CONSP (tail
); tail
= XCDR (tail
))
19094 register Lisp_Object tem
;
19096 if (EQ (propval
, tem
))
19098 if (CONSP (tem
) && EQ (propval
, XCAR (tem
)))
19099 return NILP (XCDR (tem
)) ? 1 : 2;
19102 if (CONSP (propval
))
19104 for (proptail
= propval
; CONSP (proptail
); proptail
= XCDR (proptail
))
19106 Lisp_Object propelt
;
19107 propelt
= XCAR (proptail
);
19108 for (tail
= list
; CONSP (tail
); tail
= XCDR (tail
))
19110 register Lisp_Object tem
;
19112 if (EQ (propelt
, tem
))
19114 if (CONSP (tem
) && EQ (propelt
, XCAR (tem
)))
19115 return NILP (XCDR (tem
)) ? 1 : 2;
19123 DEFUN ("invisible-p", Finvisible_p
, Sinvisible_p
, 1, 1, 0,
19124 doc
: /* Non-nil if the property makes the text invisible.
19125 POS-OR-PROP can be a marker or number, in which case it is taken to be
19126 a position in the current buffer and the value of the `invisible' property
19127 is checked; or it can be some other value, which is then presumed to be the
19128 value of the `invisible' property of the text of interest.
19129 The non-nil value returned can be t for truly invisible text or something
19130 else if the text is replaced by an ellipsis. */)
19132 Lisp_Object pos_or_prop
;
19135 = (NATNUMP (pos_or_prop
) || MARKERP (pos_or_prop
)
19136 ? Fget_char_property (pos_or_prop
, Qinvisible
, Qnil
)
19138 int invis
= TEXT_PROP_MEANS_INVISIBLE (prop
);
19139 return (invis
== 0 ? Qnil
19141 : make_number (invis
));
19144 /* Calculate a width or height in pixels from a specification using
19145 the following elements:
19148 NUM - a (fractional) multiple of the default font width/height
19149 (NUM) - specifies exactly NUM pixels
19150 UNIT - a fixed number of pixels, see below.
19151 ELEMENT - size of a display element in pixels, see below.
19152 (NUM . SPEC) - equals NUM * SPEC
19153 (+ SPEC SPEC ...) - add pixel values
19154 (- SPEC SPEC ...) - subtract pixel values
19155 (- SPEC) - negate pixel value
19158 INT or FLOAT - a number constant
19159 SYMBOL - use symbol's (buffer local) variable binding.
19162 in - pixels per inch *)
19163 mm - pixels per 1/1000 meter *)
19164 cm - pixels per 1/100 meter *)
19165 width - width of current font in pixels.
19166 height - height of current font in pixels.
19168 *) using the ratio(s) defined in display-pixels-per-inch.
19172 left-fringe - left fringe width in pixels
19173 right-fringe - right fringe width in pixels
19175 left-margin - left margin width in pixels
19176 right-margin - right margin width in pixels
19178 scroll-bar - scroll-bar area width in pixels
19182 Pixels corresponding to 5 inches:
19185 Total width of non-text areas on left side of window (if scroll-bar is on left):
19186 '(space :width (+ left-fringe left-margin scroll-bar))
19188 Align to first text column (in header line):
19189 '(space :align-to 0)
19191 Align to middle of text area minus half the width of variable `my-image'
19192 containing a loaded image:
19193 '(space :align-to (0.5 . (- text my-image)))
19195 Width of left margin minus width of 1 character in the default font:
19196 '(space :width (- left-margin 1))
19198 Width of left margin minus width of 2 characters in the current font:
19199 '(space :width (- left-margin (2 . width)))
19201 Center 1 character over left-margin (in header line):
19202 '(space :align-to (+ left-margin (0.5 . left-margin) -0.5))
19204 Different ways to express width of left fringe plus left margin minus one pixel:
19205 '(space :width (- (+ left-fringe left-margin) (1)))
19206 '(space :width (+ left-fringe left-margin (- (1))))
19207 '(space :width (+ left-fringe left-margin (-1)))
19211 #define NUMVAL(X) \
19212 ((INTEGERP (X) || FLOATP (X)) \
19217 calc_pixel_width_or_height (res
, it
, prop
, font
, width_p
, align_to
)
19222 int width_p
, *align_to
;
19226 #define OK_PIXELS(val) ((*res = (double)(val)), 1)
19227 #define OK_ALIGN_TO(val) ((*align_to = (int)(val)), 1)
19230 return OK_PIXELS (0);
19232 xassert (FRAME_LIVE_P (it
->f
));
19234 if (SYMBOLP (prop
))
19236 if (SCHARS (SYMBOL_NAME (prop
)) == 2)
19238 char *unit
= SDATA (SYMBOL_NAME (prop
));
19240 if (unit
[0] == 'i' && unit
[1] == 'n')
19242 else if (unit
[0] == 'm' && unit
[1] == 'm')
19244 else if (unit
[0] == 'c' && unit
[1] == 'm')
19251 #ifdef HAVE_WINDOW_SYSTEM
19252 if (FRAME_WINDOW_P (it
->f
)
19254 ? FRAME_X_DISPLAY_INFO (it
->f
)->resx
19255 : FRAME_X_DISPLAY_INFO (it
->f
)->resy
),
19257 return OK_PIXELS (ppi
/ pixels
);
19260 if ((ppi
= NUMVAL (Vdisplay_pixels_per_inch
), ppi
> 0)
19261 || (CONSP (Vdisplay_pixels_per_inch
)
19263 ? NUMVAL (XCAR (Vdisplay_pixels_per_inch
))
19264 : NUMVAL (XCDR (Vdisplay_pixels_per_inch
))),
19266 return OK_PIXELS (ppi
/ pixels
);
19272 #ifdef HAVE_WINDOW_SYSTEM
19273 if (EQ (prop
, Qheight
))
19274 return OK_PIXELS (font
? FONT_HEIGHT (font
) : FRAME_LINE_HEIGHT (it
->f
));
19275 if (EQ (prop
, Qwidth
))
19276 return OK_PIXELS (font
? FONT_WIDTH (font
) : FRAME_COLUMN_WIDTH (it
->f
));
19278 if (EQ (prop
, Qheight
) || EQ (prop
, Qwidth
))
19279 return OK_PIXELS (1);
19282 if (EQ (prop
, Qtext
))
19283 return OK_PIXELS (width_p
19284 ? window_box_width (it
->w
, TEXT_AREA
)
19285 : WINDOW_BOX_HEIGHT_NO_MODE_LINE (it
->w
));
19287 if (align_to
&& *align_to
< 0)
19290 if (EQ (prop
, Qleft
))
19291 return OK_ALIGN_TO (window_box_left_offset (it
->w
, TEXT_AREA
));
19292 if (EQ (prop
, Qright
))
19293 return OK_ALIGN_TO (window_box_right_offset (it
->w
, TEXT_AREA
));
19294 if (EQ (prop
, Qcenter
))
19295 return OK_ALIGN_TO (window_box_left_offset (it
->w
, TEXT_AREA
)
19296 + window_box_width (it
->w
, TEXT_AREA
) / 2);
19297 if (EQ (prop
, Qleft_fringe
))
19298 return OK_ALIGN_TO (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it
->w
)
19299 ? WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (it
->w
)
19300 : window_box_right_offset (it
->w
, LEFT_MARGIN_AREA
));
19301 if (EQ (prop
, Qright_fringe
))
19302 return OK_ALIGN_TO (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it
->w
)
19303 ? window_box_right_offset (it
->w
, RIGHT_MARGIN_AREA
)
19304 : window_box_right_offset (it
->w
, TEXT_AREA
));
19305 if (EQ (prop
, Qleft_margin
))
19306 return OK_ALIGN_TO (window_box_left_offset (it
->w
, LEFT_MARGIN_AREA
));
19307 if (EQ (prop
, Qright_margin
))
19308 return OK_ALIGN_TO (window_box_left_offset (it
->w
, RIGHT_MARGIN_AREA
));
19309 if (EQ (prop
, Qscroll_bar
))
19310 return OK_ALIGN_TO (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (it
->w
)
19312 : (window_box_right_offset (it
->w
, RIGHT_MARGIN_AREA
)
19313 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it
->w
)
19314 ? WINDOW_RIGHT_FRINGE_WIDTH (it
->w
)
19319 if (EQ (prop
, Qleft_fringe
))
19320 return OK_PIXELS (WINDOW_LEFT_FRINGE_WIDTH (it
->w
));
19321 if (EQ (prop
, Qright_fringe
))
19322 return OK_PIXELS (WINDOW_RIGHT_FRINGE_WIDTH (it
->w
));
19323 if (EQ (prop
, Qleft_margin
))
19324 return OK_PIXELS (WINDOW_LEFT_MARGIN_WIDTH (it
->w
));
19325 if (EQ (prop
, Qright_margin
))
19326 return OK_PIXELS (WINDOW_RIGHT_MARGIN_WIDTH (it
->w
));
19327 if (EQ (prop
, Qscroll_bar
))
19328 return OK_PIXELS (WINDOW_SCROLL_BAR_AREA_WIDTH (it
->w
));
19331 prop
= Fbuffer_local_value (prop
, it
->w
->buffer
);
19334 if (INTEGERP (prop
) || FLOATP (prop
))
19336 int base_unit
= (width_p
19337 ? FRAME_COLUMN_WIDTH (it
->f
)
19338 : FRAME_LINE_HEIGHT (it
->f
));
19339 return OK_PIXELS (XFLOATINT (prop
) * base_unit
);
19344 Lisp_Object car
= XCAR (prop
);
19345 Lisp_Object cdr
= XCDR (prop
);
19349 #ifdef HAVE_WINDOW_SYSTEM
19350 if (FRAME_WINDOW_P (it
->f
)
19351 && valid_image_p (prop
))
19353 int id
= lookup_image (it
->f
, prop
);
19354 struct image
*img
= IMAGE_FROM_ID (it
->f
, id
);
19356 return OK_PIXELS (width_p
? img
->width
: img
->height
);
19359 if (EQ (car
, Qplus
) || EQ (car
, Qminus
))
19365 while (CONSP (cdr
))
19367 if (!calc_pixel_width_or_height (&px
, it
, XCAR (cdr
),
19368 font
, width_p
, align_to
))
19371 pixels
= (EQ (car
, Qplus
) ? px
: -px
), first
= 0;
19376 if (EQ (car
, Qminus
))
19378 return OK_PIXELS (pixels
);
19381 car
= Fbuffer_local_value (car
, it
->w
->buffer
);
19384 if (INTEGERP (car
) || FLOATP (car
))
19387 pixels
= XFLOATINT (car
);
19389 return OK_PIXELS (pixels
);
19390 if (calc_pixel_width_or_height (&fact
, it
, cdr
,
19391 font
, width_p
, align_to
))
19392 return OK_PIXELS (pixels
* fact
);
19403 /***********************************************************************
19405 ***********************************************************************/
19407 #ifdef HAVE_WINDOW_SYSTEM
19412 dump_glyph_string (s
)
19413 struct glyph_string
*s
;
19415 fprintf (stderr
, "glyph string\n");
19416 fprintf (stderr
, " x, y, w, h = %d, %d, %d, %d\n",
19417 s
->x
, s
->y
, s
->width
, s
->height
);
19418 fprintf (stderr
, " ybase = %d\n", s
->ybase
);
19419 fprintf (stderr
, " hl = %d\n", s
->hl
);
19420 fprintf (stderr
, " left overhang = %d, right = %d\n",
19421 s
->left_overhang
, s
->right_overhang
);
19422 fprintf (stderr
, " nchars = %d\n", s
->nchars
);
19423 fprintf (stderr
, " extends to end of line = %d\n",
19424 s
->extends_to_end_of_line_p
);
19425 fprintf (stderr
, " font height = %d\n", FONT_HEIGHT (s
->font
));
19426 fprintf (stderr
, " bg width = %d\n", s
->background_width
);
19429 #endif /* GLYPH_DEBUG */
19431 /* Initialize glyph string S. CHAR2B is a suitably allocated vector
19432 of XChar2b structures for S; it can't be allocated in
19433 init_glyph_string because it must be allocated via `alloca'. W
19434 is the window on which S is drawn. ROW and AREA are the glyph row
19435 and area within the row from which S is constructed. START is the
19436 index of the first glyph structure covered by S. HL is a
19437 face-override for drawing S. */
19440 #define OPTIONAL_HDC(hdc) hdc,
19441 #define DECLARE_HDC(hdc) HDC hdc;
19442 #define ALLOCATE_HDC(hdc, f) hdc = get_frame_dc ((f))
19443 #define RELEASE_HDC(hdc, f) release_frame_dc ((f), (hdc))
19446 #ifndef OPTIONAL_HDC
19447 #define OPTIONAL_HDC(hdc)
19448 #define DECLARE_HDC(hdc)
19449 #define ALLOCATE_HDC(hdc, f)
19450 #define RELEASE_HDC(hdc, f)
19454 init_glyph_string (s
, OPTIONAL_HDC (hdc
) char2b
, w
, row
, area
, start
, hl
)
19455 struct glyph_string
*s
;
19459 struct glyph_row
*row
;
19460 enum glyph_row_area area
;
19462 enum draw_glyphs_face hl
;
19464 bzero (s
, sizeof *s
);
19466 s
->f
= XFRAME (w
->frame
);
19470 s
->display
= FRAME_X_DISPLAY (s
->f
);
19471 s
->window
= FRAME_X_WINDOW (s
->f
);
19472 s
->char2b
= char2b
;
19476 s
->first_glyph
= row
->glyphs
[area
] + start
;
19477 s
->height
= row
->height
;
19478 s
->y
= WINDOW_TO_FRAME_PIXEL_Y (w
, row
->y
);
19480 /* Display the internal border below the tool-bar window. */
19481 if (WINDOWP (s
->f
->tool_bar_window
)
19482 && s
->w
== XWINDOW (s
->f
->tool_bar_window
))
19483 s
->y
-= FRAME_INTERNAL_BORDER_WIDTH (s
->f
);
19485 s
->ybase
= s
->y
+ row
->ascent
;
19489 /* Append the list of glyph strings with head H and tail T to the list
19490 with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the result. */
19493 append_glyph_string_lists (head
, tail
, h
, t
)
19494 struct glyph_string
**head
, **tail
;
19495 struct glyph_string
*h
, *t
;
19509 /* Prepend the list of glyph strings with head H and tail T to the
19510 list with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the
19514 prepend_glyph_string_lists (head
, tail
, h
, t
)
19515 struct glyph_string
**head
, **tail
;
19516 struct glyph_string
*h
, *t
;
19530 /* Append glyph string S to the list with head *HEAD and tail *TAIL.
19531 Set *HEAD and *TAIL to the resulting list. */
19534 append_glyph_string (head
, tail
, s
)
19535 struct glyph_string
**head
, **tail
;
19536 struct glyph_string
*s
;
19538 s
->next
= s
->prev
= NULL
;
19539 append_glyph_string_lists (head
, tail
, s
, s
);
19543 /* Get face and two-byte form of character C in face FACE_ID on frame
19544 F. The encoding of C is returned in *CHAR2B. MULTIBYTE_P non-zero
19545 means we want to display multibyte text. DISPLAY_P non-zero means
19546 make sure that X resources for the face returned are allocated.
19547 Value is a pointer to a realized face that is ready for display if
19548 DISPLAY_P is non-zero. */
19550 static INLINE
struct face
*
19551 get_char_face_and_encoding (f
, c
, face_id
, char2b
, multibyte_p
, display_p
)
19555 int multibyte_p
, display_p
;
19557 struct face
*face
= FACE_FROM_ID (f
, face_id
);
19561 unsigned code
= face
->font
->driver
->encode_char (face
->font
, c
);
19563 if (code
!= FONT_INVALID_CODE
)
19564 STORE_XCHAR2B (char2b
, (code
>> 8), (code
& 0xFF));
19566 STORE_XCHAR2B (char2b
, 0, 0);
19569 /* Make sure X resources of the face are allocated. */
19570 #ifdef HAVE_X_WINDOWS
19574 xassert (face
!= NULL
);
19575 PREPARE_FACE_FOR_DISPLAY (f
, face
);
19582 /* Get face and two-byte form of character glyph GLYPH on frame F.
19583 The encoding of GLYPH->u.ch is returned in *CHAR2B. Value is
19584 a pointer to a realized face that is ready for display. */
19586 static INLINE
struct face
*
19587 get_glyph_face_and_encoding (f
, glyph
, char2b
, two_byte_p
)
19589 struct glyph
*glyph
;
19595 xassert (glyph
->type
== CHAR_GLYPH
);
19596 face
= FACE_FROM_ID (f
, glyph
->face_id
);
19603 unsigned code
= face
->font
->driver
->encode_char (face
->font
, glyph
->u
.ch
);
19605 if (code
!= FONT_INVALID_CODE
)
19606 STORE_XCHAR2B (char2b
, (code
>> 8), (code
& 0xFF));
19608 STORE_XCHAR2B (char2b
, 0, 0);
19611 /* Make sure X resources of the face are allocated. */
19612 xassert (face
!= NULL
);
19613 PREPARE_FACE_FOR_DISPLAY (f
, face
);
19618 /* Fill glyph string S with composition components specified by S->cmp.
19620 BASE_FACE is the base face of the composition.
19621 S->cmp_from is the index of the first component for S.
19623 OVERLAPS non-zero means S should draw the foreground only, and use
19624 its physical height for clipping. See also draw_glyphs.
19626 Value is the index of a component not in S. */
19629 fill_composite_glyph_string (s
, base_face
, overlaps
)
19630 struct glyph_string
*s
;
19631 struct face
*base_face
;
19635 /* For all glyphs of this composition, starting at the offset
19636 S->cmp_from, until we reach the end of the definition or encounter a
19637 glyph that requires the different face, add it to S. */
19642 s
->for_overlaps
= overlaps
;
19645 for (i
= s
->cmp_from
; i
< s
->cmp
->glyph_len
; i
++)
19647 int c
= COMPOSITION_GLYPH (s
->cmp
, i
);
19651 int face_id
= FACE_FOR_CHAR (s
->f
, base_face
->ascii_face
, c
,
19654 face
= get_char_face_and_encoding (s
->f
, c
, face_id
,
19655 s
->char2b
+ i
, 1, 1);
19661 s
->font
= s
->face
->font
;
19663 else if (s
->face
!= face
)
19671 /* All glyph strings for the same composition has the same width,
19672 i.e. the width set for the first component of the composition. */
19673 s
->width
= s
->first_glyph
->pixel_width
;
19675 /* If the specified font could not be loaded, use the frame's
19676 default font, but record the fact that we couldn't load it in
19677 the glyph string so that we can draw rectangles for the
19678 characters of the glyph string. */
19679 if (s
->font
== NULL
)
19681 s
->font_not_found_p
= 1;
19682 s
->font
= FRAME_FONT (s
->f
);
19685 /* Adjust base line for subscript/superscript text. */
19686 s
->ybase
+= s
->first_glyph
->voffset
;
19688 /* This glyph string must always be drawn with 16-bit functions. */
19695 fill_gstring_glyph_string (s
, face_id
, start
, end
, overlaps
)
19696 struct glyph_string
*s
;
19698 int start
, end
, overlaps
;
19700 struct glyph
*glyph
, *last
;
19701 Lisp_Object lgstring
;
19704 s
->for_overlaps
= overlaps
;
19705 glyph
= s
->row
->glyphs
[s
->area
] + start
;
19706 last
= s
->row
->glyphs
[s
->area
] + end
;
19707 s
->cmp_id
= glyph
->u
.cmp
.id
;
19708 s
->cmp_from
= glyph
->u
.cmp
.from
;
19709 s
->cmp_to
= glyph
->u
.cmp
.to
+ 1;
19710 s
->face
= FACE_FROM_ID (s
->f
, face_id
);
19711 lgstring
= composition_gstring_from_id (s
->cmp_id
);
19712 s
->font
= XFONT_OBJECT (LGSTRING_FONT (lgstring
));
19714 while (glyph
< last
19715 && glyph
->u
.cmp
.automatic
19716 && glyph
->u
.cmp
.id
== s
->cmp_id
19717 && s
->cmp_to
== glyph
->u
.cmp
.from
)
19718 s
->cmp_to
= (glyph
++)->u
.cmp
.to
+ 1;
19720 for (i
= s
->cmp_from
; i
< s
->cmp_to
; i
++)
19722 Lisp_Object lglyph
= LGSTRING_GLYPH (lgstring
, i
);
19723 unsigned code
= LGLYPH_CODE (lglyph
);
19725 STORE_XCHAR2B ((s
->char2b
+ i
), code
>> 8, code
& 0xFF);
19727 s
->width
= composition_gstring_width (lgstring
, s
->cmp_from
, s
->cmp_to
, NULL
);
19728 return glyph
- s
->row
->glyphs
[s
->area
];
19732 /* Fill glyph string S from a sequence of character glyphs.
19734 FACE_ID is the face id of the string. START is the index of the
19735 first glyph to consider, END is the index of the last + 1.
19736 OVERLAPS non-zero means S should draw the foreground only, and use
19737 its physical height for clipping. See also draw_glyphs.
19739 Value is the index of the first glyph not in S. */
19742 fill_glyph_string (s
, face_id
, start
, end
, overlaps
)
19743 struct glyph_string
*s
;
19745 int start
, end
, overlaps
;
19747 struct glyph
*glyph
, *last
;
19749 int glyph_not_available_p
;
19751 xassert (s
->f
== XFRAME (s
->w
->frame
));
19752 xassert (s
->nchars
== 0);
19753 xassert (start
>= 0 && end
> start
);
19755 s
->for_overlaps
= overlaps
;
19756 glyph
= s
->row
->glyphs
[s
->area
] + start
;
19757 last
= s
->row
->glyphs
[s
->area
] + end
;
19758 voffset
= glyph
->voffset
;
19759 s
->padding_p
= glyph
->padding_p
;
19760 glyph_not_available_p
= glyph
->glyph_not_available_p
;
19762 while (glyph
< last
19763 && glyph
->type
== CHAR_GLYPH
19764 && glyph
->voffset
== voffset
19765 /* Same face id implies same font, nowadays. */
19766 && glyph
->face_id
== face_id
19767 && glyph
->glyph_not_available_p
== glyph_not_available_p
)
19771 s
->face
= get_glyph_face_and_encoding (s
->f
, glyph
,
19772 s
->char2b
+ s
->nchars
,
19774 s
->two_byte_p
= two_byte_p
;
19776 xassert (s
->nchars
<= end
- start
);
19777 s
->width
+= glyph
->pixel_width
;
19778 if (glyph
++->padding_p
!= s
->padding_p
)
19782 s
->font
= s
->face
->font
;
19784 /* If the specified font could not be loaded, use the frame's font,
19785 but record the fact that we couldn't load it in
19786 S->font_not_found_p so that we can draw rectangles for the
19787 characters of the glyph string. */
19788 if (s
->font
== NULL
|| glyph_not_available_p
)
19790 s
->font_not_found_p
= 1;
19791 s
->font
= FRAME_FONT (s
->f
);
19794 /* Adjust base line for subscript/superscript text. */
19795 s
->ybase
+= voffset
;
19797 xassert (s
->face
&& s
->face
->gc
);
19798 return glyph
- s
->row
->glyphs
[s
->area
];
19802 /* Fill glyph string S from image glyph S->first_glyph. */
19805 fill_image_glyph_string (s
)
19806 struct glyph_string
*s
;
19808 xassert (s
->first_glyph
->type
== IMAGE_GLYPH
);
19809 s
->img
= IMAGE_FROM_ID (s
->f
, s
->first_glyph
->u
.img_id
);
19811 s
->slice
= s
->first_glyph
->slice
;
19812 s
->face
= FACE_FROM_ID (s
->f
, s
->first_glyph
->face_id
);
19813 s
->font
= s
->face
->font
;
19814 s
->width
= s
->first_glyph
->pixel_width
;
19816 /* Adjust base line for subscript/superscript text. */
19817 s
->ybase
+= s
->first_glyph
->voffset
;
19821 /* Fill glyph string S from a sequence of stretch glyphs.
19823 ROW is the glyph row in which the glyphs are found, AREA is the
19824 area within the row. START is the index of the first glyph to
19825 consider, END is the index of the last + 1.
19827 Value is the index of the first glyph not in S. */
19830 fill_stretch_glyph_string (s
, row
, area
, start
, end
)
19831 struct glyph_string
*s
;
19832 struct glyph_row
*row
;
19833 enum glyph_row_area area
;
19836 struct glyph
*glyph
, *last
;
19837 int voffset
, face_id
;
19839 xassert (s
->first_glyph
->type
== STRETCH_GLYPH
);
19841 glyph
= s
->row
->glyphs
[s
->area
] + start
;
19842 last
= s
->row
->glyphs
[s
->area
] + end
;
19843 face_id
= glyph
->face_id
;
19844 s
->face
= FACE_FROM_ID (s
->f
, face_id
);
19845 s
->font
= s
->face
->font
;
19846 s
->width
= glyph
->pixel_width
;
19848 voffset
= glyph
->voffset
;
19852 && glyph
->type
== STRETCH_GLYPH
19853 && glyph
->voffset
== voffset
19854 && glyph
->face_id
== face_id
);
19856 s
->width
+= glyph
->pixel_width
;
19858 /* Adjust base line for subscript/superscript text. */
19859 s
->ybase
+= voffset
;
19861 /* The case that face->gc == 0 is handled when drawing the glyph
19862 string by calling PREPARE_FACE_FOR_DISPLAY. */
19864 return glyph
- s
->row
->glyphs
[s
->area
];
19867 static struct font_metrics
*
19868 get_per_char_metric (f
, font
, char2b
)
19873 static struct font_metrics metrics
;
19874 unsigned code
= (XCHAR2B_BYTE1 (char2b
) << 8) | XCHAR2B_BYTE2 (char2b
);
19876 if (! font
|| code
== FONT_INVALID_CODE
)
19878 font
->driver
->text_extents (font
, &code
, 1, &metrics
);
19883 Set *LEFT and *RIGHT to the left and right overhang of GLYPH on
19884 frame F. Overhangs of glyphs other than type CHAR_GLYPH are
19885 assumed to be zero. */
19888 x_get_glyph_overhangs (glyph
, f
, left
, right
)
19889 struct glyph
*glyph
;
19893 *left
= *right
= 0;
19895 if (glyph
->type
== CHAR_GLYPH
)
19899 struct font_metrics
*pcm
;
19901 face
= get_glyph_face_and_encoding (f
, glyph
, &char2b
, NULL
);
19902 if (face
->font
&& (pcm
= get_per_char_metric (f
, face
->font
, &char2b
)))
19904 if (pcm
->rbearing
> pcm
->width
)
19905 *right
= pcm
->rbearing
- pcm
->width
;
19906 if (pcm
->lbearing
< 0)
19907 *left
= -pcm
->lbearing
;
19910 else if (glyph
->type
== COMPOSITE_GLYPH
)
19912 if (! glyph
->u
.cmp
.automatic
)
19914 struct composition
*cmp
= composition_table
[glyph
->u
.cmp
.id
];
19916 if (cmp
->rbearing
> cmp
->pixel_width
)
19917 *right
= cmp
->rbearing
- cmp
->pixel_width
;
19918 if (cmp
->lbearing
< 0)
19919 *left
= - cmp
->lbearing
;
19923 Lisp_Object gstring
= composition_gstring_from_id (glyph
->u
.cmp
.id
);
19924 struct font_metrics metrics
;
19926 composition_gstring_width (gstring
, glyph
->u
.cmp
.from
,
19927 glyph
->u
.cmp
.to
+ 1, &metrics
);
19928 if (metrics
.rbearing
> metrics
.width
)
19929 *right
= metrics
.rbearing
- metrics
.width
;
19930 if (metrics
.lbearing
< 0)
19931 *left
= - metrics
.lbearing
;
19937 /* Return the index of the first glyph preceding glyph string S that
19938 is overwritten by S because of S's left overhang. Value is -1
19939 if no glyphs are overwritten. */
19942 left_overwritten (s
)
19943 struct glyph_string
*s
;
19947 if (s
->left_overhang
)
19950 struct glyph
*glyphs
= s
->row
->glyphs
[s
->area
];
19951 int first
= s
->first_glyph
- glyphs
;
19953 for (i
= first
- 1; i
>= 0 && x
> -s
->left_overhang
; --i
)
19954 x
-= glyphs
[i
].pixel_width
;
19965 /* Return the index of the first glyph preceding glyph string S that
19966 is overwriting S because of its right overhang. Value is -1 if no
19967 glyph in front of S overwrites S. */
19970 left_overwriting (s
)
19971 struct glyph_string
*s
;
19974 struct glyph
*glyphs
= s
->row
->glyphs
[s
->area
];
19975 int first
= s
->first_glyph
- glyphs
;
19979 for (i
= first
- 1; i
>= 0; --i
)
19982 x_get_glyph_overhangs (glyphs
+ i
, s
->f
, &left
, &right
);
19985 x
-= glyphs
[i
].pixel_width
;
19992 /* Return the index of the last glyph following glyph string S that is
19993 overwritten by S because of S's right overhang. Value is -1 if
19994 no such glyph is found. */
19997 right_overwritten (s
)
19998 struct glyph_string
*s
;
20002 if (s
->right_overhang
)
20005 struct glyph
*glyphs
= s
->row
->glyphs
[s
->area
];
20006 int first
= (s
->first_glyph
- glyphs
) + (s
->cmp
? 1 : s
->nchars
);
20007 int end
= s
->row
->used
[s
->area
];
20009 for (i
= first
; i
< end
&& s
->right_overhang
> x
; ++i
)
20010 x
+= glyphs
[i
].pixel_width
;
20019 /* Return the index of the last glyph following glyph string S that
20020 overwrites S because of its left overhang. Value is negative
20021 if no such glyph is found. */
20024 right_overwriting (s
)
20025 struct glyph_string
*s
;
20028 int end
= s
->row
->used
[s
->area
];
20029 struct glyph
*glyphs
= s
->row
->glyphs
[s
->area
];
20030 int first
= (s
->first_glyph
- glyphs
) + (s
->cmp
? 1 : s
->nchars
);
20034 for (i
= first
; i
< end
; ++i
)
20037 x_get_glyph_overhangs (glyphs
+ i
, s
->f
, &left
, &right
);
20040 x
+= glyphs
[i
].pixel_width
;
20047 /* Set background width of glyph string S. START is the index of the
20048 first glyph following S. LAST_X is the right-most x-position + 1
20049 in the drawing area. */
20052 set_glyph_string_background_width (s
, start
, last_x
)
20053 struct glyph_string
*s
;
20057 /* If the face of this glyph string has to be drawn to the end of
20058 the drawing area, set S->extends_to_end_of_line_p. */
20060 if (start
== s
->row
->used
[s
->area
]
20061 && s
->area
== TEXT_AREA
20062 && ((s
->row
->fill_line_p
20063 && (s
->hl
== DRAW_NORMAL_TEXT
20064 || s
->hl
== DRAW_IMAGE_RAISED
20065 || s
->hl
== DRAW_IMAGE_SUNKEN
))
20066 || s
->hl
== DRAW_MOUSE_FACE
))
20067 s
->extends_to_end_of_line_p
= 1;
20069 /* If S extends its face to the end of the line, set its
20070 background_width to the distance to the right edge of the drawing
20072 if (s
->extends_to_end_of_line_p
)
20073 s
->background_width
= last_x
- s
->x
+ 1;
20075 s
->background_width
= s
->width
;
20079 /* Compute overhangs and x-positions for glyph string S and its
20080 predecessors, or successors. X is the starting x-position for S.
20081 BACKWARD_P non-zero means process predecessors. */
20084 compute_overhangs_and_x (s
, x
, backward_p
)
20085 struct glyph_string
*s
;
20093 if (FRAME_RIF (s
->f
)->compute_glyph_string_overhangs
)
20094 FRAME_RIF (s
->f
)->compute_glyph_string_overhangs (s
);
20104 if (FRAME_RIF (s
->f
)->compute_glyph_string_overhangs
)
20105 FRAME_RIF (s
->f
)->compute_glyph_string_overhangs (s
);
20115 /* The following macros are only called from draw_glyphs below.
20116 They reference the following parameters of that function directly:
20117 `w', `row', `area', and `overlap_p'
20118 as well as the following local variables:
20119 `s', `f', and `hdc' (in W32) */
20122 /* On W32, silently add local `hdc' variable to argument list of
20123 init_glyph_string. */
20124 #define INIT_GLYPH_STRING(s, char2b, w, row, area, start, hl) \
20125 init_glyph_string (s, hdc, char2b, w, row, area, start, hl)
20127 #define INIT_GLYPH_STRING(s, char2b, w, row, area, start, hl) \
20128 init_glyph_string (s, char2b, w, row, area, start, hl)
20131 /* Add a glyph string for a stretch glyph to the list of strings
20132 between HEAD and TAIL. START is the index of the stretch glyph in
20133 row area AREA of glyph row ROW. END is the index of the last glyph
20134 in that glyph row area. X is the current output position assigned
20135 to the new glyph string constructed. HL overrides that face of the
20136 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
20137 is the right-most x-position of the drawing area. */
20139 /* SunOS 4 bundled cc, barfed on continuations in the arg lists here
20140 and below -- keep them on one line. */
20141 #define BUILD_STRETCH_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
20144 s = (struct glyph_string *) alloca (sizeof *s); \
20145 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
20146 START = fill_stretch_glyph_string (s, row, area, START, END); \
20147 append_glyph_string (&HEAD, &TAIL, s); \
20153 /* Add a glyph string for an image glyph to the list of strings
20154 between HEAD and TAIL. START is the index of the image glyph in
20155 row area AREA of glyph row ROW. END is the index of the last glyph
20156 in that glyph row area. X is the current output position assigned
20157 to the new glyph string constructed. HL overrides that face of the
20158 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
20159 is the right-most x-position of the drawing area. */
20161 #define BUILD_IMAGE_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
20164 s = (struct glyph_string *) alloca (sizeof *s); \
20165 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
20166 fill_image_glyph_string (s); \
20167 append_glyph_string (&HEAD, &TAIL, s); \
20174 /* Add a glyph string for a sequence of character glyphs to the list
20175 of strings between HEAD and TAIL. START is the index of the first
20176 glyph in row area AREA of glyph row ROW that is part of the new
20177 glyph string. END is the index of the last glyph in that glyph row
20178 area. X is the current output position assigned to the new glyph
20179 string constructed. HL overrides that face of the glyph; e.g. it
20180 is DRAW_CURSOR if a cursor has to be drawn. LAST_X is the
20181 right-most x-position of the drawing area. */
20183 #define BUILD_CHAR_GLYPH_STRINGS(START, END, HEAD, TAIL, HL, X, LAST_X) \
20189 face_id = (row)->glyphs[area][START].face_id; \
20191 s = (struct glyph_string *) alloca (sizeof *s); \
20192 char2b = (XChar2b *) alloca ((END - START) * sizeof *char2b); \
20193 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
20194 append_glyph_string (&HEAD, &TAIL, s); \
20196 START = fill_glyph_string (s, face_id, START, END, overlaps); \
20201 /* Add a glyph string for a composite sequence to the list of strings
20202 between HEAD and TAIL. START is the index of the first glyph in
20203 row area AREA of glyph row ROW that is part of the new glyph
20204 string. END is the index of the last glyph in that glyph row area.
20205 X is the current output position assigned to the new glyph string
20206 constructed. HL overrides that face of the glyph; e.g. it is
20207 DRAW_CURSOR if a cursor has to be drawn. LAST_X is the right-most
20208 x-position of the drawing area. */
20210 #define BUILD_COMPOSITE_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
20212 int face_id = (row)->glyphs[area][START].face_id; \
20213 struct face *base_face = FACE_FROM_ID (f, face_id); \
20214 int cmp_id = (row)->glyphs[area][START].u.cmp.id; \
20215 struct composition *cmp = composition_table[cmp_id]; \
20217 struct glyph_string *first_s; \
20220 char2b = (XChar2b *) alloca ((sizeof *char2b) * cmp->glyph_len); \
20222 /* Make glyph_strings for each glyph sequence that is drawable by \
20223 the same face, and append them to HEAD/TAIL. */ \
20224 for (n = 0; n < cmp->glyph_len;) \
20226 s = (struct glyph_string *) alloca (sizeof *s); \
20227 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
20228 append_glyph_string (&(HEAD), &(TAIL), s); \
20234 n = fill_composite_glyph_string (s, base_face, overlaps); \
20242 /* Add a glyph string for a glyph-string sequence to the list of strings
20243 between HEAD and TAIL. */
20245 #define BUILD_GSTRING_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
20249 Lisp_Object gstring; \
20251 face_id = (row)->glyphs[area][START].face_id; \
20252 gstring = (composition_gstring_from_id \
20253 ((row)->glyphs[area][START].u.cmp.id)); \
20254 s = (struct glyph_string *) alloca (sizeof *s); \
20255 char2b = (XChar2b *) alloca ((sizeof *char2b) \
20256 * LGSTRING_GLYPH_LEN (gstring)); \
20257 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
20258 append_glyph_string (&(HEAD), &(TAIL), s); \
20260 START = fill_gstring_glyph_string (s, face_id, START, END, overlaps); \
20264 /* Build a list of glyph strings between HEAD and TAIL for the glyphs
20265 of AREA of glyph row ROW on window W between indices START and END.
20266 HL overrides the face for drawing glyph strings, e.g. it is
20267 DRAW_CURSOR to draw a cursor. X and LAST_X are start and end
20268 x-positions of the drawing area.
20270 This is an ugly monster macro construct because we must use alloca
20271 to allocate glyph strings (because draw_glyphs can be called
20272 asynchronously). */
20274 #define BUILD_GLYPH_STRINGS(START, END, HEAD, TAIL, HL, X, LAST_X) \
20277 HEAD = TAIL = NULL; \
20278 while (START < END) \
20280 struct glyph *first_glyph = (row)->glyphs[area] + START; \
20281 switch (first_glyph->type) \
20284 BUILD_CHAR_GLYPH_STRINGS (START, END, HEAD, TAIL, \
20288 case COMPOSITE_GLYPH: \
20289 if (first_glyph->u.cmp.automatic) \
20290 BUILD_GSTRING_GLYPH_STRING (START, END, HEAD, TAIL, \
20293 BUILD_COMPOSITE_GLYPH_STRING (START, END, HEAD, TAIL, \
20297 case STRETCH_GLYPH: \
20298 BUILD_STRETCH_GLYPH_STRING (START, END, HEAD, TAIL, \
20302 case IMAGE_GLYPH: \
20303 BUILD_IMAGE_GLYPH_STRING (START, END, HEAD, TAIL, \
20313 set_glyph_string_background_width (s, START, LAST_X); \
20320 /* Draw glyphs between START and END in AREA of ROW on window W,
20321 starting at x-position X. X is relative to AREA in W. HL is a
20322 face-override with the following meaning:
20324 DRAW_NORMAL_TEXT draw normally
20325 DRAW_CURSOR draw in cursor face
20326 DRAW_MOUSE_FACE draw in mouse face.
20327 DRAW_INVERSE_VIDEO draw in mode line face
20328 DRAW_IMAGE_SUNKEN draw an image with a sunken relief around it
20329 DRAW_IMAGE_RAISED draw an image with a raised relief around it
20331 If OVERLAPS is non-zero, draw only the foreground of characters and
20332 clip to the physical height of ROW. Non-zero value also defines
20333 the overlapping part to be drawn:
20335 OVERLAPS_PRED overlap with preceding rows
20336 OVERLAPS_SUCC overlap with succeeding rows
20337 OVERLAPS_BOTH overlap with both preceding/succeeding rows
20338 OVERLAPS_ERASED_CURSOR overlap with erased cursor area
20340 Value is the x-position reached, relative to AREA of W. */
20343 draw_glyphs (w
, x
, row
, area
, start
, end
, hl
, overlaps
)
20346 struct glyph_row
*row
;
20347 enum glyph_row_area area
;
20348 EMACS_INT start
, end
;
20349 enum draw_glyphs_face hl
;
20352 struct glyph_string
*head
, *tail
;
20353 struct glyph_string
*s
;
20354 struct glyph_string
*clip_head
= NULL
, *clip_tail
= NULL
;
20355 int i
, j
, x_reached
, last_x
, area_left
= 0;
20356 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
20359 ALLOCATE_HDC (hdc
, f
);
20361 /* Let's rather be paranoid than getting a SEGV. */
20362 end
= min (end
, row
->used
[area
]);
20363 start
= max (0, start
);
20364 start
= min (end
, start
);
20366 /* Translate X to frame coordinates. Set last_x to the right
20367 end of the drawing area. */
20368 if (row
->full_width_p
)
20370 /* X is relative to the left edge of W, without scroll bars
20372 area_left
= WINDOW_LEFT_EDGE_X (w
);
20373 last_x
= WINDOW_LEFT_EDGE_X (w
) + WINDOW_TOTAL_WIDTH (w
);
20377 area_left
= window_box_left (w
, area
);
20378 last_x
= area_left
+ window_box_width (w
, area
);
20382 /* Build a doubly-linked list of glyph_string structures between
20383 head and tail from what we have to draw. Note that the macro
20384 BUILD_GLYPH_STRINGS will modify its start parameter. That's
20385 the reason we use a separate variable `i'. */
20387 BUILD_GLYPH_STRINGS (i
, end
, head
, tail
, hl
, x
, last_x
);
20389 x_reached
= tail
->x
+ tail
->background_width
;
20393 /* If there are any glyphs with lbearing < 0 or rbearing > width in
20394 the row, redraw some glyphs in front or following the glyph
20395 strings built above. */
20396 if (head
&& !overlaps
&& row
->contains_overlapping_glyphs_p
)
20398 struct glyph_string
*h
, *t
;
20399 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
20400 int mouse_beg_col
, mouse_end_col
, check_mouse_face
= 0;
20403 /* If mouse highlighting is on, we may need to draw adjacent
20404 glyphs using mouse-face highlighting. */
20405 if (area
== TEXT_AREA
&& row
->mouse_face_p
)
20407 struct glyph_row
*mouse_beg_row
, *mouse_end_row
;
20409 mouse_beg_row
= MATRIX_ROW (w
->current_matrix
, dpyinfo
->mouse_face_beg_row
);
20410 mouse_end_row
= MATRIX_ROW (w
->current_matrix
, dpyinfo
->mouse_face_end_row
);
20412 if (row
>= mouse_beg_row
&& row
<= mouse_end_row
)
20414 check_mouse_face
= 1;
20415 mouse_beg_col
= (row
== mouse_beg_row
)
20416 ? dpyinfo
->mouse_face_beg_col
: 0;
20417 mouse_end_col
= (row
== mouse_end_row
)
20418 ? dpyinfo
->mouse_face_end_col
20419 : row
->used
[TEXT_AREA
];
20423 /* Compute overhangs for all glyph strings. */
20424 if (FRAME_RIF (f
)->compute_glyph_string_overhangs
)
20425 for (s
= head
; s
; s
= s
->next
)
20426 FRAME_RIF (f
)->compute_glyph_string_overhangs (s
);
20428 /* Prepend glyph strings for glyphs in front of the first glyph
20429 string that are overwritten because of the first glyph
20430 string's left overhang. The background of all strings
20431 prepended must be drawn because the first glyph string
20433 i
= left_overwritten (head
);
20436 enum draw_glyphs_face overlap_hl
;
20438 /* If this row contains mouse highlighting, attempt to draw
20439 the overlapped glyphs with the correct highlight. This
20440 code fails if the overlap encompasses more than one glyph
20441 and mouse-highlight spans only some of these glyphs.
20442 However, making it work perfectly involves a lot more
20443 code, and I don't know if the pathological case occurs in
20444 practice, so we'll stick to this for now. --- cyd */
20445 if (check_mouse_face
20446 && mouse_beg_col
< start
&& mouse_end_col
> i
)
20447 overlap_hl
= DRAW_MOUSE_FACE
;
20449 overlap_hl
= DRAW_NORMAL_TEXT
;
20452 BUILD_GLYPH_STRINGS (j
, start
, h
, t
,
20453 overlap_hl
, dummy_x
, last_x
);
20454 compute_overhangs_and_x (t
, head
->x
, 1);
20455 prepend_glyph_string_lists (&head
, &tail
, h
, t
);
20459 /* Prepend glyph strings for glyphs in front of the first glyph
20460 string that overwrite that glyph string because of their
20461 right overhang. For these strings, only the foreground must
20462 be drawn, because it draws over the glyph string at `head'.
20463 The background must not be drawn because this would overwrite
20464 right overhangs of preceding glyphs for which no glyph
20466 i
= left_overwriting (head
);
20469 enum draw_glyphs_face overlap_hl
;
20471 if (check_mouse_face
20472 && mouse_beg_col
< start
&& mouse_end_col
> i
)
20473 overlap_hl
= DRAW_MOUSE_FACE
;
20475 overlap_hl
= DRAW_NORMAL_TEXT
;
20478 BUILD_GLYPH_STRINGS (i
, start
, h
, t
,
20479 overlap_hl
, dummy_x
, last_x
);
20480 for (s
= h
; s
; s
= s
->next
)
20481 s
->background_filled_p
= 1;
20482 compute_overhangs_and_x (t
, head
->x
, 1);
20483 prepend_glyph_string_lists (&head
, &tail
, h
, t
);
20486 /* Append glyphs strings for glyphs following the last glyph
20487 string tail that are overwritten by tail. The background of
20488 these strings has to be drawn because tail's foreground draws
20490 i
= right_overwritten (tail
);
20493 enum draw_glyphs_face overlap_hl
;
20495 if (check_mouse_face
20496 && mouse_beg_col
< i
&& mouse_end_col
> end
)
20497 overlap_hl
= DRAW_MOUSE_FACE
;
20499 overlap_hl
= DRAW_NORMAL_TEXT
;
20501 BUILD_GLYPH_STRINGS (end
, i
, h
, t
,
20502 overlap_hl
, x
, last_x
);
20503 compute_overhangs_and_x (h
, tail
->x
+ tail
->width
, 0);
20504 append_glyph_string_lists (&head
, &tail
, h
, t
);
20508 /* Append glyph strings for glyphs following the last glyph
20509 string tail that overwrite tail. The foreground of such
20510 glyphs has to be drawn because it writes into the background
20511 of tail. The background must not be drawn because it could
20512 paint over the foreground of following glyphs. */
20513 i
= right_overwriting (tail
);
20516 enum draw_glyphs_face overlap_hl
;
20517 if (check_mouse_face
20518 && mouse_beg_col
< i
&& mouse_end_col
> end
)
20519 overlap_hl
= DRAW_MOUSE_FACE
;
20521 overlap_hl
= DRAW_NORMAL_TEXT
;
20524 i
++; /* We must include the Ith glyph. */
20525 BUILD_GLYPH_STRINGS (end
, i
, h
, t
,
20526 overlap_hl
, x
, last_x
);
20527 for (s
= h
; s
; s
= s
->next
)
20528 s
->background_filled_p
= 1;
20529 compute_overhangs_and_x (h
, tail
->x
+ tail
->width
, 0);
20530 append_glyph_string_lists (&head
, &tail
, h
, t
);
20532 if (clip_head
|| clip_tail
)
20533 for (s
= head
; s
; s
= s
->next
)
20535 s
->clip_head
= clip_head
;
20536 s
->clip_tail
= clip_tail
;
20540 /* Draw all strings. */
20541 for (s
= head
; s
; s
= s
->next
)
20542 FRAME_RIF (f
)->draw_glyph_string (s
);
20545 /* When focus a sole frame and move horizontally, this sets on_p to 0
20546 causing a failure to erase prev cursor position. */
20547 if (area
== TEXT_AREA
20548 && !row
->full_width_p
20549 /* When drawing overlapping rows, only the glyph strings'
20550 foreground is drawn, which doesn't erase a cursor
20554 int x0
= clip_head
? clip_head
->x
: (head
? head
->x
: x
);
20555 int x1
= (clip_tail
? clip_tail
->x
+ clip_tail
->background_width
20556 : (tail
? tail
->x
+ tail
->background_width
: x
));
20560 notice_overwritten_cursor (w
, TEXT_AREA
, x0
, x1
,
20561 row
->y
, MATRIX_ROW_BOTTOM_Y (row
));
20565 /* Value is the x-position up to which drawn, relative to AREA of W.
20566 This doesn't include parts drawn because of overhangs. */
20567 if (row
->full_width_p
)
20568 x_reached
= FRAME_TO_WINDOW_PIXEL_X (w
, x_reached
);
20570 x_reached
-= area_left
;
20572 RELEASE_HDC (hdc
, f
);
20577 /* Expand row matrix if too narrow. Don't expand if area
20580 #define IT_EXPAND_MATRIX_WIDTH(it, area) \
20582 if (!fonts_changed_p \
20583 && (it->glyph_row->glyphs[area] \
20584 < it->glyph_row->glyphs[area + 1])) \
20586 it->w->ncols_scale_factor++; \
20587 fonts_changed_p = 1; \
20591 /* Store one glyph for IT->char_to_display in IT->glyph_row.
20592 Called from x_produce_glyphs when IT->glyph_row is non-null. */
20598 struct glyph
*glyph
;
20599 enum glyph_row_area area
= it
->area
;
20601 xassert (it
->glyph_row
);
20602 xassert (it
->char_to_display
!= '\n' && it
->char_to_display
!= '\t');
20604 glyph
= it
->glyph_row
->glyphs
[area
] + it
->glyph_row
->used
[area
];
20605 if (glyph
< it
->glyph_row
->glyphs
[area
+ 1])
20607 glyph
->charpos
= CHARPOS (it
->position
);
20608 glyph
->object
= it
->object
;
20609 if (it
->pixel_width
> 0)
20611 glyph
->pixel_width
= it
->pixel_width
;
20612 glyph
->padding_p
= 0;
20616 /* Assure at least 1-pixel width. Otherwise, cursor can't
20617 be displayed correctly. */
20618 glyph
->pixel_width
= 1;
20619 glyph
->padding_p
= 1;
20621 glyph
->ascent
= it
->ascent
;
20622 glyph
->descent
= it
->descent
;
20623 glyph
->voffset
= it
->voffset
;
20624 glyph
->type
= CHAR_GLYPH
;
20625 glyph
->avoid_cursor_p
= it
->avoid_cursor_p
;
20626 glyph
->multibyte_p
= it
->multibyte_p
;
20627 glyph
->left_box_line_p
= it
->start_of_box_run_p
;
20628 glyph
->right_box_line_p
= it
->end_of_box_run_p
;
20629 glyph
->overlaps_vertically_p
= (it
->phys_ascent
> it
->ascent
20630 || it
->phys_descent
> it
->descent
);
20631 glyph
->glyph_not_available_p
= it
->glyph_not_available_p
;
20632 glyph
->face_id
= it
->face_id
;
20633 glyph
->u
.ch
= it
->char_to_display
;
20634 glyph
->slice
= null_glyph_slice
;
20635 glyph
->font_type
= FONT_TYPE_UNKNOWN
;
20636 ++it
->glyph_row
->used
[area
];
20639 IT_EXPAND_MATRIX_WIDTH (it
, area
);
20642 /* Store one glyph for the composition IT->cmp_it.id in
20643 IT->glyph_row. Called from x_produce_glyphs when IT->glyph_row is
20647 append_composite_glyph (it
)
20650 struct glyph
*glyph
;
20651 enum glyph_row_area area
= it
->area
;
20653 xassert (it
->glyph_row
);
20655 glyph
= it
->glyph_row
->glyphs
[area
] + it
->glyph_row
->used
[area
];
20656 if (glyph
< it
->glyph_row
->glyphs
[area
+ 1])
20658 glyph
->charpos
= CHARPOS (it
->position
);
20659 glyph
->object
= it
->object
;
20660 glyph
->pixel_width
= it
->pixel_width
;
20661 glyph
->ascent
= it
->ascent
;
20662 glyph
->descent
= it
->descent
;
20663 glyph
->voffset
= it
->voffset
;
20664 glyph
->type
= COMPOSITE_GLYPH
;
20665 if (it
->cmp_it
.ch
< 0)
20667 glyph
->u
.cmp
.automatic
= 0;
20668 glyph
->u
.cmp
.id
= it
->cmp_it
.id
;
20672 glyph
->u
.cmp
.automatic
= 1;
20673 glyph
->u
.cmp
.id
= it
->cmp_it
.id
;
20674 glyph
->u
.cmp
.from
= it
->cmp_it
.from
;
20675 glyph
->u
.cmp
.to
= it
->cmp_it
.to
- 1;
20677 glyph
->avoid_cursor_p
= it
->avoid_cursor_p
;
20678 glyph
->multibyte_p
= it
->multibyte_p
;
20679 glyph
->left_box_line_p
= it
->start_of_box_run_p
;
20680 glyph
->right_box_line_p
= it
->end_of_box_run_p
;
20681 glyph
->overlaps_vertically_p
= (it
->phys_ascent
> it
->ascent
20682 || it
->phys_descent
> it
->descent
);
20683 glyph
->padding_p
= 0;
20684 glyph
->glyph_not_available_p
= 0;
20685 glyph
->face_id
= it
->face_id
;
20686 glyph
->slice
= null_glyph_slice
;
20687 glyph
->font_type
= FONT_TYPE_UNKNOWN
;
20688 ++it
->glyph_row
->used
[area
];
20691 IT_EXPAND_MATRIX_WIDTH (it
, area
);
20695 /* Change IT->ascent and IT->height according to the setting of
20699 take_vertical_position_into_account (it
)
20704 if (it
->voffset
< 0)
20705 /* Increase the ascent so that we can display the text higher
20707 it
->ascent
-= it
->voffset
;
20709 /* Increase the descent so that we can display the text lower
20711 it
->descent
+= it
->voffset
;
20716 /* Produce glyphs/get display metrics for the image IT is loaded with.
20717 See the description of struct display_iterator in dispextern.h for
20718 an overview of struct display_iterator. */
20721 produce_image_glyph (it
)
20726 int glyph_ascent
, crop
;
20727 struct glyph_slice slice
;
20729 xassert (it
->what
== IT_IMAGE
);
20731 face
= FACE_FROM_ID (it
->f
, it
->face_id
);
20733 /* Make sure X resources of the face is loaded. */
20734 PREPARE_FACE_FOR_DISPLAY (it
->f
, face
);
20736 if (it
->image_id
< 0)
20738 /* Fringe bitmap. */
20739 it
->ascent
= it
->phys_ascent
= 0;
20740 it
->descent
= it
->phys_descent
= 0;
20741 it
->pixel_width
= 0;
20746 img
= IMAGE_FROM_ID (it
->f
, it
->image_id
);
20748 /* Make sure X resources of the image is loaded. */
20749 prepare_image_for_display (it
->f
, img
);
20751 slice
.x
= slice
.y
= 0;
20752 slice
.width
= img
->width
;
20753 slice
.height
= img
->height
;
20755 if (INTEGERP (it
->slice
.x
))
20756 slice
.x
= XINT (it
->slice
.x
);
20757 else if (FLOATP (it
->slice
.x
))
20758 slice
.x
= XFLOAT_DATA (it
->slice
.x
) * img
->width
;
20760 if (INTEGERP (it
->slice
.y
))
20761 slice
.y
= XINT (it
->slice
.y
);
20762 else if (FLOATP (it
->slice
.y
))
20763 slice
.y
= XFLOAT_DATA (it
->slice
.y
) * img
->height
;
20765 if (INTEGERP (it
->slice
.width
))
20766 slice
.width
= XINT (it
->slice
.width
);
20767 else if (FLOATP (it
->slice
.width
))
20768 slice
.width
= XFLOAT_DATA (it
->slice
.width
) * img
->width
;
20770 if (INTEGERP (it
->slice
.height
))
20771 slice
.height
= XINT (it
->slice
.height
);
20772 else if (FLOATP (it
->slice
.height
))
20773 slice
.height
= XFLOAT_DATA (it
->slice
.height
) * img
->height
;
20775 if (slice
.x
>= img
->width
)
20776 slice
.x
= img
->width
;
20777 if (slice
.y
>= img
->height
)
20778 slice
.y
= img
->height
;
20779 if (slice
.x
+ slice
.width
>= img
->width
)
20780 slice
.width
= img
->width
- slice
.x
;
20781 if (slice
.y
+ slice
.height
> img
->height
)
20782 slice
.height
= img
->height
- slice
.y
;
20784 if (slice
.width
== 0 || slice
.height
== 0)
20787 it
->ascent
= it
->phys_ascent
= glyph_ascent
= image_ascent (img
, face
, &slice
);
20789 it
->descent
= slice
.height
- glyph_ascent
;
20791 it
->descent
+= img
->vmargin
;
20792 if (slice
.y
+ slice
.height
== img
->height
)
20793 it
->descent
+= img
->vmargin
;
20794 it
->phys_descent
= it
->descent
;
20796 it
->pixel_width
= slice
.width
;
20798 it
->pixel_width
+= img
->hmargin
;
20799 if (slice
.x
+ slice
.width
== img
->width
)
20800 it
->pixel_width
+= img
->hmargin
;
20802 /* It's quite possible for images to have an ascent greater than
20803 their height, so don't get confused in that case. */
20804 if (it
->descent
< 0)
20807 #if 0 /* this breaks image tiling */
20808 /* If this glyph is alone on the last line, adjust it.ascent to minimum row ascent. */
20809 int face_ascent
= face
->font
? FONT_BASE (face
->font
) : FRAME_BASELINE_OFFSET (it
->f
);
20810 if (face_ascent
> it
->ascent
)
20811 it
->ascent
= it
->phys_ascent
= face_ascent
;
20816 if (face
->box
!= FACE_NO_BOX
)
20818 if (face
->box_line_width
> 0)
20821 it
->ascent
+= face
->box_line_width
;
20822 if (slice
.y
+ slice
.height
== img
->height
)
20823 it
->descent
+= face
->box_line_width
;
20826 if (it
->start_of_box_run_p
&& slice
.x
== 0)
20827 it
->pixel_width
+= eabs (face
->box_line_width
);
20828 if (it
->end_of_box_run_p
&& slice
.x
+ slice
.width
== img
->width
)
20829 it
->pixel_width
+= eabs (face
->box_line_width
);
20832 take_vertical_position_into_account (it
);
20834 /* Automatically crop wide image glyphs at right edge so we can
20835 draw the cursor on same display row. */
20836 if ((crop
= it
->pixel_width
- (it
->last_visible_x
- it
->current_x
), crop
> 0)
20837 && (it
->hpos
== 0 || it
->pixel_width
> it
->last_visible_x
/ 4))
20839 it
->pixel_width
-= crop
;
20840 slice
.width
-= crop
;
20845 struct glyph
*glyph
;
20846 enum glyph_row_area area
= it
->area
;
20848 glyph
= it
->glyph_row
->glyphs
[area
] + it
->glyph_row
->used
[area
];
20849 if (glyph
< it
->glyph_row
->glyphs
[area
+ 1])
20851 glyph
->charpos
= CHARPOS (it
->position
);
20852 glyph
->object
= it
->object
;
20853 glyph
->pixel_width
= it
->pixel_width
;
20854 glyph
->ascent
= glyph_ascent
;
20855 glyph
->descent
= it
->descent
;
20856 glyph
->voffset
= it
->voffset
;
20857 glyph
->type
= IMAGE_GLYPH
;
20858 glyph
->avoid_cursor_p
= it
->avoid_cursor_p
;
20859 glyph
->multibyte_p
= it
->multibyte_p
;
20860 glyph
->left_box_line_p
= it
->start_of_box_run_p
;
20861 glyph
->right_box_line_p
= it
->end_of_box_run_p
;
20862 glyph
->overlaps_vertically_p
= 0;
20863 glyph
->padding_p
= 0;
20864 glyph
->glyph_not_available_p
= 0;
20865 glyph
->face_id
= it
->face_id
;
20866 glyph
->u
.img_id
= img
->id
;
20867 glyph
->slice
= slice
;
20868 glyph
->font_type
= FONT_TYPE_UNKNOWN
;
20869 ++it
->glyph_row
->used
[area
];
20872 IT_EXPAND_MATRIX_WIDTH (it
, area
);
20877 /* Append a stretch glyph to IT->glyph_row. OBJECT is the source
20878 of the glyph, WIDTH and HEIGHT are the width and height of the
20879 stretch. ASCENT is the ascent of the glyph (0 <= ASCENT <= HEIGHT). */
20882 append_stretch_glyph (it
, object
, width
, height
, ascent
)
20884 Lisp_Object object
;
20888 struct glyph
*glyph
;
20889 enum glyph_row_area area
= it
->area
;
20891 xassert (ascent
>= 0 && ascent
<= height
);
20893 glyph
= it
->glyph_row
->glyphs
[area
] + it
->glyph_row
->used
[area
];
20894 if (glyph
< it
->glyph_row
->glyphs
[area
+ 1])
20896 glyph
->charpos
= CHARPOS (it
->position
);
20897 glyph
->object
= object
;
20898 glyph
->pixel_width
= width
;
20899 glyph
->ascent
= ascent
;
20900 glyph
->descent
= height
- ascent
;
20901 glyph
->voffset
= it
->voffset
;
20902 glyph
->type
= STRETCH_GLYPH
;
20903 glyph
->avoid_cursor_p
= it
->avoid_cursor_p
;
20904 glyph
->multibyte_p
= it
->multibyte_p
;
20905 glyph
->left_box_line_p
= it
->start_of_box_run_p
;
20906 glyph
->right_box_line_p
= it
->end_of_box_run_p
;
20907 glyph
->overlaps_vertically_p
= 0;
20908 glyph
->padding_p
= 0;
20909 glyph
->glyph_not_available_p
= 0;
20910 glyph
->face_id
= it
->face_id
;
20911 glyph
->u
.stretch
.ascent
= ascent
;
20912 glyph
->u
.stretch
.height
= height
;
20913 glyph
->slice
= null_glyph_slice
;
20914 glyph
->font_type
= FONT_TYPE_UNKNOWN
;
20915 ++it
->glyph_row
->used
[area
];
20918 IT_EXPAND_MATRIX_WIDTH (it
, area
);
20922 /* Produce a stretch glyph for iterator IT. IT->object is the value
20923 of the glyph property displayed. The value must be a list
20924 `(space KEYWORD VALUE ...)' with the following KEYWORD/VALUE pairs
20927 1. `:width WIDTH' specifies that the space should be WIDTH *
20928 canonical char width wide. WIDTH may be an integer or floating
20931 2. `:relative-width FACTOR' specifies that the width of the stretch
20932 should be computed from the width of the first character having the
20933 `glyph' property, and should be FACTOR times that width.
20935 3. `:align-to HPOS' specifies that the space should be wide enough
20936 to reach HPOS, a value in canonical character units.
20938 Exactly one of the above pairs must be present.
20940 4. `:height HEIGHT' specifies that the height of the stretch produced
20941 should be HEIGHT, measured in canonical character units.
20943 5. `:relative-height FACTOR' specifies that the height of the
20944 stretch should be FACTOR times the height of the characters having
20945 the glyph property.
20947 Either none or exactly one of 4 or 5 must be present.
20949 6. `:ascent ASCENT' specifies that ASCENT percent of the height
20950 of the stretch should be used for the ascent of the stretch.
20951 ASCENT must be in the range 0 <= ASCENT <= 100. */
20954 produce_stretch_glyph (it
)
20957 /* (space :width WIDTH :height HEIGHT ...) */
20958 Lisp_Object prop
, plist
;
20959 int width
= 0, height
= 0, align_to
= -1;
20960 int zero_width_ok_p
= 0, zero_height_ok_p
= 0;
20963 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
20964 struct font
*font
= face
->font
? face
->font
: FRAME_FONT (it
->f
);
20966 PREPARE_FACE_FOR_DISPLAY (it
->f
, face
);
20968 /* List should start with `space'. */
20969 xassert (CONSP (it
->object
) && EQ (XCAR (it
->object
), Qspace
));
20970 plist
= XCDR (it
->object
);
20972 /* Compute the width of the stretch. */
20973 if ((prop
= Fplist_get (plist
, QCwidth
), !NILP (prop
))
20974 && calc_pixel_width_or_height (&tem
, it
, prop
, font
, 1, 0))
20976 /* Absolute width `:width WIDTH' specified and valid. */
20977 zero_width_ok_p
= 1;
20980 else if (prop
= Fplist_get (plist
, QCrelative_width
),
20983 /* Relative width `:relative-width FACTOR' specified and valid.
20984 Compute the width of the characters having the `glyph'
20987 unsigned char *p
= BYTE_POS_ADDR (IT_BYTEPOS (*it
));
20990 if (it
->multibyte_p
)
20992 int maxlen
= ((IT_BYTEPOS (*it
) >= GPT
? ZV
: GPT
)
20993 - IT_BYTEPOS (*it
));
20994 it2
.c
= STRING_CHAR_AND_LENGTH (p
, maxlen
, it2
.len
);
20997 it2
.c
= *p
, it2
.len
= 1;
20999 it2
.glyph_row
= NULL
;
21000 it2
.what
= IT_CHARACTER
;
21001 x_produce_glyphs (&it2
);
21002 width
= NUMVAL (prop
) * it2
.pixel_width
;
21004 else if ((prop
= Fplist_get (plist
, QCalign_to
), !NILP (prop
))
21005 && calc_pixel_width_or_height (&tem
, it
, prop
, font
, 1, &align_to
))
21007 if (it
->glyph_row
== NULL
|| !it
->glyph_row
->mode_line_p
)
21008 align_to
= (align_to
< 0
21010 : align_to
- window_box_left_offset (it
->w
, TEXT_AREA
));
21011 else if (align_to
< 0)
21012 align_to
= window_box_left_offset (it
->w
, TEXT_AREA
);
21013 width
= max (0, (int)tem
+ align_to
- it
->current_x
);
21014 zero_width_ok_p
= 1;
21017 /* Nothing specified -> width defaults to canonical char width. */
21018 width
= FRAME_COLUMN_WIDTH (it
->f
);
21020 if (width
<= 0 && (width
< 0 || !zero_width_ok_p
))
21023 /* Compute height. */
21024 if ((prop
= Fplist_get (plist
, QCheight
), !NILP (prop
))
21025 && calc_pixel_width_or_height (&tem
, it
, prop
, font
, 0, 0))
21028 zero_height_ok_p
= 1;
21030 else if (prop
= Fplist_get (plist
, QCrelative_height
),
21032 height
= FONT_HEIGHT (font
) * NUMVAL (prop
);
21034 height
= FONT_HEIGHT (font
);
21036 if (height
<= 0 && (height
< 0 || !zero_height_ok_p
))
21039 /* Compute percentage of height used for ascent. If
21040 `:ascent ASCENT' is present and valid, use that. Otherwise,
21041 derive the ascent from the font in use. */
21042 if (prop
= Fplist_get (plist
, QCascent
),
21043 NUMVAL (prop
) > 0 && NUMVAL (prop
) <= 100)
21044 ascent
= height
* NUMVAL (prop
) / 100.0;
21045 else if (!NILP (prop
)
21046 && calc_pixel_width_or_height (&tem
, it
, prop
, font
, 0, 0))
21047 ascent
= min (max (0, (int)tem
), height
);
21049 ascent
= (height
* FONT_BASE (font
)) / FONT_HEIGHT (font
);
21051 if (width
> 0 && it
->line_wrap
!= TRUNCATE
21052 && it
->current_x
+ width
> it
->last_visible_x
)
21053 width
= it
->last_visible_x
- it
->current_x
- 1;
21055 if (width
> 0 && height
> 0 && it
->glyph_row
)
21057 Lisp_Object object
= it
->stack
[it
->sp
- 1].string
;
21058 if (!STRINGP (object
))
21059 object
= it
->w
->buffer
;
21060 append_stretch_glyph (it
, object
, width
, height
, ascent
);
21063 it
->pixel_width
= width
;
21064 it
->ascent
= it
->phys_ascent
= ascent
;
21065 it
->descent
= it
->phys_descent
= height
- it
->ascent
;
21066 it
->nglyphs
= width
> 0 && height
> 0 ? 1 : 0;
21068 take_vertical_position_into_account (it
);
21071 /* Calculate line-height and line-spacing properties.
21072 An integer value specifies explicit pixel value.
21073 A float value specifies relative value to current face height.
21074 A cons (float . face-name) specifies relative value to
21075 height of specified face font.
21077 Returns height in pixels, or nil. */
21081 calc_line_height_property (it
, val
, font
, boff
, override
)
21085 int boff
, override
;
21087 Lisp_Object face_name
= Qnil
;
21088 int ascent
, descent
, height
;
21090 if (NILP (val
) || INTEGERP (val
) || (override
&& EQ (val
, Qt
)))
21095 face_name
= XCAR (val
);
21097 if (!NUMBERP (val
))
21098 val
= make_number (1);
21099 if (NILP (face_name
))
21101 height
= it
->ascent
+ it
->descent
;
21106 if (NILP (face_name
))
21108 font
= FRAME_FONT (it
->f
);
21109 boff
= FRAME_BASELINE_OFFSET (it
->f
);
21111 else if (EQ (face_name
, Qt
))
21120 face_id
= lookup_named_face (it
->f
, face_name
, 0);
21122 return make_number (-1);
21124 face
= FACE_FROM_ID (it
->f
, face_id
);
21127 return make_number (-1);
21128 boff
= font
->baseline_offset
;
21129 if (font
->vertical_centering
)
21130 boff
= VCENTER_BASELINE_OFFSET (font
, it
->f
) - boff
;
21133 ascent
= FONT_BASE (font
) + boff
;
21134 descent
= FONT_DESCENT (font
) - boff
;
21138 it
->override_ascent
= ascent
;
21139 it
->override_descent
= descent
;
21140 it
->override_boff
= boff
;
21143 height
= ascent
+ descent
;
21147 height
= (int)(XFLOAT_DATA (val
) * height
);
21148 else if (INTEGERP (val
))
21149 height
*= XINT (val
);
21151 return make_number (height
);
21156 Produce glyphs/get display metrics for the display element IT is
21157 loaded with. See the description of struct it in dispextern.h
21158 for an overview of struct it. */
21161 x_produce_glyphs (it
)
21164 int extra_line_spacing
= it
->extra_line_spacing
;
21166 it
->glyph_not_available_p
= 0;
21168 if (it
->what
== IT_CHARACTER
)
21172 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
21173 struct font_metrics
*pcm
;
21174 int font_not_found_p
;
21175 int boff
; /* baseline offset */
21176 /* We may change it->multibyte_p upon unibyte<->multibyte
21177 conversion. So, save the current value now and restore it
21180 Note: It seems that we don't have to record multibyte_p in
21181 struct glyph because the character code itself tells if or
21182 not the character is multibyte. Thus, in the future, we must
21183 consider eliminating the field `multibyte_p' in the struct
21185 int saved_multibyte_p
= it
->multibyte_p
;
21187 /* Maybe translate single-byte characters to multibyte, or the
21189 it
->char_to_display
= it
->c
;
21190 if (!ASCII_BYTE_P (it
->c
)
21191 && ! it
->multibyte_p
)
21193 if (SINGLE_BYTE_CHAR_P (it
->c
)
21194 && unibyte_display_via_language_environment
)
21195 it
->char_to_display
= unibyte_char_to_multibyte (it
->c
);
21196 if (! SINGLE_BYTE_CHAR_P (it
->char_to_display
))
21198 it
->multibyte_p
= 1;
21199 it
->face_id
= FACE_FOR_CHAR (it
->f
, face
, it
->char_to_display
,
21201 face
= FACE_FROM_ID (it
->f
, it
->face_id
);
21205 /* Get font to use. Encode IT->char_to_display. */
21206 get_char_face_and_encoding (it
->f
, it
->char_to_display
, it
->face_id
,
21207 &char2b
, it
->multibyte_p
, 0);
21210 /* When no suitable font found, use the default font. */
21211 font_not_found_p
= font
== NULL
;
21212 if (font_not_found_p
)
21214 font
= FRAME_FONT (it
->f
);
21215 boff
= FRAME_BASELINE_OFFSET (it
->f
);
21219 boff
= font
->baseline_offset
;
21220 if (font
->vertical_centering
)
21221 boff
= VCENTER_BASELINE_OFFSET (font
, it
->f
) - boff
;
21224 if (it
->char_to_display
>= ' '
21225 && (!it
->multibyte_p
|| it
->char_to_display
< 128))
21227 /* Either unibyte or ASCII. */
21232 pcm
= get_per_char_metric (it
->f
, font
, &char2b
);
21234 if (it
->override_ascent
>= 0)
21236 it
->ascent
= it
->override_ascent
;
21237 it
->descent
= it
->override_descent
;
21238 boff
= it
->override_boff
;
21242 it
->ascent
= FONT_BASE (font
) + boff
;
21243 it
->descent
= FONT_DESCENT (font
) - boff
;
21248 it
->phys_ascent
= pcm
->ascent
+ boff
;
21249 it
->phys_descent
= pcm
->descent
- boff
;
21250 it
->pixel_width
= pcm
->width
;
21254 it
->glyph_not_available_p
= 1;
21255 it
->phys_ascent
= it
->ascent
;
21256 it
->phys_descent
= it
->descent
;
21257 it
->pixel_width
= FONT_WIDTH (font
);
21260 if (it
->constrain_row_ascent_descent_p
)
21262 if (it
->descent
> it
->max_descent
)
21264 it
->ascent
+= it
->descent
- it
->max_descent
;
21265 it
->descent
= it
->max_descent
;
21267 if (it
->ascent
> it
->max_ascent
)
21269 it
->descent
= min (it
->max_descent
, it
->descent
+ it
->ascent
- it
->max_ascent
);
21270 it
->ascent
= it
->max_ascent
;
21272 it
->phys_ascent
= min (it
->phys_ascent
, it
->ascent
);
21273 it
->phys_descent
= min (it
->phys_descent
, it
->descent
);
21274 extra_line_spacing
= 0;
21277 /* If this is a space inside a region of text with
21278 `space-width' property, change its width. */
21279 stretched_p
= it
->char_to_display
== ' ' && !NILP (it
->space_width
);
21281 it
->pixel_width
*= XFLOATINT (it
->space_width
);
21283 /* If face has a box, add the box thickness to the character
21284 height. If character has a box line to the left and/or
21285 right, add the box line width to the character's width. */
21286 if (face
->box
!= FACE_NO_BOX
)
21288 int thick
= face
->box_line_width
;
21292 it
->ascent
+= thick
;
21293 it
->descent
+= thick
;
21298 if (it
->start_of_box_run_p
)
21299 it
->pixel_width
+= thick
;
21300 if (it
->end_of_box_run_p
)
21301 it
->pixel_width
+= thick
;
21304 /* If face has an overline, add the height of the overline
21305 (1 pixel) and a 1 pixel margin to the character height. */
21306 if (face
->overline_p
)
21307 it
->ascent
+= overline_margin
;
21309 if (it
->constrain_row_ascent_descent_p
)
21311 if (it
->ascent
> it
->max_ascent
)
21312 it
->ascent
= it
->max_ascent
;
21313 if (it
->descent
> it
->max_descent
)
21314 it
->descent
= it
->max_descent
;
21317 take_vertical_position_into_account (it
);
21319 /* If we have to actually produce glyphs, do it. */
21324 /* Translate a space with a `space-width' property
21325 into a stretch glyph. */
21326 int ascent
= (((it
->ascent
+ it
->descent
) * FONT_BASE (font
))
21327 / FONT_HEIGHT (font
));
21328 append_stretch_glyph (it
, it
->object
, it
->pixel_width
,
21329 it
->ascent
+ it
->descent
, ascent
);
21334 /* If characters with lbearing or rbearing are displayed
21335 in this line, record that fact in a flag of the
21336 glyph row. This is used to optimize X output code. */
21337 if (pcm
&& (pcm
->lbearing
< 0 || pcm
->rbearing
> pcm
->width
))
21338 it
->glyph_row
->contains_overlapping_glyphs_p
= 1;
21340 if (! stretched_p
&& it
->pixel_width
== 0)
21341 /* We assure that all visible glyphs have at least 1-pixel
21343 it
->pixel_width
= 1;
21345 else if (it
->char_to_display
== '\n')
21347 /* A newline has no width but we need the height of the line.
21348 But if previous part of the line set a height, don't
21349 increase that height */
21351 Lisp_Object height
;
21352 Lisp_Object total_height
= Qnil
;
21354 it
->override_ascent
= -1;
21355 it
->pixel_width
= 0;
21358 height
= get_it_property(it
, Qline_height
);
21359 /* Split (line-height total-height) list */
21361 && CONSP (XCDR (height
))
21362 && NILP (XCDR (XCDR (height
))))
21364 total_height
= XCAR (XCDR (height
));
21365 height
= XCAR (height
);
21367 height
= calc_line_height_property(it
, height
, font
, boff
, 1);
21369 if (it
->override_ascent
>= 0)
21371 it
->ascent
= it
->override_ascent
;
21372 it
->descent
= it
->override_descent
;
21373 boff
= it
->override_boff
;
21377 it
->ascent
= FONT_BASE (font
) + boff
;
21378 it
->descent
= FONT_DESCENT (font
) - boff
;
21381 if (EQ (height
, Qt
))
21383 if (it
->descent
> it
->max_descent
)
21385 it
->ascent
+= it
->descent
- it
->max_descent
;
21386 it
->descent
= it
->max_descent
;
21388 if (it
->ascent
> it
->max_ascent
)
21390 it
->descent
= min (it
->max_descent
, it
->descent
+ it
->ascent
- it
->max_ascent
);
21391 it
->ascent
= it
->max_ascent
;
21393 it
->phys_ascent
= min (it
->phys_ascent
, it
->ascent
);
21394 it
->phys_descent
= min (it
->phys_descent
, it
->descent
);
21395 it
->constrain_row_ascent_descent_p
= 1;
21396 extra_line_spacing
= 0;
21400 Lisp_Object spacing
;
21402 it
->phys_ascent
= it
->ascent
;
21403 it
->phys_descent
= it
->descent
;
21405 if ((it
->max_ascent
> 0 || it
->max_descent
> 0)
21406 && face
->box
!= FACE_NO_BOX
21407 && face
->box_line_width
> 0)
21409 it
->ascent
+= face
->box_line_width
;
21410 it
->descent
+= face
->box_line_width
;
21413 && XINT (height
) > it
->ascent
+ it
->descent
)
21414 it
->ascent
= XINT (height
) - it
->descent
;
21416 if (!NILP (total_height
))
21417 spacing
= calc_line_height_property(it
, total_height
, font
, boff
, 0);
21420 spacing
= get_it_property(it
, Qline_spacing
);
21421 spacing
= calc_line_height_property(it
, spacing
, font
, boff
, 0);
21423 if (INTEGERP (spacing
))
21425 extra_line_spacing
= XINT (spacing
);
21426 if (!NILP (total_height
))
21427 extra_line_spacing
-= (it
->phys_ascent
+ it
->phys_descent
);
21431 else if (it
->char_to_display
== '\t')
21433 if (font
->space_width
> 0)
21435 int tab_width
= it
->tab_width
* font
->space_width
;
21436 int x
= it
->current_x
+ it
->continuation_lines_width
;
21437 int next_tab_x
= ((1 + x
+ tab_width
- 1) / tab_width
) * tab_width
;
21439 /* If the distance from the current position to the next tab
21440 stop is less than a space character width, use the
21441 tab stop after that. */
21442 if (next_tab_x
- x
< font
->space_width
)
21443 next_tab_x
+= tab_width
;
21445 it
->pixel_width
= next_tab_x
- x
;
21447 it
->ascent
= it
->phys_ascent
= FONT_BASE (font
) + boff
;
21448 it
->descent
= it
->phys_descent
= FONT_DESCENT (font
) - boff
;
21452 append_stretch_glyph (it
, it
->object
, it
->pixel_width
,
21453 it
->ascent
+ it
->descent
, it
->ascent
);
21458 it
->pixel_width
= 0;
21464 /* A multi-byte character. Assume that the display width of the
21465 character is the width of the character multiplied by the
21466 width of the font. */
21468 /* If we found a font, this font should give us the right
21469 metrics. If we didn't find a font, use the frame's
21470 default font and calculate the width of the character by
21471 multiplying the width of font by the width of the
21474 pcm
= get_per_char_metric (it
->f
, font
, &char2b
);
21476 if (font_not_found_p
|| !pcm
)
21478 int char_width
= CHAR_WIDTH (it
->char_to_display
);
21480 if (char_width
== 0)
21481 /* This is a non spacing character. But, as we are
21482 going to display an empty box, the box must occupy
21483 at least one column. */
21485 it
->glyph_not_available_p
= 1;
21486 it
->pixel_width
= FRAME_COLUMN_WIDTH (it
->f
) * char_width
;
21487 it
->phys_ascent
= FONT_BASE (font
) + boff
;
21488 it
->phys_descent
= FONT_DESCENT (font
) - boff
;
21492 it
->pixel_width
= pcm
->width
;
21493 it
->phys_ascent
= pcm
->ascent
+ boff
;
21494 it
->phys_descent
= pcm
->descent
- boff
;
21496 && (pcm
->lbearing
< 0
21497 || pcm
->rbearing
> pcm
->width
))
21498 it
->glyph_row
->contains_overlapping_glyphs_p
= 1;
21501 it
->ascent
= FONT_BASE (font
) + boff
;
21502 it
->descent
= FONT_DESCENT (font
) - boff
;
21503 if (face
->box
!= FACE_NO_BOX
)
21505 int thick
= face
->box_line_width
;
21509 it
->ascent
+= thick
;
21510 it
->descent
+= thick
;
21515 if (it
->start_of_box_run_p
)
21516 it
->pixel_width
+= thick
;
21517 if (it
->end_of_box_run_p
)
21518 it
->pixel_width
+= thick
;
21521 /* If face has an overline, add the height of the overline
21522 (1 pixel) and a 1 pixel margin to the character height. */
21523 if (face
->overline_p
)
21524 it
->ascent
+= overline_margin
;
21526 take_vertical_position_into_account (it
);
21528 if (it
->ascent
< 0)
21530 if (it
->descent
< 0)
21535 if (it
->pixel_width
== 0)
21536 /* We assure that all visible glyphs have at least 1-pixel
21538 it
->pixel_width
= 1;
21540 it
->multibyte_p
= saved_multibyte_p
;
21542 else if (it
->what
== IT_COMPOSITION
&& it
->cmp_it
.ch
< 0)
21544 /* A static compositoin.
21546 Note: A composition is represented as one glyph in the
21547 glyph matrix. There are no padding glyphs.
21549 Important is that pixel_width, ascent, and descent are the
21550 values of what is drawn by draw_glyphs (i.e. the values of
21551 the overall glyphs composed). */
21552 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
21553 int boff
; /* baseline offset */
21554 struct composition
*cmp
= composition_table
[it
->cmp_it
.id
];
21555 int glyph_len
= cmp
->glyph_len
;
21556 struct font
*font
= face
->font
;
21560 /* If we have not yet calculated pixel size data of glyphs of
21561 the composition for the current face font, calculate them
21562 now. Theoretically, we have to check all fonts for the
21563 glyphs, but that requires much time and memory space. So,
21564 here we check only the font of the first glyph. This leads
21565 to incorrect display, but it's very rare, and C-l (recenter)
21566 can correct the display anyway. */
21567 if (! cmp
->font
|| cmp
->font
!= font
)
21569 /* Ascent and descent of the font of the first character
21570 of this composition (adjusted by baseline offset).
21571 Ascent and descent of overall glyphs should not be less
21572 than them respectively. */
21573 int font_ascent
, font_descent
, font_height
;
21574 /* Bounding box of the overall glyphs. */
21575 int leftmost
, rightmost
, lowest
, highest
;
21576 int lbearing
, rbearing
;
21577 int i
, width
, ascent
, descent
;
21578 int left_padded
= 0, right_padded
= 0;
21581 struct font_metrics
*pcm
;
21582 int font_not_found_p
;
21585 for (glyph_len
= cmp
->glyph_len
; glyph_len
> 0; glyph_len
--)
21586 if ((c
= COMPOSITION_GLYPH (cmp
, glyph_len
- 1)) != '\t')
21588 if (glyph_len
< cmp
->glyph_len
)
21590 for (i
= 0; i
< glyph_len
; i
++)
21592 if ((c
= COMPOSITION_GLYPH (cmp
, i
)) != '\t')
21594 cmp
->offsets
[i
* 2] = cmp
->offsets
[i
* 2 + 1] = 0;
21599 pos
= (STRINGP (it
->string
) ? IT_STRING_CHARPOS (*it
)
21600 : IT_CHARPOS (*it
));
21601 /* When no suitable font found, use the default font. */
21602 font_not_found_p
= font
== NULL
;
21603 if (font_not_found_p
)
21605 face
= face
->ascii_face
;
21608 boff
= font
->baseline_offset
;
21609 if (font
->vertical_centering
)
21610 boff
= VCENTER_BASELINE_OFFSET (font
, it
->f
) - boff
;
21611 font_ascent
= FONT_BASE (font
) + boff
;
21612 font_descent
= FONT_DESCENT (font
) - boff
;
21613 font_height
= FONT_HEIGHT (font
);
21615 cmp
->font
= (void *) font
;
21618 if (! font_not_found_p
)
21620 get_char_face_and_encoding (it
->f
, c
, it
->face_id
,
21621 &char2b
, it
->multibyte_p
, 0);
21622 pcm
= get_per_char_metric (it
->f
, font
, &char2b
);
21625 /* Initialize the bounding box. */
21628 width
= pcm
->width
;
21629 ascent
= pcm
->ascent
;
21630 descent
= pcm
->descent
;
21631 lbearing
= pcm
->lbearing
;
21632 rbearing
= pcm
->rbearing
;
21636 width
= FONT_WIDTH (font
);
21637 ascent
= FONT_BASE (font
);
21638 descent
= FONT_DESCENT (font
);
21645 lowest
= - descent
+ boff
;
21646 highest
= ascent
+ boff
;
21648 if (! font_not_found_p
21649 && font
->default_ascent
21650 && CHAR_TABLE_P (Vuse_default_ascent
)
21651 && !NILP (Faref (Vuse_default_ascent
,
21652 make_number (it
->char_to_display
))))
21653 highest
= font
->default_ascent
+ boff
;
21655 /* Draw the first glyph at the normal position. It may be
21656 shifted to right later if some other glyphs are drawn
21658 cmp
->offsets
[i
* 2] = 0;
21659 cmp
->offsets
[i
* 2 + 1] = boff
;
21660 cmp
->lbearing
= lbearing
;
21661 cmp
->rbearing
= rbearing
;
21663 /* Set cmp->offsets for the remaining glyphs. */
21664 for (i
++; i
< glyph_len
; i
++)
21666 int left
, right
, btm
, top
;
21667 int ch
= COMPOSITION_GLYPH (cmp
, i
);
21669 struct face
*this_face
;
21674 face_id
= FACE_FOR_CHAR (it
->f
, face
, ch
, pos
, it
->string
);
21675 this_face
= FACE_FROM_ID (it
->f
, face_id
);
21676 font
= this_face
->font
;
21682 this_boff
= font
->baseline_offset
;
21683 if (font
->vertical_centering
)
21684 this_boff
= VCENTER_BASELINE_OFFSET (font
, it
->f
) - boff
;
21685 get_char_face_and_encoding (it
->f
, ch
, face_id
,
21686 &char2b
, it
->multibyte_p
, 0);
21687 pcm
= get_per_char_metric (it
->f
, font
, &char2b
);
21690 cmp
->offsets
[i
* 2] = cmp
->offsets
[i
* 2 + 1] = 0;
21693 width
= pcm
->width
;
21694 ascent
= pcm
->ascent
;
21695 descent
= pcm
->descent
;
21696 lbearing
= pcm
->lbearing
;
21697 rbearing
= pcm
->rbearing
;
21698 if (cmp
->method
!= COMPOSITION_WITH_RULE_ALTCHARS
)
21700 /* Relative composition with or without
21701 alternate chars. */
21702 left
= (leftmost
+ rightmost
- width
) / 2;
21703 btm
= - descent
+ boff
;
21704 if (font
->relative_compose
21705 && (! CHAR_TABLE_P (Vignore_relative_composition
)
21706 || NILP (Faref (Vignore_relative_composition
,
21707 make_number (ch
)))))
21710 if (- descent
>= font
->relative_compose
)
21711 /* One extra pixel between two glyphs. */
21713 else if (ascent
<= 0)
21714 /* One extra pixel between two glyphs. */
21715 btm
= lowest
- 1 - ascent
- descent
;
21720 /* A composition rule is specified by an integer
21721 value that encodes global and new reference
21722 points (GREF and NREF). GREF and NREF are
21723 specified by numbers as below:
21725 0---1---2 -- ascent
21729 9--10--11 -- center
21731 ---3---4---5--- baseline
21733 6---7---8 -- descent
21735 int rule
= COMPOSITION_RULE (cmp
, i
);
21736 int gref
, nref
, grefx
, grefy
, nrefx
, nrefy
, xoff
, yoff
;
21738 COMPOSITION_DECODE_RULE (rule
, gref
, nref
, xoff
, yoff
);
21739 grefx
= gref
% 3, nrefx
= nref
% 3;
21740 grefy
= gref
/ 3, nrefy
= nref
/ 3;
21742 xoff
= font_height
* (xoff
- 128) / 256;
21744 yoff
= font_height
* (yoff
- 128) / 256;
21747 + grefx
* (rightmost
- leftmost
) / 2
21748 - nrefx
* width
/ 2
21751 btm
= ((grefy
== 0 ? highest
21753 : grefy
== 2 ? lowest
21754 : (highest
+ lowest
) / 2)
21755 - (nrefy
== 0 ? ascent
+ descent
21756 : nrefy
== 1 ? descent
- boff
21758 : (ascent
+ descent
) / 2)
21762 cmp
->offsets
[i
* 2] = left
;
21763 cmp
->offsets
[i
* 2 + 1] = btm
+ descent
;
21765 /* Update the bounding box of the overall glyphs. */
21768 right
= left
+ width
;
21769 if (left
< leftmost
)
21771 if (right
> rightmost
)
21774 top
= btm
+ descent
+ ascent
;
21780 if (cmp
->lbearing
> left
+ lbearing
)
21781 cmp
->lbearing
= left
+ lbearing
;
21782 if (cmp
->rbearing
< left
+ rbearing
)
21783 cmp
->rbearing
= left
+ rbearing
;
21787 /* If there are glyphs whose x-offsets are negative,
21788 shift all glyphs to the right and make all x-offsets
21792 for (i
= 0; i
< cmp
->glyph_len
; i
++)
21793 cmp
->offsets
[i
* 2] -= leftmost
;
21794 rightmost
-= leftmost
;
21795 cmp
->lbearing
-= leftmost
;
21796 cmp
->rbearing
-= leftmost
;
21799 if (left_padded
&& cmp
->lbearing
< 0)
21801 for (i
= 0; i
< cmp
->glyph_len
; i
++)
21802 cmp
->offsets
[i
* 2] -= cmp
->lbearing
;
21803 rightmost
-= cmp
->lbearing
;
21804 cmp
->rbearing
-= cmp
->lbearing
;
21807 if (right_padded
&& rightmost
< cmp
->rbearing
)
21809 rightmost
= cmp
->rbearing
;
21812 cmp
->pixel_width
= rightmost
;
21813 cmp
->ascent
= highest
;
21814 cmp
->descent
= - lowest
;
21815 if (cmp
->ascent
< font_ascent
)
21816 cmp
->ascent
= font_ascent
;
21817 if (cmp
->descent
< font_descent
)
21818 cmp
->descent
= font_descent
;
21822 && (cmp
->lbearing
< 0
21823 || cmp
->rbearing
> cmp
->pixel_width
))
21824 it
->glyph_row
->contains_overlapping_glyphs_p
= 1;
21826 it
->pixel_width
= cmp
->pixel_width
;
21827 it
->ascent
= it
->phys_ascent
= cmp
->ascent
;
21828 it
->descent
= it
->phys_descent
= cmp
->descent
;
21829 if (face
->box
!= FACE_NO_BOX
)
21831 int thick
= face
->box_line_width
;
21835 it
->ascent
+= thick
;
21836 it
->descent
+= thick
;
21841 if (it
->start_of_box_run_p
)
21842 it
->pixel_width
+= thick
;
21843 if (it
->end_of_box_run_p
)
21844 it
->pixel_width
+= thick
;
21847 /* If face has an overline, add the height of the overline
21848 (1 pixel) and a 1 pixel margin to the character height. */
21849 if (face
->overline_p
)
21850 it
->ascent
+= overline_margin
;
21852 take_vertical_position_into_account (it
);
21853 if (it
->ascent
< 0)
21855 if (it
->descent
< 0)
21859 append_composite_glyph (it
);
21861 else if (it
->what
== IT_COMPOSITION
)
21863 /* A dynamic (automatic) composition. */
21864 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
21865 Lisp_Object gstring
;
21866 struct font_metrics metrics
;
21868 gstring
= composition_gstring_from_id (it
->cmp_it
.id
);
21870 = composition_gstring_width (gstring
, it
->cmp_it
.from
, it
->cmp_it
.to
,
21873 && (metrics
.lbearing
< 0 || metrics
.rbearing
> metrics
.width
))
21874 it
->glyph_row
->contains_overlapping_glyphs_p
= 1;
21875 it
->ascent
= it
->phys_ascent
= metrics
.ascent
;
21876 it
->descent
= it
->phys_descent
= metrics
.descent
;
21877 if (face
->box
!= FACE_NO_BOX
)
21879 int thick
= face
->box_line_width
;
21883 it
->ascent
+= thick
;
21884 it
->descent
+= thick
;
21889 if (it
->start_of_box_run_p
)
21890 it
->pixel_width
+= thick
;
21891 if (it
->end_of_box_run_p
)
21892 it
->pixel_width
+= thick
;
21894 /* If face has an overline, add the height of the overline
21895 (1 pixel) and a 1 pixel margin to the character height. */
21896 if (face
->overline_p
)
21897 it
->ascent
+= overline_margin
;
21898 take_vertical_position_into_account (it
);
21899 if (it
->ascent
< 0)
21901 if (it
->descent
< 0)
21905 append_composite_glyph (it
);
21907 else if (it
->what
== IT_IMAGE
)
21908 produce_image_glyph (it
);
21909 else if (it
->what
== IT_STRETCH
)
21910 produce_stretch_glyph (it
);
21912 /* Accumulate dimensions. Note: can't assume that it->descent > 0
21913 because this isn't true for images with `:ascent 100'. */
21914 xassert (it
->ascent
>= 0 && it
->descent
>= 0);
21915 if (it
->area
== TEXT_AREA
)
21916 it
->current_x
+= it
->pixel_width
;
21918 if (extra_line_spacing
> 0)
21920 it
->descent
+= extra_line_spacing
;
21921 if (extra_line_spacing
> it
->max_extra_line_spacing
)
21922 it
->max_extra_line_spacing
= extra_line_spacing
;
21925 it
->max_ascent
= max (it
->max_ascent
, it
->ascent
);
21926 it
->max_descent
= max (it
->max_descent
, it
->descent
);
21927 it
->max_phys_ascent
= max (it
->max_phys_ascent
, it
->phys_ascent
);
21928 it
->max_phys_descent
= max (it
->max_phys_descent
, it
->phys_descent
);
21932 Output LEN glyphs starting at START at the nominal cursor position.
21933 Advance the nominal cursor over the text. The global variable
21934 updated_window contains the window being updated, updated_row is
21935 the glyph row being updated, and updated_area is the area of that
21936 row being updated. */
21939 x_write_glyphs (start
, len
)
21940 struct glyph
*start
;
21945 xassert (updated_window
&& updated_row
);
21948 /* Write glyphs. */
21950 hpos
= start
- updated_row
->glyphs
[updated_area
];
21951 x
= draw_glyphs (updated_window
, output_cursor
.x
,
21952 updated_row
, updated_area
,
21954 DRAW_NORMAL_TEXT
, 0);
21956 /* Invalidate old phys cursor if the glyph at its hpos is redrawn. */
21957 if (updated_area
== TEXT_AREA
21958 && updated_window
->phys_cursor_on_p
21959 && updated_window
->phys_cursor
.vpos
== output_cursor
.vpos
21960 && updated_window
->phys_cursor
.hpos
>= hpos
21961 && updated_window
->phys_cursor
.hpos
< hpos
+ len
)
21962 updated_window
->phys_cursor_on_p
= 0;
21966 /* Advance the output cursor. */
21967 output_cursor
.hpos
+= len
;
21968 output_cursor
.x
= x
;
21973 Insert LEN glyphs from START at the nominal cursor position. */
21976 x_insert_glyphs (start
, len
)
21977 struct glyph
*start
;
21982 int line_height
, shift_by_width
, shifted_region_width
;
21983 struct glyph_row
*row
;
21984 struct glyph
*glyph
;
21985 int frame_x
, frame_y
;
21988 xassert (updated_window
&& updated_row
);
21990 w
= updated_window
;
21991 f
= XFRAME (WINDOW_FRAME (w
));
21993 /* Get the height of the line we are in. */
21995 line_height
= row
->height
;
21997 /* Get the width of the glyphs to insert. */
21998 shift_by_width
= 0;
21999 for (glyph
= start
; glyph
< start
+ len
; ++glyph
)
22000 shift_by_width
+= glyph
->pixel_width
;
22002 /* Get the width of the region to shift right. */
22003 shifted_region_width
= (window_box_width (w
, updated_area
)
22008 frame_x
= window_box_left (w
, updated_area
) + output_cursor
.x
;
22009 frame_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, output_cursor
.y
);
22011 FRAME_RIF (f
)->shift_glyphs_for_insert (f
, frame_x
, frame_y
, shifted_region_width
,
22012 line_height
, shift_by_width
);
22014 /* Write the glyphs. */
22015 hpos
= start
- row
->glyphs
[updated_area
];
22016 draw_glyphs (w
, output_cursor
.x
, row
, updated_area
,
22018 DRAW_NORMAL_TEXT
, 0);
22020 /* Advance the output cursor. */
22021 output_cursor
.hpos
+= len
;
22022 output_cursor
.x
+= shift_by_width
;
22028 Erase the current text line from the nominal cursor position
22029 (inclusive) to pixel column TO_X (exclusive). The idea is that
22030 everything from TO_X onward is already erased.
22032 TO_X is a pixel position relative to updated_area of
22033 updated_window. TO_X == -1 means clear to the end of this area. */
22036 x_clear_end_of_line (to_x
)
22040 struct window
*w
= updated_window
;
22041 int max_x
, min_y
, max_y
;
22042 int from_x
, from_y
, to_y
;
22044 xassert (updated_window
&& updated_row
);
22045 f
= XFRAME (w
->frame
);
22047 if (updated_row
->full_width_p
)
22048 max_x
= WINDOW_TOTAL_WIDTH (w
);
22050 max_x
= window_box_width (w
, updated_area
);
22051 max_y
= window_text_bottom_y (w
);
22053 /* TO_X == 0 means don't do anything. TO_X < 0 means clear to end
22054 of window. For TO_X > 0, truncate to end of drawing area. */
22060 to_x
= min (to_x
, max_x
);
22062 to_y
= min (max_y
, output_cursor
.y
+ updated_row
->height
);
22064 /* Notice if the cursor will be cleared by this operation. */
22065 if (!updated_row
->full_width_p
)
22066 notice_overwritten_cursor (w
, updated_area
,
22067 output_cursor
.x
, -1,
22069 MATRIX_ROW_BOTTOM_Y (updated_row
));
22071 from_x
= output_cursor
.x
;
22073 /* Translate to frame coordinates. */
22074 if (updated_row
->full_width_p
)
22076 from_x
= WINDOW_TO_FRAME_PIXEL_X (w
, from_x
);
22077 to_x
= WINDOW_TO_FRAME_PIXEL_X (w
, to_x
);
22081 int area_left
= window_box_left (w
, updated_area
);
22082 from_x
+= area_left
;
22086 min_y
= WINDOW_HEADER_LINE_HEIGHT (w
);
22087 from_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, max (min_y
, output_cursor
.y
));
22088 to_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, to_y
);
22090 /* Prevent inadvertently clearing to end of the X window. */
22091 if (to_x
> from_x
&& to_y
> from_y
)
22094 FRAME_RIF (f
)->clear_frame_area (f
, from_x
, from_y
,
22095 to_x
- from_x
, to_y
- from_y
);
22100 #endif /* HAVE_WINDOW_SYSTEM */
22104 /***********************************************************************
22106 ***********************************************************************/
22108 /* Value is the internal representation of the specified cursor type
22109 ARG. If type is BAR_CURSOR, return in *WIDTH the specified width
22110 of the bar cursor. */
22112 static enum text_cursor_kinds
22113 get_specified_cursor_type (arg
, width
)
22117 enum text_cursor_kinds type
;
22122 if (EQ (arg
, Qbox
))
22123 return FILLED_BOX_CURSOR
;
22125 if (EQ (arg
, Qhollow
))
22126 return HOLLOW_BOX_CURSOR
;
22128 if (EQ (arg
, Qbar
))
22135 && EQ (XCAR (arg
), Qbar
)
22136 && INTEGERP (XCDR (arg
))
22137 && XINT (XCDR (arg
)) >= 0)
22139 *width
= XINT (XCDR (arg
));
22143 if (EQ (arg
, Qhbar
))
22146 return HBAR_CURSOR
;
22150 && EQ (XCAR (arg
), Qhbar
)
22151 && INTEGERP (XCDR (arg
))
22152 && XINT (XCDR (arg
)) >= 0)
22154 *width
= XINT (XCDR (arg
));
22155 return HBAR_CURSOR
;
22158 /* Treat anything unknown as "hollow box cursor".
22159 It was bad to signal an error; people have trouble fixing
22160 .Xdefaults with Emacs, when it has something bad in it. */
22161 type
= HOLLOW_BOX_CURSOR
;
22166 /* Set the default cursor types for specified frame. */
22168 set_frame_cursor_types (f
, arg
)
22175 FRAME_DESIRED_CURSOR (f
) = get_specified_cursor_type (arg
, &width
);
22176 FRAME_CURSOR_WIDTH (f
) = width
;
22178 /* By default, set up the blink-off state depending on the on-state. */
22180 tem
= Fassoc (arg
, Vblink_cursor_alist
);
22183 FRAME_BLINK_OFF_CURSOR (f
)
22184 = get_specified_cursor_type (XCDR (tem
), &width
);
22185 FRAME_BLINK_OFF_CURSOR_WIDTH (f
) = width
;
22188 FRAME_BLINK_OFF_CURSOR (f
) = DEFAULT_CURSOR
;
22192 /* Return the cursor we want to be displayed in window W. Return
22193 width of bar/hbar cursor through WIDTH arg. Return with
22194 ACTIVE_CURSOR arg set to 1 if cursor in window W is `active'
22195 (i.e. if the `system caret' should track this cursor).
22197 In a mini-buffer window, we want the cursor only to appear if we
22198 are reading input from this window. For the selected window, we
22199 want the cursor type given by the frame parameter or buffer local
22200 setting of cursor-type. If explicitly marked off, draw no cursor.
22201 In all other cases, we want a hollow box cursor. */
22203 static enum text_cursor_kinds
22204 get_window_cursor_type (w
, glyph
, width
, active_cursor
)
22206 struct glyph
*glyph
;
22208 int *active_cursor
;
22210 struct frame
*f
= XFRAME (w
->frame
);
22211 struct buffer
*b
= XBUFFER (w
->buffer
);
22212 int cursor_type
= DEFAULT_CURSOR
;
22213 Lisp_Object alt_cursor
;
22214 int non_selected
= 0;
22216 *active_cursor
= 1;
22219 if (cursor_in_echo_area
22220 && FRAME_HAS_MINIBUF_P (f
)
22221 && EQ (FRAME_MINIBUF_WINDOW (f
), echo_area_window
))
22223 if (w
== XWINDOW (echo_area_window
))
22225 if (EQ (b
->cursor_type
, Qt
) || NILP (b
->cursor_type
))
22227 *width
= FRAME_CURSOR_WIDTH (f
);
22228 return FRAME_DESIRED_CURSOR (f
);
22231 return get_specified_cursor_type (b
->cursor_type
, width
);
22234 *active_cursor
= 0;
22238 /* Detect a nonselected window or nonselected frame. */
22239 else if (w
!= XWINDOW (f
->selected_window
)
22240 #ifdef HAVE_WINDOW_SYSTEM
22241 || f
!= FRAME_X_DISPLAY_INFO (f
)->x_highlight_frame
22245 *active_cursor
= 0;
22247 if (MINI_WINDOW_P (w
) && minibuf_level
== 0)
22253 /* Never display a cursor in a window in which cursor-type is nil. */
22254 if (NILP (b
->cursor_type
))
22257 /* Get the normal cursor type for this window. */
22258 if (EQ (b
->cursor_type
, Qt
))
22260 cursor_type
= FRAME_DESIRED_CURSOR (f
);
22261 *width
= FRAME_CURSOR_WIDTH (f
);
22264 cursor_type
= get_specified_cursor_type (b
->cursor_type
, width
);
22266 /* Use cursor-in-non-selected-windows instead
22267 for non-selected window or frame. */
22270 alt_cursor
= b
->cursor_in_non_selected_windows
;
22271 if (!EQ (Qt
, alt_cursor
))
22272 return get_specified_cursor_type (alt_cursor
, width
);
22273 /* t means modify the normal cursor type. */
22274 if (cursor_type
== FILLED_BOX_CURSOR
)
22275 cursor_type
= HOLLOW_BOX_CURSOR
;
22276 else if (cursor_type
== BAR_CURSOR
&& *width
> 1)
22278 return cursor_type
;
22281 /* Use normal cursor if not blinked off. */
22282 if (!w
->cursor_off_p
)
22284 #ifdef HAVE_WINDOW_SYSTEM
22285 if (glyph
!= NULL
&& glyph
->type
== IMAGE_GLYPH
)
22287 if (cursor_type
== FILLED_BOX_CURSOR
)
22289 /* Using a block cursor on large images can be very annoying.
22290 So use a hollow cursor for "large" images.
22291 If image is not transparent (no mask), also use hollow cursor. */
22292 struct image
*img
= IMAGE_FROM_ID (f
, glyph
->u
.img_id
);
22293 if (img
!= NULL
&& IMAGEP (img
->spec
))
22295 /* Arbitrarily, interpret "Large" as >32x32 and >NxN
22296 where N = size of default frame font size.
22297 This should cover most of the "tiny" icons people may use. */
22299 || img
->width
> max (32, WINDOW_FRAME_COLUMN_WIDTH (w
))
22300 || img
->height
> max (32, WINDOW_FRAME_LINE_HEIGHT (w
)))
22301 cursor_type
= HOLLOW_BOX_CURSOR
;
22304 else if (cursor_type
!= NO_CURSOR
)
22306 /* Display current only supports BOX and HOLLOW cursors for images.
22307 So for now, unconditionally use a HOLLOW cursor when cursor is
22308 not a solid box cursor. */
22309 cursor_type
= HOLLOW_BOX_CURSOR
;
22313 return cursor_type
;
22316 /* Cursor is blinked off, so determine how to "toggle" it. */
22318 /* First look for an entry matching the buffer's cursor-type in blink-cursor-alist. */
22319 if ((alt_cursor
= Fassoc (b
->cursor_type
, Vblink_cursor_alist
), !NILP (alt_cursor
)))
22320 return get_specified_cursor_type (XCDR (alt_cursor
), width
);
22322 /* Then see if frame has specified a specific blink off cursor type. */
22323 if (FRAME_BLINK_OFF_CURSOR (f
) != DEFAULT_CURSOR
)
22325 *width
= FRAME_BLINK_OFF_CURSOR_WIDTH (f
);
22326 return FRAME_BLINK_OFF_CURSOR (f
);
22330 /* Some people liked having a permanently visible blinking cursor,
22331 while others had very strong opinions against it. So it was
22332 decided to remove it. KFS 2003-09-03 */
22334 /* Finally perform built-in cursor blinking:
22335 filled box <-> hollow box
22336 wide [h]bar <-> narrow [h]bar
22337 narrow [h]bar <-> no cursor
22338 other type <-> no cursor */
22340 if (cursor_type
== FILLED_BOX_CURSOR
)
22341 return HOLLOW_BOX_CURSOR
;
22343 if ((cursor_type
== BAR_CURSOR
|| cursor_type
== HBAR_CURSOR
) && *width
> 1)
22346 return cursor_type
;
22354 #ifdef HAVE_WINDOW_SYSTEM
22356 /* Notice when the text cursor of window W has been completely
22357 overwritten by a drawing operation that outputs glyphs in AREA
22358 starting at X0 and ending at X1 in the line starting at Y0 and
22359 ending at Y1. X coordinates are area-relative. X1 < 0 means all
22360 the rest of the line after X0 has been written. Y coordinates
22361 are window-relative. */
22364 notice_overwritten_cursor (w
, area
, x0
, x1
, y0
, y1
)
22366 enum glyph_row_area area
;
22367 int x0
, y0
, x1
, y1
;
22369 int cx0
, cx1
, cy0
, cy1
;
22370 struct glyph_row
*row
;
22372 if (!w
->phys_cursor_on_p
)
22374 if (area
!= TEXT_AREA
)
22377 if (w
->phys_cursor
.vpos
< 0
22378 || w
->phys_cursor
.vpos
>= w
->current_matrix
->nrows
22379 || (row
= w
->current_matrix
->rows
+ w
->phys_cursor
.vpos
,
22380 !(row
->enabled_p
&& row
->displays_text_p
)))
22383 if (row
->cursor_in_fringe_p
)
22385 row
->cursor_in_fringe_p
= 0;
22386 draw_fringe_bitmap (w
, row
, 0);
22387 w
->phys_cursor_on_p
= 0;
22391 cx0
= w
->phys_cursor
.x
;
22392 cx1
= cx0
+ w
->phys_cursor_width
;
22393 if (x0
> cx0
|| (x1
>= 0 && x1
< cx1
))
22396 /* The cursor image will be completely removed from the
22397 screen if the output area intersects the cursor area in
22398 y-direction. When we draw in [y0 y1[, and some part of
22399 the cursor is at y < y0, that part must have been drawn
22400 before. When scrolling, the cursor is erased before
22401 actually scrolling, so we don't come here. When not
22402 scrolling, the rows above the old cursor row must have
22403 changed, and in this case these rows must have written
22404 over the cursor image.
22406 Likewise if part of the cursor is below y1, with the
22407 exception of the cursor being in the first blank row at
22408 the buffer and window end because update_text_area
22409 doesn't draw that row. (Except when it does, but
22410 that's handled in update_text_area.) */
22412 cy0
= w
->phys_cursor
.y
;
22413 cy1
= cy0
+ w
->phys_cursor_height
;
22414 if ((y0
< cy0
|| y0
>= cy1
) && (y1
<= cy0
|| y1
>= cy1
))
22417 w
->phys_cursor_on_p
= 0;
22420 #endif /* HAVE_WINDOW_SYSTEM */
22423 /************************************************************************
22425 ************************************************************************/
22427 #ifdef HAVE_WINDOW_SYSTEM
22430 Fix the display of area AREA of overlapping row ROW in window W
22431 with respect to the overlapping part OVERLAPS. */
22434 x_fix_overlapping_area (w
, row
, area
, overlaps
)
22436 struct glyph_row
*row
;
22437 enum glyph_row_area area
;
22445 for (i
= 0; i
< row
->used
[area
];)
22447 if (row
->glyphs
[area
][i
].overlaps_vertically_p
)
22449 int start
= i
, start_x
= x
;
22453 x
+= row
->glyphs
[area
][i
].pixel_width
;
22456 while (i
< row
->used
[area
]
22457 && row
->glyphs
[area
][i
].overlaps_vertically_p
);
22459 draw_glyphs (w
, start_x
, row
, area
,
22461 DRAW_NORMAL_TEXT
, overlaps
);
22465 x
+= row
->glyphs
[area
][i
].pixel_width
;
22475 Draw the cursor glyph of window W in glyph row ROW. See the
22476 comment of draw_glyphs for the meaning of HL. */
22479 draw_phys_cursor_glyph (w
, row
, hl
)
22481 struct glyph_row
*row
;
22482 enum draw_glyphs_face hl
;
22484 /* If cursor hpos is out of bounds, don't draw garbage. This can
22485 happen in mini-buffer windows when switching between echo area
22486 glyphs and mini-buffer. */
22487 if (w
->phys_cursor
.hpos
< row
->used
[TEXT_AREA
])
22489 int on_p
= w
->phys_cursor_on_p
;
22491 x1
= draw_glyphs (w
, w
->phys_cursor
.x
, row
, TEXT_AREA
,
22492 w
->phys_cursor
.hpos
, w
->phys_cursor
.hpos
+ 1,
22494 w
->phys_cursor_on_p
= on_p
;
22496 if (hl
== DRAW_CURSOR
)
22497 w
->phys_cursor_width
= x1
- w
->phys_cursor
.x
;
22498 /* When we erase the cursor, and ROW is overlapped by other
22499 rows, make sure that these overlapping parts of other rows
22501 else if (hl
== DRAW_NORMAL_TEXT
&& row
->overlapped_p
)
22503 w
->phys_cursor_width
= x1
- w
->phys_cursor
.x
;
22505 if (row
> w
->current_matrix
->rows
22506 && MATRIX_ROW_OVERLAPS_SUCC_P (row
- 1))
22507 x_fix_overlapping_area (w
, row
- 1, TEXT_AREA
,
22508 OVERLAPS_ERASED_CURSOR
);
22510 if (MATRIX_ROW_BOTTOM_Y (row
) < window_text_bottom_y (w
)
22511 && MATRIX_ROW_OVERLAPS_PRED_P (row
+ 1))
22512 x_fix_overlapping_area (w
, row
+ 1, TEXT_AREA
,
22513 OVERLAPS_ERASED_CURSOR
);
22520 Erase the image of a cursor of window W from the screen. */
22523 erase_phys_cursor (w
)
22526 struct frame
*f
= XFRAME (w
->frame
);
22527 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
22528 int hpos
= w
->phys_cursor
.hpos
;
22529 int vpos
= w
->phys_cursor
.vpos
;
22530 int mouse_face_here_p
= 0;
22531 struct glyph_matrix
*active_glyphs
= w
->current_matrix
;
22532 struct glyph_row
*cursor_row
;
22533 struct glyph
*cursor_glyph
;
22534 enum draw_glyphs_face hl
;
22536 /* No cursor displayed or row invalidated => nothing to do on the
22538 if (w
->phys_cursor_type
== NO_CURSOR
)
22539 goto mark_cursor_off
;
22541 /* VPOS >= active_glyphs->nrows means that window has been resized.
22542 Don't bother to erase the cursor. */
22543 if (vpos
>= active_glyphs
->nrows
)
22544 goto mark_cursor_off
;
22546 /* If row containing cursor is marked invalid, there is nothing we
22548 cursor_row
= MATRIX_ROW (active_glyphs
, vpos
);
22549 if (!cursor_row
->enabled_p
)
22550 goto mark_cursor_off
;
22552 /* If line spacing is > 0, old cursor may only be partially visible in
22553 window after split-window. So adjust visible height. */
22554 cursor_row
->visible_height
= min (cursor_row
->visible_height
,
22555 window_text_bottom_y (w
) - cursor_row
->y
);
22557 /* If row is completely invisible, don't attempt to delete a cursor which
22558 isn't there. This can happen if cursor is at top of a window, and
22559 we switch to a buffer with a header line in that window. */
22560 if (cursor_row
->visible_height
<= 0)
22561 goto mark_cursor_off
;
22563 /* If cursor is in the fringe, erase by drawing actual bitmap there. */
22564 if (cursor_row
->cursor_in_fringe_p
)
22566 cursor_row
->cursor_in_fringe_p
= 0;
22567 draw_fringe_bitmap (w
, cursor_row
, 0);
22568 goto mark_cursor_off
;
22571 /* This can happen when the new row is shorter than the old one.
22572 In this case, either draw_glyphs or clear_end_of_line
22573 should have cleared the cursor. Note that we wouldn't be
22574 able to erase the cursor in this case because we don't have a
22575 cursor glyph at hand. */
22576 if (w
->phys_cursor
.hpos
>= cursor_row
->used
[TEXT_AREA
])
22577 goto mark_cursor_off
;
22579 /* If the cursor is in the mouse face area, redisplay that when
22580 we clear the cursor. */
22581 if (! NILP (dpyinfo
->mouse_face_window
)
22582 && w
== XWINDOW (dpyinfo
->mouse_face_window
)
22583 && (vpos
> dpyinfo
->mouse_face_beg_row
22584 || (vpos
== dpyinfo
->mouse_face_beg_row
22585 && hpos
>= dpyinfo
->mouse_face_beg_col
))
22586 && (vpos
< dpyinfo
->mouse_face_end_row
22587 || (vpos
== dpyinfo
->mouse_face_end_row
22588 && hpos
< dpyinfo
->mouse_face_end_col
))
22589 /* Don't redraw the cursor's spot in mouse face if it is at the
22590 end of a line (on a newline). The cursor appears there, but
22591 mouse highlighting does not. */
22592 && cursor_row
->used
[TEXT_AREA
] > hpos
)
22593 mouse_face_here_p
= 1;
22595 /* Maybe clear the display under the cursor. */
22596 if (w
->phys_cursor_type
== HOLLOW_BOX_CURSOR
)
22599 int header_line_height
= WINDOW_HEADER_LINE_HEIGHT (w
);
22602 cursor_glyph
= get_phys_cursor_glyph (w
);
22603 if (cursor_glyph
== NULL
)
22604 goto mark_cursor_off
;
22606 width
= cursor_glyph
->pixel_width
;
22607 left_x
= window_box_left_offset (w
, TEXT_AREA
);
22608 x
= w
->phys_cursor
.x
;
22610 width
-= left_x
- x
;
22611 width
= min (width
, window_box_width (w
, TEXT_AREA
) - x
);
22612 y
= WINDOW_TO_FRAME_PIXEL_Y (w
, max (header_line_height
, cursor_row
->y
));
22613 x
= WINDOW_TEXT_TO_FRAME_PIXEL_X (w
, max (x
, left_x
));
22616 FRAME_RIF (f
)->clear_frame_area (f
, x
, y
, width
, cursor_row
->visible_height
);
22619 /* Erase the cursor by redrawing the character underneath it. */
22620 if (mouse_face_here_p
)
22621 hl
= DRAW_MOUSE_FACE
;
22623 hl
= DRAW_NORMAL_TEXT
;
22624 draw_phys_cursor_glyph (w
, cursor_row
, hl
);
22627 w
->phys_cursor_on_p
= 0;
22628 w
->phys_cursor_type
= NO_CURSOR
;
22633 Display or clear cursor of window W. If ON is zero, clear the
22634 cursor. If it is non-zero, display the cursor. If ON is nonzero,
22635 where to put the cursor is specified by HPOS, VPOS, X and Y. */
22638 display_and_set_cursor (w
, on
, hpos
, vpos
, x
, y
)
22640 int on
, hpos
, vpos
, x
, y
;
22642 struct frame
*f
= XFRAME (w
->frame
);
22643 int new_cursor_type
;
22644 int new_cursor_width
;
22646 struct glyph_row
*glyph_row
;
22647 struct glyph
*glyph
;
22649 /* This is pointless on invisible frames, and dangerous on garbaged
22650 windows and frames; in the latter case, the frame or window may
22651 be in the midst of changing its size, and x and y may be off the
22653 if (! FRAME_VISIBLE_P (f
)
22654 || FRAME_GARBAGED_P (f
)
22655 || vpos
>= w
->current_matrix
->nrows
22656 || hpos
>= w
->current_matrix
->matrix_w
)
22659 /* If cursor is off and we want it off, return quickly. */
22660 if (!on
&& !w
->phys_cursor_on_p
)
22663 glyph_row
= MATRIX_ROW (w
->current_matrix
, vpos
);
22664 /* If cursor row is not enabled, we don't really know where to
22665 display the cursor. */
22666 if (!glyph_row
->enabled_p
)
22668 w
->phys_cursor_on_p
= 0;
22673 if (!glyph_row
->exact_window_width_line_p
22674 || hpos
< glyph_row
->used
[TEXT_AREA
])
22675 glyph
= glyph_row
->glyphs
[TEXT_AREA
] + hpos
;
22677 xassert (interrupt_input_blocked
);
22679 /* Set new_cursor_type to the cursor we want to be displayed. */
22680 new_cursor_type
= get_window_cursor_type (w
, glyph
,
22681 &new_cursor_width
, &active_cursor
);
22683 /* If cursor is currently being shown and we don't want it to be or
22684 it is in the wrong place, or the cursor type is not what we want,
22686 if (w
->phys_cursor_on_p
22688 || w
->phys_cursor
.x
!= x
22689 || w
->phys_cursor
.y
!= y
22690 || new_cursor_type
!= w
->phys_cursor_type
22691 || ((new_cursor_type
== BAR_CURSOR
|| new_cursor_type
== HBAR_CURSOR
)
22692 && new_cursor_width
!= w
->phys_cursor_width
)))
22693 erase_phys_cursor (w
);
22695 /* Don't check phys_cursor_on_p here because that flag is only set
22696 to zero in some cases where we know that the cursor has been
22697 completely erased, to avoid the extra work of erasing the cursor
22698 twice. In other words, phys_cursor_on_p can be 1 and the cursor
22699 still not be visible, or it has only been partly erased. */
22702 w
->phys_cursor_ascent
= glyph_row
->ascent
;
22703 w
->phys_cursor_height
= glyph_row
->height
;
22705 /* Set phys_cursor_.* before x_draw_.* is called because some
22706 of them may need the information. */
22707 w
->phys_cursor
.x
= x
;
22708 w
->phys_cursor
.y
= glyph_row
->y
;
22709 w
->phys_cursor
.hpos
= hpos
;
22710 w
->phys_cursor
.vpos
= vpos
;
22713 FRAME_RIF (f
)->draw_window_cursor (w
, glyph_row
, x
, y
,
22714 new_cursor_type
, new_cursor_width
,
22715 on
, active_cursor
);
22719 /* Switch the display of W's cursor on or off, according to the value
22726 update_window_cursor (w
, on
)
22730 /* Don't update cursor in windows whose frame is in the process
22731 of being deleted. */
22732 if (w
->current_matrix
)
22735 display_and_set_cursor (w
, on
, w
->phys_cursor
.hpos
, w
->phys_cursor
.vpos
,
22736 w
->phys_cursor
.x
, w
->phys_cursor
.y
);
22742 /* Call update_window_cursor with parameter ON_P on all leaf windows
22743 in the window tree rooted at W. */
22746 update_cursor_in_window_tree (w
, on_p
)
22752 if (!NILP (w
->hchild
))
22753 update_cursor_in_window_tree (XWINDOW (w
->hchild
), on_p
);
22754 else if (!NILP (w
->vchild
))
22755 update_cursor_in_window_tree (XWINDOW (w
->vchild
), on_p
);
22757 update_window_cursor (w
, on_p
);
22759 w
= NILP (w
->next
) ? 0 : XWINDOW (w
->next
);
22765 Display the cursor on window W, or clear it, according to ON_P.
22766 Don't change the cursor's position. */
22769 x_update_cursor (f
, on_p
)
22773 update_cursor_in_window_tree (XWINDOW (f
->root_window
), on_p
);
22778 Clear the cursor of window W to background color, and mark the
22779 cursor as not shown. This is used when the text where the cursor
22780 is is about to be rewritten. */
22786 if (FRAME_VISIBLE_P (XFRAME (w
->frame
)) && w
->phys_cursor_on_p
)
22787 update_window_cursor (w
, 0);
22792 Display the active region described by mouse_face_* according to DRAW. */
22795 show_mouse_face (dpyinfo
, draw
)
22796 Display_Info
*dpyinfo
;
22797 enum draw_glyphs_face draw
;
22799 struct window
*w
= XWINDOW (dpyinfo
->mouse_face_window
);
22800 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
22802 if (/* If window is in the process of being destroyed, don't bother
22804 w
->current_matrix
!= NULL
22805 /* Don't update mouse highlight if hidden */
22806 && (draw
!= DRAW_MOUSE_FACE
|| !dpyinfo
->mouse_face_hidden
)
22807 /* Recognize when we are called to operate on rows that don't exist
22808 anymore. This can happen when a window is split. */
22809 && dpyinfo
->mouse_face_end_row
< w
->current_matrix
->nrows
)
22811 int phys_cursor_on_p
= w
->phys_cursor_on_p
;
22812 struct glyph_row
*row
, *first
, *last
;
22814 first
= MATRIX_ROW (w
->current_matrix
, dpyinfo
->mouse_face_beg_row
);
22815 last
= MATRIX_ROW (w
->current_matrix
, dpyinfo
->mouse_face_end_row
);
22817 for (row
= first
; row
<= last
&& row
->enabled_p
; ++row
)
22819 int start_hpos
, end_hpos
, start_x
;
22821 /* For all but the first row, the highlight starts at column 0. */
22824 start_hpos
= dpyinfo
->mouse_face_beg_col
;
22825 start_x
= dpyinfo
->mouse_face_beg_x
;
22834 end_hpos
= dpyinfo
->mouse_face_end_col
;
22837 end_hpos
= row
->used
[TEXT_AREA
];
22838 if (draw
== DRAW_NORMAL_TEXT
)
22839 row
->fill_line_p
= 1; /* Clear to end of line */
22842 if (end_hpos
> start_hpos
)
22844 draw_glyphs (w
, start_x
, row
, TEXT_AREA
,
22845 start_hpos
, end_hpos
,
22849 = draw
== DRAW_MOUSE_FACE
|| draw
== DRAW_IMAGE_RAISED
;
22853 /* When we've written over the cursor, arrange for it to
22854 be displayed again. */
22855 if (phys_cursor_on_p
&& !w
->phys_cursor_on_p
)
22858 display_and_set_cursor (w
, 1,
22859 w
->phys_cursor
.hpos
, w
->phys_cursor
.vpos
,
22860 w
->phys_cursor
.x
, w
->phys_cursor
.y
);
22865 /* Change the mouse cursor. */
22866 if (draw
== DRAW_NORMAL_TEXT
&& !EQ (dpyinfo
->mouse_face_window
, f
->tool_bar_window
))
22867 FRAME_RIF (f
)->define_frame_cursor (f
, FRAME_X_OUTPUT (f
)->text_cursor
);
22868 else if (draw
== DRAW_MOUSE_FACE
)
22869 FRAME_RIF (f
)->define_frame_cursor (f
, FRAME_X_OUTPUT (f
)->hand_cursor
);
22871 FRAME_RIF (f
)->define_frame_cursor (f
, FRAME_X_OUTPUT (f
)->nontext_cursor
);
22875 Clear out the mouse-highlighted active region.
22876 Redraw it un-highlighted first. Value is non-zero if mouse
22877 face was actually drawn unhighlighted. */
22880 clear_mouse_face (dpyinfo
)
22881 Display_Info
*dpyinfo
;
22885 if (!dpyinfo
->mouse_face_hidden
&& !NILP (dpyinfo
->mouse_face_window
))
22887 show_mouse_face (dpyinfo
, DRAW_NORMAL_TEXT
);
22891 dpyinfo
->mouse_face_beg_row
= dpyinfo
->mouse_face_beg_col
= -1;
22892 dpyinfo
->mouse_face_end_row
= dpyinfo
->mouse_face_end_col
= -1;
22893 dpyinfo
->mouse_face_window
= Qnil
;
22894 dpyinfo
->mouse_face_overlay
= Qnil
;
22900 Non-zero if physical cursor of window W is within mouse face. */
22903 cursor_in_mouse_face_p (w
)
22906 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (XFRAME (w
->frame
));
22907 int in_mouse_face
= 0;
22909 if (WINDOWP (dpyinfo
->mouse_face_window
)
22910 && XWINDOW (dpyinfo
->mouse_face_window
) == w
)
22912 int hpos
= w
->phys_cursor
.hpos
;
22913 int vpos
= w
->phys_cursor
.vpos
;
22915 if (vpos
>= dpyinfo
->mouse_face_beg_row
22916 && vpos
<= dpyinfo
->mouse_face_end_row
22917 && (vpos
> dpyinfo
->mouse_face_beg_row
22918 || hpos
>= dpyinfo
->mouse_face_beg_col
)
22919 && (vpos
< dpyinfo
->mouse_face_end_row
22920 || hpos
< dpyinfo
->mouse_face_end_col
22921 || dpyinfo
->mouse_face_past_end
))
22925 return in_mouse_face
;
22931 /* Find the glyph matrix position of buffer position CHARPOS in window
22932 *W. HPOS, *VPOS, *X, and *Y are set to the positions found. W's
22933 current glyphs must be up to date. If CHARPOS is above window
22934 start return (0, 0, 0, 0). If CHARPOS is after end of W, return end
22935 of last line in W. In the row containing CHARPOS, stop before glyphs
22936 having STOP as object. */
22938 #if 1 /* This is a version of fast_find_position that's more correct
22939 in the presence of hscrolling, for example. I didn't install
22940 it right away because the problem fixed is minor, it failed
22941 in 20.x as well, and I think it's too risky to install
22942 so near the release of 21.1. 2001-09-25 gerd. */
22946 fast_find_position (w
, charpos
, hpos
, vpos
, x
, y
, stop
)
22949 int *hpos
, *vpos
, *x
, *y
;
22952 struct glyph_row
*row
, *first
;
22953 struct glyph
*glyph
, *end
;
22956 first
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
22957 if (charpos
< MATRIX_ROW_START_CHARPOS (first
))
22962 *vpos
= MATRIX_ROW_VPOS (first
, w
->current_matrix
);
22966 row
= row_containing_pos (w
, charpos
, first
, NULL
, 0);
22969 row
= MATRIX_ROW (w
->current_matrix
, XFASTINT (w
->window_end_vpos
));
22973 /* If whole rows or last part of a row came from a display overlay,
22974 row_containing_pos will skip over such rows because their end pos
22975 equals the start pos of the overlay or interval.
22977 Move back if we have a STOP object and previous row's
22978 end glyph came from STOP. */
22981 struct glyph_row
*prev
;
22982 while ((prev
= row
- 1, prev
>= first
)
22983 && MATRIX_ROW_END_CHARPOS (prev
) == charpos
22984 && prev
->used
[TEXT_AREA
] > 0)
22986 struct glyph
*beg
= prev
->glyphs
[TEXT_AREA
];
22987 glyph
= beg
+ prev
->used
[TEXT_AREA
];
22988 while (--glyph
>= beg
22989 && INTEGERP (glyph
->object
));
22991 || !EQ (stop
, glyph
->object
))
22999 *vpos
= MATRIX_ROW_VPOS (row
, w
->current_matrix
);
23001 glyph
= row
->glyphs
[TEXT_AREA
];
23002 end
= glyph
+ row
->used
[TEXT_AREA
];
23004 /* Skip over glyphs not having an object at the start of the row.
23005 These are special glyphs like truncation marks on terminal
23007 if (row
->displays_text_p
)
23009 && INTEGERP (glyph
->object
)
23010 && !EQ (stop
, glyph
->object
)
23011 && glyph
->charpos
< 0)
23013 *x
+= glyph
->pixel_width
;
23018 && !INTEGERP (glyph
->object
)
23019 && !EQ (stop
, glyph
->object
)
23020 && (!BUFFERP (glyph
->object
)
23021 || glyph
->charpos
< charpos
))
23023 *x
+= glyph
->pixel_width
;
23027 *hpos
= glyph
- row
->glyphs
[TEXT_AREA
];
23034 fast_find_position (w
, pos
, hpos
, vpos
, x
, y
, stop
)
23037 int *hpos
, *vpos
, *x
, *y
;
23042 int maybe_next_line_p
= 0;
23043 int line_start_position
;
23044 int yb
= window_text_bottom_y (w
);
23045 struct glyph_row
*row
, *best_row
;
23046 int row_vpos
, best_row_vpos
;
23049 row
= best_row
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
23050 row_vpos
= best_row_vpos
= MATRIX_ROW_VPOS (row
, w
->current_matrix
);
23052 while (row
->y
< yb
)
23054 if (row
->used
[TEXT_AREA
])
23055 line_start_position
= row
->glyphs
[TEXT_AREA
]->charpos
;
23057 line_start_position
= 0;
23059 if (line_start_position
> pos
)
23061 /* If the position sought is the end of the buffer,
23062 don't include the blank lines at the bottom of the window. */
23063 else if (line_start_position
== pos
23064 && pos
== BUF_ZV (XBUFFER (w
->buffer
)))
23066 maybe_next_line_p
= 1;
23069 else if (line_start_position
> 0)
23072 best_row_vpos
= row_vpos
;
23075 if (row
->y
+ row
->height
>= yb
)
23082 /* Find the right column within BEST_ROW. */
23084 current_x
= best_row
->x
;
23085 for (i
= 0; i
< best_row
->used
[TEXT_AREA
]; i
++)
23087 struct glyph
*glyph
= best_row
->glyphs
[TEXT_AREA
] + i
;
23088 int charpos
= glyph
->charpos
;
23090 if (BUFFERP (glyph
->object
))
23092 if (charpos
== pos
)
23095 *vpos
= best_row_vpos
;
23100 else if (charpos
> pos
)
23103 else if (EQ (glyph
->object
, stop
))
23108 current_x
+= glyph
->pixel_width
;
23111 /* If we're looking for the end of the buffer,
23112 and we didn't find it in the line we scanned,
23113 use the start of the following line. */
23114 if (maybe_next_line_p
)
23119 current_x
= best_row
->x
;
23122 *vpos
= best_row_vpos
;
23123 *hpos
= lastcol
+ 1;
23132 /* Find the position of the glyph for position POS in OBJECT in
23133 window W's current matrix, and return in *X, *Y the pixel
23134 coordinates, and return in *HPOS, *VPOS the column/row of the glyph.
23136 RIGHT_P non-zero means return the position of the right edge of the
23137 glyph, RIGHT_P zero means return the left edge position.
23139 If no glyph for POS exists in the matrix, return the position of
23140 the glyph with the next smaller position that is in the matrix, if
23141 RIGHT_P is zero. If RIGHT_P is non-zero, and no glyph for POS
23142 exists in the matrix, return the position of the glyph with the
23143 next larger position in OBJECT.
23145 Value is non-zero if a glyph was found. */
23148 fast_find_string_pos (w
, pos
, object
, hpos
, vpos
, x
, y
, right_p
)
23151 Lisp_Object object
;
23152 int *hpos
, *vpos
, *x
, *y
;
23155 int yb
= window_text_bottom_y (w
);
23156 struct glyph_row
*r
;
23157 struct glyph
*best_glyph
= NULL
;
23158 struct glyph_row
*best_row
= NULL
;
23161 for (r
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
23162 r
->enabled_p
&& r
->y
< yb
;
23165 struct glyph
*g
= r
->glyphs
[TEXT_AREA
];
23166 struct glyph
*e
= g
+ r
->used
[TEXT_AREA
];
23169 for (gx
= r
->x
; g
< e
; gx
+= g
->pixel_width
, ++g
)
23170 if (EQ (g
->object
, object
))
23172 if (g
->charpos
== pos
)
23179 else if (best_glyph
== NULL
23180 || ((eabs (g
->charpos
- pos
)
23181 < eabs (best_glyph
->charpos
- pos
))
23184 : g
->charpos
> pos
)))
23198 *hpos
= best_glyph
- best_row
->glyphs
[TEXT_AREA
];
23202 *x
+= best_glyph
->pixel_width
;
23207 *vpos
= best_row
- w
->current_matrix
->rows
;
23210 return best_glyph
!= NULL
;
23214 /* See if position X, Y is within a hot-spot of an image. */
23217 on_hot_spot_p (hot_spot
, x
, y
)
23218 Lisp_Object hot_spot
;
23221 if (!CONSP (hot_spot
))
23224 if (EQ (XCAR (hot_spot
), Qrect
))
23226 /* CDR is (Top-Left . Bottom-Right) = ((x0 . y0) . (x1 . y1)) */
23227 Lisp_Object rect
= XCDR (hot_spot
);
23231 if (!CONSP (XCAR (rect
)))
23233 if (!CONSP (XCDR (rect
)))
23235 if (!(tem
= XCAR (XCAR (rect
)), INTEGERP (tem
) && x
>= XINT (tem
)))
23237 if (!(tem
= XCDR (XCAR (rect
)), INTEGERP (tem
) && y
>= XINT (tem
)))
23239 if (!(tem
= XCAR (XCDR (rect
)), INTEGERP (tem
) && x
<= XINT (tem
)))
23241 if (!(tem
= XCDR (XCDR (rect
)), INTEGERP (tem
) && y
<= XINT (tem
)))
23245 else if (EQ (XCAR (hot_spot
), Qcircle
))
23247 /* CDR is (Center . Radius) = ((x0 . y0) . r) */
23248 Lisp_Object circ
= XCDR (hot_spot
);
23249 Lisp_Object lr
, lx0
, ly0
;
23251 && CONSP (XCAR (circ
))
23252 && (lr
= XCDR (circ
), INTEGERP (lr
) || FLOATP (lr
))
23253 && (lx0
= XCAR (XCAR (circ
)), INTEGERP (lx0
))
23254 && (ly0
= XCDR (XCAR (circ
)), INTEGERP (ly0
)))
23256 double r
= XFLOATINT (lr
);
23257 double dx
= XINT (lx0
) - x
;
23258 double dy
= XINT (ly0
) - y
;
23259 return (dx
* dx
+ dy
* dy
<= r
* r
);
23262 else if (EQ (XCAR (hot_spot
), Qpoly
))
23264 /* CDR is [x0 y0 x1 y1 x2 y2 ...x(n-1) y(n-1)] */
23265 if (VECTORP (XCDR (hot_spot
)))
23267 struct Lisp_Vector
*v
= XVECTOR (XCDR (hot_spot
));
23268 Lisp_Object
*poly
= v
->contents
;
23272 Lisp_Object lx
, ly
;
23275 /* Need an even number of coordinates, and at least 3 edges. */
23276 if (n
< 6 || n
& 1)
23279 /* Count edge segments intersecting line from (X,Y) to (X,infinity).
23280 If count is odd, we are inside polygon. Pixels on edges
23281 may or may not be included depending on actual geometry of the
23283 if ((lx
= poly
[n
-2], !INTEGERP (lx
))
23284 || (ly
= poly
[n
-1], !INTEGERP (lx
)))
23286 x0
= XINT (lx
), y0
= XINT (ly
);
23287 for (i
= 0; i
< n
; i
+= 2)
23289 int x1
= x0
, y1
= y0
;
23290 if ((lx
= poly
[i
], !INTEGERP (lx
))
23291 || (ly
= poly
[i
+1], !INTEGERP (ly
)))
23293 x0
= XINT (lx
), y0
= XINT (ly
);
23295 /* Does this segment cross the X line? */
23303 if (y
> y0
&& y
> y1
)
23305 if (y
< y0
+ ((y1
- y0
) * (x
- x0
)) / (x1
- x0
))
23315 find_hot_spot (map
, x
, y
)
23319 while (CONSP (map
))
23321 if (CONSP (XCAR (map
))
23322 && on_hot_spot_p (XCAR (XCAR (map
)), x
, y
))
23330 DEFUN ("lookup-image-map", Flookup_image_map
, Slookup_image_map
,
23332 doc
: /* Lookup in image map MAP coordinates X and Y.
23333 An image map is an alist where each element has the format (AREA ID PLIST).
23334 An AREA is specified as either a rectangle, a circle, or a polygon:
23335 A rectangle is a cons (rect . ((x0 . y0) . (x1 . y1))) specifying the
23336 pixel coordinates of the upper left and bottom right corners.
23337 A circle is a cons (circle . ((x0 . y0) . r)) specifying the center
23338 and the radius of the circle; r may be a float or integer.
23339 A polygon is a cons (poly . [x0 y0 x1 y1 ...]) where each pair in the
23340 vector describes one corner in the polygon.
23341 Returns the alist element for the first matching AREA in MAP. */)
23352 return find_hot_spot (map
, XINT (x
), XINT (y
));
23356 /* Display frame CURSOR, optionally using shape defined by POINTER. */
23358 define_frame_cursor1 (f
, cursor
, pointer
)
23361 Lisp_Object pointer
;
23363 /* Do not change cursor shape while dragging mouse. */
23364 if (!NILP (do_mouse_tracking
))
23367 if (!NILP (pointer
))
23369 if (EQ (pointer
, Qarrow
))
23370 cursor
= FRAME_X_OUTPUT (f
)->nontext_cursor
;
23371 else if (EQ (pointer
, Qhand
))
23372 cursor
= FRAME_X_OUTPUT (f
)->hand_cursor
;
23373 else if (EQ (pointer
, Qtext
))
23374 cursor
= FRAME_X_OUTPUT (f
)->text_cursor
;
23375 else if (EQ (pointer
, intern ("hdrag")))
23376 cursor
= FRAME_X_OUTPUT (f
)->horizontal_drag_cursor
;
23377 #ifdef HAVE_X_WINDOWS
23378 else if (EQ (pointer
, intern ("vdrag")))
23379 cursor
= FRAME_X_DISPLAY_INFO (f
)->vertical_scroll_bar_cursor
;
23381 else if (EQ (pointer
, intern ("hourglass")))
23382 cursor
= FRAME_X_OUTPUT (f
)->hourglass_cursor
;
23383 else if (EQ (pointer
, Qmodeline
))
23384 cursor
= FRAME_X_OUTPUT (f
)->modeline_cursor
;
23386 cursor
= FRAME_X_OUTPUT (f
)->nontext_cursor
;
23389 if (cursor
!= No_Cursor
)
23390 FRAME_RIF (f
)->define_frame_cursor (f
, cursor
);
23393 /* Take proper action when mouse has moved to the mode or header line
23394 or marginal area AREA of window W, x-position X and y-position Y.
23395 X is relative to the start of the text display area of W, so the
23396 width of bitmap areas and scroll bars must be subtracted to get a
23397 position relative to the start of the mode line. */
23400 note_mode_line_or_margin_highlight (window
, x
, y
, area
)
23401 Lisp_Object window
;
23403 enum window_part area
;
23405 struct window
*w
= XWINDOW (window
);
23406 struct frame
*f
= XFRAME (w
->frame
);
23407 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
23408 Cursor cursor
= FRAME_X_OUTPUT (f
)->nontext_cursor
;
23409 Lisp_Object pointer
= Qnil
;
23410 int charpos
, dx
, dy
, width
, height
;
23411 Lisp_Object string
, object
= Qnil
;
23412 Lisp_Object pos
, help
;
23414 Lisp_Object mouse_face
;
23415 int original_x_pixel
= x
;
23416 struct glyph
* glyph
= NULL
, * row_start_glyph
= NULL
;
23417 struct glyph_row
*row
;
23419 if (area
== ON_MODE_LINE
|| area
== ON_HEADER_LINE
)
23424 string
= mode_line_string (w
, area
, &x
, &y
, &charpos
,
23425 &object
, &dx
, &dy
, &width
, &height
);
23427 row
= (area
== ON_MODE_LINE
23428 ? MATRIX_MODE_LINE_ROW (w
->current_matrix
)
23429 : MATRIX_HEADER_LINE_ROW (w
->current_matrix
));
23432 if (row
->mode_line_p
&& row
->enabled_p
)
23434 glyph
= row_start_glyph
= row
->glyphs
[TEXT_AREA
];
23435 end
= glyph
+ row
->used
[TEXT_AREA
];
23437 for (x0
= original_x_pixel
;
23438 glyph
< end
&& x0
>= glyph
->pixel_width
;
23440 x0
-= glyph
->pixel_width
;
23448 x
-= WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w
);
23449 string
= marginal_area_string (w
, area
, &x
, &y
, &charpos
,
23450 &object
, &dx
, &dy
, &width
, &height
);
23455 if (IMAGEP (object
))
23457 Lisp_Object image_map
, hotspot
;
23458 if ((image_map
= Fplist_get (XCDR (object
), QCmap
),
23460 && (hotspot
= find_hot_spot (image_map
, dx
, dy
),
23462 && (hotspot
= XCDR (hotspot
), CONSP (hotspot
)))
23464 Lisp_Object area_id
, plist
;
23466 area_id
= XCAR (hotspot
);
23467 /* Could check AREA_ID to see if we enter/leave this hot-spot.
23468 If so, we could look for mouse-enter, mouse-leave
23469 properties in PLIST (and do something...). */
23470 hotspot
= XCDR (hotspot
);
23471 if (CONSP (hotspot
)
23472 && (plist
= XCAR (hotspot
), CONSP (plist
)))
23474 pointer
= Fplist_get (plist
, Qpointer
);
23475 if (NILP (pointer
))
23477 help
= Fplist_get (plist
, Qhelp_echo
);
23480 help_echo_string
= help
;
23481 /* Is this correct? ++kfs */
23482 XSETWINDOW (help_echo_window
, w
);
23483 help_echo_object
= w
->buffer
;
23484 help_echo_pos
= charpos
;
23488 if (NILP (pointer
))
23489 pointer
= Fplist_get (XCDR (object
), QCpointer
);
23492 if (STRINGP (string
))
23494 pos
= make_number (charpos
);
23495 /* If we're on a string with `help-echo' text property, arrange
23496 for the help to be displayed. This is done by setting the
23497 global variable help_echo_string to the help string. */
23500 help
= Fget_text_property (pos
, Qhelp_echo
, string
);
23503 help_echo_string
= help
;
23504 XSETWINDOW (help_echo_window
, w
);
23505 help_echo_object
= string
;
23506 help_echo_pos
= charpos
;
23510 if (NILP (pointer
))
23511 pointer
= Fget_text_property (pos
, Qpointer
, string
);
23513 /* Change the mouse pointer according to what is under X/Y. */
23514 if (NILP (pointer
) && ((area
== ON_MODE_LINE
) || (area
== ON_HEADER_LINE
)))
23517 map
= Fget_text_property (pos
, Qlocal_map
, string
);
23518 if (!KEYMAPP (map
))
23519 map
= Fget_text_property (pos
, Qkeymap
, string
);
23520 if (!KEYMAPP (map
))
23521 cursor
= dpyinfo
->vertical_scroll_bar_cursor
;
23524 /* Change the mouse face according to what is under X/Y. */
23525 mouse_face
= Fget_text_property (pos
, Qmouse_face
, string
);
23526 if (!NILP (mouse_face
)
23527 && ((area
== ON_MODE_LINE
) || (area
== ON_HEADER_LINE
))
23532 struct glyph
* tmp_glyph
;
23536 int total_pixel_width
;
23541 b
= Fprevious_single_property_change (make_number (charpos
+ 1),
23542 Qmouse_face
, string
, Qnil
);
23544 b
= make_number (0);
23546 e
= Fnext_single_property_change (pos
, Qmouse_face
, string
, Qnil
);
23548 e
= make_number (SCHARS (string
));
23550 /* Calculate the position(glyph position: GPOS) of GLYPH in
23551 displayed string. GPOS is different from CHARPOS.
23553 CHARPOS is the position of glyph in internal string
23554 object. A mode line string format has structures which
23555 is converted to a flatten by emacs lisp interpreter.
23556 The internal string is an element of the structures.
23557 The displayed string is the flatten string. */
23559 if (glyph
> row_start_glyph
)
23561 tmp_glyph
= glyph
- 1;
23562 while (tmp_glyph
>= row_start_glyph
23563 && tmp_glyph
->charpos
>= XINT (b
)
23564 && EQ (tmp_glyph
->object
, glyph
->object
))
23571 /* Calculate the lenght(glyph sequence length: GSEQ_LENGTH) of
23572 displayed string holding GLYPH.
23574 GSEQ_LENGTH is different from SCHARS (STRING).
23575 SCHARS (STRING) returns the length of the internal string. */
23576 for (tmp_glyph
= glyph
, gseq_length
= gpos
;
23577 tmp_glyph
->charpos
< XINT (e
);
23578 tmp_glyph
++, gseq_length
++)
23580 if (!EQ (tmp_glyph
->object
, glyph
->object
))
23584 total_pixel_width
= 0;
23585 for (tmp_glyph
= glyph
- gpos
; tmp_glyph
!= glyph
; tmp_glyph
++)
23586 total_pixel_width
+= tmp_glyph
->pixel_width
;
23588 /* Pre calculation of re-rendering position */
23590 hpos
= (area
== ON_MODE_LINE
23591 ? (w
->current_matrix
)->nrows
- 1
23594 /* If the re-rendering position is included in the last
23595 re-rendering area, we should do nothing. */
23596 if ( EQ (window
, dpyinfo
->mouse_face_window
)
23597 && dpyinfo
->mouse_face_beg_col
<= vpos
23598 && vpos
< dpyinfo
->mouse_face_end_col
23599 && dpyinfo
->mouse_face_beg_row
== hpos
)
23602 if (clear_mouse_face (dpyinfo
))
23603 cursor
= No_Cursor
;
23605 dpyinfo
->mouse_face_beg_col
= vpos
;
23606 dpyinfo
->mouse_face_beg_row
= hpos
;
23608 dpyinfo
->mouse_face_beg_x
= original_x_pixel
- (total_pixel_width
+ dx
);
23609 dpyinfo
->mouse_face_beg_y
= 0;
23611 dpyinfo
->mouse_face_end_col
= vpos
+ gseq_length
;
23612 dpyinfo
->mouse_face_end_row
= dpyinfo
->mouse_face_beg_row
;
23614 dpyinfo
->mouse_face_end_x
= 0;
23615 dpyinfo
->mouse_face_end_y
= 0;
23617 dpyinfo
->mouse_face_past_end
= 0;
23618 dpyinfo
->mouse_face_window
= window
;
23620 dpyinfo
->mouse_face_face_id
= face_at_string_position (w
, string
,
23623 glyph
->face_id
, 1);
23624 show_mouse_face (dpyinfo
, DRAW_MOUSE_FACE
);
23626 if (NILP (pointer
))
23629 else if ((area
== ON_MODE_LINE
) || (area
== ON_HEADER_LINE
))
23630 clear_mouse_face (dpyinfo
);
23632 define_frame_cursor1 (f
, cursor
, pointer
);
23637 Take proper action when the mouse has moved to position X, Y on
23638 frame F as regards highlighting characters that have mouse-face
23639 properties. Also de-highlighting chars where the mouse was before.
23640 X and Y can be negative or out of range. */
23643 note_mouse_highlight (f
, x
, y
)
23647 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
23648 enum window_part part
;
23649 Lisp_Object window
;
23651 Cursor cursor
= No_Cursor
;
23652 Lisp_Object pointer
= Qnil
; /* Takes precedence over cursor! */
23655 /* When a menu is active, don't highlight because this looks odd. */
23656 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NS)
23657 if (popup_activated ())
23661 if (NILP (Vmouse_highlight
)
23662 || !f
->glyphs_initialized_p
)
23665 dpyinfo
->mouse_face_mouse_x
= x
;
23666 dpyinfo
->mouse_face_mouse_y
= y
;
23667 dpyinfo
->mouse_face_mouse_frame
= f
;
23669 if (dpyinfo
->mouse_face_defer
)
23672 if (gc_in_progress
)
23674 dpyinfo
->mouse_face_deferred_gc
= 1;
23678 /* Which window is that in? */
23679 window
= window_from_coordinates (f
, x
, y
, &part
, 0, 0, 1);
23681 /* If we were displaying active text in another window, clear that.
23682 Also clear if we move out of text area in same window. */
23683 if (! EQ (window
, dpyinfo
->mouse_face_window
)
23684 || (part
!= ON_TEXT
&& part
!= ON_MODE_LINE
&& part
!= ON_HEADER_LINE
23685 && !NILP (dpyinfo
->mouse_face_window
)))
23686 clear_mouse_face (dpyinfo
);
23688 /* Not on a window -> return. */
23689 if (!WINDOWP (window
))
23692 /* Reset help_echo_string. It will get recomputed below. */
23693 help_echo_string
= Qnil
;
23695 /* Convert to window-relative pixel coordinates. */
23696 w
= XWINDOW (window
);
23697 frame_to_window_pixel_xy (w
, &x
, &y
);
23699 /* Handle tool-bar window differently since it doesn't display a
23701 if (EQ (window
, f
->tool_bar_window
))
23703 note_tool_bar_highlight (f
, x
, y
);
23707 /* Mouse is on the mode, header line or margin? */
23708 if (part
== ON_MODE_LINE
|| part
== ON_HEADER_LINE
23709 || part
== ON_LEFT_MARGIN
|| part
== ON_RIGHT_MARGIN
)
23711 note_mode_line_or_margin_highlight (window
, x
, y
, part
);
23715 if (part
== ON_VERTICAL_BORDER
)
23717 cursor
= FRAME_X_OUTPUT (f
)->horizontal_drag_cursor
;
23718 help_echo_string
= build_string ("drag-mouse-1: resize");
23720 else if (part
== ON_LEFT_FRINGE
|| part
== ON_RIGHT_FRINGE
23721 || part
== ON_SCROLL_BAR
)
23722 cursor
= FRAME_X_OUTPUT (f
)->nontext_cursor
;
23724 cursor
= FRAME_X_OUTPUT (f
)->text_cursor
;
23726 /* Are we in a window whose display is up to date?
23727 And verify the buffer's text has not changed. */
23728 b
= XBUFFER (w
->buffer
);
23729 if (part
== ON_TEXT
23730 && EQ (w
->window_end_valid
, w
->buffer
)
23731 && XFASTINT (w
->last_modified
) == BUF_MODIFF (b
)
23732 && XFASTINT (w
->last_overlay_modified
) == BUF_OVERLAY_MODIFF (b
))
23734 int hpos
, vpos
, pos
, i
, dx
, dy
, area
;
23735 struct glyph
*glyph
;
23736 Lisp_Object object
;
23737 Lisp_Object mouse_face
= Qnil
, overlay
= Qnil
, position
;
23738 Lisp_Object
*overlay_vec
= NULL
;
23740 struct buffer
*obuf
;
23741 int obegv
, ozv
, same_region
;
23743 /* Find the glyph under X/Y. */
23744 glyph
= x_y_to_hpos_vpos (w
, x
, y
, &hpos
, &vpos
, &dx
, &dy
, &area
);
23746 /* Look for :pointer property on image. */
23747 if (glyph
!= NULL
&& glyph
->type
== IMAGE_GLYPH
)
23749 struct image
*img
= IMAGE_FROM_ID (f
, glyph
->u
.img_id
);
23750 if (img
!= NULL
&& IMAGEP (img
->spec
))
23752 Lisp_Object image_map
, hotspot
;
23753 if ((image_map
= Fplist_get (XCDR (img
->spec
), QCmap
),
23755 && (hotspot
= find_hot_spot (image_map
,
23756 glyph
->slice
.x
+ dx
,
23757 glyph
->slice
.y
+ dy
),
23759 && (hotspot
= XCDR (hotspot
), CONSP (hotspot
)))
23761 Lisp_Object area_id
, plist
;
23763 area_id
= XCAR (hotspot
);
23764 /* Could check AREA_ID to see if we enter/leave this hot-spot.
23765 If so, we could look for mouse-enter, mouse-leave
23766 properties in PLIST (and do something...). */
23767 hotspot
= XCDR (hotspot
);
23768 if (CONSP (hotspot
)
23769 && (plist
= XCAR (hotspot
), CONSP (plist
)))
23771 pointer
= Fplist_get (plist
, Qpointer
);
23772 if (NILP (pointer
))
23774 help_echo_string
= Fplist_get (plist
, Qhelp_echo
);
23775 if (!NILP (help_echo_string
))
23777 help_echo_window
= window
;
23778 help_echo_object
= glyph
->object
;
23779 help_echo_pos
= glyph
->charpos
;
23783 if (NILP (pointer
))
23784 pointer
= Fplist_get (XCDR (img
->spec
), QCpointer
);
23788 /* Clear mouse face if X/Y not over text. */
23790 || area
!= TEXT_AREA
23791 || !MATRIX_ROW (w
->current_matrix
, vpos
)->displays_text_p
)
23793 if (clear_mouse_face (dpyinfo
))
23794 cursor
= No_Cursor
;
23795 if (NILP (pointer
))
23797 if (area
!= TEXT_AREA
)
23798 cursor
= FRAME_X_OUTPUT (f
)->nontext_cursor
;
23800 pointer
= Vvoid_text_area_pointer
;
23805 pos
= glyph
->charpos
;
23806 object
= glyph
->object
;
23807 if (!STRINGP (object
) && !BUFFERP (object
))
23810 /* If we get an out-of-range value, return now; avoid an error. */
23811 if (BUFFERP (object
) && pos
> BUF_Z (b
))
23814 /* Make the window's buffer temporarily current for
23815 overlays_at and compute_char_face. */
23816 obuf
= current_buffer
;
23817 current_buffer
= b
;
23823 /* Is this char mouse-active or does it have help-echo? */
23824 position
= make_number (pos
);
23826 if (BUFFERP (object
))
23828 /* Put all the overlays we want in a vector in overlay_vec. */
23829 GET_OVERLAYS_AT (pos
, overlay_vec
, noverlays
, NULL
, 0);
23830 /* Sort overlays into increasing priority order. */
23831 noverlays
= sort_overlays (overlay_vec
, noverlays
, w
);
23836 same_region
= (EQ (window
, dpyinfo
->mouse_face_window
)
23837 && vpos
>= dpyinfo
->mouse_face_beg_row
23838 && vpos
<= dpyinfo
->mouse_face_end_row
23839 && (vpos
> dpyinfo
->mouse_face_beg_row
23840 || hpos
>= dpyinfo
->mouse_face_beg_col
)
23841 && (vpos
< dpyinfo
->mouse_face_end_row
23842 || hpos
< dpyinfo
->mouse_face_end_col
23843 || dpyinfo
->mouse_face_past_end
));
23846 cursor
= No_Cursor
;
23848 /* Check mouse-face highlighting. */
23850 /* If there exists an overlay with mouse-face overlapping
23851 the one we are currently highlighting, we have to
23852 check if we enter the overlapping overlay, and then
23853 highlight only that. */
23854 || (OVERLAYP (dpyinfo
->mouse_face_overlay
)
23855 && mouse_face_overlay_overlaps (dpyinfo
->mouse_face_overlay
)))
23857 /* Find the highest priority overlay that has a mouse-face
23860 for (i
= noverlays
- 1; i
>= 0 && NILP (overlay
); --i
)
23862 mouse_face
= Foverlay_get (overlay_vec
[i
], Qmouse_face
);
23863 if (!NILP (mouse_face
))
23864 overlay
= overlay_vec
[i
];
23867 /* If we're actually highlighting the same overlay as
23868 before, there's no need to do that again. */
23869 if (!NILP (overlay
)
23870 && EQ (overlay
, dpyinfo
->mouse_face_overlay
))
23871 goto check_help_echo
;
23873 dpyinfo
->mouse_face_overlay
= overlay
;
23875 /* Clear the display of the old active region, if any. */
23876 if (clear_mouse_face (dpyinfo
))
23877 cursor
= No_Cursor
;
23879 /* If no overlay applies, get a text property. */
23880 if (NILP (overlay
))
23881 mouse_face
= Fget_text_property (position
, Qmouse_face
, object
);
23883 /* Handle the overlay case. */
23884 if (!NILP (overlay
))
23886 /* Find the range of text around this char that
23887 should be active. */
23888 Lisp_Object before
, after
;
23891 before
= Foverlay_start (overlay
);
23892 after
= Foverlay_end (overlay
);
23893 /* Record this as the current active region. */
23894 fast_find_position (w
, XFASTINT (before
),
23895 &dpyinfo
->mouse_face_beg_col
,
23896 &dpyinfo
->mouse_face_beg_row
,
23897 &dpyinfo
->mouse_face_beg_x
,
23898 &dpyinfo
->mouse_face_beg_y
, Qnil
);
23900 dpyinfo
->mouse_face_past_end
23901 = !fast_find_position (w
, XFASTINT (after
),
23902 &dpyinfo
->mouse_face_end_col
,
23903 &dpyinfo
->mouse_face_end_row
,
23904 &dpyinfo
->mouse_face_end_x
,
23905 &dpyinfo
->mouse_face_end_y
, Qnil
);
23906 dpyinfo
->mouse_face_window
= window
;
23908 dpyinfo
->mouse_face_face_id
23909 = face_at_buffer_position (w
, pos
, 0, 0,
23911 !dpyinfo
->mouse_face_hidden
,
23914 /* Display it as active. */
23915 show_mouse_face (dpyinfo
, DRAW_MOUSE_FACE
);
23916 cursor
= No_Cursor
;
23918 /* Handle the text property case. */
23919 else if (!NILP (mouse_face
) && BUFFERP (object
))
23921 /* Find the range of text around this char that
23922 should be active. */
23923 Lisp_Object before
, after
, beginning
, end
;
23926 beginning
= Fmarker_position (w
->start
);
23927 end
= make_number (BUF_Z (XBUFFER (object
))
23928 - XFASTINT (w
->window_end_pos
));
23930 = Fprevious_single_property_change (make_number (pos
+ 1),
23932 object
, beginning
);
23934 = Fnext_single_property_change (position
, Qmouse_face
,
23937 /* Record this as the current active region. */
23938 fast_find_position (w
, XFASTINT (before
),
23939 &dpyinfo
->mouse_face_beg_col
,
23940 &dpyinfo
->mouse_face_beg_row
,
23941 &dpyinfo
->mouse_face_beg_x
,
23942 &dpyinfo
->mouse_face_beg_y
, Qnil
);
23943 dpyinfo
->mouse_face_past_end
23944 = !fast_find_position (w
, XFASTINT (after
),
23945 &dpyinfo
->mouse_face_end_col
,
23946 &dpyinfo
->mouse_face_end_row
,
23947 &dpyinfo
->mouse_face_end_x
,
23948 &dpyinfo
->mouse_face_end_y
, Qnil
);
23949 dpyinfo
->mouse_face_window
= window
;
23951 if (BUFFERP (object
))
23952 dpyinfo
->mouse_face_face_id
23953 = face_at_buffer_position (w
, pos
, 0, 0,
23955 !dpyinfo
->mouse_face_hidden
,
23958 /* Display it as active. */
23959 show_mouse_face (dpyinfo
, DRAW_MOUSE_FACE
);
23960 cursor
= No_Cursor
;
23962 else if (!NILP (mouse_face
) && STRINGP (object
))
23967 b
= Fprevious_single_property_change (make_number (pos
+ 1),
23970 e
= Fnext_single_property_change (position
, Qmouse_face
,
23973 b
= make_number (0);
23975 e
= make_number (SCHARS (object
) - 1);
23977 fast_find_string_pos (w
, XINT (b
), object
,
23978 &dpyinfo
->mouse_face_beg_col
,
23979 &dpyinfo
->mouse_face_beg_row
,
23980 &dpyinfo
->mouse_face_beg_x
,
23981 &dpyinfo
->mouse_face_beg_y
, 0);
23982 fast_find_string_pos (w
, XINT (e
), object
,
23983 &dpyinfo
->mouse_face_end_col
,
23984 &dpyinfo
->mouse_face_end_row
,
23985 &dpyinfo
->mouse_face_end_x
,
23986 &dpyinfo
->mouse_face_end_y
, 1);
23987 dpyinfo
->mouse_face_past_end
= 0;
23988 dpyinfo
->mouse_face_window
= window
;
23989 dpyinfo
->mouse_face_face_id
23990 = face_at_string_position (w
, object
, pos
, 0, 0, 0, &ignore
,
23991 glyph
->face_id
, 1);
23992 show_mouse_face (dpyinfo
, DRAW_MOUSE_FACE
);
23993 cursor
= No_Cursor
;
23995 else if (STRINGP (object
) && NILP (mouse_face
))
23997 /* A string which doesn't have mouse-face, but
23998 the text ``under'' it might have. */
23999 struct glyph_row
*r
= MATRIX_ROW (w
->current_matrix
, vpos
);
24000 int start
= MATRIX_ROW_START_CHARPOS (r
);
24002 pos
= string_buffer_position (w
, object
, start
);
24004 mouse_face
= get_char_property_and_overlay (make_number (pos
),
24008 if (!NILP (mouse_face
) && !NILP (overlay
))
24010 Lisp_Object before
= Foverlay_start (overlay
);
24011 Lisp_Object after
= Foverlay_end (overlay
);
24014 /* Note that we might not be able to find position
24015 BEFORE in the glyph matrix if the overlay is
24016 entirely covered by a `display' property. In
24017 this case, we overshoot. So let's stop in
24018 the glyph matrix before glyphs for OBJECT. */
24019 fast_find_position (w
, XFASTINT (before
),
24020 &dpyinfo
->mouse_face_beg_col
,
24021 &dpyinfo
->mouse_face_beg_row
,
24022 &dpyinfo
->mouse_face_beg_x
,
24023 &dpyinfo
->mouse_face_beg_y
,
24026 dpyinfo
->mouse_face_past_end
24027 = !fast_find_position (w
, XFASTINT (after
),
24028 &dpyinfo
->mouse_face_end_col
,
24029 &dpyinfo
->mouse_face_end_row
,
24030 &dpyinfo
->mouse_face_end_x
,
24031 &dpyinfo
->mouse_face_end_y
,
24033 dpyinfo
->mouse_face_window
= window
;
24034 dpyinfo
->mouse_face_face_id
24035 = face_at_buffer_position (w
, pos
, 0, 0,
24037 !dpyinfo
->mouse_face_hidden
,
24040 /* Display it as active. */
24041 show_mouse_face (dpyinfo
, DRAW_MOUSE_FACE
);
24042 cursor
= No_Cursor
;
24049 /* Look for a `help-echo' property. */
24050 if (NILP (help_echo_string
)) {
24051 Lisp_Object help
, overlay
;
24053 /* Check overlays first. */
24054 help
= overlay
= Qnil
;
24055 for (i
= noverlays
- 1; i
>= 0 && NILP (help
); --i
)
24057 overlay
= overlay_vec
[i
];
24058 help
= Foverlay_get (overlay
, Qhelp_echo
);
24063 help_echo_string
= help
;
24064 help_echo_window
= window
;
24065 help_echo_object
= overlay
;
24066 help_echo_pos
= pos
;
24070 Lisp_Object object
= glyph
->object
;
24071 int charpos
= glyph
->charpos
;
24073 /* Try text properties. */
24074 if (STRINGP (object
)
24076 && charpos
< SCHARS (object
))
24078 help
= Fget_text_property (make_number (charpos
),
24079 Qhelp_echo
, object
);
24082 /* If the string itself doesn't specify a help-echo,
24083 see if the buffer text ``under'' it does. */
24084 struct glyph_row
*r
24085 = MATRIX_ROW (w
->current_matrix
, vpos
);
24086 int start
= MATRIX_ROW_START_CHARPOS (r
);
24087 int pos
= string_buffer_position (w
, object
, start
);
24090 help
= Fget_char_property (make_number (pos
),
24091 Qhelp_echo
, w
->buffer
);
24095 object
= w
->buffer
;
24100 else if (BUFFERP (object
)
24103 help
= Fget_text_property (make_number (charpos
), Qhelp_echo
,
24108 help_echo_string
= help
;
24109 help_echo_window
= window
;
24110 help_echo_object
= object
;
24111 help_echo_pos
= charpos
;
24116 /* Look for a `pointer' property. */
24117 if (NILP (pointer
))
24119 /* Check overlays first. */
24120 for (i
= noverlays
- 1; i
>= 0 && NILP (pointer
); --i
)
24121 pointer
= Foverlay_get (overlay_vec
[i
], Qpointer
);
24123 if (NILP (pointer
))
24125 Lisp_Object object
= glyph
->object
;
24126 int charpos
= glyph
->charpos
;
24128 /* Try text properties. */
24129 if (STRINGP (object
)
24131 && charpos
< SCHARS (object
))
24133 pointer
= Fget_text_property (make_number (charpos
),
24135 if (NILP (pointer
))
24137 /* If the string itself doesn't specify a pointer,
24138 see if the buffer text ``under'' it does. */
24139 struct glyph_row
*r
24140 = MATRIX_ROW (w
->current_matrix
, vpos
);
24141 int start
= MATRIX_ROW_START_CHARPOS (r
);
24142 int pos
= string_buffer_position (w
, object
, start
);
24144 pointer
= Fget_char_property (make_number (pos
),
24145 Qpointer
, w
->buffer
);
24148 else if (BUFFERP (object
)
24151 pointer
= Fget_text_property (make_number (charpos
),
24158 current_buffer
= obuf
;
24163 define_frame_cursor1 (f
, cursor
, pointer
);
24168 Clear any mouse-face on window W. This function is part of the
24169 redisplay interface, and is called from try_window_id and similar
24170 functions to ensure the mouse-highlight is off. */
24173 x_clear_window_mouse_face (w
)
24176 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (XFRAME (w
->frame
));
24177 Lisp_Object window
;
24180 XSETWINDOW (window
, w
);
24181 if (EQ (window
, dpyinfo
->mouse_face_window
))
24182 clear_mouse_face (dpyinfo
);
24188 Just discard the mouse face information for frame F, if any.
24189 This is used when the size of F is changed. */
24192 cancel_mouse_face (f
)
24195 Lisp_Object window
;
24196 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
24198 window
= dpyinfo
->mouse_face_window
;
24199 if (! NILP (window
) && XFRAME (XWINDOW (window
)->frame
) == f
)
24201 dpyinfo
->mouse_face_beg_row
= dpyinfo
->mouse_face_beg_col
= -1;
24202 dpyinfo
->mouse_face_end_row
= dpyinfo
->mouse_face_end_col
= -1;
24203 dpyinfo
->mouse_face_window
= Qnil
;
24208 #endif /* HAVE_WINDOW_SYSTEM */
24211 /***********************************************************************
24213 ***********************************************************************/
24215 #ifdef HAVE_WINDOW_SYSTEM
24217 /* Redraw the part of glyph row area AREA of glyph row ROW on window W
24218 which intersects rectangle R. R is in window-relative coordinates. */
24221 expose_area (w
, row
, r
, area
)
24223 struct glyph_row
*row
;
24225 enum glyph_row_area area
;
24227 struct glyph
*first
= row
->glyphs
[area
];
24228 struct glyph
*end
= row
->glyphs
[area
] + row
->used
[area
];
24229 struct glyph
*last
;
24230 int first_x
, start_x
, x
;
24232 if (area
== TEXT_AREA
&& row
->fill_line_p
)
24233 /* If row extends face to end of line write the whole line. */
24234 draw_glyphs (w
, 0, row
, area
,
24235 0, row
->used
[area
],
24236 DRAW_NORMAL_TEXT
, 0);
24239 /* Set START_X to the window-relative start position for drawing glyphs of
24240 AREA. The first glyph of the text area can be partially visible.
24241 The first glyphs of other areas cannot. */
24242 start_x
= window_box_left_offset (w
, area
);
24244 if (area
== TEXT_AREA
)
24247 /* Find the first glyph that must be redrawn. */
24249 && x
+ first
->pixel_width
< r
->x
)
24251 x
+= first
->pixel_width
;
24255 /* Find the last one. */
24259 && x
< r
->x
+ r
->width
)
24261 x
+= last
->pixel_width
;
24267 draw_glyphs (w
, first_x
- start_x
, row
, area
,
24268 first
- row
->glyphs
[area
], last
- row
->glyphs
[area
],
24269 DRAW_NORMAL_TEXT
, 0);
24274 /* Redraw the parts of the glyph row ROW on window W intersecting
24275 rectangle R. R is in window-relative coordinates. Value is
24276 non-zero if mouse-face was overwritten. */
24279 expose_line (w
, row
, r
)
24281 struct glyph_row
*row
;
24284 xassert (row
->enabled_p
);
24286 if (row
->mode_line_p
|| w
->pseudo_window_p
)
24287 draw_glyphs (w
, 0, row
, TEXT_AREA
,
24288 0, row
->used
[TEXT_AREA
],
24289 DRAW_NORMAL_TEXT
, 0);
24292 if (row
->used
[LEFT_MARGIN_AREA
])
24293 expose_area (w
, row
, r
, LEFT_MARGIN_AREA
);
24294 if (row
->used
[TEXT_AREA
])
24295 expose_area (w
, row
, r
, TEXT_AREA
);
24296 if (row
->used
[RIGHT_MARGIN_AREA
])
24297 expose_area (w
, row
, r
, RIGHT_MARGIN_AREA
);
24298 draw_row_fringe_bitmaps (w
, row
);
24301 return row
->mouse_face_p
;
24305 /* Redraw those parts of glyphs rows during expose event handling that
24306 overlap other rows. Redrawing of an exposed line writes over parts
24307 of lines overlapping that exposed line; this function fixes that.
24309 W is the window being exposed. FIRST_OVERLAPPING_ROW is the first
24310 row in W's current matrix that is exposed and overlaps other rows.
24311 LAST_OVERLAPPING_ROW is the last such row. */
24314 expose_overlaps (w
, first_overlapping_row
, last_overlapping_row
, r
)
24316 struct glyph_row
*first_overlapping_row
;
24317 struct glyph_row
*last_overlapping_row
;
24320 struct glyph_row
*row
;
24322 for (row
= first_overlapping_row
; row
<= last_overlapping_row
; ++row
)
24323 if (row
->overlapping_p
)
24325 xassert (row
->enabled_p
&& !row
->mode_line_p
);
24328 if (row
->used
[LEFT_MARGIN_AREA
])
24329 x_fix_overlapping_area (w
, row
, LEFT_MARGIN_AREA
, OVERLAPS_BOTH
);
24331 if (row
->used
[TEXT_AREA
])
24332 x_fix_overlapping_area (w
, row
, TEXT_AREA
, OVERLAPS_BOTH
);
24334 if (row
->used
[RIGHT_MARGIN_AREA
])
24335 x_fix_overlapping_area (w
, row
, RIGHT_MARGIN_AREA
, OVERLAPS_BOTH
);
24341 /* Return non-zero if W's cursor intersects rectangle R. */
24344 phys_cursor_in_rect_p (w
, r
)
24348 XRectangle cr
, result
;
24349 struct glyph
*cursor_glyph
;
24350 struct glyph_row
*row
;
24352 if (w
->phys_cursor
.vpos
>= 0
24353 && w
->phys_cursor
.vpos
< w
->current_matrix
->nrows
24354 && (row
= MATRIX_ROW (w
->current_matrix
, w
->phys_cursor
.vpos
),
24356 && row
->cursor_in_fringe_p
)
24358 /* Cursor is in the fringe. */
24359 cr
.x
= window_box_right_offset (w
,
24360 (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
24361 ? RIGHT_MARGIN_AREA
24364 cr
.width
= WINDOW_RIGHT_FRINGE_WIDTH (w
);
24365 cr
.height
= row
->height
;
24366 return x_intersect_rectangles (&cr
, r
, &result
);
24369 cursor_glyph
= get_phys_cursor_glyph (w
);
24372 /* r is relative to W's box, but w->phys_cursor.x is relative
24373 to left edge of W's TEXT area. Adjust it. */
24374 cr
.x
= window_box_left_offset (w
, TEXT_AREA
) + w
->phys_cursor
.x
;
24375 cr
.y
= w
->phys_cursor
.y
;
24376 cr
.width
= cursor_glyph
->pixel_width
;
24377 cr
.height
= w
->phys_cursor_height
;
24378 /* ++KFS: W32 version used W32-specific IntersectRect here, but
24379 I assume the effect is the same -- and this is portable. */
24380 return x_intersect_rectangles (&cr
, r
, &result
);
24382 /* If we don't understand the format, pretend we're not in the hot-spot. */
24388 Draw a vertical window border to the right of window W if W doesn't
24389 have vertical scroll bars. */
24392 x_draw_vertical_border (w
)
24395 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
24397 /* We could do better, if we knew what type of scroll-bar the adjacent
24398 windows (on either side) have... But we don't :-(
24399 However, I think this works ok. ++KFS 2003-04-25 */
24401 /* Redraw borders between horizontally adjacent windows. Don't
24402 do it for frames with vertical scroll bars because either the
24403 right scroll bar of a window, or the left scroll bar of its
24404 neighbor will suffice as a border. */
24405 if (FRAME_HAS_VERTICAL_SCROLL_BARS (XFRAME (w
->frame
)))
24408 if (!WINDOW_RIGHTMOST_P (w
)
24409 && !WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w
))
24411 int x0
, x1
, y0
, y1
;
24413 window_box_edges (w
, -1, &x0
, &y0
, &x1
, &y1
);
24416 if (WINDOW_LEFT_FRINGE_WIDTH (w
) == 0)
24419 FRAME_RIF (f
)->draw_vertical_window_border (w
, x1
, y0
, y1
);
24421 else if (!WINDOW_LEFTMOST_P (w
)
24422 && !WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w
))
24424 int x0
, x1
, y0
, y1
;
24426 window_box_edges (w
, -1, &x0
, &y0
, &x1
, &y1
);
24429 if (WINDOW_LEFT_FRINGE_WIDTH (w
) == 0)
24432 FRAME_RIF (f
)->draw_vertical_window_border (w
, x0
, y0
, y1
);
24437 /* Redraw the part of window W intersection rectangle FR. Pixel
24438 coordinates in FR are frame-relative. Call this function with
24439 input blocked. Value is non-zero if the exposure overwrites
24443 expose_window (w
, fr
)
24447 struct frame
*f
= XFRAME (w
->frame
);
24449 int mouse_face_overwritten_p
= 0;
24451 /* If window is not yet fully initialized, do nothing. This can
24452 happen when toolkit scroll bars are used and a window is split.
24453 Reconfiguring the scroll bar will generate an expose for a newly
24455 if (w
->current_matrix
== NULL
)
24458 /* When we're currently updating the window, display and current
24459 matrix usually don't agree. Arrange for a thorough display
24461 if (w
== updated_window
)
24463 SET_FRAME_GARBAGED (f
);
24467 /* Frame-relative pixel rectangle of W. */
24468 wr
.x
= WINDOW_LEFT_EDGE_X (w
);
24469 wr
.y
= WINDOW_TOP_EDGE_Y (w
);
24470 wr
.width
= WINDOW_TOTAL_WIDTH (w
);
24471 wr
.height
= WINDOW_TOTAL_HEIGHT (w
);
24473 if (x_intersect_rectangles (fr
, &wr
, &r
))
24475 int yb
= window_text_bottom_y (w
);
24476 struct glyph_row
*row
;
24477 int cursor_cleared_p
;
24478 struct glyph_row
*first_overlapping_row
, *last_overlapping_row
;
24480 TRACE ((stderr
, "expose_window (%d, %d, %d, %d)\n",
24481 r
.x
, r
.y
, r
.width
, r
.height
));
24483 /* Convert to window coordinates. */
24484 r
.x
-= WINDOW_LEFT_EDGE_X (w
);
24485 r
.y
-= WINDOW_TOP_EDGE_Y (w
);
24487 /* Turn off the cursor. */
24488 if (!w
->pseudo_window_p
24489 && phys_cursor_in_rect_p (w
, &r
))
24491 x_clear_cursor (w
);
24492 cursor_cleared_p
= 1;
24495 cursor_cleared_p
= 0;
24497 /* Update lines intersecting rectangle R. */
24498 first_overlapping_row
= last_overlapping_row
= NULL
;
24499 for (row
= w
->current_matrix
->rows
;
24504 int y1
= MATRIX_ROW_BOTTOM_Y (row
);
24506 if ((y0
>= r
.y
&& y0
< r
.y
+ r
.height
)
24507 || (y1
> r
.y
&& y1
< r
.y
+ r
.height
)
24508 || (r
.y
>= y0
&& r
.y
< y1
)
24509 || (r
.y
+ r
.height
> y0
&& r
.y
+ r
.height
< y1
))
24511 /* A header line may be overlapping, but there is no need
24512 to fix overlapping areas for them. KFS 2005-02-12 */
24513 if (row
->overlapping_p
&& !row
->mode_line_p
)
24515 if (first_overlapping_row
== NULL
)
24516 first_overlapping_row
= row
;
24517 last_overlapping_row
= row
;
24521 if (expose_line (w
, row
, &r
))
24522 mouse_face_overwritten_p
= 1;
24525 else if (row
->overlapping_p
)
24527 /* We must redraw a row overlapping the exposed area. */
24529 ? y0
+ row
->phys_height
> r
.y
24530 : y0
+ row
->ascent
- row
->phys_ascent
< r
.y
+r
.height
)
24532 if (first_overlapping_row
== NULL
)
24533 first_overlapping_row
= row
;
24534 last_overlapping_row
= row
;
24542 /* Display the mode line if there is one. */
24543 if (WINDOW_WANTS_MODELINE_P (w
)
24544 && (row
= MATRIX_MODE_LINE_ROW (w
->current_matrix
),
24546 && row
->y
< r
.y
+ r
.height
)
24548 if (expose_line (w
, row
, &r
))
24549 mouse_face_overwritten_p
= 1;
24552 if (!w
->pseudo_window_p
)
24554 /* Fix the display of overlapping rows. */
24555 if (first_overlapping_row
)
24556 expose_overlaps (w
, first_overlapping_row
, last_overlapping_row
,
24559 /* Draw border between windows. */
24560 x_draw_vertical_border (w
);
24562 /* Turn the cursor on again. */
24563 if (cursor_cleared_p
)
24564 update_window_cursor (w
, 1);
24568 return mouse_face_overwritten_p
;
24573 /* Redraw (parts) of all windows in the window tree rooted at W that
24574 intersect R. R contains frame pixel coordinates. Value is
24575 non-zero if the exposure overwrites mouse-face. */
24578 expose_window_tree (w
, r
)
24582 struct frame
*f
= XFRAME (w
->frame
);
24583 int mouse_face_overwritten_p
= 0;
24585 while (w
&& !FRAME_GARBAGED_P (f
))
24587 if (!NILP (w
->hchild
))
24588 mouse_face_overwritten_p
24589 |= expose_window_tree (XWINDOW (w
->hchild
), r
);
24590 else if (!NILP (w
->vchild
))
24591 mouse_face_overwritten_p
24592 |= expose_window_tree (XWINDOW (w
->vchild
), r
);
24594 mouse_face_overwritten_p
|= expose_window (w
, r
);
24596 w
= NILP (w
->next
) ? NULL
: XWINDOW (w
->next
);
24599 return mouse_face_overwritten_p
;
24604 Redisplay an exposed area of frame F. X and Y are the upper-left
24605 corner of the exposed rectangle. W and H are width and height of
24606 the exposed area. All are pixel values. W or H zero means redraw
24607 the entire frame. */
24610 expose_frame (f
, x
, y
, w
, h
)
24615 int mouse_face_overwritten_p
= 0;
24617 TRACE ((stderr
, "expose_frame "));
24619 /* No need to redraw if frame will be redrawn soon. */
24620 if (FRAME_GARBAGED_P (f
))
24622 TRACE ((stderr
, " garbaged\n"));
24626 /* If basic faces haven't been realized yet, there is no point in
24627 trying to redraw anything. This can happen when we get an expose
24628 event while Emacs is starting, e.g. by moving another window. */
24629 if (FRAME_FACE_CACHE (f
) == NULL
24630 || FRAME_FACE_CACHE (f
)->used
< BASIC_FACE_ID_SENTINEL
)
24632 TRACE ((stderr
, " no faces\n"));
24636 if (w
== 0 || h
== 0)
24639 r
.width
= FRAME_COLUMN_WIDTH (f
) * FRAME_COLS (f
);
24640 r
.height
= FRAME_LINE_HEIGHT (f
) * FRAME_LINES (f
);
24650 TRACE ((stderr
, "(%d, %d, %d, %d)\n", r
.x
, r
.y
, r
.width
, r
.height
));
24651 mouse_face_overwritten_p
= expose_window_tree (XWINDOW (f
->root_window
), &r
);
24653 if (WINDOWP (f
->tool_bar_window
))
24654 mouse_face_overwritten_p
24655 |= expose_window (XWINDOW (f
->tool_bar_window
), &r
);
24657 #ifdef HAVE_X_WINDOWS
24659 #ifndef USE_X_TOOLKIT
24660 if (WINDOWP (f
->menu_bar_window
))
24661 mouse_face_overwritten_p
24662 |= expose_window (XWINDOW (f
->menu_bar_window
), &r
);
24663 #endif /* not USE_X_TOOLKIT */
24667 /* Some window managers support a focus-follows-mouse style with
24668 delayed raising of frames. Imagine a partially obscured frame,
24669 and moving the mouse into partially obscured mouse-face on that
24670 frame. The visible part of the mouse-face will be highlighted,
24671 then the WM raises the obscured frame. With at least one WM, KDE
24672 2.1, Emacs is not getting any event for the raising of the frame
24673 (even tried with SubstructureRedirectMask), only Expose events.
24674 These expose events will draw text normally, i.e. not
24675 highlighted. Which means we must redo the highlight here.
24676 Subsume it under ``we love X''. --gerd 2001-08-15 */
24677 /* Included in Windows version because Windows most likely does not
24678 do the right thing if any third party tool offers
24679 focus-follows-mouse with delayed raise. --jason 2001-10-12 */
24680 if (mouse_face_overwritten_p
&& !FRAME_GARBAGED_P (f
))
24682 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
24683 if (f
== dpyinfo
->mouse_face_mouse_frame
)
24685 int x
= dpyinfo
->mouse_face_mouse_x
;
24686 int y
= dpyinfo
->mouse_face_mouse_y
;
24687 clear_mouse_face (dpyinfo
);
24688 note_mouse_highlight (f
, x
, y
);
24695 Determine the intersection of two rectangles R1 and R2. Return
24696 the intersection in *RESULT. Value is non-zero if RESULT is not
24700 x_intersect_rectangles (r1
, r2
, result
)
24701 XRectangle
*r1
, *r2
, *result
;
24703 XRectangle
*left
, *right
;
24704 XRectangle
*upper
, *lower
;
24705 int intersection_p
= 0;
24707 /* Rearrange so that R1 is the left-most rectangle. */
24709 left
= r1
, right
= r2
;
24711 left
= r2
, right
= r1
;
24713 /* X0 of the intersection is right.x0, if this is inside R1,
24714 otherwise there is no intersection. */
24715 if (right
->x
<= left
->x
+ left
->width
)
24717 result
->x
= right
->x
;
24719 /* The right end of the intersection is the minimum of the
24720 the right ends of left and right. */
24721 result
->width
= (min (left
->x
+ left
->width
, right
->x
+ right
->width
)
24724 /* Same game for Y. */
24726 upper
= r1
, lower
= r2
;
24728 upper
= r2
, lower
= r1
;
24730 /* The upper end of the intersection is lower.y0, if this is inside
24731 of upper. Otherwise, there is no intersection. */
24732 if (lower
->y
<= upper
->y
+ upper
->height
)
24734 result
->y
= lower
->y
;
24736 /* The lower end of the intersection is the minimum of the lower
24737 ends of upper and lower. */
24738 result
->height
= (min (lower
->y
+ lower
->height
,
24739 upper
->y
+ upper
->height
)
24741 intersection_p
= 1;
24745 return intersection_p
;
24748 #endif /* HAVE_WINDOW_SYSTEM */
24751 /***********************************************************************
24753 ***********************************************************************/
24758 Vwith_echo_area_save_vector
= Qnil
;
24759 staticpro (&Vwith_echo_area_save_vector
);
24761 Vmessage_stack
= Qnil
;
24762 staticpro (&Vmessage_stack
);
24764 Qinhibit_redisplay
= intern ("inhibit-redisplay");
24765 staticpro (&Qinhibit_redisplay
);
24767 message_dolog_marker1
= Fmake_marker ();
24768 staticpro (&message_dolog_marker1
);
24769 message_dolog_marker2
= Fmake_marker ();
24770 staticpro (&message_dolog_marker2
);
24771 message_dolog_marker3
= Fmake_marker ();
24772 staticpro (&message_dolog_marker3
);
24775 defsubr (&Sdump_frame_glyph_matrix
);
24776 defsubr (&Sdump_glyph_matrix
);
24777 defsubr (&Sdump_glyph_row
);
24778 defsubr (&Sdump_tool_bar_row
);
24779 defsubr (&Strace_redisplay
);
24780 defsubr (&Strace_to_stderr
);
24782 #ifdef HAVE_WINDOW_SYSTEM
24783 defsubr (&Stool_bar_lines_needed
);
24784 defsubr (&Slookup_image_map
);
24786 defsubr (&Sformat_mode_line
);
24787 defsubr (&Sinvisible_p
);
24789 staticpro (&Qmenu_bar_update_hook
);
24790 Qmenu_bar_update_hook
= intern ("menu-bar-update-hook");
24792 staticpro (&Qoverriding_terminal_local_map
);
24793 Qoverriding_terminal_local_map
= intern ("overriding-terminal-local-map");
24795 staticpro (&Qoverriding_local_map
);
24796 Qoverriding_local_map
= intern ("overriding-local-map");
24798 staticpro (&Qwindow_scroll_functions
);
24799 Qwindow_scroll_functions
= intern ("window-scroll-functions");
24801 staticpro (&Qwindow_text_change_functions
);
24802 Qwindow_text_change_functions
= intern ("window-text-change-functions");
24804 staticpro (&Qredisplay_end_trigger_functions
);
24805 Qredisplay_end_trigger_functions
= intern ("redisplay-end-trigger-functions");
24807 staticpro (&Qinhibit_point_motion_hooks
);
24808 Qinhibit_point_motion_hooks
= intern ("inhibit-point-motion-hooks");
24810 Qeval
= intern ("eval");
24811 staticpro (&Qeval
);
24813 QCdata
= intern (":data");
24814 staticpro (&QCdata
);
24815 Qdisplay
= intern ("display");
24816 staticpro (&Qdisplay
);
24817 Qspace_width
= intern ("space-width");
24818 staticpro (&Qspace_width
);
24819 Qraise
= intern ("raise");
24820 staticpro (&Qraise
);
24821 Qslice
= intern ("slice");
24822 staticpro (&Qslice
);
24823 Qspace
= intern ("space");
24824 staticpro (&Qspace
);
24825 Qmargin
= intern ("margin");
24826 staticpro (&Qmargin
);
24827 Qpointer
= intern ("pointer");
24828 staticpro (&Qpointer
);
24829 Qleft_margin
= intern ("left-margin");
24830 staticpro (&Qleft_margin
);
24831 Qright_margin
= intern ("right-margin");
24832 staticpro (&Qright_margin
);
24833 Qcenter
= intern ("center");
24834 staticpro (&Qcenter
);
24835 Qline_height
= intern ("line-height");
24836 staticpro (&Qline_height
);
24837 QCalign_to
= intern (":align-to");
24838 staticpro (&QCalign_to
);
24839 QCrelative_width
= intern (":relative-width");
24840 staticpro (&QCrelative_width
);
24841 QCrelative_height
= intern (":relative-height");
24842 staticpro (&QCrelative_height
);
24843 QCeval
= intern (":eval");
24844 staticpro (&QCeval
);
24845 QCpropertize
= intern (":propertize");
24846 staticpro (&QCpropertize
);
24847 QCfile
= intern (":file");
24848 staticpro (&QCfile
);
24849 Qfontified
= intern ("fontified");
24850 staticpro (&Qfontified
);
24851 Qfontification_functions
= intern ("fontification-functions");
24852 staticpro (&Qfontification_functions
);
24853 Qtrailing_whitespace
= intern ("trailing-whitespace");
24854 staticpro (&Qtrailing_whitespace
);
24855 Qescape_glyph
= intern ("escape-glyph");
24856 staticpro (&Qescape_glyph
);
24857 Qnobreak_space
= intern ("nobreak-space");
24858 staticpro (&Qnobreak_space
);
24859 Qimage
= intern ("image");
24860 staticpro (&Qimage
);
24861 QCmap
= intern (":map");
24862 staticpro (&QCmap
);
24863 QCpointer
= intern (":pointer");
24864 staticpro (&QCpointer
);
24865 Qrect
= intern ("rect");
24866 staticpro (&Qrect
);
24867 Qcircle
= intern ("circle");
24868 staticpro (&Qcircle
);
24869 Qpoly
= intern ("poly");
24870 staticpro (&Qpoly
);
24871 Qmessage_truncate_lines
= intern ("message-truncate-lines");
24872 staticpro (&Qmessage_truncate_lines
);
24873 Qgrow_only
= intern ("grow-only");
24874 staticpro (&Qgrow_only
);
24875 Qinhibit_menubar_update
= intern ("inhibit-menubar-update");
24876 staticpro (&Qinhibit_menubar_update
);
24877 Qinhibit_eval_during_redisplay
= intern ("inhibit-eval-during-redisplay");
24878 staticpro (&Qinhibit_eval_during_redisplay
);
24879 Qposition
= intern ("position");
24880 staticpro (&Qposition
);
24881 Qbuffer_position
= intern ("buffer-position");
24882 staticpro (&Qbuffer_position
);
24883 Qobject
= intern ("object");
24884 staticpro (&Qobject
);
24885 Qbar
= intern ("bar");
24887 Qhbar
= intern ("hbar");
24888 staticpro (&Qhbar
);
24889 Qbox
= intern ("box");
24891 Qhollow
= intern ("hollow");
24892 staticpro (&Qhollow
);
24893 Qhand
= intern ("hand");
24894 staticpro (&Qhand
);
24895 Qarrow
= intern ("arrow");
24896 staticpro (&Qarrow
);
24897 Qtext
= intern ("text");
24898 staticpro (&Qtext
);
24899 Qrisky_local_variable
= intern ("risky-local-variable");
24900 staticpro (&Qrisky_local_variable
);
24901 Qinhibit_free_realized_faces
= intern ("inhibit-free-realized-faces");
24902 staticpro (&Qinhibit_free_realized_faces
);
24904 list_of_error
= Fcons (Fcons (intern ("error"),
24905 Fcons (intern ("void-variable"), Qnil
)),
24907 staticpro (&list_of_error
);
24909 Qlast_arrow_position
= intern ("last-arrow-position");
24910 staticpro (&Qlast_arrow_position
);
24911 Qlast_arrow_string
= intern ("last-arrow-string");
24912 staticpro (&Qlast_arrow_string
);
24914 Qoverlay_arrow_string
= intern ("overlay-arrow-string");
24915 staticpro (&Qoverlay_arrow_string
);
24916 Qoverlay_arrow_bitmap
= intern ("overlay-arrow-bitmap");
24917 staticpro (&Qoverlay_arrow_bitmap
);
24919 echo_buffer
[0] = echo_buffer
[1] = Qnil
;
24920 staticpro (&echo_buffer
[0]);
24921 staticpro (&echo_buffer
[1]);
24923 echo_area_buffer
[0] = echo_area_buffer
[1] = Qnil
;
24924 staticpro (&echo_area_buffer
[0]);
24925 staticpro (&echo_area_buffer
[1]);
24927 Vmessages_buffer_name
= build_string ("*Messages*");
24928 staticpro (&Vmessages_buffer_name
);
24930 mode_line_proptrans_alist
= Qnil
;
24931 staticpro (&mode_line_proptrans_alist
);
24932 mode_line_string_list
= Qnil
;
24933 staticpro (&mode_line_string_list
);
24934 mode_line_string_face
= Qnil
;
24935 staticpro (&mode_line_string_face
);
24936 mode_line_string_face_prop
= Qnil
;
24937 staticpro (&mode_line_string_face_prop
);
24938 Vmode_line_unwind_vector
= Qnil
;
24939 staticpro (&Vmode_line_unwind_vector
);
24941 help_echo_string
= Qnil
;
24942 staticpro (&help_echo_string
);
24943 help_echo_object
= Qnil
;
24944 staticpro (&help_echo_object
);
24945 help_echo_window
= Qnil
;
24946 staticpro (&help_echo_window
);
24947 previous_help_echo_string
= Qnil
;
24948 staticpro (&previous_help_echo_string
);
24949 help_echo_pos
= -1;
24951 #ifdef HAVE_WINDOW_SYSTEM
24952 DEFVAR_BOOL ("x-stretch-cursor", &x_stretch_cursor_p
,
24953 doc
: /* *Non-nil means draw block cursor as wide as the glyph under it.
24954 For example, if a block cursor is over a tab, it will be drawn as
24955 wide as that tab on the display. */);
24956 x_stretch_cursor_p
= 0;
24959 DEFVAR_LISP ("show-trailing-whitespace", &Vshow_trailing_whitespace
,
24960 doc
: /* *Non-nil means highlight trailing whitespace.
24961 The face used for trailing whitespace is `trailing-whitespace'. */);
24962 Vshow_trailing_whitespace
= Qnil
;
24964 DEFVAR_LISP ("nobreak-char-display", &Vnobreak_char_display
,
24965 doc
: /* *Control highlighting of nobreak space and soft hyphen.
24966 A value of t means highlight the character itself (for nobreak space,
24967 use face `nobreak-space').
24968 A value of nil means no highlighting.
24969 Other values mean display the escape glyph followed by an ordinary
24970 space or ordinary hyphen. */);
24971 Vnobreak_char_display
= Qt
;
24973 DEFVAR_LISP ("void-text-area-pointer", &Vvoid_text_area_pointer
,
24974 doc
: /* *The pointer shape to show in void text areas.
24975 A value of nil means to show the text pointer. Other options are `arrow',
24976 `text', `hand', `vdrag', `hdrag', `modeline', and `hourglass'. */);
24977 Vvoid_text_area_pointer
= Qarrow
;
24979 DEFVAR_LISP ("inhibit-redisplay", &Vinhibit_redisplay
,
24980 doc
: /* Non-nil means don't actually do any redisplay.
24981 This is used for internal purposes. */);
24982 Vinhibit_redisplay
= Qnil
;
24984 DEFVAR_LISP ("global-mode-string", &Vglobal_mode_string
,
24985 doc
: /* String (or mode line construct) included (normally) in `mode-line-format'. */);
24986 Vglobal_mode_string
= Qnil
;
24988 DEFVAR_LISP ("overlay-arrow-position", &Voverlay_arrow_position
,
24989 doc
: /* Marker for where to display an arrow on top of the buffer text.
24990 This must be the beginning of a line in order to work.
24991 See also `overlay-arrow-string'. */);
24992 Voverlay_arrow_position
= Qnil
;
24994 DEFVAR_LISP ("overlay-arrow-string", &Voverlay_arrow_string
,
24995 doc
: /* String to display as an arrow in non-window frames.
24996 See also `overlay-arrow-position'. */);
24997 Voverlay_arrow_string
= build_string ("=>");
24999 DEFVAR_LISP ("overlay-arrow-variable-list", &Voverlay_arrow_variable_list
,
25000 doc
: /* List of variables (symbols) which hold markers for overlay arrows.
25001 The symbols on this list are examined during redisplay to determine
25002 where to display overlay arrows. */);
25003 Voverlay_arrow_variable_list
25004 = Fcons (intern ("overlay-arrow-position"), Qnil
);
25006 DEFVAR_INT ("scroll-step", &scroll_step
,
25007 doc
: /* *The number of lines to try scrolling a window by when point moves out.
25008 If that fails to bring point back on frame, point is centered instead.
25009 If this is zero, point is always centered after it moves off frame.
25010 If you want scrolling to always be a line at a time, you should set
25011 `scroll-conservatively' to a large value rather than set this to 1. */);
25013 DEFVAR_INT ("scroll-conservatively", &scroll_conservatively
,
25014 doc
: /* *Scroll up to this many lines, to bring point back on screen.
25015 If point moves off-screen, redisplay will scroll by up to
25016 `scroll-conservatively' lines in order to bring point just barely
25017 onto the screen again. If that cannot be done, then redisplay
25018 recenters point as usual.
25020 A value of zero means always recenter point if it moves off screen. */);
25021 scroll_conservatively
= 0;
25023 DEFVAR_INT ("scroll-margin", &scroll_margin
,
25024 doc
: /* *Number of lines of margin at the top and bottom of a window.
25025 Recenter the window whenever point gets within this many lines
25026 of the top or bottom of the window. */);
25029 DEFVAR_LISP ("display-pixels-per-inch", &Vdisplay_pixels_per_inch
,
25030 doc
: /* Pixels per inch value for non-window system displays.
25031 Value is a number or a cons (WIDTH-DPI . HEIGHT-DPI). */);
25032 Vdisplay_pixels_per_inch
= make_float (72.0);
25035 DEFVAR_INT ("debug-end-pos", &debug_end_pos
, doc
: /* Don't ask. */);
25038 DEFVAR_LISP ("truncate-partial-width-windows",
25039 &Vtruncate_partial_width_windows
,
25040 doc
: /* Non-nil means truncate lines in windows with less than the frame width.
25041 For an integer value, truncate lines in each window with less than the
25042 full frame width, provided the window width is less than that integer;
25043 otherwise, respect the value of `truncate-lines'.
25045 For any other non-nil value, truncate lines in all windows with
25046 less than the full frame width.
25048 A value of nil means to respect the value of `truncate-lines'.
25050 If `word-wrap' is enabled, you might want to reduce this. */);
25051 Vtruncate_partial_width_windows
= make_number (50);
25053 DEFVAR_BOOL ("mode-line-inverse-video", &mode_line_inverse_video
,
25054 doc
: /* When nil, display the mode-line/header-line/menu-bar in the default face.
25055 Any other value means to use the appropriate face, `mode-line',
25056 `header-line', or `menu' respectively. */);
25057 mode_line_inverse_video
= 1;
25059 DEFVAR_LISP ("line-number-display-limit", &Vline_number_display_limit
,
25060 doc
: /* *Maximum buffer size for which line number should be displayed.
25061 If the buffer is bigger than this, the line number does not appear
25062 in the mode line. A value of nil means no limit. */);
25063 Vline_number_display_limit
= Qnil
;
25065 DEFVAR_INT ("line-number-display-limit-width",
25066 &line_number_display_limit_width
,
25067 doc
: /* *Maximum line width (in characters) for line number display.
25068 If the average length of the lines near point is bigger than this, then the
25069 line number may be omitted from the mode line. */);
25070 line_number_display_limit_width
= 200;
25072 DEFVAR_BOOL ("highlight-nonselected-windows", &highlight_nonselected_windows
,
25073 doc
: /* *Non-nil means highlight region even in nonselected windows. */);
25074 highlight_nonselected_windows
= 0;
25076 DEFVAR_BOOL ("multiple-frames", &multiple_frames
,
25077 doc
: /* Non-nil if more than one frame is visible on this display.
25078 Minibuffer-only frames don't count, but iconified frames do.
25079 This variable is not guaranteed to be accurate except while processing
25080 `frame-title-format' and `icon-title-format'. */);
25082 DEFVAR_LISP ("frame-title-format", &Vframe_title_format
,
25083 doc
: /* Template for displaying the title bar of visible frames.
25084 \(Assuming the window manager supports this feature.)
25086 This variable has the same structure as `mode-line-format', except that
25087 the %c and %l constructs are ignored. It is used only on frames for
25088 which no explicit name has been set \(see `modify-frame-parameters'). */);
25090 DEFVAR_LISP ("icon-title-format", &Vicon_title_format
,
25091 doc
: /* Template for displaying the title bar of an iconified frame.
25092 \(Assuming the window manager supports this feature.)
25093 This variable has the same structure as `mode-line-format' (which see),
25094 and is used only on frames for which no explicit name has been set
25095 \(see `modify-frame-parameters'). */);
25097 = Vframe_title_format
25098 = Fcons (intern ("multiple-frames"),
25099 Fcons (build_string ("%b"),
25100 Fcons (Fcons (empty_unibyte_string
,
25101 Fcons (intern ("invocation-name"),
25102 Fcons (build_string ("@"),
25103 Fcons (intern ("system-name"),
25107 DEFVAR_LISP ("message-log-max", &Vmessage_log_max
,
25108 doc
: /* Maximum number of lines to keep in the message log buffer.
25109 If nil, disable message logging. If t, log messages but don't truncate
25110 the buffer when it becomes large. */);
25111 Vmessage_log_max
= make_number (100);
25113 DEFVAR_LISP ("window-size-change-functions", &Vwindow_size_change_functions
,
25114 doc
: /* Functions called before redisplay, if window sizes have changed.
25115 The value should be a list of functions that take one argument.
25116 Just before redisplay, for each frame, if any of its windows have changed
25117 size since the last redisplay, or have been split or deleted,
25118 all the functions in the list are called, with the frame as argument. */);
25119 Vwindow_size_change_functions
= Qnil
;
25121 DEFVAR_LISP ("window-scroll-functions", &Vwindow_scroll_functions
,
25122 doc
: /* List of functions to call before redisplaying a window with scrolling.
25123 Each function is called with two arguments, the window and its new
25124 display-start position. Note that these functions are also called by
25125 `set-window-buffer'. Also note that the value of `window-end' is not
25126 valid when these functions are called. */);
25127 Vwindow_scroll_functions
= Qnil
;
25129 DEFVAR_LISP ("window-text-change-functions",
25130 &Vwindow_text_change_functions
,
25131 doc
: /* Functions to call in redisplay when text in the window might change. */);
25132 Vwindow_text_change_functions
= Qnil
;
25134 DEFVAR_LISP ("redisplay-end-trigger-functions", &Vredisplay_end_trigger_functions
,
25135 doc
: /* Functions called when redisplay of a window reaches the end trigger.
25136 Each function is called with two arguments, the window and the end trigger value.
25137 See `set-window-redisplay-end-trigger'. */);
25138 Vredisplay_end_trigger_functions
= Qnil
;
25140 DEFVAR_LISP ("mouse-autoselect-window", &Vmouse_autoselect_window
,
25141 doc
: /* *Non-nil means autoselect window with mouse pointer.
25142 If nil, do not autoselect windows.
25143 A positive number means delay autoselection by that many seconds: a
25144 window is autoselected only after the mouse has remained in that
25145 window for the duration of the delay.
25146 A negative number has a similar effect, but causes windows to be
25147 autoselected only after the mouse has stopped moving. \(Because of
25148 the way Emacs compares mouse events, you will occasionally wait twice
25149 that time before the window gets selected.\)
25150 Any other value means to autoselect window instantaneously when the
25151 mouse pointer enters it.
25153 Autoselection selects the minibuffer only if it is active, and never
25154 unselects the minibuffer if it is active.
25156 When customizing this variable make sure that the actual value of
25157 `focus-follows-mouse' matches the behavior of your window manager. */);
25158 Vmouse_autoselect_window
= Qnil
;
25160 DEFVAR_LISP ("auto-resize-tool-bars", &Vauto_resize_tool_bars
,
25161 doc
: /* *Non-nil means automatically resize tool-bars.
25162 This dynamically changes the tool-bar's height to the minimum height
25163 that is needed to make all tool-bar items visible.
25164 If value is `grow-only', the tool-bar's height is only increased
25165 automatically; to decrease the tool-bar height, use \\[recenter]. */);
25166 Vauto_resize_tool_bars
= Qt
;
25168 DEFVAR_BOOL ("auto-raise-tool-bar-buttons", &auto_raise_tool_bar_buttons_p
,
25169 doc
: /* *Non-nil means raise tool-bar buttons when the mouse moves over them. */);
25170 auto_raise_tool_bar_buttons_p
= 1;
25172 DEFVAR_BOOL ("make-cursor-line-fully-visible", &make_cursor_line_fully_visible_p
,
25173 doc
: /* *Non-nil means to scroll (recenter) cursor line if it is not fully visible. */);
25174 make_cursor_line_fully_visible_p
= 1;
25176 DEFVAR_LISP ("tool-bar-border", &Vtool_bar_border
,
25177 doc
: /* *Border below tool-bar in pixels.
25178 If an integer, use it as the height of the border.
25179 If it is one of `internal-border-width' or `border-width', use the
25180 value of the corresponding frame parameter.
25181 Otherwise, no border is added below the tool-bar. */);
25182 Vtool_bar_border
= Qinternal_border_width
;
25184 DEFVAR_LISP ("tool-bar-button-margin", &Vtool_bar_button_margin
,
25185 doc
: /* *Margin around tool-bar buttons in pixels.
25186 If an integer, use that for both horizontal and vertical margins.
25187 Otherwise, value should be a pair of integers `(HORZ . VERT)' with
25188 HORZ specifying the horizontal margin, and VERT specifying the
25189 vertical margin. */);
25190 Vtool_bar_button_margin
= make_number (DEFAULT_TOOL_BAR_BUTTON_MARGIN
);
25192 DEFVAR_INT ("tool-bar-button-relief", &tool_bar_button_relief
,
25193 doc
: /* *Relief thickness of tool-bar buttons. */);
25194 tool_bar_button_relief
= DEFAULT_TOOL_BAR_BUTTON_RELIEF
;
25196 DEFVAR_LISP ("fontification-functions", &Vfontification_functions
,
25197 doc
: /* List of functions to call to fontify regions of text.
25198 Each function is called with one argument POS. Functions must
25199 fontify a region starting at POS in the current buffer, and give
25200 fontified regions the property `fontified'. */);
25201 Vfontification_functions
= Qnil
;
25202 Fmake_variable_buffer_local (Qfontification_functions
);
25204 DEFVAR_BOOL ("unibyte-display-via-language-environment",
25205 &unibyte_display_via_language_environment
,
25206 doc
: /* *Non-nil means display unibyte text according to language environment.
25207 Specifically this means that unibyte non-ASCII characters
25208 are displayed by converting them to the equivalent multibyte characters
25209 according to the current language environment. As a result, they are
25210 displayed according to the current fontset. */);
25211 unibyte_display_via_language_environment
= 0;
25213 DEFVAR_LISP ("max-mini-window-height", &Vmax_mini_window_height
,
25214 doc
: /* *Maximum height for resizing mini-windows.
25215 If a float, it specifies a fraction of the mini-window frame's height.
25216 If an integer, it specifies a number of lines. */);
25217 Vmax_mini_window_height
= make_float (0.25);
25219 DEFVAR_LISP ("resize-mini-windows", &Vresize_mini_windows
,
25220 doc
: /* *How to resize mini-windows.
25221 A value of nil means don't automatically resize mini-windows.
25222 A value of t means resize them to fit the text displayed in them.
25223 A value of `grow-only', the default, means let mini-windows grow
25224 only, until their display becomes empty, at which point the windows
25225 go back to their normal size. */);
25226 Vresize_mini_windows
= Qgrow_only
;
25228 DEFVAR_LISP ("blink-cursor-alist", &Vblink_cursor_alist
,
25229 doc
: /* Alist specifying how to blink the cursor off.
25230 Each element has the form (ON-STATE . OFF-STATE). Whenever the
25231 `cursor-type' frame-parameter or variable equals ON-STATE,
25232 comparing using `equal', Emacs uses OFF-STATE to specify
25233 how to blink it off. ON-STATE and OFF-STATE are values for
25234 the `cursor-type' frame parameter.
25236 If a frame's ON-STATE has no entry in this list,
25237 the frame's other specifications determine how to blink the cursor off. */);
25238 Vblink_cursor_alist
= Qnil
;
25240 DEFVAR_BOOL ("auto-hscroll-mode", &automatic_hscrolling_p
,
25241 doc
: /* *Non-nil means scroll the display automatically to make point visible. */);
25242 automatic_hscrolling_p
= 1;
25243 Qauto_hscroll_mode
= intern ("auto-hscroll-mode");
25244 staticpro (&Qauto_hscroll_mode
);
25246 DEFVAR_INT ("hscroll-margin", &hscroll_margin
,
25247 doc
: /* *How many columns away from the window edge point is allowed to get
25248 before automatic hscrolling will horizontally scroll the window. */);
25249 hscroll_margin
= 5;
25251 DEFVAR_LISP ("hscroll-step", &Vhscroll_step
,
25252 doc
: /* *How many columns to scroll the window when point gets too close to the edge.
25253 When point is less than `hscroll-margin' columns from the window
25254 edge, automatic hscrolling will scroll the window by the amount of columns
25255 determined by this variable. If its value is a positive integer, scroll that
25256 many columns. If it's a positive floating-point number, it specifies the
25257 fraction of the window's width to scroll. If it's nil or zero, point will be
25258 centered horizontally after the scroll. Any other value, including negative
25259 numbers, are treated as if the value were zero.
25261 Automatic hscrolling always moves point outside the scroll margin, so if
25262 point was more than scroll step columns inside the margin, the window will
25263 scroll more than the value given by the scroll step.
25265 Note that the lower bound for automatic hscrolling specified by `scroll-left'
25266 and `scroll-right' overrides this variable's effect. */);
25267 Vhscroll_step
= make_number (0);
25269 DEFVAR_BOOL ("message-truncate-lines", &message_truncate_lines
,
25270 doc
: /* If non-nil, messages are truncated instead of resizing the echo area.
25271 Bind this around calls to `message' to let it take effect. */);
25272 message_truncate_lines
= 0;
25274 DEFVAR_LISP ("menu-bar-update-hook", &Vmenu_bar_update_hook
,
25275 doc
: /* Normal hook run to update the menu bar definitions.
25276 Redisplay runs this hook before it redisplays the menu bar.
25277 This is used to update submenus such as Buffers,
25278 whose contents depend on various data. */);
25279 Vmenu_bar_update_hook
= Qnil
;
25281 DEFVAR_LISP ("menu-updating-frame", &Vmenu_updating_frame
,
25282 doc
: /* Frame for which we are updating a menu.
25283 The enable predicate for a menu binding should check this variable. */);
25284 Vmenu_updating_frame
= Qnil
;
25286 DEFVAR_BOOL ("inhibit-menubar-update", &inhibit_menubar_update
,
25287 doc
: /* Non-nil means don't update menu bars. Internal use only. */);
25288 inhibit_menubar_update
= 0;
25290 DEFVAR_LISP ("wrap-prefix", &Vwrap_prefix
,
25291 doc
: /* Prefix prepended to all continuation lines at display time.
25292 The value may be a string, an image, or a stretch-glyph; it is
25293 interpreted in the same way as the value of a `display' text property.
25295 This variable is overridden by any `wrap-prefix' text or overlay
25298 To add a prefix to non-continuation lines, use `line-prefix'. */);
25299 Vwrap_prefix
= Qnil
;
25300 staticpro (&Qwrap_prefix
);
25301 Qwrap_prefix
= intern ("wrap-prefix");
25302 Fmake_variable_buffer_local (Qwrap_prefix
);
25304 DEFVAR_LISP ("line-prefix", &Vline_prefix
,
25305 doc
: /* Prefix prepended to all non-continuation lines at display time.
25306 The value may be a string, an image, or a stretch-glyph; it is
25307 interpreted in the same way as the value of a `display' text property.
25309 This variable is overridden by any `line-prefix' text or overlay
25312 To add a prefix to continuation lines, use `wrap-prefix'. */);
25313 Vline_prefix
= Qnil
;
25314 staticpro (&Qline_prefix
);
25315 Qline_prefix
= intern ("line-prefix");
25316 Fmake_variable_buffer_local (Qline_prefix
);
25318 DEFVAR_BOOL ("inhibit-eval-during-redisplay", &inhibit_eval_during_redisplay
,
25319 doc
: /* Non-nil means don't eval Lisp during redisplay. */);
25320 inhibit_eval_during_redisplay
= 0;
25322 DEFVAR_BOOL ("inhibit-free-realized-faces", &inhibit_free_realized_faces
,
25323 doc
: /* Non-nil means don't free realized faces. Internal use only. */);
25324 inhibit_free_realized_faces
= 0;
25327 DEFVAR_BOOL ("inhibit-try-window-id", &inhibit_try_window_id
,
25328 doc
: /* Inhibit try_window_id display optimization. */);
25329 inhibit_try_window_id
= 0;
25331 DEFVAR_BOOL ("inhibit-try-window-reusing", &inhibit_try_window_reusing
,
25332 doc
: /* Inhibit try_window_reusing display optimization. */);
25333 inhibit_try_window_reusing
= 0;
25335 DEFVAR_BOOL ("inhibit-try-cursor-movement", &inhibit_try_cursor_movement
,
25336 doc
: /* Inhibit try_cursor_movement display optimization. */);
25337 inhibit_try_cursor_movement
= 0;
25338 #endif /* GLYPH_DEBUG */
25340 DEFVAR_INT ("overline-margin", &overline_margin
,
25341 doc
: /* *Space between overline and text, in pixels.
25342 The default value is 2: the height of the overline (1 pixel) plus 1 pixel
25343 margin to the caracter height. */);
25344 overline_margin
= 2;
25346 DEFVAR_INT ("underline-minimum-offset",
25347 &underline_minimum_offset
,
25348 doc
: /* Minimum distance between baseline and underline.
25349 This can improve legibility of underlined text at small font sizes,
25350 particularly when using variable `x-use-underline-position-properties'
25351 with fonts that specify an UNDERLINE_POSITION relatively close to the
25352 baseline. The default value is 1. */);
25353 underline_minimum_offset
= 1;
25355 DEFVAR_BOOL ("display-hourglass", &display_hourglass_p
,
25356 doc
: /* Non-zero means Emacs displays an hourglass pointer on window systems. */);
25357 display_hourglass_p
= 1;
25359 DEFVAR_LISP ("hourglass-delay", &Vhourglass_delay
,
25360 doc
: /* *Seconds to wait before displaying an hourglass pointer.
25361 Value must be an integer or float. */);
25362 Vhourglass_delay
= make_number (DEFAULT_HOURGLASS_DELAY
);
25364 hourglass_atimer
= NULL
;
25365 hourglass_shown_p
= 0;
25369 /* Initialize this module when Emacs starts. */
25374 Lisp_Object root_window
;
25375 struct window
*mini_w
;
25377 current_header_line_height
= current_mode_line_height
= -1;
25379 CHARPOS (this_line_start_pos
) = 0;
25381 mini_w
= XWINDOW (minibuf_window
);
25382 root_window
= FRAME_ROOT_WINDOW (XFRAME (WINDOW_FRAME (mini_w
)));
25384 if (!noninteractive
)
25386 struct frame
*f
= XFRAME (WINDOW_FRAME (XWINDOW (root_window
)));
25389 XWINDOW (root_window
)->top_line
= make_number (FRAME_TOP_MARGIN (f
));
25390 set_window_height (root_window
,
25391 FRAME_LINES (f
) - 1 - FRAME_TOP_MARGIN (f
),
25393 mini_w
->top_line
= make_number (FRAME_LINES (f
) - 1);
25394 set_window_height (minibuf_window
, 1, 0);
25396 XWINDOW (root_window
)->total_cols
= make_number (FRAME_COLS (f
));
25397 mini_w
->total_cols
= make_number (FRAME_COLS (f
));
25399 scratch_glyph_row
.glyphs
[TEXT_AREA
] = scratch_glyphs
;
25400 scratch_glyph_row
.glyphs
[TEXT_AREA
+ 1]
25401 = scratch_glyphs
+ MAX_SCRATCH_GLYPHS
;
25403 /* The default ellipsis glyphs `...'. */
25404 for (i
= 0; i
< 3; ++i
)
25405 default_invis_vector
[i
] = make_number ('.');
25409 /* Allocate the buffer for frame titles.
25410 Also used for `format-mode-line'. */
25412 mode_line_noprop_buf
= (char *) xmalloc (size
);
25413 mode_line_noprop_buf_end
= mode_line_noprop_buf
+ size
;
25414 mode_line_noprop_ptr
= mode_line_noprop_buf
;
25415 mode_line_target
= MODE_LINE_DISPLAY
;
25418 help_echo_showing_p
= 0;
25421 /* Since w32 does not support atimers, it defines its own implementation of
25422 the following three functions in w32fns.c. */
25425 /* Platform-independent portion of hourglass implementation. */
25427 /* Return non-zero if houglass timer has been started or hourglass is shown. */
25429 hourglass_started ()
25431 return hourglass_shown_p
|| hourglass_atimer
!= NULL
;
25434 /* Cancel a currently active hourglass timer, and start a new one. */
25438 #if defined (HAVE_WINDOW_SYSTEM)
25440 int secs
, usecs
= 0;
25442 cancel_hourglass ();
25444 if (INTEGERP (Vhourglass_delay
)
25445 && XINT (Vhourglass_delay
) > 0)
25446 secs
= XFASTINT (Vhourglass_delay
);
25447 else if (FLOATP (Vhourglass_delay
)
25448 && XFLOAT_DATA (Vhourglass_delay
) > 0)
25451 tem
= Ftruncate (Vhourglass_delay
, Qnil
);
25452 secs
= XFASTINT (tem
);
25453 usecs
= (XFLOAT_DATA (Vhourglass_delay
) - secs
) * 1000000;
25456 secs
= DEFAULT_HOURGLASS_DELAY
;
25458 EMACS_SET_SECS_USECS (delay
, secs
, usecs
);
25459 hourglass_atimer
= start_atimer (ATIMER_RELATIVE
, delay
,
25460 show_hourglass
, NULL
);
25465 /* Cancel the hourglass cursor timer if active, hide a busy cursor if
25468 cancel_hourglass ()
25470 #if defined (HAVE_WINDOW_SYSTEM)
25471 if (hourglass_atimer
)
25473 cancel_atimer (hourglass_atimer
);
25474 hourglass_atimer
= NULL
;
25477 if (hourglass_shown_p
)
25481 #endif /* ! WINDOWSNT */
25483 /* arch-tag: eacc864d-bb6a-4b74-894a-1a4399a1358b
25484 (do not change this comment) */