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 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, or (at your option)
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; see the file COPYING. If not, write to
20 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
23 /* New redisplay written by Gerd Moellmann <gerd@gnu.org>.
27 Emacs separates the task of updating the display from code
28 modifying global state, e.g. buffer text. This way functions
29 operating on buffers don't also have to be concerned with updating
32 Updating the display is triggered by the Lisp interpreter when it
33 decides it's time to do it. This is done either automatically for
34 you as part of the interpreter's command loop or as the result of
35 calling Lisp functions like `sit-for'. The C function `redisplay'
36 in xdisp.c is the only entry into the inner redisplay code. (Or,
37 let's say almost---see the description of direct update
40 The following diagram shows how redisplay code is invoked. As you
41 can see, Lisp calls redisplay and vice versa. Under window systems
42 like X, some portions of the redisplay code are also called
43 asynchronously during mouse movement or expose events. It is very
44 important that these code parts do NOT use the C library (malloc,
45 free) because many C libraries under Unix are not reentrant. They
46 may also NOT call functions of the Lisp interpreter which could
47 change the interpreter's state. If you don't follow these rules,
48 you will encounter bugs which are very hard to explain.
50 (Direct functions, see below)
51 direct_output_for_insert,
52 direct_forward_char (dispnew.c)
53 +---------------------------------+
56 +--------------+ redisplay +----------------+
57 | Lisp machine |---------------->| Redisplay code |<--+
58 +--------------+ (xdisp.c) +----------------+ |
60 +----------------------------------+ |
61 Don't use this path when called |
64 expose_window (asynchronous) |
66 X expose events -----+
68 What does redisplay do? Obviously, it has to figure out somehow what
69 has been changed since the last time the display has been updated,
70 and to make these changes visible. Preferably it would do that in
71 a moderately intelligent way, i.e. fast.
73 Changes in buffer text can be deduced from window and buffer
74 structures, and from some global variables like `beg_unchanged' and
75 `end_unchanged'. The contents of the display are additionally
76 recorded in a `glyph matrix', a two-dimensional matrix of glyph
77 structures. Each row in such a matrix corresponds to a line on the
78 display, and each glyph in a row corresponds to a column displaying
79 a character, an image, or what else. This matrix is called the
80 `current glyph matrix' or `current matrix' in redisplay
83 For buffer parts that have been changed since the last update, a
84 second glyph matrix is constructed, the so called `desired glyph
85 matrix' or short `desired matrix'. Current and desired matrix are
86 then compared to find a cheap way to update the display, e.g. by
87 reusing part of the display by scrolling lines.
92 You will find a lot of redisplay optimizations when you start
93 looking at the innards of redisplay. The overall goal of all these
94 optimizations is to make redisplay fast because it is done
97 Two optimizations are not found in xdisp.c. These are the direct
98 operations mentioned above. As the name suggests they follow a
99 different principle than the rest of redisplay. Instead of
100 building a desired matrix and then comparing it with the current
101 display, they perform their actions directly on the display and on
104 One direct operation updates the display after one character has
105 been entered. The other one moves the cursor by one position
106 forward or backward. You find these functions under the names
107 `direct_output_for_insert' and `direct_output_forward_char' in
113 Desired matrices are always built per Emacs window. The function
114 `display_line' is the central function to look at if you are
115 interested. It constructs one row in a desired matrix given an
116 iterator structure containing both a buffer position and a
117 description of the environment in which the text is to be
118 displayed. But this is too early, read on.
120 Characters and pixmaps displayed for a range of buffer text depend
121 on various settings of buffers and windows, on overlays and text
122 properties, on display tables, on selective display. The good news
123 is that all this hairy stuff is hidden behind a small set of
124 interface functions taking an iterator structure (struct it)
127 Iteration over things to be displayed is then simple. It is
128 started by initializing an iterator with a call to init_iterator.
129 Calls to get_next_display_element fill the iterator structure with
130 relevant information about the next thing to display. Calls to
131 set_iterator_to_next move the iterator to the next thing.
133 Besides this, an iterator also contains information about the
134 display environment in which glyphs for display elements are to be
135 produced. It has fields for the width and height of the display,
136 the information whether long lines are truncated or continued, a
137 current X and Y position, and lots of other stuff you can better
140 Glyphs in a desired matrix are normally constructed in a loop
141 calling get_next_display_element and then produce_glyphs. The call
142 to produce_glyphs will fill the iterator structure with pixel
143 information about the element being displayed and at the same time
144 produce glyphs for it. If the display element fits on the line
145 being displayed, set_iterator_to_next is called next, otherwise the
146 glyphs produced are discarded.
151 That just couldn't be all, could it? What about terminal types not
152 supporting operations on sub-windows of the screen? To update the
153 display on such a terminal, window-based glyph matrices are not
154 well suited. To be able to reuse part of the display (scrolling
155 lines up and down), we must instead have a view of the whole
156 screen. This is what `frame matrices' are for. They are a trick.
158 Frames on terminals like above have a glyph pool. Windows on such
159 a frame sub-allocate their glyph memory from their frame's glyph
160 pool. The frame itself is given its own glyph matrices. By
161 coincidence---or maybe something else---rows in window glyph
162 matrices are slices of corresponding rows in frame matrices. Thus
163 writing to window matrices implicitly updates a frame matrix which
164 provides us with the view of the whole screen that we originally
165 wanted to have without having to move many bytes around. To be
166 honest, there is a little bit more done, but not much more. If you
167 plan to extend that code, take a look at dispnew.c. The function
168 build_frame_matrix is a good starting point. */
174 #include "keyboard.h"
177 #include "termchar.h"
178 #include "dispextern.h"
180 #include "character.h"
183 #include "commands.h"
187 #include "termhooks.h"
188 #include "intervals.h"
191 #include "region-cache.h"
193 #include "blockinput.h"
195 #ifdef HAVE_X_WINDOWS
205 #ifdef HAVE_WINDOW_SYSTEM
206 #ifdef USE_FONT_BACKEND
208 #endif /* USE_FONT_BACKEND */
209 #endif /* HAVE_WINDOW_SYSTEM */
211 #ifndef FRAME_X_OUTPUT
212 #define FRAME_X_OUTPUT(f) ((f)->output_data.x)
215 #define INFINITY 10000000
217 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
219 extern void set_frame_menubar
P_ ((struct frame
*f
, int, int));
220 extern int pending_menu_activation
;
223 extern int interrupt_input
;
224 extern int command_loop_level
;
226 extern Lisp_Object do_mouse_tracking
;
228 extern int minibuffer_auto_raise
;
229 extern Lisp_Object Vminibuffer_list
;
231 extern Lisp_Object Qface
;
232 extern Lisp_Object Qmode_line
, Qmode_line_inactive
, Qheader_line
;
234 extern Lisp_Object Voverriding_local_map
;
235 extern Lisp_Object Voverriding_local_map_menu_flag
;
236 extern Lisp_Object Qmenu_item
;
237 extern Lisp_Object Qwhen
;
238 extern Lisp_Object Qhelp_echo
;
240 Lisp_Object Qoverriding_local_map
, Qoverriding_terminal_local_map
;
241 Lisp_Object Qwindow_scroll_functions
, Vwindow_scroll_functions
;
242 Lisp_Object Qwindow_text_change_functions
, Vwindow_text_change_functions
;
243 Lisp_Object Qredisplay_end_trigger_functions
, Vredisplay_end_trigger_functions
;
244 Lisp_Object Qinhibit_point_motion_hooks
;
245 Lisp_Object QCeval
, QCfile
, QCdata
, QCpropertize
;
246 Lisp_Object Qfontified
;
247 Lisp_Object Qgrow_only
;
248 Lisp_Object Qinhibit_eval_during_redisplay
;
249 Lisp_Object Qbuffer_position
, Qposition
, Qobject
;
252 Lisp_Object Qbar
, Qhbar
, Qbox
, Qhollow
;
255 Lisp_Object Qarrow
, Qhand
, Qtext
;
257 Lisp_Object Qrisky_local_variable
;
259 /* Holds the list (error). */
260 Lisp_Object list_of_error
;
262 /* Functions called to fontify regions of text. */
264 Lisp_Object Vfontification_functions
;
265 Lisp_Object Qfontification_functions
;
267 /* Non-nil means automatically select any window when the mouse
268 cursor moves into it. */
269 Lisp_Object Vmouse_autoselect_window
;
271 /* Non-zero means draw tool bar buttons raised when the mouse moves
274 int auto_raise_tool_bar_buttons_p
;
276 /* Non-zero means to reposition window if cursor line is only partially visible. */
278 int make_cursor_line_fully_visible_p
;
280 /* Margin below tool bar in pixels. 0 or nil means no margin.
281 If value is `internal-border-width' or `border-width',
282 the corresponding frame parameter is used. */
284 Lisp_Object Vtool_bar_border
;
286 /* Margin around tool bar buttons in pixels. */
288 Lisp_Object Vtool_bar_button_margin
;
290 /* Thickness of shadow to draw around tool bar buttons. */
292 EMACS_INT tool_bar_button_relief
;
294 /* Non-nil means automatically resize tool-bars so that all tool-bar
295 items are visible, and no blank lines remain.
297 If value is `grow-only', only make tool-bar bigger. */
299 Lisp_Object Vauto_resize_tool_bars
;
301 /* Non-zero means draw block and hollow cursor as wide as the glyph
302 under it. For example, if a block cursor is over a tab, it will be
303 drawn as wide as that tab on the display. */
305 int x_stretch_cursor_p
;
307 /* Non-nil means don't actually do any redisplay. */
309 Lisp_Object Vinhibit_redisplay
, Qinhibit_redisplay
;
311 /* Non-zero means Lisp evaluation during redisplay is inhibited. */
313 int inhibit_eval_during_redisplay
;
315 /* Names of text properties relevant for redisplay. */
317 Lisp_Object Qdisplay
;
318 extern Lisp_Object Qface
, Qinvisible
, Qwidth
;
320 /* Symbols used in text property values. */
322 Lisp_Object Vdisplay_pixels_per_inch
;
323 Lisp_Object Qspace
, QCalign_to
, QCrelative_width
, QCrelative_height
;
324 Lisp_Object Qleft_margin
, Qright_margin
, Qspace_width
, Qraise
;
327 Lisp_Object Qmargin
, Qpointer
;
328 Lisp_Object Qline_height
;
329 extern Lisp_Object Qheight
;
330 extern Lisp_Object QCwidth
, QCheight
, QCascent
;
331 extern Lisp_Object Qscroll_bar
;
332 extern Lisp_Object Qcursor
;
334 /* Non-nil means highlight trailing whitespace. */
336 Lisp_Object Vshow_trailing_whitespace
;
338 /* Non-nil means escape non-break space and hyphens. */
340 Lisp_Object Vnobreak_char_display
;
342 #ifdef HAVE_WINDOW_SYSTEM
343 extern Lisp_Object Voverflow_newline_into_fringe
;
345 /* Test if overflow newline into fringe. Called with iterator IT
346 at or past right window margin, and with IT->current_x set. */
348 #define IT_OVERFLOW_NEWLINE_INTO_FRINGE(it) \
349 (!NILP (Voverflow_newline_into_fringe) \
350 && FRAME_WINDOW_P (it->f) \
351 && WINDOW_RIGHT_FRINGE_WIDTH (it->w) > 0 \
352 && it->current_x == it->last_visible_x)
354 #endif /* HAVE_WINDOW_SYSTEM */
356 /* Non-nil means show the text cursor in void text areas
357 i.e. in blank areas after eol and eob. This used to be
358 the default in 21.3. */
360 Lisp_Object Vvoid_text_area_pointer
;
362 /* Name of the face used to highlight trailing whitespace. */
364 Lisp_Object Qtrailing_whitespace
;
366 /* Name and number of the face used to highlight escape glyphs. */
368 Lisp_Object Qescape_glyph
;
370 /* Name and number of the face used to highlight non-breaking spaces. */
372 Lisp_Object Qnobreak_space
;
374 /* The symbol `image' which is the car of the lists used to represent
379 /* The image map types. */
380 Lisp_Object QCmap
, QCpointer
;
381 Lisp_Object Qrect
, Qcircle
, Qpoly
;
383 /* Non-zero means print newline to stdout before next mini-buffer
386 int noninteractive_need_newline
;
388 /* Non-zero means print newline to message log before next message. */
390 static int message_log_need_newline
;
392 /* Three markers that message_dolog uses.
393 It could allocate them itself, but that causes trouble
394 in handling memory-full errors. */
395 static Lisp_Object message_dolog_marker1
;
396 static Lisp_Object message_dolog_marker2
;
397 static Lisp_Object message_dolog_marker3
;
399 /* The buffer position of the first character appearing entirely or
400 partially on the line of the selected window which contains the
401 cursor; <= 0 if not known. Set by set_cursor_from_row, used for
402 redisplay optimization in redisplay_internal. */
404 static struct text_pos this_line_start_pos
;
406 /* Number of characters past the end of the line above, including the
407 terminating newline. */
409 static struct text_pos this_line_end_pos
;
411 /* The vertical positions and the height of this line. */
413 static int this_line_vpos
;
414 static int this_line_y
;
415 static int this_line_pixel_height
;
417 /* X position at which this display line starts. Usually zero;
418 negative if first character is partially visible. */
420 static int this_line_start_x
;
422 /* Buffer that this_line_.* variables are referring to. */
424 static struct buffer
*this_line_buffer
;
426 /* Nonzero means truncate lines in all windows less wide than the
429 int truncate_partial_width_windows
;
431 /* A flag to control how to display unibyte 8-bit character. */
433 int unibyte_display_via_language_environment
;
435 /* Nonzero means we have more than one non-mini-buffer-only frame.
436 Not guaranteed to be accurate except while parsing
437 frame-title-format. */
441 Lisp_Object Vglobal_mode_string
;
444 /* List of variables (symbols) which hold markers for overlay arrows.
445 The symbols on this list are examined during redisplay to determine
446 where to display overlay arrows. */
448 Lisp_Object Voverlay_arrow_variable_list
;
450 /* Marker for where to display an arrow on top of the buffer text. */
452 Lisp_Object Voverlay_arrow_position
;
454 /* String to display for the arrow. Only used on terminal frames. */
456 Lisp_Object Voverlay_arrow_string
;
458 /* Values of those variables at last redisplay are stored as
459 properties on `overlay-arrow-position' symbol. However, if
460 Voverlay_arrow_position is a marker, last-arrow-position is its
461 numerical position. */
463 Lisp_Object Qlast_arrow_position
, Qlast_arrow_string
;
465 /* Alternative overlay-arrow-string and overlay-arrow-bitmap
466 properties on a symbol in overlay-arrow-variable-list. */
468 Lisp_Object Qoverlay_arrow_string
, Qoverlay_arrow_bitmap
;
470 /* Like mode-line-format, but for the title bar on a visible frame. */
472 Lisp_Object Vframe_title_format
;
474 /* Like mode-line-format, but for the title bar on an iconified frame. */
476 Lisp_Object Vicon_title_format
;
478 /* List of functions to call when a window's size changes. These
479 functions get one arg, a frame on which one or more windows' sizes
482 static Lisp_Object Vwindow_size_change_functions
;
484 Lisp_Object Qmenu_bar_update_hook
, Vmenu_bar_update_hook
;
486 /* Nonzero if an overlay arrow has been displayed in this window. */
488 static int overlay_arrow_seen
;
490 /* Nonzero means highlight the region even in nonselected windows. */
492 int highlight_nonselected_windows
;
494 /* If cursor motion alone moves point off frame, try scrolling this
495 many lines up or down if that will bring it back. */
497 static EMACS_INT scroll_step
;
499 /* Nonzero means scroll just far enough to bring point back on the
500 screen, when appropriate. */
502 static EMACS_INT scroll_conservatively
;
504 /* Recenter the window whenever point gets within this many lines of
505 the top or bottom of the window. This value is translated into a
506 pixel value by multiplying it with FRAME_LINE_HEIGHT, which means
507 that there is really a fixed pixel height scroll margin. */
509 EMACS_INT scroll_margin
;
511 /* Number of windows showing the buffer of the selected window (or
512 another buffer with the same base buffer). keyboard.c refers to
517 /* Vector containing glyphs for an ellipsis `...'. */
519 static Lisp_Object default_invis_vector
[3];
521 /* Zero means display the mode-line/header-line/menu-bar in the default face
522 (this slightly odd definition is for compatibility with previous versions
523 of emacs), non-zero means display them using their respective faces.
525 This variable is deprecated. */
527 int mode_line_inverse_video
;
529 /* Prompt to display in front of the mini-buffer contents. */
531 Lisp_Object minibuf_prompt
;
533 /* Width of current mini-buffer prompt. Only set after display_line
534 of the line that contains the prompt. */
536 int minibuf_prompt_width
;
538 /* This is the window where the echo area message was displayed. It
539 is always a mini-buffer window, but it may not be the same window
540 currently active as a mini-buffer. */
542 Lisp_Object echo_area_window
;
544 /* List of pairs (MESSAGE . MULTIBYTE). The function save_message
545 pushes the current message and the value of
546 message_enable_multibyte on the stack, the function restore_message
547 pops the stack and displays MESSAGE again. */
549 Lisp_Object Vmessage_stack
;
551 /* Nonzero means multibyte characters were enabled when the echo area
552 message was specified. */
554 int message_enable_multibyte
;
556 /* Nonzero if we should redraw the mode lines on the next redisplay. */
558 int update_mode_lines
;
560 /* Nonzero if window sizes or contents have changed since last
561 redisplay that finished. */
563 int windows_or_buffers_changed
;
565 /* Nonzero means a frame's cursor type has been changed. */
567 int cursor_type_changed
;
569 /* Nonzero after display_mode_line if %l was used and it displayed a
572 int line_number_displayed
;
574 /* Maximum buffer size for which to display line numbers. */
576 Lisp_Object Vline_number_display_limit
;
578 /* Line width to consider when repositioning for line number display. */
580 static EMACS_INT line_number_display_limit_width
;
582 /* Number of lines to keep in the message log buffer. t means
583 infinite. nil means don't log at all. */
585 Lisp_Object Vmessage_log_max
;
587 /* The name of the *Messages* buffer, a string. */
589 static Lisp_Object Vmessages_buffer_name
;
591 /* Current, index 0, and last displayed echo area message. Either
592 buffers from echo_buffers, or nil to indicate no message. */
594 Lisp_Object echo_area_buffer
[2];
596 /* The buffers referenced from echo_area_buffer. */
598 static Lisp_Object echo_buffer
[2];
600 /* A vector saved used in with_area_buffer to reduce consing. */
602 static Lisp_Object Vwith_echo_area_save_vector
;
604 /* Non-zero means display_echo_area should display the last echo area
605 message again. Set by redisplay_preserve_echo_area. */
607 static int display_last_displayed_message_p
;
609 /* Nonzero if echo area is being used by print; zero if being used by
612 int message_buf_print
;
614 /* The symbol `inhibit-menubar-update' and its DEFVAR_BOOL variable. */
616 Lisp_Object Qinhibit_menubar_update
;
617 int inhibit_menubar_update
;
619 /* When evaluating expressions from menu bar items (enable conditions,
620 for instance), this is the frame they are being processed for. */
622 Lisp_Object Vmenu_updating_frame
;
624 /* Maximum height for resizing mini-windows. Either a float
625 specifying a fraction of the available height, or an integer
626 specifying a number of lines. */
628 Lisp_Object Vmax_mini_window_height
;
630 /* Non-zero means messages should be displayed with truncated
631 lines instead of being continued. */
633 int message_truncate_lines
;
634 Lisp_Object Qmessage_truncate_lines
;
636 /* Set to 1 in clear_message to make redisplay_internal aware
637 of an emptied echo area. */
639 static int message_cleared_p
;
641 /* How to blink the default frame cursor off. */
642 Lisp_Object Vblink_cursor_alist
;
644 /* A scratch glyph row with contents used for generating truncation
645 glyphs. Also used in direct_output_for_insert. */
647 #define MAX_SCRATCH_GLYPHS 100
648 struct glyph_row scratch_glyph_row
;
649 static struct glyph scratch_glyphs
[MAX_SCRATCH_GLYPHS
];
651 /* Ascent and height of the last line processed by move_it_to. */
653 static int last_max_ascent
, last_height
;
655 /* Non-zero if there's a help-echo in the echo area. */
657 int help_echo_showing_p
;
659 /* If >= 0, computed, exact values of mode-line and header-line height
660 to use in the macros CURRENT_MODE_LINE_HEIGHT and
661 CURRENT_HEADER_LINE_HEIGHT. */
663 int current_mode_line_height
, current_header_line_height
;
665 /* The maximum distance to look ahead for text properties. Values
666 that are too small let us call compute_char_face and similar
667 functions too often which is expensive. Values that are too large
668 let us call compute_char_face and alike too often because we
669 might not be interested in text properties that far away. */
671 #define TEXT_PROP_DISTANCE_LIMIT 100
675 /* Variables to turn off display optimizations from Lisp. */
677 int inhibit_try_window_id
, inhibit_try_window_reusing
;
678 int inhibit_try_cursor_movement
;
680 /* Non-zero means print traces of redisplay if compiled with
683 int trace_redisplay_p
;
685 #endif /* GLYPH_DEBUG */
687 #ifdef DEBUG_TRACE_MOVE
688 /* Non-zero means trace with TRACE_MOVE to stderr. */
691 #define TRACE_MOVE(x) if (trace_move) fprintf x; else (void) 0
693 #define TRACE_MOVE(x) (void) 0
696 /* Non-zero means automatically scroll windows horizontally to make
699 int automatic_hscrolling_p
;
700 Lisp_Object Qauto_hscroll_mode
;
702 /* How close to the margin can point get before the window is scrolled
704 EMACS_INT hscroll_margin
;
706 /* How much to scroll horizontally when point is inside the above margin. */
707 Lisp_Object Vhscroll_step
;
709 /* The variable `resize-mini-windows'. If nil, don't resize
710 mini-windows. If t, always resize them to fit the text they
711 display. If `grow-only', let mini-windows grow only until they
714 Lisp_Object Vresize_mini_windows
;
716 /* Buffer being redisplayed -- for redisplay_window_error. */
718 struct buffer
*displayed_buffer
;
720 /* Space between overline and text. */
722 EMACS_INT overline_margin
;
724 /* Value returned from text property handlers (see below). */
729 HANDLED_RECOMPUTE_PROPS
,
730 HANDLED_OVERLAY_STRING_CONSUMED
,
734 /* A description of text properties that redisplay is interested
739 /* The name of the property. */
742 /* A unique index for the property. */
745 /* A handler function called to set up iterator IT from the property
746 at IT's current position. Value is used to steer handle_stop. */
747 enum prop_handled (*handler
) P_ ((struct it
*it
));
750 static enum prop_handled handle_face_prop
P_ ((struct it
*));
751 static enum prop_handled handle_invisible_prop
P_ ((struct it
*));
752 static enum prop_handled handle_display_prop
P_ ((struct it
*));
753 static enum prop_handled handle_composition_prop
P_ ((struct it
*));
754 static enum prop_handled handle_overlay_change
P_ ((struct it
*));
755 static enum prop_handled handle_fontified_prop
P_ ((struct it
*));
756 static enum prop_handled handle_auto_composed_prop
P_ ((struct it
*));
758 /* Properties handled by iterators. */
760 static struct props it_props
[] =
762 {&Qfontified
, FONTIFIED_PROP_IDX
, handle_fontified_prop
},
763 /* Handle `face' before `display' because some sub-properties of
764 `display' need to know the face. */
765 {&Qface
, FACE_PROP_IDX
, handle_face_prop
},
766 {&Qdisplay
, DISPLAY_PROP_IDX
, handle_display_prop
},
767 {&Qinvisible
, INVISIBLE_PROP_IDX
, handle_invisible_prop
},
768 {&Qauto_composed
, AUTO_COMPOSED_PROP_IDX
, handle_auto_composed_prop
},
769 {&Qcomposition
, COMPOSITION_PROP_IDX
, handle_composition_prop
},
773 /* Value is the position described by X. If X is a marker, value is
774 the marker_position of X. Otherwise, value is X. */
776 #define COERCE_MARKER(X) (MARKERP ((X)) ? Fmarker_position (X) : (X))
778 /* Enumeration returned by some move_it_.* functions internally. */
782 /* Not used. Undefined value. */
785 /* Move ended at the requested buffer position or ZV. */
786 MOVE_POS_MATCH_OR_ZV
,
788 /* Move ended at the requested X pixel position. */
791 /* Move within a line ended at the end of a line that must be
795 /* Move within a line ended at the end of a line that would
796 be displayed truncated. */
799 /* Move within a line ended at a line end. */
803 /* This counter is used to clear the face cache every once in a while
804 in redisplay_internal. It is incremented for each redisplay.
805 Every CLEAR_FACE_CACHE_COUNT full redisplays, the face cache is
808 #define CLEAR_FACE_CACHE_COUNT 500
809 static int clear_face_cache_count
;
811 /* Similarly for the image cache. */
813 #ifdef HAVE_WINDOW_SYSTEM
814 #define CLEAR_IMAGE_CACHE_COUNT 101
815 static int clear_image_cache_count
;
818 /* Non-zero while redisplay_internal is in progress. */
822 /* Non-zero means don't free realized faces. Bound while freeing
823 realized faces is dangerous because glyph matrices might still
826 int inhibit_free_realized_faces
;
827 Lisp_Object Qinhibit_free_realized_faces
;
829 /* If a string, XTread_socket generates an event to display that string.
830 (The display is done in read_char.) */
832 Lisp_Object help_echo_string
;
833 Lisp_Object help_echo_window
;
834 Lisp_Object help_echo_object
;
837 /* Temporary variable for XTread_socket. */
839 Lisp_Object previous_help_echo_string
;
841 /* Null glyph slice */
843 static struct glyph_slice null_glyph_slice
= { 0, 0, 0, 0 };
846 /* Function prototypes. */
848 static void setup_for_ellipsis
P_ ((struct it
*, int));
849 static void mark_window_display_accurate_1
P_ ((struct window
*, int));
850 static int single_display_spec_string_p
P_ ((Lisp_Object
, Lisp_Object
));
851 static int display_prop_string_p
P_ ((Lisp_Object
, Lisp_Object
));
852 static int cursor_row_p
P_ ((struct window
*, struct glyph_row
*));
853 static int redisplay_mode_lines
P_ ((Lisp_Object
, int));
854 static char *decode_mode_spec_coding
P_ ((Lisp_Object
, char *, int));
857 static int invisible_text_between_p
P_ ((struct it
*, int, int));
860 static void pint2str
P_ ((char *, int, int));
861 static void pint2hrstr
P_ ((char *, int, int));
862 static struct text_pos run_window_scroll_functions
P_ ((Lisp_Object
,
864 static void reconsider_clip_changes
P_ ((struct window
*, struct buffer
*));
865 static int text_outside_line_unchanged_p
P_ ((struct window
*, int, int));
866 static void store_mode_line_noprop_char
P_ ((char));
867 static int store_mode_line_noprop
P_ ((const unsigned char *, int, int));
868 static void x_consider_frame_title
P_ ((Lisp_Object
));
869 static void handle_stop
P_ ((struct it
*));
870 static int tool_bar_lines_needed
P_ ((struct frame
*, int *));
871 static int single_display_spec_intangible_p
P_ ((Lisp_Object
));
872 static void ensure_echo_area_buffers
P_ ((void));
873 static Lisp_Object unwind_with_echo_area_buffer
P_ ((Lisp_Object
));
874 static Lisp_Object with_echo_area_buffer_unwind_data
P_ ((struct window
*));
875 static int with_echo_area_buffer
P_ ((struct window
*, int,
876 int (*) (EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
),
877 EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
));
878 static void clear_garbaged_frames
P_ ((void));
879 static int current_message_1
P_ ((EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
));
880 static int truncate_message_1
P_ ((EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
));
881 static int set_message_1
P_ ((EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
));
882 static int display_echo_area
P_ ((struct window
*));
883 static int display_echo_area_1
P_ ((EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
));
884 static int resize_mini_window_1
P_ ((EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
));
885 static Lisp_Object unwind_redisplay
P_ ((Lisp_Object
));
886 static int string_char_and_length
P_ ((const unsigned char *, int, int *));
887 static struct text_pos display_prop_end
P_ ((struct it
*, Lisp_Object
,
889 static int compute_window_start_on_continuation_line
P_ ((struct window
*));
890 static Lisp_Object safe_eval_handler
P_ ((Lisp_Object
));
891 static void insert_left_trunc_glyphs
P_ ((struct it
*));
892 static struct glyph_row
*get_overlay_arrow_glyph_row
P_ ((struct window
*,
894 static void extend_face_to_end_of_line
P_ ((struct it
*));
895 static int append_space_for_newline
P_ ((struct it
*, int));
896 static int cursor_row_fully_visible_p
P_ ((struct window
*, int, int));
897 static int try_scrolling
P_ ((Lisp_Object
, int, EMACS_INT
, EMACS_INT
, int, int));
898 static int try_cursor_movement
P_ ((Lisp_Object
, struct text_pos
, int *));
899 static int trailing_whitespace_p
P_ ((int));
900 static int message_log_check_duplicate
P_ ((int, int, int, int));
901 static void push_it
P_ ((struct it
*));
902 static void pop_it
P_ ((struct it
*));
903 static void sync_frame_with_window_matrix_rows
P_ ((struct window
*));
904 static void select_frame_for_redisplay
P_ ((Lisp_Object
));
905 static void redisplay_internal
P_ ((int));
906 static int echo_area_display
P_ ((int));
907 static void redisplay_windows
P_ ((Lisp_Object
));
908 static void redisplay_window
P_ ((Lisp_Object
, int));
909 static Lisp_Object
redisplay_window_error ();
910 static Lisp_Object redisplay_window_0
P_ ((Lisp_Object
));
911 static Lisp_Object redisplay_window_1
P_ ((Lisp_Object
));
912 static int update_menu_bar
P_ ((struct frame
*, int, int));
913 static int try_window_reusing_current_matrix
P_ ((struct window
*));
914 static int try_window_id
P_ ((struct window
*));
915 static int display_line
P_ ((struct it
*));
916 static int display_mode_lines
P_ ((struct window
*));
917 static int display_mode_line
P_ ((struct window
*, enum face_id
, Lisp_Object
));
918 static int display_mode_element
P_ ((struct it
*, int, int, int, Lisp_Object
, Lisp_Object
, int));
919 static int store_mode_line_string
P_ ((char *, Lisp_Object
, int, int, int, Lisp_Object
));
920 static char *decode_mode_spec
P_ ((struct window
*, int, int, int, int *));
921 static void display_menu_bar
P_ ((struct window
*));
922 static int display_count_lines
P_ ((int, int, int, int, int *));
923 static int display_string
P_ ((unsigned char *, Lisp_Object
, Lisp_Object
,
924 EMACS_INT
, EMACS_INT
, struct it
*, int, int, int, int));
925 static void compute_line_metrics
P_ ((struct it
*));
926 static void run_redisplay_end_trigger_hook
P_ ((struct it
*));
927 static int get_overlay_strings
P_ ((struct it
*, int));
928 static int get_overlay_strings_1
P_ ((struct it
*, int, int));
929 static void next_overlay_string
P_ ((struct it
*));
930 static void reseat
P_ ((struct it
*, struct text_pos
, int));
931 static void reseat_1
P_ ((struct it
*, struct text_pos
, int));
932 static void back_to_previous_visible_line_start
P_ ((struct it
*));
933 void reseat_at_previous_visible_line_start
P_ ((struct it
*));
934 static void reseat_at_next_visible_line_start
P_ ((struct it
*, int));
935 static int next_element_from_ellipsis
P_ ((struct it
*));
936 static int next_element_from_display_vector
P_ ((struct it
*));
937 static int next_element_from_string
P_ ((struct it
*));
938 static int next_element_from_c_string
P_ ((struct it
*));
939 static int next_element_from_buffer
P_ ((struct it
*));
940 static int next_element_from_composition
P_ ((struct it
*));
941 static int next_element_from_image
P_ ((struct it
*));
942 static int next_element_from_stretch
P_ ((struct it
*));
943 static void load_overlay_strings
P_ ((struct it
*, int));
944 static int init_from_display_pos
P_ ((struct it
*, struct window
*,
945 struct display_pos
*));
946 static void reseat_to_string
P_ ((struct it
*, unsigned char *,
947 Lisp_Object
, int, int, int, int));
948 static enum move_it_result move_it_in_display_line_to
P_ ((struct it
*,
950 void move_it_vertically_backward
P_ ((struct it
*, int));
951 static void init_to_row_start
P_ ((struct it
*, struct window
*,
952 struct glyph_row
*));
953 static int init_to_row_end
P_ ((struct it
*, struct window
*,
954 struct glyph_row
*));
955 static void back_to_previous_line_start
P_ ((struct it
*));
956 static int forward_to_next_line_start
P_ ((struct it
*, int *));
957 static struct text_pos string_pos_nchars_ahead
P_ ((struct text_pos
,
959 static struct text_pos string_pos
P_ ((int, Lisp_Object
));
960 static struct text_pos c_string_pos
P_ ((int, unsigned char *, int));
961 static int number_of_chars
P_ ((unsigned char *, int));
962 static void compute_stop_pos
P_ ((struct it
*));
963 static void compute_string_pos
P_ ((struct text_pos
*, struct text_pos
,
965 static int face_before_or_after_it_pos
P_ ((struct it
*, int));
966 static EMACS_INT next_overlay_change
P_ ((EMACS_INT
));
967 static int handle_single_display_spec
P_ ((struct it
*, Lisp_Object
,
968 Lisp_Object
, Lisp_Object
,
969 struct text_pos
*, int));
970 static int underlying_face_id
P_ ((struct it
*));
971 static int in_ellipses_for_invisible_text_p
P_ ((struct display_pos
*,
974 #define face_before_it_pos(IT) face_before_or_after_it_pos ((IT), 1)
975 #define face_after_it_pos(IT) face_before_or_after_it_pos ((IT), 0)
977 #ifdef HAVE_WINDOW_SYSTEM
979 static void update_tool_bar
P_ ((struct frame
*, int));
980 static void build_desired_tool_bar_string
P_ ((struct frame
*f
));
981 static int redisplay_tool_bar
P_ ((struct frame
*));
982 static void display_tool_bar_line
P_ ((struct it
*, int));
983 static void notice_overwritten_cursor
P_ ((struct window
*,
985 int, int, int, int));
989 #endif /* HAVE_WINDOW_SYSTEM */
992 /***********************************************************************
993 Window display dimensions
994 ***********************************************************************/
996 /* Return the bottom boundary y-position for text lines in window W.
997 This is the first y position at which a line cannot start.
998 It is relative to the top of the window.
1000 This is the height of W minus the height of a mode line, if any. */
1003 window_text_bottom_y (w
)
1006 int height
= WINDOW_TOTAL_HEIGHT (w
);
1008 if (WINDOW_WANTS_MODELINE_P (w
))
1009 height
-= CURRENT_MODE_LINE_HEIGHT (w
);
1013 /* Return the pixel width of display area AREA of window W. AREA < 0
1014 means return the total width of W, not including fringes to
1015 the left and right of the window. */
1018 window_box_width (w
, area
)
1022 int cols
= XFASTINT (w
->total_cols
);
1025 if (!w
->pseudo_window_p
)
1027 cols
-= WINDOW_SCROLL_BAR_COLS (w
);
1029 if (area
== TEXT_AREA
)
1031 if (INTEGERP (w
->left_margin_cols
))
1032 cols
-= XFASTINT (w
->left_margin_cols
);
1033 if (INTEGERP (w
->right_margin_cols
))
1034 cols
-= XFASTINT (w
->right_margin_cols
);
1035 pixels
= -WINDOW_TOTAL_FRINGE_WIDTH (w
);
1037 else if (area
== LEFT_MARGIN_AREA
)
1039 cols
= (INTEGERP (w
->left_margin_cols
)
1040 ? XFASTINT (w
->left_margin_cols
) : 0);
1043 else if (area
== RIGHT_MARGIN_AREA
)
1045 cols
= (INTEGERP (w
->right_margin_cols
)
1046 ? XFASTINT (w
->right_margin_cols
) : 0);
1051 return cols
* WINDOW_FRAME_COLUMN_WIDTH (w
) + pixels
;
1055 /* Return the pixel height of the display area of window W, not
1056 including mode lines of W, if any. */
1059 window_box_height (w
)
1062 struct frame
*f
= XFRAME (w
->frame
);
1063 int height
= WINDOW_TOTAL_HEIGHT (w
);
1065 xassert (height
>= 0);
1067 /* Note: the code below that determines the mode-line/header-line
1068 height is essentially the same as that contained in the macro
1069 CURRENT_{MODE,HEADER}_LINE_HEIGHT, except that it checks whether
1070 the appropriate glyph row has its `mode_line_p' flag set,
1071 and if it doesn't, uses estimate_mode_line_height instead. */
1073 if (WINDOW_WANTS_MODELINE_P (w
))
1075 struct glyph_row
*ml_row
1076 = (w
->current_matrix
&& w
->current_matrix
->rows
1077 ? MATRIX_MODE_LINE_ROW (w
->current_matrix
)
1079 if (ml_row
&& ml_row
->mode_line_p
)
1080 height
-= ml_row
->height
;
1082 height
-= estimate_mode_line_height (f
, CURRENT_MODE_LINE_FACE_ID (w
));
1085 if (WINDOW_WANTS_HEADER_LINE_P (w
))
1087 struct glyph_row
*hl_row
1088 = (w
->current_matrix
&& w
->current_matrix
->rows
1089 ? MATRIX_HEADER_LINE_ROW (w
->current_matrix
)
1091 if (hl_row
&& hl_row
->mode_line_p
)
1092 height
-= hl_row
->height
;
1094 height
-= estimate_mode_line_height (f
, HEADER_LINE_FACE_ID
);
1097 /* With a very small font and a mode-line that's taller than
1098 default, we might end up with a negative height. */
1099 return max (0, height
);
1102 /* Return the window-relative coordinate of the left edge of display
1103 area AREA of window W. AREA < 0 means return the left edge of the
1104 whole window, to the right of the left fringe of W. */
1107 window_box_left_offset (w
, area
)
1113 if (w
->pseudo_window_p
)
1116 x
= WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w
);
1118 if (area
== TEXT_AREA
)
1119 x
+= (WINDOW_LEFT_FRINGE_WIDTH (w
)
1120 + window_box_width (w
, LEFT_MARGIN_AREA
));
1121 else if (area
== RIGHT_MARGIN_AREA
)
1122 x
+= (WINDOW_LEFT_FRINGE_WIDTH (w
)
1123 + window_box_width (w
, LEFT_MARGIN_AREA
)
1124 + window_box_width (w
, TEXT_AREA
)
1125 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
1127 : WINDOW_RIGHT_FRINGE_WIDTH (w
)));
1128 else if (area
== LEFT_MARGIN_AREA
1129 && WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
))
1130 x
+= WINDOW_LEFT_FRINGE_WIDTH (w
);
1136 /* Return the window-relative coordinate of the right edge of display
1137 area AREA of window W. AREA < 0 means return the left edge of the
1138 whole window, to the left of the right fringe of W. */
1141 window_box_right_offset (w
, area
)
1145 return window_box_left_offset (w
, area
) + window_box_width (w
, area
);
1148 /* Return the frame-relative coordinate of the left edge of display
1149 area AREA of window W. AREA < 0 means return the left edge of the
1150 whole window, to the right of the left fringe of W. */
1153 window_box_left (w
, area
)
1157 struct frame
*f
= XFRAME (w
->frame
);
1160 if (w
->pseudo_window_p
)
1161 return FRAME_INTERNAL_BORDER_WIDTH (f
);
1163 x
= (WINDOW_LEFT_EDGE_X (w
)
1164 + window_box_left_offset (w
, area
));
1170 /* Return the frame-relative coordinate of the right edge of display
1171 area AREA of window W. AREA < 0 means return the left edge of the
1172 whole window, to the left of the right fringe of W. */
1175 window_box_right (w
, area
)
1179 return window_box_left (w
, area
) + window_box_width (w
, area
);
1182 /* Get the bounding box of the display area AREA of window W, without
1183 mode lines, in frame-relative coordinates. AREA < 0 means the
1184 whole window, not including the left and right fringes of
1185 the window. Return in *BOX_X and *BOX_Y the frame-relative pixel
1186 coordinates of the upper-left corner of the box. Return in
1187 *BOX_WIDTH, and *BOX_HEIGHT the pixel width and height of the box. */
1190 window_box (w
, area
, box_x
, box_y
, box_width
, box_height
)
1193 int *box_x
, *box_y
, *box_width
, *box_height
;
1196 *box_width
= window_box_width (w
, area
);
1198 *box_height
= window_box_height (w
);
1200 *box_x
= window_box_left (w
, area
);
1203 *box_y
= WINDOW_TOP_EDGE_Y (w
);
1204 if (WINDOW_WANTS_HEADER_LINE_P (w
))
1205 *box_y
+= CURRENT_HEADER_LINE_HEIGHT (w
);
1210 /* Get the bounding box of the display area AREA of window W, without
1211 mode lines. AREA < 0 means the whole window, not including the
1212 left and right fringe of the window. Return in *TOP_LEFT_X
1213 and TOP_LEFT_Y the frame-relative pixel coordinates of the
1214 upper-left corner of the box. Return in *BOTTOM_RIGHT_X, and
1215 *BOTTOM_RIGHT_Y the coordinates of the bottom-right corner of the
1219 window_box_edges (w
, area
, top_left_x
, top_left_y
,
1220 bottom_right_x
, bottom_right_y
)
1223 int *top_left_x
, *top_left_y
, *bottom_right_x
, *bottom_right_y
;
1225 window_box (w
, area
, top_left_x
, top_left_y
, bottom_right_x
,
1227 *bottom_right_x
+= *top_left_x
;
1228 *bottom_right_y
+= *top_left_y
;
1233 /***********************************************************************
1235 ***********************************************************************/
1237 /* Return the bottom y-position of the line the iterator IT is in.
1238 This can modify IT's settings. */
1244 int line_height
= it
->max_ascent
+ it
->max_descent
;
1245 int line_top_y
= it
->current_y
;
1247 if (line_height
== 0)
1250 line_height
= last_height
;
1251 else if (IT_CHARPOS (*it
) < ZV
)
1253 move_it_by_lines (it
, 1, 1);
1254 line_height
= (it
->max_ascent
|| it
->max_descent
1255 ? it
->max_ascent
+ it
->max_descent
1260 struct glyph_row
*row
= it
->glyph_row
;
1262 /* Use the default character height. */
1263 it
->glyph_row
= NULL
;
1264 it
->what
= IT_CHARACTER
;
1267 PRODUCE_GLYPHS (it
);
1268 line_height
= it
->ascent
+ it
->descent
;
1269 it
->glyph_row
= row
;
1273 return line_top_y
+ line_height
;
1277 /* Return 1 if position CHARPOS is visible in window W.
1278 CHARPOS < 0 means return info about WINDOW_END position.
1279 If visible, set *X and *Y to pixel coordinates of top left corner.
1280 Set *RTOP and *RBOT to pixel height of an invisible area of glyph at POS.
1281 Set *ROWH and *VPOS to row's visible height and VPOS (row number). */
1284 pos_visible_p (w
, charpos
, x
, y
, rtop
, rbot
, rowh
, vpos
)
1286 int charpos
, *x
, *y
, *rtop
, *rbot
, *rowh
, *vpos
;
1289 struct text_pos top
;
1291 struct buffer
*old_buffer
= NULL
;
1296 if (XBUFFER (w
->buffer
) != current_buffer
)
1298 old_buffer
= current_buffer
;
1299 set_buffer_internal_1 (XBUFFER (w
->buffer
));
1302 SET_TEXT_POS_FROM_MARKER (top
, w
->start
);
1304 /* Compute exact mode line heights. */
1305 if (WINDOW_WANTS_MODELINE_P (w
))
1306 current_mode_line_height
1307 = display_mode_line (w
, CURRENT_MODE_LINE_FACE_ID (w
),
1308 current_buffer
->mode_line_format
);
1310 if (WINDOW_WANTS_HEADER_LINE_P (w
))
1311 current_header_line_height
1312 = display_mode_line (w
, HEADER_LINE_FACE_ID
,
1313 current_buffer
->header_line_format
);
1315 start_display (&it
, w
, top
);
1316 move_it_to (&it
, charpos
, -1, it
.last_visible_y
-1, -1,
1317 (charpos
>= 0 ? MOVE_TO_POS
: 0) | MOVE_TO_Y
);
1319 /* Note that we may overshoot because of invisible text. */
1320 if (charpos
>= 0 && IT_CHARPOS (it
) >= charpos
)
1322 int top_x
= it
.current_x
;
1323 int top_y
= it
.current_y
;
1324 int bottom_y
= (last_height
= 0, line_bottom_y (&it
));
1325 int window_top_y
= WINDOW_HEADER_LINE_HEIGHT (w
);
1327 if (top_y
< window_top_y
)
1328 visible_p
= bottom_y
> window_top_y
;
1329 else if (top_y
< it
.last_visible_y
)
1333 Lisp_Object window
, prop
;
1335 XSETWINDOW (window
, w
);
1336 prop
= Fget_char_property (make_number (it
.position
.charpos
),
1337 Qinvisible
, window
);
1339 /* If charpos coincides with invisible text covered with an
1340 ellipsis, use the first glyph of the ellipsis to compute
1341 the pixel positions. */
1342 if (TEXT_PROP_MEANS_INVISIBLE (prop
) == 2)
1344 struct glyph_row
*row
= it
.glyph_row
;
1345 struct glyph
*glyph
= row
->glyphs
[TEXT_AREA
];
1346 struct glyph
*end
= glyph
+ row
->used
[TEXT_AREA
];
1349 for (; glyph
< end
&& glyph
->charpos
< charpos
; glyph
++)
1350 x
+= glyph
->pixel_width
;
1356 *y
= max (top_y
+ max (0, it
.max_ascent
- it
.ascent
), window_top_y
);
1357 *rtop
= max (0, window_top_y
- top_y
);
1358 *rbot
= max (0, bottom_y
- it
.last_visible_y
);
1359 *rowh
= max (0, (min (bottom_y
, it
.last_visible_y
)
1360 - max (top_y
, window_top_y
)));
1369 if (IT_CHARPOS (it
) < ZV
&& FETCH_BYTE (IT_BYTEPOS (it
)) != '\n')
1370 move_it_by_lines (&it
, 1, 0);
1371 if (charpos
< IT_CHARPOS (it
)
1372 || (it
.what
== IT_EOB
&& charpos
== IT_CHARPOS (it
)))
1375 move_it_to (&it2
, charpos
, -1, -1, -1, MOVE_TO_POS
);
1377 *y
= it2
.current_y
+ it2
.max_ascent
- it2
.ascent
;
1378 *rtop
= max (0, -it2
.current_y
);
1379 *rbot
= max (0, ((it2
.current_y
+ it2
.max_ascent
+ it2
.max_descent
)
1380 - it
.last_visible_y
));
1381 *rowh
= max (0, (min (it2
.current_y
+ it2
.max_ascent
+ it2
.max_descent
,
1383 - max (it2
.current_y
,
1384 WINDOW_HEADER_LINE_HEIGHT (w
))));
1390 set_buffer_internal_1 (old_buffer
);
1392 current_header_line_height
= current_mode_line_height
= -1;
1394 if (visible_p
&& XFASTINT (w
->hscroll
) > 0)
1395 *x
-= XFASTINT (w
->hscroll
) * WINDOW_FRAME_COLUMN_WIDTH (w
);
1398 /* Debugging code. */
1400 fprintf (stderr
, "+pv pt=%d vs=%d --> x=%d y=%d rt=%d rb=%d rh=%d vp=%d\n",
1401 charpos
, w
->vscroll
, *x
, *y
, *rtop
, *rbot
, *rowh
, *vpos
);
1403 fprintf (stderr
, "-pv pt=%d vs=%d\n", charpos
, w
->vscroll
);
1410 /* Return the next character from STR which is MAXLEN bytes long.
1411 Return in *LEN the length of the character. This is like
1412 STRING_CHAR_AND_LENGTH but never returns an invalid character. If
1413 we find one, we return a `?', but with the length of the invalid
1417 string_char_and_length (str
, maxlen
, len
)
1418 const unsigned char *str
;
1423 c
= STRING_CHAR_AND_LENGTH (str
, maxlen
, *len
);
1424 if (!CHAR_VALID_P (c
, 1))
1425 /* We may not change the length here because other places in Emacs
1426 don't use this function, i.e. they silently accept invalid
1435 /* Given a position POS containing a valid character and byte position
1436 in STRING, return the position NCHARS ahead (NCHARS >= 0). */
1438 static struct text_pos
1439 string_pos_nchars_ahead (pos
, string
, nchars
)
1440 struct text_pos pos
;
1444 xassert (STRINGP (string
) && nchars
>= 0);
1446 if (STRING_MULTIBYTE (string
))
1448 int rest
= SBYTES (string
) - BYTEPOS (pos
);
1449 const unsigned char *p
= SDATA (string
) + BYTEPOS (pos
);
1454 string_char_and_length (p
, rest
, &len
);
1455 p
+= len
, rest
-= len
;
1456 xassert (rest
>= 0);
1458 BYTEPOS (pos
) += len
;
1462 SET_TEXT_POS (pos
, CHARPOS (pos
) + nchars
, BYTEPOS (pos
) + nchars
);
1468 /* Value is the text position, i.e. character and byte position,
1469 for character position CHARPOS in STRING. */
1471 static INLINE
struct text_pos
1472 string_pos (charpos
, string
)
1476 struct text_pos pos
;
1477 xassert (STRINGP (string
));
1478 xassert (charpos
>= 0);
1479 SET_TEXT_POS (pos
, charpos
, string_char_to_byte (string
, charpos
));
1484 /* Value is a text position, i.e. character and byte position, for
1485 character position CHARPOS in C string S. MULTIBYTE_P non-zero
1486 means recognize multibyte characters. */
1488 static struct text_pos
1489 c_string_pos (charpos
, s
, multibyte_p
)
1494 struct text_pos pos
;
1496 xassert (s
!= NULL
);
1497 xassert (charpos
>= 0);
1501 int rest
= strlen (s
), len
;
1503 SET_TEXT_POS (pos
, 0, 0);
1506 string_char_and_length (s
, rest
, &len
);
1507 s
+= len
, rest
-= len
;
1508 xassert (rest
>= 0);
1510 BYTEPOS (pos
) += len
;
1514 SET_TEXT_POS (pos
, charpos
, charpos
);
1520 /* Value is the number of characters in C string S. MULTIBYTE_P
1521 non-zero means recognize multibyte characters. */
1524 number_of_chars (s
, multibyte_p
)
1532 int rest
= strlen (s
), len
;
1533 unsigned char *p
= (unsigned char *) s
;
1535 for (nchars
= 0; rest
> 0; ++nchars
)
1537 string_char_and_length (p
, rest
, &len
);
1538 rest
-= len
, p
+= len
;
1542 nchars
= strlen (s
);
1548 /* Compute byte position NEWPOS->bytepos corresponding to
1549 NEWPOS->charpos. POS is a known position in string STRING.
1550 NEWPOS->charpos must be >= POS.charpos. */
1553 compute_string_pos (newpos
, pos
, string
)
1554 struct text_pos
*newpos
, pos
;
1557 xassert (STRINGP (string
));
1558 xassert (CHARPOS (*newpos
) >= CHARPOS (pos
));
1560 if (STRING_MULTIBYTE (string
))
1561 *newpos
= string_pos_nchars_ahead (pos
, string
,
1562 CHARPOS (*newpos
) - CHARPOS (pos
));
1564 BYTEPOS (*newpos
) = CHARPOS (*newpos
);
1568 Return an estimation of the pixel height of mode or top lines on
1569 frame F. FACE_ID specifies what line's height to estimate. */
1572 estimate_mode_line_height (f
, face_id
)
1574 enum face_id face_id
;
1576 #ifdef HAVE_WINDOW_SYSTEM
1577 if (FRAME_WINDOW_P (f
))
1579 int height
= FONT_HEIGHT (FRAME_FONT (f
));
1581 /* This function is called so early when Emacs starts that the face
1582 cache and mode line face are not yet initialized. */
1583 if (FRAME_FACE_CACHE (f
))
1585 struct face
*face
= FACE_FROM_ID (f
, face_id
);
1589 height
= FONT_HEIGHT (face
->font
);
1590 if (face
->box_line_width
> 0)
1591 height
+= 2 * face
->box_line_width
;
1602 /* Given a pixel position (PIX_X, PIX_Y) on frame F, return glyph
1603 co-ordinates in (*X, *Y). Set *BOUNDS to the rectangle that the
1604 glyph at X, Y occupies, if BOUNDS != 0. If NOCLIP is non-zero, do
1605 not force the value into range. */
1608 pixel_to_glyph_coords (f
, pix_x
, pix_y
, x
, y
, bounds
, noclip
)
1610 register int pix_x
, pix_y
;
1612 NativeRectangle
*bounds
;
1616 #ifdef HAVE_WINDOW_SYSTEM
1617 if (FRAME_WINDOW_P (f
))
1619 /* Arrange for the division in FRAME_PIXEL_X_TO_COL etc. to round down
1620 even for negative values. */
1622 pix_x
-= FRAME_COLUMN_WIDTH (f
) - 1;
1624 pix_y
-= FRAME_LINE_HEIGHT (f
) - 1;
1626 pix_x
= FRAME_PIXEL_X_TO_COL (f
, pix_x
);
1627 pix_y
= FRAME_PIXEL_Y_TO_LINE (f
, pix_y
);
1630 STORE_NATIVE_RECT (*bounds
,
1631 FRAME_COL_TO_PIXEL_X (f
, pix_x
),
1632 FRAME_LINE_TO_PIXEL_Y (f
, pix_y
),
1633 FRAME_COLUMN_WIDTH (f
) - 1,
1634 FRAME_LINE_HEIGHT (f
) - 1);
1640 else if (pix_x
> FRAME_TOTAL_COLS (f
))
1641 pix_x
= FRAME_TOTAL_COLS (f
);
1645 else if (pix_y
> FRAME_LINES (f
))
1646 pix_y
= FRAME_LINES (f
);
1656 /* Given HPOS/VPOS in the current matrix of W, return corresponding
1657 frame-relative pixel positions in *FRAME_X and *FRAME_Y. If we
1658 can't tell the positions because W's display is not up to date,
1662 glyph_to_pixel_coords (w
, hpos
, vpos
, frame_x
, frame_y
)
1665 int *frame_x
, *frame_y
;
1667 #ifdef HAVE_WINDOW_SYSTEM
1668 if (FRAME_WINDOW_P (XFRAME (WINDOW_FRAME (w
))))
1672 xassert (hpos
>= 0 && hpos
< w
->current_matrix
->matrix_w
);
1673 xassert (vpos
>= 0 && vpos
< w
->current_matrix
->matrix_h
);
1675 if (display_completed
)
1677 struct glyph_row
*row
= MATRIX_ROW (w
->current_matrix
, vpos
);
1678 struct glyph
*glyph
= row
->glyphs
[TEXT_AREA
];
1679 struct glyph
*end
= glyph
+ min (hpos
, row
->used
[TEXT_AREA
]);
1685 hpos
+= glyph
->pixel_width
;
1689 /* If first glyph is partially visible, its first visible position is still 0. */
1701 *frame_x
= WINDOW_TO_FRAME_PIXEL_X (w
, hpos
);
1702 *frame_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, vpos
);
1713 #ifdef HAVE_WINDOW_SYSTEM
1715 /* Find the glyph under window-relative coordinates X/Y in window W.
1716 Consider only glyphs from buffer text, i.e. no glyphs from overlay
1717 strings. Return in *HPOS and *VPOS the row and column number of
1718 the glyph found. Return in *AREA the glyph area containing X.
1719 Value is a pointer to the glyph found or null if X/Y is not on
1720 text, or we can't tell because W's current matrix is not up to
1723 static struct glyph
*
1724 x_y_to_hpos_vpos (w
, x
, y
, hpos
, vpos
, dx
, dy
, area
)
1727 int *hpos
, *vpos
, *dx
, *dy
, *area
;
1729 struct glyph
*glyph
, *end
;
1730 struct glyph_row
*row
= NULL
;
1733 /* Find row containing Y. Give up if some row is not enabled. */
1734 for (i
= 0; i
< w
->current_matrix
->nrows
; ++i
)
1736 row
= MATRIX_ROW (w
->current_matrix
, i
);
1737 if (!row
->enabled_p
)
1739 if (y
>= row
->y
&& y
< MATRIX_ROW_BOTTOM_Y (row
))
1746 /* Give up if Y is not in the window. */
1747 if (i
== w
->current_matrix
->nrows
)
1750 /* Get the glyph area containing X. */
1751 if (w
->pseudo_window_p
)
1758 if (x
< window_box_left_offset (w
, TEXT_AREA
))
1760 *area
= LEFT_MARGIN_AREA
;
1761 x0
= window_box_left_offset (w
, LEFT_MARGIN_AREA
);
1763 else if (x
< window_box_right_offset (w
, TEXT_AREA
))
1766 x0
= window_box_left_offset (w
, TEXT_AREA
) + min (row
->x
, 0);
1770 *area
= RIGHT_MARGIN_AREA
;
1771 x0
= window_box_left_offset (w
, RIGHT_MARGIN_AREA
);
1775 /* Find glyph containing X. */
1776 glyph
= row
->glyphs
[*area
];
1777 end
= glyph
+ row
->used
[*area
];
1779 while (glyph
< end
&& x
>= glyph
->pixel_width
)
1781 x
-= glyph
->pixel_width
;
1791 *dy
= y
- (row
->y
+ row
->ascent
- glyph
->ascent
);
1794 *hpos
= glyph
- row
->glyphs
[*area
];
1800 Convert frame-relative x/y to coordinates relative to window W.
1801 Takes pseudo-windows into account. */
1804 frame_to_window_pixel_xy (w
, x
, y
)
1808 if (w
->pseudo_window_p
)
1810 /* A pseudo-window is always full-width, and starts at the
1811 left edge of the frame, plus a frame border. */
1812 struct frame
*f
= XFRAME (w
->frame
);
1813 *x
-= FRAME_INTERNAL_BORDER_WIDTH (f
);
1814 *y
= FRAME_TO_WINDOW_PIXEL_Y (w
, *y
);
1818 *x
-= WINDOW_LEFT_EDGE_X (w
);
1819 *y
= FRAME_TO_WINDOW_PIXEL_Y (w
, *y
);
1824 Return in RECTS[] at most N clipping rectangles for glyph string S.
1825 Return the number of stored rectangles. */
1828 get_glyph_string_clip_rects (s
, rects
, n
)
1829 struct glyph_string
*s
;
1830 NativeRectangle
*rects
;
1838 if (s
->row
->full_width_p
)
1840 /* Draw full-width. X coordinates are relative to S->w->left_col. */
1841 r
.x
= WINDOW_LEFT_EDGE_X (s
->w
);
1842 r
.width
= WINDOW_TOTAL_WIDTH (s
->w
);
1844 /* Unless displaying a mode or menu bar line, which are always
1845 fully visible, clip to the visible part of the row. */
1846 if (s
->w
->pseudo_window_p
)
1847 r
.height
= s
->row
->visible_height
;
1849 r
.height
= s
->height
;
1853 /* This is a text line that may be partially visible. */
1854 r
.x
= window_box_left (s
->w
, s
->area
);
1855 r
.width
= window_box_width (s
->w
, s
->area
);
1856 r
.height
= s
->row
->visible_height
;
1860 if (r
.x
< s
->clip_head
->x
)
1862 if (r
.width
>= s
->clip_head
->x
- r
.x
)
1863 r
.width
-= s
->clip_head
->x
- r
.x
;
1866 r
.x
= s
->clip_head
->x
;
1869 if (r
.x
+ r
.width
> s
->clip_tail
->x
+ s
->clip_tail
->background_width
)
1871 if (s
->clip_tail
->x
+ s
->clip_tail
->background_width
>= r
.x
)
1872 r
.width
= s
->clip_tail
->x
+ s
->clip_tail
->background_width
- r
.x
;
1877 /* If S draws overlapping rows, it's sufficient to use the top and
1878 bottom of the window for clipping because this glyph string
1879 intentionally draws over other lines. */
1880 if (s
->for_overlaps
)
1882 r
.y
= WINDOW_HEADER_LINE_HEIGHT (s
->w
);
1883 r
.height
= window_text_bottom_y (s
->w
) - r
.y
;
1885 /* Alas, the above simple strategy does not work for the
1886 environments with anti-aliased text: if the same text is
1887 drawn onto the same place multiple times, it gets thicker.
1888 If the overlap we are processing is for the erased cursor, we
1889 take the intersection with the rectagle of the cursor. */
1890 if (s
->for_overlaps
& OVERLAPS_ERASED_CURSOR
)
1892 XRectangle rc
, r_save
= r
;
1894 rc
.x
= WINDOW_TEXT_TO_FRAME_PIXEL_X (s
->w
, s
->w
->phys_cursor
.x
);
1895 rc
.y
= s
->w
->phys_cursor
.y
;
1896 rc
.width
= s
->w
->phys_cursor_width
;
1897 rc
.height
= s
->w
->phys_cursor_height
;
1899 x_intersect_rectangles (&r_save
, &rc
, &r
);
1904 /* Don't use S->y for clipping because it doesn't take partially
1905 visible lines into account. For example, it can be negative for
1906 partially visible lines at the top of a window. */
1907 if (!s
->row
->full_width_p
1908 && MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P (s
->w
, s
->row
))
1909 r
.y
= WINDOW_HEADER_LINE_HEIGHT (s
->w
);
1911 r
.y
= max (0, s
->row
->y
);
1913 /* If drawing a tool-bar window, draw it over the internal border
1914 at the top of the window. */
1915 if (WINDOWP (s
->f
->tool_bar_window
)
1916 && s
->w
== XWINDOW (s
->f
->tool_bar_window
))
1917 r
.y
-= FRAME_INTERNAL_BORDER_WIDTH (s
->f
);
1920 r
.y
= WINDOW_TO_FRAME_PIXEL_Y (s
->w
, r
.y
);
1922 /* If drawing the cursor, don't let glyph draw outside its
1923 advertised boundaries. Cleartype does this under some circumstances. */
1924 if (s
->hl
== DRAW_CURSOR
)
1926 struct glyph
*glyph
= s
->first_glyph
;
1931 r
.width
-= s
->x
- r
.x
;
1934 r
.width
= min (r
.width
, glyph
->pixel_width
);
1936 /* If r.y is below window bottom, ensure that we still see a cursor. */
1937 height
= min (glyph
->ascent
+ glyph
->descent
,
1938 min (FRAME_LINE_HEIGHT (s
->f
), s
->row
->visible_height
));
1939 max_y
= window_text_bottom_y (s
->w
) - height
;
1940 max_y
= WINDOW_TO_FRAME_PIXEL_Y (s
->w
, max_y
);
1941 if (s
->ybase
- glyph
->ascent
> max_y
)
1948 /* Don't draw cursor glyph taller than our actual glyph. */
1949 height
= max (FRAME_LINE_HEIGHT (s
->f
), glyph
->ascent
+ glyph
->descent
);
1950 if (height
< r
.height
)
1952 max_y
= r
.y
+ r
.height
;
1953 r
.y
= min (max_y
, max (r
.y
, s
->ybase
+ glyph
->descent
- height
));
1954 r
.height
= min (max_y
- r
.y
, height
);
1961 XRectangle r_save
= r
;
1963 if (! x_intersect_rectangles (&r_save
, s
->row
->clip
, &r
))
1967 if ((s
->for_overlaps
& OVERLAPS_BOTH
) == 0
1968 || ((s
->for_overlaps
& OVERLAPS_BOTH
) == OVERLAPS_BOTH
&& n
== 1))
1970 #ifdef CONVERT_FROM_XRECT
1971 CONVERT_FROM_XRECT (r
, *rects
);
1979 /* If we are processing overlapping and allowed to return
1980 multiple clipping rectangles, we exclude the row of the glyph
1981 string from the clipping rectangle. This is to avoid drawing
1982 the same text on the environment with anti-aliasing. */
1983 #ifdef CONVERT_FROM_XRECT
1986 XRectangle
*rs
= rects
;
1988 int i
= 0, row_y
= WINDOW_TO_FRAME_PIXEL_Y (s
->w
, s
->row
->y
);
1990 if (s
->for_overlaps
& OVERLAPS_PRED
)
1993 if (r
.y
+ r
.height
> row_y
)
1996 rs
[i
].height
= row_y
- r
.y
;
2002 if (s
->for_overlaps
& OVERLAPS_SUCC
)
2005 if (r
.y
< row_y
+ s
->row
->visible_height
)
2007 if (r
.y
+ r
.height
> row_y
+ s
->row
->visible_height
)
2009 rs
[i
].y
= row_y
+ s
->row
->visible_height
;
2010 rs
[i
].height
= r
.y
+ r
.height
- rs
[i
].y
;
2019 #ifdef CONVERT_FROM_XRECT
2020 for (i
= 0; i
< n
; i
++)
2021 CONVERT_FROM_XRECT (rs
[i
], rects
[i
]);
2028 Return in *NR the clipping rectangle for glyph string S. */
2031 get_glyph_string_clip_rect (s
, nr
)
2032 struct glyph_string
*s
;
2033 NativeRectangle
*nr
;
2035 get_glyph_string_clip_rects (s
, nr
, 1);
2040 Return the position and height of the phys cursor in window W.
2041 Set w->phys_cursor_width to width of phys cursor.
2045 get_phys_cursor_geometry (w
, row
, glyph
, xp
, yp
, heightp
)
2047 struct glyph_row
*row
;
2048 struct glyph
*glyph
;
2049 int *xp
, *yp
, *heightp
;
2051 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
2052 int x
, y
, wd
, h
, h0
, y0
;
2054 /* Compute the width of the rectangle to draw. If on a stretch
2055 glyph, and `x-stretch-block-cursor' is nil, don't draw a
2056 rectangle as wide as the glyph, but use a canonical character
2058 wd
= glyph
->pixel_width
- 1;
2063 x
= w
->phys_cursor
.x
;
2070 if (glyph
->type
== STRETCH_GLYPH
2071 && !x_stretch_cursor_p
)
2072 wd
= min (FRAME_COLUMN_WIDTH (f
), wd
);
2073 w
->phys_cursor_width
= wd
;
2075 y
= w
->phys_cursor
.y
+ row
->ascent
- glyph
->ascent
;
2077 /* If y is below window bottom, ensure that we still see a cursor. */
2078 h0
= min (FRAME_LINE_HEIGHT (f
), row
->visible_height
);
2080 h
= max (h0
, glyph
->ascent
+ glyph
->descent
);
2081 h0
= min (h0
, glyph
->ascent
+ glyph
->descent
);
2083 y0
= WINDOW_HEADER_LINE_HEIGHT (w
);
2086 h
= max (h
- (y0
- y
) + 1, h0
);
2091 y0
= window_text_bottom_y (w
) - h0
;
2099 *xp
= WINDOW_TEXT_TO_FRAME_PIXEL_X (w
, x
);
2100 *yp
= WINDOW_TO_FRAME_PIXEL_Y (w
, y
);
2105 * Remember which glyph the mouse is over.
2109 remember_mouse_glyph (f
, gx
, gy
, rect
)
2112 NativeRectangle
*rect
;
2116 struct glyph_row
*r
, *gr
, *end_row
;
2117 enum window_part part
;
2118 enum glyph_row_area area
;
2119 int x
, y
, width
, height
;
2121 /* Try to determine frame pixel position and size of the glyph under
2122 frame pixel coordinates X/Y on frame F. */
2124 if (!f
->glyphs_initialized_p
2125 || (window
= window_from_coordinates (f
, gx
, gy
, &part
, &x
, &y
, 0),
2128 width
= FRAME_SMALLEST_CHAR_WIDTH (f
);
2129 height
= FRAME_SMALLEST_FONT_HEIGHT (f
);
2133 w
= XWINDOW (window
);
2134 width
= WINDOW_FRAME_COLUMN_WIDTH (w
);
2135 height
= WINDOW_FRAME_LINE_HEIGHT (w
);
2137 r
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
2138 end_row
= MATRIX_BOTTOM_TEXT_ROW (w
->current_matrix
, w
);
2140 if (w
->pseudo_window_p
)
2143 part
= ON_MODE_LINE
; /* Don't adjust margin. */
2149 case ON_LEFT_MARGIN
:
2150 area
= LEFT_MARGIN_AREA
;
2153 case ON_RIGHT_MARGIN
:
2154 area
= RIGHT_MARGIN_AREA
;
2157 case ON_HEADER_LINE
:
2159 gr
= (part
== ON_HEADER_LINE
2160 ? MATRIX_HEADER_LINE_ROW (w
->current_matrix
)
2161 : MATRIX_MODE_LINE_ROW (w
->current_matrix
));
2164 goto text_glyph_row_found
;
2171 for (; r
<= end_row
&& r
->enabled_p
; ++r
)
2172 if (r
->y
+ r
->height
> y
)
2178 text_glyph_row_found
:
2181 struct glyph
*g
= gr
->glyphs
[area
];
2182 struct glyph
*end
= g
+ gr
->used
[area
];
2184 height
= gr
->height
;
2185 for (gx
= gr
->x
; g
< end
; gx
+= g
->pixel_width
, ++g
)
2186 if (gx
+ g
->pixel_width
> x
)
2191 if (g
->type
== IMAGE_GLYPH
)
2193 /* Don't remember when mouse is over image, as
2194 image may have hot-spots. */
2195 STORE_NATIVE_RECT (*rect
, 0, 0, 0, 0);
2198 width
= g
->pixel_width
;
2202 /* Use nominal char spacing at end of line. */
2204 gx
+= (x
/ width
) * width
;
2207 if (part
!= ON_MODE_LINE
&& part
!= ON_HEADER_LINE
)
2208 gx
+= window_box_left_offset (w
, area
);
2212 /* Use nominal line height at end of window. */
2213 gx
= (x
/ width
) * width
;
2215 gy
+= (y
/ height
) * height
;
2219 case ON_LEFT_FRINGE
:
2220 gx
= (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
2221 ? WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w
)
2222 : window_box_right_offset (w
, LEFT_MARGIN_AREA
));
2223 width
= WINDOW_LEFT_FRINGE_WIDTH (w
);
2226 case ON_RIGHT_FRINGE
:
2227 gx
= (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
2228 ? window_box_right_offset (w
, RIGHT_MARGIN_AREA
)
2229 : window_box_right_offset (w
, TEXT_AREA
));
2230 width
= WINDOW_RIGHT_FRINGE_WIDTH (w
);
2234 gx
= (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w
)
2236 : (window_box_right_offset (w
, RIGHT_MARGIN_AREA
)
2237 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
2238 ? WINDOW_RIGHT_FRINGE_WIDTH (w
)
2240 width
= WINDOW_SCROLL_BAR_AREA_WIDTH (w
);
2244 for (; r
<= end_row
&& r
->enabled_p
; ++r
)
2245 if (r
->y
+ r
->height
> y
)
2252 height
= gr
->height
;
2255 /* Use nominal line height at end of window. */
2257 gy
+= (y
/ height
) * height
;
2264 /* If there is no glyph under the mouse, then we divide the screen
2265 into a grid of the smallest glyph in the frame, and use that
2268 /* Arrange for the division in FRAME_PIXEL_X_TO_COL etc. to
2269 round down even for negative values. */
2275 gx
= (gx
/ width
) * width
;
2276 gy
= (gy
/ height
) * height
;
2281 gx
+= WINDOW_LEFT_EDGE_X (w
);
2282 gy
+= WINDOW_TOP_EDGE_Y (w
);
2285 STORE_NATIVE_RECT (*rect
, gx
, gy
, width
, height
);
2287 /* Visible feedback for debugging. */
2290 XDrawRectangle (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2291 f
->output_data
.x
->normal_gc
,
2292 gx
, gy
, width
, height
);
2298 #endif /* HAVE_WINDOW_SYSTEM */
2301 /***********************************************************************
2302 Lisp form evaluation
2303 ***********************************************************************/
2305 /* Error handler for safe_eval and safe_call. */
2308 safe_eval_handler (arg
)
2311 add_to_log ("Error during redisplay: %s", arg
, Qnil
);
2316 /* Evaluate SEXPR and return the result, or nil if something went
2317 wrong. Prevent redisplay during the evaluation. */
2325 if (inhibit_eval_during_redisplay
)
2329 int count
= SPECPDL_INDEX ();
2330 struct gcpro gcpro1
;
2333 specbind (Qinhibit_redisplay
, Qt
);
2334 /* Use Qt to ensure debugger does not run,
2335 so there is no possibility of wanting to redisplay. */
2336 val
= internal_condition_case_1 (Feval
, sexpr
, Qt
,
2339 val
= unbind_to (count
, val
);
2346 /* Call function ARGS[0] with arguments ARGS[1] to ARGS[NARGS - 1].
2347 Return the result, or nil if something went wrong. Prevent
2348 redisplay during the evaluation. */
2351 safe_call (nargs
, args
)
2357 if (inhibit_eval_during_redisplay
)
2361 int count
= SPECPDL_INDEX ();
2362 struct gcpro gcpro1
;
2365 gcpro1
.nvars
= nargs
;
2366 specbind (Qinhibit_redisplay
, Qt
);
2367 /* Use Qt to ensure debugger does not run,
2368 so there is no possibility of wanting to redisplay. */
2369 val
= internal_condition_case_2 (Ffuncall
, nargs
, args
, Qt
,
2372 val
= unbind_to (count
, val
);
2379 /* Call function FN with one argument ARG.
2380 Return the result, or nil if something went wrong. */
2383 safe_call1 (fn
, arg
)
2384 Lisp_Object fn
, arg
;
2386 Lisp_Object args
[2];
2389 return safe_call (2, args
);
2394 /***********************************************************************
2396 ***********************************************************************/
2400 /* Define CHECK_IT to perform sanity checks on iterators.
2401 This is for debugging. It is too slow to do unconditionally. */
2407 if (it
->method
== GET_FROM_STRING
)
2409 xassert (STRINGP (it
->string
));
2410 xassert (IT_STRING_CHARPOS (*it
) >= 0);
2414 xassert (IT_STRING_CHARPOS (*it
) < 0);
2415 if (it
->method
== GET_FROM_BUFFER
)
2417 /* Check that character and byte positions agree. */
2418 xassert (IT_CHARPOS (*it
) == BYTE_TO_CHAR (IT_BYTEPOS (*it
)));
2423 xassert (it
->current
.dpvec_index
>= 0);
2425 xassert (it
->current
.dpvec_index
< 0);
2428 #define CHECK_IT(IT) check_it ((IT))
2432 #define CHECK_IT(IT) (void) 0
2439 /* Check that the window end of window W is what we expect it
2440 to be---the last row in the current matrix displaying text. */
2443 check_window_end (w
)
2446 if (!MINI_WINDOW_P (w
)
2447 && !NILP (w
->window_end_valid
))
2449 struct glyph_row
*row
;
2450 xassert ((row
= MATRIX_ROW (w
->current_matrix
,
2451 XFASTINT (w
->window_end_vpos
)),
2453 || MATRIX_ROW_DISPLAYS_TEXT_P (row
)
2454 || MATRIX_ROW_VPOS (row
, w
->current_matrix
) == 0));
2458 #define CHECK_WINDOW_END(W) check_window_end ((W))
2460 #else /* not GLYPH_DEBUG */
2462 #define CHECK_WINDOW_END(W) (void) 0
2464 #endif /* not GLYPH_DEBUG */
2468 /***********************************************************************
2469 Iterator initialization
2470 ***********************************************************************/
2472 /* Initialize IT for displaying current_buffer in window W, starting
2473 at character position CHARPOS. CHARPOS < 0 means that no buffer
2474 position is specified which is useful when the iterator is assigned
2475 a position later. BYTEPOS is the byte position corresponding to
2476 CHARPOS. BYTEPOS < 0 means compute it from CHARPOS.
2478 If ROW is not null, calls to produce_glyphs with IT as parameter
2479 will produce glyphs in that row.
2481 BASE_FACE_ID is the id of a base face to use. It must be one of
2482 DEFAULT_FACE_ID for normal text, MODE_LINE_FACE_ID,
2483 MODE_LINE_INACTIVE_FACE_ID, or HEADER_LINE_FACE_ID for displaying
2484 mode lines, or TOOL_BAR_FACE_ID for displaying the tool-bar.
2486 If ROW is null and BASE_FACE_ID is equal to MODE_LINE_FACE_ID,
2487 MODE_LINE_INACTIVE_FACE_ID, or HEADER_LINE_FACE_ID, the iterator
2488 will be initialized to use the corresponding mode line glyph row of
2489 the desired matrix of W. */
2492 init_iterator (it
, w
, charpos
, bytepos
, row
, base_face_id
)
2495 int charpos
, bytepos
;
2496 struct glyph_row
*row
;
2497 enum face_id base_face_id
;
2499 int highlight_region_p
;
2501 /* Some precondition checks. */
2502 xassert (w
!= NULL
&& it
!= NULL
);
2503 xassert (charpos
< 0 || (charpos
>= BUF_BEG (current_buffer
)
2506 /* If face attributes have been changed since the last redisplay,
2507 free realized faces now because they depend on face definitions
2508 that might have changed. Don't free faces while there might be
2509 desired matrices pending which reference these faces. */
2510 if (face_change_count
&& !inhibit_free_realized_faces
)
2512 face_change_count
= 0;
2513 free_all_realized_faces (Qnil
);
2516 /* Use one of the mode line rows of W's desired matrix if
2520 if (base_face_id
== MODE_LINE_FACE_ID
2521 || base_face_id
== MODE_LINE_INACTIVE_FACE_ID
)
2522 row
= MATRIX_MODE_LINE_ROW (w
->desired_matrix
);
2523 else if (base_face_id
== HEADER_LINE_FACE_ID
)
2524 row
= MATRIX_HEADER_LINE_ROW (w
->desired_matrix
);
2528 bzero (it
, sizeof *it
);
2529 it
->current
.overlay_string_index
= -1;
2530 it
->current
.dpvec_index
= -1;
2531 it
->base_face_id
= base_face_id
;
2533 IT_STRING_CHARPOS (*it
) = IT_STRING_BYTEPOS (*it
) = -1;
2535 /* The window in which we iterate over current_buffer: */
2536 XSETWINDOW (it
->window
, w
);
2538 it
->f
= XFRAME (w
->frame
);
2540 /* Extra space between lines (on window systems only). */
2541 if (base_face_id
== DEFAULT_FACE_ID
2542 && FRAME_WINDOW_P (it
->f
))
2544 if (NATNUMP (current_buffer
->extra_line_spacing
))
2545 it
->extra_line_spacing
= XFASTINT (current_buffer
->extra_line_spacing
);
2546 else if (FLOATP (current_buffer
->extra_line_spacing
))
2547 it
->extra_line_spacing
= (XFLOAT_DATA (current_buffer
->extra_line_spacing
)
2548 * FRAME_LINE_HEIGHT (it
->f
));
2549 else if (it
->f
->extra_line_spacing
> 0)
2550 it
->extra_line_spacing
= it
->f
->extra_line_spacing
;
2551 it
->max_extra_line_spacing
= 0;
2554 /* If realized faces have been removed, e.g. because of face
2555 attribute changes of named faces, recompute them. When running
2556 in batch mode, the face cache of the initial frame is null. If
2557 we happen to get called, make a dummy face cache. */
2558 if (FRAME_FACE_CACHE (it
->f
) == NULL
)
2559 init_frame_faces (it
->f
);
2560 if (FRAME_FACE_CACHE (it
->f
)->used
== 0)
2561 recompute_basic_faces (it
->f
);
2563 /* Current value of the `slice', `space-width', and 'height' properties. */
2564 it
->slice
.x
= it
->slice
.y
= it
->slice
.width
= it
->slice
.height
= Qnil
;
2565 it
->space_width
= Qnil
;
2566 it
->font_height
= Qnil
;
2567 it
->override_ascent
= -1;
2569 /* Are control characters displayed as `^C'? */
2570 it
->ctl_arrow_p
= !NILP (current_buffer
->ctl_arrow
);
2572 /* -1 means everything between a CR and the following line end
2573 is invisible. >0 means lines indented more than this value are
2575 it
->selective
= (INTEGERP (current_buffer
->selective_display
)
2576 ? XFASTINT (current_buffer
->selective_display
)
2577 : (!NILP (current_buffer
->selective_display
)
2579 it
->selective_display_ellipsis_p
2580 = !NILP (current_buffer
->selective_display_ellipses
);
2582 /* Display table to use. */
2583 it
->dp
= window_display_table (w
);
2585 /* Are multibyte characters enabled in current_buffer? */
2586 it
->multibyte_p
= !NILP (current_buffer
->enable_multibyte_characters
);
2588 /* Non-zero if we should highlight the region. */
2590 = (!NILP (Vtransient_mark_mode
)
2591 && !NILP (current_buffer
->mark_active
)
2592 && XMARKER (current_buffer
->mark
)->buffer
!= 0);
2594 /* Set IT->region_beg_charpos and IT->region_end_charpos to the
2595 start and end of a visible region in window IT->w. Set both to
2596 -1 to indicate no region. */
2597 if (highlight_region_p
2598 /* Maybe highlight only in selected window. */
2599 && (/* Either show region everywhere. */
2600 highlight_nonselected_windows
2601 /* Or show region in the selected window. */
2602 || w
== XWINDOW (selected_window
)
2603 /* Or show the region if we are in the mini-buffer and W is
2604 the window the mini-buffer refers to. */
2605 || (MINI_WINDOW_P (XWINDOW (selected_window
))
2606 && WINDOWP (minibuf_selected_window
)
2607 && w
== XWINDOW (minibuf_selected_window
))))
2609 int charpos
= marker_position (current_buffer
->mark
);
2610 it
->region_beg_charpos
= min (PT
, charpos
);
2611 it
->region_end_charpos
= max (PT
, charpos
);
2614 it
->region_beg_charpos
= it
->region_end_charpos
= -1;
2616 /* Get the position at which the redisplay_end_trigger hook should
2617 be run, if it is to be run at all. */
2618 if (MARKERP (w
->redisplay_end_trigger
)
2619 && XMARKER (w
->redisplay_end_trigger
)->buffer
!= 0)
2620 it
->redisplay_end_trigger_charpos
2621 = marker_position (w
->redisplay_end_trigger
);
2622 else if (INTEGERP (w
->redisplay_end_trigger
))
2623 it
->redisplay_end_trigger_charpos
= XINT (w
->redisplay_end_trigger
);
2625 /* Correct bogus values of tab_width. */
2626 it
->tab_width
= XINT (current_buffer
->tab_width
);
2627 if (it
->tab_width
<= 0 || it
->tab_width
> 1000)
2630 /* Are lines in the display truncated? */
2631 it
->truncate_lines_p
2632 = (base_face_id
!= DEFAULT_FACE_ID
2633 || XINT (it
->w
->hscroll
)
2634 || (truncate_partial_width_windows
2635 && !WINDOW_FULL_WIDTH_P (it
->w
))
2636 || !NILP (current_buffer
->truncate_lines
));
2638 /* Get dimensions of truncation and continuation glyphs. These are
2639 displayed as fringe bitmaps under X, so we don't need them for such
2641 if (!FRAME_WINDOW_P (it
->f
))
2643 if (it
->truncate_lines_p
)
2645 /* We will need the truncation glyph. */
2646 xassert (it
->glyph_row
== NULL
);
2647 produce_special_glyphs (it
, IT_TRUNCATION
);
2648 it
->truncation_pixel_width
= it
->pixel_width
;
2652 /* We will need the continuation glyph. */
2653 xassert (it
->glyph_row
== NULL
);
2654 produce_special_glyphs (it
, IT_CONTINUATION
);
2655 it
->continuation_pixel_width
= it
->pixel_width
;
2658 /* Reset these values to zero because the produce_special_glyphs
2659 above has changed them. */
2660 it
->pixel_width
= it
->ascent
= it
->descent
= 0;
2661 it
->phys_ascent
= it
->phys_descent
= 0;
2664 /* Set this after getting the dimensions of truncation and
2665 continuation glyphs, so that we don't produce glyphs when calling
2666 produce_special_glyphs, above. */
2667 it
->glyph_row
= row
;
2668 it
->area
= TEXT_AREA
;
2670 /* Get the dimensions of the display area. The display area
2671 consists of the visible window area plus a horizontally scrolled
2672 part to the left of the window. All x-values are relative to the
2673 start of this total display area. */
2674 if (base_face_id
!= DEFAULT_FACE_ID
)
2676 /* Mode lines, menu bar in terminal frames. */
2677 it
->first_visible_x
= 0;
2678 it
->last_visible_x
= WINDOW_TOTAL_WIDTH (w
);
2683 = XFASTINT (it
->w
->hscroll
) * FRAME_COLUMN_WIDTH (it
->f
);
2684 it
->last_visible_x
= (it
->first_visible_x
2685 + window_box_width (w
, TEXT_AREA
));
2687 /* If we truncate lines, leave room for the truncator glyph(s) at
2688 the right margin. Otherwise, leave room for the continuation
2689 glyph(s). Truncation and continuation glyphs are not inserted
2690 for window-based redisplay. */
2691 if (!FRAME_WINDOW_P (it
->f
))
2693 if (it
->truncate_lines_p
)
2694 it
->last_visible_x
-= it
->truncation_pixel_width
;
2696 it
->last_visible_x
-= it
->continuation_pixel_width
;
2699 it
->header_line_p
= WINDOW_WANTS_HEADER_LINE_P (w
);
2700 it
->current_y
= WINDOW_HEADER_LINE_HEIGHT (w
) + w
->vscroll
;
2703 /* Leave room for a border glyph. */
2704 if (!FRAME_WINDOW_P (it
->f
)
2705 && !WINDOW_RIGHTMOST_P (it
->w
))
2706 it
->last_visible_x
-= 1;
2708 it
->last_visible_y
= window_text_bottom_y (w
);
2710 /* For mode lines and alike, arrange for the first glyph having a
2711 left box line if the face specifies a box. */
2712 if (base_face_id
!= DEFAULT_FACE_ID
)
2716 it
->face_id
= base_face_id
;
2718 /* If we have a boxed mode line, make the first character appear
2719 with a left box line. */
2720 face
= FACE_FROM_ID (it
->f
, base_face_id
);
2721 if (face
->box
!= FACE_NO_BOX
)
2722 it
->start_of_box_run_p
= 1;
2725 /* If a buffer position was specified, set the iterator there,
2726 getting overlays and face properties from that position. */
2727 if (charpos
>= BUF_BEG (current_buffer
))
2729 it
->end_charpos
= ZV
;
2731 IT_CHARPOS (*it
) = charpos
;
2733 /* Compute byte position if not specified. */
2734 if (bytepos
< charpos
)
2735 IT_BYTEPOS (*it
) = CHAR_TO_BYTE (charpos
);
2737 IT_BYTEPOS (*it
) = bytepos
;
2739 it
->start
= it
->current
;
2741 /* Compute faces etc. */
2742 reseat (it
, it
->current
.pos
, 1);
2749 /* Initialize IT for the display of window W with window start POS. */
2752 start_display (it
, w
, pos
)
2755 struct text_pos pos
;
2757 struct glyph_row
*row
;
2758 int first_vpos
= WINDOW_WANTS_HEADER_LINE_P (w
) ? 1 : 0;
2760 row
= w
->desired_matrix
->rows
+ first_vpos
;
2761 init_iterator (it
, w
, CHARPOS (pos
), BYTEPOS (pos
), row
, DEFAULT_FACE_ID
);
2762 it
->first_vpos
= first_vpos
;
2764 /* Don't reseat to previous visible line start if current start
2765 position is in a string or image. */
2766 if (it
->method
== GET_FROM_BUFFER
&& !it
->truncate_lines_p
)
2768 int start_at_line_beg_p
;
2769 int first_y
= it
->current_y
;
2771 /* If window start is not at a line start, skip forward to POS to
2772 get the correct continuation lines width. */
2773 start_at_line_beg_p
= (CHARPOS (pos
) == BEGV
2774 || FETCH_BYTE (BYTEPOS (pos
) - 1) == '\n');
2775 if (!start_at_line_beg_p
)
2779 reseat_at_previous_visible_line_start (it
);
2780 move_it_to (it
, CHARPOS (pos
), -1, -1, -1, MOVE_TO_POS
);
2782 new_x
= it
->current_x
+ it
->pixel_width
;
2784 /* If lines are continued, this line may end in the middle
2785 of a multi-glyph character (e.g. a control character
2786 displayed as \003, or in the middle of an overlay
2787 string). In this case move_it_to above will not have
2788 taken us to the start of the continuation line but to the
2789 end of the continued line. */
2790 if (it
->current_x
> 0
2791 && !it
->truncate_lines_p
/* Lines are continued. */
2792 && (/* And glyph doesn't fit on the line. */
2793 new_x
> it
->last_visible_x
2794 /* Or it fits exactly and we're on a window
2796 || (new_x
== it
->last_visible_x
2797 && FRAME_WINDOW_P (it
->f
))))
2799 if (it
->current
.dpvec_index
>= 0
2800 || it
->current
.overlay_string_index
>= 0)
2802 set_iterator_to_next (it
, 1);
2803 move_it_in_display_line_to (it
, -1, -1, 0);
2806 it
->continuation_lines_width
+= it
->current_x
;
2809 /* We're starting a new display line, not affected by the
2810 height of the continued line, so clear the appropriate
2811 fields in the iterator structure. */
2812 it
->max_ascent
= it
->max_descent
= 0;
2813 it
->max_phys_ascent
= it
->max_phys_descent
= 0;
2815 it
->current_y
= first_y
;
2817 it
->current_x
= it
->hpos
= 0;
2821 #if 0 /* Don't assert the following because start_display is sometimes
2822 called intentionally with a window start that is not at a
2823 line start. Please leave this code in as a comment. */
2825 /* Window start should be on a line start, now. */
2826 xassert (it
->continuation_lines_width
2827 || IT_CHARPOS (it
) == BEGV
2828 || FETCH_BYTE (IT_BYTEPOS (it
) - 1) == '\n');
2833 /* Return 1 if POS is a position in ellipses displayed for invisible
2834 text. W is the window we display, for text property lookup. */
2837 in_ellipses_for_invisible_text_p (pos
, w
)
2838 struct display_pos
*pos
;
2841 Lisp_Object prop
, window
;
2843 int charpos
= CHARPOS (pos
->pos
);
2845 /* If POS specifies a position in a display vector, this might
2846 be for an ellipsis displayed for invisible text. We won't
2847 get the iterator set up for delivering that ellipsis unless
2848 we make sure that it gets aware of the invisible text. */
2849 if (pos
->dpvec_index
>= 0
2850 && pos
->overlay_string_index
< 0
2851 && CHARPOS (pos
->string_pos
) < 0
2853 && (XSETWINDOW (window
, w
),
2854 prop
= Fget_char_property (make_number (charpos
),
2855 Qinvisible
, window
),
2856 !TEXT_PROP_MEANS_INVISIBLE (prop
)))
2858 prop
= Fget_char_property (make_number (charpos
- 1), Qinvisible
,
2860 ellipses_p
= 2 == TEXT_PROP_MEANS_INVISIBLE (prop
);
2867 /* Initialize IT for stepping through current_buffer in window W,
2868 starting at position POS that includes overlay string and display
2869 vector/ control character translation position information. Value
2870 is zero if there are overlay strings with newlines at POS. */
2873 init_from_display_pos (it
, w
, pos
)
2876 struct display_pos
*pos
;
2878 int charpos
= CHARPOS (pos
->pos
), bytepos
= BYTEPOS (pos
->pos
);
2879 int i
, overlay_strings_with_newlines
= 0;
2881 /* If POS specifies a position in a display vector, this might
2882 be for an ellipsis displayed for invisible text. We won't
2883 get the iterator set up for delivering that ellipsis unless
2884 we make sure that it gets aware of the invisible text. */
2885 if (in_ellipses_for_invisible_text_p (pos
, w
))
2891 /* Keep in mind: the call to reseat in init_iterator skips invisible
2892 text, so we might end up at a position different from POS. This
2893 is only a problem when POS is a row start after a newline and an
2894 overlay starts there with an after-string, and the overlay has an
2895 invisible property. Since we don't skip invisible text in
2896 display_line and elsewhere immediately after consuming the
2897 newline before the row start, such a POS will not be in a string,
2898 but the call to init_iterator below will move us to the
2900 init_iterator (it
, w
, charpos
, bytepos
, NULL
, DEFAULT_FACE_ID
);
2902 /* This only scans the current chunk -- it should scan all chunks.
2903 However, OVERLAY_STRING_CHUNK_SIZE has been increased from 3 in 21.1
2904 to 16 in 22.1 to make this a lesser problem. */
2905 for (i
= 0; i
< it
->n_overlay_strings
&& i
< OVERLAY_STRING_CHUNK_SIZE
; ++i
)
2907 const char *s
= SDATA (it
->overlay_strings
[i
]);
2908 const char *e
= s
+ SBYTES (it
->overlay_strings
[i
]);
2910 while (s
< e
&& *s
!= '\n')
2915 overlay_strings_with_newlines
= 1;
2920 /* If position is within an overlay string, set up IT to the right
2922 if (pos
->overlay_string_index
>= 0)
2926 /* If the first overlay string happens to have a `display'
2927 property for an image, the iterator will be set up for that
2928 image, and we have to undo that setup first before we can
2929 correct the overlay string index. */
2930 if (it
->method
== GET_FROM_IMAGE
)
2933 /* We already have the first chunk of overlay strings in
2934 IT->overlay_strings. Load more until the one for
2935 pos->overlay_string_index is in IT->overlay_strings. */
2936 if (pos
->overlay_string_index
>= OVERLAY_STRING_CHUNK_SIZE
)
2938 int n
= pos
->overlay_string_index
/ OVERLAY_STRING_CHUNK_SIZE
;
2939 it
->current
.overlay_string_index
= 0;
2942 load_overlay_strings (it
, 0);
2943 it
->current
.overlay_string_index
+= OVERLAY_STRING_CHUNK_SIZE
;
2947 it
->current
.overlay_string_index
= pos
->overlay_string_index
;
2948 relative_index
= (it
->current
.overlay_string_index
2949 % OVERLAY_STRING_CHUNK_SIZE
);
2950 it
->string
= it
->overlay_strings
[relative_index
];
2951 xassert (STRINGP (it
->string
));
2952 it
->current
.string_pos
= pos
->string_pos
;
2953 it
->method
= GET_FROM_STRING
;
2956 #if 0 /* This is bogus because POS not having an overlay string
2957 position does not mean it's after the string. Example: A
2958 line starting with a before-string and initialization of IT
2959 to the previous row's end position. */
2960 else if (it
->current
.overlay_string_index
>= 0)
2962 /* If POS says we're already after an overlay string ending at
2963 POS, make sure to pop the iterator because it will be in
2964 front of that overlay string. When POS is ZV, we've thereby
2965 also ``processed'' overlay strings at ZV. */
2968 xassert (it
->current
.overlay_string_index
== -1);
2969 xassert (it
->method
== GET_FROM_BUFFER
);
2970 if (CHARPOS (pos
->pos
) == ZV
)
2971 it
->overlay_strings_at_end_processed_p
= 1;
2975 if (CHARPOS (pos
->string_pos
) >= 0)
2977 /* Recorded position is not in an overlay string, but in another
2978 string. This can only be a string from a `display' property.
2979 IT should already be filled with that string. */
2980 it
->current
.string_pos
= pos
->string_pos
;
2981 xassert (STRINGP (it
->string
));
2984 /* Restore position in display vector translations, control
2985 character translations or ellipses. */
2986 if (pos
->dpvec_index
>= 0)
2988 if (it
->dpvec
== NULL
)
2989 get_next_display_element (it
);
2990 xassert (it
->dpvec
&& it
->current
.dpvec_index
== 0);
2991 it
->current
.dpvec_index
= pos
->dpvec_index
;
2995 return !overlay_strings_with_newlines
;
2999 /* Initialize IT for stepping through current_buffer in window W
3000 starting at ROW->start. */
3003 init_to_row_start (it
, w
, row
)
3006 struct glyph_row
*row
;
3008 init_from_display_pos (it
, w
, &row
->start
);
3009 it
->start
= row
->start
;
3010 it
->continuation_lines_width
= row
->continuation_lines_width
;
3015 /* Initialize IT for stepping through current_buffer in window W
3016 starting in the line following ROW, i.e. starting at ROW->end.
3017 Value is zero if there are overlay strings with newlines at ROW's
3021 init_to_row_end (it
, w
, row
)
3024 struct glyph_row
*row
;
3028 if (init_from_display_pos (it
, w
, &row
->end
))
3030 if (row
->continued_p
)
3031 it
->continuation_lines_width
3032 = row
->continuation_lines_width
+ row
->pixel_width
;
3043 /***********************************************************************
3045 ***********************************************************************/
3047 /* Called when IT reaches IT->stop_charpos. Handle text property and
3048 overlay changes. Set IT->stop_charpos to the next position where
3055 enum prop_handled handled
;
3056 int handle_overlay_change_p
;
3060 it
->current
.dpvec_index
= -1;
3061 handle_overlay_change_p
= !it
->ignore_overlay_strings_at_pos_p
;
3062 it
->ignore_overlay_strings_at_pos_p
= 0;
3064 /* Use face of preceding text for ellipsis (if invisible) */
3065 if (it
->selective_display_ellipsis_p
)
3066 it
->saved_face_id
= it
->face_id
;
3070 handled
= HANDLED_NORMALLY
;
3072 /* Call text property handlers. */
3073 for (p
= it_props
; p
->handler
; ++p
)
3075 handled
= p
->handler (it
);
3077 if (handled
== HANDLED_RECOMPUTE_PROPS
)
3079 else if (handled
== HANDLED_RETURN
)
3081 /* We still want to show before and after strings from
3082 overlays even if the actual buffer text is replaced. */
3083 if (!handle_overlay_change_p
|| it
->sp
> 1)
3085 if (!get_overlay_strings_1 (it
, 0, 0))
3087 it
->ignore_overlay_strings_at_pos_p
= 1;
3088 it
->string_from_display_prop_p
= 0;
3089 handle_overlay_change_p
= 0;
3090 handled
= HANDLED_RECOMPUTE_PROPS
;
3093 else if (handled
== HANDLED_OVERLAY_STRING_CONSUMED
)
3094 handle_overlay_change_p
= 0;
3097 if (handled
!= HANDLED_RECOMPUTE_PROPS
)
3099 /* Don't check for overlay strings below when set to deliver
3100 characters from a display vector. */
3101 if (it
->method
== GET_FROM_DISPLAY_VECTOR
)
3102 handle_overlay_change_p
= 0;
3104 /* Handle overlay changes.
3105 This sets HANDLED to HANDLED_RECOMPUTE_PROPS
3106 if it finds overlays. */
3107 if (handle_overlay_change_p
)
3108 handled
= handle_overlay_change (it
);
3111 while (handled
== HANDLED_RECOMPUTE_PROPS
);
3113 /* Determine where to stop next. */
3114 if (handled
== HANDLED_NORMALLY
)
3115 compute_stop_pos (it
);
3119 /* Compute IT->stop_charpos from text property and overlay change
3120 information for IT's current position. */
3123 compute_stop_pos (it
)
3126 register INTERVAL iv
, next_iv
;
3127 Lisp_Object object
, limit
, position
;
3129 /* If nowhere else, stop at the end. */
3130 it
->stop_charpos
= it
->end_charpos
;
3132 if (STRINGP (it
->string
))
3134 /* Strings are usually short, so don't limit the search for
3136 object
= it
->string
;
3138 position
= make_number (IT_STRING_CHARPOS (*it
));
3144 /* If next overlay change is in front of the current stop pos
3145 (which is IT->end_charpos), stop there. Note: value of
3146 next_overlay_change is point-max if no overlay change
3148 charpos
= next_overlay_change (IT_CHARPOS (*it
));
3149 if (charpos
< it
->stop_charpos
)
3150 it
->stop_charpos
= charpos
;
3152 /* If showing the region, we have to stop at the region
3153 start or end because the face might change there. */
3154 if (it
->region_beg_charpos
> 0)
3156 if (IT_CHARPOS (*it
) < it
->region_beg_charpos
)
3157 it
->stop_charpos
= min (it
->stop_charpos
, it
->region_beg_charpos
);
3158 else if (IT_CHARPOS (*it
) < it
->region_end_charpos
)
3159 it
->stop_charpos
= min (it
->stop_charpos
, it
->region_end_charpos
);
3162 /* Set up variables for computing the stop position from text
3163 property changes. */
3164 XSETBUFFER (object
, current_buffer
);
3165 limit
= make_number (IT_CHARPOS (*it
) + TEXT_PROP_DISTANCE_LIMIT
);
3166 position
= make_number (IT_CHARPOS (*it
));
3170 /* Get the interval containing IT's position. Value is a null
3171 interval if there isn't such an interval. */
3172 iv
= validate_interval_range (object
, &position
, &position
, 0);
3173 if (!NULL_INTERVAL_P (iv
))
3175 Lisp_Object values_here
[LAST_PROP_IDX
];
3178 /* Get properties here. */
3179 for (p
= it_props
; p
->handler
; ++p
)
3180 values_here
[p
->idx
] = textget (iv
->plist
, *p
->name
);
3182 /* Look for an interval following iv that has different
3184 for (next_iv
= next_interval (iv
);
3185 (!NULL_INTERVAL_P (next_iv
)
3187 || XFASTINT (limit
) > next_iv
->position
));
3188 next_iv
= next_interval (next_iv
))
3190 for (p
= it_props
; p
->handler
; ++p
)
3192 Lisp_Object new_value
;
3194 new_value
= textget (next_iv
->plist
, *p
->name
);
3195 if (!EQ (values_here
[p
->idx
], new_value
))
3203 if (!NULL_INTERVAL_P (next_iv
))
3205 if (INTEGERP (limit
)
3206 && next_iv
->position
>= XFASTINT (limit
))
3207 /* No text property change up to limit. */
3208 it
->stop_charpos
= min (XFASTINT (limit
), it
->stop_charpos
);
3210 /* Text properties change in next_iv. */
3211 it
->stop_charpos
= min (it
->stop_charpos
, next_iv
->position
);
3215 xassert (STRINGP (it
->string
)
3216 || (it
->stop_charpos
>= BEGV
3217 && it
->stop_charpos
>= IT_CHARPOS (*it
)));
3221 /* Return the position of the next overlay change after POS in
3222 current_buffer. Value is point-max if no overlay change
3223 follows. This is like `next-overlay-change' but doesn't use
3227 next_overlay_change (pos
)
3232 Lisp_Object
*overlays
;
3235 /* Get all overlays at the given position. */
3236 GET_OVERLAYS_AT (pos
, overlays
, noverlays
, &endpos
, 1);
3238 /* If any of these overlays ends before endpos,
3239 use its ending point instead. */
3240 for (i
= 0; i
< noverlays
; ++i
)
3245 oend
= OVERLAY_END (overlays
[i
]);
3246 oendpos
= OVERLAY_POSITION (oend
);
3247 endpos
= min (endpos
, oendpos
);
3255 /***********************************************************************
3257 ***********************************************************************/
3259 /* Handle changes in the `fontified' property of the current buffer by
3260 calling hook functions from Qfontification_functions to fontify
3263 static enum prop_handled
3264 handle_fontified_prop (it
)
3267 Lisp_Object prop
, pos
;
3268 enum prop_handled handled
= HANDLED_NORMALLY
;
3270 if (!NILP (Vmemory_full
))
3273 /* Get the value of the `fontified' property at IT's current buffer
3274 position. (The `fontified' property doesn't have a special
3275 meaning in strings.) If the value is nil, call functions from
3276 Qfontification_functions. */
3277 if (!STRINGP (it
->string
)
3279 && !NILP (Vfontification_functions
)
3280 && !NILP (Vrun_hooks
)
3281 && (pos
= make_number (IT_CHARPOS (*it
)),
3282 prop
= Fget_char_property (pos
, Qfontified
, Qnil
),
3283 /* Ignore the special cased nil value always present at EOB since
3284 no amount of fontifying will be able to change it. */
3285 NILP (prop
) && IT_CHARPOS (*it
) < Z
))
3287 int count
= SPECPDL_INDEX ();
3290 val
= Vfontification_functions
;
3291 specbind (Qfontification_functions
, Qnil
);
3293 if (!CONSP (val
) || EQ (XCAR (val
), Qlambda
))
3294 safe_call1 (val
, pos
);
3297 Lisp_Object globals
, fn
;
3298 struct gcpro gcpro1
, gcpro2
;
3301 GCPRO2 (val
, globals
);
3303 for (; CONSP (val
); val
= XCDR (val
))
3309 /* A value of t indicates this hook has a local
3310 binding; it means to run the global binding too.
3311 In a global value, t should not occur. If it
3312 does, we must ignore it to avoid an endless
3314 for (globals
= Fdefault_value (Qfontification_functions
);
3316 globals
= XCDR (globals
))
3318 fn
= XCAR (globals
);
3320 safe_call1 (fn
, pos
);
3324 safe_call1 (fn
, pos
);
3330 unbind_to (count
, Qnil
);
3332 /* Return HANDLED_RECOMPUTE_PROPS only if function fontified
3333 something. This avoids an endless loop if they failed to
3334 fontify the text for which reason ever. */
3335 if (!NILP (Fget_char_property (pos
, Qfontified
, Qnil
)))
3336 handled
= HANDLED_RECOMPUTE_PROPS
;
3344 /***********************************************************************
3346 ***********************************************************************/
3348 /* Set up iterator IT from face properties at its current position.
3349 Called from handle_stop. */
3351 static enum prop_handled
3352 handle_face_prop (it
)
3356 EMACS_INT next_stop
;
3358 if (!STRINGP (it
->string
))
3361 = face_at_buffer_position (it
->w
,
3363 it
->region_beg_charpos
,
3364 it
->region_end_charpos
,
3367 + TEXT_PROP_DISTANCE_LIMIT
),
3370 /* Is this a start of a run of characters with box face?
3371 Caveat: this can be called for a freshly initialized
3372 iterator; face_id is -1 in this case. We know that the new
3373 face will not change until limit, i.e. if the new face has a
3374 box, all characters up to limit will have one. But, as
3375 usual, we don't know whether limit is really the end. */
3376 if (new_face_id
!= it
->face_id
)
3378 struct face
*new_face
= FACE_FROM_ID (it
->f
, new_face_id
);
3380 /* If new face has a box but old face has not, this is
3381 the start of a run of characters with box, i.e. it has
3382 a shadow on the left side. The value of face_id of the
3383 iterator will be -1 if this is the initial call that gets
3384 the face. In this case, we have to look in front of IT's
3385 position and see whether there is a face != new_face_id. */
3386 it
->start_of_box_run_p
3387 = (new_face
->box
!= FACE_NO_BOX
3388 && (it
->face_id
>= 0
3389 || IT_CHARPOS (*it
) == BEG
3390 || new_face_id
!= face_before_it_pos (it
)));
3391 it
->face_box_p
= new_face
->box
!= FACE_NO_BOX
;
3396 int base_face_id
, bufpos
;
3398 Lisp_Object from_overlay
3399 = (it
->current
.overlay_string_index
>= 0
3400 ? it
->string_overlays
[it
->current
.overlay_string_index
]
3403 /* See if we got to this string directly or indirectly from
3404 an overlay property. That includes the before-string or
3405 after-string of an overlay, strings in display properties
3406 provided by an overlay, their text properties, etc.
3408 FROM_OVERLAY is the overlay that brought us here, or nil if none. */
3409 if (! NILP (from_overlay
))
3410 for (i
= it
->sp
- 1; i
>= 0; i
--)
3412 if (it
->stack
[i
].current
.overlay_string_index
>= 0)
3414 = it
->string_overlays
[it
->stack
[i
].current
.overlay_string_index
];
3415 else if (! NILP (it
->stack
[i
].from_overlay
))
3416 from_overlay
= it
->stack
[i
].from_overlay
;
3418 if (!NILP (from_overlay
))
3422 if (! NILP (from_overlay
))
3424 bufpos
= IT_CHARPOS (*it
);
3425 /* For a string from an overlay, the base face depends
3426 only on text properties and ignores overlays. */
3428 = face_for_overlay_string (it
->w
,
3430 it
->region_beg_charpos
,
3431 it
->region_end_charpos
,
3434 + TEXT_PROP_DISTANCE_LIMIT
),
3442 /* For strings from a `display' property, use the face at
3443 IT's current buffer position as the base face to merge
3444 with, so that overlay strings appear in the same face as
3445 surrounding text, unless they specify their own
3447 base_face_id
= underlying_face_id (it
);
3450 new_face_id
= face_at_string_position (it
->w
,
3452 IT_STRING_CHARPOS (*it
),
3454 it
->region_beg_charpos
,
3455 it
->region_end_charpos
,
3459 #if 0 /* This shouldn't be neccessary. Let's check it. */
3460 /* If IT is used to display a mode line we would really like to
3461 use the mode line face instead of the frame's default face. */
3462 if (it
->glyph_row
== MATRIX_MODE_LINE_ROW (it
->w
->desired_matrix
)
3463 && new_face_id
== DEFAULT_FACE_ID
)
3464 new_face_id
= CURRENT_MODE_LINE_FACE_ID (it
->w
);
3467 /* Is this a start of a run of characters with box? Caveat:
3468 this can be called for a freshly allocated iterator; face_id
3469 is -1 is this case. We know that the new face will not
3470 change until the next check pos, i.e. if the new face has a
3471 box, all characters up to that position will have a
3472 box. But, as usual, we don't know whether that position
3473 is really the end. */
3474 if (new_face_id
!= it
->face_id
)
3476 struct face
*new_face
= FACE_FROM_ID (it
->f
, new_face_id
);
3477 struct face
*old_face
= FACE_FROM_ID (it
->f
, it
->face_id
);
3479 /* If new face has a box but old face hasn't, this is the
3480 start of a run of characters with box, i.e. it has a
3481 shadow on the left side. */
3482 it
->start_of_box_run_p
3483 = new_face
->box
&& (old_face
== NULL
|| !old_face
->box
);
3484 it
->face_box_p
= new_face
->box
!= FACE_NO_BOX
;
3488 it
->face_id
= new_face_id
;
3489 return HANDLED_NORMALLY
;
3493 /* Return the ID of the face ``underlying'' IT's current position,
3494 which is in a string. If the iterator is associated with a
3495 buffer, return the face at IT's current buffer position.
3496 Otherwise, use the iterator's base_face_id. */
3499 underlying_face_id (it
)
3502 int face_id
= it
->base_face_id
, i
;
3504 xassert (STRINGP (it
->string
));
3506 for (i
= it
->sp
- 1; i
>= 0; --i
)
3507 if (NILP (it
->stack
[i
].string
))
3508 face_id
= it
->stack
[i
].face_id
;
3514 /* Compute the face one character before or after the current position
3515 of IT. BEFORE_P non-zero means get the face in front of IT's
3516 position. Value is the id of the face. */
3519 face_before_or_after_it_pos (it
, before_p
)
3524 EMACS_INT next_check_charpos
;
3525 struct text_pos pos
;
3527 xassert (it
->s
== NULL
);
3529 if (STRINGP (it
->string
))
3531 int bufpos
, base_face_id
;
3533 /* No face change past the end of the string (for the case
3534 we are padding with spaces). No face change before the
3536 if (IT_STRING_CHARPOS (*it
) >= SCHARS (it
->string
)
3537 || (IT_STRING_CHARPOS (*it
) == 0 && before_p
))
3540 /* Set pos to the position before or after IT's current position. */
3542 pos
= string_pos (IT_STRING_CHARPOS (*it
) - 1, it
->string
);
3544 /* For composition, we must check the character after the
3546 pos
= (it
->what
== IT_COMPOSITION
3547 ? string_pos (IT_STRING_CHARPOS (*it
) + it
->cmp_len
, it
->string
)
3548 : string_pos (IT_STRING_CHARPOS (*it
) + 1, it
->string
));
3550 if (it
->current
.overlay_string_index
>= 0)
3551 bufpos
= IT_CHARPOS (*it
);
3555 base_face_id
= underlying_face_id (it
);
3557 /* Get the face for ASCII, or unibyte. */
3558 face_id
= face_at_string_position (it
->w
,
3562 it
->region_beg_charpos
,
3563 it
->region_end_charpos
,
3564 &next_check_charpos
,
3567 /* Correct the face for charsets different from ASCII. Do it
3568 for the multibyte case only. The face returned above is
3569 suitable for unibyte text if IT->string is unibyte. */
3570 if (STRING_MULTIBYTE (it
->string
))
3572 const unsigned char *p
= SDATA (it
->string
) + BYTEPOS (pos
);
3573 int rest
= SBYTES (it
->string
) - BYTEPOS (pos
);
3575 struct face
*face
= FACE_FROM_ID (it
->f
, face_id
);
3577 c
= string_char_and_length (p
, rest
, &len
);
3578 face_id
= FACE_FOR_CHAR (it
->f
, face
, c
, CHARPOS (pos
), it
->string
);
3583 if ((IT_CHARPOS (*it
) >= ZV
&& !before_p
)
3584 || (IT_CHARPOS (*it
) <= BEGV
&& before_p
))
3587 limit
= IT_CHARPOS (*it
) + TEXT_PROP_DISTANCE_LIMIT
;
3588 pos
= it
->current
.pos
;
3591 DEC_TEXT_POS (pos
, it
->multibyte_p
);
3594 if (it
->what
== IT_COMPOSITION
)
3595 /* For composition, we must check the position after the
3597 pos
.charpos
+= it
->cmp_len
, pos
.bytepos
+= it
->len
;
3599 INC_TEXT_POS (pos
, it
->multibyte_p
);
3602 /* Determine face for CHARSET_ASCII, or unibyte. */
3603 face_id
= face_at_buffer_position (it
->w
,
3605 it
->region_beg_charpos
,
3606 it
->region_end_charpos
,
3607 &next_check_charpos
,
3610 /* Correct the face for charsets different from ASCII. Do it
3611 for the multibyte case only. The face returned above is
3612 suitable for unibyte text if current_buffer is unibyte. */
3613 if (it
->multibyte_p
)
3615 int c
= FETCH_MULTIBYTE_CHAR (BYTEPOS (pos
));
3616 struct face
*face
= FACE_FROM_ID (it
->f
, face_id
);
3617 face_id
= FACE_FOR_CHAR (it
->f
, face
, c
, CHARPOS (pos
), Qnil
);
3626 /***********************************************************************
3628 ***********************************************************************/
3630 /* Set up iterator IT from invisible properties at its current
3631 position. Called from handle_stop. */
3633 static enum prop_handled
3634 handle_invisible_prop (it
)
3637 enum prop_handled handled
= HANDLED_NORMALLY
;
3639 if (STRINGP (it
->string
))
3641 extern Lisp_Object Qinvisible
;
3642 Lisp_Object prop
, end_charpos
, limit
, charpos
;
3644 /* Get the value of the invisible text property at the
3645 current position. Value will be nil if there is no such
3647 charpos
= make_number (IT_STRING_CHARPOS (*it
));
3648 prop
= Fget_text_property (charpos
, Qinvisible
, it
->string
);
3651 && IT_STRING_CHARPOS (*it
) < it
->end_charpos
)
3653 handled
= HANDLED_RECOMPUTE_PROPS
;
3655 /* Get the position at which the next change of the
3656 invisible text property can be found in IT->string.
3657 Value will be nil if the property value is the same for
3658 all the rest of IT->string. */
3659 XSETINT (limit
, SCHARS (it
->string
));
3660 end_charpos
= Fnext_single_property_change (charpos
, Qinvisible
,
3663 /* Text at current position is invisible. The next
3664 change in the property is at position end_charpos.
3665 Move IT's current position to that position. */
3666 if (INTEGERP (end_charpos
)
3667 && XFASTINT (end_charpos
) < XFASTINT (limit
))
3669 struct text_pos old
;
3670 old
= it
->current
.string_pos
;
3671 IT_STRING_CHARPOS (*it
) = XFASTINT (end_charpos
);
3672 compute_string_pos (&it
->current
.string_pos
, old
, it
->string
);
3676 /* The rest of the string is invisible. If this is an
3677 overlay string, proceed with the next overlay string
3678 or whatever comes and return a character from there. */
3679 if (it
->current
.overlay_string_index
>= 0)
3681 next_overlay_string (it
);
3682 /* Don't check for overlay strings when we just
3683 finished processing them. */
3684 handled
= HANDLED_OVERLAY_STRING_CONSUMED
;
3688 IT_STRING_CHARPOS (*it
) = SCHARS (it
->string
);
3689 IT_STRING_BYTEPOS (*it
) = SBYTES (it
->string
);
3697 EMACS_INT newpos
, next_stop
, start_charpos
;
3698 Lisp_Object pos
, prop
, overlay
;
3700 /* First of all, is there invisible text at this position? */
3701 start_charpos
= IT_CHARPOS (*it
);
3702 pos
= make_number (IT_CHARPOS (*it
));
3703 prop
= get_char_property_and_overlay (pos
, Qinvisible
, it
->window
,
3705 invis_p
= TEXT_PROP_MEANS_INVISIBLE (prop
);
3707 /* If we are on invisible text, skip over it. */
3708 if (invis_p
&& IT_CHARPOS (*it
) < it
->end_charpos
)
3710 /* Record whether we have to display an ellipsis for the
3712 int display_ellipsis_p
= invis_p
== 2;
3714 handled
= HANDLED_RECOMPUTE_PROPS
;
3716 /* Loop skipping over invisible text. The loop is left at
3717 ZV or with IT on the first char being visible again. */
3720 /* Try to skip some invisible text. Return value is the
3721 position reached which can be equal to IT's position
3722 if there is nothing invisible here. This skips both
3723 over invisible text properties and overlays with
3724 invisible property. */
3725 newpos
= skip_invisible (IT_CHARPOS (*it
),
3726 &next_stop
, ZV
, it
->window
);
3728 /* If we skipped nothing at all we weren't at invisible
3729 text in the first place. If everything to the end of
3730 the buffer was skipped, end the loop. */
3731 if (newpos
== IT_CHARPOS (*it
) || newpos
>= ZV
)
3735 /* We skipped some characters but not necessarily
3736 all there are. Check if we ended up on visible
3737 text. Fget_char_property returns the property of
3738 the char before the given position, i.e. if we
3739 get invis_p = 0, this means that the char at
3740 newpos is visible. */
3741 pos
= make_number (newpos
);
3742 prop
= Fget_char_property (pos
, Qinvisible
, it
->window
);
3743 invis_p
= TEXT_PROP_MEANS_INVISIBLE (prop
);
3746 /* If we ended up on invisible text, proceed to
3747 skip starting with next_stop. */
3749 IT_CHARPOS (*it
) = next_stop
;
3751 /* If there are adjacent invisible texts, don't lose the
3752 second one's ellipsis. */
3754 display_ellipsis_p
= 1;
3758 /* The position newpos is now either ZV or on visible text. */
3759 IT_CHARPOS (*it
) = newpos
;
3760 IT_BYTEPOS (*it
) = CHAR_TO_BYTE (newpos
);
3762 /* If there are before-strings at the start of invisible
3763 text, and the text is invisible because of a text
3764 property, arrange to show before-strings because 20.x did
3765 it that way. (If the text is invisible because of an
3766 overlay property instead of a text property, this is
3767 already handled in the overlay code.) */
3769 && get_overlay_strings (it
, start_charpos
))
3771 handled
= HANDLED_RECOMPUTE_PROPS
;
3772 it
->stack
[it
->sp
- 1].display_ellipsis_p
= display_ellipsis_p
;
3774 else if (display_ellipsis_p
)
3776 /* Make sure that the glyphs of the ellipsis will get
3777 correct `charpos' values. If we would not update
3778 it->position here, the glyphs would belong to the
3779 last visible character _before_ the invisible
3780 text, which confuses `set_cursor_from_row'.
3782 We use the last invisible position instead of the
3783 first because this way the cursor is always drawn on
3784 the first "." of the ellipsis, whenever PT is inside
3785 the invisible text. Otherwise the cursor would be
3786 placed _after_ the ellipsis when the point is after the
3787 first invisible character. */
3788 if (!STRINGP (it
->object
))
3790 it
->position
.charpos
= IT_CHARPOS (*it
) - 1;
3791 it
->position
.bytepos
= CHAR_TO_BYTE (it
->position
.charpos
);
3793 setup_for_ellipsis (it
, 0);
3794 /* Let the ellipsis display before
3795 considering any properties of the following char.
3796 Fixes jasonr@gnu.org 01 Oct 07 bug. */
3797 handled
= HANDLED_RETURN
;
3806 /* Make iterator IT return `...' next.
3807 Replaces LEN characters from buffer. */
3810 setup_for_ellipsis (it
, len
)
3814 /* Use the display table definition for `...'. Invalid glyphs
3815 will be handled by the method returning elements from dpvec. */
3816 if (it
->dp
&& VECTORP (DISP_INVIS_VECTOR (it
->dp
)))
3818 struct Lisp_Vector
*v
= XVECTOR (DISP_INVIS_VECTOR (it
->dp
));
3819 it
->dpvec
= v
->contents
;
3820 it
->dpend
= v
->contents
+ v
->size
;
3824 /* Default `...'. */
3825 it
->dpvec
= default_invis_vector
;
3826 it
->dpend
= default_invis_vector
+ 3;
3829 it
->dpvec_char_len
= len
;
3830 it
->current
.dpvec_index
= 0;
3831 it
->dpvec_face_id
= -1;
3833 /* Remember the current face id in case glyphs specify faces.
3834 IT's face is restored in set_iterator_to_next.
3835 saved_face_id was set to preceding char's face in handle_stop. */
3836 if (it
->saved_face_id
< 0 || it
->saved_face_id
!= it
->face_id
)
3837 it
->saved_face_id
= it
->face_id
= DEFAULT_FACE_ID
;
3839 it
->method
= GET_FROM_DISPLAY_VECTOR
;
3845 /***********************************************************************
3847 ***********************************************************************/
3849 /* Set up iterator IT from `display' property at its current position.
3850 Called from handle_stop.
3851 We return HANDLED_RETURN if some part of the display property
3852 overrides the display of the buffer text itself.
3853 Otherwise we return HANDLED_NORMALLY. */
3855 static enum prop_handled
3856 handle_display_prop (it
)
3859 Lisp_Object prop
, object
, overlay
;
3860 struct text_pos
*position
;
3861 /* Nonzero if some property replaces the display of the text itself. */
3862 int display_replaced_p
= 0;
3864 if (STRINGP (it
->string
))
3866 object
= it
->string
;
3867 position
= &it
->current
.string_pos
;
3871 XSETWINDOW (object
, it
->w
);
3872 position
= &it
->current
.pos
;
3875 /* Reset those iterator values set from display property values. */
3876 it
->slice
.x
= it
->slice
.y
= it
->slice
.width
= it
->slice
.height
= Qnil
;
3877 it
->space_width
= Qnil
;
3878 it
->font_height
= Qnil
;
3881 /* We don't support recursive `display' properties, i.e. string
3882 values that have a string `display' property, that have a string
3883 `display' property etc. */
3884 if (!it
->string_from_display_prop_p
)
3885 it
->area
= TEXT_AREA
;
3887 prop
= get_char_property_and_overlay (make_number (position
->charpos
),
3888 Qdisplay
, object
, &overlay
);
3890 return HANDLED_NORMALLY
;
3891 /* Now OVERLAY is the overlay that gave us this property, or nil
3892 if it was a text property. */
3894 if (!STRINGP (it
->string
))
3895 object
= it
->w
->buffer
;
3898 /* Simple properties. */
3899 && !EQ (XCAR (prop
), Qimage
)
3900 && !EQ (XCAR (prop
), Qspace
)
3901 && !EQ (XCAR (prop
), Qwhen
)
3902 && !EQ (XCAR (prop
), Qslice
)
3903 && !EQ (XCAR (prop
), Qspace_width
)
3904 && !EQ (XCAR (prop
), Qheight
)
3905 && !EQ (XCAR (prop
), Qraise
)
3906 /* Marginal area specifications. */
3907 && !(CONSP (XCAR (prop
)) && EQ (XCAR (XCAR (prop
)), Qmargin
))
3908 && !EQ (XCAR (prop
), Qleft_fringe
)
3909 && !EQ (XCAR (prop
), Qright_fringe
)
3910 && !NILP (XCAR (prop
)))
3912 for (; CONSP (prop
); prop
= XCDR (prop
))
3914 if (handle_single_display_spec (it
, XCAR (prop
), object
, overlay
,
3915 position
, display_replaced_p
))
3917 display_replaced_p
= 1;
3918 /* If some text in a string is replaced, `position' no
3919 longer points to the position of `object'. */
3920 if (STRINGP (object
))
3925 else if (VECTORP (prop
))
3928 for (i
= 0; i
< ASIZE (prop
); ++i
)
3929 if (handle_single_display_spec (it
, AREF (prop
, i
), object
, overlay
,
3930 position
, display_replaced_p
))
3932 display_replaced_p
= 1;
3933 /* If some text in a string is replaced, `position' no
3934 longer points to the position of `object'. */
3935 if (STRINGP (object
))
3941 int ret
= handle_single_display_spec (it
, prop
, object
, overlay
,
3943 if (ret
< 0) /* Replaced by "", i.e. nothing. */
3944 return HANDLED_RECOMPUTE_PROPS
;
3946 display_replaced_p
= 1;
3949 return display_replaced_p
? HANDLED_RETURN
: HANDLED_NORMALLY
;
3953 /* Value is the position of the end of the `display' property starting
3954 at START_POS in OBJECT. */
3956 static struct text_pos
3957 display_prop_end (it
, object
, start_pos
)
3960 struct text_pos start_pos
;
3963 struct text_pos end_pos
;
3965 end
= Fnext_single_char_property_change (make_number (CHARPOS (start_pos
)),
3966 Qdisplay
, object
, Qnil
);
3967 CHARPOS (end_pos
) = XFASTINT (end
);
3968 if (STRINGP (object
))
3969 compute_string_pos (&end_pos
, start_pos
, it
->string
);
3971 BYTEPOS (end_pos
) = CHAR_TO_BYTE (XFASTINT (end
));
3977 /* Set up IT from a single `display' specification PROP. OBJECT
3978 is the object in which the `display' property was found. *POSITION
3979 is the position at which it was found. DISPLAY_REPLACED_P non-zero
3980 means that we previously saw a display specification which already
3981 replaced text display with something else, for example an image;
3982 we ignore such properties after the first one has been processed.
3984 OVERLAY is the overlay this `display' property came from,
3985 or nil if it was a text property.
3987 If PROP is a `space' or `image' specification, and in some other
3988 cases too, set *POSITION to the position where the `display'
3991 Value is non-zero if something was found which replaces the display
3992 of buffer or string text. Specifically, the value is -1 if that
3993 "something" is "nothing". */
3996 handle_single_display_spec (it
, spec
, object
, overlay
, position
,
3997 display_replaced_before_p
)
4001 Lisp_Object overlay
;
4002 struct text_pos
*position
;
4003 int display_replaced_before_p
;
4006 Lisp_Object location
, value
;
4007 struct text_pos start_pos
, save_pos
;
4010 /* If SPEC is a list of the form `(when FORM . VALUE)', evaluate FORM.
4011 If the result is non-nil, use VALUE instead of SPEC. */
4013 if (CONSP (spec
) && EQ (XCAR (spec
), Qwhen
))
4022 if (!NILP (form
) && !EQ (form
, Qt
))
4024 int count
= SPECPDL_INDEX ();
4025 struct gcpro gcpro1
;
4027 /* Bind `object' to the object having the `display' property, a
4028 buffer or string. Bind `position' to the position in the
4029 object where the property was found, and `buffer-position'
4030 to the current position in the buffer. */
4031 specbind (Qobject
, object
);
4032 specbind (Qposition
, make_number (CHARPOS (*position
)));
4033 specbind (Qbuffer_position
,
4034 make_number (STRINGP (object
)
4035 ? IT_CHARPOS (*it
) : CHARPOS (*position
)));
4037 form
= safe_eval (form
);
4039 unbind_to (count
, Qnil
);
4045 /* Handle `(height HEIGHT)' specifications. */
4047 && EQ (XCAR (spec
), Qheight
)
4048 && CONSP (XCDR (spec
)))
4050 if (!FRAME_WINDOW_P (it
->f
))
4053 it
->font_height
= XCAR (XCDR (spec
));
4054 if (!NILP (it
->font_height
))
4056 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
4057 int new_height
= -1;
4059 if (CONSP (it
->font_height
)
4060 && (EQ (XCAR (it
->font_height
), Qplus
)
4061 || EQ (XCAR (it
->font_height
), Qminus
))
4062 && CONSP (XCDR (it
->font_height
))
4063 && INTEGERP (XCAR (XCDR (it
->font_height
))))
4065 /* `(+ N)' or `(- N)' where N is an integer. */
4066 int steps
= XINT (XCAR (XCDR (it
->font_height
)));
4067 if (EQ (XCAR (it
->font_height
), Qplus
))
4069 it
->face_id
= smaller_face (it
->f
, it
->face_id
, steps
);
4071 else if (FUNCTIONP (it
->font_height
))
4073 /* Call function with current height as argument.
4074 Value is the new height. */
4076 height
= safe_call1 (it
->font_height
,
4077 face
->lface
[LFACE_HEIGHT_INDEX
]);
4078 if (NUMBERP (height
))
4079 new_height
= XFLOATINT (height
);
4081 else if (NUMBERP (it
->font_height
))
4083 /* Value is a multiple of the canonical char height. */
4086 face
= FACE_FROM_ID (it
->f
, DEFAULT_FACE_ID
);
4087 new_height
= (XFLOATINT (it
->font_height
)
4088 * XINT (face
->lface
[LFACE_HEIGHT_INDEX
]));
4092 /* Evaluate IT->font_height with `height' bound to the
4093 current specified height to get the new height. */
4094 int count
= SPECPDL_INDEX ();
4096 specbind (Qheight
, face
->lface
[LFACE_HEIGHT_INDEX
]);
4097 value
= safe_eval (it
->font_height
);
4098 unbind_to (count
, Qnil
);
4100 if (NUMBERP (value
))
4101 new_height
= XFLOATINT (value
);
4105 it
->face_id
= face_with_height (it
->f
, it
->face_id
, new_height
);
4111 /* Handle `(space-width WIDTH)'. */
4113 && EQ (XCAR (spec
), Qspace_width
)
4114 && CONSP (XCDR (spec
)))
4116 if (!FRAME_WINDOW_P (it
->f
))
4119 value
= XCAR (XCDR (spec
));
4120 if (NUMBERP (value
) && XFLOATINT (value
) > 0)
4121 it
->space_width
= value
;
4126 /* Handle `(slice X Y WIDTH HEIGHT)'. */
4128 && EQ (XCAR (spec
), Qslice
))
4132 if (!FRAME_WINDOW_P (it
->f
))
4135 if (tem
= XCDR (spec
), CONSP (tem
))
4137 it
->slice
.x
= XCAR (tem
);
4138 if (tem
= XCDR (tem
), CONSP (tem
))
4140 it
->slice
.y
= XCAR (tem
);
4141 if (tem
= XCDR (tem
), CONSP (tem
))
4143 it
->slice
.width
= XCAR (tem
);
4144 if (tem
= XCDR (tem
), CONSP (tem
))
4145 it
->slice
.height
= XCAR (tem
);
4153 /* Handle `(raise FACTOR)'. */
4155 && EQ (XCAR (spec
), Qraise
)
4156 && CONSP (XCDR (spec
)))
4158 if (!FRAME_WINDOW_P (it
->f
))
4161 #ifdef HAVE_WINDOW_SYSTEM
4162 value
= XCAR (XCDR (spec
));
4163 if (NUMBERP (value
))
4165 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
4166 it
->voffset
= - (XFLOATINT (value
)
4167 * (FONT_HEIGHT (face
->font
)));
4169 #endif /* HAVE_WINDOW_SYSTEM */
4174 /* Don't handle the other kinds of display specifications
4175 inside a string that we got from a `display' property. */
4176 if (it
->string_from_display_prop_p
)
4179 /* Characters having this form of property are not displayed, so
4180 we have to find the end of the property. */
4181 start_pos
= *position
;
4182 *position
= display_prop_end (it
, object
, start_pos
);
4185 /* Stop the scan at that end position--we assume that all
4186 text properties change there. */
4187 it
->stop_charpos
= position
->charpos
;
4189 /* Handle `(left-fringe BITMAP [FACE])'
4190 and `(right-fringe BITMAP [FACE])'. */
4192 && (EQ (XCAR (spec
), Qleft_fringe
)
4193 || EQ (XCAR (spec
), Qright_fringe
))
4194 && CONSP (XCDR (spec
)))
4196 int face_id
= DEFAULT_FACE_ID
;
4199 if (!FRAME_WINDOW_P (it
->f
))
4200 /* If we return here, POSITION has been advanced
4201 across the text with this property. */
4204 #ifdef HAVE_WINDOW_SYSTEM
4205 value
= XCAR (XCDR (spec
));
4206 if (!SYMBOLP (value
)
4207 || !(fringe_bitmap
= lookup_fringe_bitmap (value
)))
4208 /* If we return here, POSITION has been advanced
4209 across the text with this property. */
4212 if (CONSP (XCDR (XCDR (spec
))))
4214 Lisp_Object face_name
= XCAR (XCDR (XCDR (spec
)));
4215 int face_id2
= lookup_derived_face (it
->f
, face_name
,
4221 /* Save current settings of IT so that we can restore them
4222 when we are finished with the glyph property value. */
4224 save_pos
= it
->position
;
4225 it
->position
= *position
;
4227 it
->position
= save_pos
;
4229 it
->area
= TEXT_AREA
;
4230 it
->what
= IT_IMAGE
;
4231 it
->image_id
= -1; /* no image */
4232 it
->position
= start_pos
;
4233 it
->object
= NILP (object
) ? it
->w
->buffer
: object
;
4234 it
->method
= GET_FROM_IMAGE
;
4235 it
->from_overlay
= Qnil
;
4236 it
->face_id
= face_id
;
4238 /* Say that we haven't consumed the characters with
4239 `display' property yet. The call to pop_it in
4240 set_iterator_to_next will clean this up. */
4241 *position
= start_pos
;
4243 if (EQ (XCAR (spec
), Qleft_fringe
))
4245 it
->left_user_fringe_bitmap
= fringe_bitmap
;
4246 it
->left_user_fringe_face_id
= face_id
;
4250 it
->right_user_fringe_bitmap
= fringe_bitmap
;
4251 it
->right_user_fringe_face_id
= face_id
;
4253 #endif /* HAVE_WINDOW_SYSTEM */
4257 /* Prepare to handle `((margin left-margin) ...)',
4258 `((margin right-margin) ...)' and `((margin nil) ...)'
4259 prefixes for display specifications. */
4260 location
= Qunbound
;
4261 if (CONSP (spec
) && CONSP (XCAR (spec
)))
4265 value
= XCDR (spec
);
4267 value
= XCAR (value
);
4270 if (EQ (XCAR (tem
), Qmargin
)
4271 && (tem
= XCDR (tem
),
4272 tem
= CONSP (tem
) ? XCAR (tem
) : Qnil
,
4274 || EQ (tem
, Qleft_margin
)
4275 || EQ (tem
, Qright_margin
))))
4279 if (EQ (location
, Qunbound
))
4285 /* After this point, VALUE is the property after any
4286 margin prefix has been stripped. It must be a string,
4287 an image specification, or `(space ...)'.
4289 LOCATION specifies where to display: `left-margin',
4290 `right-margin' or nil. */
4292 valid_p
= (STRINGP (value
)
4293 #ifdef HAVE_WINDOW_SYSTEM
4294 || (FRAME_WINDOW_P (it
->f
) && valid_image_p (value
))
4295 #endif /* not HAVE_WINDOW_SYSTEM */
4296 || (CONSP (value
) && EQ (XCAR (value
), Qspace
)));
4298 if (valid_p
&& !display_replaced_before_p
)
4300 /* Save current settings of IT so that we can restore them
4301 when we are finished with the glyph property value. */
4302 save_pos
= it
->position
;
4303 it
->position
= *position
;
4305 it
->position
= save_pos
;
4306 it
->from_overlay
= overlay
;
4308 if (NILP (location
))
4309 it
->area
= TEXT_AREA
;
4310 else if (EQ (location
, Qleft_margin
))
4311 it
->area
= LEFT_MARGIN_AREA
;
4313 it
->area
= RIGHT_MARGIN_AREA
;
4315 if (STRINGP (value
))
4317 if (SCHARS (value
) == 0)
4320 return -1; /* Replaced by "", i.e. nothing. */
4323 it
->multibyte_p
= STRING_MULTIBYTE (it
->string
);
4324 it
->current
.overlay_string_index
= -1;
4325 IT_STRING_CHARPOS (*it
) = IT_STRING_BYTEPOS (*it
) = 0;
4326 it
->end_charpos
= it
->string_nchars
= SCHARS (it
->string
);
4327 it
->method
= GET_FROM_STRING
;
4328 it
->stop_charpos
= 0;
4329 it
->string_from_display_prop_p
= 1;
4330 /* Say that we haven't consumed the characters with
4331 `display' property yet. The call to pop_it in
4332 set_iterator_to_next will clean this up. */
4333 if (BUFFERP (object
))
4334 it
->current
.pos
= start_pos
;
4336 else if (CONSP (value
) && EQ (XCAR (value
), Qspace
))
4338 it
->method
= GET_FROM_STRETCH
;
4340 it
->position
= start_pos
;
4341 if (BUFFERP (object
))
4342 it
->current
.pos
= start_pos
;
4344 #ifdef HAVE_WINDOW_SYSTEM
4347 it
->what
= IT_IMAGE
;
4348 it
->image_id
= lookup_image (it
->f
, value
);
4349 it
->position
= start_pos
;
4350 it
->object
= NILP (object
) ? it
->w
->buffer
: object
;
4351 it
->method
= GET_FROM_IMAGE
;
4353 /* Say that we haven't consumed the characters with
4354 `display' property yet. The call to pop_it in
4355 set_iterator_to_next will clean this up. */
4356 if (BUFFERP (object
))
4357 it
->current
.pos
= start_pos
;
4359 #endif /* HAVE_WINDOW_SYSTEM */
4364 /* Invalid property or property not supported. Restore
4365 POSITION to what it was before. */
4366 *position
= start_pos
;
4371 /* Check if SPEC is a display sub-property value whose text should be
4372 treated as intangible. */
4375 single_display_spec_intangible_p (prop
)
4378 /* Skip over `when FORM'. */
4379 if (CONSP (prop
) && EQ (XCAR (prop
), Qwhen
))
4393 /* Skip over `margin LOCATION'. If LOCATION is in the margins,
4394 we don't need to treat text as intangible. */
4395 if (EQ (XCAR (prop
), Qmargin
))
4403 || EQ (XCAR (prop
), Qleft_margin
)
4404 || EQ (XCAR (prop
), Qright_margin
))
4408 return (CONSP (prop
)
4409 && (EQ (XCAR (prop
), Qimage
)
4410 || EQ (XCAR (prop
), Qspace
)));
4414 /* Check if PROP is a display property value whose text should be
4415 treated as intangible. */
4418 display_prop_intangible_p (prop
)
4422 && CONSP (XCAR (prop
))
4423 && !EQ (Qmargin
, XCAR (XCAR (prop
))))
4425 /* A list of sub-properties. */
4426 while (CONSP (prop
))
4428 if (single_display_spec_intangible_p (XCAR (prop
)))
4433 else if (VECTORP (prop
))
4435 /* A vector of sub-properties. */
4437 for (i
= 0; i
< ASIZE (prop
); ++i
)
4438 if (single_display_spec_intangible_p (AREF (prop
, i
)))
4442 return single_display_spec_intangible_p (prop
);
4448 /* Return 1 if PROP is a display sub-property value containing STRING. */
4451 single_display_spec_string_p (prop
, string
)
4452 Lisp_Object prop
, string
;
4454 if (EQ (string
, prop
))
4457 /* Skip over `when FORM'. */
4458 if (CONSP (prop
) && EQ (XCAR (prop
), Qwhen
))
4467 /* Skip over `margin LOCATION'. */
4468 if (EQ (XCAR (prop
), Qmargin
))
4479 return CONSP (prop
) && EQ (XCAR (prop
), string
);
4483 /* Return 1 if STRING appears in the `display' property PROP. */
4486 display_prop_string_p (prop
, string
)
4487 Lisp_Object prop
, string
;
4490 && CONSP (XCAR (prop
))
4491 && !EQ (Qmargin
, XCAR (XCAR (prop
))))
4493 /* A list of sub-properties. */
4494 while (CONSP (prop
))
4496 if (single_display_spec_string_p (XCAR (prop
), string
))
4501 else if (VECTORP (prop
))
4503 /* A vector of sub-properties. */
4505 for (i
= 0; i
< ASIZE (prop
); ++i
)
4506 if (single_display_spec_string_p (AREF (prop
, i
), string
))
4510 return single_display_spec_string_p (prop
, string
);
4516 /* Determine from which buffer position in W's buffer STRING comes
4517 from. AROUND_CHARPOS is an approximate position where it could
4518 be from. Value is the buffer position or 0 if it couldn't be
4521 W's buffer must be current.
4523 This function is necessary because we don't record buffer positions
4524 in glyphs generated from strings (to keep struct glyph small).
4525 This function may only use code that doesn't eval because it is
4526 called asynchronously from note_mouse_highlight. */
4529 string_buffer_position (w
, string
, around_charpos
)
4534 Lisp_Object limit
, prop
, pos
;
4535 const int MAX_DISTANCE
= 1000;
4538 pos
= make_number (around_charpos
);
4539 limit
= make_number (min (XINT (pos
) + MAX_DISTANCE
, ZV
));
4540 while (!found
&& !EQ (pos
, limit
))
4542 prop
= Fget_char_property (pos
, Qdisplay
, Qnil
);
4543 if (!NILP (prop
) && display_prop_string_p (prop
, string
))
4546 pos
= Fnext_single_char_property_change (pos
, Qdisplay
, Qnil
, limit
);
4551 pos
= make_number (around_charpos
);
4552 limit
= make_number (max (XINT (pos
) - MAX_DISTANCE
, BEGV
));
4553 while (!found
&& !EQ (pos
, limit
))
4555 prop
= Fget_char_property (pos
, Qdisplay
, Qnil
);
4556 if (!NILP (prop
) && display_prop_string_p (prop
, string
))
4559 pos
= Fprevious_single_char_property_change (pos
, Qdisplay
, Qnil
,
4564 return found
? XINT (pos
) : 0;
4569 /***********************************************************************
4570 `composition' property
4571 ***********************************************************************/
4573 static enum prop_handled
4574 handle_auto_composed_prop (it
)
4577 enum prop_handled handled
= HANDLED_NORMALLY
;
4579 if (FUNCTIONP (Vauto_composition_function
))
4581 Lisp_Object val
= Qnil
;
4582 EMACS_INT pos
, limit
= -1;
4584 if (STRINGP (it
->string
))
4585 pos
= IT_STRING_CHARPOS (*it
);
4587 pos
= IT_CHARPOS (*it
);
4589 val
= Fget_text_property (make_number (pos
), Qauto_composed
, it
->string
);
4592 Lisp_Object cmp_prop
;
4593 EMACS_INT cmp_start
, cmp_end
;
4595 #ifdef USE_FONT_BACKEND
4596 if (enable_font_backend
4597 && get_property_and_range (pos
, Qcomposition
, &cmp_prop
,
4598 &cmp_start
, &cmp_end
, it
->string
)
4600 && COMPOSITION_METHOD (cmp_prop
) == COMPOSITION_WITH_GLYPH_STRING
)
4602 Lisp_Object gstring
= COMPOSITION_COMPONENTS (cmp_prop
);
4603 Lisp_Object font_object
= LGSTRING_FONT (gstring
);
4605 if (! EQ (font_object
,
4606 font_at (-1, pos
, FACE_FROM_ID (it
->f
, it
->face_id
),
4607 it
->w
, it
->string
)))
4608 /* We must re-compute the composition for the
4617 /* As Fnext_single_char_property_change is very slow, we
4618 limit the search to the current line. */
4619 if (STRINGP (it
->string
))
4620 limit
= SCHARS (it
->string
);
4622 limit
= find_next_newline_no_quit (pos
, 1);
4623 end
= Fnext_single_char_property_change (make_number (pos
),
4626 make_number (limit
));
4628 if (XINT (end
) < limit
)
4629 /* The current point is auto-composed, but there exist
4630 characters not yet composed beyond the
4631 auto-composed region. There's a possiblity that
4632 the last characters in the region may be newly
4637 if (NILP (val
) && ! STRINGP (it
->string
))
4640 limit
= (STRINGP (it
->string
) ? SCHARS (it
->string
)
4641 : find_next_newline_no_quit (pos
, 1));
4644 int count
= SPECPDL_INDEX ();
4645 Lisp_Object args
[5];
4647 args
[0] = Vauto_composition_function
;
4648 specbind (Qauto_composition_function
, Qnil
);
4649 args
[1] = make_number (pos
);
4650 args
[2] = make_number (limit
);
4651 #ifdef USE_FONT_BACKEND
4652 if (enable_font_backend
)
4653 args
[3] = it
->window
;
4655 #endif /* USE_FONT_BACKEND */
4657 args
[4] = it
->string
;
4658 safe_call (5, args
);
4659 unbind_to (count
, Qnil
);
4667 /* Set up iterator IT from `composition' property at its current
4668 position. Called from handle_stop. */
4670 static enum prop_handled
4671 handle_composition_prop (it
)
4674 Lisp_Object prop
, string
;
4675 EMACS_INT pos
, pos_byte
, start
, end
;
4676 enum prop_handled handled
= HANDLED_NORMALLY
;
4678 if (STRINGP (it
->string
))
4682 pos
= IT_STRING_CHARPOS (*it
);
4683 pos_byte
= IT_STRING_BYTEPOS (*it
);
4684 string
= it
->string
;
4685 s
= SDATA (string
) + pos_byte
;
4686 it
->c
= STRING_CHAR (s
, 0);
4690 pos
= IT_CHARPOS (*it
);
4691 pos_byte
= IT_BYTEPOS (*it
);
4693 it
->c
= FETCH_CHAR (pos_byte
);
4696 /* If there's a valid composition and point is not inside of the
4697 composition (in the case that the composition is from the current
4698 buffer), draw a glyph composed from the composition components. */
4699 if (find_composition (pos
, -1, &start
, &end
, &prop
, string
)
4700 && COMPOSITION_VALID_P (start
, end
, prop
)
4701 && (STRINGP (it
->string
) || (PT
<= start
|| PT
>= end
)))
4707 if (STRINGP (it
->string
))
4708 pos_byte
= string_char_to_byte (it
->string
, start
);
4710 pos_byte
= CHAR_TO_BYTE (start
);
4712 id
= get_composition_id (start
, pos_byte
, end
- start
, prop
, string
);
4716 struct composition
*cmp
= composition_table
[id
];
4718 if (cmp
->glyph_len
== 0)
4721 if (STRINGP (it
->string
))
4723 IT_STRING_CHARPOS (*it
) = end
;
4724 IT_STRING_BYTEPOS (*it
) = string_char_to_byte (it
->string
,
4729 IT_CHARPOS (*it
) = end
;
4730 IT_BYTEPOS (*it
) = CHAR_TO_BYTE (end
);
4732 return HANDLED_RECOMPUTE_PROPS
;
4735 it
->stop_charpos
= end
;
4738 it
->method
= GET_FROM_COMPOSITION
;
4740 it
->cmp_len
= COMPOSITION_LENGTH (prop
);
4741 /* For a terminal, draw only the first (non-TAB) character
4742 of the components. */
4743 #ifdef USE_FONT_BACKEND
4744 if (composition_table
[id
]->method
== COMPOSITION_WITH_GLYPH_STRING
)
4746 /* FIXME: This doesn't do anything!?! */
4747 Lisp_Object lgstring
= AREF (XHASH_TABLE (composition_hash_table
)
4749 cmp
->hash_index
* 2);
4752 #endif /* USE_FONT_BACKEND */
4756 for (i
= 0; i
< cmp
->glyph_len
; i
++)
4757 if ((it
->c
= COMPOSITION_GLYPH (composition_table
[id
], i
))
4763 it
->len
= (STRINGP (it
->string
)
4764 ? string_char_to_byte (it
->string
, end
)
4765 : CHAR_TO_BYTE (end
)) - pos_byte
;
4766 handled
= HANDLED_RETURN
;
4775 /***********************************************************************
4777 ***********************************************************************/
4779 /* The following structure is used to record overlay strings for
4780 later sorting in load_overlay_strings. */
4782 struct overlay_entry
4784 Lisp_Object overlay
;
4791 /* Set up iterator IT from overlay strings at its current position.
4792 Called from handle_stop. */
4794 static enum prop_handled
4795 handle_overlay_change (it
)
4798 if (!STRINGP (it
->string
) && get_overlay_strings (it
, 0))
4799 return HANDLED_RECOMPUTE_PROPS
;
4801 return HANDLED_NORMALLY
;
4805 /* Set up the next overlay string for delivery by IT, if there is an
4806 overlay string to deliver. Called by set_iterator_to_next when the
4807 end of the current overlay string is reached. If there are more
4808 overlay strings to display, IT->string and
4809 IT->current.overlay_string_index are set appropriately here.
4810 Otherwise IT->string is set to nil. */
4813 next_overlay_string (it
)
4816 ++it
->current
.overlay_string_index
;
4817 if (it
->current
.overlay_string_index
== it
->n_overlay_strings
)
4819 /* No more overlay strings. Restore IT's settings to what
4820 they were before overlay strings were processed, and
4821 continue to deliver from current_buffer. */
4822 int display_ellipsis_p
= it
->stack
[it
->sp
- 1].display_ellipsis_p
;
4826 || it
->method
== GET_FROM_COMPOSITION
4827 || (NILP (it
->string
)
4828 && it
->method
== GET_FROM_BUFFER
4829 && it
->stop_charpos
>= BEGV
4830 && it
->stop_charpos
<= it
->end_charpos
));
4831 it
->current
.overlay_string_index
= -1;
4832 it
->n_overlay_strings
= 0;
4834 /* If we're at the end of the buffer, record that we have
4835 processed the overlay strings there already, so that
4836 next_element_from_buffer doesn't try it again. */
4837 if (NILP (it
->string
) && IT_CHARPOS (*it
) >= it
->end_charpos
)
4838 it
->overlay_strings_at_end_processed_p
= 1;
4840 /* If we have to display `...' for invisible text, set
4841 the iterator up for that. */
4842 if (display_ellipsis_p
)
4843 setup_for_ellipsis (it
, 0);
4847 /* There are more overlay strings to process. If
4848 IT->current.overlay_string_index has advanced to a position
4849 where we must load IT->overlay_strings with more strings, do
4851 int i
= it
->current
.overlay_string_index
% OVERLAY_STRING_CHUNK_SIZE
;
4853 if (it
->current
.overlay_string_index
&& i
== 0)
4854 load_overlay_strings (it
, 0);
4856 /* Initialize IT to deliver display elements from the overlay
4858 it
->string
= it
->overlay_strings
[i
];
4859 it
->multibyte_p
= STRING_MULTIBYTE (it
->string
);
4860 SET_TEXT_POS (it
->current
.string_pos
, 0, 0);
4861 it
->method
= GET_FROM_STRING
;
4862 it
->stop_charpos
= 0;
4869 /* Compare two overlay_entry structures E1 and E2. Used as a
4870 comparison function for qsort in load_overlay_strings. Overlay
4871 strings for the same position are sorted so that
4873 1. All after-strings come in front of before-strings, except
4874 when they come from the same overlay.
4876 2. Within after-strings, strings are sorted so that overlay strings
4877 from overlays with higher priorities come first.
4879 2. Within before-strings, strings are sorted so that overlay
4880 strings from overlays with higher priorities come last.
4882 Value is analogous to strcmp. */
4886 compare_overlay_entries (e1
, e2
)
4889 struct overlay_entry
*entry1
= (struct overlay_entry
*) e1
;
4890 struct overlay_entry
*entry2
= (struct overlay_entry
*) e2
;
4893 if (entry1
->after_string_p
!= entry2
->after_string_p
)
4895 /* Let after-strings appear in front of before-strings if
4896 they come from different overlays. */
4897 if (EQ (entry1
->overlay
, entry2
->overlay
))
4898 result
= entry1
->after_string_p
? 1 : -1;
4900 result
= entry1
->after_string_p
? -1 : 1;
4902 else if (entry1
->after_string_p
)
4903 /* After-strings sorted in order of decreasing priority. */
4904 result
= entry2
->priority
- entry1
->priority
;
4906 /* Before-strings sorted in order of increasing priority. */
4907 result
= entry1
->priority
- entry2
->priority
;
4913 /* Load the vector IT->overlay_strings with overlay strings from IT's
4914 current buffer position, or from CHARPOS if that is > 0. Set
4915 IT->n_overlays to the total number of overlay strings found.
4917 Overlay strings are processed OVERLAY_STRING_CHUNK_SIZE strings at
4918 a time. On entry into load_overlay_strings,
4919 IT->current.overlay_string_index gives the number of overlay
4920 strings that have already been loaded by previous calls to this
4923 IT->add_overlay_start contains an additional overlay start
4924 position to consider for taking overlay strings from, if non-zero.
4925 This position comes into play when the overlay has an `invisible'
4926 property, and both before and after-strings. When we've skipped to
4927 the end of the overlay, because of its `invisible' property, we
4928 nevertheless want its before-string to appear.
4929 IT->add_overlay_start will contain the overlay start position
4932 Overlay strings are sorted so that after-string strings come in
4933 front of before-string strings. Within before and after-strings,
4934 strings are sorted by overlay priority. See also function
4935 compare_overlay_entries. */
4938 load_overlay_strings (it
, charpos
)
4942 extern Lisp_Object Qafter_string
, Qbefore_string
, Qwindow
, Qpriority
;
4943 Lisp_Object overlay
, window
, str
, invisible
;
4944 struct Lisp_Overlay
*ov
;
4947 int n
= 0, i
, j
, invis_p
;
4948 struct overlay_entry
*entries
4949 = (struct overlay_entry
*) alloca (size
* sizeof *entries
);
4952 charpos
= IT_CHARPOS (*it
);
4954 /* Append the overlay string STRING of overlay OVERLAY to vector
4955 `entries' which has size `size' and currently contains `n'
4956 elements. AFTER_P non-zero means STRING is an after-string of
4958 #define RECORD_OVERLAY_STRING(OVERLAY, STRING, AFTER_P) \
4961 Lisp_Object priority; \
4965 int new_size = 2 * size; \
4966 struct overlay_entry *old = entries; \
4968 (struct overlay_entry *) alloca (new_size \
4969 * sizeof *entries); \
4970 bcopy (old, entries, size * sizeof *entries); \
4974 entries[n].string = (STRING); \
4975 entries[n].overlay = (OVERLAY); \
4976 priority = Foverlay_get ((OVERLAY), Qpriority); \
4977 entries[n].priority = INTEGERP (priority) ? XINT (priority) : 0; \
4978 entries[n].after_string_p = (AFTER_P); \
4983 /* Process overlay before the overlay center. */
4984 for (ov
= current_buffer
->overlays_before
; ov
; ov
= ov
->next
)
4986 XSETMISC (overlay
, ov
);
4987 xassert (OVERLAYP (overlay
));
4988 start
= OVERLAY_POSITION (OVERLAY_START (overlay
));
4989 end
= OVERLAY_POSITION (OVERLAY_END (overlay
));
4994 /* Skip this overlay if it doesn't start or end at IT's current
4996 if (end
!= charpos
&& start
!= charpos
)
4999 /* Skip this overlay if it doesn't apply to IT->w. */
5000 window
= Foverlay_get (overlay
, Qwindow
);
5001 if (WINDOWP (window
) && XWINDOW (window
) != it
->w
)
5004 /* If the text ``under'' the overlay is invisible, both before-
5005 and after-strings from this overlay are visible; start and
5006 end position are indistinguishable. */
5007 invisible
= Foverlay_get (overlay
, Qinvisible
);
5008 invis_p
= TEXT_PROP_MEANS_INVISIBLE (invisible
);
5010 /* If overlay has a non-empty before-string, record it. */
5011 if ((start
== charpos
|| (end
== charpos
&& invis_p
))
5012 && (str
= Foverlay_get (overlay
, Qbefore_string
), STRINGP (str
))
5014 RECORD_OVERLAY_STRING (overlay
, str
, 0);
5016 /* If overlay has a non-empty after-string, record it. */
5017 if ((end
== charpos
|| (start
== charpos
&& invis_p
))
5018 && (str
= Foverlay_get (overlay
, Qafter_string
), STRINGP (str
))
5020 RECORD_OVERLAY_STRING (overlay
, str
, 1);
5023 /* Process overlays after the overlay center. */
5024 for (ov
= current_buffer
->overlays_after
; ov
; ov
= ov
->next
)
5026 XSETMISC (overlay
, ov
);
5027 xassert (OVERLAYP (overlay
));
5028 start
= OVERLAY_POSITION (OVERLAY_START (overlay
));
5029 end
= OVERLAY_POSITION (OVERLAY_END (overlay
));
5031 if (start
> charpos
)
5034 /* Skip this overlay if it doesn't start or end at IT's current
5036 if (end
!= charpos
&& start
!= charpos
)
5039 /* Skip this overlay if it doesn't apply to IT->w. */
5040 window
= Foverlay_get (overlay
, Qwindow
);
5041 if (WINDOWP (window
) && XWINDOW (window
) != it
->w
)
5044 /* If the text ``under'' the overlay is invisible, it has a zero
5045 dimension, and both before- and after-strings apply. */
5046 invisible
= Foverlay_get (overlay
, Qinvisible
);
5047 invis_p
= TEXT_PROP_MEANS_INVISIBLE (invisible
);
5049 /* If overlay has a non-empty before-string, record it. */
5050 if ((start
== charpos
|| (end
== charpos
&& invis_p
))
5051 && (str
= Foverlay_get (overlay
, Qbefore_string
), STRINGP (str
))
5053 RECORD_OVERLAY_STRING (overlay
, str
, 0);
5055 /* If overlay has a non-empty after-string, record it. */
5056 if ((end
== charpos
|| (start
== charpos
&& invis_p
))
5057 && (str
= Foverlay_get (overlay
, Qafter_string
), STRINGP (str
))
5059 RECORD_OVERLAY_STRING (overlay
, str
, 1);
5062 #undef RECORD_OVERLAY_STRING
5066 qsort (entries
, n
, sizeof *entries
, compare_overlay_entries
);
5068 /* Record the total number of strings to process. */
5069 it
->n_overlay_strings
= n
;
5071 /* IT->current.overlay_string_index is the number of overlay strings
5072 that have already been consumed by IT. Copy some of the
5073 remaining overlay strings to IT->overlay_strings. */
5075 j
= it
->current
.overlay_string_index
;
5076 while (i
< OVERLAY_STRING_CHUNK_SIZE
&& j
< n
)
5078 it
->overlay_strings
[i
] = entries
[j
].string
;
5079 it
->string_overlays
[i
++] = entries
[j
++].overlay
;
5086 /* Get the first chunk of overlay strings at IT's current buffer
5087 position, or at CHARPOS if that is > 0. Value is non-zero if at
5088 least one overlay string was found. */
5091 get_overlay_strings_1 (it
, charpos
, compute_stop_p
)
5096 /* Get the first OVERLAY_STRING_CHUNK_SIZE overlay strings to
5097 process. This fills IT->overlay_strings with strings, and sets
5098 IT->n_overlay_strings to the total number of strings to process.
5099 IT->pos.overlay_string_index has to be set temporarily to zero
5100 because load_overlay_strings needs this; it must be set to -1
5101 when no overlay strings are found because a zero value would
5102 indicate a position in the first overlay string. */
5103 it
->current
.overlay_string_index
= 0;
5104 load_overlay_strings (it
, charpos
);
5106 /* If we found overlay strings, set up IT to deliver display
5107 elements from the first one. Otherwise set up IT to deliver
5108 from current_buffer. */
5109 if (it
->n_overlay_strings
)
5111 /* Make sure we know settings in current_buffer, so that we can
5112 restore meaningful values when we're done with the overlay
5115 compute_stop_pos (it
);
5116 xassert (it
->face_id
>= 0);
5118 /* Save IT's settings. They are restored after all overlay
5119 strings have been processed. */
5120 xassert (!compute_stop_p
|| it
->sp
== 0);
5123 /* Set up IT to deliver display elements from the first overlay
5125 IT_STRING_CHARPOS (*it
) = IT_STRING_BYTEPOS (*it
) = 0;
5126 it
->string
= it
->overlay_strings
[0];
5127 it
->from_overlay
= Qnil
;
5128 it
->stop_charpos
= 0;
5129 xassert (STRINGP (it
->string
));
5130 it
->end_charpos
= SCHARS (it
->string
);
5131 it
->multibyte_p
= STRING_MULTIBYTE (it
->string
);
5132 it
->method
= GET_FROM_STRING
;
5136 it
->current
.overlay_string_index
= -1;
5141 get_overlay_strings (it
, charpos
)
5146 it
->method
= GET_FROM_BUFFER
;
5148 (void) get_overlay_strings_1 (it
, charpos
, 1);
5152 /* Value is non-zero if we found at least one overlay string. */
5153 return STRINGP (it
->string
);
5158 /***********************************************************************
5159 Saving and restoring state
5160 ***********************************************************************/
5162 /* Save current settings of IT on IT->stack. Called, for example,
5163 before setting up IT for an overlay string, to be able to restore
5164 IT's settings to what they were after the overlay string has been
5171 struct iterator_stack_entry
*p
;
5173 xassert (it
->sp
< IT_STACK_SIZE
);
5174 p
= it
->stack
+ it
->sp
;
5176 p
->stop_charpos
= it
->stop_charpos
;
5177 xassert (it
->face_id
>= 0);
5178 p
->face_id
= it
->face_id
;
5179 p
->string
= it
->string
;
5180 p
->method
= it
->method
;
5181 p
->from_overlay
= it
->from_overlay
;
5184 case GET_FROM_IMAGE
:
5185 p
->u
.image
.object
= it
->object
;
5186 p
->u
.image
.image_id
= it
->image_id
;
5187 p
->u
.image
.slice
= it
->slice
;
5189 case GET_FROM_COMPOSITION
:
5190 p
->u
.comp
.object
= it
->object
;
5191 p
->u
.comp
.c
= it
->c
;
5192 p
->u
.comp
.len
= it
->len
;
5193 p
->u
.comp
.cmp_id
= it
->cmp_id
;
5194 p
->u
.comp
.cmp_len
= it
->cmp_len
;
5196 case GET_FROM_STRETCH
:
5197 p
->u
.stretch
.object
= it
->object
;
5200 p
->position
= it
->position
;
5201 p
->current
= it
->current
;
5202 p
->end_charpos
= it
->end_charpos
;
5203 p
->string_nchars
= it
->string_nchars
;
5205 p
->multibyte_p
= it
->multibyte_p
;
5206 p
->space_width
= it
->space_width
;
5207 p
->font_height
= it
->font_height
;
5208 p
->voffset
= it
->voffset
;
5209 p
->string_from_display_prop_p
= it
->string_from_display_prop_p
;
5210 p
->display_ellipsis_p
= 0;
5215 /* Restore IT's settings from IT->stack. Called, for example, when no
5216 more overlay strings must be processed, and we return to delivering
5217 display elements from a buffer, or when the end of a string from a
5218 `display' property is reached and we return to delivering display
5219 elements from an overlay string, or from a buffer. */
5225 struct iterator_stack_entry
*p
;
5227 xassert (it
->sp
> 0);
5229 p
= it
->stack
+ it
->sp
;
5230 it
->stop_charpos
= p
->stop_charpos
;
5231 it
->face_id
= p
->face_id
;
5232 it
->current
= p
->current
;
5233 it
->position
= p
->position
;
5234 it
->string
= p
->string
;
5235 it
->from_overlay
= p
->from_overlay
;
5236 if (NILP (it
->string
))
5237 SET_TEXT_POS (it
->current
.string_pos
, -1, -1);
5238 it
->method
= p
->method
;
5241 case GET_FROM_IMAGE
:
5242 it
->image_id
= p
->u
.image
.image_id
;
5243 it
->object
= p
->u
.image
.object
;
5244 it
->slice
= p
->u
.image
.slice
;
5246 case GET_FROM_COMPOSITION
:
5247 it
->object
= p
->u
.comp
.object
;
5248 it
->c
= p
->u
.comp
.c
;
5249 it
->len
= p
->u
.comp
.len
;
5250 it
->cmp_id
= p
->u
.comp
.cmp_id
;
5251 it
->cmp_len
= p
->u
.comp
.cmp_len
;
5253 case GET_FROM_STRETCH
:
5254 it
->object
= p
->u
.comp
.object
;
5256 case GET_FROM_BUFFER
:
5257 it
->object
= it
->w
->buffer
;
5259 case GET_FROM_STRING
:
5260 it
->object
= it
->string
;
5263 it
->end_charpos
= p
->end_charpos
;
5264 it
->string_nchars
= p
->string_nchars
;
5266 it
->multibyte_p
= p
->multibyte_p
;
5267 it
->space_width
= p
->space_width
;
5268 it
->font_height
= p
->font_height
;
5269 it
->voffset
= p
->voffset
;
5270 it
->string_from_display_prop_p
= p
->string_from_display_prop_p
;
5275 /***********************************************************************
5277 ***********************************************************************/
5279 /* Set IT's current position to the previous line start. */
5282 back_to_previous_line_start (it
)
5285 IT_CHARPOS (*it
) = find_next_newline_no_quit (IT_CHARPOS (*it
) - 1, -1);
5286 IT_BYTEPOS (*it
) = CHAR_TO_BYTE (IT_CHARPOS (*it
));
5290 /* Move IT to the next line start.
5292 Value is non-zero if a newline was found. Set *SKIPPED_P to 1 if
5293 we skipped over part of the text (as opposed to moving the iterator
5294 continuously over the text). Otherwise, don't change the value
5297 Newlines may come from buffer text, overlay strings, or strings
5298 displayed via the `display' property. That's the reason we can't
5299 simply use find_next_newline_no_quit.
5301 Note that this function may not skip over invisible text that is so
5302 because of text properties and immediately follows a newline. If
5303 it would, function reseat_at_next_visible_line_start, when called
5304 from set_iterator_to_next, would effectively make invisible
5305 characters following a newline part of the wrong glyph row, which
5306 leads to wrong cursor motion. */
5309 forward_to_next_line_start (it
, skipped_p
)
5313 int old_selective
, newline_found_p
, n
;
5314 const int MAX_NEWLINE_DISTANCE
= 500;
5316 /* If already on a newline, just consume it to avoid unintended
5317 skipping over invisible text below. */
5318 if (it
->what
== IT_CHARACTER
5320 && CHARPOS (it
->position
) == IT_CHARPOS (*it
))
5322 set_iterator_to_next (it
, 0);
5327 /* Don't handle selective display in the following. It's (a)
5328 unnecessary because it's done by the caller, and (b) leads to an
5329 infinite recursion because next_element_from_ellipsis indirectly
5330 calls this function. */
5331 old_selective
= it
->selective
;
5334 /* Scan for a newline within MAX_NEWLINE_DISTANCE display elements
5335 from buffer text. */
5336 for (n
= newline_found_p
= 0;
5337 !newline_found_p
&& n
< MAX_NEWLINE_DISTANCE
;
5338 n
+= STRINGP (it
->string
) ? 0 : 1)
5340 if (!get_next_display_element (it
))
5342 newline_found_p
= it
->what
== IT_CHARACTER
&& it
->c
== '\n';
5343 set_iterator_to_next (it
, 0);
5346 /* If we didn't find a newline near enough, see if we can use a
5348 if (!newline_found_p
)
5350 int start
= IT_CHARPOS (*it
);
5351 int limit
= find_next_newline_no_quit (start
, 1);
5354 xassert (!STRINGP (it
->string
));
5356 /* If there isn't any `display' property in sight, and no
5357 overlays, we can just use the position of the newline in
5359 if (it
->stop_charpos
>= limit
5360 || ((pos
= Fnext_single_property_change (make_number (start
),
5362 Qnil
, make_number (limit
)),
5364 && next_overlay_change (start
) == ZV
))
5366 IT_CHARPOS (*it
) = limit
;
5367 IT_BYTEPOS (*it
) = CHAR_TO_BYTE (limit
);
5368 *skipped_p
= newline_found_p
= 1;
5372 while (get_next_display_element (it
)
5373 && !newline_found_p
)
5375 newline_found_p
= ITERATOR_AT_END_OF_LINE_P (it
);
5376 set_iterator_to_next (it
, 0);
5381 it
->selective
= old_selective
;
5382 return newline_found_p
;
5386 /* Set IT's current position to the previous visible line start. Skip
5387 invisible text that is so either due to text properties or due to
5388 selective display. Caution: this does not change IT->current_x and
5392 back_to_previous_visible_line_start (it
)
5395 while (IT_CHARPOS (*it
) > BEGV
)
5397 back_to_previous_line_start (it
);
5399 if (IT_CHARPOS (*it
) <= BEGV
)
5402 /* If selective > 0, then lines indented more than that values
5404 if (it
->selective
> 0
5405 && indented_beyond_p (IT_CHARPOS (*it
), IT_BYTEPOS (*it
),
5406 (double) it
->selective
)) /* iftc */
5409 /* Check the newline before point for invisibility. */
5412 prop
= Fget_char_property (make_number (IT_CHARPOS (*it
) - 1),
5413 Qinvisible
, it
->window
);
5414 if (TEXT_PROP_MEANS_INVISIBLE (prop
))
5418 if (IT_CHARPOS (*it
) <= BEGV
)
5425 Lisp_Object val
, overlay
;
5427 /* If newline is part of a composition, continue from start of composition */
5428 if (find_composition (IT_CHARPOS (*it
), -1, &beg
, &end
, &val
, Qnil
)
5429 && beg
< IT_CHARPOS (*it
))
5432 /* If newline is replaced by a display property, find start of overlay
5433 or interval and continue search from that point. */
5435 pos
= --IT_CHARPOS (it2
);
5438 if (handle_display_prop (&it2
) == HANDLED_RETURN
5439 && !NILP (val
= get_char_property_and_overlay
5440 (make_number (pos
), Qdisplay
, Qnil
, &overlay
))
5441 && (OVERLAYP (overlay
)
5442 ? (beg
= OVERLAY_POSITION (OVERLAY_START (overlay
)))
5443 : get_property_and_range (pos
, Qdisplay
, &val
, &beg
, &end
, Qnil
)))
5446 /* Newline is not replaced by anything -- so we are done. */
5452 IT_CHARPOS (*it
) = beg
;
5453 IT_BYTEPOS (*it
) = buf_charpos_to_bytepos (current_buffer
, beg
);
5457 it
->continuation_lines_width
= 0;
5459 xassert (IT_CHARPOS (*it
) >= BEGV
);
5460 xassert (IT_CHARPOS (*it
) == BEGV
5461 || FETCH_BYTE (IT_BYTEPOS (*it
) - 1) == '\n');
5466 /* Reseat iterator IT at the previous visible line start. Skip
5467 invisible text that is so either due to text properties or due to
5468 selective display. At the end, update IT's overlay information,
5469 face information etc. */
5472 reseat_at_previous_visible_line_start (it
)
5475 back_to_previous_visible_line_start (it
);
5476 reseat (it
, it
->current
.pos
, 1);
5481 /* Reseat iterator IT on the next visible line start in the current
5482 buffer. ON_NEWLINE_P non-zero means position IT on the newline
5483 preceding the line start. Skip over invisible text that is so
5484 because of selective display. Compute faces, overlays etc at the
5485 new position. Note that this function does not skip over text that
5486 is invisible because of text properties. */
5489 reseat_at_next_visible_line_start (it
, on_newline_p
)
5493 int newline_found_p
, skipped_p
= 0;
5495 newline_found_p
= forward_to_next_line_start (it
, &skipped_p
);
5497 /* Skip over lines that are invisible because they are indented
5498 more than the value of IT->selective. */
5499 if (it
->selective
> 0)
5500 while (IT_CHARPOS (*it
) < ZV
5501 && indented_beyond_p (IT_CHARPOS (*it
), IT_BYTEPOS (*it
),
5502 (double) it
->selective
)) /* iftc */
5504 xassert (IT_BYTEPOS (*it
) == BEGV
5505 || FETCH_BYTE (IT_BYTEPOS (*it
) - 1) == '\n');
5506 newline_found_p
= forward_to_next_line_start (it
, &skipped_p
);
5509 /* Position on the newline if that's what's requested. */
5510 if (on_newline_p
&& newline_found_p
)
5512 if (STRINGP (it
->string
))
5514 if (IT_STRING_CHARPOS (*it
) > 0)
5516 --IT_STRING_CHARPOS (*it
);
5517 --IT_STRING_BYTEPOS (*it
);
5520 else if (IT_CHARPOS (*it
) > BEGV
)
5524 reseat (it
, it
->current
.pos
, 0);
5528 reseat (it
, it
->current
.pos
, 0);
5535 /***********************************************************************
5536 Changing an iterator's position
5537 ***********************************************************************/
5539 /* Change IT's current position to POS in current_buffer. If FORCE_P
5540 is non-zero, always check for text properties at the new position.
5541 Otherwise, text properties are only looked up if POS >=
5542 IT->check_charpos of a property. */
5545 reseat (it
, pos
, force_p
)
5547 struct text_pos pos
;
5550 int original_pos
= IT_CHARPOS (*it
);
5552 reseat_1 (it
, pos
, 0);
5554 /* Determine where to check text properties. Avoid doing it
5555 where possible because text property lookup is very expensive. */
5557 || CHARPOS (pos
) > it
->stop_charpos
5558 || CHARPOS (pos
) < original_pos
)
5565 /* Change IT's buffer position to POS. SET_STOP_P non-zero means set
5566 IT->stop_pos to POS, also. */
5569 reseat_1 (it
, pos
, set_stop_p
)
5571 struct text_pos pos
;
5574 /* Don't call this function when scanning a C string. */
5575 xassert (it
->s
== NULL
);
5577 /* POS must be a reasonable value. */
5578 xassert (CHARPOS (pos
) >= BEGV
&& CHARPOS (pos
) <= ZV
);
5580 it
->current
.pos
= it
->position
= pos
;
5581 it
->end_charpos
= ZV
;
5583 it
->current
.dpvec_index
= -1;
5584 it
->current
.overlay_string_index
= -1;
5585 IT_STRING_CHARPOS (*it
) = -1;
5586 IT_STRING_BYTEPOS (*it
) = -1;
5588 it
->method
= GET_FROM_BUFFER
;
5589 it
->object
= it
->w
->buffer
;
5590 it
->area
= TEXT_AREA
;
5591 it
->multibyte_p
= !NILP (current_buffer
->enable_multibyte_characters
);
5593 it
->string_from_display_prop_p
= 0;
5594 it
->face_before_selective_p
= 0;
5597 it
->stop_charpos
= CHARPOS (pos
);
5601 /* Set up IT for displaying a string, starting at CHARPOS in window W.
5602 If S is non-null, it is a C string to iterate over. Otherwise,
5603 STRING gives a Lisp string to iterate over.
5605 If PRECISION > 0, don't return more then PRECISION number of
5606 characters from the string.
5608 If FIELD_WIDTH > 0, return padding spaces until FIELD_WIDTH
5609 characters have been returned. FIELD_WIDTH < 0 means an infinite
5612 MULTIBYTE = 0 means disable processing of multibyte characters,
5613 MULTIBYTE > 0 means enable it,
5614 MULTIBYTE < 0 means use IT->multibyte_p.
5616 IT must be initialized via a prior call to init_iterator before
5617 calling this function. */
5620 reseat_to_string (it
, s
, string
, charpos
, precision
, field_width
, multibyte
)
5625 int precision
, field_width
, multibyte
;
5627 /* No region in strings. */
5628 it
->region_beg_charpos
= it
->region_end_charpos
= -1;
5630 /* No text property checks performed by default, but see below. */
5631 it
->stop_charpos
= -1;
5633 /* Set iterator position and end position. */
5634 bzero (&it
->current
, sizeof it
->current
);
5635 it
->current
.overlay_string_index
= -1;
5636 it
->current
.dpvec_index
= -1;
5637 xassert (charpos
>= 0);
5639 /* If STRING is specified, use its multibyteness, otherwise use the
5640 setting of MULTIBYTE, if specified. */
5642 it
->multibyte_p
= multibyte
> 0;
5646 xassert (STRINGP (string
));
5647 it
->string
= string
;
5649 it
->end_charpos
= it
->string_nchars
= SCHARS (string
);
5650 it
->method
= GET_FROM_STRING
;
5651 it
->current
.string_pos
= string_pos (charpos
, string
);
5658 /* Note that we use IT->current.pos, not it->current.string_pos,
5659 for displaying C strings. */
5660 IT_STRING_CHARPOS (*it
) = IT_STRING_BYTEPOS (*it
) = -1;
5661 if (it
->multibyte_p
)
5663 it
->current
.pos
= c_string_pos (charpos
, s
, 1);
5664 it
->end_charpos
= it
->string_nchars
= number_of_chars (s
, 1);
5668 IT_CHARPOS (*it
) = IT_BYTEPOS (*it
) = charpos
;
5669 it
->end_charpos
= it
->string_nchars
= strlen (s
);
5672 it
->method
= GET_FROM_C_STRING
;
5675 /* PRECISION > 0 means don't return more than PRECISION characters
5677 if (precision
> 0 && it
->end_charpos
- charpos
> precision
)
5678 it
->end_charpos
= it
->string_nchars
= charpos
+ precision
;
5680 /* FIELD_WIDTH > 0 means pad with spaces until FIELD_WIDTH
5681 characters have been returned. FIELD_WIDTH == 0 means don't pad,
5682 FIELD_WIDTH < 0 means infinite field width. This is useful for
5683 padding with `-' at the end of a mode line. */
5684 if (field_width
< 0)
5685 field_width
= INFINITY
;
5686 if (field_width
> it
->end_charpos
- charpos
)
5687 it
->end_charpos
= charpos
+ field_width
;
5689 /* Use the standard display table for displaying strings. */
5690 if (DISP_TABLE_P (Vstandard_display_table
))
5691 it
->dp
= XCHAR_TABLE (Vstandard_display_table
);
5693 it
->stop_charpos
= charpos
;
5699 /***********************************************************************
5701 ***********************************************************************/
5703 /* Map enum it_method value to corresponding next_element_from_* function. */
5705 static int (* get_next_element
[NUM_IT_METHODS
]) P_ ((struct it
*it
)) =
5707 next_element_from_buffer
,
5708 next_element_from_display_vector
,
5709 next_element_from_composition
,
5710 next_element_from_string
,
5711 next_element_from_c_string
,
5712 next_element_from_image
,
5713 next_element_from_stretch
5716 #define GET_NEXT_DISPLAY_ELEMENT(it) (*get_next_element[(it)->method]) (it)
5718 /* Load IT's display element fields with information about the next
5719 display element from the current position of IT. Value is zero if
5720 end of buffer (or C string) is reached. */
5722 static struct frame
*last_escape_glyph_frame
= NULL
;
5723 static unsigned last_escape_glyph_face_id
= (1 << FACE_ID_BITS
);
5724 static int last_escape_glyph_merged_face_id
= 0;
5727 get_next_display_element (it
)
5730 /* Non-zero means that we found a display element. Zero means that
5731 we hit the end of what we iterate over. Performance note: the
5732 function pointer `method' used here turns out to be faster than
5733 using a sequence of if-statements. */
5737 success_p
= GET_NEXT_DISPLAY_ELEMENT (it
);
5739 if (it
->what
== IT_CHARACTER
)
5741 /* Map via display table or translate control characters.
5742 IT->c, IT->len etc. have been set to the next character by
5743 the function call above. If we have a display table, and it
5744 contains an entry for IT->c, translate it. Don't do this if
5745 IT->c itself comes from a display table, otherwise we could
5746 end up in an infinite recursion. (An alternative could be to
5747 count the recursion depth of this function and signal an
5748 error when a certain maximum depth is reached.) Is it worth
5750 if (success_p
&& it
->dpvec
== NULL
)
5755 && (dv
= DISP_CHAR_VECTOR (it
->dp
, it
->c
),
5758 struct Lisp_Vector
*v
= XVECTOR (dv
);
5760 /* Return the first character from the display table
5761 entry, if not empty. If empty, don't display the
5762 current character. */
5765 it
->dpvec_char_len
= it
->len
;
5766 it
->dpvec
= v
->contents
;
5767 it
->dpend
= v
->contents
+ v
->size
;
5768 it
->current
.dpvec_index
= 0;
5769 it
->dpvec_face_id
= -1;
5770 it
->saved_face_id
= it
->face_id
;
5771 it
->method
= GET_FROM_DISPLAY_VECTOR
;
5776 set_iterator_to_next (it
, 0);
5781 /* Translate control characters into `\003' or `^C' form.
5782 Control characters coming from a display table entry are
5783 currently not translated because we use IT->dpvec to hold
5784 the translation. This could easily be changed but I
5785 don't believe that it is worth doing.
5787 If it->multibyte_p is nonzero, non-printable non-ASCII
5788 characters are also translated to octal form.
5790 If it->multibyte_p is zero, eight-bit characters that
5791 don't have corresponding multibyte char code are also
5792 translated to octal form. */
5793 else if ((it
->c
< ' '
5794 ? (it
->area
!= TEXT_AREA
5795 /* In mode line, treat \n, \t like other crl chars. */
5797 && it
->glyph_row
&& it
->glyph_row
->mode_line_p
)
5798 || (it
->c
!= '\n' && it
->c
!= '\t'))
5800 ? (!CHAR_PRINTABLE_P (it
->c
)
5801 || (!NILP (Vnobreak_char_display
)
5802 && (it
->c
== 0xA0 /* NO-BREAK SPACE */
5803 || it
->c
== 0xAD /* SOFT HYPHEN */)))
5805 && (! unibyte_display_via_language_environment
5806 || (UNIBYTE_CHAR_HAS_MULTIBYTE_P (it
->c
)))))))
5808 /* IT->c is a control character which must be displayed
5809 either as '\003' or as `^C' where the '\\' and '^'
5810 can be defined in the display table. Fill
5811 IT->ctl_chars with glyphs for what we have to
5812 display. Then, set IT->dpvec to these glyphs. */
5815 int face_id
, lface_id
= 0 ;
5818 /* Handle control characters with ^. */
5820 if (it
->c
< 128 && it
->ctl_arrow_p
)
5824 g
= '^'; /* default glyph for Control */
5825 /* Set IT->ctl_chars[0] to the glyph for `^'. */
5827 && (gc
= DISP_CTRL_GLYPH (it
->dp
), GLYPH_CODE_P (gc
))
5828 && GLYPH_CODE_CHAR_VALID_P (gc
))
5830 g
= GLYPH_CODE_CHAR (gc
);
5831 lface_id
= GLYPH_CODE_FACE (gc
);
5835 face_id
= merge_faces (it
->f
, Qt
, lface_id
, it
->face_id
);
5837 else if (it
->f
== last_escape_glyph_frame
5838 && it
->face_id
== last_escape_glyph_face_id
)
5840 face_id
= last_escape_glyph_merged_face_id
;
5844 /* Merge the escape-glyph face into the current face. */
5845 face_id
= merge_faces (it
->f
, Qescape_glyph
, 0,
5847 last_escape_glyph_frame
= it
->f
;
5848 last_escape_glyph_face_id
= it
->face_id
;
5849 last_escape_glyph_merged_face_id
= face_id
;
5852 XSETINT (it
->ctl_chars
[0], g
);
5853 XSETINT (it
->ctl_chars
[1], it
->c
^ 0100);
5855 goto display_control
;
5858 /* Handle non-break space in the mode where it only gets
5861 if (EQ (Vnobreak_char_display
, Qt
)
5864 /* Merge the no-break-space face into the current face. */
5865 face_id
= merge_faces (it
->f
, Qnobreak_space
, 0,
5869 XSETINT (it
->ctl_chars
[0], ' ');
5871 goto display_control
;
5874 /* Handle sequences that start with the "escape glyph". */
5876 /* the default escape glyph is \. */
5877 escape_glyph
= '\\';
5880 && (gc
= DISP_ESCAPE_GLYPH (it
->dp
), GLYPH_CODE_P (gc
))
5881 && GLYPH_CODE_CHAR_VALID_P (gc
))
5883 escape_glyph
= GLYPH_CODE_CHAR (gc
);
5884 lface_id
= GLYPH_CODE_FACE (gc
);
5888 /* The display table specified a face.
5889 Merge it into face_id and also into escape_glyph. */
5890 face_id
= merge_faces (it
->f
, Qt
, lface_id
,
5893 else if (it
->f
== last_escape_glyph_frame
5894 && it
->face_id
== last_escape_glyph_face_id
)
5896 face_id
= last_escape_glyph_merged_face_id
;
5900 /* Merge the escape-glyph face into the current face. */
5901 face_id
= merge_faces (it
->f
, Qescape_glyph
, 0,
5903 last_escape_glyph_frame
= it
->f
;
5904 last_escape_glyph_face_id
= it
->face_id
;
5905 last_escape_glyph_merged_face_id
= face_id
;
5908 /* Handle soft hyphens in the mode where they only get
5911 if (EQ (Vnobreak_char_display
, Qt
)
5915 XSETINT (it
->ctl_chars
[0], '-');
5917 goto display_control
;
5920 /* Handle non-break space and soft hyphen
5921 with the escape glyph. */
5923 if (it
->c
== 0xA0 || it
->c
== 0xAD)
5925 XSETINT (it
->ctl_chars
[0], escape_glyph
);
5926 it
->c
= (it
->c
== 0xA0 ? ' ' : '-');
5927 XSETINT (it
->ctl_chars
[1], it
->c
);
5929 goto display_control
;
5933 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
5937 /* Set IT->ctl_chars[0] to the glyph for `\\'. */
5938 if (CHAR_BYTE8_P (it
->c
))
5940 str
[0] = CHAR_TO_BYTE8 (it
->c
);
5943 else if (it
->c
< 256)
5950 /* It's an invalid character, which shouldn't
5951 happen actually, but due to bugs it may
5952 happen. Let's print the char as is, there's
5953 not much meaningful we can do with it. */
5955 str
[1] = it
->c
>> 8;
5956 str
[2] = it
->c
>> 16;
5957 str
[3] = it
->c
>> 24;
5961 for (i
= 0; i
< len
; i
++)
5964 XSETINT (it
->ctl_chars
[i
* 4], escape_glyph
);
5965 /* Insert three more glyphs into IT->ctl_chars for
5966 the octal display of the character. */
5967 g
= ((str
[i
] >> 6) & 7) + '0';
5968 XSETINT (it
->ctl_chars
[i
* 4 + 1], g
);
5969 g
= ((str
[i
] >> 3) & 7) + '0';
5970 XSETINT (it
->ctl_chars
[i
* 4 + 2], g
);
5971 g
= (str
[i
] & 7) + '0';
5972 XSETINT (it
->ctl_chars
[i
* 4 + 3], g
);
5978 /* Set up IT->dpvec and return first character from it. */
5979 it
->dpvec_char_len
= it
->len
;
5980 it
->dpvec
= it
->ctl_chars
;
5981 it
->dpend
= it
->dpvec
+ ctl_len
;
5982 it
->current
.dpvec_index
= 0;
5983 it
->dpvec_face_id
= face_id
;
5984 it
->saved_face_id
= it
->face_id
;
5985 it
->method
= GET_FROM_DISPLAY_VECTOR
;
5992 /* Adjust face id for a multibyte character. There are no multibyte
5993 character in unibyte text. */
5994 if ((it
->what
== IT_CHARACTER
|| it
->what
== IT_COMPOSITION
)
5997 && FRAME_WINDOW_P (it
->f
))
5999 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
6000 int pos
= (it
->s
? -1
6001 : STRINGP (it
->string
) ? IT_STRING_CHARPOS (*it
)
6002 : IT_CHARPOS (*it
));
6004 it
->face_id
= FACE_FOR_CHAR (it
->f
, face
, it
->c
, pos
, it
->string
);
6007 /* Is this character the last one of a run of characters with
6008 box? If yes, set IT->end_of_box_run_p to 1. */
6015 it
->end_of_box_run_p
6016 = ((face_id
= face_after_it_pos (it
),
6017 face_id
!= it
->face_id
)
6018 && (face
= FACE_FROM_ID (it
->f
, face_id
),
6019 face
->box
== FACE_NO_BOX
));
6022 /* Value is 0 if end of buffer or string reached. */
6027 /* Move IT to the next display element.
6029 RESEAT_P non-zero means if called on a newline in buffer text,
6030 skip to the next visible line start.
6032 Functions get_next_display_element and set_iterator_to_next are
6033 separate because I find this arrangement easier to handle than a
6034 get_next_display_element function that also increments IT's
6035 position. The way it is we can first look at an iterator's current
6036 display element, decide whether it fits on a line, and if it does,
6037 increment the iterator position. The other way around we probably
6038 would either need a flag indicating whether the iterator has to be
6039 incremented the next time, or we would have to implement a
6040 decrement position function which would not be easy to write. */
6043 set_iterator_to_next (it
, reseat_p
)
6047 /* Reset flags indicating start and end of a sequence of characters
6048 with box. Reset them at the start of this function because
6049 moving the iterator to a new position might set them. */
6050 it
->start_of_box_run_p
= it
->end_of_box_run_p
= 0;
6054 case GET_FROM_BUFFER
:
6055 /* The current display element of IT is a character from
6056 current_buffer. Advance in the buffer, and maybe skip over
6057 invisible lines that are so because of selective display. */
6058 if (ITERATOR_AT_END_OF_LINE_P (it
) && reseat_p
)
6059 reseat_at_next_visible_line_start (it
, 0);
6062 xassert (it
->len
!= 0);
6063 IT_BYTEPOS (*it
) += it
->len
;
6064 IT_CHARPOS (*it
) += 1;
6065 xassert (IT_BYTEPOS (*it
) == CHAR_TO_BYTE (IT_CHARPOS (*it
)));
6069 case GET_FROM_COMPOSITION
:
6070 xassert (it
->cmp_id
>= 0 && it
->cmp_id
< n_compositions
);
6071 xassert (it
->sp
> 0);
6073 if (it
->method
== GET_FROM_STRING
)
6075 IT_STRING_BYTEPOS (*it
) += it
->len
;
6076 IT_STRING_CHARPOS (*it
) += it
->cmp_len
;
6077 goto consider_string_end
;
6079 else if (it
->method
== GET_FROM_BUFFER
)
6081 IT_BYTEPOS (*it
) += it
->len
;
6082 IT_CHARPOS (*it
) += it
->cmp_len
;
6086 case GET_FROM_C_STRING
:
6087 /* Current display element of IT is from a C string. */
6088 IT_BYTEPOS (*it
) += it
->len
;
6089 IT_CHARPOS (*it
) += 1;
6092 case GET_FROM_DISPLAY_VECTOR
:
6093 /* Current display element of IT is from a display table entry.
6094 Advance in the display table definition. Reset it to null if
6095 end reached, and continue with characters from buffers/
6097 ++it
->current
.dpvec_index
;
6099 /* Restore face of the iterator to what they were before the
6100 display vector entry (these entries may contain faces). */
6101 it
->face_id
= it
->saved_face_id
;
6103 if (it
->dpvec
+ it
->current
.dpvec_index
== it
->dpend
)
6105 int recheck_faces
= it
->ellipsis_p
;
6108 it
->method
= GET_FROM_C_STRING
;
6109 else if (STRINGP (it
->string
))
6110 it
->method
= GET_FROM_STRING
;
6113 it
->method
= GET_FROM_BUFFER
;
6114 it
->object
= it
->w
->buffer
;
6118 it
->current
.dpvec_index
= -1;
6120 /* Skip over characters which were displayed via IT->dpvec. */
6121 if (it
->dpvec_char_len
< 0)
6122 reseat_at_next_visible_line_start (it
, 1);
6123 else if (it
->dpvec_char_len
> 0)
6125 if (it
->method
== GET_FROM_STRING
6126 && it
->n_overlay_strings
> 0)
6127 it
->ignore_overlay_strings_at_pos_p
= 1;
6128 it
->len
= it
->dpvec_char_len
;
6129 set_iterator_to_next (it
, reseat_p
);
6132 /* Maybe recheck faces after display vector */
6134 it
->stop_charpos
= IT_CHARPOS (*it
);
6138 case GET_FROM_STRING
:
6139 /* Current display element is a character from a Lisp string. */
6140 xassert (it
->s
== NULL
&& STRINGP (it
->string
));
6141 IT_STRING_BYTEPOS (*it
) += it
->len
;
6142 IT_STRING_CHARPOS (*it
) += 1;
6144 consider_string_end
:
6146 if (it
->current
.overlay_string_index
>= 0)
6148 /* IT->string is an overlay string. Advance to the
6149 next, if there is one. */
6150 if (IT_STRING_CHARPOS (*it
) >= SCHARS (it
->string
))
6151 next_overlay_string (it
);
6155 /* IT->string is not an overlay string. If we reached
6156 its end, and there is something on IT->stack, proceed
6157 with what is on the stack. This can be either another
6158 string, this time an overlay string, or a buffer. */
6159 if (IT_STRING_CHARPOS (*it
) == SCHARS (it
->string
)
6163 if (it
->method
== GET_FROM_STRING
)
6164 goto consider_string_end
;
6169 case GET_FROM_IMAGE
:
6170 case GET_FROM_STRETCH
:
6171 /* The position etc with which we have to proceed are on
6172 the stack. The position may be at the end of a string,
6173 if the `display' property takes up the whole string. */
6174 xassert (it
->sp
> 0);
6176 if (it
->method
== GET_FROM_STRING
)
6177 goto consider_string_end
;
6181 /* There are no other methods defined, so this should be a bug. */
6185 xassert (it
->method
!= GET_FROM_STRING
6186 || (STRINGP (it
->string
)
6187 && IT_STRING_CHARPOS (*it
) >= 0));
6190 /* Load IT's display element fields with information about the next
6191 display element which comes from a display table entry or from the
6192 result of translating a control character to one of the forms `^C'
6195 IT->dpvec holds the glyphs to return as characters.
6196 IT->saved_face_id holds the face id before the display vector--
6197 it is restored into IT->face_idin set_iterator_to_next. */
6200 next_element_from_display_vector (it
)
6206 xassert (it
->dpvec
&& it
->current
.dpvec_index
>= 0);
6208 it
->face_id
= it
->saved_face_id
;
6210 /* KFS: This code used to check ip->dpvec[0] instead of the current element.
6211 That seemed totally bogus - so I changed it... */
6213 if ((gc
= it
->dpvec
[it
->current
.dpvec_index
], GLYPH_CODE_P (gc
))
6214 && GLYPH_CODE_CHAR_VALID_P (gc
))
6216 it
->c
= GLYPH_CODE_CHAR (gc
);
6217 it
->len
= CHAR_BYTES (it
->c
);
6219 /* The entry may contain a face id to use. Such a face id is
6220 the id of a Lisp face, not a realized face. A face id of
6221 zero means no face is specified. */
6222 if (it
->dpvec_face_id
>= 0)
6223 it
->face_id
= it
->dpvec_face_id
;
6226 int lface_id
= GLYPH_CODE_FACE (gc
);
6228 it
->face_id
= merge_faces (it
->f
, Qt
, lface_id
,
6233 /* Display table entry is invalid. Return a space. */
6234 it
->c
= ' ', it
->len
= 1;
6236 /* Don't change position and object of the iterator here. They are
6237 still the values of the character that had this display table
6238 entry or was translated, and that's what we want. */
6239 it
->what
= IT_CHARACTER
;
6244 /* Load IT with the next display element from Lisp string IT->string.
6245 IT->current.string_pos is the current position within the string.
6246 If IT->current.overlay_string_index >= 0, the Lisp string is an
6250 next_element_from_string (it
)
6253 struct text_pos position
;
6255 xassert (STRINGP (it
->string
));
6256 xassert (IT_STRING_CHARPOS (*it
) >= 0);
6257 position
= it
->current
.string_pos
;
6259 /* Time to check for invisible text? */
6260 if (IT_STRING_CHARPOS (*it
) < it
->end_charpos
6261 && IT_STRING_CHARPOS (*it
) == it
->stop_charpos
)
6265 /* Since a handler may have changed IT->method, we must
6267 return GET_NEXT_DISPLAY_ELEMENT (it
);
6270 if (it
->current
.overlay_string_index
>= 0)
6272 /* Get the next character from an overlay string. In overlay
6273 strings, There is no field width or padding with spaces to
6275 if (IT_STRING_CHARPOS (*it
) >= SCHARS (it
->string
))
6280 else if (STRING_MULTIBYTE (it
->string
))
6282 int remaining
= SBYTES (it
->string
) - IT_STRING_BYTEPOS (*it
);
6283 const unsigned char *s
= (SDATA (it
->string
)
6284 + IT_STRING_BYTEPOS (*it
));
6285 it
->c
= string_char_and_length (s
, remaining
, &it
->len
);
6289 it
->c
= SREF (it
->string
, IT_STRING_BYTEPOS (*it
));
6295 /* Get the next character from a Lisp string that is not an
6296 overlay string. Such strings come from the mode line, for
6297 example. We may have to pad with spaces, or truncate the
6298 string. See also next_element_from_c_string. */
6299 if (IT_STRING_CHARPOS (*it
) >= it
->end_charpos
)
6304 else if (IT_STRING_CHARPOS (*it
) >= it
->string_nchars
)
6306 /* Pad with spaces. */
6307 it
->c
= ' ', it
->len
= 1;
6308 CHARPOS (position
) = BYTEPOS (position
) = -1;
6310 else if (STRING_MULTIBYTE (it
->string
))
6312 int maxlen
= SBYTES (it
->string
) - IT_STRING_BYTEPOS (*it
);
6313 const unsigned char *s
= (SDATA (it
->string
)
6314 + IT_STRING_BYTEPOS (*it
));
6315 it
->c
= string_char_and_length (s
, maxlen
, &it
->len
);
6319 it
->c
= SREF (it
->string
, IT_STRING_BYTEPOS (*it
));
6324 /* Record what we have and where it came from. */
6325 it
->what
= IT_CHARACTER
;
6326 it
->object
= it
->string
;
6327 it
->position
= position
;
6332 /* Load IT with next display element from C string IT->s.
6333 IT->string_nchars is the maximum number of characters to return
6334 from the string. IT->end_charpos may be greater than
6335 IT->string_nchars when this function is called, in which case we
6336 may have to return padding spaces. Value is zero if end of string
6337 reached, including padding spaces. */
6340 next_element_from_c_string (it
)
6346 it
->what
= IT_CHARACTER
;
6347 BYTEPOS (it
->position
) = CHARPOS (it
->position
) = 0;
6350 /* IT's position can be greater IT->string_nchars in case a field
6351 width or precision has been specified when the iterator was
6353 if (IT_CHARPOS (*it
) >= it
->end_charpos
)
6355 /* End of the game. */
6359 else if (IT_CHARPOS (*it
) >= it
->string_nchars
)
6361 /* Pad with spaces. */
6362 it
->c
= ' ', it
->len
= 1;
6363 BYTEPOS (it
->position
) = CHARPOS (it
->position
) = -1;
6365 else if (it
->multibyte_p
)
6367 /* Implementation note: The calls to strlen apparently aren't a
6368 performance problem because there is no noticeable performance
6369 difference between Emacs running in unibyte or multibyte mode. */
6370 int maxlen
= strlen (it
->s
) - IT_BYTEPOS (*it
);
6371 it
->c
= string_char_and_length (it
->s
+ IT_BYTEPOS (*it
),
6375 it
->c
= it
->s
[IT_BYTEPOS (*it
)], it
->len
= 1;
6381 /* Set up IT to return characters from an ellipsis, if appropriate.
6382 The definition of the ellipsis glyphs may come from a display table
6383 entry. This function Fills IT with the first glyph from the
6384 ellipsis if an ellipsis is to be displayed. */
6387 next_element_from_ellipsis (it
)
6390 if (it
->selective_display_ellipsis_p
)
6391 setup_for_ellipsis (it
, it
->len
);
6394 /* The face at the current position may be different from the
6395 face we find after the invisible text. Remember what it
6396 was in IT->saved_face_id, and signal that it's there by
6397 setting face_before_selective_p. */
6398 it
->saved_face_id
= it
->face_id
;
6399 it
->method
= GET_FROM_BUFFER
;
6400 it
->object
= it
->w
->buffer
;
6401 reseat_at_next_visible_line_start (it
, 1);
6402 it
->face_before_selective_p
= 1;
6405 return GET_NEXT_DISPLAY_ELEMENT (it
);
6409 /* Deliver an image display element. The iterator IT is already
6410 filled with image information (done in handle_display_prop). Value
6415 next_element_from_image (it
)
6418 it
->what
= IT_IMAGE
;
6423 /* Fill iterator IT with next display element from a stretch glyph
6424 property. IT->object is the value of the text property. Value is
6428 next_element_from_stretch (it
)
6431 it
->what
= IT_STRETCH
;
6436 /* Load IT with the next display element from current_buffer. Value
6437 is zero if end of buffer reached. IT->stop_charpos is the next
6438 position at which to stop and check for text properties or buffer
6442 next_element_from_buffer (it
)
6447 /* Check this assumption, otherwise, we would never enter the
6448 if-statement, below. */
6449 xassert (IT_CHARPOS (*it
) >= BEGV
6450 && IT_CHARPOS (*it
) <= it
->stop_charpos
);
6452 if (IT_CHARPOS (*it
) >= it
->stop_charpos
)
6454 if (IT_CHARPOS (*it
) >= it
->end_charpos
)
6456 int overlay_strings_follow_p
;
6458 /* End of the game, except when overlay strings follow that
6459 haven't been returned yet. */
6460 if (it
->overlay_strings_at_end_processed_p
)
6461 overlay_strings_follow_p
= 0;
6464 it
->overlay_strings_at_end_processed_p
= 1;
6465 overlay_strings_follow_p
= get_overlay_strings (it
, 0);
6468 if (overlay_strings_follow_p
)
6469 success_p
= GET_NEXT_DISPLAY_ELEMENT (it
);
6473 it
->position
= it
->current
.pos
;
6480 return GET_NEXT_DISPLAY_ELEMENT (it
);
6485 /* No face changes, overlays etc. in sight, so just return a
6486 character from current_buffer. */
6489 /* Maybe run the redisplay end trigger hook. Performance note:
6490 This doesn't seem to cost measurable time. */
6491 if (it
->redisplay_end_trigger_charpos
6493 && IT_CHARPOS (*it
) >= it
->redisplay_end_trigger_charpos
)
6494 run_redisplay_end_trigger_hook (it
);
6496 /* Get the next character, maybe multibyte. */
6497 p
= BYTE_POS_ADDR (IT_BYTEPOS (*it
));
6498 if (it
->multibyte_p
&& !ASCII_BYTE_P (*p
))
6500 int maxlen
= ((IT_BYTEPOS (*it
) >= GPT_BYTE
? ZV_BYTE
: GPT_BYTE
)
6501 - IT_BYTEPOS (*it
));
6502 it
->c
= string_char_and_length (p
, maxlen
, &it
->len
);
6505 it
->c
= *p
, it
->len
= 1;
6507 /* Record what we have and where it came from. */
6508 it
->what
= IT_CHARACTER
;
6509 it
->object
= it
->w
->buffer
;
6510 it
->position
= it
->current
.pos
;
6512 /* Normally we return the character found above, except when we
6513 really want to return an ellipsis for selective display. */
6518 /* A value of selective > 0 means hide lines indented more
6519 than that number of columns. */
6520 if (it
->selective
> 0
6521 && IT_CHARPOS (*it
) + 1 < ZV
6522 && indented_beyond_p (IT_CHARPOS (*it
) + 1,
6523 IT_BYTEPOS (*it
) + 1,
6524 (double) it
->selective
)) /* iftc */
6526 success_p
= next_element_from_ellipsis (it
);
6527 it
->dpvec_char_len
= -1;
6530 else if (it
->c
== '\r' && it
->selective
== -1)
6532 /* A value of selective == -1 means that everything from the
6533 CR to the end of the line is invisible, with maybe an
6534 ellipsis displayed for it. */
6535 success_p
= next_element_from_ellipsis (it
);
6536 it
->dpvec_char_len
= -1;
6541 /* Value is zero if end of buffer reached. */
6542 xassert (!success_p
|| it
->what
!= IT_CHARACTER
|| it
->len
> 0);
6547 /* Run the redisplay end trigger hook for IT. */
6550 run_redisplay_end_trigger_hook (it
)
6553 Lisp_Object args
[3];
6555 /* IT->glyph_row should be non-null, i.e. we should be actually
6556 displaying something, or otherwise we should not run the hook. */
6557 xassert (it
->glyph_row
);
6559 /* Set up hook arguments. */
6560 args
[0] = Qredisplay_end_trigger_functions
;
6561 args
[1] = it
->window
;
6562 XSETINT (args
[2], it
->redisplay_end_trigger_charpos
);
6563 it
->redisplay_end_trigger_charpos
= 0;
6565 /* Since we are *trying* to run these functions, don't try to run
6566 them again, even if they get an error. */
6567 it
->w
->redisplay_end_trigger
= Qnil
;
6568 Frun_hook_with_args (3, args
);
6570 /* Notice if it changed the face of the character we are on. */
6571 handle_face_prop (it
);
6575 /* Deliver a composition display element. The iterator IT is already
6576 filled with composition information (done in
6577 handle_composition_prop). Value is always 1. */
6580 next_element_from_composition (it
)
6583 it
->what
= IT_COMPOSITION
;
6584 it
->position
= (STRINGP (it
->string
)
6585 ? it
->current
.string_pos
6587 if (STRINGP (it
->string
))
6588 it
->object
= it
->string
;
6590 it
->object
= it
->w
->buffer
;
6596 /***********************************************************************
6597 Moving an iterator without producing glyphs
6598 ***********************************************************************/
6600 /* Check if iterator is at a position corresponding to a valid buffer
6601 position after some move_it_ call. */
6603 #define IT_POS_VALID_AFTER_MOVE_P(it) \
6604 ((it)->method == GET_FROM_STRING \
6605 ? IT_STRING_CHARPOS (*it) == 0 \
6609 /* Move iterator IT to a specified buffer or X position within one
6610 line on the display without producing glyphs.
6612 OP should be a bit mask including some or all of these bits:
6613 MOVE_TO_X: Stop on reaching x-position TO_X.
6614 MOVE_TO_POS: Stop on reaching buffer or string position TO_CHARPOS.
6615 Regardless of OP's value, stop in reaching the end of the display line.
6617 TO_X is normally a value 0 <= TO_X <= IT->last_visible_x.
6618 This means, in particular, that TO_X includes window's horizontal
6621 The return value has several possible values that
6622 say what condition caused the scan to stop:
6624 MOVE_POS_MATCH_OR_ZV
6625 - when TO_POS or ZV was reached.
6628 -when TO_X was reached before TO_POS or ZV were reached.
6631 - when we reached the end of the display area and the line must
6635 - when we reached the end of the display area and the line is
6639 - when we stopped at a line end, i.e. a newline or a CR and selective
6642 static enum move_it_result
6643 move_it_in_display_line_to (it
, to_charpos
, to_x
, op
)
6645 int to_charpos
, to_x
, op
;
6647 enum move_it_result result
= MOVE_UNDEFINED
;
6648 struct glyph_row
*saved_glyph_row
;
6650 /* Don't produce glyphs in produce_glyphs. */
6651 saved_glyph_row
= it
->glyph_row
;
6652 it
->glyph_row
= NULL
;
6654 #define BUFFER_POS_REACHED_P() \
6655 ((op & MOVE_TO_POS) != 0 \
6656 && BUFFERP (it->object) \
6657 && IT_CHARPOS (*it) >= to_charpos \
6658 && (it->method == GET_FROM_BUFFER \
6659 || (it->method == GET_FROM_DISPLAY_VECTOR \
6660 && it->dpvec + it->current.dpvec_index + 1 >= it->dpend)))
6665 int x
, i
, ascent
= 0, descent
= 0;
6667 /* Stop if we move beyond TO_CHARPOS (after an image or stretch glyph). */
6668 if ((op
& MOVE_TO_POS
) != 0
6669 && BUFFERP (it
->object
)
6670 && it
->method
== GET_FROM_BUFFER
6671 && IT_CHARPOS (*it
) > to_charpos
)
6673 result
= MOVE_POS_MATCH_OR_ZV
;
6677 /* Stop when ZV reached.
6678 We used to stop here when TO_CHARPOS reached as well, but that is
6679 too soon if this glyph does not fit on this line. So we handle it
6680 explicitly below. */
6681 if (!get_next_display_element (it
)
6682 || (it
->truncate_lines_p
6683 && BUFFER_POS_REACHED_P ()))
6685 result
= MOVE_POS_MATCH_OR_ZV
;
6689 /* The call to produce_glyphs will get the metrics of the
6690 display element IT is loaded with. We record in x the
6691 x-position before this display element in case it does not
6695 /* Remember the line height so far in case the next element doesn't
6697 if (!it
->truncate_lines_p
)
6699 ascent
= it
->max_ascent
;
6700 descent
= it
->max_descent
;
6703 PRODUCE_GLYPHS (it
);
6705 if (it
->area
!= TEXT_AREA
)
6707 set_iterator_to_next (it
, 1);
6711 /* The number of glyphs we get back in IT->nglyphs will normally
6712 be 1 except when IT->c is (i) a TAB, or (ii) a multi-glyph
6713 character on a terminal frame, or (iii) a line end. For the
6714 second case, IT->nglyphs - 1 padding glyphs will be present
6715 (on X frames, there is only one glyph produced for a
6716 composite character.
6718 The behavior implemented below means, for continuation lines,
6719 that as many spaces of a TAB as fit on the current line are
6720 displayed there. For terminal frames, as many glyphs of a
6721 multi-glyph character are displayed in the current line, too.
6722 This is what the old redisplay code did, and we keep it that
6723 way. Under X, the whole shape of a complex character must
6724 fit on the line or it will be completely displayed in the
6727 Note that both for tabs and padding glyphs, all glyphs have
6731 /* More than one glyph or glyph doesn't fit on line. All
6732 glyphs have the same width. */
6733 int single_glyph_width
= it
->pixel_width
/ it
->nglyphs
;
6735 int x_before_this_char
= x
;
6736 int hpos_before_this_char
= it
->hpos
;
6738 for (i
= 0; i
< it
->nglyphs
; ++i
, x
= new_x
)
6740 new_x
= x
+ single_glyph_width
;
6742 /* We want to leave anything reaching TO_X to the caller. */
6743 if ((op
& MOVE_TO_X
) && new_x
> to_x
)
6745 if (BUFFER_POS_REACHED_P ())
6746 goto buffer_pos_reached
;
6748 result
= MOVE_X_REACHED
;
6751 else if (/* Lines are continued. */
6752 !it
->truncate_lines_p
6753 && (/* And glyph doesn't fit on the line. */
6754 new_x
> it
->last_visible_x
6755 /* Or it fits exactly and we're on a window
6757 || (new_x
== it
->last_visible_x
6758 && FRAME_WINDOW_P (it
->f
))))
6760 if (/* IT->hpos == 0 means the very first glyph
6761 doesn't fit on the line, e.g. a wide image. */
6763 || (new_x
== it
->last_visible_x
6764 && FRAME_WINDOW_P (it
->f
)))
6767 it
->current_x
= new_x
;
6769 /* The character's last glyph just barely fits
6771 if (i
== it
->nglyphs
- 1)
6773 /* If this is the destination position,
6774 return a position *before* it in this row,
6775 now that we know it fits in this row. */
6776 if (BUFFER_POS_REACHED_P ())
6778 it
->hpos
= hpos_before_this_char
;
6779 it
->current_x
= x_before_this_char
;
6780 result
= MOVE_POS_MATCH_OR_ZV
;
6784 set_iterator_to_next (it
, 1);
6785 #ifdef HAVE_WINDOW_SYSTEM
6786 if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it
))
6788 if (!get_next_display_element (it
))
6790 result
= MOVE_POS_MATCH_OR_ZV
;
6793 if (BUFFER_POS_REACHED_P ())
6795 if (ITERATOR_AT_END_OF_LINE_P (it
))
6796 result
= MOVE_POS_MATCH_OR_ZV
;
6798 result
= MOVE_LINE_CONTINUED
;
6801 if (ITERATOR_AT_END_OF_LINE_P (it
))
6803 result
= MOVE_NEWLINE_OR_CR
;
6807 #endif /* HAVE_WINDOW_SYSTEM */
6813 it
->max_ascent
= ascent
;
6814 it
->max_descent
= descent
;
6817 TRACE_MOVE ((stderr
, "move_it_in: continued at %d\n",
6819 result
= MOVE_LINE_CONTINUED
;
6822 else if (BUFFER_POS_REACHED_P ())
6823 goto buffer_pos_reached
;
6824 else if (new_x
> it
->first_visible_x
)
6826 /* Glyph is visible. Increment number of glyphs that
6827 would be displayed. */
6832 /* Glyph is completely off the left margin of the display
6833 area. Nothing to do. */
6837 if (result
!= MOVE_UNDEFINED
)
6840 else if (BUFFER_POS_REACHED_P ())
6844 it
->max_ascent
= ascent
;
6845 it
->max_descent
= descent
;
6846 result
= MOVE_POS_MATCH_OR_ZV
;
6849 else if ((op
& MOVE_TO_X
) && it
->current_x
>= to_x
)
6851 /* Stop when TO_X specified and reached. This check is
6852 necessary here because of lines consisting of a line end,
6853 only. The line end will not produce any glyphs and we
6854 would never get MOVE_X_REACHED. */
6855 xassert (it
->nglyphs
== 0);
6856 result
= MOVE_X_REACHED
;
6860 /* Is this a line end? If yes, we're done. */
6861 if (ITERATOR_AT_END_OF_LINE_P (it
))
6863 result
= MOVE_NEWLINE_OR_CR
;
6867 /* The current display element has been consumed. Advance
6869 set_iterator_to_next (it
, 1);
6871 /* Stop if lines are truncated and IT's current x-position is
6872 past the right edge of the window now. */
6873 if (it
->truncate_lines_p
6874 && it
->current_x
>= it
->last_visible_x
)
6876 #ifdef HAVE_WINDOW_SYSTEM
6877 if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it
))
6879 if (!get_next_display_element (it
)
6880 || BUFFER_POS_REACHED_P ())
6882 result
= MOVE_POS_MATCH_OR_ZV
;
6885 if (ITERATOR_AT_END_OF_LINE_P (it
))
6887 result
= MOVE_NEWLINE_OR_CR
;
6891 #endif /* HAVE_WINDOW_SYSTEM */
6892 result
= MOVE_LINE_TRUNCATED
;
6897 #undef BUFFER_POS_REACHED_P
6899 /* Restore the iterator settings altered at the beginning of this
6901 it
->glyph_row
= saved_glyph_row
;
6906 /* Move IT forward until it satisfies one or more of the criteria in
6907 TO_CHARPOS, TO_X, TO_Y, and TO_VPOS.
6909 OP is a bit-mask that specifies where to stop, and in particular,
6910 which of those four position arguments makes a difference. See the
6911 description of enum move_operation_enum.
6913 If TO_CHARPOS is in invisible text, e.g. a truncated part of a
6914 screen line, this function will set IT to the next position >
6918 move_it_to (it
, to_charpos
, to_x
, to_y
, to_vpos
, op
)
6920 int to_charpos
, to_x
, to_y
, to_vpos
;
6923 enum move_it_result skip
, skip2
= MOVE_X_REACHED
;
6929 if (op
& MOVE_TO_VPOS
)
6931 /* If no TO_CHARPOS and no TO_X specified, stop at the
6932 start of the line TO_VPOS. */
6933 if ((op
& (MOVE_TO_X
| MOVE_TO_POS
)) == 0)
6935 if (it
->vpos
== to_vpos
)
6941 skip
= move_it_in_display_line_to (it
, -1, -1, 0);
6945 /* TO_VPOS >= 0 means stop at TO_X in the line at
6946 TO_VPOS, or at TO_POS, whichever comes first. */
6947 if (it
->vpos
== to_vpos
)
6953 skip
= move_it_in_display_line_to (it
, to_charpos
, to_x
, op
);
6955 if (skip
== MOVE_POS_MATCH_OR_ZV
|| it
->vpos
== to_vpos
)
6960 else if (skip
== MOVE_X_REACHED
&& it
->vpos
!= to_vpos
)
6962 /* We have reached TO_X but not in the line we want. */
6963 skip
= move_it_in_display_line_to (it
, to_charpos
,
6965 if (skip
== MOVE_POS_MATCH_OR_ZV
)
6973 else if (op
& MOVE_TO_Y
)
6975 struct it it_backup
;
6977 /* TO_Y specified means stop at TO_X in the line containing
6978 TO_Y---or at TO_CHARPOS if this is reached first. The
6979 problem is that we can't really tell whether the line
6980 contains TO_Y before we have completely scanned it, and
6981 this may skip past TO_X. What we do is to first scan to
6984 If TO_X is not specified, use a TO_X of zero. The reason
6985 is to make the outcome of this function more predictable.
6986 If we didn't use TO_X == 0, we would stop at the end of
6987 the line which is probably not what a caller would expect
6989 skip
= move_it_in_display_line_to (it
, to_charpos
,
6993 | (op
& MOVE_TO_POS
)));
6995 /* If TO_CHARPOS is reached or ZV, we don't have to do more. */
6996 if (skip
== MOVE_POS_MATCH_OR_ZV
)
7002 /* If TO_X was reached, we would like to know whether TO_Y
7003 is in the line. This can only be said if we know the
7004 total line height which requires us to scan the rest of
7006 if (skip
== MOVE_X_REACHED
)
7008 /* Wait! We can conclude that TO_Y is in the line if
7009 the already scanned glyphs make the line tall enough
7010 because further scanning doesn't make it shorter. */
7011 line_height
= it
->max_ascent
+ it
->max_descent
;
7012 if (to_y
>= it
->current_y
7013 && to_y
< it
->current_y
+ line_height
)
7019 TRACE_MOVE ((stderr
, "move_it: from %d\n", IT_CHARPOS (*it
)));
7020 skip2
= move_it_in_display_line_to (it
, to_charpos
, -1,
7022 TRACE_MOVE ((stderr
, "move_it: to %d\n", IT_CHARPOS (*it
)));
7025 /* Now, decide whether TO_Y is in this line. */
7026 line_height
= it
->max_ascent
+ it
->max_descent
;
7027 TRACE_MOVE ((stderr
, "move_it: line_height = %d\n", line_height
));
7029 if (to_y
>= it
->current_y
7030 && to_y
< it
->current_y
+ line_height
)
7032 if (skip
== MOVE_X_REACHED
)
7033 /* If TO_Y is in this line and TO_X was reached above,
7034 we scanned too far. We have to restore IT's settings
7035 to the ones before skipping. */
7039 else if (skip
== MOVE_X_REACHED
)
7042 if (skip
== MOVE_POS_MATCH_OR_ZV
)
7049 else if (BUFFERP (it
->object
)
7050 && it
->method
== GET_FROM_BUFFER
7051 && IT_CHARPOS (*it
) >= to_charpos
)
7052 skip
= MOVE_POS_MATCH_OR_ZV
;
7054 skip
= move_it_in_display_line_to (it
, to_charpos
, -1, MOVE_TO_POS
);
7058 case MOVE_POS_MATCH_OR_ZV
:
7062 case MOVE_NEWLINE_OR_CR
:
7063 set_iterator_to_next (it
, 1);
7064 it
->continuation_lines_width
= 0;
7067 case MOVE_LINE_TRUNCATED
:
7068 it
->continuation_lines_width
= 0;
7069 reseat_at_next_visible_line_start (it
, 0);
7070 if ((op
& MOVE_TO_POS
) != 0
7071 && IT_CHARPOS (*it
) > to_charpos
)
7078 case MOVE_LINE_CONTINUED
:
7079 /* For continued lines ending in a tab, some of the glyphs
7080 associated with the tab are displayed on the current
7081 line. Since it->current_x does not include these glyphs,
7082 we use it->last_visible_x instead. */
7083 it
->continuation_lines_width
+=
7084 (it
->c
== '\t') ? it
->last_visible_x
: it
->current_x
;
7091 /* Reset/increment for the next run. */
7092 recenter_overlay_lists (current_buffer
, IT_CHARPOS (*it
));
7093 it
->current_x
= it
->hpos
= 0;
7094 it
->current_y
+= it
->max_ascent
+ it
->max_descent
;
7096 last_height
= it
->max_ascent
+ it
->max_descent
;
7097 last_max_ascent
= it
->max_ascent
;
7098 it
->max_ascent
= it
->max_descent
= 0;
7103 TRACE_MOVE ((stderr
, "move_it_to: reached %d\n", reached
));
7107 /* Move iterator IT backward by a specified y-distance DY, DY >= 0.
7109 If DY > 0, move IT backward at least that many pixels. DY = 0
7110 means move IT backward to the preceding line start or BEGV. This
7111 function may move over more than DY pixels if IT->current_y - DY
7112 ends up in the middle of a line; in this case IT->current_y will be
7113 set to the top of the line moved to. */
7116 move_it_vertically_backward (it
, dy
)
7127 start_pos
= IT_CHARPOS (*it
);
7129 /* Estimate how many newlines we must move back. */
7130 nlines
= max (1, dy
/ FRAME_LINE_HEIGHT (it
->f
));
7132 /* Set the iterator's position that many lines back. */
7133 while (nlines
-- && IT_CHARPOS (*it
) > BEGV
)
7134 back_to_previous_visible_line_start (it
);
7136 /* Reseat the iterator here. When moving backward, we don't want
7137 reseat to skip forward over invisible text, set up the iterator
7138 to deliver from overlay strings at the new position etc. So,
7139 use reseat_1 here. */
7140 reseat_1 (it
, it
->current
.pos
, 1);
7142 /* We are now surely at a line start. */
7143 it
->current_x
= it
->hpos
= 0;
7144 it
->continuation_lines_width
= 0;
7146 /* Move forward and see what y-distance we moved. First move to the
7147 start of the next line so that we get its height. We need this
7148 height to be able to tell whether we reached the specified
7151 it2
.max_ascent
= it2
.max_descent
= 0;
7154 move_it_to (&it2
, start_pos
, -1, -1, it2
.vpos
+ 1,
7155 MOVE_TO_POS
| MOVE_TO_VPOS
);
7157 while (!IT_POS_VALID_AFTER_MOVE_P (&it2
));
7158 xassert (IT_CHARPOS (*it
) >= BEGV
);
7161 move_it_to (&it2
, start_pos
, -1, -1, -1, MOVE_TO_POS
);
7162 xassert (IT_CHARPOS (*it
) >= BEGV
);
7163 /* H is the actual vertical distance from the position in *IT
7164 and the starting position. */
7165 h
= it2
.current_y
- it
->current_y
;
7166 /* NLINES is the distance in number of lines. */
7167 nlines
= it2
.vpos
- it
->vpos
;
7169 /* Correct IT's y and vpos position
7170 so that they are relative to the starting point. */
7176 /* DY == 0 means move to the start of the screen line. The
7177 value of nlines is > 0 if continuation lines were involved. */
7179 move_it_by_lines (it
, nlines
, 1);
7181 /* I think this assert is bogus if buffer contains
7182 invisible text or images. KFS. */
7183 xassert (IT_CHARPOS (*it
) <= start_pos
);
7188 /* The y-position we try to reach, relative to *IT.
7189 Note that H has been subtracted in front of the if-statement. */
7190 int target_y
= it
->current_y
+ h
- dy
;
7191 int y0
= it3
.current_y
;
7192 int y1
= line_bottom_y (&it3
);
7193 int line_height
= y1
- y0
;
7195 /* If we did not reach target_y, try to move further backward if
7196 we can. If we moved too far backward, try to move forward. */
7197 if (target_y
< it
->current_y
7198 /* This is heuristic. In a window that's 3 lines high, with
7199 a line height of 13 pixels each, recentering with point
7200 on the bottom line will try to move -39/2 = 19 pixels
7201 backward. Try to avoid moving into the first line. */
7202 && (it
->current_y
- target_y
7203 > min (window_box_height (it
->w
), line_height
* 2 / 3))
7204 && IT_CHARPOS (*it
) > BEGV
)
7206 TRACE_MOVE ((stderr
, " not far enough -> move_vert %d\n",
7207 target_y
- it
->current_y
));
7208 dy
= it
->current_y
- target_y
;
7209 goto move_further_back
;
7211 else if (target_y
>= it
->current_y
+ line_height
7212 && IT_CHARPOS (*it
) < ZV
)
7214 /* Should move forward by at least one line, maybe more.
7216 Note: Calling move_it_by_lines can be expensive on
7217 terminal frames, where compute_motion is used (via
7218 vmotion) to do the job, when there are very long lines
7219 and truncate-lines is nil. That's the reason for
7220 treating terminal frames specially here. */
7222 if (!FRAME_WINDOW_P (it
->f
))
7223 move_it_vertically (it
, target_y
- (it
->current_y
+ line_height
));
7228 move_it_by_lines (it
, 1, 1);
7230 while (target_y
>= line_bottom_y (it
) && IT_CHARPOS (*it
) < ZV
);
7234 /* I think this assert is bogus if buffer contains
7235 invisible text or images. KFS. */
7236 xassert (IT_CHARPOS (*it
) >= BEGV
);
7243 /* Move IT by a specified amount of pixel lines DY. DY negative means
7244 move backwards. DY = 0 means move to start of screen line. At the
7245 end, IT will be on the start of a screen line. */
7248 move_it_vertically (it
, dy
)
7253 move_it_vertically_backward (it
, -dy
);
7256 TRACE_MOVE ((stderr
, "move_it_v: from %d, %d\n", IT_CHARPOS (*it
), dy
));
7257 move_it_to (it
, ZV
, -1, it
->current_y
+ dy
, -1,
7258 MOVE_TO_POS
| MOVE_TO_Y
);
7259 TRACE_MOVE ((stderr
, "move_it_v: to %d\n", IT_CHARPOS (*it
)));
7261 /* If buffer ends in ZV without a newline, move to the start of
7262 the line to satisfy the post-condition. */
7263 if (IT_CHARPOS (*it
) == ZV
7265 && FETCH_BYTE (IT_BYTEPOS (*it
) - 1) != '\n')
7266 move_it_by_lines (it
, 0, 0);
7271 /* Move iterator IT past the end of the text line it is in. */
7274 move_it_past_eol (it
)
7277 enum move_it_result rc
;
7279 rc
= move_it_in_display_line_to (it
, Z
, 0, MOVE_TO_POS
);
7280 if (rc
== MOVE_NEWLINE_OR_CR
)
7281 set_iterator_to_next (it
, 0);
7285 #if 0 /* Currently not used. */
7287 /* Return non-zero if some text between buffer positions START_CHARPOS
7288 and END_CHARPOS is invisible. IT->window is the window for text
7292 invisible_text_between_p (it
, start_charpos
, end_charpos
)
7294 int start_charpos
, end_charpos
;
7296 Lisp_Object prop
, limit
;
7297 int invisible_found_p
;
7299 xassert (it
!= NULL
&& start_charpos
<= end_charpos
);
7301 /* Is text at START invisible? */
7302 prop
= Fget_char_property (make_number (start_charpos
), Qinvisible
,
7304 if (TEXT_PROP_MEANS_INVISIBLE (prop
))
7305 invisible_found_p
= 1;
7308 limit
= Fnext_single_char_property_change (make_number (start_charpos
),
7310 make_number (end_charpos
));
7311 invisible_found_p
= XFASTINT (limit
) < end_charpos
;
7314 return invisible_found_p
;
7320 /* Move IT by a specified number DVPOS of screen lines down. DVPOS
7321 negative means move up. DVPOS == 0 means move to the start of the
7322 screen line. NEED_Y_P non-zero means calculate IT->current_y. If
7323 NEED_Y_P is zero, IT->current_y will be left unchanged.
7325 Further optimization ideas: If we would know that IT->f doesn't use
7326 a face with proportional font, we could be faster for
7327 truncate-lines nil. */
7330 move_it_by_lines (it
, dvpos
, need_y_p
)
7332 int dvpos
, need_y_p
;
7334 struct position pos
;
7336 /* The commented-out optimization uses vmotion on terminals. This
7337 gives bad results, because elements like it->what, on which
7338 callers such as pos_visible_p rely, aren't updated. */
7339 /* if (!FRAME_WINDOW_P (it->f))
7341 struct text_pos textpos;
7343 pos = *vmotion (IT_CHARPOS (*it), dvpos, it->w);
7344 SET_TEXT_POS (textpos, pos.bufpos, pos.bytepos);
7345 reseat (it, textpos, 1);
7346 it->vpos += pos.vpos;
7347 it->current_y += pos.vpos;
7353 /* DVPOS == 0 means move to the start of the screen line. */
7354 move_it_vertically_backward (it
, 0);
7355 xassert (it
->current_x
== 0 && it
->hpos
== 0);
7356 /* Let next call to line_bottom_y calculate real line height */
7361 move_it_to (it
, -1, -1, -1, it
->vpos
+ dvpos
, MOVE_TO_VPOS
);
7362 if (!IT_POS_VALID_AFTER_MOVE_P (it
))
7363 move_it_to (it
, IT_CHARPOS (*it
) + 1, -1, -1, -1, MOVE_TO_POS
);
7368 int start_charpos
, i
;
7370 /* Start at the beginning of the screen line containing IT's
7371 position. This may actually move vertically backwards,
7372 in case of overlays, so adjust dvpos accordingly. */
7374 move_it_vertically_backward (it
, 0);
7377 /* Go back -DVPOS visible lines and reseat the iterator there. */
7378 start_charpos
= IT_CHARPOS (*it
);
7379 for (i
= -dvpos
; i
> 0 && IT_CHARPOS (*it
) > BEGV
; --i
)
7380 back_to_previous_visible_line_start (it
);
7381 reseat (it
, it
->current
.pos
, 1);
7383 /* Move further back if we end up in a string or an image. */
7384 while (!IT_POS_VALID_AFTER_MOVE_P (it
))
7386 /* First try to move to start of display line. */
7388 move_it_vertically_backward (it
, 0);
7390 if (IT_POS_VALID_AFTER_MOVE_P (it
))
7392 /* If start of line is still in string or image,
7393 move further back. */
7394 back_to_previous_visible_line_start (it
);
7395 reseat (it
, it
->current
.pos
, 1);
7399 it
->current_x
= it
->hpos
= 0;
7401 /* Above call may have moved too far if continuation lines
7402 are involved. Scan forward and see if it did. */
7404 it2
.vpos
= it2
.current_y
= 0;
7405 move_it_to (&it2
, start_charpos
, -1, -1, -1, MOVE_TO_POS
);
7406 it
->vpos
-= it2
.vpos
;
7407 it
->current_y
-= it2
.current_y
;
7408 it
->current_x
= it
->hpos
= 0;
7410 /* If we moved too far back, move IT some lines forward. */
7411 if (it2
.vpos
> -dvpos
)
7413 int delta
= it2
.vpos
+ dvpos
;
7415 move_it_to (it
, -1, -1, -1, it
->vpos
+ delta
, MOVE_TO_VPOS
);
7416 /* Move back again if we got too far ahead. */
7417 if (IT_CHARPOS (*it
) >= start_charpos
)
7423 /* Return 1 if IT points into the middle of a display vector. */
7426 in_display_vector_p (it
)
7429 return (it
->method
== GET_FROM_DISPLAY_VECTOR
7430 && it
->current
.dpvec_index
> 0
7431 && it
->dpvec
+ it
->current
.dpvec_index
!= it
->dpend
);
7435 /***********************************************************************
7437 ***********************************************************************/
7440 /* Add a message with format string FORMAT and arguments ARG1 and ARG2
7444 add_to_log (format
, arg1
, arg2
)
7446 Lisp_Object arg1
, arg2
;
7448 Lisp_Object args
[3];
7449 Lisp_Object msg
, fmt
;
7452 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
7455 /* Do nothing if called asynchronously. Inserting text into
7456 a buffer may call after-change-functions and alike and
7457 that would means running Lisp asynchronously. */
7458 if (handling_signal
)
7462 GCPRO4 (fmt
, msg
, arg1
, arg2
);
7464 args
[0] = fmt
= build_string (format
);
7467 msg
= Fformat (3, args
);
7469 len
= SBYTES (msg
) + 1;
7470 SAFE_ALLOCA (buffer
, char *, len
);
7471 bcopy (SDATA (msg
), buffer
, len
);
7473 message_dolog (buffer
, len
- 1, 1, 0);
7480 /* Output a newline in the *Messages* buffer if "needs" one. */
7483 message_log_maybe_newline ()
7485 if (message_log_need_newline
)
7486 message_dolog ("", 0, 1, 0);
7490 /* Add a string M of length NBYTES to the message log, optionally
7491 terminated with a newline when NLFLAG is non-zero. MULTIBYTE, if
7492 nonzero, means interpret the contents of M as multibyte. This
7493 function calls low-level routines in order to bypass text property
7494 hooks, etc. which might not be safe to run.
7496 This may GC (insert may run before/after change hooks),
7497 so the buffer M must NOT point to a Lisp string. */
7500 message_dolog (m
, nbytes
, nlflag
, multibyte
)
7502 int nbytes
, nlflag
, multibyte
;
7504 if (!NILP (Vmemory_full
))
7507 if (!NILP (Vmessage_log_max
))
7509 struct buffer
*oldbuf
;
7510 Lisp_Object oldpoint
, oldbegv
, oldzv
;
7511 int old_windows_or_buffers_changed
= windows_or_buffers_changed
;
7512 int point_at_end
= 0;
7514 Lisp_Object old_deactivate_mark
, tem
;
7515 struct gcpro gcpro1
;
7517 old_deactivate_mark
= Vdeactivate_mark
;
7518 oldbuf
= current_buffer
;
7519 Fset_buffer (Fget_buffer_create (Vmessages_buffer_name
));
7520 current_buffer
->undo_list
= Qt
;
7522 oldpoint
= message_dolog_marker1
;
7523 set_marker_restricted (oldpoint
, make_number (PT
), Qnil
);
7524 oldbegv
= message_dolog_marker2
;
7525 set_marker_restricted (oldbegv
, make_number (BEGV
), Qnil
);
7526 oldzv
= message_dolog_marker3
;
7527 set_marker_restricted (oldzv
, make_number (ZV
), Qnil
);
7528 GCPRO1 (old_deactivate_mark
);
7536 BEGV_BYTE
= BEG_BYTE
;
7539 TEMP_SET_PT_BOTH (Z
, Z_BYTE
);
7541 /* Insert the string--maybe converting multibyte to single byte
7542 or vice versa, so that all the text fits the buffer. */
7544 && NILP (current_buffer
->enable_multibyte_characters
))
7546 int i
, c
, char_bytes
;
7547 unsigned char work
[1];
7549 /* Convert a multibyte string to single-byte
7550 for the *Message* buffer. */
7551 for (i
= 0; i
< nbytes
; i
+= char_bytes
)
7553 c
= string_char_and_length (m
+ i
, nbytes
- i
, &char_bytes
);
7554 work
[0] = (ASCII_CHAR_P (c
)
7556 : multibyte_char_to_unibyte (c
, Qnil
));
7557 insert_1_both (work
, 1, 1, 1, 0, 0);
7560 else if (! multibyte
7561 && ! NILP (current_buffer
->enable_multibyte_characters
))
7563 int i
, c
, char_bytes
;
7564 unsigned char *msg
= (unsigned char *) m
;
7565 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
7566 /* Convert a single-byte string to multibyte
7567 for the *Message* buffer. */
7568 for (i
= 0; i
< nbytes
; i
++)
7571 c
= unibyte_char_to_multibyte (c
);
7572 char_bytes
= CHAR_STRING (c
, str
);
7573 insert_1_both (str
, 1, char_bytes
, 1, 0, 0);
7577 insert_1 (m
, nbytes
, 1, 0, 0);
7581 int this_bol
, this_bol_byte
, prev_bol
, prev_bol_byte
, dup
;
7582 insert_1 ("\n", 1, 1, 0, 0);
7584 scan_newline (Z
, Z_BYTE
, BEG
, BEG_BYTE
, -2, 0);
7586 this_bol_byte
= PT_BYTE
;
7588 /* See if this line duplicates the previous one.
7589 If so, combine duplicates. */
7592 scan_newline (PT
, PT_BYTE
, BEG
, BEG_BYTE
, -2, 0);
7594 prev_bol_byte
= PT_BYTE
;
7596 dup
= message_log_check_duplicate (prev_bol
, prev_bol_byte
,
7597 this_bol
, this_bol_byte
);
7600 del_range_both (prev_bol
, prev_bol_byte
,
7601 this_bol
, this_bol_byte
, 0);
7607 /* If you change this format, don't forget to also
7608 change message_log_check_duplicate. */
7609 sprintf (dupstr
, " [%d times]", dup
);
7610 duplen
= strlen (dupstr
);
7611 TEMP_SET_PT_BOTH (Z
- 1, Z_BYTE
- 1);
7612 insert_1 (dupstr
, duplen
, 1, 0, 1);
7617 /* If we have more than the desired maximum number of lines
7618 in the *Messages* buffer now, delete the oldest ones.
7619 This is safe because we don't have undo in this buffer. */
7621 if (NATNUMP (Vmessage_log_max
))
7623 scan_newline (Z
, Z_BYTE
, BEG
, BEG_BYTE
,
7624 -XFASTINT (Vmessage_log_max
) - 1, 0);
7625 del_range_both (BEG
, BEG_BYTE
, PT
, PT_BYTE
, 0);
7628 BEGV
= XMARKER (oldbegv
)->charpos
;
7629 BEGV_BYTE
= marker_byte_position (oldbegv
);
7638 ZV
= XMARKER (oldzv
)->charpos
;
7639 ZV_BYTE
= marker_byte_position (oldzv
);
7643 TEMP_SET_PT_BOTH (Z
, Z_BYTE
);
7645 /* We can't do Fgoto_char (oldpoint) because it will run some
7647 TEMP_SET_PT_BOTH (XMARKER (oldpoint
)->charpos
,
7648 XMARKER (oldpoint
)->bytepos
);
7651 unchain_marker (XMARKER (oldpoint
));
7652 unchain_marker (XMARKER (oldbegv
));
7653 unchain_marker (XMARKER (oldzv
));
7655 tem
= Fget_buffer_window (Fcurrent_buffer (), Qt
);
7656 set_buffer_internal (oldbuf
);
7658 windows_or_buffers_changed
= old_windows_or_buffers_changed
;
7659 message_log_need_newline
= !nlflag
;
7660 Vdeactivate_mark
= old_deactivate_mark
;
7665 /* We are at the end of the buffer after just having inserted a newline.
7666 (Note: We depend on the fact we won't be crossing the gap.)
7667 Check to see if the most recent message looks a lot like the previous one.
7668 Return 0 if different, 1 if the new one should just replace it, or a
7669 value N > 1 if we should also append " [N times]". */
7672 message_log_check_duplicate (prev_bol
, prev_bol_byte
, this_bol
, this_bol_byte
)
7673 int prev_bol
, this_bol
;
7674 int prev_bol_byte
, this_bol_byte
;
7677 int len
= Z_BYTE
- 1 - this_bol_byte
;
7679 unsigned char *p1
= BUF_BYTE_ADDRESS (current_buffer
, prev_bol_byte
);
7680 unsigned char *p2
= BUF_BYTE_ADDRESS (current_buffer
, this_bol_byte
);
7682 for (i
= 0; i
< len
; i
++)
7684 if (i
>= 3 && p1
[i
-3] == '.' && p1
[i
-2] == '.' && p1
[i
-1] == '.')
7692 if (*p1
++ == ' ' && *p1
++ == '[')
7695 while (*p1
>= '0' && *p1
<= '9')
7696 n
= n
* 10 + *p1
++ - '0';
7697 if (strncmp (p1
, " times]\n", 8) == 0)
7704 /* Display an echo area message M with a specified length of NBYTES
7705 bytes. The string may include null characters. If M is 0, clear
7706 out any existing message, and let the mini-buffer text show
7709 This may GC, so the buffer M must NOT point to a Lisp string. */
7712 message2 (m
, nbytes
, multibyte
)
7717 /* First flush out any partial line written with print. */
7718 message_log_maybe_newline ();
7720 message_dolog (m
, nbytes
, 1, multibyte
);
7721 message2_nolog (m
, nbytes
, multibyte
);
7725 /* The non-logging counterpart of message2. */
7728 message2_nolog (m
, nbytes
, multibyte
)
7730 int nbytes
, multibyte
;
7732 struct frame
*sf
= SELECTED_FRAME ();
7733 message_enable_multibyte
= multibyte
;
7737 if (noninteractive_need_newline
)
7738 putc ('\n', stderr
);
7739 noninteractive_need_newline
= 0;
7741 fwrite (m
, nbytes
, 1, stderr
);
7742 if (cursor_in_echo_area
== 0)
7743 fprintf (stderr
, "\n");
7746 /* A null message buffer means that the frame hasn't really been
7747 initialized yet. Error messages get reported properly by
7748 cmd_error, so this must be just an informative message; toss it. */
7749 else if (INTERACTIVE
7750 && sf
->glyphs_initialized_p
7751 && FRAME_MESSAGE_BUF (sf
))
7753 Lisp_Object mini_window
;
7756 /* Get the frame containing the mini-buffer
7757 that the selected frame is using. */
7758 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
7759 f
= XFRAME (WINDOW_FRAME (XWINDOW (mini_window
)));
7761 FRAME_SAMPLE_VISIBILITY (f
);
7762 if (FRAME_VISIBLE_P (sf
)
7763 && ! FRAME_VISIBLE_P (f
))
7764 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (mini_window
)));
7768 set_message (m
, Qnil
, nbytes
, multibyte
);
7769 if (minibuffer_auto_raise
)
7770 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window
)));
7773 clear_message (1, 1);
7775 do_pending_window_change (0);
7776 echo_area_display (1);
7777 do_pending_window_change (0);
7778 if (FRAME_TERMINAL (f
)->frame_up_to_date_hook
!= 0 && ! gc_in_progress
)
7779 (*FRAME_TERMINAL (f
)->frame_up_to_date_hook
) (f
);
7784 /* Display an echo area message M with a specified length of NBYTES
7785 bytes. The string may include null characters. If M is not a
7786 string, clear out any existing message, and let the mini-buffer
7789 This function cancels echoing. */
7792 message3 (m
, nbytes
, multibyte
)
7797 struct gcpro gcpro1
;
7800 clear_message (1,1);
7803 /* First flush out any partial line written with print. */
7804 message_log_maybe_newline ();
7810 SAFE_ALLOCA (buffer
, char *, nbytes
);
7811 bcopy (SDATA (m
), buffer
, nbytes
);
7812 message_dolog (buffer
, nbytes
, 1, multibyte
);
7815 message3_nolog (m
, nbytes
, multibyte
);
7821 /* The non-logging version of message3.
7822 This does not cancel echoing, because it is used for echoing.
7823 Perhaps we need to make a separate function for echoing
7824 and make this cancel echoing. */
7827 message3_nolog (m
, nbytes
, multibyte
)
7829 int nbytes
, multibyte
;
7831 struct frame
*sf
= SELECTED_FRAME ();
7832 message_enable_multibyte
= multibyte
;
7836 if (noninteractive_need_newline
)
7837 putc ('\n', stderr
);
7838 noninteractive_need_newline
= 0;
7840 fwrite (SDATA (m
), nbytes
, 1, stderr
);
7841 if (cursor_in_echo_area
== 0)
7842 fprintf (stderr
, "\n");
7845 /* A null message buffer means that the frame hasn't really been
7846 initialized yet. Error messages get reported properly by
7847 cmd_error, so this must be just an informative message; toss it. */
7848 else if (INTERACTIVE
7849 && sf
->glyphs_initialized_p
7850 && FRAME_MESSAGE_BUF (sf
))
7852 Lisp_Object mini_window
;
7856 /* Get the frame containing the mini-buffer
7857 that the selected frame is using. */
7858 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
7859 frame
= XWINDOW (mini_window
)->frame
;
7862 FRAME_SAMPLE_VISIBILITY (f
);
7863 if (FRAME_VISIBLE_P (sf
)
7864 && !FRAME_VISIBLE_P (f
))
7865 Fmake_frame_visible (frame
);
7867 if (STRINGP (m
) && SCHARS (m
) > 0)
7869 set_message (NULL
, m
, nbytes
, multibyte
);
7870 if (minibuffer_auto_raise
)
7871 Fraise_frame (frame
);
7872 /* Assume we are not echoing.
7873 (If we are, echo_now will override this.) */
7874 echo_message_buffer
= Qnil
;
7877 clear_message (1, 1);
7879 do_pending_window_change (0);
7880 echo_area_display (1);
7881 do_pending_window_change (0);
7882 if (FRAME_TERMINAL (f
)->frame_up_to_date_hook
!= 0 && ! gc_in_progress
)
7883 (*FRAME_TERMINAL (f
)->frame_up_to_date_hook
) (f
);
7888 /* Display a null-terminated echo area message M. If M is 0, clear
7889 out any existing message, and let the mini-buffer text show through.
7891 The buffer M must continue to exist until after the echo area gets
7892 cleared or some other message gets displayed there. Do not pass
7893 text that is stored in a Lisp string. Do not pass text in a buffer
7894 that was alloca'd. */
7900 message2 (m
, (m
? strlen (m
) : 0), 0);
7904 /* The non-logging counterpart of message1. */
7910 message2_nolog (m
, (m
? strlen (m
) : 0), 0);
7913 /* Display a message M which contains a single %s
7914 which gets replaced with STRING. */
7917 message_with_string (m
, string
, log
)
7922 CHECK_STRING (string
);
7928 if (noninteractive_need_newline
)
7929 putc ('\n', stderr
);
7930 noninteractive_need_newline
= 0;
7931 fprintf (stderr
, m
, SDATA (string
));
7932 if (cursor_in_echo_area
== 0)
7933 fprintf (stderr
, "\n");
7937 else if (INTERACTIVE
)
7939 /* The frame whose minibuffer we're going to display the message on.
7940 It may be larger than the selected frame, so we need
7941 to use its buffer, not the selected frame's buffer. */
7942 Lisp_Object mini_window
;
7943 struct frame
*f
, *sf
= SELECTED_FRAME ();
7945 /* Get the frame containing the minibuffer
7946 that the selected frame is using. */
7947 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
7948 f
= XFRAME (WINDOW_FRAME (XWINDOW (mini_window
)));
7950 /* A null message buffer means that the frame hasn't really been
7951 initialized yet. Error messages get reported properly by
7952 cmd_error, so this must be just an informative message; toss it. */
7953 if (FRAME_MESSAGE_BUF (f
))
7955 Lisp_Object args
[2], message
;
7956 struct gcpro gcpro1
, gcpro2
;
7958 args
[0] = build_string (m
);
7959 args
[1] = message
= string
;
7960 GCPRO2 (args
[0], message
);
7963 message
= Fformat (2, args
);
7966 message3 (message
, SBYTES (message
), STRING_MULTIBYTE (message
));
7968 message3_nolog (message
, SBYTES (message
), STRING_MULTIBYTE (message
));
7972 /* Print should start at the beginning of the message
7973 buffer next time. */
7974 message_buf_print
= 0;
7980 /* Dump an informative message to the minibuf. If M is 0, clear out
7981 any existing message, and let the mini-buffer text show through. */
7985 message (m
, a1
, a2
, a3
)
7987 EMACS_INT a1
, a2
, a3
;
7993 if (noninteractive_need_newline
)
7994 putc ('\n', stderr
);
7995 noninteractive_need_newline
= 0;
7996 fprintf (stderr
, m
, a1
, a2
, a3
);
7997 if (cursor_in_echo_area
== 0)
7998 fprintf (stderr
, "\n");
8002 else if (INTERACTIVE
)
8004 /* The frame whose mini-buffer we're going to display the message
8005 on. It may be larger than the selected frame, so we need to
8006 use its buffer, not the selected frame's buffer. */
8007 Lisp_Object mini_window
;
8008 struct frame
*f
, *sf
= SELECTED_FRAME ();
8010 /* Get the frame containing the mini-buffer
8011 that the selected frame is using. */
8012 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
8013 f
= XFRAME (WINDOW_FRAME (XWINDOW (mini_window
)));
8015 /* A null message buffer means that the frame hasn't really been
8016 initialized yet. Error messages get reported properly by
8017 cmd_error, so this must be just an informative message; toss
8019 if (FRAME_MESSAGE_BUF (f
))
8030 len
= doprnt (FRAME_MESSAGE_BUF (f
),
8031 FRAME_MESSAGE_BUF_SIZE (f
), m
, (char *)0, 3, a
);
8033 len
= doprnt (FRAME_MESSAGE_BUF (f
),
8034 FRAME_MESSAGE_BUF_SIZE (f
), m
, (char *)0, 3,
8036 #endif /* NO_ARG_ARRAY */
8038 message2 (FRAME_MESSAGE_BUF (f
), len
, 0);
8043 /* Print should start at the beginning of the message
8044 buffer next time. */
8045 message_buf_print
= 0;
8051 /* The non-logging version of message. */
8054 message_nolog (m
, a1
, a2
, a3
)
8056 EMACS_INT a1
, a2
, a3
;
8058 Lisp_Object old_log_max
;
8059 old_log_max
= Vmessage_log_max
;
8060 Vmessage_log_max
= Qnil
;
8061 message (m
, a1
, a2
, a3
);
8062 Vmessage_log_max
= old_log_max
;
8066 /* Display the current message in the current mini-buffer. This is
8067 only called from error handlers in process.c, and is not time
8073 if (!NILP (echo_area_buffer
[0]))
8076 string
= Fcurrent_message ();
8077 message3 (string
, SBYTES (string
),
8078 !NILP (current_buffer
->enable_multibyte_characters
));
8083 /* Make sure echo area buffers in `echo_buffers' are live.
8084 If they aren't, make new ones. */
8087 ensure_echo_area_buffers ()
8091 for (i
= 0; i
< 2; ++i
)
8092 if (!BUFFERP (echo_buffer
[i
])
8093 || NILP (XBUFFER (echo_buffer
[i
])->name
))
8096 Lisp_Object old_buffer
;
8099 old_buffer
= echo_buffer
[i
];
8100 sprintf (name
, " *Echo Area %d*", i
);
8101 echo_buffer
[i
] = Fget_buffer_create (build_string (name
));
8102 XBUFFER (echo_buffer
[i
])->truncate_lines
= Qnil
;
8104 for (j
= 0; j
< 2; ++j
)
8105 if (EQ (old_buffer
, echo_area_buffer
[j
]))
8106 echo_area_buffer
[j
] = echo_buffer
[i
];
8111 /* Call FN with args A1..A4 with either the current or last displayed
8112 echo_area_buffer as current buffer.
8114 WHICH zero means use the current message buffer
8115 echo_area_buffer[0]. If that is nil, choose a suitable buffer
8116 from echo_buffer[] and clear it.
8118 WHICH > 0 means use echo_area_buffer[1]. If that is nil, choose a
8119 suitable buffer from echo_buffer[] and clear it.
8121 If WHICH < 0, set echo_area_buffer[1] to echo_area_buffer[0], so
8122 that the current message becomes the last displayed one, make
8123 choose a suitable buffer for echo_area_buffer[0], and clear it.
8125 Value is what FN returns. */
8128 with_echo_area_buffer (w
, which
, fn
, a1
, a2
, a3
, a4
)
8131 int (*fn
) P_ ((EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
));
8137 int this_one
, the_other
, clear_buffer_p
, rc
;
8138 int count
= SPECPDL_INDEX ();
8140 /* If buffers aren't live, make new ones. */
8141 ensure_echo_area_buffers ();
8146 this_one
= 0, the_other
= 1;
8148 this_one
= 1, the_other
= 0;
8151 this_one
= 0, the_other
= 1;
8154 /* We need a fresh one in case the current echo buffer equals
8155 the one containing the last displayed echo area message. */
8156 if (!NILP (echo_area_buffer
[this_one
])
8157 && EQ (echo_area_buffer
[this_one
], echo_area_buffer
[the_other
]))
8158 echo_area_buffer
[this_one
] = Qnil
;
8161 /* Choose a suitable buffer from echo_buffer[] is we don't
8163 if (NILP (echo_area_buffer
[this_one
]))
8165 echo_area_buffer
[this_one
]
8166 = (EQ (echo_area_buffer
[the_other
], echo_buffer
[this_one
])
8167 ? echo_buffer
[the_other
]
8168 : echo_buffer
[this_one
]);
8172 buffer
= echo_area_buffer
[this_one
];
8174 /* Don't get confused by reusing the buffer used for echoing
8175 for a different purpose. */
8176 if (echo_kboard
== NULL
&& EQ (buffer
, echo_message_buffer
))
8179 record_unwind_protect (unwind_with_echo_area_buffer
,
8180 with_echo_area_buffer_unwind_data (w
));
8182 /* Make the echo area buffer current. Note that for display
8183 purposes, it is not necessary that the displayed window's buffer
8184 == current_buffer, except for text property lookup. So, let's
8185 only set that buffer temporarily here without doing a full
8186 Fset_window_buffer. We must also change w->pointm, though,
8187 because otherwise an assertions in unshow_buffer fails, and Emacs
8189 set_buffer_internal_1 (XBUFFER (buffer
));
8193 set_marker_both (w
->pointm
, buffer
, BEG
, BEG_BYTE
);
8196 current_buffer
->undo_list
= Qt
;
8197 current_buffer
->read_only
= Qnil
;
8198 specbind (Qinhibit_read_only
, Qt
);
8199 specbind (Qinhibit_modification_hooks
, Qt
);
8201 if (clear_buffer_p
&& Z
> BEG
)
8204 xassert (BEGV
>= BEG
);
8205 xassert (ZV
<= Z
&& ZV
>= BEGV
);
8207 rc
= fn (a1
, a2
, a3
, a4
);
8209 xassert (BEGV
>= BEG
);
8210 xassert (ZV
<= Z
&& ZV
>= BEGV
);
8212 unbind_to (count
, Qnil
);
8217 /* Save state that should be preserved around the call to the function
8218 FN called in with_echo_area_buffer. */
8221 with_echo_area_buffer_unwind_data (w
)
8225 Lisp_Object vector
, tmp
;
8227 /* Reduce consing by keeping one vector in
8228 Vwith_echo_area_save_vector. */
8229 vector
= Vwith_echo_area_save_vector
;
8230 Vwith_echo_area_save_vector
= Qnil
;
8233 vector
= Fmake_vector (make_number (7), Qnil
);
8235 XSETBUFFER (tmp
, current_buffer
); ASET (vector
, i
, tmp
); ++i
;
8236 ASET (vector
, i
, Vdeactivate_mark
); ++i
;
8237 ASET (vector
, i
, make_number (windows_or_buffers_changed
)); ++i
;
8241 XSETWINDOW (tmp
, w
); ASET (vector
, i
, tmp
); ++i
;
8242 ASET (vector
, i
, w
->buffer
); ++i
;
8243 ASET (vector
, i
, make_number (XMARKER (w
->pointm
)->charpos
)); ++i
;
8244 ASET (vector
, i
, make_number (XMARKER (w
->pointm
)->bytepos
)); ++i
;
8249 for (; i
< end
; ++i
)
8250 ASET (vector
, i
, Qnil
);
8253 xassert (i
== ASIZE (vector
));
8258 /* Restore global state from VECTOR which was created by
8259 with_echo_area_buffer_unwind_data. */
8262 unwind_with_echo_area_buffer (vector
)
8265 set_buffer_internal_1 (XBUFFER (AREF (vector
, 0)));
8266 Vdeactivate_mark
= AREF (vector
, 1);
8267 windows_or_buffers_changed
= XFASTINT (AREF (vector
, 2));
8269 if (WINDOWP (AREF (vector
, 3)))
8272 Lisp_Object buffer
, charpos
, bytepos
;
8274 w
= XWINDOW (AREF (vector
, 3));
8275 buffer
= AREF (vector
, 4);
8276 charpos
= AREF (vector
, 5);
8277 bytepos
= AREF (vector
, 6);
8280 set_marker_both (w
->pointm
, buffer
,
8281 XFASTINT (charpos
), XFASTINT (bytepos
));
8284 Vwith_echo_area_save_vector
= vector
;
8289 /* Set up the echo area for use by print functions. MULTIBYTE_P
8290 non-zero means we will print multibyte. */
8293 setup_echo_area_for_printing (multibyte_p
)
8296 /* If we can't find an echo area any more, exit. */
8297 if (! FRAME_LIVE_P (XFRAME (selected_frame
)))
8300 ensure_echo_area_buffers ();
8302 if (!message_buf_print
)
8304 /* A message has been output since the last time we printed.
8305 Choose a fresh echo area buffer. */
8306 if (EQ (echo_area_buffer
[1], echo_buffer
[0]))
8307 echo_area_buffer
[0] = echo_buffer
[1];
8309 echo_area_buffer
[0] = echo_buffer
[0];
8311 /* Switch to that buffer and clear it. */
8312 set_buffer_internal (XBUFFER (echo_area_buffer
[0]));
8313 current_buffer
->truncate_lines
= Qnil
;
8317 int count
= SPECPDL_INDEX ();
8318 specbind (Qinhibit_read_only
, Qt
);
8319 /* Note that undo recording is always disabled. */
8321 unbind_to (count
, Qnil
);
8323 TEMP_SET_PT_BOTH (BEG
, BEG_BYTE
);
8325 /* Set up the buffer for the multibyteness we need. */
8327 != !NILP (current_buffer
->enable_multibyte_characters
))
8328 Fset_buffer_multibyte (multibyte_p
? Qt
: Qnil
);
8330 /* Raise the frame containing the echo area. */
8331 if (minibuffer_auto_raise
)
8333 struct frame
*sf
= SELECTED_FRAME ();
8334 Lisp_Object mini_window
;
8335 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
8336 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window
)));
8339 message_log_maybe_newline ();
8340 message_buf_print
= 1;
8344 if (NILP (echo_area_buffer
[0]))
8346 if (EQ (echo_area_buffer
[1], echo_buffer
[0]))
8347 echo_area_buffer
[0] = echo_buffer
[1];
8349 echo_area_buffer
[0] = echo_buffer
[0];
8352 if (current_buffer
!= XBUFFER (echo_area_buffer
[0]))
8354 /* Someone switched buffers between print requests. */
8355 set_buffer_internal (XBUFFER (echo_area_buffer
[0]));
8356 current_buffer
->truncate_lines
= Qnil
;
8362 /* Display an echo area message in window W. Value is non-zero if W's
8363 height is changed. If display_last_displayed_message_p is
8364 non-zero, display the message that was last displayed, otherwise
8365 display the current message. */
8368 display_echo_area (w
)
8371 int i
, no_message_p
, window_height_changed_p
, count
;
8373 /* Temporarily disable garbage collections while displaying the echo
8374 area. This is done because a GC can print a message itself.
8375 That message would modify the echo area buffer's contents while a
8376 redisplay of the buffer is going on, and seriously confuse
8378 count
= inhibit_garbage_collection ();
8380 /* If there is no message, we must call display_echo_area_1
8381 nevertheless because it resizes the window. But we will have to
8382 reset the echo_area_buffer in question to nil at the end because
8383 with_echo_area_buffer will sets it to an empty buffer. */
8384 i
= display_last_displayed_message_p
? 1 : 0;
8385 no_message_p
= NILP (echo_area_buffer
[i
]);
8387 window_height_changed_p
8388 = with_echo_area_buffer (w
, display_last_displayed_message_p
,
8389 display_echo_area_1
,
8390 (EMACS_INT
) w
, Qnil
, 0, 0);
8393 echo_area_buffer
[i
] = Qnil
;
8395 unbind_to (count
, Qnil
);
8396 return window_height_changed_p
;
8400 /* Helper for display_echo_area. Display the current buffer which
8401 contains the current echo area message in window W, a mini-window,
8402 a pointer to which is passed in A1. A2..A4 are currently not used.
8403 Change the height of W so that all of the message is displayed.
8404 Value is non-zero if height of W was changed. */
8407 display_echo_area_1 (a1
, a2
, a3
, a4
)
8412 struct window
*w
= (struct window
*) a1
;
8414 struct text_pos start
;
8415 int window_height_changed_p
= 0;
8417 /* Do this before displaying, so that we have a large enough glyph
8418 matrix for the display. If we can't get enough space for the
8419 whole text, display the last N lines. That works by setting w->start. */
8420 window_height_changed_p
= resize_mini_window (w
, 0);
8422 /* Use the starting position chosen by resize_mini_window. */
8423 SET_TEXT_POS_FROM_MARKER (start
, w
->start
);
8426 clear_glyph_matrix (w
->desired_matrix
);
8427 XSETWINDOW (window
, w
);
8428 try_window (window
, start
, 0);
8430 return window_height_changed_p
;
8434 /* Resize the echo area window to exactly the size needed for the
8435 currently displayed message, if there is one. If a mini-buffer
8436 is active, don't shrink it. */
8439 resize_echo_area_exactly ()
8441 if (BUFFERP (echo_area_buffer
[0])
8442 && WINDOWP (echo_area_window
))
8444 struct window
*w
= XWINDOW (echo_area_window
);
8446 Lisp_Object resize_exactly
;
8448 if (minibuf_level
== 0)
8449 resize_exactly
= Qt
;
8451 resize_exactly
= Qnil
;
8453 resized_p
= with_echo_area_buffer (w
, 0, resize_mini_window_1
,
8454 (EMACS_INT
) w
, resize_exactly
, 0, 0);
8457 ++windows_or_buffers_changed
;
8458 ++update_mode_lines
;
8459 redisplay_internal (0);
8465 /* Callback function for with_echo_area_buffer, when used from
8466 resize_echo_area_exactly. A1 contains a pointer to the window to
8467 resize, EXACTLY non-nil means resize the mini-window exactly to the
8468 size of the text displayed. A3 and A4 are not used. Value is what
8469 resize_mini_window returns. */
8472 resize_mini_window_1 (a1
, exactly
, a3
, a4
)
8474 Lisp_Object exactly
;
8477 return resize_mini_window ((struct window
*) a1
, !NILP (exactly
));
8481 /* Resize mini-window W to fit the size of its contents. EXACT_P
8482 means size the window exactly to the size needed. Otherwise, it's
8483 only enlarged until W's buffer is empty.
8485 Set W->start to the right place to begin display. If the whole
8486 contents fit, start at the beginning. Otherwise, start so as
8487 to make the end of the contents appear. This is particularly
8488 important for y-or-n-p, but seems desirable generally.
8490 Value is non-zero if the window height has been changed. */
8493 resize_mini_window (w
, exact_p
)
8497 struct frame
*f
= XFRAME (w
->frame
);
8498 int window_height_changed_p
= 0;
8500 xassert (MINI_WINDOW_P (w
));
8502 /* By default, start display at the beginning. */
8503 set_marker_both (w
->start
, w
->buffer
,
8504 BUF_BEGV (XBUFFER (w
->buffer
)),
8505 BUF_BEGV_BYTE (XBUFFER (w
->buffer
)));
8507 /* Don't resize windows while redisplaying a window; it would
8508 confuse redisplay functions when the size of the window they are
8509 displaying changes from under them. Such a resizing can happen,
8510 for instance, when which-func prints a long message while
8511 we are running fontification-functions. We're running these
8512 functions with safe_call which binds inhibit-redisplay to t. */
8513 if (!NILP (Vinhibit_redisplay
))
8516 /* Nil means don't try to resize. */
8517 if (NILP (Vresize_mini_windows
)
8518 || (FRAME_X_P (f
) && FRAME_X_OUTPUT (f
) == NULL
))
8521 if (!FRAME_MINIBUF_ONLY_P (f
))
8524 struct window
*root
= XWINDOW (FRAME_ROOT_WINDOW (f
));
8525 int total_height
= WINDOW_TOTAL_LINES (root
) + WINDOW_TOTAL_LINES (w
);
8526 int height
, max_height
;
8527 int unit
= FRAME_LINE_HEIGHT (f
);
8528 struct text_pos start
;
8529 struct buffer
*old_current_buffer
= NULL
;
8531 if (current_buffer
!= XBUFFER (w
->buffer
))
8533 old_current_buffer
= current_buffer
;
8534 set_buffer_internal (XBUFFER (w
->buffer
));
8537 init_iterator (&it
, w
, BEGV
, BEGV_BYTE
, NULL
, DEFAULT_FACE_ID
);
8539 /* Compute the max. number of lines specified by the user. */
8540 if (FLOATP (Vmax_mini_window_height
))
8541 max_height
= XFLOATINT (Vmax_mini_window_height
) * FRAME_LINES (f
);
8542 else if (INTEGERP (Vmax_mini_window_height
))
8543 max_height
= XINT (Vmax_mini_window_height
);
8545 max_height
= total_height
/ 4;
8547 /* Correct that max. height if it's bogus. */
8548 max_height
= max (1, max_height
);
8549 max_height
= min (total_height
, max_height
);
8551 /* Find out the height of the text in the window. */
8552 if (it
.truncate_lines_p
)
8557 move_it_to (&it
, ZV
, -1, -1, -1, MOVE_TO_POS
);
8558 if (it
.max_ascent
== 0 && it
.max_descent
== 0)
8559 height
= it
.current_y
+ last_height
;
8561 height
= it
.current_y
+ it
.max_ascent
+ it
.max_descent
;
8562 height
-= min (it
.extra_line_spacing
, it
.max_extra_line_spacing
);
8563 height
= (height
+ unit
- 1) / unit
;
8566 /* Compute a suitable window start. */
8567 if (height
> max_height
)
8569 height
= max_height
;
8570 init_iterator (&it
, w
, ZV
, ZV_BYTE
, NULL
, DEFAULT_FACE_ID
);
8571 move_it_vertically_backward (&it
, (height
- 1) * unit
);
8572 start
= it
.current
.pos
;
8575 SET_TEXT_POS (start
, BEGV
, BEGV_BYTE
);
8576 SET_MARKER_FROM_TEXT_POS (w
->start
, start
);
8578 if (EQ (Vresize_mini_windows
, Qgrow_only
))
8580 /* Let it grow only, until we display an empty message, in which
8581 case the window shrinks again. */
8582 if (height
> WINDOW_TOTAL_LINES (w
))
8584 int old_height
= WINDOW_TOTAL_LINES (w
);
8585 freeze_window_starts (f
, 1);
8586 grow_mini_window (w
, height
- WINDOW_TOTAL_LINES (w
));
8587 window_height_changed_p
= WINDOW_TOTAL_LINES (w
) != old_height
;
8589 else if (height
< WINDOW_TOTAL_LINES (w
)
8590 && (exact_p
|| BEGV
== ZV
))
8592 int old_height
= WINDOW_TOTAL_LINES (w
);
8593 freeze_window_starts (f
, 0);
8594 shrink_mini_window (w
);
8595 window_height_changed_p
= WINDOW_TOTAL_LINES (w
) != old_height
;
8600 /* Always resize to exact size needed. */
8601 if (height
> WINDOW_TOTAL_LINES (w
))
8603 int old_height
= WINDOW_TOTAL_LINES (w
);
8604 freeze_window_starts (f
, 1);
8605 grow_mini_window (w
, height
- WINDOW_TOTAL_LINES (w
));
8606 window_height_changed_p
= WINDOW_TOTAL_LINES (w
) != old_height
;
8608 else if (height
< WINDOW_TOTAL_LINES (w
))
8610 int old_height
= WINDOW_TOTAL_LINES (w
);
8611 freeze_window_starts (f
, 0);
8612 shrink_mini_window (w
);
8616 freeze_window_starts (f
, 1);
8617 grow_mini_window (w
, height
- WINDOW_TOTAL_LINES (w
));
8620 window_height_changed_p
= WINDOW_TOTAL_LINES (w
) != old_height
;
8624 if (old_current_buffer
)
8625 set_buffer_internal (old_current_buffer
);
8628 return window_height_changed_p
;
8632 /* Value is the current message, a string, or nil if there is no
8640 if (NILP (echo_area_buffer
[0]))
8644 with_echo_area_buffer (0, 0, current_message_1
,
8645 (EMACS_INT
) &msg
, Qnil
, 0, 0);
8647 echo_area_buffer
[0] = Qnil
;
8655 current_message_1 (a1
, a2
, a3
, a4
)
8660 Lisp_Object
*msg
= (Lisp_Object
*) a1
;
8663 *msg
= make_buffer_string (BEG
, Z
, 1);
8670 /* Push the current message on Vmessage_stack for later restauration
8671 by restore_message. Value is non-zero if the current message isn't
8672 empty. This is a relatively infrequent operation, so it's not
8673 worth optimizing. */
8679 msg
= current_message ();
8680 Vmessage_stack
= Fcons (msg
, Vmessage_stack
);
8681 return STRINGP (msg
);
8685 /* Restore message display from the top of Vmessage_stack. */
8692 xassert (CONSP (Vmessage_stack
));
8693 msg
= XCAR (Vmessage_stack
);
8695 message3_nolog (msg
, SBYTES (msg
), STRING_MULTIBYTE (msg
));
8697 message3_nolog (msg
, 0, 0);
8701 /* Handler for record_unwind_protect calling pop_message. */
8704 pop_message_unwind (dummy
)
8711 /* Pop the top-most entry off Vmessage_stack. */
8716 xassert (CONSP (Vmessage_stack
));
8717 Vmessage_stack
= XCDR (Vmessage_stack
);
8721 /* Check that Vmessage_stack is nil. Called from emacs.c when Emacs
8722 exits. If the stack is not empty, we have a missing pop_message
8726 check_message_stack ()
8728 if (!NILP (Vmessage_stack
))
8733 /* Truncate to NCHARS what will be displayed in the echo area the next
8734 time we display it---but don't redisplay it now. */
8737 truncate_echo_area (nchars
)
8741 echo_area_buffer
[0] = Qnil
;
8742 /* A null message buffer means that the frame hasn't really been
8743 initialized yet. Error messages get reported properly by
8744 cmd_error, so this must be just an informative message; toss it. */
8745 else if (!noninteractive
8747 && !NILP (echo_area_buffer
[0]))
8749 struct frame
*sf
= SELECTED_FRAME ();
8750 if (FRAME_MESSAGE_BUF (sf
))
8751 with_echo_area_buffer (0, 0, truncate_message_1
, nchars
, Qnil
, 0, 0);
8756 /* Helper function for truncate_echo_area. Truncate the current
8757 message to at most NCHARS characters. */
8760 truncate_message_1 (nchars
, a2
, a3
, a4
)
8765 if (BEG
+ nchars
< Z
)
8766 del_range (BEG
+ nchars
, Z
);
8768 echo_area_buffer
[0] = Qnil
;
8773 /* Set the current message to a substring of S or STRING.
8775 If STRING is a Lisp string, set the message to the first NBYTES
8776 bytes from STRING. NBYTES zero means use the whole string. If
8777 STRING is multibyte, the message will be displayed multibyte.
8779 If S is not null, set the message to the first LEN bytes of S. LEN
8780 zero means use the whole string. MULTIBYTE_P non-zero means S is
8781 multibyte. Display the message multibyte in that case.
8783 Doesn't GC, as with_echo_area_buffer binds Qinhibit_modification_hooks
8784 to t before calling set_message_1 (which calls insert).
8788 set_message (s
, string
, nbytes
, multibyte_p
)
8791 int nbytes
, multibyte_p
;
8793 message_enable_multibyte
8794 = ((s
&& multibyte_p
)
8795 || (STRINGP (string
) && STRING_MULTIBYTE (string
)));
8797 with_echo_area_buffer (0, -1, set_message_1
,
8798 (EMACS_INT
) s
, string
, nbytes
, multibyte_p
);
8799 message_buf_print
= 0;
8800 help_echo_showing_p
= 0;
8804 /* Helper function for set_message. Arguments have the same meaning
8805 as there, with A1 corresponding to S and A2 corresponding to STRING
8806 This function is called with the echo area buffer being
8810 set_message_1 (a1
, a2
, nbytes
, multibyte_p
)
8813 EMACS_INT nbytes
, multibyte_p
;
8815 const char *s
= (const char *) a1
;
8816 Lisp_Object string
= a2
;
8818 /* Change multibyteness of the echo buffer appropriately. */
8819 if (message_enable_multibyte
8820 != !NILP (current_buffer
->enable_multibyte_characters
))
8821 Fset_buffer_multibyte (message_enable_multibyte
? Qt
: Qnil
);
8823 current_buffer
->truncate_lines
= message_truncate_lines
? Qt
: Qnil
;
8825 /* Insert new message at BEG. */
8826 TEMP_SET_PT_BOTH (BEG
, BEG_BYTE
);
8828 if (STRINGP (string
))
8833 nbytes
= SBYTES (string
);
8834 nchars
= string_byte_to_char (string
, nbytes
);
8836 /* This function takes care of single/multibyte conversion. We
8837 just have to ensure that the echo area buffer has the right
8838 setting of enable_multibyte_characters. */
8839 insert_from_string (string
, 0, 0, nchars
, nbytes
, 1);
8844 nbytes
= strlen (s
);
8846 if (multibyte_p
&& NILP (current_buffer
->enable_multibyte_characters
))
8848 /* Convert from multi-byte to single-byte. */
8850 unsigned char work
[1];
8852 /* Convert a multibyte string to single-byte. */
8853 for (i
= 0; i
< nbytes
; i
+= n
)
8855 c
= string_char_and_length (s
+ i
, nbytes
- i
, &n
);
8856 work
[0] = (ASCII_CHAR_P (c
)
8858 : multibyte_char_to_unibyte (c
, Qnil
));
8859 insert_1_both (work
, 1, 1, 1, 0, 0);
8862 else if (!multibyte_p
8863 && !NILP (current_buffer
->enable_multibyte_characters
))
8865 /* Convert from single-byte to multi-byte. */
8867 const unsigned char *msg
= (const unsigned char *) s
;
8868 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
8870 /* Convert a single-byte string to multibyte. */
8871 for (i
= 0; i
< nbytes
; i
++)
8874 c
= unibyte_char_to_multibyte (c
);
8875 n
= CHAR_STRING (c
, str
);
8876 insert_1_both (str
, 1, n
, 1, 0, 0);
8880 insert_1 (s
, nbytes
, 1, 0, 0);
8887 /* Clear messages. CURRENT_P non-zero means clear the current
8888 message. LAST_DISPLAYED_P non-zero means clear the message
8892 clear_message (current_p
, last_displayed_p
)
8893 int current_p
, last_displayed_p
;
8897 echo_area_buffer
[0] = Qnil
;
8898 message_cleared_p
= 1;
8901 if (last_displayed_p
)
8902 echo_area_buffer
[1] = Qnil
;
8904 message_buf_print
= 0;
8907 /* Clear garbaged frames.
8909 This function is used where the old redisplay called
8910 redraw_garbaged_frames which in turn called redraw_frame which in
8911 turn called clear_frame. The call to clear_frame was a source of
8912 flickering. I believe a clear_frame is not necessary. It should
8913 suffice in the new redisplay to invalidate all current matrices,
8914 and ensure a complete redisplay of all windows. */
8917 clear_garbaged_frames ()
8921 Lisp_Object tail
, frame
;
8922 int changed_count
= 0;
8924 FOR_EACH_FRAME (tail
, frame
)
8926 struct frame
*f
= XFRAME (frame
);
8928 if (FRAME_VISIBLE_P (f
) && FRAME_GARBAGED_P (f
))
8932 Fredraw_frame (frame
);
8933 f
->force_flush_display_p
= 1;
8935 clear_current_matrices (f
);
8944 ++windows_or_buffers_changed
;
8949 /* Redisplay the echo area of the selected frame. If UPDATE_FRAME_P
8950 is non-zero update selected_frame. Value is non-zero if the
8951 mini-windows height has been changed. */
8954 echo_area_display (update_frame_p
)
8957 Lisp_Object mini_window
;
8960 int window_height_changed_p
= 0;
8961 struct frame
*sf
= SELECTED_FRAME ();
8963 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
8964 w
= XWINDOW (mini_window
);
8965 f
= XFRAME (WINDOW_FRAME (w
));
8967 /* Don't display if frame is invisible or not yet initialized. */
8968 if (!FRAME_VISIBLE_P (f
) || !f
->glyphs_initialized_p
)
8971 #ifdef HAVE_WINDOW_SYSTEM
8972 /* When Emacs starts, selected_frame may be the initial terminal
8973 frame. If we let this through, a message would be displayed on
8975 if (FRAME_INITIAL_P (XFRAME (selected_frame
)))
8977 #endif /* HAVE_WINDOW_SYSTEM */
8979 /* Redraw garbaged frames. */
8981 clear_garbaged_frames ();
8983 if (!NILP (echo_area_buffer
[0]) || minibuf_level
== 0)
8985 echo_area_window
= mini_window
;
8986 window_height_changed_p
= display_echo_area (w
);
8987 w
->must_be_updated_p
= 1;
8989 /* Update the display, unless called from redisplay_internal.
8990 Also don't update the screen during redisplay itself. The
8991 update will happen at the end of redisplay, and an update
8992 here could cause confusion. */
8993 if (update_frame_p
&& !redisplaying_p
)
8997 /* If the display update has been interrupted by pending
8998 input, update mode lines in the frame. Due to the
8999 pending input, it might have been that redisplay hasn't
9000 been called, so that mode lines above the echo area are
9001 garbaged. This looks odd, so we prevent it here. */
9002 if (!display_completed
)
9003 n
= redisplay_mode_lines (FRAME_ROOT_WINDOW (f
), 0);
9005 if (window_height_changed_p
9006 /* Don't do this if Emacs is shutting down. Redisplay
9007 needs to run hooks. */
9008 && !NILP (Vrun_hooks
))
9010 /* Must update other windows. Likewise as in other
9011 cases, don't let this update be interrupted by
9013 int count
= SPECPDL_INDEX ();
9014 specbind (Qredisplay_dont_pause
, Qt
);
9015 windows_or_buffers_changed
= 1;
9016 redisplay_internal (0);
9017 unbind_to (count
, Qnil
);
9019 else if (FRAME_WINDOW_P (f
) && n
== 0)
9021 /* Window configuration is the same as before.
9022 Can do with a display update of the echo area,
9023 unless we displayed some mode lines. */
9024 update_single_window (w
, 1);
9025 FRAME_RIF (f
)->flush_display (f
);
9028 update_frame (f
, 1, 1);
9030 /* If cursor is in the echo area, make sure that the next
9031 redisplay displays the minibuffer, so that the cursor will
9032 be replaced with what the minibuffer wants. */
9033 if (cursor_in_echo_area
)
9034 ++windows_or_buffers_changed
;
9037 else if (!EQ (mini_window
, selected_window
))
9038 windows_or_buffers_changed
++;
9040 /* Last displayed message is now the current message. */
9041 echo_area_buffer
[1] = echo_area_buffer
[0];
9042 /* Inform read_char that we're not echoing. */
9043 echo_message_buffer
= Qnil
;
9045 /* Prevent redisplay optimization in redisplay_internal by resetting
9046 this_line_start_pos. This is done because the mini-buffer now
9047 displays the message instead of its buffer text. */
9048 if (EQ (mini_window
, selected_window
))
9049 CHARPOS (this_line_start_pos
) = 0;
9051 return window_height_changed_p
;
9056 /***********************************************************************
9057 Mode Lines and Frame Titles
9058 ***********************************************************************/
9060 /* A buffer for constructing non-propertized mode-line strings and
9061 frame titles in it; allocated from the heap in init_xdisp and
9062 resized as needed in store_mode_line_noprop_char. */
9064 static char *mode_line_noprop_buf
;
9066 /* The buffer's end, and a current output position in it. */
9068 static char *mode_line_noprop_buf_end
;
9069 static char *mode_line_noprop_ptr
;
9071 #define MODE_LINE_NOPROP_LEN(start) \
9072 ((mode_line_noprop_ptr - mode_line_noprop_buf) - start)
9075 MODE_LINE_DISPLAY
= 0,
9081 /* Alist that caches the results of :propertize.
9082 Each element is (PROPERTIZED-STRING . PROPERTY-LIST). */
9083 static Lisp_Object mode_line_proptrans_alist
;
9085 /* List of strings making up the mode-line. */
9086 static Lisp_Object mode_line_string_list
;
9088 /* Base face property when building propertized mode line string. */
9089 static Lisp_Object mode_line_string_face
;
9090 static Lisp_Object mode_line_string_face_prop
;
9093 /* Unwind data for mode line strings */
9095 static Lisp_Object Vmode_line_unwind_vector
;
9098 format_mode_line_unwind_data (obuf
, save_proptrans
)
9099 struct buffer
*obuf
;
9101 Lisp_Object vector
, tmp
;
9103 /* Reduce consing by keeping one vector in
9104 Vwith_echo_area_save_vector. */
9105 vector
= Vmode_line_unwind_vector
;
9106 Vmode_line_unwind_vector
= Qnil
;
9109 vector
= Fmake_vector (make_number (7), Qnil
);
9111 ASET (vector
, 0, make_number (mode_line_target
));
9112 ASET (vector
, 1, make_number (MODE_LINE_NOPROP_LEN (0)));
9113 ASET (vector
, 2, mode_line_string_list
);
9114 ASET (vector
, 3, save_proptrans
? mode_line_proptrans_alist
: Qt
);
9115 ASET (vector
, 4, mode_line_string_face
);
9116 ASET (vector
, 5, mode_line_string_face_prop
);
9119 XSETBUFFER (tmp
, obuf
);
9122 ASET (vector
, 6, tmp
);
9128 unwind_format_mode_line (vector
)
9131 mode_line_target
= XINT (AREF (vector
, 0));
9132 mode_line_noprop_ptr
= mode_line_noprop_buf
+ XINT (AREF (vector
, 1));
9133 mode_line_string_list
= AREF (vector
, 2);
9134 if (! EQ (AREF (vector
, 3), Qt
))
9135 mode_line_proptrans_alist
= AREF (vector
, 3);
9136 mode_line_string_face
= AREF (vector
, 4);
9137 mode_line_string_face_prop
= AREF (vector
, 5);
9139 if (!NILP (AREF (vector
, 6)))
9141 set_buffer_internal_1 (XBUFFER (AREF (vector
, 6)));
9142 ASET (vector
, 6, Qnil
);
9145 Vmode_line_unwind_vector
= vector
;
9150 /* Store a single character C for the frame title in mode_line_noprop_buf.
9151 Re-allocate mode_line_noprop_buf if necessary. */
9155 store_mode_line_noprop_char (char c
)
9157 store_mode_line_noprop_char (c
)
9161 /* If output position has reached the end of the allocated buffer,
9162 double the buffer's size. */
9163 if (mode_line_noprop_ptr
== mode_line_noprop_buf_end
)
9165 int len
= MODE_LINE_NOPROP_LEN (0);
9166 int new_size
= 2 * len
* sizeof *mode_line_noprop_buf
;
9167 mode_line_noprop_buf
= (char *) xrealloc (mode_line_noprop_buf
, new_size
);
9168 mode_line_noprop_buf_end
= mode_line_noprop_buf
+ new_size
;
9169 mode_line_noprop_ptr
= mode_line_noprop_buf
+ len
;
9172 *mode_line_noprop_ptr
++ = c
;
9176 /* Store part of a frame title in mode_line_noprop_buf, beginning at
9177 mode_line_noprop_ptr. STR is the string to store. Do not copy
9178 characters that yield more columns than PRECISION; PRECISION <= 0
9179 means copy the whole string. Pad with spaces until FIELD_WIDTH
9180 number of characters have been copied; FIELD_WIDTH <= 0 means don't
9181 pad. Called from display_mode_element when it is used to build a
9185 store_mode_line_noprop (str
, field_width
, precision
)
9186 const unsigned char *str
;
9187 int field_width
, precision
;
9192 /* Copy at most PRECISION chars from STR. */
9193 nbytes
= strlen (str
);
9194 n
+= c_string_width (str
, nbytes
, precision
, &dummy
, &nbytes
);
9196 store_mode_line_noprop_char (*str
++);
9198 /* Fill up with spaces until FIELD_WIDTH reached. */
9199 while (field_width
> 0
9202 store_mode_line_noprop_char (' ');
9209 /***********************************************************************
9211 ***********************************************************************/
9213 #ifdef HAVE_WINDOW_SYSTEM
9215 /* Set the title of FRAME, if it has changed. The title format is
9216 Vicon_title_format if FRAME is iconified, otherwise it is
9217 frame_title_format. */
9220 x_consider_frame_title (frame
)
9223 struct frame
*f
= XFRAME (frame
);
9225 if (FRAME_WINDOW_P (f
)
9226 || FRAME_MINIBUF_ONLY_P (f
)
9227 || f
->explicit_name
)
9229 /* Do we have more than one visible frame on this X display? */
9236 int count
= SPECPDL_INDEX ();
9238 for (tail
= Vframe_list
; CONSP (tail
); tail
= XCDR (tail
))
9240 Lisp_Object other_frame
= XCAR (tail
);
9241 struct frame
*tf
= XFRAME (other_frame
);
9244 && FRAME_KBOARD (tf
) == FRAME_KBOARD (f
)
9245 && !FRAME_MINIBUF_ONLY_P (tf
)
9246 && !EQ (other_frame
, tip_frame
)
9247 && (FRAME_VISIBLE_P (tf
) || FRAME_ICONIFIED_P (tf
)))
9251 /* Set global variable indicating that multiple frames exist. */
9252 multiple_frames
= CONSP (tail
);
9254 /* Switch to the buffer of selected window of the frame. Set up
9255 mode_line_target so that display_mode_element will output into
9256 mode_line_noprop_buf; then display the title. */
9257 record_unwind_protect (unwind_format_mode_line
,
9258 format_mode_line_unwind_data (current_buffer
, 0));
9260 set_buffer_internal_1 (XBUFFER (XWINDOW (f
->selected_window
)->buffer
));
9261 fmt
= FRAME_ICONIFIED_P (f
) ? Vicon_title_format
: Vframe_title_format
;
9263 mode_line_target
= MODE_LINE_TITLE
;
9264 title_start
= MODE_LINE_NOPROP_LEN (0);
9265 init_iterator (&it
, XWINDOW (f
->selected_window
), -1, -1,
9266 NULL
, DEFAULT_FACE_ID
);
9267 display_mode_element (&it
, 0, -1, -1, fmt
, Qnil
, 0);
9268 len
= MODE_LINE_NOPROP_LEN (title_start
);
9269 title
= mode_line_noprop_buf
+ title_start
;
9270 unbind_to (count
, Qnil
);
9272 /* Set the title only if it's changed. This avoids consing in
9273 the common case where it hasn't. (If it turns out that we've
9274 already wasted too much time by walking through the list with
9275 display_mode_element, then we might need to optimize at a
9276 higher level than this.) */
9277 if (! STRINGP (f
->name
)
9278 || SBYTES (f
->name
) != len
9279 || bcmp (title
, SDATA (f
->name
), len
) != 0)
9280 x_implicitly_set_name (f
, make_string (title
, len
), Qnil
);
9284 #endif /* not HAVE_WINDOW_SYSTEM */
9289 /***********************************************************************
9291 ***********************************************************************/
9294 /* Prepare for redisplay by updating menu-bar item lists when
9295 appropriate. This can call eval. */
9298 prepare_menu_bars ()
9301 struct gcpro gcpro1
, gcpro2
;
9303 Lisp_Object tooltip_frame
;
9305 #ifdef HAVE_WINDOW_SYSTEM
9306 tooltip_frame
= tip_frame
;
9308 tooltip_frame
= Qnil
;
9311 /* Update all frame titles based on their buffer names, etc. We do
9312 this before the menu bars so that the buffer-menu will show the
9313 up-to-date frame titles. */
9314 #ifdef HAVE_WINDOW_SYSTEM
9315 if (windows_or_buffers_changed
|| update_mode_lines
)
9317 Lisp_Object tail
, frame
;
9319 FOR_EACH_FRAME (tail
, frame
)
9322 if (!EQ (frame
, tooltip_frame
)
9323 && (FRAME_VISIBLE_P (f
) || FRAME_ICONIFIED_P (f
)))
9324 x_consider_frame_title (frame
);
9327 #endif /* HAVE_WINDOW_SYSTEM */
9329 /* Update the menu bar item lists, if appropriate. This has to be
9330 done before any actual redisplay or generation of display lines. */
9331 all_windows
= (update_mode_lines
9332 || buffer_shared
> 1
9333 || windows_or_buffers_changed
);
9336 Lisp_Object tail
, frame
;
9337 int count
= SPECPDL_INDEX ();
9338 /* 1 means that update_menu_bar has run its hooks
9339 so any further calls to update_menu_bar shouldn't do so again. */
9340 int menu_bar_hooks_run
= 0;
9342 record_unwind_save_match_data ();
9344 FOR_EACH_FRAME (tail
, frame
)
9348 /* Ignore tooltip frame. */
9349 if (EQ (frame
, tooltip_frame
))
9352 /* If a window on this frame changed size, report that to
9353 the user and clear the size-change flag. */
9354 if (FRAME_WINDOW_SIZES_CHANGED (f
))
9356 Lisp_Object functions
;
9358 /* Clear flag first in case we get an error below. */
9359 FRAME_WINDOW_SIZES_CHANGED (f
) = 0;
9360 functions
= Vwindow_size_change_functions
;
9361 GCPRO2 (tail
, functions
);
9363 while (CONSP (functions
))
9365 call1 (XCAR (functions
), frame
);
9366 functions
= XCDR (functions
);
9372 menu_bar_hooks_run
= update_menu_bar (f
, 0, menu_bar_hooks_run
);
9373 #ifdef HAVE_WINDOW_SYSTEM
9374 update_tool_bar (f
, 0);
9376 mac_update_title_bar (f
, 0);
9382 unbind_to (count
, Qnil
);
9386 struct frame
*sf
= SELECTED_FRAME ();
9387 update_menu_bar (sf
, 1, 0);
9388 #ifdef HAVE_WINDOW_SYSTEM
9389 update_tool_bar (sf
, 1);
9391 mac_update_title_bar (sf
, 1);
9396 /* Motif needs this. See comment in xmenu.c. Turn it off when
9397 pending_menu_activation is not defined. */
9398 #ifdef USE_X_TOOLKIT
9399 pending_menu_activation
= 0;
9404 /* Update the menu bar item list for frame F. This has to be done
9405 before we start to fill in any display lines, because it can call
9408 If SAVE_MATCH_DATA is non-zero, we must save and restore it here.
9410 If HOOKS_RUN is 1, that means a previous call to update_menu_bar
9411 already ran the menu bar hooks for this redisplay, so there
9412 is no need to run them again. The return value is the
9413 updated value of this flag, to pass to the next call. */
9416 update_menu_bar (f
, save_match_data
, hooks_run
)
9418 int save_match_data
;
9422 register struct window
*w
;
9424 /* If called recursively during a menu update, do nothing. This can
9425 happen when, for instance, an activate-menubar-hook causes a
9427 if (inhibit_menubar_update
)
9430 window
= FRAME_SELECTED_WINDOW (f
);
9431 w
= XWINDOW (window
);
9433 #if 0 /* The if statement below this if statement used to include the
9434 condition !NILP (w->update_mode_line), rather than using
9435 update_mode_lines directly, and this if statement may have
9436 been added to make that condition work. Now the if
9437 statement below matches its comment, this isn't needed. */
9438 if (update_mode_lines
)
9439 w
->update_mode_line
= Qt
;
9442 if (FRAME_WINDOW_P (f
)
9444 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
9445 || defined (USE_GTK)
9446 FRAME_EXTERNAL_MENU_BAR (f
)
9448 FRAME_MENU_BAR_LINES (f
) > 0
9450 : FRAME_MENU_BAR_LINES (f
) > 0)
9452 /* If the user has switched buffers or windows, we need to
9453 recompute to reflect the new bindings. But we'll
9454 recompute when update_mode_lines is set too; that means
9455 that people can use force-mode-line-update to request
9456 that the menu bar be recomputed. The adverse effect on
9457 the rest of the redisplay algorithm is about the same as
9458 windows_or_buffers_changed anyway. */
9459 if (windows_or_buffers_changed
9460 /* This used to test w->update_mode_line, but we believe
9461 there is no need to recompute the menu in that case. */
9462 || update_mode_lines
9463 || ((BUF_SAVE_MODIFF (XBUFFER (w
->buffer
))
9464 < BUF_MODIFF (XBUFFER (w
->buffer
)))
9465 != !NILP (w
->last_had_star
))
9466 || ((!NILP (Vtransient_mark_mode
)
9467 && !NILP (XBUFFER (w
->buffer
)->mark_active
))
9468 != !NILP (w
->region_showing
)))
9470 struct buffer
*prev
= current_buffer
;
9471 int count
= SPECPDL_INDEX ();
9473 specbind (Qinhibit_menubar_update
, Qt
);
9475 set_buffer_internal_1 (XBUFFER (w
->buffer
));
9476 if (save_match_data
)
9477 record_unwind_save_match_data ();
9478 if (NILP (Voverriding_local_map_menu_flag
))
9480 specbind (Qoverriding_terminal_local_map
, Qnil
);
9481 specbind (Qoverriding_local_map
, Qnil
);
9486 /* Run the Lucid hook. */
9487 safe_run_hooks (Qactivate_menubar_hook
);
9489 /* If it has changed current-menubar from previous value,
9490 really recompute the menu-bar from the value. */
9491 if (! NILP (Vlucid_menu_bar_dirty_flag
))
9492 call0 (Qrecompute_lucid_menubar
);
9494 safe_run_hooks (Qmenu_bar_update_hook
);
9499 XSETFRAME (Vmenu_updating_frame
, f
);
9500 FRAME_MENU_BAR_ITEMS (f
) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f
));
9502 /* Redisplay the menu bar in case we changed it. */
9503 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
9504 || defined (USE_GTK)
9505 if (FRAME_WINDOW_P (f
))
9508 /* All frames on Mac OS share the same menubar. So only
9509 the selected frame should be allowed to set it. */
9510 if (f
== SELECTED_FRAME ())
9512 set_frame_menubar (f
, 0, 0);
9515 /* On a terminal screen, the menu bar is an ordinary screen
9516 line, and this makes it get updated. */
9517 w
->update_mode_line
= Qt
;
9518 #else /* ! (USE_X_TOOLKIT || HAVE_NTGUI || MAC_OS || USE_GTK) */
9519 /* In the non-toolkit version, the menu bar is an ordinary screen
9520 line, and this makes it get updated. */
9521 w
->update_mode_line
= Qt
;
9522 #endif /* ! (USE_X_TOOLKIT || HAVE_NTGUI || MAC_OS || USE_GTK) */
9524 unbind_to (count
, Qnil
);
9525 set_buffer_internal_1 (prev
);
9534 /***********************************************************************
9536 ***********************************************************************/
9538 #ifdef HAVE_WINDOW_SYSTEM
9541 Nominal cursor position -- where to draw output.
9542 HPOS and VPOS are window relative glyph matrix coordinates.
9543 X and Y are window relative pixel coordinates. */
9545 struct cursor_pos output_cursor
;
9549 Set the global variable output_cursor to CURSOR. All cursor
9550 positions are relative to updated_window. */
9553 set_output_cursor (cursor
)
9554 struct cursor_pos
*cursor
;
9556 output_cursor
.hpos
= cursor
->hpos
;
9557 output_cursor
.vpos
= cursor
->vpos
;
9558 output_cursor
.x
= cursor
->x
;
9559 output_cursor
.y
= cursor
->y
;
9564 Set a nominal cursor position.
9566 HPOS and VPOS are column/row positions in a window glyph matrix. X
9567 and Y are window text area relative pixel positions.
9569 If this is done during an update, updated_window will contain the
9570 window that is being updated and the position is the future output
9571 cursor position for that window. If updated_window is null, use
9572 selected_window and display the cursor at the given position. */
9575 x_cursor_to (vpos
, hpos
, y
, x
)
9576 int vpos
, hpos
, y
, x
;
9580 /* If updated_window is not set, work on selected_window. */
9584 w
= XWINDOW (selected_window
);
9586 /* Set the output cursor. */
9587 output_cursor
.hpos
= hpos
;
9588 output_cursor
.vpos
= vpos
;
9589 output_cursor
.x
= x
;
9590 output_cursor
.y
= y
;
9592 /* If not called as part of an update, really display the cursor.
9593 This will also set the cursor position of W. */
9594 if (updated_window
== NULL
)
9597 display_and_set_cursor (w
, 1, hpos
, vpos
, x
, y
);
9598 if (FRAME_RIF (SELECTED_FRAME ())->flush_display_optional
)
9599 FRAME_RIF (SELECTED_FRAME ())->flush_display_optional (SELECTED_FRAME ());
9604 #endif /* HAVE_WINDOW_SYSTEM */
9607 /***********************************************************************
9609 ***********************************************************************/
9611 #ifdef HAVE_WINDOW_SYSTEM
9613 /* Where the mouse was last time we reported a mouse event. */
9615 FRAME_PTR last_mouse_frame
;
9617 /* Tool-bar item index of the item on which a mouse button was pressed
9620 int last_tool_bar_item
;
9623 /* Update the tool-bar item list for frame F. This has to be done
9624 before we start to fill in any display lines. Called from
9625 prepare_menu_bars. If SAVE_MATCH_DATA is non-zero, we must save
9626 and restore it here. */
9629 update_tool_bar (f
, save_match_data
)
9631 int save_match_data
;
9633 #if defined (USE_GTK) || USE_MAC_TOOLBAR
9634 int do_update
= FRAME_EXTERNAL_TOOL_BAR (f
);
9636 int do_update
= WINDOWP (f
->tool_bar_window
)
9637 && WINDOW_TOTAL_LINES (XWINDOW (f
->tool_bar_window
)) > 0;
9645 window
= FRAME_SELECTED_WINDOW (f
);
9646 w
= XWINDOW (window
);
9648 /* If the user has switched buffers or windows, we need to
9649 recompute to reflect the new bindings. But we'll
9650 recompute when update_mode_lines is set too; that means
9651 that people can use force-mode-line-update to request
9652 that the menu bar be recomputed. The adverse effect on
9653 the rest of the redisplay algorithm is about the same as
9654 windows_or_buffers_changed anyway. */
9655 if (windows_or_buffers_changed
9656 || !NILP (w
->update_mode_line
)
9657 || update_mode_lines
9658 || ((BUF_SAVE_MODIFF (XBUFFER (w
->buffer
))
9659 < BUF_MODIFF (XBUFFER (w
->buffer
)))
9660 != !NILP (w
->last_had_star
))
9661 || ((!NILP (Vtransient_mark_mode
)
9662 && !NILP (XBUFFER (w
->buffer
)->mark_active
))
9663 != !NILP (w
->region_showing
)))
9665 struct buffer
*prev
= current_buffer
;
9666 int count
= SPECPDL_INDEX ();
9667 Lisp_Object new_tool_bar
;
9669 struct gcpro gcpro1
;
9671 /* Set current_buffer to the buffer of the selected
9672 window of the frame, so that we get the right local
9674 set_buffer_internal_1 (XBUFFER (w
->buffer
));
9676 /* Save match data, if we must. */
9677 if (save_match_data
)
9678 record_unwind_save_match_data ();
9680 /* Make sure that we don't accidentally use bogus keymaps. */
9681 if (NILP (Voverriding_local_map_menu_flag
))
9683 specbind (Qoverriding_terminal_local_map
, Qnil
);
9684 specbind (Qoverriding_local_map
, Qnil
);
9687 GCPRO1 (new_tool_bar
);
9689 /* Build desired tool-bar items from keymaps. */
9690 new_tool_bar
= tool_bar_items (Fcopy_sequence (f
->tool_bar_items
),
9693 /* Redisplay the tool-bar if we changed it. */
9694 if (new_n_tool_bar
!= f
->n_tool_bar_items
9695 || NILP (Fequal (new_tool_bar
, f
->tool_bar_items
)))
9697 /* Redisplay that happens asynchronously due to an expose event
9698 may access f->tool_bar_items. Make sure we update both
9699 variables within BLOCK_INPUT so no such event interrupts. */
9701 f
->tool_bar_items
= new_tool_bar
;
9702 f
->n_tool_bar_items
= new_n_tool_bar
;
9703 w
->update_mode_line
= Qt
;
9709 unbind_to (count
, Qnil
);
9710 set_buffer_internal_1 (prev
);
9716 /* Set F->desired_tool_bar_string to a Lisp string representing frame
9717 F's desired tool-bar contents. F->tool_bar_items must have
9718 been set up previously by calling prepare_menu_bars. */
9721 build_desired_tool_bar_string (f
)
9724 int i
, size
, size_needed
;
9725 struct gcpro gcpro1
, gcpro2
, gcpro3
;
9726 Lisp_Object image
, plist
, props
;
9728 image
= plist
= props
= Qnil
;
9729 GCPRO3 (image
, plist
, props
);
9731 /* Prepare F->desired_tool_bar_string. If we can reuse it, do so.
9732 Otherwise, make a new string. */
9734 /* The size of the string we might be able to reuse. */
9735 size
= (STRINGP (f
->desired_tool_bar_string
)
9736 ? SCHARS (f
->desired_tool_bar_string
)
9739 /* We need one space in the string for each image. */
9740 size_needed
= f
->n_tool_bar_items
;
9742 /* Reuse f->desired_tool_bar_string, if possible. */
9743 if (size
< size_needed
|| NILP (f
->desired_tool_bar_string
))
9744 f
->desired_tool_bar_string
= Fmake_string (make_number (size_needed
),
9748 props
= list4 (Qdisplay
, Qnil
, Qmenu_item
, Qnil
);
9749 Fremove_text_properties (make_number (0), make_number (size
),
9750 props
, f
->desired_tool_bar_string
);
9753 /* Put a `display' property on the string for the images to display,
9754 put a `menu_item' property on tool-bar items with a value that
9755 is the index of the item in F's tool-bar item vector. */
9756 for (i
= 0; i
< f
->n_tool_bar_items
; ++i
)
9758 #define PROP(IDX) AREF (f->tool_bar_items, i * TOOL_BAR_ITEM_NSLOTS + (IDX))
9760 int enabled_p
= !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P
));
9761 int selected_p
= !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P
));
9762 int hmargin
, vmargin
, relief
, idx
, end
;
9763 extern Lisp_Object QCrelief
, QCmargin
, QCconversion
;
9765 /* If image is a vector, choose the image according to the
9767 image
= PROP (TOOL_BAR_ITEM_IMAGES
);
9768 if (VECTORP (image
))
9772 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
9773 : TOOL_BAR_IMAGE_ENABLED_DESELECTED
);
9776 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
9777 : TOOL_BAR_IMAGE_DISABLED_DESELECTED
);
9779 xassert (ASIZE (image
) >= idx
);
9780 image
= AREF (image
, idx
);
9785 /* Ignore invalid image specifications. */
9786 if (!valid_image_p (image
))
9789 /* Display the tool-bar button pressed, or depressed. */
9790 plist
= Fcopy_sequence (XCDR (image
));
9792 /* Compute margin and relief to draw. */
9793 relief
= (tool_bar_button_relief
>= 0
9794 ? tool_bar_button_relief
9795 : DEFAULT_TOOL_BAR_BUTTON_RELIEF
);
9796 hmargin
= vmargin
= relief
;
9798 if (INTEGERP (Vtool_bar_button_margin
)
9799 && XINT (Vtool_bar_button_margin
) > 0)
9801 hmargin
+= XFASTINT (Vtool_bar_button_margin
);
9802 vmargin
+= XFASTINT (Vtool_bar_button_margin
);
9804 else if (CONSP (Vtool_bar_button_margin
))
9806 if (INTEGERP (XCAR (Vtool_bar_button_margin
))
9807 && XINT (XCAR (Vtool_bar_button_margin
)) > 0)
9808 hmargin
+= XFASTINT (XCAR (Vtool_bar_button_margin
));
9810 if (INTEGERP (XCDR (Vtool_bar_button_margin
))
9811 && XINT (XCDR (Vtool_bar_button_margin
)) > 0)
9812 vmargin
+= XFASTINT (XCDR (Vtool_bar_button_margin
));
9815 if (auto_raise_tool_bar_buttons_p
)
9817 /* Add a `:relief' property to the image spec if the item is
9821 plist
= Fplist_put (plist
, QCrelief
, make_number (-relief
));
9828 /* If image is selected, display it pressed, i.e. with a
9829 negative relief. If it's not selected, display it with a
9831 plist
= Fplist_put (plist
, QCrelief
,
9833 ? make_number (-relief
)
9834 : make_number (relief
)));
9839 /* Put a margin around the image. */
9840 if (hmargin
|| vmargin
)
9842 if (hmargin
== vmargin
)
9843 plist
= Fplist_put (plist
, QCmargin
, make_number (hmargin
));
9845 plist
= Fplist_put (plist
, QCmargin
,
9846 Fcons (make_number (hmargin
),
9847 make_number (vmargin
)));
9850 /* If button is not enabled, and we don't have special images
9851 for the disabled state, make the image appear disabled by
9852 applying an appropriate algorithm to it. */
9853 if (!enabled_p
&& idx
< 0)
9854 plist
= Fplist_put (plist
, QCconversion
, Qdisabled
);
9856 /* Put a `display' text property on the string for the image to
9857 display. Put a `menu-item' property on the string that gives
9858 the start of this item's properties in the tool-bar items
9860 image
= Fcons (Qimage
, plist
);
9861 props
= list4 (Qdisplay
, image
,
9862 Qmenu_item
, make_number (i
* TOOL_BAR_ITEM_NSLOTS
));
9864 /* Let the last image hide all remaining spaces in the tool bar
9865 string. The string can be longer than needed when we reuse a
9867 if (i
+ 1 == f
->n_tool_bar_items
)
9868 end
= SCHARS (f
->desired_tool_bar_string
);
9871 Fadd_text_properties (make_number (i
), make_number (end
),
9872 props
, f
->desired_tool_bar_string
);
9880 /* Display one line of the tool-bar of frame IT->f.
9882 HEIGHT specifies the desired height of the tool-bar line.
9883 If the actual height of the glyph row is less than HEIGHT, the
9884 row's height is increased to HEIGHT, and the icons are centered
9885 vertically in the new height.
9887 If HEIGHT is -1, we are counting needed tool-bar lines, so don't
9888 count a final empty row in case the tool-bar width exactly matches
9893 display_tool_bar_line (it
, height
)
9897 struct glyph_row
*row
= it
->glyph_row
;
9898 int max_x
= it
->last_visible_x
;
9901 prepare_desired_row (row
);
9902 row
->y
= it
->current_y
;
9904 /* Note that this isn't made use of if the face hasn't a box,
9905 so there's no need to check the face here. */
9906 it
->start_of_box_run_p
= 1;
9908 while (it
->current_x
< max_x
)
9910 int x
, n_glyphs_before
, i
, nglyphs
;
9911 struct it it_before
;
9913 /* Get the next display element. */
9914 if (!get_next_display_element (it
))
9916 /* Don't count empty row if we are counting needed tool-bar lines. */
9917 if (height
< 0 && !it
->hpos
)
9922 /* Produce glyphs. */
9923 n_glyphs_before
= row
->used
[TEXT_AREA
];
9926 PRODUCE_GLYPHS (it
);
9928 nglyphs
= row
->used
[TEXT_AREA
] - n_glyphs_before
;
9930 x
= it_before
.current_x
;
9933 struct glyph
*glyph
= row
->glyphs
[TEXT_AREA
] + n_glyphs_before
+ i
;
9935 if (x
+ glyph
->pixel_width
> max_x
)
9937 /* Glyph doesn't fit on line. Backtrack. */
9938 row
->used
[TEXT_AREA
] = n_glyphs_before
;
9940 /* If this is the only glyph on this line, it will never fit on the
9941 toolbar, so skip it. But ensure there is at least one glyph,
9942 so we don't accidentally disable the tool-bar. */
9943 if (n_glyphs_before
== 0
9944 && (it
->vpos
> 0 || IT_STRING_CHARPOS (*it
) < it
->end_charpos
-1))
9950 x
+= glyph
->pixel_width
;
9954 /* Stop at line ends. */
9955 if (ITERATOR_AT_END_OF_LINE_P (it
))
9958 set_iterator_to_next (it
, 1);
9963 row
->displays_text_p
= row
->used
[TEXT_AREA
] != 0;
9965 /* Use default face for the border below the tool bar.
9967 FIXME: When auto-resize-tool-bars is grow-only, there is
9968 no additional border below the possibly empty tool-bar lines.
9969 So to make the extra empty lines look "normal", we have to
9970 use the tool-bar face for the border too. */
9971 if (!row
->displays_text_p
&& !EQ (Vauto_resize_tool_bars
, Qgrow_only
))
9972 it
->face_id
= DEFAULT_FACE_ID
;
9974 extend_face_to_end_of_line (it
);
9975 last
= row
->glyphs
[TEXT_AREA
] + row
->used
[TEXT_AREA
] - 1;
9976 last
->right_box_line_p
= 1;
9977 if (last
== row
->glyphs
[TEXT_AREA
])
9978 last
->left_box_line_p
= 1;
9980 /* Make line the desired height and center it vertically. */
9981 if ((height
-= it
->max_ascent
+ it
->max_descent
) > 0)
9983 /* Don't add more than one line height. */
9984 height
%= FRAME_LINE_HEIGHT (it
->f
);
9985 it
->max_ascent
+= height
/ 2;
9986 it
->max_descent
+= (height
+ 1) / 2;
9989 compute_line_metrics (it
);
9991 /* If line is empty, make it occupy the rest of the tool-bar. */
9992 if (!row
->displays_text_p
)
9994 row
->height
= row
->phys_height
= it
->last_visible_y
- row
->y
;
9995 row
->visible_height
= row
->height
;
9996 row
->ascent
= row
->phys_ascent
= 0;
9997 row
->extra_line_spacing
= 0;
10000 row
->full_width_p
= 1;
10001 row
->continued_p
= 0;
10002 row
->truncated_on_left_p
= 0;
10003 row
->truncated_on_right_p
= 0;
10005 it
->current_x
= it
->hpos
= 0;
10006 it
->current_y
+= row
->height
;
10012 /* Max tool-bar height. */
10014 #define MAX_FRAME_TOOL_BAR_HEIGHT(f) \
10015 ((FRAME_LINE_HEIGHT (f) * FRAME_LINES (f)))
10017 /* Value is the number of screen lines needed to make all tool-bar
10018 items of frame F visible. The number of actual rows needed is
10019 returned in *N_ROWS if non-NULL. */
10022 tool_bar_lines_needed (f
, n_rows
)
10026 struct window
*w
= XWINDOW (f
->tool_bar_window
);
10028 /* tool_bar_lines_needed is called from redisplay_tool_bar after building
10029 the desired matrix, so use (unused) mode-line row as temporary row to
10030 avoid destroying the first tool-bar row. */
10031 struct glyph_row
*temp_row
= MATRIX_MODE_LINE_ROW (w
->desired_matrix
);
10033 /* Initialize an iterator for iteration over
10034 F->desired_tool_bar_string in the tool-bar window of frame F. */
10035 init_iterator (&it
, w
, -1, -1, temp_row
, TOOL_BAR_FACE_ID
);
10036 it
.first_visible_x
= 0;
10037 it
.last_visible_x
= FRAME_TOTAL_COLS (f
) * FRAME_COLUMN_WIDTH (f
);
10038 reseat_to_string (&it
, NULL
, f
->desired_tool_bar_string
, 0, 0, 0, -1);
10040 while (!ITERATOR_AT_END_P (&it
))
10042 clear_glyph_row (temp_row
);
10043 it
.glyph_row
= temp_row
;
10044 display_tool_bar_line (&it
, -1);
10046 clear_glyph_row (temp_row
);
10048 /* f->n_tool_bar_rows == 0 means "unknown"; -1 means no tool-bar. */
10050 *n_rows
= it
.vpos
> 0 ? it
.vpos
: -1;
10052 return (it
.current_y
+ FRAME_LINE_HEIGHT (f
) - 1) / FRAME_LINE_HEIGHT (f
);
10056 DEFUN ("tool-bar-lines-needed", Ftool_bar_lines_needed
, Stool_bar_lines_needed
,
10058 doc
: /* Return the number of lines occupied by the tool bar of FRAME. */)
10067 frame
= selected_frame
;
10069 CHECK_FRAME (frame
);
10070 f
= XFRAME (frame
);
10072 if (WINDOWP (f
->tool_bar_window
)
10073 || (w
= XWINDOW (f
->tool_bar_window
),
10074 WINDOW_TOTAL_LINES (w
) > 0))
10076 update_tool_bar (f
, 1);
10077 if (f
->n_tool_bar_items
)
10079 build_desired_tool_bar_string (f
);
10080 nlines
= tool_bar_lines_needed (f
, NULL
);
10084 return make_number (nlines
);
10088 /* Display the tool-bar of frame F. Value is non-zero if tool-bar's
10089 height should be changed. */
10092 redisplay_tool_bar (f
)
10097 struct glyph_row
*row
;
10099 #if defined (USE_GTK) || USE_MAC_TOOLBAR
10100 if (FRAME_EXTERNAL_TOOL_BAR (f
))
10101 update_frame_tool_bar (f
);
10105 /* If frame hasn't a tool-bar window or if it is zero-height, don't
10106 do anything. This means you must start with tool-bar-lines
10107 non-zero to get the auto-sizing effect. Or in other words, you
10108 can turn off tool-bars by specifying tool-bar-lines zero. */
10109 if (!WINDOWP (f
->tool_bar_window
)
10110 || (w
= XWINDOW (f
->tool_bar_window
),
10111 WINDOW_TOTAL_LINES (w
) == 0))
10114 /* Set up an iterator for the tool-bar window. */
10115 init_iterator (&it
, w
, -1, -1, w
->desired_matrix
->rows
, TOOL_BAR_FACE_ID
);
10116 it
.first_visible_x
= 0;
10117 it
.last_visible_x
= FRAME_TOTAL_COLS (f
) * FRAME_COLUMN_WIDTH (f
);
10118 row
= it
.glyph_row
;
10120 /* Build a string that represents the contents of the tool-bar. */
10121 build_desired_tool_bar_string (f
);
10122 reseat_to_string (&it
, NULL
, f
->desired_tool_bar_string
, 0, 0, 0, -1);
10124 if (f
->n_tool_bar_rows
== 0)
10128 if ((nlines
= tool_bar_lines_needed (f
, &f
->n_tool_bar_rows
),
10129 nlines
!= WINDOW_TOTAL_LINES (w
)))
10131 extern Lisp_Object Qtool_bar_lines
;
10133 int old_height
= WINDOW_TOTAL_LINES (w
);
10135 XSETFRAME (frame
, f
);
10136 Fmodify_frame_parameters (frame
,
10137 Fcons (Fcons (Qtool_bar_lines
,
10138 make_number (nlines
)),
10140 if (WINDOW_TOTAL_LINES (w
) != old_height
)
10142 clear_glyph_matrix (w
->desired_matrix
);
10143 fonts_changed_p
= 1;
10149 /* Display as many lines as needed to display all tool-bar items. */
10151 if (f
->n_tool_bar_rows
> 0)
10153 int border
, rows
, height
, extra
;
10155 if (INTEGERP (Vtool_bar_border
))
10156 border
= XINT (Vtool_bar_border
);
10157 else if (EQ (Vtool_bar_border
, Qinternal_border_width
))
10158 border
= FRAME_INTERNAL_BORDER_WIDTH (f
);
10159 else if (EQ (Vtool_bar_border
, Qborder_width
))
10160 border
= f
->border_width
;
10166 rows
= f
->n_tool_bar_rows
;
10167 height
= max (1, (it
.last_visible_y
- border
) / rows
);
10168 extra
= it
.last_visible_y
- border
- height
* rows
;
10170 while (it
.current_y
< it
.last_visible_y
)
10173 if (extra
> 0 && rows
-- > 0)
10175 h
= (extra
+ rows
- 1) / rows
;
10178 display_tool_bar_line (&it
, height
+ h
);
10183 while (it
.current_y
< it
.last_visible_y
)
10184 display_tool_bar_line (&it
, 0);
10187 /* It doesn't make much sense to try scrolling in the tool-bar
10188 window, so don't do it. */
10189 w
->desired_matrix
->no_scrolling_p
= 1;
10190 w
->must_be_updated_p
= 1;
10192 if (!NILP (Vauto_resize_tool_bars
))
10194 int max_tool_bar_height
= MAX_FRAME_TOOL_BAR_HEIGHT (f
);
10195 int change_height_p
= 0;
10197 /* If we couldn't display everything, change the tool-bar's
10198 height if there is room for more. */
10199 if (IT_STRING_CHARPOS (it
) < it
.end_charpos
10200 && it
.current_y
< max_tool_bar_height
)
10201 change_height_p
= 1;
10203 row
= it
.glyph_row
- 1;
10205 /* If there are blank lines at the end, except for a partially
10206 visible blank line at the end that is smaller than
10207 FRAME_LINE_HEIGHT, change the tool-bar's height. */
10208 if (!row
->displays_text_p
10209 && row
->height
>= FRAME_LINE_HEIGHT (f
))
10210 change_height_p
= 1;
10212 /* If row displays tool-bar items, but is partially visible,
10213 change the tool-bar's height. */
10214 if (row
->displays_text_p
10215 && MATRIX_ROW_BOTTOM_Y (row
) > it
.last_visible_y
10216 && MATRIX_ROW_BOTTOM_Y (row
) < max_tool_bar_height
)
10217 change_height_p
= 1;
10219 /* Resize windows as needed by changing the `tool-bar-lines'
10220 frame parameter. */
10221 if (change_height_p
)
10223 extern Lisp_Object Qtool_bar_lines
;
10225 int old_height
= WINDOW_TOTAL_LINES (w
);
10227 int nlines
= tool_bar_lines_needed (f
, &nrows
);
10229 change_height_p
= ((EQ (Vauto_resize_tool_bars
, Qgrow_only
)
10230 && !f
->minimize_tool_bar_window_p
)
10231 ? (nlines
> old_height
)
10232 : (nlines
!= old_height
));
10233 f
->minimize_tool_bar_window_p
= 0;
10235 if (change_height_p
)
10237 XSETFRAME (frame
, f
);
10238 Fmodify_frame_parameters (frame
,
10239 Fcons (Fcons (Qtool_bar_lines
,
10240 make_number (nlines
)),
10242 if (WINDOW_TOTAL_LINES (w
) != old_height
)
10244 clear_glyph_matrix (w
->desired_matrix
);
10245 f
->n_tool_bar_rows
= nrows
;
10246 fonts_changed_p
= 1;
10253 f
->minimize_tool_bar_window_p
= 0;
10258 /* Get information about the tool-bar item which is displayed in GLYPH
10259 on frame F. Return in *PROP_IDX the index where tool-bar item
10260 properties start in F->tool_bar_items. Value is zero if
10261 GLYPH doesn't display a tool-bar item. */
10264 tool_bar_item_info (f
, glyph
, prop_idx
)
10266 struct glyph
*glyph
;
10273 /* This function can be called asynchronously, which means we must
10274 exclude any possibility that Fget_text_property signals an
10276 charpos
= min (SCHARS (f
->current_tool_bar_string
), glyph
->charpos
);
10277 charpos
= max (0, charpos
);
10279 /* Get the text property `menu-item' at pos. The value of that
10280 property is the start index of this item's properties in
10281 F->tool_bar_items. */
10282 prop
= Fget_text_property (make_number (charpos
),
10283 Qmenu_item
, f
->current_tool_bar_string
);
10284 if (INTEGERP (prop
))
10286 *prop_idx
= XINT (prop
);
10296 /* Get information about the tool-bar item at position X/Y on frame F.
10297 Return in *GLYPH a pointer to the glyph of the tool-bar item in
10298 the current matrix of the tool-bar window of F, or NULL if not
10299 on a tool-bar item. Return in *PROP_IDX the index of the tool-bar
10300 item in F->tool_bar_items. Value is
10302 -1 if X/Y is not on a tool-bar item
10303 0 if X/Y is on the same item that was highlighted before.
10307 get_tool_bar_item (f
, x
, y
, glyph
, hpos
, vpos
, prop_idx
)
10310 struct glyph
**glyph
;
10311 int *hpos
, *vpos
, *prop_idx
;
10313 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
10314 struct window
*w
= XWINDOW (f
->tool_bar_window
);
10317 /* Find the glyph under X/Y. */
10318 *glyph
= x_y_to_hpos_vpos (w
, x
, y
, hpos
, vpos
, 0, 0, &area
);
10319 if (*glyph
== NULL
)
10322 /* Get the start of this tool-bar item's properties in
10323 f->tool_bar_items. */
10324 if (!tool_bar_item_info (f
, *glyph
, prop_idx
))
10327 /* Is mouse on the highlighted item? */
10328 if (EQ (f
->tool_bar_window
, dpyinfo
->mouse_face_window
)
10329 && *vpos
>= dpyinfo
->mouse_face_beg_row
10330 && *vpos
<= dpyinfo
->mouse_face_end_row
10331 && (*vpos
> dpyinfo
->mouse_face_beg_row
10332 || *hpos
>= dpyinfo
->mouse_face_beg_col
)
10333 && (*vpos
< dpyinfo
->mouse_face_end_row
10334 || *hpos
< dpyinfo
->mouse_face_end_col
10335 || dpyinfo
->mouse_face_past_end
))
10343 Handle mouse button event on the tool-bar of frame F, at
10344 frame-relative coordinates X/Y. DOWN_P is 1 for a button press,
10345 0 for button release. MODIFIERS is event modifiers for button
10349 handle_tool_bar_click (f
, x
, y
, down_p
, modifiers
)
10352 unsigned int modifiers
;
10354 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
10355 struct window
*w
= XWINDOW (f
->tool_bar_window
);
10356 int hpos
, vpos
, prop_idx
;
10357 struct glyph
*glyph
;
10358 Lisp_Object enabled_p
;
10360 /* If not on the highlighted tool-bar item, return. */
10361 frame_to_window_pixel_xy (w
, &x
, &y
);
10362 if (get_tool_bar_item (f
, x
, y
, &glyph
, &hpos
, &vpos
, &prop_idx
) != 0)
10365 /* If item is disabled, do nothing. */
10366 enabled_p
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_ENABLED_P
);
10367 if (NILP (enabled_p
))
10372 /* Show item in pressed state. */
10373 show_mouse_face (dpyinfo
, DRAW_IMAGE_SUNKEN
);
10374 dpyinfo
->mouse_face_image_state
= DRAW_IMAGE_SUNKEN
;
10375 last_tool_bar_item
= prop_idx
;
10379 Lisp_Object key
, frame
;
10380 struct input_event event
;
10381 EVENT_INIT (event
);
10383 /* Show item in released state. */
10384 show_mouse_face (dpyinfo
, DRAW_IMAGE_RAISED
);
10385 dpyinfo
->mouse_face_image_state
= DRAW_IMAGE_RAISED
;
10387 key
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_KEY
);
10389 XSETFRAME (frame
, f
);
10390 event
.kind
= TOOL_BAR_EVENT
;
10391 event
.frame_or_window
= frame
;
10393 kbd_buffer_store_event (&event
);
10395 event
.kind
= TOOL_BAR_EVENT
;
10396 event
.frame_or_window
= frame
;
10398 event
.modifiers
= modifiers
;
10399 kbd_buffer_store_event (&event
);
10400 last_tool_bar_item
= -1;
10405 /* Possibly highlight a tool-bar item on frame F when mouse moves to
10406 tool-bar window-relative coordinates X/Y. Called from
10407 note_mouse_highlight. */
10410 note_tool_bar_highlight (f
, x
, y
)
10414 Lisp_Object window
= f
->tool_bar_window
;
10415 struct window
*w
= XWINDOW (window
);
10416 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
10418 struct glyph
*glyph
;
10419 struct glyph_row
*row
;
10421 Lisp_Object enabled_p
;
10423 enum draw_glyphs_face draw
= DRAW_IMAGE_RAISED
;
10424 int mouse_down_p
, rc
;
10426 /* Function note_mouse_highlight is called with negative x(y
10427 values when mouse moves outside of the frame. */
10428 if (x
<= 0 || y
<= 0)
10430 clear_mouse_face (dpyinfo
);
10434 rc
= get_tool_bar_item (f
, x
, y
, &glyph
, &hpos
, &vpos
, &prop_idx
);
10437 /* Not on tool-bar item. */
10438 clear_mouse_face (dpyinfo
);
10442 /* On same tool-bar item as before. */
10443 goto set_help_echo
;
10445 clear_mouse_face (dpyinfo
);
10447 /* Mouse is down, but on different tool-bar item? */
10448 mouse_down_p
= (dpyinfo
->grabbed
10449 && f
== last_mouse_frame
10450 && FRAME_LIVE_P (f
));
10452 && last_tool_bar_item
!= prop_idx
)
10455 dpyinfo
->mouse_face_image_state
= DRAW_NORMAL_TEXT
;
10456 draw
= mouse_down_p
? DRAW_IMAGE_SUNKEN
: DRAW_IMAGE_RAISED
;
10458 /* If tool-bar item is not enabled, don't highlight it. */
10459 enabled_p
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_ENABLED_P
);
10460 if (!NILP (enabled_p
))
10462 /* Compute the x-position of the glyph. In front and past the
10463 image is a space. We include this in the highlighted area. */
10464 row
= MATRIX_ROW (w
->current_matrix
, vpos
);
10465 for (i
= x
= 0; i
< hpos
; ++i
)
10466 x
+= row
->glyphs
[TEXT_AREA
][i
].pixel_width
;
10468 /* Record this as the current active region. */
10469 dpyinfo
->mouse_face_beg_col
= hpos
;
10470 dpyinfo
->mouse_face_beg_row
= vpos
;
10471 dpyinfo
->mouse_face_beg_x
= x
;
10472 dpyinfo
->mouse_face_beg_y
= row
->y
;
10473 dpyinfo
->mouse_face_past_end
= 0;
10475 dpyinfo
->mouse_face_end_col
= hpos
+ 1;
10476 dpyinfo
->mouse_face_end_row
= vpos
;
10477 dpyinfo
->mouse_face_end_x
= x
+ glyph
->pixel_width
;
10478 dpyinfo
->mouse_face_end_y
= row
->y
;
10479 dpyinfo
->mouse_face_window
= window
;
10480 dpyinfo
->mouse_face_face_id
= TOOL_BAR_FACE_ID
;
10482 /* Display it as active. */
10483 show_mouse_face (dpyinfo
, draw
);
10484 dpyinfo
->mouse_face_image_state
= draw
;
10489 /* Set help_echo_string to a help string to display for this tool-bar item.
10490 XTread_socket does the rest. */
10491 help_echo_object
= help_echo_window
= Qnil
;
10492 help_echo_pos
= -1;
10493 help_echo_string
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_HELP
);
10494 if (NILP (help_echo_string
))
10495 help_echo_string
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_CAPTION
);
10498 #endif /* HAVE_WINDOW_SYSTEM */
10502 /************************************************************************
10503 Horizontal scrolling
10504 ************************************************************************/
10506 static int hscroll_window_tree
P_ ((Lisp_Object
));
10507 static int hscroll_windows
P_ ((Lisp_Object
));
10509 /* For all leaf windows in the window tree rooted at WINDOW, set their
10510 hscroll value so that PT is (i) visible in the window, and (ii) so
10511 that it is not within a certain margin at the window's left and
10512 right border. Value is non-zero if any window's hscroll has been
10516 hscroll_window_tree (window
)
10517 Lisp_Object window
;
10519 int hscrolled_p
= 0;
10520 int hscroll_relative_p
= FLOATP (Vhscroll_step
);
10521 int hscroll_step_abs
= 0;
10522 double hscroll_step_rel
= 0;
10524 if (hscroll_relative_p
)
10526 hscroll_step_rel
= XFLOAT_DATA (Vhscroll_step
);
10527 if (hscroll_step_rel
< 0)
10529 hscroll_relative_p
= 0;
10530 hscroll_step_abs
= 0;
10533 else if (INTEGERP (Vhscroll_step
))
10535 hscroll_step_abs
= XINT (Vhscroll_step
);
10536 if (hscroll_step_abs
< 0)
10537 hscroll_step_abs
= 0;
10540 hscroll_step_abs
= 0;
10542 while (WINDOWP (window
))
10544 struct window
*w
= XWINDOW (window
);
10546 if (WINDOWP (w
->hchild
))
10547 hscrolled_p
|= hscroll_window_tree (w
->hchild
);
10548 else if (WINDOWP (w
->vchild
))
10549 hscrolled_p
|= hscroll_window_tree (w
->vchild
);
10550 else if (w
->cursor
.vpos
>= 0)
10553 int text_area_width
;
10554 struct glyph_row
*current_cursor_row
10555 = MATRIX_ROW (w
->current_matrix
, w
->cursor
.vpos
);
10556 struct glyph_row
*desired_cursor_row
10557 = MATRIX_ROW (w
->desired_matrix
, w
->cursor
.vpos
);
10558 struct glyph_row
*cursor_row
10559 = (desired_cursor_row
->enabled_p
10560 ? desired_cursor_row
10561 : current_cursor_row
);
10563 text_area_width
= window_box_width (w
, TEXT_AREA
);
10565 /* Scroll when cursor is inside this scroll margin. */
10566 h_margin
= hscroll_margin
* WINDOW_FRAME_COLUMN_WIDTH (w
);
10568 if (!NILP (Fbuffer_local_value (Qauto_hscroll_mode
, w
->buffer
))
10569 && ((XFASTINT (w
->hscroll
)
10570 && w
->cursor
.x
<= h_margin
)
10571 || (cursor_row
->enabled_p
10572 && cursor_row
->truncated_on_right_p
10573 && (w
->cursor
.x
>= text_area_width
- h_margin
))))
10577 struct buffer
*saved_current_buffer
;
10581 /* Find point in a display of infinite width. */
10582 saved_current_buffer
= current_buffer
;
10583 current_buffer
= XBUFFER (w
->buffer
);
10585 if (w
== XWINDOW (selected_window
))
10586 pt
= BUF_PT (current_buffer
);
10589 pt
= marker_position (w
->pointm
);
10590 pt
= max (BEGV
, pt
);
10594 /* Move iterator to pt starting at cursor_row->start in
10595 a line with infinite width. */
10596 init_to_row_start (&it
, w
, cursor_row
);
10597 it
.last_visible_x
= INFINITY
;
10598 move_it_in_display_line_to (&it
, pt
, -1, MOVE_TO_POS
);
10599 current_buffer
= saved_current_buffer
;
10601 /* Position cursor in window. */
10602 if (!hscroll_relative_p
&& hscroll_step_abs
== 0)
10603 hscroll
= max (0, (it
.current_x
10604 - (ITERATOR_AT_END_OF_LINE_P (&it
)
10605 ? (text_area_width
- 4 * FRAME_COLUMN_WIDTH (it
.f
))
10606 : (text_area_width
/ 2))))
10607 / FRAME_COLUMN_WIDTH (it
.f
);
10608 else if (w
->cursor
.x
>= text_area_width
- h_margin
)
10610 if (hscroll_relative_p
)
10611 wanted_x
= text_area_width
* (1 - hscroll_step_rel
)
10614 wanted_x
= text_area_width
10615 - hscroll_step_abs
* FRAME_COLUMN_WIDTH (it
.f
)
10618 = max (0, it
.current_x
- wanted_x
) / FRAME_COLUMN_WIDTH (it
.f
);
10622 if (hscroll_relative_p
)
10623 wanted_x
= text_area_width
* hscroll_step_rel
10626 wanted_x
= hscroll_step_abs
* FRAME_COLUMN_WIDTH (it
.f
)
10629 = max (0, it
.current_x
- wanted_x
) / FRAME_COLUMN_WIDTH (it
.f
);
10631 hscroll
= max (hscroll
, XFASTINT (w
->min_hscroll
));
10633 /* Don't call Fset_window_hscroll if value hasn't
10634 changed because it will prevent redisplay
10636 if (XFASTINT (w
->hscroll
) != hscroll
)
10638 XBUFFER (w
->buffer
)->prevent_redisplay_optimizations_p
= 1;
10639 w
->hscroll
= make_number (hscroll
);
10648 /* Value is non-zero if hscroll of any leaf window has been changed. */
10649 return hscrolled_p
;
10653 /* Set hscroll so that cursor is visible and not inside horizontal
10654 scroll margins for all windows in the tree rooted at WINDOW. See
10655 also hscroll_window_tree above. Value is non-zero if any window's
10656 hscroll has been changed. If it has, desired matrices on the frame
10657 of WINDOW are cleared. */
10660 hscroll_windows (window
)
10661 Lisp_Object window
;
10663 int hscrolled_p
= hscroll_window_tree (window
);
10665 clear_desired_matrices (XFRAME (WINDOW_FRAME (XWINDOW (window
))));
10666 return hscrolled_p
;
10671 /************************************************************************
10673 ************************************************************************/
10675 /* Variables holding some state of redisplay if GLYPH_DEBUG is defined
10676 to a non-zero value. This is sometimes handy to have in a debugger
10681 /* First and last unchanged row for try_window_id. */
10683 int debug_first_unchanged_at_end_vpos
;
10684 int debug_last_unchanged_at_beg_vpos
;
10686 /* Delta vpos and y. */
10688 int debug_dvpos
, debug_dy
;
10690 /* Delta in characters and bytes for try_window_id. */
10692 int debug_delta
, debug_delta_bytes
;
10694 /* Values of window_end_pos and window_end_vpos at the end of
10697 EMACS_INT debug_end_pos
, debug_end_vpos
;
10699 /* Append a string to W->desired_matrix->method. FMT is a printf
10700 format string. A1...A9 are a supplement for a variable-length
10701 argument list. If trace_redisplay_p is non-zero also printf the
10702 resulting string to stderr. */
10705 debug_method_add (w
, fmt
, a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
, a9
)
10708 int a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
, a9
;
10711 char *method
= w
->desired_matrix
->method
;
10712 int len
= strlen (method
);
10713 int size
= sizeof w
->desired_matrix
->method
;
10714 int remaining
= size
- len
- 1;
10716 sprintf (buffer
, fmt
, a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
, a9
);
10717 if (len
&& remaining
)
10720 --remaining
, ++len
;
10723 strncpy (method
+ len
, buffer
, remaining
);
10725 if (trace_redisplay_p
)
10726 fprintf (stderr
, "%p (%s): %s\n",
10728 ((BUFFERP (w
->buffer
)
10729 && STRINGP (XBUFFER (w
->buffer
)->name
))
10730 ? (char *) SDATA (XBUFFER (w
->buffer
)->name
)
10735 #endif /* GLYPH_DEBUG */
10738 /* Value is non-zero if all changes in window W, which displays
10739 current_buffer, are in the text between START and END. START is a
10740 buffer position, END is given as a distance from Z. Used in
10741 redisplay_internal for display optimization. */
10744 text_outside_line_unchanged_p (w
, start
, end
)
10748 int unchanged_p
= 1;
10750 /* If text or overlays have changed, see where. */
10751 if (XFASTINT (w
->last_modified
) < MODIFF
10752 || XFASTINT (w
->last_overlay_modified
) < OVERLAY_MODIFF
)
10754 /* Gap in the line? */
10755 if (GPT
< start
|| Z
- GPT
< end
)
10758 /* Changes start in front of the line, or end after it? */
10760 && (BEG_UNCHANGED
< start
- 1
10761 || END_UNCHANGED
< end
))
10764 /* If selective display, can't optimize if changes start at the
10765 beginning of the line. */
10767 && INTEGERP (current_buffer
->selective_display
)
10768 && XINT (current_buffer
->selective_display
) > 0
10769 && (BEG_UNCHANGED
< start
|| GPT
<= start
))
10772 /* If there are overlays at the start or end of the line, these
10773 may have overlay strings with newlines in them. A change at
10774 START, for instance, may actually concern the display of such
10775 overlay strings as well, and they are displayed on different
10776 lines. So, quickly rule out this case. (For the future, it
10777 might be desirable to implement something more telling than
10778 just BEG/END_UNCHANGED.) */
10781 if (BEG
+ BEG_UNCHANGED
== start
10782 && overlay_touches_p (start
))
10784 if (END_UNCHANGED
== end
10785 && overlay_touches_p (Z
- end
))
10790 return unchanged_p
;
10794 /* Do a frame update, taking possible shortcuts into account. This is
10795 the main external entry point for redisplay.
10797 If the last redisplay displayed an echo area message and that message
10798 is no longer requested, we clear the echo area or bring back the
10799 mini-buffer if that is in use. */
10804 redisplay_internal (0);
10809 overlay_arrow_string_or_property (var
)
10814 if (val
= Fget (var
, Qoverlay_arrow_string
), STRINGP (val
))
10817 return Voverlay_arrow_string
;
10820 /* Return 1 if there are any overlay-arrows in current_buffer. */
10822 overlay_arrow_in_current_buffer_p ()
10826 for (vlist
= Voverlay_arrow_variable_list
;
10828 vlist
= XCDR (vlist
))
10830 Lisp_Object var
= XCAR (vlist
);
10833 if (!SYMBOLP (var
))
10835 val
= find_symbol_value (var
);
10837 && current_buffer
== XMARKER (val
)->buffer
)
10844 /* Return 1 if any overlay_arrows have moved or overlay-arrow-string
10848 overlay_arrows_changed_p ()
10852 for (vlist
= Voverlay_arrow_variable_list
;
10854 vlist
= XCDR (vlist
))
10856 Lisp_Object var
= XCAR (vlist
);
10857 Lisp_Object val
, pstr
;
10859 if (!SYMBOLP (var
))
10861 val
= find_symbol_value (var
);
10862 if (!MARKERP (val
))
10864 if (! EQ (COERCE_MARKER (val
),
10865 Fget (var
, Qlast_arrow_position
))
10866 || ! (pstr
= overlay_arrow_string_or_property (var
),
10867 EQ (pstr
, Fget (var
, Qlast_arrow_string
))))
10873 /* Mark overlay arrows to be updated on next redisplay. */
10876 update_overlay_arrows (up_to_date
)
10881 for (vlist
= Voverlay_arrow_variable_list
;
10883 vlist
= XCDR (vlist
))
10885 Lisp_Object var
= XCAR (vlist
);
10887 if (!SYMBOLP (var
))
10890 if (up_to_date
> 0)
10892 Lisp_Object val
= find_symbol_value (var
);
10893 Fput (var
, Qlast_arrow_position
,
10894 COERCE_MARKER (val
));
10895 Fput (var
, Qlast_arrow_string
,
10896 overlay_arrow_string_or_property (var
));
10898 else if (up_to_date
< 0
10899 || !NILP (Fget (var
, Qlast_arrow_position
)))
10901 Fput (var
, Qlast_arrow_position
, Qt
);
10902 Fput (var
, Qlast_arrow_string
, Qt
);
10908 /* Return overlay arrow string to display at row.
10909 Return integer (bitmap number) for arrow bitmap in left fringe.
10910 Return nil if no overlay arrow. */
10913 overlay_arrow_at_row (it
, row
)
10915 struct glyph_row
*row
;
10919 for (vlist
= Voverlay_arrow_variable_list
;
10921 vlist
= XCDR (vlist
))
10923 Lisp_Object var
= XCAR (vlist
);
10926 if (!SYMBOLP (var
))
10929 val
= find_symbol_value (var
);
10932 && current_buffer
== XMARKER (val
)->buffer
10933 && (MATRIX_ROW_START_CHARPOS (row
) == marker_position (val
)))
10935 if (FRAME_WINDOW_P (it
->f
)
10936 && WINDOW_LEFT_FRINGE_WIDTH (it
->w
) > 0)
10938 #ifdef HAVE_WINDOW_SYSTEM
10939 if (val
= Fget (var
, Qoverlay_arrow_bitmap
), SYMBOLP (val
))
10942 if ((fringe_bitmap
= lookup_fringe_bitmap (val
)) != 0)
10943 return make_number (fringe_bitmap
);
10946 return make_number (-1); /* Use default arrow bitmap */
10948 return overlay_arrow_string_or_property (var
);
10955 /* Return 1 if point moved out of or into a composition. Otherwise
10956 return 0. PREV_BUF and PREV_PT are the last point buffer and
10957 position. BUF and PT are the current point buffer and position. */
10960 check_point_in_composition (prev_buf
, prev_pt
, buf
, pt
)
10961 struct buffer
*prev_buf
, *buf
;
10964 EMACS_INT start
, end
;
10966 Lisp_Object buffer
;
10968 XSETBUFFER (buffer
, buf
);
10969 /* Check a composition at the last point if point moved within the
10971 if (prev_buf
== buf
)
10974 /* Point didn't move. */
10977 if (prev_pt
> BUF_BEGV (buf
) && prev_pt
< BUF_ZV (buf
)
10978 && find_composition (prev_pt
, -1, &start
, &end
, &prop
, buffer
)
10979 && COMPOSITION_VALID_P (start
, end
, prop
)
10980 && start
< prev_pt
&& end
> prev_pt
)
10981 /* The last point was within the composition. Return 1 iff
10982 point moved out of the composition. */
10983 return (pt
<= start
|| pt
>= end
);
10986 /* Check a composition at the current point. */
10987 return (pt
> BUF_BEGV (buf
) && pt
< BUF_ZV (buf
)
10988 && find_composition (pt
, -1, &start
, &end
, &prop
, buffer
)
10989 && COMPOSITION_VALID_P (start
, end
, prop
)
10990 && start
< pt
&& end
> pt
);
10994 /* Reconsider the setting of B->clip_changed which is displayed
10998 reconsider_clip_changes (w
, b
)
11002 if (b
->clip_changed
11003 && !NILP (w
->window_end_valid
)
11004 && w
->current_matrix
->buffer
== b
11005 && w
->current_matrix
->zv
== BUF_ZV (b
)
11006 && w
->current_matrix
->begv
== BUF_BEGV (b
))
11007 b
->clip_changed
= 0;
11009 /* If display wasn't paused, and W is not a tool bar window, see if
11010 point has been moved into or out of a composition. In that case,
11011 we set b->clip_changed to 1 to force updating the screen. If
11012 b->clip_changed has already been set to 1, we can skip this
11014 if (!b
->clip_changed
11015 && BUFFERP (w
->buffer
) && !NILP (w
->window_end_valid
))
11019 if (w
== XWINDOW (selected_window
))
11020 pt
= BUF_PT (current_buffer
);
11022 pt
= marker_position (w
->pointm
);
11024 if ((w
->current_matrix
->buffer
!= XBUFFER (w
->buffer
)
11025 || pt
!= XINT (w
->last_point
))
11026 && check_point_in_composition (w
->current_matrix
->buffer
,
11027 XINT (w
->last_point
),
11028 XBUFFER (w
->buffer
), pt
))
11029 b
->clip_changed
= 1;
11034 /* Select FRAME to forward the values of frame-local variables into C
11035 variables so that the redisplay routines can access those values
11039 select_frame_for_redisplay (frame
)
11042 Lisp_Object tail
, sym
, val
;
11043 Lisp_Object old
= selected_frame
;
11045 xassert (FRAMEP (frame
) && FRAME_LIVE_P (XFRAME (frame
)));
11047 selected_frame
= frame
;
11051 for (tail
= XFRAME (frame
)->param_alist
; CONSP (tail
); tail
= XCDR (tail
))
11052 if (CONSP (XCAR (tail
))
11053 && (sym
= XCAR (XCAR (tail
)),
11055 && (sym
= indirect_variable (sym
),
11056 val
= SYMBOL_VALUE (sym
),
11057 (BUFFER_LOCAL_VALUEP (val
)))
11058 && XBUFFER_LOCAL_VALUE (val
)->check_frame
)
11059 /* Use find_symbol_value rather than Fsymbol_value
11060 to avoid an error if it is void. */
11061 find_symbol_value (sym
);
11062 } while (!EQ (frame
, old
) && (frame
= old
, 1));
11066 #define STOP_POLLING \
11067 do { if (! polling_stopped_here) stop_polling (); \
11068 polling_stopped_here = 1; } while (0)
11070 #define RESUME_POLLING \
11071 do { if (polling_stopped_here) start_polling (); \
11072 polling_stopped_here = 0; } while (0)
11075 /* If PRESERVE_ECHO_AREA is nonzero, it means this redisplay is not in
11076 response to any user action; therefore, we should preserve the echo
11077 area. (Actually, our caller does that job.) Perhaps in the future
11078 avoid recentering windows if it is not necessary; currently that
11079 causes some problems. */
11082 redisplay_internal (preserve_echo_area
)
11083 int preserve_echo_area
;
11085 struct window
*w
= XWINDOW (selected_window
);
11088 int must_finish
= 0;
11089 struct text_pos tlbufpos
, tlendpos
;
11090 int number_of_visible_frames
;
11093 int polling_stopped_here
= 0;
11094 Lisp_Object old_frame
= selected_frame
;
11096 /* Non-zero means redisplay has to consider all windows on all
11097 frames. Zero means, only selected_window is considered. */
11098 int consider_all_windows_p
;
11100 TRACE ((stderr
, "redisplay_internal %d\n", redisplaying_p
));
11102 /* No redisplay if running in batch mode or frame is not yet fully
11103 initialized, or redisplay is explicitly turned off by setting
11104 Vinhibit_redisplay. */
11106 || !NILP (Vinhibit_redisplay
))
11109 /* Don't examine these until after testing Vinhibit_redisplay.
11110 When Emacs is shutting down, perhaps because its connection to
11111 X has dropped, we should not look at them at all. */
11112 f
= XFRAME (w
->frame
);
11113 sf
= SELECTED_FRAME ();
11115 if (!f
->glyphs_initialized_p
)
11118 /* The flag redisplay_performed_directly_p is set by
11119 direct_output_for_insert when it already did the whole screen
11120 update necessary. */
11121 if (redisplay_performed_directly_p
)
11123 redisplay_performed_directly_p
= 0;
11124 if (!hscroll_windows (selected_window
))
11128 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (MAC_OS)
11129 if (popup_activated ())
11133 /* I don't think this happens but let's be paranoid. */
11134 if (redisplaying_p
)
11137 /* Record a function that resets redisplaying_p to its old value
11138 when we leave this function. */
11139 count
= SPECPDL_INDEX ();
11140 record_unwind_protect (unwind_redisplay
,
11141 Fcons (make_number (redisplaying_p
), selected_frame
));
11143 specbind (Qinhibit_free_realized_faces
, Qnil
);
11146 Lisp_Object tail
, frame
;
11148 FOR_EACH_FRAME (tail
, frame
)
11150 struct frame
*f
= XFRAME (frame
);
11151 f
->already_hscrolled_p
= 0;
11156 if (!EQ (old_frame
, selected_frame
)
11157 && FRAME_LIVE_P (XFRAME (old_frame
)))
11158 /* When running redisplay, we play a bit fast-and-loose and allow e.g.
11159 selected_frame and selected_window to be temporarily out-of-sync so
11160 when we come back here via `goto retry', we need to resync because we
11161 may need to run Elisp code (via prepare_menu_bars). */
11162 select_frame_for_redisplay (old_frame
);
11165 reconsider_clip_changes (w
, current_buffer
);
11166 last_escape_glyph_frame
= NULL
;
11167 last_escape_glyph_face_id
= (1 << FACE_ID_BITS
);
11169 /* If new fonts have been loaded that make a glyph matrix adjustment
11170 necessary, do it. */
11171 if (fonts_changed_p
)
11173 adjust_glyphs (NULL
);
11174 ++windows_or_buffers_changed
;
11175 fonts_changed_p
= 0;
11178 /* If face_change_count is non-zero, init_iterator will free all
11179 realized faces, which includes the faces referenced from current
11180 matrices. So, we can't reuse current matrices in this case. */
11181 if (face_change_count
)
11182 ++windows_or_buffers_changed
;
11184 if (FRAME_TERMCAP_P (sf
)
11185 && FRAME_TTY (sf
)->previous_frame
!= sf
)
11187 /* Since frames on a single ASCII terminal share the same
11188 display area, displaying a different frame means redisplay
11189 the whole thing. */
11190 windows_or_buffers_changed
++;
11191 SET_FRAME_GARBAGED (sf
);
11192 FRAME_TTY (sf
)->previous_frame
= sf
;
11195 /* Set the visible flags for all frames. Do this before checking
11196 for resized or garbaged frames; they want to know if their frames
11197 are visible. See the comment in frame.h for
11198 FRAME_SAMPLE_VISIBILITY. */
11200 Lisp_Object tail
, frame
;
11202 number_of_visible_frames
= 0;
11204 FOR_EACH_FRAME (tail
, frame
)
11206 struct frame
*f
= XFRAME (frame
);
11208 FRAME_SAMPLE_VISIBILITY (f
);
11209 if (FRAME_VISIBLE_P (f
))
11210 ++number_of_visible_frames
;
11211 clear_desired_matrices (f
);
11216 /* Notice any pending interrupt request to change frame size. */
11217 do_pending_window_change (1);
11219 /* Clear frames marked as garbaged. */
11220 if (frame_garbaged
)
11221 clear_garbaged_frames ();
11223 /* Build menubar and tool-bar items. */
11224 if (NILP (Vmemory_full
))
11225 prepare_menu_bars ();
11227 if (windows_or_buffers_changed
)
11228 update_mode_lines
++;
11230 /* Detect case that we need to write or remove a star in the mode line. */
11231 if ((SAVE_MODIFF
< MODIFF
) != !NILP (w
->last_had_star
))
11233 w
->update_mode_line
= Qt
;
11234 if (buffer_shared
> 1)
11235 update_mode_lines
++;
11238 /* Avoid invocation of point motion hooks by `current_column' below. */
11239 count1
= SPECPDL_INDEX ();
11240 specbind (Qinhibit_point_motion_hooks
, Qt
);
11242 /* If %c is in the mode line, update it if needed. */
11243 if (!NILP (w
->column_number_displayed
)
11244 /* This alternative quickly identifies a common case
11245 where no change is needed. */
11246 && !(PT
== XFASTINT (w
->last_point
)
11247 && XFASTINT (w
->last_modified
) >= MODIFF
11248 && XFASTINT (w
->last_overlay_modified
) >= OVERLAY_MODIFF
)
11249 && (XFASTINT (w
->column_number_displayed
)
11250 != (int) current_column ())) /* iftc */
11251 w
->update_mode_line
= Qt
;
11253 unbind_to (count1
, Qnil
);
11255 FRAME_SCROLL_BOTTOM_VPOS (XFRAME (w
->frame
)) = -1;
11257 /* The variable buffer_shared is set in redisplay_window and
11258 indicates that we redisplay a buffer in different windows. See
11260 consider_all_windows_p
= (update_mode_lines
|| buffer_shared
> 1
11261 || cursor_type_changed
);
11263 /* If specs for an arrow have changed, do thorough redisplay
11264 to ensure we remove any arrow that should no longer exist. */
11265 if (overlay_arrows_changed_p ())
11266 consider_all_windows_p
= windows_or_buffers_changed
= 1;
11268 /* Normally the message* functions will have already displayed and
11269 updated the echo area, but the frame may have been trashed, or
11270 the update may have been preempted, so display the echo area
11271 again here. Checking message_cleared_p captures the case that
11272 the echo area should be cleared. */
11273 if ((!NILP (echo_area_buffer
[0]) && !display_last_displayed_message_p
)
11274 || (!NILP (echo_area_buffer
[1]) && display_last_displayed_message_p
)
11275 || (message_cleared_p
11276 && minibuf_level
== 0
11277 /* If the mini-window is currently selected, this means the
11278 echo-area doesn't show through. */
11279 && !MINI_WINDOW_P (XWINDOW (selected_window
))))
11281 int window_height_changed_p
= echo_area_display (0);
11284 /* If we don't display the current message, don't clear the
11285 message_cleared_p flag, because, if we did, we wouldn't clear
11286 the echo area in the next redisplay which doesn't preserve
11288 if (!display_last_displayed_message_p
)
11289 message_cleared_p
= 0;
11291 if (fonts_changed_p
)
11293 else if (window_height_changed_p
)
11295 consider_all_windows_p
= 1;
11296 ++update_mode_lines
;
11297 ++windows_or_buffers_changed
;
11299 /* If window configuration was changed, frames may have been
11300 marked garbaged. Clear them or we will experience
11301 surprises wrt scrolling. */
11302 if (frame_garbaged
)
11303 clear_garbaged_frames ();
11306 else if (EQ (selected_window
, minibuf_window
)
11307 && (current_buffer
->clip_changed
11308 || XFASTINT (w
->last_modified
) < MODIFF
11309 || XFASTINT (w
->last_overlay_modified
) < OVERLAY_MODIFF
)
11310 && resize_mini_window (w
, 0))
11312 /* Resized active mini-window to fit the size of what it is
11313 showing if its contents might have changed. */
11315 consider_all_windows_p
= 1;
11316 ++windows_or_buffers_changed
;
11317 ++update_mode_lines
;
11319 /* If window configuration was changed, frames may have been
11320 marked garbaged. Clear them or we will experience
11321 surprises wrt scrolling. */
11322 if (frame_garbaged
)
11323 clear_garbaged_frames ();
11327 /* If showing the region, and mark has changed, we must redisplay
11328 the whole window. The assignment to this_line_start_pos prevents
11329 the optimization directly below this if-statement. */
11330 if (((!NILP (Vtransient_mark_mode
)
11331 && !NILP (XBUFFER (w
->buffer
)->mark_active
))
11332 != !NILP (w
->region_showing
))
11333 || (!NILP (w
->region_showing
)
11334 && !EQ (w
->region_showing
,
11335 Fmarker_position (XBUFFER (w
->buffer
)->mark
))))
11336 CHARPOS (this_line_start_pos
) = 0;
11338 /* Optimize the case that only the line containing the cursor in the
11339 selected window has changed. Variables starting with this_ are
11340 set in display_line and record information about the line
11341 containing the cursor. */
11342 tlbufpos
= this_line_start_pos
;
11343 tlendpos
= this_line_end_pos
;
11344 if (!consider_all_windows_p
11345 && CHARPOS (tlbufpos
) > 0
11346 && NILP (w
->update_mode_line
)
11347 && !current_buffer
->clip_changed
11348 && !current_buffer
->prevent_redisplay_optimizations_p
11349 && FRAME_VISIBLE_P (XFRAME (w
->frame
))
11350 && !FRAME_OBSCURED_P (XFRAME (w
->frame
))
11351 /* Make sure recorded data applies to current buffer, etc. */
11352 && this_line_buffer
== current_buffer
11353 && current_buffer
== XBUFFER (w
->buffer
)
11354 && NILP (w
->force_start
)
11355 && NILP (w
->optional_new_start
)
11356 /* Point must be on the line that we have info recorded about. */
11357 && PT
>= CHARPOS (tlbufpos
)
11358 && PT
<= Z
- CHARPOS (tlendpos
)
11359 /* All text outside that line, including its final newline,
11360 must be unchanged */
11361 && text_outside_line_unchanged_p (w
, CHARPOS (tlbufpos
),
11362 CHARPOS (tlendpos
)))
11364 if (CHARPOS (tlbufpos
) > BEGV
11365 && FETCH_BYTE (BYTEPOS (tlbufpos
) - 1) != '\n'
11366 && (CHARPOS (tlbufpos
) == ZV
11367 || FETCH_BYTE (BYTEPOS (tlbufpos
)) == '\n'))
11368 /* Former continuation line has disappeared by becoming empty */
11370 else if (XFASTINT (w
->last_modified
) < MODIFF
11371 || XFASTINT (w
->last_overlay_modified
) < OVERLAY_MODIFF
11372 || MINI_WINDOW_P (w
))
11374 /* We have to handle the case of continuation around a
11375 wide-column character (See the comment in indent.c around
11378 For instance, in the following case:
11380 -------- Insert --------
11381 K_A_N_\\ `a' K_A_N_a\ `X_' are wide-column chars.
11382 J_I_ ==> J_I_ `^^' are cursors.
11386 As we have to redraw the line above, we should goto cancel. */
11389 int line_height_before
= this_line_pixel_height
;
11391 /* Note that start_display will handle the case that the
11392 line starting at tlbufpos is a continuation lines. */
11393 start_display (&it
, w
, tlbufpos
);
11395 /* Implementation note: It this still necessary? */
11396 if (it
.current_x
!= this_line_start_x
)
11399 TRACE ((stderr
, "trying display optimization 1\n"));
11400 w
->cursor
.vpos
= -1;
11401 overlay_arrow_seen
= 0;
11402 it
.vpos
= this_line_vpos
;
11403 it
.current_y
= this_line_y
;
11404 it
.glyph_row
= MATRIX_ROW (w
->desired_matrix
, this_line_vpos
);
11405 display_line (&it
);
11407 /* If line contains point, is not continued,
11408 and ends at same distance from eob as before, we win */
11409 if (w
->cursor
.vpos
>= 0
11410 /* Line is not continued, otherwise this_line_start_pos
11411 would have been set to 0 in display_line. */
11412 && CHARPOS (this_line_start_pos
)
11413 /* Line ends as before. */
11414 && CHARPOS (this_line_end_pos
) == CHARPOS (tlendpos
)
11415 /* Line has same height as before. Otherwise other lines
11416 would have to be shifted up or down. */
11417 && this_line_pixel_height
== line_height_before
)
11419 /* If this is not the window's last line, we must adjust
11420 the charstarts of the lines below. */
11421 if (it
.current_y
< it
.last_visible_y
)
11423 struct glyph_row
*row
11424 = MATRIX_ROW (w
->current_matrix
, this_line_vpos
+ 1);
11425 int delta
, delta_bytes
;
11427 if (Z
- CHARPOS (tlendpos
) == ZV
)
11429 /* This line ends at end of (accessible part of)
11430 buffer. There is no newline to count. */
11432 - CHARPOS (tlendpos
)
11433 - MATRIX_ROW_START_CHARPOS (row
));
11434 delta_bytes
= (Z_BYTE
11435 - BYTEPOS (tlendpos
)
11436 - MATRIX_ROW_START_BYTEPOS (row
));
11440 /* This line ends in a newline. Must take
11441 account of the newline and the rest of the
11442 text that follows. */
11444 - CHARPOS (tlendpos
)
11445 - MATRIX_ROW_START_CHARPOS (row
));
11446 delta_bytes
= (Z_BYTE
11447 - BYTEPOS (tlendpos
)
11448 - MATRIX_ROW_START_BYTEPOS (row
));
11451 increment_matrix_positions (w
->current_matrix
,
11452 this_line_vpos
+ 1,
11453 w
->current_matrix
->nrows
,
11454 delta
, delta_bytes
);
11457 /* If this row displays text now but previously didn't,
11458 or vice versa, w->window_end_vpos may have to be
11460 if ((it
.glyph_row
- 1)->displays_text_p
)
11462 if (XFASTINT (w
->window_end_vpos
) < this_line_vpos
)
11463 XSETINT (w
->window_end_vpos
, this_line_vpos
);
11465 else if (XFASTINT (w
->window_end_vpos
) == this_line_vpos
11466 && this_line_vpos
> 0)
11467 XSETINT (w
->window_end_vpos
, this_line_vpos
- 1);
11468 w
->window_end_valid
= Qnil
;
11470 /* Update hint: No need to try to scroll in update_window. */
11471 w
->desired_matrix
->no_scrolling_p
= 1;
11474 *w
->desired_matrix
->method
= 0;
11475 debug_method_add (w
, "optimization 1");
11477 #ifdef HAVE_WINDOW_SYSTEM
11478 update_window_fringes (w
, 0);
11485 else if (/* Cursor position hasn't changed. */
11486 PT
== XFASTINT (w
->last_point
)
11487 /* Make sure the cursor was last displayed
11488 in this window. Otherwise we have to reposition it. */
11489 && 0 <= w
->cursor
.vpos
11490 && WINDOW_TOTAL_LINES (w
) > w
->cursor
.vpos
)
11494 do_pending_window_change (1);
11496 /* We used to always goto end_of_redisplay here, but this
11497 isn't enough if we have a blinking cursor. */
11498 if (w
->cursor_off_p
== w
->last_cursor_off_p
)
11499 goto end_of_redisplay
;
11503 /* If highlighting the region, or if the cursor is in the echo area,
11504 then we can't just move the cursor. */
11505 else if (! (!NILP (Vtransient_mark_mode
)
11506 && !NILP (current_buffer
->mark_active
))
11507 && (EQ (selected_window
, current_buffer
->last_selected_window
)
11508 || highlight_nonselected_windows
)
11509 && NILP (w
->region_showing
)
11510 && NILP (Vshow_trailing_whitespace
)
11511 && !cursor_in_echo_area
)
11514 struct glyph_row
*row
;
11516 /* Skip from tlbufpos to PT and see where it is. Note that
11517 PT may be in invisible text. If so, we will end at the
11518 next visible position. */
11519 init_iterator (&it
, w
, CHARPOS (tlbufpos
), BYTEPOS (tlbufpos
),
11520 NULL
, DEFAULT_FACE_ID
);
11521 it
.current_x
= this_line_start_x
;
11522 it
.current_y
= this_line_y
;
11523 it
.vpos
= this_line_vpos
;
11525 /* The call to move_it_to stops in front of PT, but
11526 moves over before-strings. */
11527 move_it_to (&it
, PT
, -1, -1, -1, MOVE_TO_POS
);
11529 if (it
.vpos
== this_line_vpos
11530 && (row
= MATRIX_ROW (w
->current_matrix
, this_line_vpos
),
11533 xassert (this_line_vpos
== it
.vpos
);
11534 xassert (this_line_y
== it
.current_y
);
11535 set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0, 0, 0);
11537 *w
->desired_matrix
->method
= 0;
11538 debug_method_add (w
, "optimization 3");
11547 /* Text changed drastically or point moved off of line. */
11548 SET_MATRIX_ROW_ENABLED_P (w
->desired_matrix
, this_line_vpos
, 0);
11551 CHARPOS (this_line_start_pos
) = 0;
11552 consider_all_windows_p
|= buffer_shared
> 1;
11553 ++clear_face_cache_count
;
11554 #ifdef HAVE_WINDOW_SYSTEM
11555 ++clear_image_cache_count
;
11558 /* Build desired matrices, and update the display. If
11559 consider_all_windows_p is non-zero, do it for all windows on all
11560 frames. Otherwise do it for selected_window, only. */
11562 if (consider_all_windows_p
)
11564 Lisp_Object tail
, frame
;
11566 FOR_EACH_FRAME (tail
, frame
)
11567 XFRAME (frame
)->updated_p
= 0;
11569 /* Recompute # windows showing selected buffer. This will be
11570 incremented each time such a window is displayed. */
11573 FOR_EACH_FRAME (tail
, frame
)
11575 struct frame
*f
= XFRAME (frame
);
11577 if (FRAME_WINDOW_P (f
) || FRAME_TERMCAP_P (f
) || f
== sf
)
11579 if (! EQ (frame
, selected_frame
))
11580 /* Select the frame, for the sake of frame-local
11582 select_frame_for_redisplay (frame
);
11584 /* Mark all the scroll bars to be removed; we'll redeem
11585 the ones we want when we redisplay their windows. */
11586 if (FRAME_TERMINAL (f
)->condemn_scroll_bars_hook
)
11587 FRAME_TERMINAL (f
)->condemn_scroll_bars_hook (f
);
11589 if (FRAME_VISIBLE_P (f
) && !FRAME_OBSCURED_P (f
))
11590 redisplay_windows (FRAME_ROOT_WINDOW (f
));
11592 /* Any scroll bars which redisplay_windows should have
11593 nuked should now go away. */
11594 if (FRAME_TERMINAL (f
)->judge_scroll_bars_hook
)
11595 FRAME_TERMINAL (f
)->judge_scroll_bars_hook (f
);
11597 /* If fonts changed, display again. */
11598 /* ??? rms: I suspect it is a mistake to jump all the way
11599 back to retry here. It should just retry this frame. */
11600 if (fonts_changed_p
)
11603 if (FRAME_VISIBLE_P (f
) && !FRAME_OBSCURED_P (f
))
11605 /* See if we have to hscroll. */
11606 if (!f
->already_hscrolled_p
)
11608 f
->already_hscrolled_p
= 1;
11609 if (hscroll_windows (f
->root_window
))
11613 /* Prevent various kinds of signals during display
11614 update. stdio is not robust about handling
11615 signals, which can cause an apparent I/O
11617 if (interrupt_input
)
11618 unrequest_sigio ();
11621 /* Update the display. */
11622 set_window_update_flags (XWINDOW (f
->root_window
), 1);
11623 pause
|= update_frame (f
, 0, 0);
11624 #if 0 /* Exiting the loop can leave the wrong value for buffer_shared. */
11636 /* Do the mark_window_display_accurate after all windows have
11637 been redisplayed because this call resets flags in buffers
11638 which are needed for proper redisplay. */
11639 FOR_EACH_FRAME (tail
, frame
)
11641 struct frame
*f
= XFRAME (frame
);
11644 mark_window_display_accurate (f
->root_window
, 1);
11645 if (FRAME_TERMINAL (f
)->frame_up_to_date_hook
)
11646 FRAME_TERMINAL (f
)->frame_up_to_date_hook (f
);
11651 else if (FRAME_VISIBLE_P (sf
) && !FRAME_OBSCURED_P (sf
))
11653 Lisp_Object mini_window
;
11654 struct frame
*mini_frame
;
11656 displayed_buffer
= XBUFFER (XWINDOW (selected_window
)->buffer
);
11657 /* Use list_of_error, not Qerror, so that
11658 we catch only errors and don't run the debugger. */
11659 internal_condition_case_1 (redisplay_window_1
, selected_window
,
11661 redisplay_window_error
);
11663 /* Compare desired and current matrices, perform output. */
11666 /* If fonts changed, display again. */
11667 if (fonts_changed_p
)
11670 /* Prevent various kinds of signals during display update.
11671 stdio is not robust about handling signals,
11672 which can cause an apparent I/O error. */
11673 if (interrupt_input
)
11674 unrequest_sigio ();
11677 if (FRAME_VISIBLE_P (sf
) && !FRAME_OBSCURED_P (sf
))
11679 if (hscroll_windows (selected_window
))
11682 XWINDOW (selected_window
)->must_be_updated_p
= 1;
11683 pause
= update_frame (sf
, 0, 0);
11686 /* We may have called echo_area_display at the top of this
11687 function. If the echo area is on another frame, that may
11688 have put text on a frame other than the selected one, so the
11689 above call to update_frame would not have caught it. Catch
11691 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
11692 mini_frame
= XFRAME (WINDOW_FRAME (XWINDOW (mini_window
)));
11694 if (mini_frame
!= sf
&& FRAME_WINDOW_P (mini_frame
))
11696 XWINDOW (mini_window
)->must_be_updated_p
= 1;
11697 pause
|= update_frame (mini_frame
, 0, 0);
11698 if (!pause
&& hscroll_windows (mini_window
))
11703 /* If display was paused because of pending input, make sure we do a
11704 thorough update the next time. */
11707 /* Prevent the optimization at the beginning of
11708 redisplay_internal that tries a single-line update of the
11709 line containing the cursor in the selected window. */
11710 CHARPOS (this_line_start_pos
) = 0;
11712 /* Let the overlay arrow be updated the next time. */
11713 update_overlay_arrows (0);
11715 /* If we pause after scrolling, some rows in the current
11716 matrices of some windows are not valid. */
11717 if (!WINDOW_FULL_WIDTH_P (w
)
11718 && !FRAME_WINDOW_P (XFRAME (w
->frame
)))
11719 update_mode_lines
= 1;
11723 if (!consider_all_windows_p
)
11725 /* This has already been done above if
11726 consider_all_windows_p is set. */
11727 mark_window_display_accurate_1 (w
, 1);
11729 /* Say overlay arrows are up to date. */
11730 update_overlay_arrows (1);
11732 if (FRAME_TERMINAL (sf
)->frame_up_to_date_hook
!= 0)
11733 FRAME_TERMINAL (sf
)->frame_up_to_date_hook (sf
);
11736 update_mode_lines
= 0;
11737 windows_or_buffers_changed
= 0;
11738 cursor_type_changed
= 0;
11741 /* Start SIGIO interrupts coming again. Having them off during the
11742 code above makes it less likely one will discard output, but not
11743 impossible, since there might be stuff in the system buffer here.
11744 But it is much hairier to try to do anything about that. */
11745 if (interrupt_input
)
11749 /* If a frame has become visible which was not before, redisplay
11750 again, so that we display it. Expose events for such a frame
11751 (which it gets when becoming visible) don't call the parts of
11752 redisplay constructing glyphs, so simply exposing a frame won't
11753 display anything in this case. So, we have to display these
11754 frames here explicitly. */
11757 Lisp_Object tail
, frame
;
11760 FOR_EACH_FRAME (tail
, frame
)
11762 int this_is_visible
= 0;
11764 if (XFRAME (frame
)->visible
)
11765 this_is_visible
= 1;
11766 FRAME_SAMPLE_VISIBILITY (XFRAME (frame
));
11767 if (XFRAME (frame
)->visible
)
11768 this_is_visible
= 1;
11770 if (this_is_visible
)
11774 if (new_count
!= number_of_visible_frames
)
11775 windows_or_buffers_changed
++;
11778 /* Change frame size now if a change is pending. */
11779 do_pending_window_change (1);
11781 /* If we just did a pending size change, or have additional
11782 visible frames, redisplay again. */
11783 if (windows_or_buffers_changed
&& !pause
)
11786 /* Clear the face cache eventually. */
11787 if (consider_all_windows_p
)
11789 if (clear_face_cache_count
> CLEAR_FACE_CACHE_COUNT
)
11791 clear_face_cache (0);
11792 clear_face_cache_count
= 0;
11794 #ifdef HAVE_WINDOW_SYSTEM
11795 if (clear_image_cache_count
> CLEAR_IMAGE_CACHE_COUNT
)
11797 clear_image_caches (Qnil
);
11798 clear_image_cache_count
= 0;
11800 #endif /* HAVE_WINDOW_SYSTEM */
11804 unbind_to (count
, Qnil
);
11809 /* Redisplay, but leave alone any recent echo area message unless
11810 another message has been requested in its place.
11812 This is useful in situations where you need to redisplay but no
11813 user action has occurred, making it inappropriate for the message
11814 area to be cleared. See tracking_off and
11815 wait_reading_process_output for examples of these situations.
11817 FROM_WHERE is an integer saying from where this function was
11818 called. This is useful for debugging. */
11821 redisplay_preserve_echo_area (from_where
)
11824 TRACE ((stderr
, "redisplay_preserve_echo_area (%d)\n", from_where
));
11826 if (!NILP (echo_area_buffer
[1]))
11828 /* We have a previously displayed message, but no current
11829 message. Redisplay the previous message. */
11830 display_last_displayed_message_p
= 1;
11831 redisplay_internal (1);
11832 display_last_displayed_message_p
= 0;
11835 redisplay_internal (1);
11837 if (FRAME_RIF (SELECTED_FRAME ()) != NULL
11838 && FRAME_RIF (SELECTED_FRAME ())->flush_display_optional
)
11839 FRAME_RIF (SELECTED_FRAME ())->flush_display_optional (NULL
);
11843 /* Function registered with record_unwind_protect in
11844 redisplay_internal. Reset redisplaying_p to the value it had
11845 before redisplay_internal was called, and clear
11846 prevent_freeing_realized_faces_p. It also selects the previously
11847 selected frame, unless it has been deleted (by an X connection
11848 failure during redisplay, for example). */
11851 unwind_redisplay (val
)
11854 Lisp_Object old_redisplaying_p
, old_frame
;
11856 old_redisplaying_p
= XCAR (val
);
11857 redisplaying_p
= XFASTINT (old_redisplaying_p
);
11858 old_frame
= XCDR (val
);
11859 if (! EQ (old_frame
, selected_frame
)
11860 && FRAME_LIVE_P (XFRAME (old_frame
)))
11861 select_frame_for_redisplay (old_frame
);
11866 /* Mark the display of window W as accurate or inaccurate. If
11867 ACCURATE_P is non-zero mark display of W as accurate. If
11868 ACCURATE_P is zero, arrange for W to be redisplayed the next time
11869 redisplay_internal is called. */
11872 mark_window_display_accurate_1 (w
, accurate_p
)
11876 if (BUFFERP (w
->buffer
))
11878 struct buffer
*b
= XBUFFER (w
->buffer
);
11881 = make_number (accurate_p
? BUF_MODIFF (b
) : 0);
11882 w
->last_overlay_modified
11883 = make_number (accurate_p
? BUF_OVERLAY_MODIFF (b
) : 0);
11885 = BUF_MODIFF (b
) > BUF_SAVE_MODIFF (b
) ? Qt
: Qnil
;
11889 b
->clip_changed
= 0;
11890 b
->prevent_redisplay_optimizations_p
= 0;
11892 BUF_UNCHANGED_MODIFIED (b
) = BUF_MODIFF (b
);
11893 BUF_OVERLAY_UNCHANGED_MODIFIED (b
) = BUF_OVERLAY_MODIFF (b
);
11894 BUF_BEG_UNCHANGED (b
) = BUF_GPT (b
) - BUF_BEG (b
);
11895 BUF_END_UNCHANGED (b
) = BUF_Z (b
) - BUF_GPT (b
);
11897 w
->current_matrix
->buffer
= b
;
11898 w
->current_matrix
->begv
= BUF_BEGV (b
);
11899 w
->current_matrix
->zv
= BUF_ZV (b
);
11901 w
->last_cursor
= w
->cursor
;
11902 w
->last_cursor_off_p
= w
->cursor_off_p
;
11904 if (w
== XWINDOW (selected_window
))
11905 w
->last_point
= make_number (BUF_PT (b
));
11907 w
->last_point
= make_number (XMARKER (w
->pointm
)->charpos
);
11913 w
->window_end_valid
= w
->buffer
;
11914 #if 0 /* This is incorrect with variable-height lines. */
11915 xassert (XINT (w
->window_end_vpos
)
11916 < (WINDOW_TOTAL_LINES (w
)
11917 - (WINDOW_WANTS_MODELINE_P (w
) ? 1 : 0)));
11919 w
->update_mode_line
= Qnil
;
11924 /* Mark the display of windows in the window tree rooted at WINDOW as
11925 accurate or inaccurate. If ACCURATE_P is non-zero mark display of
11926 windows as accurate. If ACCURATE_P is zero, arrange for windows to
11927 be redisplayed the next time redisplay_internal is called. */
11930 mark_window_display_accurate (window
, accurate_p
)
11931 Lisp_Object window
;
11936 for (; !NILP (window
); window
= w
->next
)
11938 w
= XWINDOW (window
);
11939 mark_window_display_accurate_1 (w
, accurate_p
);
11941 if (!NILP (w
->vchild
))
11942 mark_window_display_accurate (w
->vchild
, accurate_p
);
11943 if (!NILP (w
->hchild
))
11944 mark_window_display_accurate (w
->hchild
, accurate_p
);
11949 update_overlay_arrows (1);
11953 /* Force a thorough redisplay the next time by setting
11954 last_arrow_position and last_arrow_string to t, which is
11955 unequal to any useful value of Voverlay_arrow_... */
11956 update_overlay_arrows (-1);
11961 /* Return value in display table DP (Lisp_Char_Table *) for character
11962 C. Since a display table doesn't have any parent, we don't have to
11963 follow parent. Do not call this function directly but use the
11964 macro DISP_CHAR_VECTOR. */
11967 disp_char_vector (dp
, c
)
11968 struct Lisp_Char_Table
*dp
;
11973 if (ASCII_CHAR_P (c
))
11976 if (SUB_CHAR_TABLE_P (val
))
11977 val
= XSUB_CHAR_TABLE (val
)->contents
[c
];
11983 XSETCHAR_TABLE (table
, dp
);
11984 val
= char_table_ref (table
, c
);
11993 /***********************************************************************
11995 ***********************************************************************/
11997 /* Redisplay all leaf windows in the window tree rooted at WINDOW. */
12000 redisplay_windows (window
)
12001 Lisp_Object window
;
12003 while (!NILP (window
))
12005 struct window
*w
= XWINDOW (window
);
12007 if (!NILP (w
->hchild
))
12008 redisplay_windows (w
->hchild
);
12009 else if (!NILP (w
->vchild
))
12010 redisplay_windows (w
->vchild
);
12013 displayed_buffer
= XBUFFER (w
->buffer
);
12014 /* Use list_of_error, not Qerror, so that
12015 we catch only errors and don't run the debugger. */
12016 internal_condition_case_1 (redisplay_window_0
, window
,
12018 redisplay_window_error
);
12026 redisplay_window_error ()
12028 displayed_buffer
->display_error_modiff
= BUF_MODIFF (displayed_buffer
);
12033 redisplay_window_0 (window
)
12034 Lisp_Object window
;
12036 if (displayed_buffer
->display_error_modiff
< BUF_MODIFF (displayed_buffer
))
12037 redisplay_window (window
, 0);
12042 redisplay_window_1 (window
)
12043 Lisp_Object window
;
12045 if (displayed_buffer
->display_error_modiff
< BUF_MODIFF (displayed_buffer
))
12046 redisplay_window (window
, 1);
12051 /* Increment GLYPH until it reaches END or CONDITION fails while
12052 adding (GLYPH)->pixel_width to X. */
12054 #define SKIP_GLYPHS(glyph, end, x, condition) \
12057 (x) += (glyph)->pixel_width; \
12060 while ((glyph) < (end) && (condition))
12063 /* Set cursor position of W. PT is assumed to be displayed in ROW.
12064 DELTA is the number of bytes by which positions recorded in ROW
12065 differ from current buffer positions.
12067 Return 0 if cursor is not on this row. 1 otherwise. */
12070 set_cursor_from_row (w
, row
, matrix
, delta
, delta_bytes
, dy
, dvpos
)
12072 struct glyph_row
*row
;
12073 struct glyph_matrix
*matrix
;
12074 int delta
, delta_bytes
, dy
, dvpos
;
12076 struct glyph
*glyph
= row
->glyphs
[TEXT_AREA
];
12077 struct glyph
*end
= glyph
+ row
->used
[TEXT_AREA
];
12078 struct glyph
*cursor
= NULL
;
12079 /* The first glyph that starts a sequence of glyphs from string. */
12080 struct glyph
*string_start
;
12081 /* The X coordinate of string_start. */
12082 int string_start_x
;
12083 /* The last known character position. */
12084 int last_pos
= MATRIX_ROW_START_CHARPOS (row
) + delta
;
12085 /* The last known character position before string_start. */
12086 int string_before_pos
;
12089 int cursor_from_overlay_pos
= 0;
12090 int pt_old
= PT
- delta
;
12092 /* Skip over glyphs not having an object at the start of the row.
12093 These are special glyphs like truncation marks on terminal
12095 if (row
->displays_text_p
)
12097 && INTEGERP (glyph
->object
)
12098 && glyph
->charpos
< 0)
12100 x
+= glyph
->pixel_width
;
12104 string_start
= NULL
;
12106 && !INTEGERP (glyph
->object
)
12107 && (!BUFFERP (glyph
->object
)
12108 || (last_pos
= glyph
->charpos
) < pt_old
))
12110 if (! STRINGP (glyph
->object
))
12112 string_start
= NULL
;
12113 x
+= glyph
->pixel_width
;
12115 if (cursor_from_overlay_pos
12116 && last_pos
>= cursor_from_overlay_pos
)
12118 cursor_from_overlay_pos
= 0;
12124 if (string_start
== NULL
)
12126 string_before_pos
= last_pos
;
12127 string_start
= glyph
;
12128 string_start_x
= x
;
12130 /* Skip all glyphs from string. */
12135 if ((cursor
== NULL
|| glyph
> cursor
)
12136 && (cprop
= Fget_char_property (make_number ((glyph
)->charpos
),
12137 Qcursor
, (glyph
)->object
),
12139 && (pos
= string_buffer_position (w
, glyph
->object
,
12140 string_before_pos
),
12141 (pos
== 0 /* From overlay */
12142 || pos
== pt_old
)))
12144 /* Estimate overlay buffer position from the buffer
12145 positions of the glyphs before and after the overlay.
12146 Add 1 to last_pos so that if point corresponds to the
12147 glyph right after the overlay, we still use a 'cursor'
12148 property found in that overlay. */
12149 cursor_from_overlay_pos
= (pos
? 0 : last_pos
12150 + (INTEGERP (cprop
) ? XINT (cprop
) : 0));
12154 x
+= glyph
->pixel_width
;
12157 while (glyph
< end
&& EQ (glyph
->object
, string_start
->object
));
12161 if (cursor
!= NULL
)
12166 else if (row
->ends_in_ellipsis_p
&& glyph
== end
)
12168 /* Scan back over the ellipsis glyphs, decrementing positions. */
12169 while (glyph
> row
->glyphs
[TEXT_AREA
]
12170 && (glyph
- 1)->charpos
== last_pos
)
12171 glyph
--, x
-= glyph
->pixel_width
;
12172 /* That loop always goes one position too far,
12173 including the glyph before the ellipsis.
12174 So scan forward over that one. */
12175 x
+= glyph
->pixel_width
;
12178 else if (string_start
12179 && (glyph
== end
|| !BUFFERP (glyph
->object
) || last_pos
> pt_old
))
12181 /* We may have skipped over point because the previous glyphs
12182 are from string. As there's no easy way to know the
12183 character position of the current glyph, find the correct
12184 glyph on point by scanning from string_start again. */
12186 Lisp_Object string
;
12187 struct glyph
*stop
= glyph
;
12190 limit
= make_number (pt_old
+ 1);
12191 glyph
= string_start
;
12192 x
= string_start_x
;
12193 string
= glyph
->object
;
12194 pos
= string_buffer_position (w
, string
, string_before_pos
);
12195 /* If STRING is from overlay, LAST_POS == 0. We skip such glyphs
12196 because we always put cursor after overlay strings. */
12197 while (pos
== 0 && glyph
< stop
)
12199 string
= glyph
->object
;
12200 SKIP_GLYPHS (glyph
, stop
, x
, EQ (glyph
->object
, string
));
12202 pos
= string_buffer_position (w
, glyph
->object
, string_before_pos
);
12205 while (glyph
< stop
)
12207 pos
= XINT (Fnext_single_char_property_change
12208 (make_number (pos
), Qdisplay
, Qnil
, limit
));
12211 /* Skip glyphs from the same string. */
12212 string
= glyph
->object
;
12213 SKIP_GLYPHS (glyph
, stop
, x
, EQ (glyph
->object
, string
));
12214 /* Skip glyphs from an overlay. */
12215 while (glyph
< stop
12216 && ! string_buffer_position (w
, glyph
->object
, pos
))
12218 string
= glyph
->object
;
12219 SKIP_GLYPHS (glyph
, stop
, x
, EQ (glyph
->object
, string
));
12223 /* If we reached the end of the line, and end was from a string,
12224 cursor is not on this line. */
12225 if (glyph
== end
&& row
->continued_p
)
12229 w
->cursor
.hpos
= glyph
- row
->glyphs
[TEXT_AREA
];
12231 w
->cursor
.vpos
= MATRIX_ROW_VPOS (row
, matrix
) + dvpos
;
12232 w
->cursor
.y
= row
->y
+ dy
;
12234 if (w
== XWINDOW (selected_window
))
12236 if (!row
->continued_p
12237 && !MATRIX_ROW_CONTINUATION_LINE_P (row
)
12240 this_line_buffer
= XBUFFER (w
->buffer
);
12242 CHARPOS (this_line_start_pos
)
12243 = MATRIX_ROW_START_CHARPOS (row
) + delta
;
12244 BYTEPOS (this_line_start_pos
)
12245 = MATRIX_ROW_START_BYTEPOS (row
) + delta_bytes
;
12247 CHARPOS (this_line_end_pos
)
12248 = Z
- (MATRIX_ROW_END_CHARPOS (row
) + delta
);
12249 BYTEPOS (this_line_end_pos
)
12250 = Z_BYTE
- (MATRIX_ROW_END_BYTEPOS (row
) + delta_bytes
);
12252 this_line_y
= w
->cursor
.y
;
12253 this_line_pixel_height
= row
->height
;
12254 this_line_vpos
= w
->cursor
.vpos
;
12255 this_line_start_x
= row
->x
;
12258 CHARPOS (this_line_start_pos
) = 0;
12265 /* Run window scroll functions, if any, for WINDOW with new window
12266 start STARTP. Sets the window start of WINDOW to that position.
12268 We assume that the window's buffer is really current. */
12270 static INLINE
struct text_pos
12271 run_window_scroll_functions (window
, startp
)
12272 Lisp_Object window
;
12273 struct text_pos startp
;
12275 struct window
*w
= XWINDOW (window
);
12276 SET_MARKER_FROM_TEXT_POS (w
->start
, startp
);
12278 if (current_buffer
!= XBUFFER (w
->buffer
))
12281 if (!NILP (Vwindow_scroll_functions
))
12283 run_hook_with_args_2 (Qwindow_scroll_functions
, window
,
12284 make_number (CHARPOS (startp
)));
12285 SET_TEXT_POS_FROM_MARKER (startp
, w
->start
);
12286 /* In case the hook functions switch buffers. */
12287 if (current_buffer
!= XBUFFER (w
->buffer
))
12288 set_buffer_internal_1 (XBUFFER (w
->buffer
));
12295 /* Make sure the line containing the cursor is fully visible.
12296 A value of 1 means there is nothing to be done.
12297 (Either the line is fully visible, or it cannot be made so,
12298 or we cannot tell.)
12300 If FORCE_P is non-zero, return 0 even if partial visible cursor row
12301 is higher than window.
12303 A value of 0 means the caller should do scrolling
12304 as if point had gone off the screen. */
12307 cursor_row_fully_visible_p (w
, force_p
, current_matrix_p
)
12310 int current_matrix_p
;
12312 struct glyph_matrix
*matrix
;
12313 struct glyph_row
*row
;
12316 if (!make_cursor_line_fully_visible_p
)
12319 /* It's not always possible to find the cursor, e.g, when a window
12320 is full of overlay strings. Don't do anything in that case. */
12321 if (w
->cursor
.vpos
< 0)
12324 matrix
= current_matrix_p
? w
->current_matrix
: w
->desired_matrix
;
12325 row
= MATRIX_ROW (matrix
, w
->cursor
.vpos
);
12327 /* If the cursor row is not partially visible, there's nothing to do. */
12328 if (!MATRIX_ROW_PARTIALLY_VISIBLE_P (w
, row
))
12331 /* If the row the cursor is in is taller than the window's height,
12332 it's not clear what to do, so do nothing. */
12333 window_height
= window_box_height (w
);
12334 if (row
->height
>= window_height
)
12336 if (!force_p
|| MINI_WINDOW_P (w
)
12337 || w
->vscroll
|| w
->cursor
.vpos
== 0)
12343 /* This code used to try to scroll the window just enough to make
12344 the line visible. It returned 0 to say that the caller should
12345 allocate larger glyph matrices. */
12347 if (MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P (w
, row
))
12349 int dy
= row
->height
- row
->visible_height
;
12352 shift_glyph_matrix (w
, matrix
, 0, matrix
->nrows
, dy
);
12354 else /* MATRIX_ROW_PARTIALLY_VISIBLE_AT_BOTTOM_P (w, row)) */
12356 int dy
= - (row
->height
- row
->visible_height
);
12359 shift_glyph_matrix (w
, matrix
, 0, matrix
->nrows
, dy
);
12362 /* When we change the cursor y-position of the selected window,
12363 change this_line_y as well so that the display optimization for
12364 the cursor line of the selected window in redisplay_internal uses
12365 the correct y-position. */
12366 if (w
== XWINDOW (selected_window
))
12367 this_line_y
= w
->cursor
.y
;
12369 /* If vscrolling requires a larger glyph matrix, arrange for a fresh
12370 redisplay with larger matrices. */
12371 if (matrix
->nrows
< required_matrix_height (w
))
12373 fonts_changed_p
= 1;
12382 /* Try scrolling PT into view in window WINDOW. JUST_THIS_ONE_P
12383 non-zero means only WINDOW is redisplayed in redisplay_internal.
12384 TEMP_SCROLL_STEP has the same meaning as scroll_step, and is used
12385 in redisplay_window to bring a partially visible line into view in
12386 the case that only the cursor has moved.
12388 LAST_LINE_MISFIT should be nonzero if we're scrolling because the
12389 last screen line's vertical height extends past the end of the screen.
12393 1 if scrolling succeeded
12395 0 if scrolling didn't find point.
12397 -1 if new fonts have been loaded so that we must interrupt
12398 redisplay, adjust glyph matrices, and try again. */
12404 SCROLLING_NEED_LARGER_MATRICES
12408 try_scrolling (window
, just_this_one_p
, scroll_conservatively
,
12409 scroll_step
, temp_scroll_step
, last_line_misfit
)
12410 Lisp_Object window
;
12411 int just_this_one_p
;
12412 EMACS_INT scroll_conservatively
, scroll_step
;
12413 int temp_scroll_step
;
12414 int last_line_misfit
;
12416 struct window
*w
= XWINDOW (window
);
12417 struct frame
*f
= XFRAME (w
->frame
);
12418 struct text_pos scroll_margin_pos
;
12419 struct text_pos pos
;
12420 struct text_pos startp
;
12422 Lisp_Object window_end
;
12423 int this_scroll_margin
;
12427 int amount_to_scroll
= 0;
12428 Lisp_Object aggressive
;
12430 int extra_scroll_margin_lines
= last_line_misfit
? 1 : 0;
12433 debug_method_add (w
, "try_scrolling");
12436 SET_TEXT_POS_FROM_MARKER (startp
, w
->start
);
12438 /* Compute scroll margin height in pixels. We scroll when point is
12439 within this distance from the top or bottom of the window. */
12440 if (scroll_margin
> 0)
12442 this_scroll_margin
= min (scroll_margin
, WINDOW_TOTAL_LINES (w
) / 4);
12443 this_scroll_margin
*= FRAME_LINE_HEIGHT (f
);
12446 this_scroll_margin
= 0;
12448 /* Force scroll_conservatively to have a reasonable value so it doesn't
12449 cause an overflow while computing how much to scroll. */
12450 if (scroll_conservatively
)
12451 scroll_conservatively
= min (scroll_conservatively
,
12452 MOST_POSITIVE_FIXNUM
/ FRAME_LINE_HEIGHT (f
));
12454 /* Compute how much we should try to scroll maximally to bring point
12456 if (scroll_step
|| scroll_conservatively
|| temp_scroll_step
)
12457 scroll_max
= max (scroll_step
,
12458 max (scroll_conservatively
, temp_scroll_step
));
12459 else if (NUMBERP (current_buffer
->scroll_down_aggressively
)
12460 || NUMBERP (current_buffer
->scroll_up_aggressively
))
12461 /* We're trying to scroll because of aggressive scrolling
12462 but no scroll_step is set. Choose an arbitrary one. Maybe
12463 there should be a variable for this. */
12467 scroll_max
*= FRAME_LINE_HEIGHT (f
);
12469 /* Decide whether we have to scroll down. Start at the window end
12470 and move this_scroll_margin up to find the position of the scroll
12472 window_end
= Fwindow_end (window
, Qt
);
12476 CHARPOS (scroll_margin_pos
) = XINT (window_end
);
12477 BYTEPOS (scroll_margin_pos
) = CHAR_TO_BYTE (CHARPOS (scroll_margin_pos
));
12479 if (this_scroll_margin
|| extra_scroll_margin_lines
)
12481 start_display (&it
, w
, scroll_margin_pos
);
12482 if (this_scroll_margin
)
12483 move_it_vertically_backward (&it
, this_scroll_margin
);
12484 if (extra_scroll_margin_lines
)
12485 move_it_by_lines (&it
, - extra_scroll_margin_lines
, 0);
12486 scroll_margin_pos
= it
.current
.pos
;
12489 if (PT
>= CHARPOS (scroll_margin_pos
))
12493 /* Point is in the scroll margin at the bottom of the window, or
12494 below. Compute a new window start that makes point visible. */
12496 /* Compute the distance from the scroll margin to PT.
12497 Give up if the distance is greater than scroll_max. */
12498 start_display (&it
, w
, scroll_margin_pos
);
12500 move_it_to (&it
, PT
, 0, it
.last_visible_y
, -1,
12501 MOVE_TO_POS
| MOVE_TO_X
| MOVE_TO_Y
);
12503 /* To make point visible, we have to move the window start
12504 down so that the line the cursor is in is visible, which
12505 means we have to add in the height of the cursor line. */
12506 dy
= line_bottom_y (&it
) - y0
;
12508 if (dy
> scroll_max
)
12509 return SCROLLING_FAILED
;
12511 /* Move the window start down. If scrolling conservatively,
12512 move it just enough down to make point visible. If
12513 scroll_step is set, move it down by scroll_step. */
12514 start_display (&it
, w
, startp
);
12516 if (scroll_conservatively
)
12517 /* Set AMOUNT_TO_SCROLL to at least one line,
12518 and at most scroll_conservatively lines. */
12520 = min (max (dy
, FRAME_LINE_HEIGHT (f
)),
12521 FRAME_LINE_HEIGHT (f
) * scroll_conservatively
);
12522 else if (scroll_step
|| temp_scroll_step
)
12523 amount_to_scroll
= scroll_max
;
12526 aggressive
= current_buffer
->scroll_up_aggressively
;
12527 height
= WINDOW_BOX_TEXT_HEIGHT (w
);
12528 if (NUMBERP (aggressive
))
12530 double float_amount
= XFLOATINT (aggressive
) * height
;
12531 amount_to_scroll
= float_amount
;
12532 if (amount_to_scroll
== 0 && float_amount
> 0)
12533 amount_to_scroll
= 1;
12537 if (amount_to_scroll
<= 0)
12538 return SCROLLING_FAILED
;
12540 /* If moving by amount_to_scroll leaves STARTP unchanged,
12541 move it down one screen line. */
12543 move_it_vertically (&it
, amount_to_scroll
);
12544 if (CHARPOS (it
.current
.pos
) == CHARPOS (startp
))
12545 move_it_by_lines (&it
, 1, 1);
12546 startp
= it
.current
.pos
;
12550 /* See if point is inside the scroll margin at the top of the
12552 scroll_margin_pos
= startp
;
12553 if (this_scroll_margin
)
12555 start_display (&it
, w
, startp
);
12556 move_it_vertically (&it
, this_scroll_margin
);
12557 scroll_margin_pos
= it
.current
.pos
;
12560 if (PT
< CHARPOS (scroll_margin_pos
))
12562 /* Point is in the scroll margin at the top of the window or
12563 above what is displayed in the window. */
12566 /* Compute the vertical distance from PT to the scroll
12567 margin position. Give up if distance is greater than
12569 SET_TEXT_POS (pos
, PT
, PT_BYTE
);
12570 start_display (&it
, w
, pos
);
12572 move_it_to (&it
, CHARPOS (scroll_margin_pos
), 0,
12573 it
.last_visible_y
, -1,
12574 MOVE_TO_POS
| MOVE_TO_X
| MOVE_TO_Y
);
12575 dy
= it
.current_y
- y0
;
12576 if (dy
> scroll_max
)
12577 return SCROLLING_FAILED
;
12579 /* Compute new window start. */
12580 start_display (&it
, w
, startp
);
12582 if (scroll_conservatively
)
12584 = max (dy
, FRAME_LINE_HEIGHT (f
) * max (scroll_step
, temp_scroll_step
));
12585 else if (scroll_step
|| temp_scroll_step
)
12586 amount_to_scroll
= scroll_max
;
12589 aggressive
= current_buffer
->scroll_down_aggressively
;
12590 height
= WINDOW_BOX_TEXT_HEIGHT (w
);
12591 if (NUMBERP (aggressive
))
12593 double float_amount
= XFLOATINT (aggressive
) * height
;
12594 amount_to_scroll
= float_amount
;
12595 if (amount_to_scroll
== 0 && float_amount
> 0)
12596 amount_to_scroll
= 1;
12600 if (amount_to_scroll
<= 0)
12601 return SCROLLING_FAILED
;
12603 move_it_vertically_backward (&it
, amount_to_scroll
);
12604 startp
= it
.current
.pos
;
12608 /* Run window scroll functions. */
12609 startp
= run_window_scroll_functions (window
, startp
);
12611 /* Display the window. Give up if new fonts are loaded, or if point
12613 if (!try_window (window
, startp
, 0))
12614 rc
= SCROLLING_NEED_LARGER_MATRICES
;
12615 else if (w
->cursor
.vpos
< 0)
12617 clear_glyph_matrix (w
->desired_matrix
);
12618 rc
= SCROLLING_FAILED
;
12622 /* Maybe forget recorded base line for line number display. */
12623 if (!just_this_one_p
12624 || current_buffer
->clip_changed
12625 || BEG_UNCHANGED
< CHARPOS (startp
))
12626 w
->base_line_number
= Qnil
;
12628 /* If cursor ends up on a partially visible line,
12629 treat that as being off the bottom of the screen. */
12630 if (! cursor_row_fully_visible_p (w
, extra_scroll_margin_lines
<= 1, 0))
12632 clear_glyph_matrix (w
->desired_matrix
);
12633 ++extra_scroll_margin_lines
;
12636 rc
= SCROLLING_SUCCESS
;
12643 /* Compute a suitable window start for window W if display of W starts
12644 on a continuation line. Value is non-zero if a new window start
12647 The new window start will be computed, based on W's width, starting
12648 from the start of the continued line. It is the start of the
12649 screen line with the minimum distance from the old start W->start. */
12652 compute_window_start_on_continuation_line (w
)
12655 struct text_pos pos
, start_pos
;
12656 int window_start_changed_p
= 0;
12658 SET_TEXT_POS_FROM_MARKER (start_pos
, w
->start
);
12660 /* If window start is on a continuation line... Window start may be
12661 < BEGV in case there's invisible text at the start of the
12662 buffer (M-x rmail, for example). */
12663 if (CHARPOS (start_pos
) > BEGV
12664 && FETCH_BYTE (BYTEPOS (start_pos
) - 1) != '\n')
12667 struct glyph_row
*row
;
12669 /* Handle the case that the window start is out of range. */
12670 if (CHARPOS (start_pos
) < BEGV
)
12671 SET_TEXT_POS (start_pos
, BEGV
, BEGV_BYTE
);
12672 else if (CHARPOS (start_pos
) > ZV
)
12673 SET_TEXT_POS (start_pos
, ZV
, ZV_BYTE
);
12675 /* Find the start of the continued line. This should be fast
12676 because scan_buffer is fast (newline cache). */
12677 row
= w
->desired_matrix
->rows
+ (WINDOW_WANTS_HEADER_LINE_P (w
) ? 1 : 0);
12678 init_iterator (&it
, w
, CHARPOS (start_pos
), BYTEPOS (start_pos
),
12679 row
, DEFAULT_FACE_ID
);
12680 reseat_at_previous_visible_line_start (&it
);
12682 /* If the line start is "too far" away from the window start,
12683 say it takes too much time to compute a new window start. */
12684 if (CHARPOS (start_pos
) - IT_CHARPOS (it
)
12685 < WINDOW_TOTAL_LINES (w
) * WINDOW_TOTAL_COLS (w
))
12687 int min_distance
, distance
;
12689 /* Move forward by display lines to find the new window
12690 start. If window width was enlarged, the new start can
12691 be expected to be > the old start. If window width was
12692 decreased, the new window start will be < the old start.
12693 So, we're looking for the display line start with the
12694 minimum distance from the old window start. */
12695 pos
= it
.current
.pos
;
12696 min_distance
= INFINITY
;
12697 while ((distance
= eabs (CHARPOS (start_pos
) - IT_CHARPOS (it
))),
12698 distance
< min_distance
)
12700 min_distance
= distance
;
12701 pos
= it
.current
.pos
;
12702 move_it_by_lines (&it
, 1, 0);
12705 /* Set the window start there. */
12706 SET_MARKER_FROM_TEXT_POS (w
->start
, pos
);
12707 window_start_changed_p
= 1;
12711 return window_start_changed_p
;
12715 /* Try cursor movement in case text has not changed in window WINDOW,
12716 with window start STARTP. Value is
12718 CURSOR_MOVEMENT_SUCCESS if successful
12720 CURSOR_MOVEMENT_CANNOT_BE_USED if this method cannot be used
12722 CURSOR_MOVEMENT_MUST_SCROLL if we know we have to scroll the
12723 display. *SCROLL_STEP is set to 1, under certain circumstances, if
12724 we want to scroll as if scroll-step were set to 1. See the code.
12726 CURSOR_MOVEMENT_NEED_LARGER_MATRICES if we need larger matrices, in
12727 which case we have to abort this redisplay, and adjust matrices
12732 CURSOR_MOVEMENT_SUCCESS
,
12733 CURSOR_MOVEMENT_CANNOT_BE_USED
,
12734 CURSOR_MOVEMENT_MUST_SCROLL
,
12735 CURSOR_MOVEMENT_NEED_LARGER_MATRICES
12739 try_cursor_movement (window
, startp
, scroll_step
)
12740 Lisp_Object window
;
12741 struct text_pos startp
;
12744 struct window
*w
= XWINDOW (window
);
12745 struct frame
*f
= XFRAME (w
->frame
);
12746 int rc
= CURSOR_MOVEMENT_CANNOT_BE_USED
;
12749 if (inhibit_try_cursor_movement
)
12753 /* Handle case where text has not changed, only point, and it has
12754 not moved off the frame. */
12755 if (/* Point may be in this window. */
12756 PT
>= CHARPOS (startp
)
12757 /* Selective display hasn't changed. */
12758 && !current_buffer
->clip_changed
12759 /* Function force-mode-line-update is used to force a thorough
12760 redisplay. It sets either windows_or_buffers_changed or
12761 update_mode_lines. So don't take a shortcut here for these
12763 && !update_mode_lines
12764 && !windows_or_buffers_changed
12765 && !cursor_type_changed
12766 /* Can't use this case if highlighting a region. When a
12767 region exists, cursor movement has to do more than just
12769 && !(!NILP (Vtransient_mark_mode
)
12770 && !NILP (current_buffer
->mark_active
))
12771 && NILP (w
->region_showing
)
12772 && NILP (Vshow_trailing_whitespace
)
12773 /* Right after splitting windows, last_point may be nil. */
12774 && INTEGERP (w
->last_point
)
12775 /* This code is not used for mini-buffer for the sake of the case
12776 of redisplaying to replace an echo area message; since in
12777 that case the mini-buffer contents per se are usually
12778 unchanged. This code is of no real use in the mini-buffer
12779 since the handling of this_line_start_pos, etc., in redisplay
12780 handles the same cases. */
12781 && !EQ (window
, minibuf_window
)
12782 /* When splitting windows or for new windows, it happens that
12783 redisplay is called with a nil window_end_vpos or one being
12784 larger than the window. This should really be fixed in
12785 window.c. I don't have this on my list, now, so we do
12786 approximately the same as the old redisplay code. --gerd. */
12787 && INTEGERP (w
->window_end_vpos
)
12788 && XFASTINT (w
->window_end_vpos
) < w
->current_matrix
->nrows
12789 && (FRAME_WINDOW_P (f
)
12790 || !overlay_arrow_in_current_buffer_p ()))
12792 int this_scroll_margin
, top_scroll_margin
;
12793 struct glyph_row
*row
= NULL
;
12796 debug_method_add (w
, "cursor movement");
12799 /* Scroll if point within this distance from the top or bottom
12800 of the window. This is a pixel value. */
12801 this_scroll_margin
= max (0, scroll_margin
);
12802 this_scroll_margin
= min (this_scroll_margin
, WINDOW_TOTAL_LINES (w
) / 4);
12803 this_scroll_margin
*= FRAME_LINE_HEIGHT (f
);
12805 top_scroll_margin
= this_scroll_margin
;
12806 if (WINDOW_WANTS_HEADER_LINE_P (w
))
12807 top_scroll_margin
+= CURRENT_HEADER_LINE_HEIGHT (w
);
12809 /* Start with the row the cursor was displayed during the last
12810 not paused redisplay. Give up if that row is not valid. */
12811 if (w
->last_cursor
.vpos
< 0
12812 || w
->last_cursor
.vpos
>= w
->current_matrix
->nrows
)
12813 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
12816 row
= MATRIX_ROW (w
->current_matrix
, w
->last_cursor
.vpos
);
12817 if (row
->mode_line_p
)
12819 if (!row
->enabled_p
)
12820 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
12823 if (rc
== CURSOR_MOVEMENT_CANNOT_BE_USED
)
12826 int last_y
= window_text_bottom_y (w
) - this_scroll_margin
;
12828 if (PT
> XFASTINT (w
->last_point
))
12830 /* Point has moved forward. */
12831 while (MATRIX_ROW_END_CHARPOS (row
) < PT
12832 && MATRIX_ROW_BOTTOM_Y (row
) < last_y
)
12834 xassert (row
->enabled_p
);
12838 /* The end position of a row equals the start position
12839 of the next row. If PT is there, we would rather
12840 display it in the next line. */
12841 while (MATRIX_ROW_BOTTOM_Y (row
) < last_y
12842 && MATRIX_ROW_END_CHARPOS (row
) == PT
12843 && !cursor_row_p (w
, row
))
12846 /* If within the scroll margin, scroll. Note that
12847 MATRIX_ROW_BOTTOM_Y gives the pixel position at which
12848 the next line would be drawn, and that
12849 this_scroll_margin can be zero. */
12850 if (MATRIX_ROW_BOTTOM_Y (row
) > last_y
12851 || PT
> MATRIX_ROW_END_CHARPOS (row
)
12852 /* Line is completely visible last line in window
12853 and PT is to be set in the next line. */
12854 || (MATRIX_ROW_BOTTOM_Y (row
) == last_y
12855 && PT
== MATRIX_ROW_END_CHARPOS (row
)
12856 && !row
->ends_at_zv_p
12857 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row
)))
12860 else if (PT
< XFASTINT (w
->last_point
))
12862 /* Cursor has to be moved backward. Note that PT >=
12863 CHARPOS (startp) because of the outer if-statement. */
12864 while (!row
->mode_line_p
12865 && (MATRIX_ROW_START_CHARPOS (row
) > PT
12866 || (MATRIX_ROW_START_CHARPOS (row
) == PT
12867 && (MATRIX_ROW_STARTS_IN_MIDDLE_OF_CHAR_P (row
)
12868 || (/* STARTS_IN_MIDDLE_OF_STRING_P (row) */
12869 row
> w
->current_matrix
->rows
12870 && (row
-1)->ends_in_newline_from_string_p
))))
12871 && (row
->y
> top_scroll_margin
12872 || CHARPOS (startp
) == BEGV
))
12874 xassert (row
->enabled_p
);
12878 /* Consider the following case: Window starts at BEGV,
12879 there is invisible, intangible text at BEGV, so that
12880 display starts at some point START > BEGV. It can
12881 happen that we are called with PT somewhere between
12882 BEGV and START. Try to handle that case. */
12883 if (row
< w
->current_matrix
->rows
12884 || row
->mode_line_p
)
12886 row
= w
->current_matrix
->rows
;
12887 if (row
->mode_line_p
)
12891 /* Due to newlines in overlay strings, we may have to
12892 skip forward over overlay strings. */
12893 while (MATRIX_ROW_BOTTOM_Y (row
) < last_y
12894 && MATRIX_ROW_END_CHARPOS (row
) == PT
12895 && !cursor_row_p (w
, row
))
12898 /* If within the scroll margin, scroll. */
12899 if (row
->y
< top_scroll_margin
12900 && CHARPOS (startp
) != BEGV
)
12905 /* Cursor did not move. So don't scroll even if cursor line
12906 is partially visible, as it was so before. */
12907 rc
= CURSOR_MOVEMENT_SUCCESS
;
12910 if (PT
< MATRIX_ROW_START_CHARPOS (row
)
12911 || PT
> MATRIX_ROW_END_CHARPOS (row
))
12913 /* if PT is not in the glyph row, give up. */
12914 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
12916 else if (rc
!= CURSOR_MOVEMENT_SUCCESS
12917 && MATRIX_ROW_PARTIALLY_VISIBLE_P (w
, row
)
12918 && make_cursor_line_fully_visible_p
)
12920 if (PT
== MATRIX_ROW_END_CHARPOS (row
)
12921 && !row
->ends_at_zv_p
12922 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row
))
12923 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
12924 else if (row
->height
> window_box_height (w
))
12926 /* If we end up in a partially visible line, let's
12927 make it fully visible, except when it's taller
12928 than the window, in which case we can't do much
12931 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
12935 set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0, 0, 0);
12936 if (!cursor_row_fully_visible_p (w
, 0, 1))
12937 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
12939 rc
= CURSOR_MOVEMENT_SUCCESS
;
12943 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
12948 if (set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0, 0, 0))
12950 rc
= CURSOR_MOVEMENT_SUCCESS
;
12955 while (MATRIX_ROW_BOTTOM_Y (row
) < last_y
12956 && MATRIX_ROW_START_CHARPOS (row
) == PT
12957 && cursor_row_p (w
, row
));
12966 set_vertical_scroll_bar (w
)
12969 int start
, end
, whole
;
12971 /* Calculate the start and end positions for the current window.
12972 At some point, it would be nice to choose between scrollbars
12973 which reflect the whole buffer size, with special markers
12974 indicating narrowing, and scrollbars which reflect only the
12977 Note that mini-buffers sometimes aren't displaying any text. */
12978 if (!MINI_WINDOW_P (w
)
12979 || (w
== XWINDOW (minibuf_window
)
12980 && NILP (echo_area_buffer
[0])))
12982 struct buffer
*buf
= XBUFFER (w
->buffer
);
12983 whole
= BUF_ZV (buf
) - BUF_BEGV (buf
);
12984 start
= marker_position (w
->start
) - BUF_BEGV (buf
);
12985 /* I don't think this is guaranteed to be right. For the
12986 moment, we'll pretend it is. */
12987 end
= BUF_Z (buf
) - XFASTINT (w
->window_end_pos
) - BUF_BEGV (buf
);
12991 if (whole
< (end
- start
))
12992 whole
= end
- start
;
12995 start
= end
= whole
= 0;
12997 /* Indicate what this scroll bar ought to be displaying now. */
12998 if (FRAME_TERMINAL (XFRAME (w
->frame
))->set_vertical_scroll_bar_hook
)
12999 (*FRAME_TERMINAL (XFRAME (w
->frame
))->set_vertical_scroll_bar_hook
)
13000 (w
, end
- start
, whole
, start
);
13004 /* Redisplay leaf window WINDOW. JUST_THIS_ONE_P non-zero means only
13005 selected_window is redisplayed.
13007 We can return without actually redisplaying the window if
13008 fonts_changed_p is nonzero. In that case, redisplay_internal will
13012 redisplay_window (window
, just_this_one_p
)
13013 Lisp_Object window
;
13014 int just_this_one_p
;
13016 struct window
*w
= XWINDOW (window
);
13017 struct frame
*f
= XFRAME (w
->frame
);
13018 struct buffer
*buffer
= XBUFFER (w
->buffer
);
13019 struct buffer
*old
= current_buffer
;
13020 struct text_pos lpoint
, opoint
, startp
;
13021 int update_mode_line
;
13024 /* Record it now because it's overwritten. */
13025 int current_matrix_up_to_date_p
= 0;
13026 int used_current_matrix_p
= 0;
13027 /* This is less strict than current_matrix_up_to_date_p.
13028 It indictes that the buffer contents and narrowing are unchanged. */
13029 int buffer_unchanged_p
= 0;
13030 int temp_scroll_step
= 0;
13031 int count
= SPECPDL_INDEX ();
13033 int centering_position
= -1;
13034 int last_line_misfit
= 0;
13035 int beg_unchanged
, end_unchanged
;
13037 SET_TEXT_POS (lpoint
, PT
, PT_BYTE
);
13040 /* W must be a leaf window here. */
13041 xassert (!NILP (w
->buffer
));
13043 *w
->desired_matrix
->method
= 0;
13047 reconsider_clip_changes (w
, buffer
);
13049 /* Has the mode line to be updated? */
13050 update_mode_line
= (!NILP (w
->update_mode_line
)
13051 || update_mode_lines
13052 || buffer
->clip_changed
13053 || buffer
->prevent_redisplay_optimizations_p
);
13055 if (MINI_WINDOW_P (w
))
13057 if (w
== XWINDOW (echo_area_window
)
13058 && !NILP (echo_area_buffer
[0]))
13060 if (update_mode_line
)
13061 /* We may have to update a tty frame's menu bar or a
13062 tool-bar. Example `M-x C-h C-h C-g'. */
13063 goto finish_menu_bars
;
13065 /* We've already displayed the echo area glyphs in this window. */
13066 goto finish_scroll_bars
;
13068 else if ((w
!= XWINDOW (minibuf_window
)
13069 || minibuf_level
== 0)
13070 /* When buffer is nonempty, redisplay window normally. */
13071 && BUF_Z (XBUFFER (w
->buffer
)) == BUF_BEG (XBUFFER (w
->buffer
))
13072 /* Quail displays non-mini buffers in minibuffer window.
13073 In that case, redisplay the window normally. */
13074 && !NILP (Fmemq (w
->buffer
, Vminibuffer_list
)))
13076 /* W is a mini-buffer window, but it's not active, so clear
13078 int yb
= window_text_bottom_y (w
);
13079 struct glyph_row
*row
;
13082 for (y
= 0, row
= w
->desired_matrix
->rows
;
13084 y
+= row
->height
, ++row
)
13085 blank_row (w
, row
, y
);
13086 goto finish_scroll_bars
;
13089 clear_glyph_matrix (w
->desired_matrix
);
13092 /* Otherwise set up data on this window; select its buffer and point
13094 /* Really select the buffer, for the sake of buffer-local
13096 set_buffer_internal_1 (XBUFFER (w
->buffer
));
13098 current_matrix_up_to_date_p
13099 = (!NILP (w
->window_end_valid
)
13100 && !current_buffer
->clip_changed
13101 && !current_buffer
->prevent_redisplay_optimizations_p
13102 && XFASTINT (w
->last_modified
) >= MODIFF
13103 && XFASTINT (w
->last_overlay_modified
) >= OVERLAY_MODIFF
);
13105 /* Run the window-bottom-change-functions
13106 if it is possible that the text on the screen has changed
13107 (either due to modification of the text, or any other reason). */
13108 if (!current_matrix_up_to_date_p
13109 && !NILP (Vwindow_text_change_functions
))
13111 safe_run_hooks (Qwindow_text_change_functions
);
13115 beg_unchanged
= BEG_UNCHANGED
;
13116 end_unchanged
= END_UNCHANGED
;
13118 SET_TEXT_POS (opoint
, PT
, PT_BYTE
);
13120 specbind (Qinhibit_point_motion_hooks
, Qt
);
13123 = (!NILP (w
->window_end_valid
)
13124 && !current_buffer
->clip_changed
13125 && XFASTINT (w
->last_modified
) >= MODIFF
13126 && XFASTINT (w
->last_overlay_modified
) >= OVERLAY_MODIFF
);
13128 /* When windows_or_buffers_changed is non-zero, we can't rely on
13129 the window end being valid, so set it to nil there. */
13130 if (windows_or_buffers_changed
)
13132 /* If window starts on a continuation line, maybe adjust the
13133 window start in case the window's width changed. */
13134 if (XMARKER (w
->start
)->buffer
== current_buffer
)
13135 compute_window_start_on_continuation_line (w
);
13137 w
->window_end_valid
= Qnil
;
13140 /* Some sanity checks. */
13141 CHECK_WINDOW_END (w
);
13142 if (Z
== Z_BYTE
&& CHARPOS (opoint
) != BYTEPOS (opoint
))
13144 if (BYTEPOS (opoint
) < CHARPOS (opoint
))
13147 /* If %c is in mode line, update it if needed. */
13148 if (!NILP (w
->column_number_displayed
)
13149 /* This alternative quickly identifies a common case
13150 where no change is needed. */
13151 && !(PT
== XFASTINT (w
->last_point
)
13152 && XFASTINT (w
->last_modified
) >= MODIFF
13153 && XFASTINT (w
->last_overlay_modified
) >= OVERLAY_MODIFF
)
13154 && (XFASTINT (w
->column_number_displayed
)
13155 != (int) current_column ())) /* iftc */
13156 update_mode_line
= 1;
13158 /* Count number of windows showing the selected buffer. An indirect
13159 buffer counts as its base buffer. */
13160 if (!just_this_one_p
)
13162 struct buffer
*current_base
, *window_base
;
13163 current_base
= current_buffer
;
13164 window_base
= XBUFFER (XWINDOW (selected_window
)->buffer
);
13165 if (current_base
->base_buffer
)
13166 current_base
= current_base
->base_buffer
;
13167 if (window_base
->base_buffer
)
13168 window_base
= window_base
->base_buffer
;
13169 if (current_base
== window_base
)
13173 /* Point refers normally to the selected window. For any other
13174 window, set up appropriate value. */
13175 if (!EQ (window
, selected_window
))
13177 int new_pt
= XMARKER (w
->pointm
)->charpos
;
13178 int new_pt_byte
= marker_byte_position (w
->pointm
);
13182 new_pt_byte
= BEGV_BYTE
;
13183 set_marker_both (w
->pointm
, Qnil
, BEGV
, BEGV_BYTE
);
13185 else if (new_pt
> (ZV
- 1))
13188 new_pt_byte
= ZV_BYTE
;
13189 set_marker_both (w
->pointm
, Qnil
, ZV
, ZV_BYTE
);
13192 /* We don't use SET_PT so that the point-motion hooks don't run. */
13193 TEMP_SET_PT_BOTH (new_pt
, new_pt_byte
);
13196 /* If any of the character widths specified in the display table
13197 have changed, invalidate the width run cache. It's true that
13198 this may be a bit late to catch such changes, but the rest of
13199 redisplay goes (non-fatally) haywire when the display table is
13200 changed, so why should we worry about doing any better? */
13201 if (current_buffer
->width_run_cache
)
13203 struct Lisp_Char_Table
*disptab
= buffer_display_table ();
13205 if (! disptab_matches_widthtab (disptab
,
13206 XVECTOR (current_buffer
->width_table
)))
13208 invalidate_region_cache (current_buffer
,
13209 current_buffer
->width_run_cache
,
13211 recompute_width_table (current_buffer
, disptab
);
13215 /* If window-start is screwed up, choose a new one. */
13216 if (XMARKER (w
->start
)->buffer
!= current_buffer
)
13219 SET_TEXT_POS_FROM_MARKER (startp
, w
->start
);
13221 /* If someone specified a new starting point but did not insist,
13222 check whether it can be used. */
13223 if (!NILP (w
->optional_new_start
)
13224 && CHARPOS (startp
) >= BEGV
13225 && CHARPOS (startp
) <= ZV
)
13227 w
->optional_new_start
= Qnil
;
13228 start_display (&it
, w
, startp
);
13229 move_it_to (&it
, PT
, 0, it
.last_visible_y
, -1,
13230 MOVE_TO_POS
| MOVE_TO_X
| MOVE_TO_Y
);
13231 if (IT_CHARPOS (it
) == PT
)
13232 w
->force_start
= Qt
;
13233 /* IT may overshoot PT if text at PT is invisible. */
13234 else if (IT_CHARPOS (it
) > PT
&& CHARPOS (startp
) <= PT
)
13235 w
->force_start
= Qt
;
13240 /* Handle case where place to start displaying has been specified,
13241 unless the specified location is outside the accessible range. */
13242 if (!NILP (w
->force_start
)
13243 || w
->frozen_window_start_p
)
13245 /* We set this later on if we have to adjust point. */
13249 w
->force_start
= Qnil
;
13251 w
->window_end_valid
= Qnil
;
13253 /* Forget any recorded base line for line number display. */
13254 if (!buffer_unchanged_p
)
13255 w
->base_line_number
= Qnil
;
13257 /* Redisplay the mode line. Select the buffer properly for that.
13258 Also, run the hook window-scroll-functions
13259 because we have scrolled. */
13260 /* Note, we do this after clearing force_start because
13261 if there's an error, it is better to forget about force_start
13262 than to get into an infinite loop calling the hook functions
13263 and having them get more errors. */
13264 if (!update_mode_line
13265 || ! NILP (Vwindow_scroll_functions
))
13267 update_mode_line
= 1;
13268 w
->update_mode_line
= Qt
;
13269 startp
= run_window_scroll_functions (window
, startp
);
13272 w
->last_modified
= make_number (0);
13273 w
->last_overlay_modified
= make_number (0);
13274 if (CHARPOS (startp
) < BEGV
)
13275 SET_TEXT_POS (startp
, BEGV
, BEGV_BYTE
);
13276 else if (CHARPOS (startp
) > ZV
)
13277 SET_TEXT_POS (startp
, ZV
, ZV_BYTE
);
13279 /* Redisplay, then check if cursor has been set during the
13280 redisplay. Give up if new fonts were loaded. */
13281 val
= try_window (window
, startp
, 1);
13284 w
->force_start
= Qt
;
13285 clear_glyph_matrix (w
->desired_matrix
);
13286 goto need_larger_matrices
;
13288 /* Point was outside the scroll margins. */
13290 new_vpos
= window_box_height (w
) / 2;
13292 if (w
->cursor
.vpos
< 0 && !w
->frozen_window_start_p
)
13294 /* If point does not appear, try to move point so it does
13295 appear. The desired matrix has been built above, so we
13296 can use it here. */
13297 new_vpos
= window_box_height (w
) / 2;
13300 if (!cursor_row_fully_visible_p (w
, 0, 0))
13302 /* Point does appear, but on a line partly visible at end of window.
13303 Move it back to a fully-visible line. */
13304 new_vpos
= window_box_height (w
);
13307 /* If we need to move point for either of the above reasons,
13308 now actually do it. */
13311 struct glyph_row
*row
;
13313 row
= MATRIX_FIRST_TEXT_ROW (w
->desired_matrix
);
13314 while (MATRIX_ROW_BOTTOM_Y (row
) < new_vpos
)
13317 TEMP_SET_PT_BOTH (MATRIX_ROW_START_CHARPOS (row
),
13318 MATRIX_ROW_START_BYTEPOS (row
));
13320 if (w
!= XWINDOW (selected_window
))
13321 set_marker_both (w
->pointm
, Qnil
, PT
, PT_BYTE
);
13322 else if (current_buffer
== old
)
13323 SET_TEXT_POS (lpoint
, PT
, PT_BYTE
);
13325 set_cursor_from_row (w
, row
, w
->desired_matrix
, 0, 0, 0, 0);
13327 /* If we are highlighting the region, then we just changed
13328 the region, so redisplay to show it. */
13329 if (!NILP (Vtransient_mark_mode
)
13330 && !NILP (current_buffer
->mark_active
))
13332 clear_glyph_matrix (w
->desired_matrix
);
13333 if (!try_window (window
, startp
, 0))
13334 goto need_larger_matrices
;
13339 debug_method_add (w
, "forced window start");
13344 /* Handle case where text has not changed, only point, and it has
13345 not moved off the frame, and we are not retrying after hscroll.
13346 (current_matrix_up_to_date_p is nonzero when retrying.) */
13347 if (current_matrix_up_to_date_p
13348 && (rc
= try_cursor_movement (window
, startp
, &temp_scroll_step
),
13349 rc
!= CURSOR_MOVEMENT_CANNOT_BE_USED
))
13353 case CURSOR_MOVEMENT_SUCCESS
:
13354 used_current_matrix_p
= 1;
13357 #if 0 /* try_cursor_movement never returns this value. */
13358 case CURSOR_MOVEMENT_NEED_LARGER_MATRICES
:
13359 goto need_larger_matrices
;
13362 case CURSOR_MOVEMENT_MUST_SCROLL
:
13363 goto try_to_scroll
;
13369 /* If current starting point was originally the beginning of a line
13370 but no longer is, find a new starting point. */
13371 else if (!NILP (w
->start_at_line_beg
)
13372 && !(CHARPOS (startp
) <= BEGV
13373 || FETCH_BYTE (BYTEPOS (startp
) - 1) == '\n'))
13376 debug_method_add (w
, "recenter 1");
13381 /* Try scrolling with try_window_id. Value is > 0 if update has
13382 been done, it is -1 if we know that the same window start will
13383 not work. It is 0 if unsuccessful for some other reason. */
13384 else if ((tem
= try_window_id (w
)) != 0)
13387 debug_method_add (w
, "try_window_id %d", tem
);
13390 if (fonts_changed_p
)
13391 goto need_larger_matrices
;
13395 /* Otherwise try_window_id has returned -1 which means that we
13396 don't want the alternative below this comment to execute. */
13398 else if (CHARPOS (startp
) >= BEGV
13399 && CHARPOS (startp
) <= ZV
13400 && PT
>= CHARPOS (startp
)
13401 && (CHARPOS (startp
) < ZV
13402 /* Avoid starting at end of buffer. */
13403 || CHARPOS (startp
) == BEGV
13404 || (XFASTINT (w
->last_modified
) >= MODIFF
13405 && XFASTINT (w
->last_overlay_modified
) >= OVERLAY_MODIFF
)))
13408 /* If first window line is a continuation line, and window start
13409 is inside the modified region, but the first change is before
13410 current window start, we must select a new window start.
13412 However, if this is the result of a down-mouse event (e.g. by
13413 extending the mouse-drag-overlay), we don't want to select a
13414 new window start, since that would change the position under
13415 the mouse, resulting in an unwanted mouse-movement rather
13416 than a simple mouse-click. */
13417 if (NILP (w
->start_at_line_beg
)
13418 && NILP (do_mouse_tracking
)
13419 && CHARPOS (startp
) > BEGV
13420 && CHARPOS (startp
) > BEG
+ beg_unchanged
13421 && CHARPOS (startp
) <= Z
- end_unchanged
)
13423 w
->force_start
= Qt
;
13424 if (XMARKER (w
->start
)->buffer
== current_buffer
)
13425 compute_window_start_on_continuation_line (w
);
13426 SET_TEXT_POS_FROM_MARKER (startp
, w
->start
);
13431 debug_method_add (w
, "same window start");
13434 /* Try to redisplay starting at same place as before.
13435 If point has not moved off frame, accept the results. */
13436 if (!current_matrix_up_to_date_p
13437 /* Don't use try_window_reusing_current_matrix in this case
13438 because a window scroll function can have changed the
13440 || !NILP (Vwindow_scroll_functions
)
13441 || MINI_WINDOW_P (w
)
13442 || !(used_current_matrix_p
13443 = try_window_reusing_current_matrix (w
)))
13445 IF_DEBUG (debug_method_add (w
, "1"));
13446 if (try_window (window
, startp
, 1) < 0)
13447 /* -1 means we need to scroll.
13448 0 means we need new matrices, but fonts_changed_p
13449 is set in that case, so we will detect it below. */
13450 goto try_to_scroll
;
13453 if (fonts_changed_p
)
13454 goto need_larger_matrices
;
13456 if (w
->cursor
.vpos
>= 0)
13458 if (!just_this_one_p
13459 || current_buffer
->clip_changed
13460 || BEG_UNCHANGED
< CHARPOS (startp
))
13461 /* Forget any recorded base line for line number display. */
13462 w
->base_line_number
= Qnil
;
13464 if (!cursor_row_fully_visible_p (w
, 1, 0))
13466 clear_glyph_matrix (w
->desired_matrix
);
13467 last_line_misfit
= 1;
13469 /* Drop through and scroll. */
13474 clear_glyph_matrix (w
->desired_matrix
);
13479 w
->last_modified
= make_number (0);
13480 w
->last_overlay_modified
= make_number (0);
13482 /* Redisplay the mode line. Select the buffer properly for that. */
13483 if (!update_mode_line
)
13485 update_mode_line
= 1;
13486 w
->update_mode_line
= Qt
;
13489 /* Try to scroll by specified few lines. */
13490 if ((scroll_conservatively
13492 || temp_scroll_step
13493 || NUMBERP (current_buffer
->scroll_up_aggressively
)
13494 || NUMBERP (current_buffer
->scroll_down_aggressively
))
13495 && !current_buffer
->clip_changed
13496 && CHARPOS (startp
) >= BEGV
13497 && CHARPOS (startp
) <= ZV
)
13499 /* The function returns -1 if new fonts were loaded, 1 if
13500 successful, 0 if not successful. */
13501 int rc
= try_scrolling (window
, just_this_one_p
,
13502 scroll_conservatively
,
13504 temp_scroll_step
, last_line_misfit
);
13507 case SCROLLING_SUCCESS
:
13510 case SCROLLING_NEED_LARGER_MATRICES
:
13511 goto need_larger_matrices
;
13513 case SCROLLING_FAILED
:
13521 /* Finally, just choose place to start which centers point */
13524 if (centering_position
< 0)
13525 centering_position
= window_box_height (w
) / 2;
13528 debug_method_add (w
, "recenter");
13531 /* w->vscroll = 0; */
13533 /* Forget any previously recorded base line for line number display. */
13534 if (!buffer_unchanged_p
)
13535 w
->base_line_number
= Qnil
;
13537 /* Move backward half the height of the window. */
13538 init_iterator (&it
, w
, PT
, PT_BYTE
, NULL
, DEFAULT_FACE_ID
);
13539 it
.current_y
= it
.last_visible_y
;
13540 move_it_vertically_backward (&it
, centering_position
);
13541 xassert (IT_CHARPOS (it
) >= BEGV
);
13543 /* The function move_it_vertically_backward may move over more
13544 than the specified y-distance. If it->w is small, e.g. a
13545 mini-buffer window, we may end up in front of the window's
13546 display area. Start displaying at the start of the line
13547 containing PT in this case. */
13548 if (it
.current_y
<= 0)
13550 init_iterator (&it
, w
, PT
, PT_BYTE
, NULL
, DEFAULT_FACE_ID
);
13551 move_it_vertically_backward (&it
, 0);
13553 /* I think this assert is bogus if buffer contains
13554 invisible text or images. KFS. */
13555 xassert (IT_CHARPOS (it
) <= PT
);
13560 it
.current_x
= it
.hpos
= 0;
13562 /* Set startp here explicitly in case that helps avoid an infinite loop
13563 in case the window-scroll-functions functions get errors. */
13564 set_marker_both (w
->start
, Qnil
, IT_CHARPOS (it
), IT_BYTEPOS (it
));
13566 /* Run scroll hooks. */
13567 startp
= run_window_scroll_functions (window
, it
.current
.pos
);
13569 /* Redisplay the window. */
13570 if (!current_matrix_up_to_date_p
13571 || windows_or_buffers_changed
13572 || cursor_type_changed
13573 /* Don't use try_window_reusing_current_matrix in this case
13574 because it can have changed the buffer. */
13575 || !NILP (Vwindow_scroll_functions
)
13576 || !just_this_one_p
13577 || MINI_WINDOW_P (w
)
13578 || !(used_current_matrix_p
13579 = try_window_reusing_current_matrix (w
)))
13580 try_window (window
, startp
, 0);
13582 /* If new fonts have been loaded (due to fontsets), give up. We
13583 have to start a new redisplay since we need to re-adjust glyph
13585 if (fonts_changed_p
)
13586 goto need_larger_matrices
;
13588 /* If cursor did not appear assume that the middle of the window is
13589 in the first line of the window. Do it again with the next line.
13590 (Imagine a window of height 100, displaying two lines of height
13591 60. Moving back 50 from it->last_visible_y will end in the first
13593 if (w
->cursor
.vpos
< 0)
13595 if (!NILP (w
->window_end_valid
)
13596 && PT
>= Z
- XFASTINT (w
->window_end_pos
))
13598 clear_glyph_matrix (w
->desired_matrix
);
13599 move_it_by_lines (&it
, 1, 0);
13600 try_window (window
, it
.current
.pos
, 0);
13602 else if (PT
< IT_CHARPOS (it
))
13604 clear_glyph_matrix (w
->desired_matrix
);
13605 move_it_by_lines (&it
, -1, 0);
13606 try_window (window
, it
.current
.pos
, 0);
13610 /* Not much we can do about it. */
13614 /* Consider the following case: Window starts at BEGV, there is
13615 invisible, intangible text at BEGV, so that display starts at
13616 some point START > BEGV. It can happen that we are called with
13617 PT somewhere between BEGV and START. Try to handle that case. */
13618 if (w
->cursor
.vpos
< 0)
13620 struct glyph_row
*row
= w
->current_matrix
->rows
;
13621 if (row
->mode_line_p
)
13623 set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0, 0, 0);
13626 if (!cursor_row_fully_visible_p (w
, 0, 0))
13628 /* If vscroll is enabled, disable it and try again. */
13632 clear_glyph_matrix (w
->desired_matrix
);
13636 /* If centering point failed to make the whole line visible,
13637 put point at the top instead. That has to make the whole line
13638 visible, if it can be done. */
13639 if (centering_position
== 0)
13642 clear_glyph_matrix (w
->desired_matrix
);
13643 centering_position
= 0;
13649 SET_TEXT_POS_FROM_MARKER (startp
, w
->start
);
13650 w
->start_at_line_beg
= ((CHARPOS (startp
) == BEGV
13651 || FETCH_BYTE (BYTEPOS (startp
) - 1) == '\n')
13654 /* Display the mode line, if we must. */
13655 if ((update_mode_line
13656 /* If window not full width, must redo its mode line
13657 if (a) the window to its side is being redone and
13658 (b) we do a frame-based redisplay. This is a consequence
13659 of how inverted lines are drawn in frame-based redisplay. */
13660 || (!just_this_one_p
13661 && !FRAME_WINDOW_P (f
)
13662 && !WINDOW_FULL_WIDTH_P (w
))
13663 /* Line number to display. */
13664 || INTEGERP (w
->base_line_pos
)
13665 /* Column number is displayed and different from the one displayed. */
13666 || (!NILP (w
->column_number_displayed
)
13667 && (XFASTINT (w
->column_number_displayed
)
13668 != (int) current_column ()))) /* iftc */
13669 /* This means that the window has a mode line. */
13670 && (WINDOW_WANTS_MODELINE_P (w
)
13671 || WINDOW_WANTS_HEADER_LINE_P (w
)))
13673 display_mode_lines (w
);
13675 /* If mode line height has changed, arrange for a thorough
13676 immediate redisplay using the correct mode line height. */
13677 if (WINDOW_WANTS_MODELINE_P (w
)
13678 && CURRENT_MODE_LINE_HEIGHT (w
) != DESIRED_MODE_LINE_HEIGHT (w
))
13680 fonts_changed_p
= 1;
13681 MATRIX_MODE_LINE_ROW (w
->current_matrix
)->height
13682 = DESIRED_MODE_LINE_HEIGHT (w
);
13685 /* If top line height has changed, arrange for a thorough
13686 immediate redisplay using the correct mode line height. */
13687 if (WINDOW_WANTS_HEADER_LINE_P (w
)
13688 && CURRENT_HEADER_LINE_HEIGHT (w
) != DESIRED_HEADER_LINE_HEIGHT (w
))
13690 fonts_changed_p
= 1;
13691 MATRIX_HEADER_LINE_ROW (w
->current_matrix
)->height
13692 = DESIRED_HEADER_LINE_HEIGHT (w
);
13695 if (fonts_changed_p
)
13696 goto need_larger_matrices
;
13699 if (!line_number_displayed
13700 && !BUFFERP (w
->base_line_pos
))
13702 w
->base_line_pos
= Qnil
;
13703 w
->base_line_number
= Qnil
;
13708 /* When we reach a frame's selected window, redo the frame's menu bar. */
13709 if (update_mode_line
13710 && EQ (FRAME_SELECTED_WINDOW (f
), window
))
13712 int redisplay_menu_p
= 0;
13713 int redisplay_tool_bar_p
= 0;
13715 if (FRAME_WINDOW_P (f
))
13717 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
13718 || defined (USE_GTK)
13719 redisplay_menu_p
= FRAME_EXTERNAL_MENU_BAR (f
);
13721 redisplay_menu_p
= FRAME_MENU_BAR_LINES (f
) > 0;
13725 redisplay_menu_p
= FRAME_MENU_BAR_LINES (f
) > 0;
13727 if (redisplay_menu_p
)
13728 display_menu_bar (w
);
13730 #ifdef HAVE_WINDOW_SYSTEM
13731 if (FRAME_WINDOW_P (f
))
13733 #if defined (USE_GTK) || USE_MAC_TOOLBAR
13734 redisplay_tool_bar_p
= FRAME_EXTERNAL_TOOL_BAR (f
);
13736 redisplay_tool_bar_p
= WINDOWP (f
->tool_bar_window
)
13737 && (FRAME_TOOL_BAR_LINES (f
) > 0
13738 || !NILP (Vauto_resize_tool_bars
));
13741 if (redisplay_tool_bar_p
&& redisplay_tool_bar (f
))
13743 extern int ignore_mouse_drag_p
;
13744 ignore_mouse_drag_p
= 1;
13750 #ifdef HAVE_WINDOW_SYSTEM
13751 if (FRAME_WINDOW_P (f
)
13752 && update_window_fringes (w
, (just_this_one_p
13753 || (!used_current_matrix_p
&& !overlay_arrow_seen
)
13754 || w
->pseudo_window_p
)))
13758 if (draw_window_fringes (w
, 1))
13759 x_draw_vertical_border (w
);
13763 #endif /* HAVE_WINDOW_SYSTEM */
13765 /* We go to this label, with fonts_changed_p nonzero,
13766 if it is necessary to try again using larger glyph matrices.
13767 We have to redeem the scroll bar even in this case,
13768 because the loop in redisplay_internal expects that. */
13769 need_larger_matrices
:
13771 finish_scroll_bars
:
13773 if (WINDOW_HAS_VERTICAL_SCROLL_BAR (w
))
13775 /* Set the thumb's position and size. */
13776 set_vertical_scroll_bar (w
);
13778 /* Note that we actually used the scroll bar attached to this
13779 window, so it shouldn't be deleted at the end of redisplay. */
13780 if (FRAME_TERMINAL (f
)->redeem_scroll_bar_hook
)
13781 (*FRAME_TERMINAL (f
)->redeem_scroll_bar_hook
) (w
);
13784 /* Restore current_buffer and value of point in it. */
13785 TEMP_SET_PT_BOTH (CHARPOS (opoint
), BYTEPOS (opoint
));
13786 set_buffer_internal_1 (old
);
13787 /* Avoid an abort in TEMP_SET_PT_BOTH if the buffer has become
13788 shorter. This can be caused by log truncation in *Messages*. */
13789 if (CHARPOS (lpoint
) <= ZV
)
13790 TEMP_SET_PT_BOTH (CHARPOS (lpoint
), BYTEPOS (lpoint
));
13792 unbind_to (count
, Qnil
);
13796 /* Build the complete desired matrix of WINDOW with a window start
13797 buffer position POS.
13799 Value is 1 if successful. It is zero if fonts were loaded during
13800 redisplay which makes re-adjusting glyph matrices necessary, and -1
13801 if point would appear in the scroll margins.
13802 (We check that only if CHECK_MARGINS is nonzero. */
13805 try_window (window
, pos
, check_margins
)
13806 Lisp_Object window
;
13807 struct text_pos pos
;
13810 struct window
*w
= XWINDOW (window
);
13812 struct glyph_row
*last_text_row
= NULL
;
13813 struct frame
*f
= XFRAME (w
->frame
);
13815 /* Make POS the new window start. */
13816 set_marker_both (w
->start
, Qnil
, CHARPOS (pos
), BYTEPOS (pos
));
13818 /* Mark cursor position as unknown. No overlay arrow seen. */
13819 w
->cursor
.vpos
= -1;
13820 overlay_arrow_seen
= 0;
13822 /* Initialize iterator and info to start at POS. */
13823 start_display (&it
, w
, pos
);
13825 /* Display all lines of W. */
13826 while (it
.current_y
< it
.last_visible_y
)
13828 if (display_line (&it
))
13829 last_text_row
= it
.glyph_row
- 1;
13830 if (fonts_changed_p
)
13834 /* Don't let the cursor end in the scroll margins. */
13836 && !MINI_WINDOW_P (w
))
13838 int this_scroll_margin
;
13840 this_scroll_margin
= max (0, scroll_margin
);
13841 this_scroll_margin
= min (this_scroll_margin
, WINDOW_TOTAL_LINES (w
) / 4);
13842 this_scroll_margin
*= FRAME_LINE_HEIGHT (it
.f
);
13844 if ((w
->cursor
.y
>= 0 /* not vscrolled */
13845 && w
->cursor
.y
< this_scroll_margin
13846 && CHARPOS (pos
) > BEGV
13847 && IT_CHARPOS (it
) < ZV
)
13848 /* rms: considering make_cursor_line_fully_visible_p here
13849 seems to give wrong results. We don't want to recenter
13850 when the last line is partly visible, we want to allow
13851 that case to be handled in the usual way. */
13852 || (w
->cursor
.y
+ 1) > it
.last_visible_y
)
13854 w
->cursor
.vpos
= -1;
13855 clear_glyph_matrix (w
->desired_matrix
);
13860 /* If bottom moved off end of frame, change mode line percentage. */
13861 if (XFASTINT (w
->window_end_pos
) <= 0
13862 && Z
!= IT_CHARPOS (it
))
13863 w
->update_mode_line
= Qt
;
13865 /* Set window_end_pos to the offset of the last character displayed
13866 on the window from the end of current_buffer. Set
13867 window_end_vpos to its row number. */
13870 xassert (MATRIX_ROW_DISPLAYS_TEXT_P (last_text_row
));
13871 w
->window_end_bytepos
13872 = Z_BYTE
- MATRIX_ROW_END_BYTEPOS (last_text_row
);
13874 = make_number (Z
- MATRIX_ROW_END_CHARPOS (last_text_row
));
13876 = make_number (MATRIX_ROW_VPOS (last_text_row
, w
->desired_matrix
));
13877 xassert (MATRIX_ROW (w
->desired_matrix
, XFASTINT (w
->window_end_vpos
))
13878 ->displays_text_p
);
13882 w
->window_end_bytepos
= Z_BYTE
- ZV_BYTE
;
13883 w
->window_end_pos
= make_number (Z
- ZV
);
13884 w
->window_end_vpos
= make_number (0);
13887 /* But that is not valid info until redisplay finishes. */
13888 w
->window_end_valid
= Qnil
;
13894 /************************************************************************
13895 Window redisplay reusing current matrix when buffer has not changed
13896 ************************************************************************/
13898 /* Try redisplay of window W showing an unchanged buffer with a
13899 different window start than the last time it was displayed by
13900 reusing its current matrix. Value is non-zero if successful.
13901 W->start is the new window start. */
13904 try_window_reusing_current_matrix (w
)
13907 struct frame
*f
= XFRAME (w
->frame
);
13908 struct glyph_row
*row
, *bottom_row
;
13911 struct text_pos start
, new_start
;
13912 int nrows_scrolled
, i
;
13913 struct glyph_row
*last_text_row
;
13914 struct glyph_row
*last_reused_text_row
;
13915 struct glyph_row
*start_row
;
13916 int start_vpos
, min_y
, max_y
;
13919 if (inhibit_try_window_reusing
)
13923 if (/* This function doesn't handle terminal frames. */
13924 !FRAME_WINDOW_P (f
)
13925 /* Don't try to reuse the display if windows have been split
13927 || windows_or_buffers_changed
13928 || cursor_type_changed
)
13931 /* Can't do this if region may have changed. */
13932 if ((!NILP (Vtransient_mark_mode
)
13933 && !NILP (current_buffer
->mark_active
))
13934 || !NILP (w
->region_showing
)
13935 || !NILP (Vshow_trailing_whitespace
))
13938 /* If top-line visibility has changed, give up. */
13939 if (WINDOW_WANTS_HEADER_LINE_P (w
)
13940 != MATRIX_HEADER_LINE_ROW (w
->current_matrix
)->mode_line_p
)
13943 /* Give up if old or new display is scrolled vertically. We could
13944 make this function handle this, but right now it doesn't. */
13945 start_row
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
13946 if (w
->vscroll
|| MATRIX_ROW_PARTIALLY_VISIBLE_P (w
, start_row
))
13949 /* The variable new_start now holds the new window start. The old
13950 start `start' can be determined from the current matrix. */
13951 SET_TEXT_POS_FROM_MARKER (new_start
, w
->start
);
13952 start
= start_row
->start
.pos
;
13953 start_vpos
= MATRIX_ROW_VPOS (start_row
, w
->current_matrix
);
13955 /* Clear the desired matrix for the display below. */
13956 clear_glyph_matrix (w
->desired_matrix
);
13958 if (CHARPOS (new_start
) <= CHARPOS (start
))
13962 /* Don't use this method if the display starts with an ellipsis
13963 displayed for invisible text. It's not easy to handle that case
13964 below, and it's certainly not worth the effort since this is
13965 not a frequent case. */
13966 if (in_ellipses_for_invisible_text_p (&start_row
->start
, w
))
13969 IF_DEBUG (debug_method_add (w
, "twu1"));
13971 /* Display up to a row that can be reused. The variable
13972 last_text_row is set to the last row displayed that displays
13973 text. Note that it.vpos == 0 if or if not there is a
13974 header-line; it's not the same as the MATRIX_ROW_VPOS! */
13975 start_display (&it
, w
, new_start
);
13976 first_row_y
= it
.current_y
;
13977 w
->cursor
.vpos
= -1;
13978 last_text_row
= last_reused_text_row
= NULL
;
13980 while (it
.current_y
< it
.last_visible_y
13981 && !fonts_changed_p
)
13983 /* If we have reached into the characters in the START row,
13984 that means the line boundaries have changed. So we
13985 can't start copying with the row START. Maybe it will
13986 work to start copying with the following row. */
13987 while (IT_CHARPOS (it
) > CHARPOS (start
))
13989 /* Advance to the next row as the "start". */
13991 start
= start_row
->start
.pos
;
13992 /* If there are no more rows to try, or just one, give up. */
13993 if (start_row
== MATRIX_MODE_LINE_ROW (w
->current_matrix
) - 1
13994 || w
->vscroll
|| MATRIX_ROW_PARTIALLY_VISIBLE_P (w
, start_row
)
13995 || CHARPOS (start
) == ZV
)
13997 clear_glyph_matrix (w
->desired_matrix
);
14001 start_vpos
= MATRIX_ROW_VPOS (start_row
, w
->current_matrix
);
14003 /* If we have reached alignment,
14004 we can copy the rest of the rows. */
14005 if (IT_CHARPOS (it
) == CHARPOS (start
))
14008 if (display_line (&it
))
14009 last_text_row
= it
.glyph_row
- 1;
14012 /* A value of current_y < last_visible_y means that we stopped
14013 at the previous window start, which in turn means that we
14014 have at least one reusable row. */
14015 if (it
.current_y
< it
.last_visible_y
)
14017 /* IT.vpos always starts from 0; it counts text lines. */
14018 nrows_scrolled
= it
.vpos
- (start_row
- MATRIX_FIRST_TEXT_ROW (w
->current_matrix
));
14020 /* Find PT if not already found in the lines displayed. */
14021 if (w
->cursor
.vpos
< 0)
14023 int dy
= it
.current_y
- start_row
->y
;
14025 row
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
14026 row
= row_containing_pos (w
, PT
, row
, NULL
, dy
);
14028 set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0,
14029 dy
, nrows_scrolled
);
14032 clear_glyph_matrix (w
->desired_matrix
);
14037 /* Scroll the display. Do it before the current matrix is
14038 changed. The problem here is that update has not yet
14039 run, i.e. part of the current matrix is not up to date.
14040 scroll_run_hook will clear the cursor, and use the
14041 current matrix to get the height of the row the cursor is
14043 run
.current_y
= start_row
->y
;
14044 run
.desired_y
= it
.current_y
;
14045 run
.height
= it
.last_visible_y
- it
.current_y
;
14047 if (run
.height
> 0 && run
.current_y
!= run
.desired_y
)
14050 FRAME_RIF (f
)->update_window_begin_hook (w
);
14051 FRAME_RIF (f
)->clear_window_mouse_face (w
);
14052 FRAME_RIF (f
)->scroll_run_hook (w
, &run
);
14053 FRAME_RIF (f
)->update_window_end_hook (w
, 0, 0);
14057 /* Shift current matrix down by nrows_scrolled lines. */
14058 bottom_row
= MATRIX_BOTTOM_TEXT_ROW (w
->current_matrix
, w
);
14059 rotate_matrix (w
->current_matrix
,
14061 MATRIX_ROW_VPOS (bottom_row
, w
->current_matrix
),
14064 /* Disable lines that must be updated. */
14065 for (i
= 0; i
< nrows_scrolled
; ++i
)
14066 (start_row
+ i
)->enabled_p
= 0;
14068 /* Re-compute Y positions. */
14069 min_y
= WINDOW_HEADER_LINE_HEIGHT (w
);
14070 max_y
= it
.last_visible_y
;
14071 for (row
= start_row
+ nrows_scrolled
;
14075 row
->y
= it
.current_y
;
14076 row
->visible_height
= row
->height
;
14078 if (row
->y
< min_y
)
14079 row
->visible_height
-= min_y
- row
->y
;
14080 if (row
->y
+ row
->height
> max_y
)
14081 row
->visible_height
-= row
->y
+ row
->height
- max_y
;
14082 row
->redraw_fringe_bitmaps_p
= 1;
14084 it
.current_y
+= row
->height
;
14086 if (MATRIX_ROW_DISPLAYS_TEXT_P (row
))
14087 last_reused_text_row
= row
;
14088 if (MATRIX_ROW_BOTTOM_Y (row
) >= it
.last_visible_y
)
14092 /* Disable lines in the current matrix which are now
14093 below the window. */
14094 for (++row
; row
< bottom_row
; ++row
)
14095 row
->enabled_p
= row
->mode_line_p
= 0;
14098 /* Update window_end_pos etc.; last_reused_text_row is the last
14099 reused row from the current matrix containing text, if any.
14100 The value of last_text_row is the last displayed line
14101 containing text. */
14102 if (last_reused_text_row
)
14104 w
->window_end_bytepos
14105 = Z_BYTE
- MATRIX_ROW_END_BYTEPOS (last_reused_text_row
);
14107 = make_number (Z
- MATRIX_ROW_END_CHARPOS (last_reused_text_row
));
14109 = make_number (MATRIX_ROW_VPOS (last_reused_text_row
,
14110 w
->current_matrix
));
14112 else if (last_text_row
)
14114 w
->window_end_bytepos
14115 = Z_BYTE
- MATRIX_ROW_END_BYTEPOS (last_text_row
);
14117 = make_number (Z
- MATRIX_ROW_END_CHARPOS (last_text_row
));
14119 = make_number (MATRIX_ROW_VPOS (last_text_row
, w
->desired_matrix
));
14123 /* This window must be completely empty. */
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);
14128 w
->window_end_valid
= Qnil
;
14130 /* Update hint: don't try scrolling again in update_window. */
14131 w
->desired_matrix
->no_scrolling_p
= 1;
14134 debug_method_add (w
, "try_window_reusing_current_matrix 1");
14138 else if (CHARPOS (new_start
) > CHARPOS (start
))
14140 struct glyph_row
*pt_row
, *row
;
14141 struct glyph_row
*first_reusable_row
;
14142 struct glyph_row
*first_row_to_display
;
14144 int yb
= window_text_bottom_y (w
);
14146 /* Find the row starting at new_start, if there is one. Don't
14147 reuse a partially visible line at the end. */
14148 first_reusable_row
= start_row
;
14149 while (first_reusable_row
->enabled_p
14150 && MATRIX_ROW_BOTTOM_Y (first_reusable_row
) < yb
14151 && (MATRIX_ROW_START_CHARPOS (first_reusable_row
)
14152 < CHARPOS (new_start
)))
14153 ++first_reusable_row
;
14155 /* Give up if there is no row to reuse. */
14156 if (MATRIX_ROW_BOTTOM_Y (first_reusable_row
) >= yb
14157 || !first_reusable_row
->enabled_p
14158 || (MATRIX_ROW_START_CHARPOS (first_reusable_row
)
14159 != CHARPOS (new_start
)))
14162 /* We can reuse fully visible rows beginning with
14163 first_reusable_row to the end of the window. Set
14164 first_row_to_display to the first row that cannot be reused.
14165 Set pt_row to the row containing point, if there is any. */
14167 for (first_row_to_display
= first_reusable_row
;
14168 MATRIX_ROW_BOTTOM_Y (first_row_to_display
) < yb
;
14169 ++first_row_to_display
)
14171 if (PT
>= MATRIX_ROW_START_CHARPOS (first_row_to_display
)
14172 && PT
< MATRIX_ROW_END_CHARPOS (first_row_to_display
))
14173 pt_row
= first_row_to_display
;
14176 /* Start displaying at the start of first_row_to_display. */
14177 xassert (first_row_to_display
->y
< yb
);
14178 init_to_row_start (&it
, w
, first_row_to_display
);
14180 nrows_scrolled
= (MATRIX_ROW_VPOS (first_reusable_row
, w
->current_matrix
)
14182 it
.vpos
= (MATRIX_ROW_VPOS (first_row_to_display
, w
->current_matrix
)
14184 it
.current_y
= (first_row_to_display
->y
- first_reusable_row
->y
14185 + WINDOW_HEADER_LINE_HEIGHT (w
));
14187 /* Display lines beginning with first_row_to_display in the
14188 desired matrix. Set last_text_row to the last row displayed
14189 that displays text. */
14190 it
.glyph_row
= MATRIX_ROW (w
->desired_matrix
, it
.vpos
);
14191 if (pt_row
== NULL
)
14192 w
->cursor
.vpos
= -1;
14193 last_text_row
= NULL
;
14194 while (it
.current_y
< it
.last_visible_y
&& !fonts_changed_p
)
14195 if (display_line (&it
))
14196 last_text_row
= it
.glyph_row
- 1;
14198 /* Give up If point isn't in a row displayed or reused. */
14199 if (w
->cursor
.vpos
< 0)
14201 clear_glyph_matrix (w
->desired_matrix
);
14205 /* If point is in a reused row, adjust y and vpos of the cursor
14209 w
->cursor
.vpos
-= nrows_scrolled
;
14210 w
->cursor
.y
-= first_reusable_row
->y
- start_row
->y
;
14213 /* Scroll the display. */
14214 run
.current_y
= first_reusable_row
->y
;
14215 run
.desired_y
= WINDOW_HEADER_LINE_HEIGHT (w
);
14216 run
.height
= it
.last_visible_y
- run
.current_y
;
14217 dy
= run
.current_y
- run
.desired_y
;
14222 FRAME_RIF (f
)->update_window_begin_hook (w
);
14223 FRAME_RIF (f
)->clear_window_mouse_face (w
);
14224 FRAME_RIF (f
)->scroll_run_hook (w
, &run
);
14225 FRAME_RIF (f
)->update_window_end_hook (w
, 0, 0);
14229 /* Adjust Y positions of reused rows. */
14230 bottom_row
= MATRIX_BOTTOM_TEXT_ROW (w
->current_matrix
, w
);
14231 min_y
= WINDOW_HEADER_LINE_HEIGHT (w
);
14232 max_y
= it
.last_visible_y
;
14233 for (row
= first_reusable_row
; row
< first_row_to_display
; ++row
)
14236 row
->visible_height
= row
->height
;
14237 if (row
->y
< min_y
)
14238 row
->visible_height
-= min_y
- row
->y
;
14239 if (row
->y
+ row
->height
> max_y
)
14240 row
->visible_height
-= row
->y
+ row
->height
- max_y
;
14241 row
->redraw_fringe_bitmaps_p
= 1;
14244 /* Scroll the current matrix. */
14245 xassert (nrows_scrolled
> 0);
14246 rotate_matrix (w
->current_matrix
,
14248 MATRIX_ROW_VPOS (bottom_row
, w
->current_matrix
),
14251 /* Disable rows not reused. */
14252 for (row
-= nrows_scrolled
; row
< bottom_row
; ++row
)
14253 row
->enabled_p
= 0;
14255 /* Point may have moved to a different line, so we cannot assume that
14256 the previous cursor position is valid; locate the correct row. */
14259 for (row
= MATRIX_ROW (w
->current_matrix
, w
->cursor
.vpos
);
14260 row
< bottom_row
&& PT
>= MATRIX_ROW_END_CHARPOS (row
);
14264 w
->cursor
.y
= row
->y
;
14266 if (row
< bottom_row
)
14268 struct glyph
*glyph
= row
->glyphs
[TEXT_AREA
] + w
->cursor
.hpos
;
14269 while (glyph
->charpos
< PT
)
14272 w
->cursor
.x
+= glyph
->pixel_width
;
14278 /* Adjust window end. A null value of last_text_row means that
14279 the window end is in reused rows which in turn means that
14280 only its vpos can have changed. */
14283 w
->window_end_bytepos
14284 = Z_BYTE
- MATRIX_ROW_END_BYTEPOS (last_text_row
);
14286 = make_number (Z
- MATRIX_ROW_END_CHARPOS (last_text_row
));
14288 = make_number (MATRIX_ROW_VPOS (last_text_row
, w
->desired_matrix
));
14293 = make_number (XFASTINT (w
->window_end_vpos
) - nrows_scrolled
);
14296 w
->window_end_valid
= Qnil
;
14297 w
->desired_matrix
->no_scrolling_p
= 1;
14300 debug_method_add (w
, "try_window_reusing_current_matrix 2");
14310 /************************************************************************
14311 Window redisplay reusing current matrix when buffer has changed
14312 ************************************************************************/
14314 static struct glyph_row
*find_last_unchanged_at_beg_row
P_ ((struct window
*));
14315 static struct glyph_row
*find_first_unchanged_at_end_row
P_ ((struct window
*,
14317 static struct glyph_row
*
14318 find_last_row_displaying_text
P_ ((struct glyph_matrix
*, struct it
*,
14319 struct glyph_row
*));
14322 /* Return the last row in MATRIX displaying text. If row START is
14323 non-null, start searching with that row. IT gives the dimensions
14324 of the display. Value is null if matrix is empty; otherwise it is
14325 a pointer to the row found. */
14327 static struct glyph_row
*
14328 find_last_row_displaying_text (matrix
, it
, start
)
14329 struct glyph_matrix
*matrix
;
14331 struct glyph_row
*start
;
14333 struct glyph_row
*row
, *row_found
;
14335 /* Set row_found to the last row in IT->w's current matrix
14336 displaying text. The loop looks funny but think of partially
14339 row
= start
? start
: MATRIX_FIRST_TEXT_ROW (matrix
);
14340 while (MATRIX_ROW_DISPLAYS_TEXT_P (row
))
14342 xassert (row
->enabled_p
);
14344 if (MATRIX_ROW_BOTTOM_Y (row
) >= it
->last_visible_y
)
14353 /* Return the last row in the current matrix of W that is not affected
14354 by changes at the start of current_buffer that occurred since W's
14355 current matrix was built. Value is null if no such row exists.
14357 BEG_UNCHANGED us the number of characters unchanged at the start of
14358 current_buffer. BEG + BEG_UNCHANGED is the buffer position of the
14359 first changed character in current_buffer. Characters at positions <
14360 BEG + BEG_UNCHANGED are at the same buffer positions as they were
14361 when the current matrix was built. */
14363 static struct glyph_row
*
14364 find_last_unchanged_at_beg_row (w
)
14367 int first_changed_pos
= BEG
+ BEG_UNCHANGED
;
14368 struct glyph_row
*row
;
14369 struct glyph_row
*row_found
= NULL
;
14370 int yb
= window_text_bottom_y (w
);
14372 /* Find the last row displaying unchanged text. */
14373 row
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
14374 while (MATRIX_ROW_DISPLAYS_TEXT_P (row
)
14375 && MATRIX_ROW_START_CHARPOS (row
) < first_changed_pos
)
14377 if (/* If row ends before first_changed_pos, it is unchanged,
14378 except in some case. */
14379 MATRIX_ROW_END_CHARPOS (row
) <= first_changed_pos
14380 /* When row ends in ZV and we write at ZV it is not
14382 && !row
->ends_at_zv_p
14383 /* When first_changed_pos is the end of a continued line,
14384 row is not unchanged because it may be no longer
14386 && !(MATRIX_ROW_END_CHARPOS (row
) == first_changed_pos
14387 && (row
->continued_p
14388 || row
->exact_window_width_line_p
)))
14391 /* Stop if last visible row. */
14392 if (MATRIX_ROW_BOTTOM_Y (row
) >= yb
)
14402 /* Find the first glyph row in the current matrix of W that is not
14403 affected by changes at the end of current_buffer since the
14404 time W's current matrix was built.
14406 Return in *DELTA the number of chars by which buffer positions in
14407 unchanged text at the end of current_buffer must be adjusted.
14409 Return in *DELTA_BYTES the corresponding number of bytes.
14411 Value is null if no such row exists, i.e. all rows are affected by
14414 static struct glyph_row
*
14415 find_first_unchanged_at_end_row (w
, delta
, delta_bytes
)
14417 int *delta
, *delta_bytes
;
14419 struct glyph_row
*row
;
14420 struct glyph_row
*row_found
= NULL
;
14422 *delta
= *delta_bytes
= 0;
14424 /* Display must not have been paused, otherwise the current matrix
14425 is not up to date. */
14426 eassert (!NILP (w
->window_end_valid
));
14428 /* A value of window_end_pos >= END_UNCHANGED means that the window
14429 end is in the range of changed text. If so, there is no
14430 unchanged row at the end of W's current matrix. */
14431 if (XFASTINT (w
->window_end_pos
) >= END_UNCHANGED
)
14434 /* Set row to the last row in W's current matrix displaying text. */
14435 row
= MATRIX_ROW (w
->current_matrix
, XFASTINT (w
->window_end_vpos
));
14437 /* If matrix is entirely empty, no unchanged row exists. */
14438 if (MATRIX_ROW_DISPLAYS_TEXT_P (row
))
14440 /* The value of row is the last glyph row in the matrix having a
14441 meaningful buffer position in it. The end position of row
14442 corresponds to window_end_pos. This allows us to translate
14443 buffer positions in the current matrix to current buffer
14444 positions for characters not in changed text. */
14445 int Z_old
= MATRIX_ROW_END_CHARPOS (row
) + XFASTINT (w
->window_end_pos
);
14446 int Z_BYTE_old
= MATRIX_ROW_END_BYTEPOS (row
) + w
->window_end_bytepos
;
14447 int last_unchanged_pos
, last_unchanged_pos_old
;
14448 struct glyph_row
*first_text_row
14449 = MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
14451 *delta
= Z
- Z_old
;
14452 *delta_bytes
= Z_BYTE
- Z_BYTE_old
;
14454 /* Set last_unchanged_pos to the buffer position of the last
14455 character in the buffer that has not been changed. Z is the
14456 index + 1 of the last character in current_buffer, i.e. by
14457 subtracting END_UNCHANGED we get the index of the last
14458 unchanged character, and we have to add BEG to get its buffer
14460 last_unchanged_pos
= Z
- END_UNCHANGED
+ BEG
;
14461 last_unchanged_pos_old
= last_unchanged_pos
- *delta
;
14463 /* Search backward from ROW for a row displaying a line that
14464 starts at a minimum position >= last_unchanged_pos_old. */
14465 for (; row
> first_text_row
; --row
)
14467 /* This used to abort, but it can happen.
14468 It is ok to just stop the search instead here. KFS. */
14469 if (!row
->enabled_p
|| !MATRIX_ROW_DISPLAYS_TEXT_P (row
))
14472 if (MATRIX_ROW_START_CHARPOS (row
) >= last_unchanged_pos_old
)
14477 eassert (!row_found
|| MATRIX_ROW_DISPLAYS_TEXT_P (row_found
));
14483 /* Make sure that glyph rows in the current matrix of window W
14484 reference the same glyph memory as corresponding rows in the
14485 frame's frame matrix. This function is called after scrolling W's
14486 current matrix on a terminal frame in try_window_id and
14487 try_window_reusing_current_matrix. */
14490 sync_frame_with_window_matrix_rows (w
)
14493 struct frame
*f
= XFRAME (w
->frame
);
14494 struct glyph_row
*window_row
, *window_row_end
, *frame_row
;
14496 /* Preconditions: W must be a leaf window and full-width. Its frame
14497 must have a frame matrix. */
14498 xassert (NILP (w
->hchild
) && NILP (w
->vchild
));
14499 xassert (WINDOW_FULL_WIDTH_P (w
));
14500 xassert (!FRAME_WINDOW_P (f
));
14502 /* If W is a full-width window, glyph pointers in W's current matrix
14503 have, by definition, to be the same as glyph pointers in the
14504 corresponding frame matrix. Note that frame matrices have no
14505 marginal areas (see build_frame_matrix). */
14506 window_row
= w
->current_matrix
->rows
;
14507 window_row_end
= window_row
+ w
->current_matrix
->nrows
;
14508 frame_row
= f
->current_matrix
->rows
+ WINDOW_TOP_EDGE_LINE (w
);
14509 while (window_row
< window_row_end
)
14511 struct glyph
*start
= window_row
->glyphs
[LEFT_MARGIN_AREA
];
14512 struct glyph
*end
= window_row
->glyphs
[LAST_AREA
];
14514 frame_row
->glyphs
[LEFT_MARGIN_AREA
] = start
;
14515 frame_row
->glyphs
[TEXT_AREA
] = start
;
14516 frame_row
->glyphs
[RIGHT_MARGIN_AREA
] = end
;
14517 frame_row
->glyphs
[LAST_AREA
] = end
;
14519 /* Disable frame rows whose corresponding window rows have
14520 been disabled in try_window_id. */
14521 if (!window_row
->enabled_p
)
14522 frame_row
->enabled_p
= 0;
14524 ++window_row
, ++frame_row
;
14529 /* Find the glyph row in window W containing CHARPOS. Consider all
14530 rows between START and END (not inclusive). END null means search
14531 all rows to the end of the display area of W. Value is the row
14532 containing CHARPOS or null. */
14535 row_containing_pos (w
, charpos
, start
, end
, dy
)
14538 struct glyph_row
*start
, *end
;
14541 struct glyph_row
*row
= start
;
14544 /* If we happen to start on a header-line, skip that. */
14545 if (row
->mode_line_p
)
14548 if ((end
&& row
>= end
) || !row
->enabled_p
)
14551 last_y
= window_text_bottom_y (w
) - dy
;
14555 /* Give up if we have gone too far. */
14556 if (end
&& row
>= end
)
14558 /* This formerly returned if they were equal.
14559 I think that both quantities are of a "last plus one" type;
14560 if so, when they are equal, the row is within the screen. -- rms. */
14561 if (MATRIX_ROW_BOTTOM_Y (row
) > last_y
)
14564 /* If it is in this row, return this row. */
14565 if (! (MATRIX_ROW_END_CHARPOS (row
) < charpos
14566 || (MATRIX_ROW_END_CHARPOS (row
) == charpos
14567 /* The end position of a row equals the start
14568 position of the next row. If CHARPOS is there, we
14569 would rather display it in the next line, except
14570 when this line ends in ZV. */
14571 && !row
->ends_at_zv_p
14572 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row
)))
14573 && charpos
>= MATRIX_ROW_START_CHARPOS (row
))
14580 /* Try to redisplay window W by reusing its existing display. W's
14581 current matrix must be up to date when this function is called,
14582 i.e. window_end_valid must not be nil.
14586 1 if display has been updated
14587 0 if otherwise unsuccessful
14588 -1 if redisplay with same window start is known not to succeed
14590 The following steps are performed:
14592 1. Find the last row in the current matrix of W that is not
14593 affected by changes at the start of current_buffer. If no such row
14596 2. Find the first row in W's current matrix that is not affected by
14597 changes at the end of current_buffer. Maybe there is no such row.
14599 3. Display lines beginning with the row + 1 found in step 1 to the
14600 row found in step 2 or, if step 2 didn't find a row, to the end of
14603 4. If cursor is not known to appear on the window, give up.
14605 5. If display stopped at the row found in step 2, scroll the
14606 display and current matrix as needed.
14608 6. Maybe display some lines at the end of W, if we must. This can
14609 happen under various circumstances, like a partially visible line
14610 becoming fully visible, or because newly displayed lines are displayed
14611 in smaller font sizes.
14613 7. Update W's window end information. */
14619 struct frame
*f
= XFRAME (w
->frame
);
14620 struct glyph_matrix
*current_matrix
= w
->current_matrix
;
14621 struct glyph_matrix
*desired_matrix
= w
->desired_matrix
;
14622 struct glyph_row
*last_unchanged_at_beg_row
;
14623 struct glyph_row
*first_unchanged_at_end_row
;
14624 struct glyph_row
*row
;
14625 struct glyph_row
*bottom_row
;
14628 int delta
= 0, delta_bytes
= 0, stop_pos
, dvpos
, dy
;
14629 struct text_pos start_pos
;
14631 int first_unchanged_at_end_vpos
= 0;
14632 struct glyph_row
*last_text_row
, *last_text_row_at_end
;
14633 struct text_pos start
;
14634 int first_changed_charpos
, last_changed_charpos
;
14637 if (inhibit_try_window_id
)
14641 /* This is handy for debugging. */
14643 #define GIVE_UP(X) \
14645 fprintf (stderr, "try_window_id give up %d\n", (X)); \
14649 #define GIVE_UP(X) return 0
14652 SET_TEXT_POS_FROM_MARKER (start
, w
->start
);
14654 /* Don't use this for mini-windows because these can show
14655 messages and mini-buffers, and we don't handle that here. */
14656 if (MINI_WINDOW_P (w
))
14659 /* This flag is used to prevent redisplay optimizations. */
14660 if (windows_or_buffers_changed
|| cursor_type_changed
)
14663 /* Verify that narrowing has not changed.
14664 Also verify that we were not told to prevent redisplay optimizations.
14665 It would be nice to further
14666 reduce the number of cases where this prevents try_window_id. */
14667 if (current_buffer
->clip_changed
14668 || current_buffer
->prevent_redisplay_optimizations_p
)
14671 /* Window must either use window-based redisplay or be full width. */
14672 if (!FRAME_WINDOW_P (f
)
14673 && (!FRAME_LINE_INS_DEL_OK (f
)
14674 || !WINDOW_FULL_WIDTH_P (w
)))
14677 /* Give up if point is not known NOT to appear in W. */
14678 if (PT
< CHARPOS (start
))
14681 /* Another way to prevent redisplay optimizations. */
14682 if (XFASTINT (w
->last_modified
) == 0)
14685 /* Verify that window is not hscrolled. */
14686 if (XFASTINT (w
->hscroll
) != 0)
14689 /* Verify that display wasn't paused. */
14690 if (NILP (w
->window_end_valid
))
14693 /* Can't use this if highlighting a region because a cursor movement
14694 will do more than just set the cursor. */
14695 if (!NILP (Vtransient_mark_mode
)
14696 && !NILP (current_buffer
->mark_active
))
14699 /* Likewise if highlighting trailing whitespace. */
14700 if (!NILP (Vshow_trailing_whitespace
))
14703 /* Likewise if showing a region. */
14704 if (!NILP (w
->region_showing
))
14707 /* Can use this if overlay arrow position and or string have changed. */
14708 if (overlay_arrows_changed_p ())
14712 /* Make sure beg_unchanged and end_unchanged are up to date. Do it
14713 only if buffer has really changed. The reason is that the gap is
14714 initially at Z for freshly visited files. The code below would
14715 set end_unchanged to 0 in that case. */
14716 if (MODIFF
> SAVE_MODIFF
14717 /* This seems to happen sometimes after saving a buffer. */
14718 || BEG_UNCHANGED
+ END_UNCHANGED
> Z_BYTE
)
14720 if (GPT
- BEG
< BEG_UNCHANGED
)
14721 BEG_UNCHANGED
= GPT
- BEG
;
14722 if (Z
- GPT
< END_UNCHANGED
)
14723 END_UNCHANGED
= Z
- GPT
;
14726 /* The position of the first and last character that has been changed. */
14727 first_changed_charpos
= BEG
+ BEG_UNCHANGED
;
14728 last_changed_charpos
= Z
- END_UNCHANGED
;
14730 /* If window starts after a line end, and the last change is in
14731 front of that newline, then changes don't affect the display.
14732 This case happens with stealth-fontification. Note that although
14733 the display is unchanged, glyph positions in the matrix have to
14734 be adjusted, of course. */
14735 row
= MATRIX_ROW (w
->current_matrix
, XFASTINT (w
->window_end_vpos
));
14736 if (MATRIX_ROW_DISPLAYS_TEXT_P (row
)
14737 && ((last_changed_charpos
< CHARPOS (start
)
14738 && CHARPOS (start
) == BEGV
)
14739 || (last_changed_charpos
< CHARPOS (start
) - 1
14740 && FETCH_BYTE (BYTEPOS (start
) - 1) == '\n')))
14742 int Z_old
, delta
, Z_BYTE_old
, delta_bytes
;
14743 struct glyph_row
*r0
;
14745 /* Compute how many chars/bytes have been added to or removed
14746 from the buffer. */
14747 Z_old
= MATRIX_ROW_END_CHARPOS (row
) + XFASTINT (w
->window_end_pos
);
14748 Z_BYTE_old
= MATRIX_ROW_END_BYTEPOS (row
) + w
->window_end_bytepos
;
14750 delta_bytes
= Z_BYTE
- Z_BYTE_old
;
14752 /* Give up if PT is not in the window. Note that it already has
14753 been checked at the start of try_window_id that PT is not in
14754 front of the window start. */
14755 if (PT
>= MATRIX_ROW_END_CHARPOS (row
) + delta
)
14758 /* If window start is unchanged, we can reuse the whole matrix
14759 as is, after adjusting glyph positions. No need to compute
14760 the window end again, since its offset from Z hasn't changed. */
14761 r0
= MATRIX_FIRST_TEXT_ROW (current_matrix
);
14762 if (CHARPOS (start
) == MATRIX_ROW_START_CHARPOS (r0
) + delta
14763 && BYTEPOS (start
) == MATRIX_ROW_START_BYTEPOS (r0
) + delta_bytes
14764 /* PT must not be in a partially visible line. */
14765 && !(PT
>= MATRIX_ROW_START_CHARPOS (row
) + delta
14766 && MATRIX_ROW_BOTTOM_Y (row
) > window_text_bottom_y (w
)))
14768 /* Adjust positions in the glyph matrix. */
14769 if (delta
|| delta_bytes
)
14771 struct glyph_row
*r1
14772 = MATRIX_BOTTOM_TEXT_ROW (current_matrix
, w
);
14773 increment_matrix_positions (w
->current_matrix
,
14774 MATRIX_ROW_VPOS (r0
, current_matrix
),
14775 MATRIX_ROW_VPOS (r1
, current_matrix
),
14776 delta
, delta_bytes
);
14779 /* Set the cursor. */
14780 row
= row_containing_pos (w
, PT
, r0
, NULL
, 0);
14782 set_cursor_from_row (w
, row
, current_matrix
, 0, 0, 0, 0);
14789 /* Handle the case that changes are all below what is displayed in
14790 the window, and that PT is in the window. This shortcut cannot
14791 be taken if ZV is visible in the window, and text has been added
14792 there that is visible in the window. */
14793 if (first_changed_charpos
>= MATRIX_ROW_END_CHARPOS (row
)
14794 /* ZV is not visible in the window, or there are no
14795 changes at ZV, actually. */
14796 && (current_matrix
->zv
> MATRIX_ROW_END_CHARPOS (row
)
14797 || first_changed_charpos
== last_changed_charpos
))
14799 struct glyph_row
*r0
;
14801 /* Give up if PT is not in the window. Note that it already has
14802 been checked at the start of try_window_id that PT is not in
14803 front of the window start. */
14804 if (PT
>= MATRIX_ROW_END_CHARPOS (row
))
14807 /* If window start is unchanged, we can reuse the whole matrix
14808 as is, without changing glyph positions since no text has
14809 been added/removed in front of the window end. */
14810 r0
= MATRIX_FIRST_TEXT_ROW (current_matrix
);
14811 if (TEXT_POS_EQUAL_P (start
, r0
->start
.pos
)
14812 /* PT must not be in a partially visible line. */
14813 && !(PT
>= MATRIX_ROW_START_CHARPOS (row
)
14814 && MATRIX_ROW_BOTTOM_Y (row
) > window_text_bottom_y (w
)))
14816 /* We have to compute the window end anew since text
14817 can have been added/removed after it. */
14819 = make_number (Z
- MATRIX_ROW_END_CHARPOS (row
));
14820 w
->window_end_bytepos
14821 = Z_BYTE
- MATRIX_ROW_END_BYTEPOS (row
);
14823 /* Set the cursor. */
14824 row
= row_containing_pos (w
, PT
, r0
, NULL
, 0);
14826 set_cursor_from_row (w
, row
, current_matrix
, 0, 0, 0, 0);
14833 /* Give up if window start is in the changed area.
14835 The condition used to read
14837 (BEG_UNCHANGED + END_UNCHANGED != Z - BEG && ...)
14839 but why that was tested escapes me at the moment. */
14840 if (CHARPOS (start
) >= first_changed_charpos
14841 && CHARPOS (start
) <= last_changed_charpos
)
14844 /* Check that window start agrees with the start of the first glyph
14845 row in its current matrix. Check this after we know the window
14846 start is not in changed text, otherwise positions would not be
14848 row
= MATRIX_FIRST_TEXT_ROW (current_matrix
);
14849 if (!TEXT_POS_EQUAL_P (start
, row
->start
.pos
))
14852 /* Give up if the window ends in strings. Overlay strings
14853 at the end are difficult to handle, so don't try. */
14854 row
= MATRIX_ROW (current_matrix
, XFASTINT (w
->window_end_vpos
));
14855 if (MATRIX_ROW_START_CHARPOS (row
) == MATRIX_ROW_END_CHARPOS (row
))
14858 /* Compute the position at which we have to start displaying new
14859 lines. Some of the lines at the top of the window might be
14860 reusable because they are not displaying changed text. Find the
14861 last row in W's current matrix not affected by changes at the
14862 start of current_buffer. Value is null if changes start in the
14863 first line of window. */
14864 last_unchanged_at_beg_row
= find_last_unchanged_at_beg_row (w
);
14865 if (last_unchanged_at_beg_row
)
14867 /* Avoid starting to display in the moddle of a character, a TAB
14868 for instance. This is easier than to set up the iterator
14869 exactly, and it's not a frequent case, so the additional
14870 effort wouldn't really pay off. */
14871 while ((MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (last_unchanged_at_beg_row
)
14872 || last_unchanged_at_beg_row
->ends_in_newline_from_string_p
)
14873 && last_unchanged_at_beg_row
> w
->current_matrix
->rows
)
14874 --last_unchanged_at_beg_row
;
14876 if (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (last_unchanged_at_beg_row
))
14879 if (init_to_row_end (&it
, w
, last_unchanged_at_beg_row
) == 0)
14881 start_pos
= it
.current
.pos
;
14883 /* Start displaying new lines in the desired matrix at the same
14884 vpos we would use in the current matrix, i.e. below
14885 last_unchanged_at_beg_row. */
14886 it
.vpos
= 1 + MATRIX_ROW_VPOS (last_unchanged_at_beg_row
,
14888 it
.glyph_row
= MATRIX_ROW (desired_matrix
, it
.vpos
);
14889 it
.current_y
= MATRIX_ROW_BOTTOM_Y (last_unchanged_at_beg_row
);
14891 xassert (it
.hpos
== 0 && it
.current_x
== 0);
14895 /* There are no reusable lines at the start of the window.
14896 Start displaying in the first text line. */
14897 start_display (&it
, w
, start
);
14898 it
.vpos
= it
.first_vpos
;
14899 start_pos
= it
.current
.pos
;
14902 /* Find the first row that is not affected by changes at the end of
14903 the buffer. Value will be null if there is no unchanged row, in
14904 which case we must redisplay to the end of the window. delta
14905 will be set to the value by which buffer positions beginning with
14906 first_unchanged_at_end_row have to be adjusted due to text
14908 first_unchanged_at_end_row
14909 = find_first_unchanged_at_end_row (w
, &delta
, &delta_bytes
);
14910 IF_DEBUG (debug_delta
= delta
);
14911 IF_DEBUG (debug_delta_bytes
= delta_bytes
);
14913 /* Set stop_pos to the buffer position up to which we will have to
14914 display new lines. If first_unchanged_at_end_row != NULL, this
14915 is the buffer position of the start of the line displayed in that
14916 row. For first_unchanged_at_end_row == NULL, use 0 to indicate
14917 that we don't stop at a buffer position. */
14919 if (first_unchanged_at_end_row
)
14921 xassert (last_unchanged_at_beg_row
== NULL
14922 || first_unchanged_at_end_row
>= last_unchanged_at_beg_row
);
14924 /* If this is a continuation line, move forward to the next one
14925 that isn't. Changes in lines above affect this line.
14926 Caution: this may move first_unchanged_at_end_row to a row
14927 not displaying text. */
14928 while (MATRIX_ROW_CONTINUATION_LINE_P (first_unchanged_at_end_row
)
14929 && MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row
)
14930 && (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row
)
14931 < it
.last_visible_y
))
14932 ++first_unchanged_at_end_row
;
14934 if (!MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row
)
14935 || (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row
)
14936 >= it
.last_visible_y
))
14937 first_unchanged_at_end_row
= NULL
;
14940 stop_pos
= (MATRIX_ROW_START_CHARPOS (first_unchanged_at_end_row
)
14942 first_unchanged_at_end_vpos
14943 = MATRIX_ROW_VPOS (first_unchanged_at_end_row
, current_matrix
);
14944 xassert (stop_pos
>= Z
- END_UNCHANGED
);
14947 else if (last_unchanged_at_beg_row
== NULL
)
14953 /* Either there is no unchanged row at the end, or the one we have
14954 now displays text. This is a necessary condition for the window
14955 end pos calculation at the end of this function. */
14956 xassert (first_unchanged_at_end_row
== NULL
14957 || MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row
));
14959 debug_last_unchanged_at_beg_vpos
14960 = (last_unchanged_at_beg_row
14961 ? MATRIX_ROW_VPOS (last_unchanged_at_beg_row
, current_matrix
)
14963 debug_first_unchanged_at_end_vpos
= first_unchanged_at_end_vpos
;
14965 #endif /* GLYPH_DEBUG != 0 */
14968 /* Display new lines. Set last_text_row to the last new line
14969 displayed which has text on it, i.e. might end up as being the
14970 line where the window_end_vpos is. */
14971 w
->cursor
.vpos
= -1;
14972 last_text_row
= NULL
;
14973 overlay_arrow_seen
= 0;
14974 while (it
.current_y
< it
.last_visible_y
14975 && !fonts_changed_p
14976 && (first_unchanged_at_end_row
== NULL
14977 || IT_CHARPOS (it
) < stop_pos
))
14979 if (display_line (&it
))
14980 last_text_row
= it
.glyph_row
- 1;
14983 if (fonts_changed_p
)
14987 /* Compute differences in buffer positions, y-positions etc. for
14988 lines reused at the bottom of the window. Compute what we can
14990 if (first_unchanged_at_end_row
14991 /* No lines reused because we displayed everything up to the
14992 bottom of the window. */
14993 && it
.current_y
< it
.last_visible_y
)
14996 - MATRIX_ROW_VPOS (first_unchanged_at_end_row
,
14998 dy
= it
.current_y
- first_unchanged_at_end_row
->y
;
14999 run
.current_y
= first_unchanged_at_end_row
->y
;
15000 run
.desired_y
= run
.current_y
+ dy
;
15001 run
.height
= it
.last_visible_y
- max (run
.current_y
, run
.desired_y
);
15005 delta
= dvpos
= dy
= run
.current_y
= run
.desired_y
= run
.height
= 0;
15006 first_unchanged_at_end_row
= NULL
;
15008 IF_DEBUG (debug_dvpos
= dvpos
; debug_dy
= dy
);
15011 /* Find the cursor if not already found. We have to decide whether
15012 PT will appear on this window (it sometimes doesn't, but this is
15013 not a very frequent case.) This decision has to be made before
15014 the current matrix is altered. A value of cursor.vpos < 0 means
15015 that PT is either in one of the lines beginning at
15016 first_unchanged_at_end_row or below the window. Don't care for
15017 lines that might be displayed later at the window end; as
15018 mentioned, this is not a frequent case. */
15019 if (w
->cursor
.vpos
< 0)
15021 /* Cursor in unchanged rows at the top? */
15022 if (PT
< CHARPOS (start_pos
)
15023 && last_unchanged_at_beg_row
)
15025 row
= row_containing_pos (w
, PT
,
15026 MATRIX_FIRST_TEXT_ROW (w
->current_matrix
),
15027 last_unchanged_at_beg_row
+ 1, 0);
15029 set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0, 0, 0);
15032 /* Start from first_unchanged_at_end_row looking for PT. */
15033 else if (first_unchanged_at_end_row
)
15035 row
= row_containing_pos (w
, PT
- delta
,
15036 first_unchanged_at_end_row
, NULL
, 0);
15038 set_cursor_from_row (w
, row
, w
->current_matrix
, delta
,
15039 delta_bytes
, dy
, dvpos
);
15042 /* Give up if cursor was not found. */
15043 if (w
->cursor
.vpos
< 0)
15045 clear_glyph_matrix (w
->desired_matrix
);
15050 /* Don't let the cursor end in the scroll margins. */
15052 int this_scroll_margin
, cursor_height
;
15054 this_scroll_margin
= max (0, scroll_margin
);
15055 this_scroll_margin
= min (this_scroll_margin
, WINDOW_TOTAL_LINES (w
) / 4);
15056 this_scroll_margin
*= FRAME_LINE_HEIGHT (it
.f
);
15057 cursor_height
= MATRIX_ROW (w
->desired_matrix
, w
->cursor
.vpos
)->height
;
15059 if ((w
->cursor
.y
< this_scroll_margin
15060 && CHARPOS (start
) > BEGV
)
15061 /* Old redisplay didn't take scroll margin into account at the bottom,
15062 but then global-hl-line-mode doesn't scroll. KFS 2004-06-14 */
15063 || (w
->cursor
.y
+ (make_cursor_line_fully_visible_p
15064 ? cursor_height
+ this_scroll_margin
15065 : 1)) > it
.last_visible_y
)
15067 w
->cursor
.vpos
= -1;
15068 clear_glyph_matrix (w
->desired_matrix
);
15073 /* Scroll the display. Do it before changing the current matrix so
15074 that xterm.c doesn't get confused about where the cursor glyph is
15076 if (dy
&& run
.height
)
15080 if (FRAME_WINDOW_P (f
))
15082 FRAME_RIF (f
)->update_window_begin_hook (w
);
15083 FRAME_RIF (f
)->clear_window_mouse_face (w
);
15084 FRAME_RIF (f
)->scroll_run_hook (w
, &run
);
15085 FRAME_RIF (f
)->update_window_end_hook (w
, 0, 0);
15089 /* Terminal frame. In this case, dvpos gives the number of
15090 lines to scroll by; dvpos < 0 means scroll up. */
15091 int first_unchanged_at_end_vpos
15092 = MATRIX_ROW_VPOS (first_unchanged_at_end_row
, w
->current_matrix
);
15093 int from
= WINDOW_TOP_EDGE_LINE (w
) + first_unchanged_at_end_vpos
;
15094 int end
= (WINDOW_TOP_EDGE_LINE (w
)
15095 + (WINDOW_WANTS_HEADER_LINE_P (w
) ? 1 : 0)
15096 + window_internal_height (w
));
15098 /* Perform the operation on the screen. */
15101 /* Scroll last_unchanged_at_beg_row to the end of the
15102 window down dvpos lines. */
15103 set_terminal_window (f
, end
);
15105 /* On dumb terminals delete dvpos lines at the end
15106 before inserting dvpos empty lines. */
15107 if (!FRAME_SCROLL_REGION_OK (f
))
15108 ins_del_lines (f
, end
- dvpos
, -dvpos
);
15110 /* Insert dvpos empty lines in front of
15111 last_unchanged_at_beg_row. */
15112 ins_del_lines (f
, from
, dvpos
);
15114 else if (dvpos
< 0)
15116 /* Scroll up last_unchanged_at_beg_vpos to the end of
15117 the window to last_unchanged_at_beg_vpos - |dvpos|. */
15118 set_terminal_window (f
, end
);
15120 /* Delete dvpos lines in front of
15121 last_unchanged_at_beg_vpos. ins_del_lines will set
15122 the cursor to the given vpos and emit |dvpos| delete
15124 ins_del_lines (f
, from
+ dvpos
, dvpos
);
15126 /* On a dumb terminal insert dvpos empty lines at the
15128 if (!FRAME_SCROLL_REGION_OK (f
))
15129 ins_del_lines (f
, end
+ dvpos
, -dvpos
);
15132 set_terminal_window (f
, 0);
15138 /* Shift reused rows of the current matrix to the right position.
15139 BOTTOM_ROW is the last + 1 row in the current matrix reserved for
15141 bottom_row
= MATRIX_BOTTOM_TEXT_ROW (current_matrix
, w
);
15142 bottom_vpos
= MATRIX_ROW_VPOS (bottom_row
, current_matrix
);
15145 rotate_matrix (current_matrix
, first_unchanged_at_end_vpos
+ dvpos
,
15146 bottom_vpos
, dvpos
);
15147 enable_glyph_matrix_rows (current_matrix
, bottom_vpos
+ dvpos
,
15150 else if (dvpos
> 0)
15152 rotate_matrix (current_matrix
, first_unchanged_at_end_vpos
,
15153 bottom_vpos
, dvpos
);
15154 enable_glyph_matrix_rows (current_matrix
, first_unchanged_at_end_vpos
,
15155 first_unchanged_at_end_vpos
+ dvpos
, 0);
15158 /* For frame-based redisplay, make sure that current frame and window
15159 matrix are in sync with respect to glyph memory. */
15160 if (!FRAME_WINDOW_P (f
))
15161 sync_frame_with_window_matrix_rows (w
);
15163 /* Adjust buffer positions in reused rows. */
15164 if (delta
|| delta_bytes
)
15165 increment_matrix_positions (current_matrix
,
15166 first_unchanged_at_end_vpos
+ dvpos
,
15167 bottom_vpos
, delta
, delta_bytes
);
15169 /* Adjust Y positions. */
15171 shift_glyph_matrix (w
, current_matrix
,
15172 first_unchanged_at_end_vpos
+ dvpos
,
15175 if (first_unchanged_at_end_row
)
15177 first_unchanged_at_end_row
+= dvpos
;
15178 if (first_unchanged_at_end_row
->y
>= it
.last_visible_y
15179 || !MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row
))
15180 first_unchanged_at_end_row
= NULL
;
15183 /* If scrolling up, there may be some lines to display at the end of
15185 last_text_row_at_end
= NULL
;
15188 /* Scrolling up can leave for example a partially visible line
15189 at the end of the window to be redisplayed. */
15190 /* Set last_row to the glyph row in the current matrix where the
15191 window end line is found. It has been moved up or down in
15192 the matrix by dvpos. */
15193 int last_vpos
= XFASTINT (w
->window_end_vpos
) + dvpos
;
15194 struct glyph_row
*last_row
= MATRIX_ROW (current_matrix
, last_vpos
);
15196 /* If last_row is the window end line, it should display text. */
15197 xassert (last_row
->displays_text_p
);
15199 /* If window end line was partially visible before, begin
15200 displaying at that line. Otherwise begin displaying with the
15201 line following it. */
15202 if (MATRIX_ROW_BOTTOM_Y (last_row
) - dy
>= it
.last_visible_y
)
15204 init_to_row_start (&it
, w
, last_row
);
15205 it
.vpos
= last_vpos
;
15206 it
.current_y
= last_row
->y
;
15210 init_to_row_end (&it
, w
, last_row
);
15211 it
.vpos
= 1 + last_vpos
;
15212 it
.current_y
= MATRIX_ROW_BOTTOM_Y (last_row
);
15216 /* We may start in a continuation line. If so, we have to
15217 get the right continuation_lines_width and current_x. */
15218 it
.continuation_lines_width
= last_row
->continuation_lines_width
;
15219 it
.hpos
= it
.current_x
= 0;
15221 /* Display the rest of the lines at the window end. */
15222 it
.glyph_row
= MATRIX_ROW (desired_matrix
, it
.vpos
);
15223 while (it
.current_y
< it
.last_visible_y
15224 && !fonts_changed_p
)
15226 /* Is it always sure that the display agrees with lines in
15227 the current matrix? I don't think so, so we mark rows
15228 displayed invalid in the current matrix by setting their
15229 enabled_p flag to zero. */
15230 MATRIX_ROW (w
->current_matrix
, it
.vpos
)->enabled_p
= 0;
15231 if (display_line (&it
))
15232 last_text_row_at_end
= it
.glyph_row
- 1;
15236 /* Update window_end_pos and window_end_vpos. */
15237 if (first_unchanged_at_end_row
15238 && !last_text_row_at_end
)
15240 /* Window end line if one of the preserved rows from the current
15241 matrix. Set row to the last row displaying text in current
15242 matrix starting at first_unchanged_at_end_row, after
15244 xassert (first_unchanged_at_end_row
->displays_text_p
);
15245 row
= find_last_row_displaying_text (w
->current_matrix
, &it
,
15246 first_unchanged_at_end_row
);
15247 xassert (row
&& MATRIX_ROW_DISPLAYS_TEXT_P (row
));
15249 w
->window_end_pos
= make_number (Z
- MATRIX_ROW_END_CHARPOS (row
));
15250 w
->window_end_bytepos
= Z_BYTE
- MATRIX_ROW_END_BYTEPOS (row
);
15252 = make_number (MATRIX_ROW_VPOS (row
, w
->current_matrix
));
15253 xassert (w
->window_end_bytepos
>= 0);
15254 IF_DEBUG (debug_method_add (w
, "A"));
15256 else if (last_text_row_at_end
)
15259 = make_number (Z
- MATRIX_ROW_END_CHARPOS (last_text_row_at_end
));
15260 w
->window_end_bytepos
15261 = Z_BYTE
- MATRIX_ROW_END_BYTEPOS (last_text_row_at_end
);
15263 = make_number (MATRIX_ROW_VPOS (last_text_row_at_end
, desired_matrix
));
15264 xassert (w
->window_end_bytepos
>= 0);
15265 IF_DEBUG (debug_method_add (w
, "B"));
15267 else if (last_text_row
)
15269 /* We have displayed either to the end of the window or at the
15270 end of the window, i.e. the last row with text is to be found
15271 in the desired matrix. */
15273 = make_number (Z
- MATRIX_ROW_END_CHARPOS (last_text_row
));
15274 w
->window_end_bytepos
15275 = Z_BYTE
- MATRIX_ROW_END_BYTEPOS (last_text_row
);
15277 = make_number (MATRIX_ROW_VPOS (last_text_row
, desired_matrix
));
15278 xassert (w
->window_end_bytepos
>= 0);
15280 else if (first_unchanged_at_end_row
== NULL
15281 && last_text_row
== NULL
15282 && last_text_row_at_end
== NULL
)
15284 /* Displayed to end of window, but no line containing text was
15285 displayed. Lines were deleted at the end of the window. */
15286 int first_vpos
= WINDOW_WANTS_HEADER_LINE_P (w
) ? 1 : 0;
15287 int vpos
= XFASTINT (w
->window_end_vpos
);
15288 struct glyph_row
*current_row
= current_matrix
->rows
+ vpos
;
15289 struct glyph_row
*desired_row
= desired_matrix
->rows
+ vpos
;
15292 row
== NULL
&& vpos
>= first_vpos
;
15293 --vpos
, --current_row
, --desired_row
)
15295 if (desired_row
->enabled_p
)
15297 if (desired_row
->displays_text_p
)
15300 else if (current_row
->displays_text_p
)
15304 xassert (row
!= NULL
);
15305 w
->window_end_vpos
= make_number (vpos
+ 1);
15306 w
->window_end_pos
= make_number (Z
- MATRIX_ROW_END_CHARPOS (row
));
15307 w
->window_end_bytepos
= Z_BYTE
- MATRIX_ROW_END_BYTEPOS (row
);
15308 xassert (w
->window_end_bytepos
>= 0);
15309 IF_DEBUG (debug_method_add (w
, "C"));
15314 #if 0 /* This leads to problems, for instance when the cursor is
15315 at ZV, and the cursor line displays no text. */
15316 /* Disable rows below what's displayed in the window. This makes
15317 debugging easier. */
15318 enable_glyph_matrix_rows (current_matrix
,
15319 XFASTINT (w
->window_end_vpos
) + 1,
15323 IF_DEBUG (debug_end_pos
= XFASTINT (w
->window_end_pos
);
15324 debug_end_vpos
= XFASTINT (w
->window_end_vpos
));
15326 /* Record that display has not been completed. */
15327 w
->window_end_valid
= Qnil
;
15328 w
->desired_matrix
->no_scrolling_p
= 1;
15336 /***********************************************************************
15337 More debugging support
15338 ***********************************************************************/
15342 void dump_glyph_row
P_ ((struct glyph_row
*, int, int));
15343 void dump_glyph_matrix
P_ ((struct glyph_matrix
*, int));
15344 void dump_glyph
P_ ((struct glyph_row
*, struct glyph
*, int));
15347 /* Dump the contents of glyph matrix MATRIX on stderr.
15349 GLYPHS 0 means don't show glyph contents.
15350 GLYPHS 1 means show glyphs in short form
15351 GLYPHS > 1 means show glyphs in long form. */
15354 dump_glyph_matrix (matrix
, glyphs
)
15355 struct glyph_matrix
*matrix
;
15359 for (i
= 0; i
< matrix
->nrows
; ++i
)
15360 dump_glyph_row (MATRIX_ROW (matrix
, i
), i
, glyphs
);
15364 /* Dump contents of glyph GLYPH to stderr. ROW and AREA are
15365 the glyph row and area where the glyph comes from. */
15368 dump_glyph (row
, glyph
, area
)
15369 struct glyph_row
*row
;
15370 struct glyph
*glyph
;
15373 if (glyph
->type
== CHAR_GLYPH
)
15376 " %5d %4c %6d %c %3d 0x%05x %c %4d %1.1d%1.1d\n",
15377 glyph
- row
->glyphs
[TEXT_AREA
],
15380 (BUFFERP (glyph
->object
)
15382 : (STRINGP (glyph
->object
)
15385 glyph
->pixel_width
,
15387 (glyph
->u
.ch
< 0x80 && glyph
->u
.ch
>= ' '
15391 glyph
->left_box_line_p
,
15392 glyph
->right_box_line_p
);
15394 else if (glyph
->type
== STRETCH_GLYPH
)
15397 " %5d %4c %6d %c %3d 0x%05x %c %4d %1.1d%1.1d\n",
15398 glyph
- row
->glyphs
[TEXT_AREA
],
15401 (BUFFERP (glyph
->object
)
15403 : (STRINGP (glyph
->object
)
15406 glyph
->pixel_width
,
15410 glyph
->left_box_line_p
,
15411 glyph
->right_box_line_p
);
15413 else if (glyph
->type
== IMAGE_GLYPH
)
15416 " %5d %4c %6d %c %3d 0x%05x %c %4d %1.1d%1.1d\n",
15417 glyph
- row
->glyphs
[TEXT_AREA
],
15420 (BUFFERP (glyph
->object
)
15422 : (STRINGP (glyph
->object
)
15425 glyph
->pixel_width
,
15429 glyph
->left_box_line_p
,
15430 glyph
->right_box_line_p
);
15432 else if (glyph
->type
== COMPOSITE_GLYPH
)
15435 " %5d %4c %6d %c %3d 0x%05x %c %4d %1.1d%1.1d\n",
15436 glyph
- row
->glyphs
[TEXT_AREA
],
15439 (BUFFERP (glyph
->object
)
15441 : (STRINGP (glyph
->object
)
15444 glyph
->pixel_width
,
15448 glyph
->left_box_line_p
,
15449 glyph
->right_box_line_p
);
15454 /* Dump the contents of glyph row at VPOS in MATRIX to stderr.
15455 GLYPHS 0 means don't show glyph contents.
15456 GLYPHS 1 means show glyphs in short form
15457 GLYPHS > 1 means show glyphs in long form. */
15460 dump_glyph_row (row
, vpos
, glyphs
)
15461 struct glyph_row
*row
;
15466 fprintf (stderr
, "Row Start End Used oE><\\CTZFesm X Y W H V A P\n");
15467 fprintf (stderr
, "======================================================================\n");
15469 fprintf (stderr
, "%3d %5d %5d %4d %1.1d%1.1d%1.1d%1.1d\
15470 %1.1d%1.1d%1.1d%1.1d%1.1d%1.1d%1.1d%1.1d %4d %4d %4d %4d %4d %4d %4d\n",
15472 MATRIX_ROW_START_CHARPOS (row
),
15473 MATRIX_ROW_END_CHARPOS (row
),
15474 row
->used
[TEXT_AREA
],
15475 row
->contains_overlapping_glyphs_p
,
15477 row
->truncated_on_left_p
,
15478 row
->truncated_on_right_p
,
15480 MATRIX_ROW_CONTINUATION_LINE_P (row
),
15481 row
->displays_text_p
,
15484 row
->ends_in_middle_of_char_p
,
15485 row
->starts_in_middle_of_char_p
,
15491 row
->visible_height
,
15494 fprintf (stderr
, "%9d %5d\t%5d\n", row
->start
.overlay_string_index
,
15495 row
->end
.overlay_string_index
,
15496 row
->continuation_lines_width
);
15497 fprintf (stderr
, "%9d %5d\n",
15498 CHARPOS (row
->start
.string_pos
),
15499 CHARPOS (row
->end
.string_pos
));
15500 fprintf (stderr
, "%9d %5d\n", row
->start
.dpvec_index
,
15501 row
->end
.dpvec_index
);
15508 for (area
= LEFT_MARGIN_AREA
; area
< LAST_AREA
; ++area
)
15510 struct glyph
*glyph
= row
->glyphs
[area
];
15511 struct glyph
*glyph_end
= glyph
+ row
->used
[area
];
15513 /* Glyph for a line end in text. */
15514 if (area
== TEXT_AREA
&& glyph
== glyph_end
&& glyph
->charpos
> 0)
15517 if (glyph
< glyph_end
)
15518 fprintf (stderr
, " Glyph Type Pos O W Code C Face LR\n");
15520 for (; glyph
< glyph_end
; ++glyph
)
15521 dump_glyph (row
, glyph
, area
);
15524 else if (glyphs
== 1)
15528 for (area
= LEFT_MARGIN_AREA
; area
< LAST_AREA
; ++area
)
15530 char *s
= (char *) alloca (row
->used
[area
] + 1);
15533 for (i
= 0; i
< row
->used
[area
]; ++i
)
15535 struct glyph
*glyph
= row
->glyphs
[area
] + i
;
15536 if (glyph
->type
== CHAR_GLYPH
15537 && glyph
->u
.ch
< 0x80
15538 && glyph
->u
.ch
>= ' ')
15539 s
[i
] = glyph
->u
.ch
;
15545 fprintf (stderr
, "%3d: (%d) '%s'\n", vpos
, row
->enabled_p
, s
);
15551 DEFUN ("dump-glyph-matrix", Fdump_glyph_matrix
,
15552 Sdump_glyph_matrix
, 0, 1, "p",
15553 doc
: /* Dump the current matrix of the selected window to stderr.
15554 Shows contents of glyph row structures. With non-nil
15555 parameter GLYPHS, dump glyphs as well. If GLYPHS is 1 show
15556 glyphs in short form, otherwise show glyphs in long form. */)
15558 Lisp_Object glyphs
;
15560 struct window
*w
= XWINDOW (selected_window
);
15561 struct buffer
*buffer
= XBUFFER (w
->buffer
);
15563 fprintf (stderr
, "PT = %d, BEGV = %d. ZV = %d\n",
15564 BUF_PT (buffer
), BUF_BEGV (buffer
), BUF_ZV (buffer
));
15565 fprintf (stderr
, "Cursor x = %d, y = %d, hpos = %d, vpos = %d\n",
15566 w
->cursor
.x
, w
->cursor
.y
, w
->cursor
.hpos
, w
->cursor
.vpos
);
15567 fprintf (stderr
, "=============================================\n");
15568 dump_glyph_matrix (w
->current_matrix
,
15569 NILP (glyphs
) ? 0 : XINT (glyphs
));
15574 DEFUN ("dump-frame-glyph-matrix", Fdump_frame_glyph_matrix
,
15575 Sdump_frame_glyph_matrix
, 0, 0, "", doc
: /* */)
15578 struct frame
*f
= XFRAME (selected_frame
);
15579 dump_glyph_matrix (f
->current_matrix
, 1);
15584 DEFUN ("dump-glyph-row", Fdump_glyph_row
, Sdump_glyph_row
, 1, 2, "",
15585 doc
: /* Dump glyph row ROW to stderr.
15586 GLYPH 0 means don't dump glyphs.
15587 GLYPH 1 means dump glyphs in short form.
15588 GLYPH > 1 or omitted means dump glyphs in long form. */)
15590 Lisp_Object row
, glyphs
;
15592 struct glyph_matrix
*matrix
;
15595 CHECK_NUMBER (row
);
15596 matrix
= XWINDOW (selected_window
)->current_matrix
;
15598 if (vpos
>= 0 && vpos
< matrix
->nrows
)
15599 dump_glyph_row (MATRIX_ROW (matrix
, vpos
),
15601 INTEGERP (glyphs
) ? XINT (glyphs
) : 2);
15606 DEFUN ("dump-tool-bar-row", Fdump_tool_bar_row
, Sdump_tool_bar_row
, 1, 2, "",
15607 doc
: /* Dump glyph row ROW of the tool-bar of the current frame to stderr.
15608 GLYPH 0 means don't dump glyphs.
15609 GLYPH 1 means dump glyphs in short form.
15610 GLYPH > 1 or omitted means dump glyphs in long form. */)
15612 Lisp_Object row
, glyphs
;
15614 struct frame
*sf
= SELECTED_FRAME ();
15615 struct glyph_matrix
*m
= XWINDOW (sf
->tool_bar_window
)->current_matrix
;
15618 CHECK_NUMBER (row
);
15620 if (vpos
>= 0 && vpos
< m
->nrows
)
15621 dump_glyph_row (MATRIX_ROW (m
, vpos
), vpos
,
15622 INTEGERP (glyphs
) ? XINT (glyphs
) : 2);
15627 DEFUN ("trace-redisplay", Ftrace_redisplay
, Strace_redisplay
, 0, 1, "P",
15628 doc
: /* Toggle tracing of redisplay.
15629 With ARG, turn tracing on if and only if ARG is positive. */)
15634 trace_redisplay_p
= !trace_redisplay_p
;
15637 arg
= Fprefix_numeric_value (arg
);
15638 trace_redisplay_p
= XINT (arg
) > 0;
15645 DEFUN ("trace-to-stderr", Ftrace_to_stderr
, Strace_to_stderr
, 1, MANY
, "",
15646 doc
: /* Like `format', but print result to stderr.
15647 usage: (trace-to-stderr STRING &rest OBJECTS) */)
15652 Lisp_Object s
= Fformat (nargs
, args
);
15653 fprintf (stderr
, "%s", SDATA (s
));
15657 #endif /* GLYPH_DEBUG */
15661 /***********************************************************************
15662 Building Desired Matrix Rows
15663 ***********************************************************************/
15665 /* Return a temporary glyph row holding the glyphs of an overlay arrow.
15666 Used for non-window-redisplay windows, and for windows w/o left fringe. */
15668 static struct glyph_row
*
15669 get_overlay_arrow_glyph_row (w
, overlay_arrow_string
)
15671 Lisp_Object overlay_arrow_string
;
15673 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
15674 struct buffer
*buffer
= XBUFFER (w
->buffer
);
15675 struct buffer
*old
= current_buffer
;
15676 const unsigned char *arrow_string
= SDATA (overlay_arrow_string
);
15677 int arrow_len
= SCHARS (overlay_arrow_string
);
15678 const unsigned char *arrow_end
= arrow_string
+ arrow_len
;
15679 const unsigned char *p
;
15682 int n_glyphs_before
;
15684 set_buffer_temp (buffer
);
15685 init_iterator (&it
, w
, -1, -1, &scratch_glyph_row
, DEFAULT_FACE_ID
);
15686 it
.glyph_row
->used
[TEXT_AREA
] = 0;
15687 SET_TEXT_POS (it
.position
, 0, 0);
15689 multibyte_p
= !NILP (buffer
->enable_multibyte_characters
);
15691 while (p
< arrow_end
)
15693 Lisp_Object face
, ilisp
;
15695 /* Get the next character. */
15697 it
.c
= string_char_and_length (p
, arrow_len
, &it
.len
);
15699 it
.c
= *p
, it
.len
= 1;
15702 /* Get its face. */
15703 ilisp
= make_number (p
- arrow_string
);
15704 face
= Fget_text_property (ilisp
, Qface
, overlay_arrow_string
);
15705 it
.face_id
= compute_char_face (f
, it
.c
, face
);
15707 /* Compute its width, get its glyphs. */
15708 n_glyphs_before
= it
.glyph_row
->used
[TEXT_AREA
];
15709 SET_TEXT_POS (it
.position
, -1, -1);
15710 PRODUCE_GLYPHS (&it
);
15712 /* If this character doesn't fit any more in the line, we have
15713 to remove some glyphs. */
15714 if (it
.current_x
> it
.last_visible_x
)
15716 it
.glyph_row
->used
[TEXT_AREA
] = n_glyphs_before
;
15721 set_buffer_temp (old
);
15722 return it
.glyph_row
;
15726 /* Insert truncation glyphs at the start of IT->glyph_row. Truncation
15727 glyphs are only inserted for terminal frames since we can't really
15728 win with truncation glyphs when partially visible glyphs are
15729 involved. Which glyphs to insert is determined by
15730 produce_special_glyphs. */
15733 insert_left_trunc_glyphs (it
)
15736 struct it truncate_it
;
15737 struct glyph
*from
, *end
, *to
, *toend
;
15739 xassert (!FRAME_WINDOW_P (it
->f
));
15741 /* Get the truncation glyphs. */
15743 truncate_it
.current_x
= 0;
15744 truncate_it
.face_id
= DEFAULT_FACE_ID
;
15745 truncate_it
.glyph_row
= &scratch_glyph_row
;
15746 truncate_it
.glyph_row
->used
[TEXT_AREA
] = 0;
15747 CHARPOS (truncate_it
.position
) = BYTEPOS (truncate_it
.position
) = -1;
15748 truncate_it
.object
= make_number (0);
15749 produce_special_glyphs (&truncate_it
, IT_TRUNCATION
);
15751 /* Overwrite glyphs from IT with truncation glyphs. */
15752 from
= truncate_it
.glyph_row
->glyphs
[TEXT_AREA
];
15753 end
= from
+ truncate_it
.glyph_row
->used
[TEXT_AREA
];
15754 to
= it
->glyph_row
->glyphs
[TEXT_AREA
];
15755 toend
= to
+ it
->glyph_row
->used
[TEXT_AREA
];
15760 /* There may be padding glyphs left over. Overwrite them too. */
15761 while (to
< toend
&& CHAR_GLYPH_PADDING_P (*to
))
15763 from
= truncate_it
.glyph_row
->glyphs
[TEXT_AREA
];
15769 it
->glyph_row
->used
[TEXT_AREA
] = to
- it
->glyph_row
->glyphs
[TEXT_AREA
];
15773 /* Compute the pixel height and width of IT->glyph_row.
15775 Most of the time, ascent and height of a display line will be equal
15776 to the max_ascent and max_height values of the display iterator
15777 structure. This is not the case if
15779 1. We hit ZV without displaying anything. In this case, max_ascent
15780 and max_height will be zero.
15782 2. We have some glyphs that don't contribute to the line height.
15783 (The glyph row flag contributes_to_line_height_p is for future
15784 pixmap extensions).
15786 The first case is easily covered by using default values because in
15787 these cases, the line height does not really matter, except that it
15788 must not be zero. */
15791 compute_line_metrics (it
)
15794 struct glyph_row
*row
= it
->glyph_row
;
15797 if (FRAME_WINDOW_P (it
->f
))
15799 int i
, min_y
, max_y
;
15801 /* The line may consist of one space only, that was added to
15802 place the cursor on it. If so, the row's height hasn't been
15804 if (row
->height
== 0)
15806 if (it
->max_ascent
+ it
->max_descent
== 0)
15807 it
->max_descent
= it
->max_phys_descent
= FRAME_LINE_HEIGHT (it
->f
);
15808 row
->ascent
= it
->max_ascent
;
15809 row
->height
= it
->max_ascent
+ it
->max_descent
;
15810 row
->phys_ascent
= it
->max_phys_ascent
;
15811 row
->phys_height
= it
->max_phys_ascent
+ it
->max_phys_descent
;
15812 row
->extra_line_spacing
= it
->max_extra_line_spacing
;
15815 /* Compute the width of this line. */
15816 row
->pixel_width
= row
->x
;
15817 for (i
= 0; i
< row
->used
[TEXT_AREA
]; ++i
)
15818 row
->pixel_width
+= row
->glyphs
[TEXT_AREA
][i
].pixel_width
;
15820 xassert (row
->pixel_width
>= 0);
15821 xassert (row
->ascent
>= 0 && row
->height
> 0);
15823 row
->overlapping_p
= (MATRIX_ROW_OVERLAPS_SUCC_P (row
)
15824 || MATRIX_ROW_OVERLAPS_PRED_P (row
));
15826 /* If first line's physical ascent is larger than its logical
15827 ascent, use the physical ascent, and make the row taller.
15828 This makes accented characters fully visible. */
15829 if (row
== MATRIX_FIRST_TEXT_ROW (it
->w
->desired_matrix
)
15830 && row
->phys_ascent
> row
->ascent
)
15832 row
->height
+= row
->phys_ascent
- row
->ascent
;
15833 row
->ascent
= row
->phys_ascent
;
15836 /* Compute how much of the line is visible. */
15837 row
->visible_height
= row
->height
;
15839 min_y
= WINDOW_HEADER_LINE_HEIGHT (it
->w
);
15840 max_y
= WINDOW_BOX_HEIGHT_NO_MODE_LINE (it
->w
);
15842 if (row
->y
< min_y
)
15843 row
->visible_height
-= min_y
- row
->y
;
15844 if (row
->y
+ row
->height
> max_y
)
15845 row
->visible_height
-= row
->y
+ row
->height
- max_y
;
15849 row
->pixel_width
= row
->used
[TEXT_AREA
];
15850 if (row
->continued_p
)
15851 row
->pixel_width
-= it
->continuation_pixel_width
;
15852 else if (row
->truncated_on_right_p
)
15853 row
->pixel_width
-= it
->truncation_pixel_width
;
15854 row
->ascent
= row
->phys_ascent
= 0;
15855 row
->height
= row
->phys_height
= row
->visible_height
= 1;
15856 row
->extra_line_spacing
= 0;
15859 /* Compute a hash code for this row. */
15861 for (area
= LEFT_MARGIN_AREA
; area
< LAST_AREA
; ++area
)
15862 for (i
= 0; i
< row
->used
[area
]; ++i
)
15863 row
->hash
= ((((row
->hash
<< 4) + (row
->hash
>> 24)) & 0x0fffffff)
15864 + row
->glyphs
[area
][i
].u
.val
15865 + row
->glyphs
[area
][i
].face_id
15866 + row
->glyphs
[area
][i
].padding_p
15867 + (row
->glyphs
[area
][i
].type
<< 2));
15869 it
->max_ascent
= it
->max_descent
= 0;
15870 it
->max_phys_ascent
= it
->max_phys_descent
= 0;
15874 /* Append one space to the glyph row of iterator IT if doing a
15875 window-based redisplay. The space has the same face as
15876 IT->face_id. Value is non-zero if a space was added.
15878 This function is called to make sure that there is always one glyph
15879 at the end of a glyph row that the cursor can be set on under
15880 window-systems. (If there weren't such a glyph we would not know
15881 how wide and tall a box cursor should be displayed).
15883 At the same time this space let's a nicely handle clearing to the
15884 end of the line if the row ends in italic text. */
15887 append_space_for_newline (it
, default_face_p
)
15889 int default_face_p
;
15891 if (FRAME_WINDOW_P (it
->f
))
15893 int n
= it
->glyph_row
->used
[TEXT_AREA
];
15895 if (it
->glyph_row
->glyphs
[TEXT_AREA
] + n
15896 < it
->glyph_row
->glyphs
[1 + TEXT_AREA
])
15898 /* Save some values that must not be changed.
15899 Must save IT->c and IT->len because otherwise
15900 ITERATOR_AT_END_P wouldn't work anymore after
15901 append_space_for_newline has been called. */
15902 enum display_element_type saved_what
= it
->what
;
15903 int saved_c
= it
->c
, saved_len
= it
->len
;
15904 int saved_x
= it
->current_x
;
15905 int saved_face_id
= it
->face_id
;
15906 struct text_pos saved_pos
;
15907 Lisp_Object saved_object
;
15910 saved_object
= it
->object
;
15911 saved_pos
= it
->position
;
15913 it
->what
= IT_CHARACTER
;
15914 bzero (&it
->position
, sizeof it
->position
);
15915 it
->object
= make_number (0);
15919 if (default_face_p
)
15920 it
->face_id
= DEFAULT_FACE_ID
;
15921 else if (it
->face_before_selective_p
)
15922 it
->face_id
= it
->saved_face_id
;
15923 face
= FACE_FROM_ID (it
->f
, it
->face_id
);
15924 it
->face_id
= FACE_FOR_CHAR (it
->f
, face
, 0, -1, Qnil
);
15926 PRODUCE_GLYPHS (it
);
15928 it
->override_ascent
= -1;
15929 it
->constrain_row_ascent_descent_p
= 0;
15930 it
->current_x
= saved_x
;
15931 it
->object
= saved_object
;
15932 it
->position
= saved_pos
;
15933 it
->what
= saved_what
;
15934 it
->face_id
= saved_face_id
;
15935 it
->len
= saved_len
;
15945 /* Extend the face of the last glyph in the text area of IT->glyph_row
15946 to the end of the display line. Called from display_line.
15947 If the glyph row is empty, add a space glyph to it so that we
15948 know the face to draw. Set the glyph row flag fill_line_p. */
15951 extend_face_to_end_of_line (it
)
15955 struct frame
*f
= it
->f
;
15957 /* If line is already filled, do nothing. */
15958 if (it
->current_x
>= it
->last_visible_x
)
15961 /* Face extension extends the background and box of IT->face_id
15962 to the end of the line. If the background equals the background
15963 of the frame, we don't have to do anything. */
15964 if (it
->face_before_selective_p
)
15965 face
= FACE_FROM_ID (it
->f
, it
->saved_face_id
);
15967 face
= FACE_FROM_ID (f
, it
->face_id
);
15969 if (FRAME_WINDOW_P (f
)
15970 && it
->glyph_row
->displays_text_p
15971 && face
->box
== FACE_NO_BOX
15972 && face
->background
== FRAME_BACKGROUND_PIXEL (f
)
15976 /* Set the glyph row flag indicating that the face of the last glyph
15977 in the text area has to be drawn to the end of the text area. */
15978 it
->glyph_row
->fill_line_p
= 1;
15980 /* If current character of IT is not ASCII, make sure we have the
15981 ASCII face. This will be automatically undone the next time
15982 get_next_display_element returns a multibyte character. Note
15983 that the character will always be single byte in unibyte text. */
15984 if (!ASCII_CHAR_P (it
->c
))
15986 it
->face_id
= FACE_FOR_CHAR (f
, face
, 0, -1, Qnil
);
15989 if (FRAME_WINDOW_P (f
))
15991 /* If the row is empty, add a space with the current face of IT,
15992 so that we know which face to draw. */
15993 if (it
->glyph_row
->used
[TEXT_AREA
] == 0)
15995 it
->glyph_row
->glyphs
[TEXT_AREA
][0] = space_glyph
;
15996 it
->glyph_row
->glyphs
[TEXT_AREA
][0].face_id
= it
->face_id
;
15997 it
->glyph_row
->used
[TEXT_AREA
] = 1;
16002 /* Save some values that must not be changed. */
16003 int saved_x
= it
->current_x
;
16004 struct text_pos saved_pos
;
16005 Lisp_Object saved_object
;
16006 enum display_element_type saved_what
= it
->what
;
16007 int saved_face_id
= it
->face_id
;
16009 saved_object
= it
->object
;
16010 saved_pos
= it
->position
;
16012 it
->what
= IT_CHARACTER
;
16013 bzero (&it
->position
, sizeof it
->position
);
16014 it
->object
= make_number (0);
16017 it
->face_id
= face
->id
;
16019 PRODUCE_GLYPHS (it
);
16021 while (it
->current_x
<= it
->last_visible_x
)
16022 PRODUCE_GLYPHS (it
);
16024 /* Don't count these blanks really. It would let us insert a left
16025 truncation glyph below and make us set the cursor on them, maybe. */
16026 it
->current_x
= saved_x
;
16027 it
->object
= saved_object
;
16028 it
->position
= saved_pos
;
16029 it
->what
= saved_what
;
16030 it
->face_id
= saved_face_id
;
16035 /* Value is non-zero if text starting at CHARPOS in current_buffer is
16036 trailing whitespace. */
16039 trailing_whitespace_p (charpos
)
16042 int bytepos
= CHAR_TO_BYTE (charpos
);
16045 while (bytepos
< ZV_BYTE
16046 && (c
= FETCH_CHAR (bytepos
),
16047 c
== ' ' || c
== '\t'))
16050 if (bytepos
>= ZV_BYTE
|| c
== '\n' || c
== '\r')
16052 if (bytepos
!= PT_BYTE
)
16059 /* Highlight trailing whitespace, if any, in ROW. */
16062 highlight_trailing_whitespace (f
, row
)
16064 struct glyph_row
*row
;
16066 int used
= row
->used
[TEXT_AREA
];
16070 struct glyph
*start
= row
->glyphs
[TEXT_AREA
];
16071 struct glyph
*glyph
= start
+ used
- 1;
16073 /* Skip over glyphs inserted to display the cursor at the
16074 end of a line, for extending the face of the last glyph
16075 to the end of the line on terminals, and for truncation
16076 and continuation glyphs. */
16077 while (glyph
>= start
16078 && glyph
->type
== CHAR_GLYPH
16079 && INTEGERP (glyph
->object
))
16082 /* If last glyph is a space or stretch, and it's trailing
16083 whitespace, set the face of all trailing whitespace glyphs in
16084 IT->glyph_row to `trailing-whitespace'. */
16086 && BUFFERP (glyph
->object
)
16087 && (glyph
->type
== STRETCH_GLYPH
16088 || (glyph
->type
== CHAR_GLYPH
16089 && glyph
->u
.ch
== ' '))
16090 && trailing_whitespace_p (glyph
->charpos
))
16092 int face_id
= lookup_named_face (f
, Qtrailing_whitespace
, 0);
16096 while (glyph
>= start
16097 && BUFFERP (glyph
->object
)
16098 && (glyph
->type
== STRETCH_GLYPH
16099 || (glyph
->type
== CHAR_GLYPH
16100 && glyph
->u
.ch
== ' ')))
16101 (glyph
--)->face_id
= face_id
;
16107 /* Value is non-zero if glyph row ROW in window W should be
16108 used to hold the cursor. */
16111 cursor_row_p (w
, row
)
16113 struct glyph_row
*row
;
16115 int cursor_row_p
= 1;
16117 if (PT
== MATRIX_ROW_END_CHARPOS (row
))
16119 /* Suppose the row ends on a string.
16120 Unless the row is continued, that means it ends on a newline
16121 in the string. If it's anything other than a display string
16122 (e.g. a before-string from an overlay), we don't want the
16123 cursor there. (This heuristic seems to give the optimal
16124 behavior for the various types of multi-line strings.) */
16125 if (CHARPOS (row
->end
.string_pos
) >= 0)
16127 if (row
->continued_p
)
16131 /* Check for `display' property. */
16132 struct glyph
*beg
= row
->glyphs
[TEXT_AREA
];
16133 struct glyph
*end
= beg
+ row
->used
[TEXT_AREA
] - 1;
16134 struct glyph
*glyph
;
16137 for (glyph
= end
; glyph
>= beg
; --glyph
)
16138 if (STRINGP (glyph
->object
))
16141 = Fget_char_property (make_number (PT
),
16145 && display_prop_string_p (prop
, glyph
->object
));
16150 else if (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row
))
16152 /* If the row ends in middle of a real character,
16153 and the line is continued, we want the cursor here.
16154 That's because MATRIX_ROW_END_CHARPOS would equal
16155 PT if PT is before the character. */
16156 if (!row
->ends_in_ellipsis_p
)
16157 cursor_row_p
= row
->continued_p
;
16159 /* If the row ends in an ellipsis, then
16160 MATRIX_ROW_END_CHARPOS will equal point after the invisible text.
16161 We want that position to be displayed after the ellipsis. */
16164 /* If the row ends at ZV, display the cursor at the end of that
16165 row instead of at the start of the row below. */
16166 else if (row
->ends_at_zv_p
)
16172 return cursor_row_p
;
16176 /* Construct the glyph row IT->glyph_row in the desired matrix of
16177 IT->w from text at the current position of IT. See dispextern.h
16178 for an overview of struct it. Value is non-zero if
16179 IT->glyph_row displays text, as opposed to a line displaying ZV
16186 struct glyph_row
*row
= it
->glyph_row
;
16187 Lisp_Object overlay_arrow_string
;
16189 /* We always start displaying at hpos zero even if hscrolled. */
16190 xassert (it
->hpos
== 0 && it
->current_x
== 0);
16192 if (MATRIX_ROW_VPOS (row
, it
->w
->desired_matrix
)
16193 >= it
->w
->desired_matrix
->nrows
)
16195 it
->w
->nrows_scale_factor
++;
16196 fonts_changed_p
= 1;
16200 /* Is IT->w showing the region? */
16201 it
->w
->region_showing
= it
->region_beg_charpos
> 0 ? Qt
: Qnil
;
16203 /* Clear the result glyph row and enable it. */
16204 prepare_desired_row (row
);
16206 row
->y
= it
->current_y
;
16207 row
->start
= it
->start
;
16208 row
->continuation_lines_width
= it
->continuation_lines_width
;
16209 row
->displays_text_p
= 1;
16210 row
->starts_in_middle_of_char_p
= it
->starts_in_middle_of_char_p
;
16211 it
->starts_in_middle_of_char_p
= 0;
16213 /* Arrange the overlays nicely for our purposes. Usually, we call
16214 display_line on only one line at a time, in which case this
16215 can't really hurt too much, or we call it on lines which appear
16216 one after another in the buffer, in which case all calls to
16217 recenter_overlay_lists but the first will be pretty cheap. */
16218 recenter_overlay_lists (current_buffer
, IT_CHARPOS (*it
));
16220 /* Move over display elements that are not visible because we are
16221 hscrolled. This may stop at an x-position < IT->first_visible_x
16222 if the first glyph is partially visible or if we hit a line end. */
16223 if (it
->current_x
< it
->first_visible_x
)
16225 move_it_in_display_line_to (it
, ZV
, it
->first_visible_x
,
16226 MOVE_TO_POS
| MOVE_TO_X
);
16229 /* Get the initial row height. This is either the height of the
16230 text hscrolled, if there is any, or zero. */
16231 row
->ascent
= it
->max_ascent
;
16232 row
->height
= it
->max_ascent
+ it
->max_descent
;
16233 row
->phys_ascent
= it
->max_phys_ascent
;
16234 row
->phys_height
= it
->max_phys_ascent
+ it
->max_phys_descent
;
16235 row
->extra_line_spacing
= it
->max_extra_line_spacing
;
16237 /* Loop generating characters. The loop is left with IT on the next
16238 character to display. */
16241 int n_glyphs_before
, hpos_before
, x_before
;
16243 int ascent
= 0, descent
= 0, phys_ascent
= 0, phys_descent
= 0;
16245 /* Retrieve the next thing to display. Value is zero if end of
16247 if (!get_next_display_element (it
))
16249 /* Maybe add a space at the end of this line that is used to
16250 display the cursor there under X. Set the charpos of the
16251 first glyph of blank lines not corresponding to any text
16253 #ifdef HAVE_WINDOW_SYSTEM
16254 if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it
))
16255 row
->exact_window_width_line_p
= 1;
16257 #endif /* HAVE_WINDOW_SYSTEM */
16258 if ((append_space_for_newline (it
, 1) && row
->used
[TEXT_AREA
] == 1)
16259 || row
->used
[TEXT_AREA
] == 0)
16261 row
->glyphs
[TEXT_AREA
]->charpos
= -1;
16262 row
->displays_text_p
= 0;
16264 if (!NILP (XBUFFER (it
->w
->buffer
)->indicate_empty_lines
)
16265 && (!MINI_WINDOW_P (it
->w
)
16266 || (minibuf_level
&& EQ (it
->window
, minibuf_window
))))
16267 row
->indicate_empty_line_p
= 1;
16270 it
->continuation_lines_width
= 0;
16271 row
->ends_at_zv_p
= 1;
16275 /* Now, get the metrics of what we want to display. This also
16276 generates glyphs in `row' (which is IT->glyph_row). */
16277 n_glyphs_before
= row
->used
[TEXT_AREA
];
16280 /* Remember the line height so far in case the next element doesn't
16281 fit on the line. */
16282 if (!it
->truncate_lines_p
)
16284 ascent
= it
->max_ascent
;
16285 descent
= it
->max_descent
;
16286 phys_ascent
= it
->max_phys_ascent
;
16287 phys_descent
= it
->max_phys_descent
;
16290 PRODUCE_GLYPHS (it
);
16292 /* If this display element was in marginal areas, continue with
16294 if (it
->area
!= TEXT_AREA
)
16296 row
->ascent
= max (row
->ascent
, it
->max_ascent
);
16297 row
->height
= max (row
->height
, it
->max_ascent
+ it
->max_descent
);
16298 row
->phys_ascent
= max (row
->phys_ascent
, it
->max_phys_ascent
);
16299 row
->phys_height
= max (row
->phys_height
,
16300 it
->max_phys_ascent
+ it
->max_phys_descent
);
16301 row
->extra_line_spacing
= max (row
->extra_line_spacing
,
16302 it
->max_extra_line_spacing
);
16303 set_iterator_to_next (it
, 1);
16307 /* Does the display element fit on the line? If we truncate
16308 lines, we should draw past the right edge of the window. If
16309 we don't truncate, we want to stop so that we can display the
16310 continuation glyph before the right margin. If lines are
16311 continued, there are two possible strategies for characters
16312 resulting in more than 1 glyph (e.g. tabs): Display as many
16313 glyphs as possible in this line and leave the rest for the
16314 continuation line, or display the whole element in the next
16315 line. Original redisplay did the former, so we do it also. */
16316 nglyphs
= row
->used
[TEXT_AREA
] - n_glyphs_before
;
16317 hpos_before
= it
->hpos
;
16320 if (/* Not a newline. */
16322 /* Glyphs produced fit entirely in the line. */
16323 && it
->current_x
< it
->last_visible_x
)
16325 it
->hpos
+= nglyphs
;
16326 row
->ascent
= max (row
->ascent
, it
->max_ascent
);
16327 row
->height
= max (row
->height
, it
->max_ascent
+ it
->max_descent
);
16328 row
->phys_ascent
= max (row
->phys_ascent
, it
->max_phys_ascent
);
16329 row
->phys_height
= max (row
->phys_height
,
16330 it
->max_phys_ascent
+ it
->max_phys_descent
);
16331 row
->extra_line_spacing
= max (row
->extra_line_spacing
,
16332 it
->max_extra_line_spacing
);
16333 if (it
->current_x
- it
->pixel_width
< it
->first_visible_x
)
16334 row
->x
= x
- it
->first_visible_x
;
16339 struct glyph
*glyph
;
16341 for (i
= 0; i
< nglyphs
; ++i
, x
= new_x
)
16343 glyph
= row
->glyphs
[TEXT_AREA
] + n_glyphs_before
+ i
;
16344 new_x
= x
+ glyph
->pixel_width
;
16346 if (/* Lines are continued. */
16347 !it
->truncate_lines_p
16348 && (/* Glyph doesn't fit on the line. */
16349 new_x
> it
->last_visible_x
16350 /* Or it fits exactly on a window system frame. */
16351 || (new_x
== it
->last_visible_x
16352 && FRAME_WINDOW_P (it
->f
))))
16354 /* End of a continued line. */
16357 || (new_x
== it
->last_visible_x
16358 && FRAME_WINDOW_P (it
->f
)))
16360 /* Current glyph is the only one on the line or
16361 fits exactly on the line. We must continue
16362 the line because we can't draw the cursor
16363 after the glyph. */
16364 row
->continued_p
= 1;
16365 it
->current_x
= new_x
;
16366 it
->continuation_lines_width
+= new_x
;
16368 if (i
== nglyphs
- 1)
16370 set_iterator_to_next (it
, 1);
16371 #ifdef HAVE_WINDOW_SYSTEM
16372 if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it
))
16374 if (!get_next_display_element (it
))
16376 row
->exact_window_width_line_p
= 1;
16377 it
->continuation_lines_width
= 0;
16378 row
->continued_p
= 0;
16379 row
->ends_at_zv_p
= 1;
16381 else if (ITERATOR_AT_END_OF_LINE_P (it
))
16383 row
->continued_p
= 0;
16384 row
->exact_window_width_line_p
= 1;
16387 #endif /* HAVE_WINDOW_SYSTEM */
16390 else if (CHAR_GLYPH_PADDING_P (*glyph
)
16391 && !FRAME_WINDOW_P (it
->f
))
16393 /* A padding glyph that doesn't fit on this line.
16394 This means the whole character doesn't fit
16396 row
->used
[TEXT_AREA
] = n_glyphs_before
;
16398 /* Fill the rest of the row with continuation
16399 glyphs like in 20.x. */
16400 while (row
->glyphs
[TEXT_AREA
] + row
->used
[TEXT_AREA
]
16401 < row
->glyphs
[1 + TEXT_AREA
])
16402 produce_special_glyphs (it
, IT_CONTINUATION
);
16404 row
->continued_p
= 1;
16405 it
->current_x
= x_before
;
16406 it
->continuation_lines_width
+= x_before
;
16408 /* Restore the height to what it was before the
16409 element not fitting on the line. */
16410 it
->max_ascent
= ascent
;
16411 it
->max_descent
= descent
;
16412 it
->max_phys_ascent
= phys_ascent
;
16413 it
->max_phys_descent
= phys_descent
;
16415 else if (it
->c
== '\t' && FRAME_WINDOW_P (it
->f
))
16417 /* A TAB that extends past the right edge of the
16418 window. This produces a single glyph on
16419 window system frames. We leave the glyph in
16420 this row and let it fill the row, but don't
16421 consume the TAB. */
16422 it
->continuation_lines_width
+= it
->last_visible_x
;
16423 row
->ends_in_middle_of_char_p
= 1;
16424 row
->continued_p
= 1;
16425 glyph
->pixel_width
= it
->last_visible_x
- x
;
16426 it
->starts_in_middle_of_char_p
= 1;
16430 /* Something other than a TAB that draws past
16431 the right edge of the window. Restore
16432 positions to values before the element. */
16433 row
->used
[TEXT_AREA
] = n_glyphs_before
+ i
;
16435 /* Display continuation glyphs. */
16436 if (!FRAME_WINDOW_P (it
->f
))
16437 produce_special_glyphs (it
, IT_CONTINUATION
);
16438 row
->continued_p
= 1;
16440 it
->current_x
= x_before
;
16441 it
->continuation_lines_width
+= x
;
16442 extend_face_to_end_of_line (it
);
16444 if (nglyphs
> 1 && i
> 0)
16446 row
->ends_in_middle_of_char_p
= 1;
16447 it
->starts_in_middle_of_char_p
= 1;
16450 /* Restore the height to what it was before the
16451 element not fitting on the line. */
16452 it
->max_ascent
= ascent
;
16453 it
->max_descent
= descent
;
16454 it
->max_phys_ascent
= phys_ascent
;
16455 it
->max_phys_descent
= phys_descent
;
16460 else if (new_x
> it
->first_visible_x
)
16462 /* Increment number of glyphs actually displayed. */
16465 if (x
< it
->first_visible_x
)
16466 /* Glyph is partially visible, i.e. row starts at
16467 negative X position. */
16468 row
->x
= x
- it
->first_visible_x
;
16472 /* Glyph is completely off the left margin of the
16473 window. This should not happen because of the
16474 move_it_in_display_line at the start of this
16475 function, unless the text display area of the
16476 window is empty. */
16477 xassert (it
->first_visible_x
<= it
->last_visible_x
);
16481 row
->ascent
= max (row
->ascent
, it
->max_ascent
);
16482 row
->height
= max (row
->height
, it
->max_ascent
+ it
->max_descent
);
16483 row
->phys_ascent
= max (row
->phys_ascent
, it
->max_phys_ascent
);
16484 row
->phys_height
= max (row
->phys_height
,
16485 it
->max_phys_ascent
+ it
->max_phys_descent
);
16486 row
->extra_line_spacing
= max (row
->extra_line_spacing
,
16487 it
->max_extra_line_spacing
);
16489 /* End of this display line if row is continued. */
16490 if (row
->continued_p
|| row
->ends_at_zv_p
)
16495 /* Is this a line end? If yes, we're also done, after making
16496 sure that a non-default face is extended up to the right
16497 margin of the window. */
16498 if (ITERATOR_AT_END_OF_LINE_P (it
))
16500 int used_before
= row
->used
[TEXT_AREA
];
16502 row
->ends_in_newline_from_string_p
= STRINGP (it
->object
);
16504 #ifdef HAVE_WINDOW_SYSTEM
16505 /* Add a space at the end of the line that is used to
16506 display the cursor there. */
16507 if (!IT_OVERFLOW_NEWLINE_INTO_FRINGE (it
))
16508 append_space_for_newline (it
, 0);
16509 #endif /* HAVE_WINDOW_SYSTEM */
16511 /* Extend the face to the end of the line. */
16512 extend_face_to_end_of_line (it
);
16514 /* Make sure we have the position. */
16515 if (used_before
== 0)
16516 row
->glyphs
[TEXT_AREA
]->charpos
= CHARPOS (it
->position
);
16518 /* Consume the line end. This skips over invisible lines. */
16519 set_iterator_to_next (it
, 1);
16520 it
->continuation_lines_width
= 0;
16524 /* Proceed with next display element. Note that this skips
16525 over lines invisible because of selective display. */
16526 set_iterator_to_next (it
, 1);
16528 /* If we truncate lines, we are done when the last displayed
16529 glyphs reach past the right margin of the window. */
16530 if (it
->truncate_lines_p
16531 && (FRAME_WINDOW_P (it
->f
)
16532 ? (it
->current_x
>= it
->last_visible_x
)
16533 : (it
->current_x
> it
->last_visible_x
)))
16535 /* Maybe add truncation glyphs. */
16536 if (!FRAME_WINDOW_P (it
->f
))
16540 for (i
= row
->used
[TEXT_AREA
] - 1; i
> 0; --i
)
16541 if (!CHAR_GLYPH_PADDING_P (row
->glyphs
[TEXT_AREA
][i
]))
16544 for (n
= row
->used
[TEXT_AREA
]; i
< n
; ++i
)
16546 row
->used
[TEXT_AREA
] = i
;
16547 produce_special_glyphs (it
, IT_TRUNCATION
);
16550 #ifdef HAVE_WINDOW_SYSTEM
16553 /* Don't truncate if we can overflow newline into fringe. */
16554 if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it
))
16556 if (!get_next_display_element (it
))
16558 it
->continuation_lines_width
= 0;
16559 row
->ends_at_zv_p
= 1;
16560 row
->exact_window_width_line_p
= 1;
16563 if (ITERATOR_AT_END_OF_LINE_P (it
))
16565 row
->exact_window_width_line_p
= 1;
16566 goto at_end_of_line
;
16570 #endif /* HAVE_WINDOW_SYSTEM */
16572 row
->truncated_on_right_p
= 1;
16573 it
->continuation_lines_width
= 0;
16574 reseat_at_next_visible_line_start (it
, 0);
16575 row
->ends_at_zv_p
= FETCH_BYTE (IT_BYTEPOS (*it
) - 1) != '\n';
16576 it
->hpos
= hpos_before
;
16577 it
->current_x
= x_before
;
16582 /* If line is not empty and hscrolled, maybe insert truncation glyphs
16583 at the left window margin. */
16584 if (it
->first_visible_x
16585 && IT_CHARPOS (*it
) != MATRIX_ROW_START_CHARPOS (row
))
16587 if (!FRAME_WINDOW_P (it
->f
))
16588 insert_left_trunc_glyphs (it
);
16589 row
->truncated_on_left_p
= 1;
16592 /* If the start of this line is the overlay arrow-position, then
16593 mark this glyph row as the one containing the overlay arrow.
16594 This is clearly a mess with variable size fonts. It would be
16595 better to let it be displayed like cursors under X. */
16596 if ((row
->displays_text_p
|| !overlay_arrow_seen
)
16597 && (overlay_arrow_string
= overlay_arrow_at_row (it
, row
),
16598 !NILP (overlay_arrow_string
)))
16600 /* Overlay arrow in window redisplay is a fringe bitmap. */
16601 if (STRINGP (overlay_arrow_string
))
16603 struct glyph_row
*arrow_row
16604 = get_overlay_arrow_glyph_row (it
->w
, overlay_arrow_string
);
16605 struct glyph
*glyph
= arrow_row
->glyphs
[TEXT_AREA
];
16606 struct glyph
*arrow_end
= glyph
+ arrow_row
->used
[TEXT_AREA
];
16607 struct glyph
*p
= row
->glyphs
[TEXT_AREA
];
16608 struct glyph
*p2
, *end
;
16610 /* Copy the arrow glyphs. */
16611 while (glyph
< arrow_end
)
16614 /* Throw away padding glyphs. */
16616 end
= row
->glyphs
[TEXT_AREA
] + row
->used
[TEXT_AREA
];
16617 while (p2
< end
&& CHAR_GLYPH_PADDING_P (*p2
))
16623 row
->used
[TEXT_AREA
] = p2
- row
->glyphs
[TEXT_AREA
];
16628 xassert (INTEGERP (overlay_arrow_string
));
16629 row
->overlay_arrow_bitmap
= XINT (overlay_arrow_string
);
16631 overlay_arrow_seen
= 1;
16634 /* Compute pixel dimensions of this line. */
16635 compute_line_metrics (it
);
16637 /* Remember the position at which this line ends. */
16638 row
->end
= it
->current
;
16640 /* Record whether this row ends inside an ellipsis. */
16641 row
->ends_in_ellipsis_p
16642 = (it
->method
== GET_FROM_DISPLAY_VECTOR
16643 && it
->ellipsis_p
);
16645 /* Save fringe bitmaps in this row. */
16646 row
->left_user_fringe_bitmap
= it
->left_user_fringe_bitmap
;
16647 row
->left_user_fringe_face_id
= it
->left_user_fringe_face_id
;
16648 row
->right_user_fringe_bitmap
= it
->right_user_fringe_bitmap
;
16649 row
->right_user_fringe_face_id
= it
->right_user_fringe_face_id
;
16651 it
->left_user_fringe_bitmap
= 0;
16652 it
->left_user_fringe_face_id
= 0;
16653 it
->right_user_fringe_bitmap
= 0;
16654 it
->right_user_fringe_face_id
= 0;
16656 /* Maybe set the cursor. */
16657 if (it
->w
->cursor
.vpos
< 0
16658 && PT
>= MATRIX_ROW_START_CHARPOS (row
)
16659 && PT
<= MATRIX_ROW_END_CHARPOS (row
)
16660 && cursor_row_p (it
->w
, row
))
16661 set_cursor_from_row (it
->w
, row
, it
->w
->desired_matrix
, 0, 0, 0, 0);
16663 /* Highlight trailing whitespace. */
16664 if (!NILP (Vshow_trailing_whitespace
))
16665 highlight_trailing_whitespace (it
->f
, it
->glyph_row
);
16667 /* Prepare for the next line. This line starts horizontally at (X
16668 HPOS) = (0 0). Vertical positions are incremented. As a
16669 convenience for the caller, IT->glyph_row is set to the next
16671 it
->current_x
= it
->hpos
= 0;
16672 it
->current_y
+= row
->height
;
16675 it
->start
= it
->current
;
16676 return row
->displays_text_p
;
16681 /***********************************************************************
16683 ***********************************************************************/
16685 /* Redisplay the menu bar in the frame for window W.
16687 The menu bar of X frames that don't have X toolkit support is
16688 displayed in a special window W->frame->menu_bar_window.
16690 The menu bar of terminal frames is treated specially as far as
16691 glyph matrices are concerned. Menu bar lines are not part of
16692 windows, so the update is done directly on the frame matrix rows
16693 for the menu bar. */
16696 display_menu_bar (w
)
16699 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
16704 /* Don't do all this for graphical frames. */
16706 if (FRAME_W32_P (f
))
16709 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
16714 if (FRAME_MAC_P (f
))
16718 #ifdef USE_X_TOOLKIT
16719 xassert (!FRAME_WINDOW_P (f
));
16720 init_iterator (&it
, w
, -1, -1, f
->desired_matrix
->rows
, MENU_FACE_ID
);
16721 it
.first_visible_x
= 0;
16722 it
.last_visible_x
= FRAME_TOTAL_COLS (f
) * FRAME_COLUMN_WIDTH (f
);
16723 #else /* not USE_X_TOOLKIT */
16724 if (FRAME_WINDOW_P (f
))
16726 /* Menu bar lines are displayed in the desired matrix of the
16727 dummy window menu_bar_window. */
16728 struct window
*menu_w
;
16729 xassert (WINDOWP (f
->menu_bar_window
));
16730 menu_w
= XWINDOW (f
->menu_bar_window
);
16731 init_iterator (&it
, menu_w
, -1, -1, menu_w
->desired_matrix
->rows
,
16733 it
.first_visible_x
= 0;
16734 it
.last_visible_x
= FRAME_TOTAL_COLS (f
) * FRAME_COLUMN_WIDTH (f
);
16738 /* This is a TTY frame, i.e. character hpos/vpos are used as
16740 init_iterator (&it
, w
, -1, -1, f
->desired_matrix
->rows
,
16742 it
.first_visible_x
= 0;
16743 it
.last_visible_x
= FRAME_COLS (f
);
16745 #endif /* not USE_X_TOOLKIT */
16747 if (! mode_line_inverse_video
)
16748 /* Force the menu-bar to be displayed in the default face. */
16749 it
.base_face_id
= it
.face_id
= DEFAULT_FACE_ID
;
16751 /* Clear all rows of the menu bar. */
16752 for (i
= 0; i
< FRAME_MENU_BAR_LINES (f
); ++i
)
16754 struct glyph_row
*row
= it
.glyph_row
+ i
;
16755 clear_glyph_row (row
);
16756 row
->enabled_p
= 1;
16757 row
->full_width_p
= 1;
16760 /* Display all items of the menu bar. */
16761 items
= FRAME_MENU_BAR_ITEMS (it
.f
);
16762 for (i
= 0; i
< XVECTOR (items
)->size
; i
+= 4)
16764 Lisp_Object string
;
16766 /* Stop at nil string. */
16767 string
= AREF (items
, i
+ 1);
16771 /* Remember where item was displayed. */
16772 ASET (items
, i
+ 3, make_number (it
.hpos
));
16774 /* Display the item, pad with one space. */
16775 if (it
.current_x
< it
.last_visible_x
)
16776 display_string (NULL
, string
, Qnil
, 0, 0, &it
,
16777 SCHARS (string
) + 1, 0, 0, -1);
16780 /* Fill out the line with spaces. */
16781 if (it
.current_x
< it
.last_visible_x
)
16782 display_string ("", Qnil
, Qnil
, 0, 0, &it
, -1, 0, 0, -1);
16784 /* Compute the total height of the lines. */
16785 compute_line_metrics (&it
);
16790 /***********************************************************************
16792 ***********************************************************************/
16794 /* Redisplay mode lines in the window tree whose root is WINDOW. If
16795 FORCE is non-zero, redisplay mode lines unconditionally.
16796 Otherwise, redisplay only mode lines that are garbaged. Value is
16797 the number of windows whose mode lines were redisplayed. */
16800 redisplay_mode_lines (window
, force
)
16801 Lisp_Object window
;
16806 while (!NILP (window
))
16808 struct window
*w
= XWINDOW (window
);
16810 if (WINDOWP (w
->hchild
))
16811 nwindows
+= redisplay_mode_lines (w
->hchild
, force
);
16812 else if (WINDOWP (w
->vchild
))
16813 nwindows
+= redisplay_mode_lines (w
->vchild
, force
);
16815 || FRAME_GARBAGED_P (XFRAME (w
->frame
))
16816 || !MATRIX_MODE_LINE_ROW (w
->current_matrix
)->enabled_p
)
16818 struct text_pos lpoint
;
16819 struct buffer
*old
= current_buffer
;
16821 /* Set the window's buffer for the mode line display. */
16822 SET_TEXT_POS (lpoint
, PT
, PT_BYTE
);
16823 set_buffer_internal_1 (XBUFFER (w
->buffer
));
16825 /* Point refers normally to the selected window. For any
16826 other window, set up appropriate value. */
16827 if (!EQ (window
, selected_window
))
16829 struct text_pos pt
;
16831 SET_TEXT_POS_FROM_MARKER (pt
, w
->pointm
);
16832 if (CHARPOS (pt
) < BEGV
)
16833 TEMP_SET_PT_BOTH (BEGV
, BEGV_BYTE
);
16834 else if (CHARPOS (pt
) > (ZV
- 1))
16835 TEMP_SET_PT_BOTH (ZV
, ZV_BYTE
);
16837 TEMP_SET_PT_BOTH (CHARPOS (pt
), BYTEPOS (pt
));
16840 /* Display mode lines. */
16841 clear_glyph_matrix (w
->desired_matrix
);
16842 if (display_mode_lines (w
))
16845 w
->must_be_updated_p
= 1;
16848 /* Restore old settings. */
16849 set_buffer_internal_1 (old
);
16850 TEMP_SET_PT_BOTH (CHARPOS (lpoint
), BYTEPOS (lpoint
));
16860 /* Display the mode and/or top line of window W. Value is the number
16861 of mode lines displayed. */
16864 display_mode_lines (w
)
16867 Lisp_Object old_selected_window
, old_selected_frame
;
16870 old_selected_frame
= selected_frame
;
16871 selected_frame
= w
->frame
;
16872 old_selected_window
= selected_window
;
16873 XSETWINDOW (selected_window
, w
);
16875 /* These will be set while the mode line specs are processed. */
16876 line_number_displayed
= 0;
16877 w
->column_number_displayed
= Qnil
;
16879 if (WINDOW_WANTS_MODELINE_P (w
))
16881 struct window
*sel_w
= XWINDOW (old_selected_window
);
16883 /* Select mode line face based on the real selected window. */
16884 display_mode_line (w
, CURRENT_MODE_LINE_FACE_ID_3 (sel_w
, sel_w
, w
),
16885 current_buffer
->mode_line_format
);
16889 if (WINDOW_WANTS_HEADER_LINE_P (w
))
16891 display_mode_line (w
, HEADER_LINE_FACE_ID
,
16892 current_buffer
->header_line_format
);
16896 selected_frame
= old_selected_frame
;
16897 selected_window
= old_selected_window
;
16902 /* Display mode or top line of window W. FACE_ID specifies which line
16903 to display; it is either MODE_LINE_FACE_ID or HEADER_LINE_FACE_ID.
16904 FORMAT is the mode line format to display. Value is the pixel
16905 height of the mode line displayed. */
16908 display_mode_line (w
, face_id
, format
)
16910 enum face_id face_id
;
16911 Lisp_Object format
;
16915 int count
= SPECPDL_INDEX ();
16917 init_iterator (&it
, w
, -1, -1, NULL
, face_id
);
16918 /* Don't extend on a previously drawn mode-line.
16919 This may happen if called from pos_visible_p. */
16920 it
.glyph_row
->enabled_p
= 0;
16921 prepare_desired_row (it
.glyph_row
);
16923 it
.glyph_row
->mode_line_p
= 1;
16925 if (! mode_line_inverse_video
)
16926 /* Force the mode-line to be displayed in the default face. */
16927 it
.base_face_id
= it
.face_id
= DEFAULT_FACE_ID
;
16929 record_unwind_protect (unwind_format_mode_line
,
16930 format_mode_line_unwind_data (NULL
, 0));
16932 mode_line_target
= MODE_LINE_DISPLAY
;
16934 /* Temporarily make frame's keyboard the current kboard so that
16935 kboard-local variables in the mode_line_format will get the right
16937 push_kboard (FRAME_KBOARD (it
.f
));
16938 record_unwind_save_match_data ();
16939 display_mode_element (&it
, 0, 0, 0, format
, Qnil
, 0);
16942 unbind_to (count
, Qnil
);
16944 /* Fill up with spaces. */
16945 display_string (" ", Qnil
, Qnil
, 0, 0, &it
, 10000, -1, -1, 0);
16947 compute_line_metrics (&it
);
16948 it
.glyph_row
->full_width_p
= 1;
16949 it
.glyph_row
->continued_p
= 0;
16950 it
.glyph_row
->truncated_on_left_p
= 0;
16951 it
.glyph_row
->truncated_on_right_p
= 0;
16953 /* Make a 3D mode-line have a shadow at its right end. */
16954 face
= FACE_FROM_ID (it
.f
, face_id
);
16955 extend_face_to_end_of_line (&it
);
16956 if (face
->box
!= FACE_NO_BOX
)
16958 struct glyph
*last
= (it
.glyph_row
->glyphs
[TEXT_AREA
]
16959 + it
.glyph_row
->used
[TEXT_AREA
] - 1);
16960 last
->right_box_line_p
= 1;
16963 return it
.glyph_row
->height
;
16966 /* Move element ELT in LIST to the front of LIST.
16967 Return the updated list. */
16970 move_elt_to_front (elt
, list
)
16971 Lisp_Object elt
, list
;
16973 register Lisp_Object tail
, prev
;
16974 register Lisp_Object tem
;
16978 while (CONSP (tail
))
16984 /* Splice out the link TAIL. */
16986 list
= XCDR (tail
);
16988 Fsetcdr (prev
, XCDR (tail
));
16990 /* Now make it the first. */
16991 Fsetcdr (tail
, list
);
16996 tail
= XCDR (tail
);
17000 /* Not found--return unchanged LIST. */
17004 /* Contribute ELT to the mode line for window IT->w. How it
17005 translates into text depends on its data type.
17007 IT describes the display environment in which we display, as usual.
17009 DEPTH is the depth in recursion. It is used to prevent
17010 infinite recursion here.
17012 FIELD_WIDTH is the number of characters the display of ELT should
17013 occupy in the mode line, and PRECISION is the maximum number of
17014 characters to display from ELT's representation. See
17015 display_string for details.
17017 Returns the hpos of the end of the text generated by ELT.
17019 PROPS is a property list to add to any string we encounter.
17021 If RISKY is nonzero, remove (disregard) any properties in any string
17022 we encounter, and ignore :eval and :propertize.
17024 The global variable `mode_line_target' determines whether the
17025 output is passed to `store_mode_line_noprop',
17026 `store_mode_line_string', or `display_string'. */
17029 display_mode_element (it
, depth
, field_width
, precision
, elt
, props
, risky
)
17032 int field_width
, precision
;
17033 Lisp_Object elt
, props
;
17036 int n
= 0, field
, prec
;
17041 elt
= build_string ("*too-deep*");
17045 switch (SWITCH_ENUM_CAST (XTYPE (elt
)))
17049 /* A string: output it and check for %-constructs within it. */
17053 if (SCHARS (elt
) > 0
17054 && (!NILP (props
) || risky
))
17056 Lisp_Object oprops
, aelt
;
17057 oprops
= Ftext_properties_at (make_number (0), elt
);
17059 /* If the starting string's properties are not what
17060 we want, translate the string. Also, if the string
17061 is risky, do that anyway. */
17063 if (NILP (Fequal (props
, oprops
)) || risky
)
17065 /* If the starting string has properties,
17066 merge the specified ones onto the existing ones. */
17067 if (! NILP (oprops
) && !risky
)
17071 oprops
= Fcopy_sequence (oprops
);
17073 while (CONSP (tem
))
17075 oprops
= Fplist_put (oprops
, XCAR (tem
),
17076 XCAR (XCDR (tem
)));
17077 tem
= XCDR (XCDR (tem
));
17082 aelt
= Fassoc (elt
, mode_line_proptrans_alist
);
17083 if (! NILP (aelt
) && !NILP (Fequal (props
, XCDR (aelt
))))
17085 /* AELT is what we want. Move it to the front
17086 without consing. */
17088 mode_line_proptrans_alist
17089 = move_elt_to_front (aelt
, mode_line_proptrans_alist
);
17095 /* If AELT has the wrong props, it is useless.
17096 so get rid of it. */
17098 mode_line_proptrans_alist
17099 = Fdelq (aelt
, mode_line_proptrans_alist
);
17101 elt
= Fcopy_sequence (elt
);
17102 Fset_text_properties (make_number (0), Flength (elt
),
17104 /* Add this item to mode_line_proptrans_alist. */
17105 mode_line_proptrans_alist
17106 = Fcons (Fcons (elt
, props
),
17107 mode_line_proptrans_alist
);
17108 /* Truncate mode_line_proptrans_alist
17109 to at most 50 elements. */
17110 tem
= Fnthcdr (make_number (50),
17111 mode_line_proptrans_alist
);
17113 XSETCDR (tem
, Qnil
);
17122 prec
= precision
- n
;
17123 switch (mode_line_target
)
17125 case MODE_LINE_NOPROP
:
17126 case MODE_LINE_TITLE
:
17127 n
+= store_mode_line_noprop (SDATA (elt
), -1, prec
);
17129 case MODE_LINE_STRING
:
17130 n
+= store_mode_line_string (NULL
, elt
, 1, 0, prec
, Qnil
);
17132 case MODE_LINE_DISPLAY
:
17133 n
+= display_string (NULL
, elt
, Qnil
, 0, 0, it
,
17134 0, prec
, 0, STRING_MULTIBYTE (elt
));
17141 /* Handle the non-literal case. */
17143 while ((precision
<= 0 || n
< precision
)
17144 && SREF (elt
, offset
) != 0
17145 && (mode_line_target
!= MODE_LINE_DISPLAY
17146 || it
->current_x
< it
->last_visible_x
))
17148 int last_offset
= offset
;
17150 /* Advance to end of string or next format specifier. */
17151 while ((c
= SREF (elt
, offset
++)) != '\0' && c
!= '%')
17154 if (offset
- 1 != last_offset
)
17156 int nchars
, nbytes
;
17158 /* Output to end of string or up to '%'. Field width
17159 is length of string. Don't output more than
17160 PRECISION allows us. */
17163 prec
= c_string_width (SDATA (elt
) + last_offset
,
17164 offset
- last_offset
, precision
- n
,
17167 switch (mode_line_target
)
17169 case MODE_LINE_NOPROP
:
17170 case MODE_LINE_TITLE
:
17171 n
+= store_mode_line_noprop (SDATA (elt
) + last_offset
, 0, prec
);
17173 case MODE_LINE_STRING
:
17175 int bytepos
= last_offset
;
17176 int charpos
= string_byte_to_char (elt
, bytepos
);
17177 int endpos
= (precision
<= 0
17178 ? string_byte_to_char (elt
, offset
)
17179 : charpos
+ nchars
);
17181 n
+= store_mode_line_string (NULL
,
17182 Fsubstring (elt
, make_number (charpos
),
17183 make_number (endpos
)),
17187 case MODE_LINE_DISPLAY
:
17189 int bytepos
= last_offset
;
17190 int charpos
= string_byte_to_char (elt
, bytepos
);
17192 if (precision
<= 0)
17193 nchars
= string_byte_to_char (elt
, offset
) - charpos
;
17194 n
+= display_string (NULL
, elt
, Qnil
, 0, charpos
,
17196 STRING_MULTIBYTE (elt
));
17201 else /* c == '%' */
17203 int percent_position
= offset
;
17205 /* Get the specified minimum width. Zero means
17208 while ((c
= SREF (elt
, offset
++)) >= '0' && c
<= '9')
17209 field
= field
* 10 + c
- '0';
17211 /* Don't pad beyond the total padding allowed. */
17212 if (field_width
- n
> 0 && field
> field_width
- n
)
17213 field
= field_width
- n
;
17215 /* Note that either PRECISION <= 0 or N < PRECISION. */
17216 prec
= precision
- n
;
17219 n
+= display_mode_element (it
, depth
, field
, prec
,
17220 Vglobal_mode_string
, props
,
17225 int bytepos
, charpos
;
17226 unsigned char *spec
;
17228 bytepos
= percent_position
;
17229 charpos
= (STRING_MULTIBYTE (elt
)
17230 ? string_byte_to_char (elt
, bytepos
)
17233 = decode_mode_spec (it
->w
, c
, field
, prec
, &multibyte
);
17235 switch (mode_line_target
)
17237 case MODE_LINE_NOPROP
:
17238 case MODE_LINE_TITLE
:
17239 n
+= store_mode_line_noprop (spec
, field
, prec
);
17241 case MODE_LINE_STRING
:
17243 int len
= strlen (spec
);
17244 Lisp_Object tem
= make_string (spec
, len
);
17245 props
= Ftext_properties_at (make_number (charpos
), elt
);
17246 /* Should only keep face property in props */
17247 n
+= store_mode_line_string (NULL
, tem
, 0, field
, prec
, props
);
17250 case MODE_LINE_DISPLAY
:
17252 int nglyphs_before
, nwritten
;
17254 nglyphs_before
= it
->glyph_row
->used
[TEXT_AREA
];
17255 nwritten
= display_string (spec
, Qnil
, elt
,
17260 /* Assign to the glyphs written above the
17261 string where the `%x' came from, position
17265 struct glyph
*glyph
17266 = (it
->glyph_row
->glyphs
[TEXT_AREA
]
17270 for (i
= 0; i
< nwritten
; ++i
)
17272 glyph
[i
].object
= elt
;
17273 glyph
[i
].charpos
= charpos
;
17290 /* A symbol: process the value of the symbol recursively
17291 as if it appeared here directly. Avoid error if symbol void.
17292 Special case: if value of symbol is a string, output the string
17295 register Lisp_Object tem
;
17297 /* If the variable is not marked as risky to set
17298 then its contents are risky to use. */
17299 if (NILP (Fget (elt
, Qrisky_local_variable
)))
17302 tem
= Fboundp (elt
);
17305 tem
= Fsymbol_value (elt
);
17306 /* If value is a string, output that string literally:
17307 don't check for % within it. */
17311 if (!EQ (tem
, elt
))
17313 /* Give up right away for nil or t. */
17323 register Lisp_Object car
, tem
;
17325 /* A cons cell: five distinct cases.
17326 If first element is :eval or :propertize, do something special.
17327 If first element is a string or a cons, process all the elements
17328 and effectively concatenate them.
17329 If first element is a negative number, truncate displaying cdr to
17330 at most that many characters. If positive, pad (with spaces)
17331 to at least that many characters.
17332 If first element is a symbol, process the cadr or caddr recursively
17333 according to whether the symbol's value is non-nil or nil. */
17335 if (EQ (car
, QCeval
))
17337 /* An element of the form (:eval FORM) means evaluate FORM
17338 and use the result as mode line elements. */
17343 if (CONSP (XCDR (elt
)))
17346 spec
= safe_eval (XCAR (XCDR (elt
)));
17347 n
+= display_mode_element (it
, depth
, field_width
- n
,
17348 precision
- n
, spec
, props
,
17352 else if (EQ (car
, QCpropertize
))
17354 /* An element of the form (:propertize ELT PROPS...)
17355 means display ELT but applying properties PROPS. */
17360 if (CONSP (XCDR (elt
)))
17361 n
+= display_mode_element (it
, depth
, field_width
- n
,
17362 precision
- n
, XCAR (XCDR (elt
)),
17363 XCDR (XCDR (elt
)), risky
);
17365 else if (SYMBOLP (car
))
17367 tem
= Fboundp (car
);
17371 /* elt is now the cdr, and we know it is a cons cell.
17372 Use its car if CAR has a non-nil value. */
17375 tem
= Fsymbol_value (car
);
17382 /* Symbol's value is nil (or symbol is unbound)
17383 Get the cddr of the original list
17384 and if possible find the caddr and use that. */
17388 else if (!CONSP (elt
))
17393 else if (INTEGERP (car
))
17395 register int lim
= XINT (car
);
17399 /* Negative int means reduce maximum width. */
17400 if (precision
<= 0)
17403 precision
= min (precision
, -lim
);
17407 /* Padding specified. Don't let it be more than
17408 current maximum. */
17410 lim
= min (precision
, lim
);
17412 /* If that's more padding than already wanted, queue it.
17413 But don't reduce padding already specified even if
17414 that is beyond the current truncation point. */
17415 field_width
= max (lim
, field_width
);
17419 else if (STRINGP (car
) || CONSP (car
))
17421 register int limit
= 50;
17422 /* Limit is to protect against circular lists. */
17425 && (precision
<= 0 || n
< precision
))
17427 n
+= display_mode_element (it
, depth
,
17428 /* Do padding only after the last
17429 element in the list. */
17430 (! CONSP (XCDR (elt
))
17433 precision
- n
, XCAR (elt
),
17443 elt
= build_string ("*invalid*");
17447 /* Pad to FIELD_WIDTH. */
17448 if (field_width
> 0 && n
< field_width
)
17450 switch (mode_line_target
)
17452 case MODE_LINE_NOPROP
:
17453 case MODE_LINE_TITLE
:
17454 n
+= store_mode_line_noprop ("", field_width
- n
, 0);
17456 case MODE_LINE_STRING
:
17457 n
+= store_mode_line_string ("", Qnil
, 0, field_width
- n
, 0, Qnil
);
17459 case MODE_LINE_DISPLAY
:
17460 n
+= display_string ("", Qnil
, Qnil
, 0, 0, it
, field_width
- n
,
17469 /* Store a mode-line string element in mode_line_string_list.
17471 If STRING is non-null, display that C string. Otherwise, the Lisp
17472 string LISP_STRING is displayed.
17474 FIELD_WIDTH is the minimum number of output glyphs to produce.
17475 If STRING has fewer characters than FIELD_WIDTH, pad to the right
17476 with spaces. FIELD_WIDTH <= 0 means don't pad.
17478 PRECISION is the maximum number of characters to output from
17479 STRING. PRECISION <= 0 means don't truncate the string.
17481 If COPY_STRING is non-zero, make a copy of LISP_STRING before adding
17482 properties to the string.
17484 PROPS are the properties to add to the string.
17485 The mode_line_string_face face property is always added to the string.
17489 store_mode_line_string (string
, lisp_string
, copy_string
, field_width
, precision
, props
)
17491 Lisp_Object lisp_string
;
17500 if (string
!= NULL
)
17502 len
= strlen (string
);
17503 if (precision
> 0 && len
> precision
)
17505 lisp_string
= make_string (string
, len
);
17507 props
= mode_line_string_face_prop
;
17508 else if (!NILP (mode_line_string_face
))
17510 Lisp_Object face
= Fplist_get (props
, Qface
);
17511 props
= Fcopy_sequence (props
);
17513 face
= mode_line_string_face
;
17515 face
= Fcons (face
, Fcons (mode_line_string_face
, Qnil
));
17516 props
= Fplist_put (props
, Qface
, face
);
17518 Fadd_text_properties (make_number (0), make_number (len
),
17519 props
, lisp_string
);
17523 len
= XFASTINT (Flength (lisp_string
));
17524 if (precision
> 0 && len
> precision
)
17527 lisp_string
= Fsubstring (lisp_string
, make_number (0), make_number (len
));
17530 if (!NILP (mode_line_string_face
))
17534 props
= Ftext_properties_at (make_number (0), lisp_string
);
17535 face
= Fplist_get (props
, Qface
);
17537 face
= mode_line_string_face
;
17539 face
= Fcons (face
, Fcons (mode_line_string_face
, Qnil
));
17540 props
= Fcons (Qface
, Fcons (face
, Qnil
));
17542 lisp_string
= Fcopy_sequence (lisp_string
);
17545 Fadd_text_properties (make_number (0), make_number (len
),
17546 props
, lisp_string
);
17551 mode_line_string_list
= Fcons (lisp_string
, mode_line_string_list
);
17555 if (field_width
> len
)
17557 field_width
-= len
;
17558 lisp_string
= Fmake_string (make_number (field_width
), make_number (' '));
17560 Fadd_text_properties (make_number (0), make_number (field_width
),
17561 props
, lisp_string
);
17562 mode_line_string_list
= Fcons (lisp_string
, mode_line_string_list
);
17570 DEFUN ("format-mode-line", Fformat_mode_line
, Sformat_mode_line
,
17572 doc
: /* Format a string out of a mode line format specification.
17573 First arg FORMAT specifies the mode line format (see `mode-line-format'
17574 for details) to use.
17576 Optional second arg FACE specifies the face property to put
17577 on all characters for which no face is specified.
17578 The value t means whatever face the window's mode line currently uses
17579 \(either `mode-line' or `mode-line-inactive', depending).
17580 A value of nil means the default is no face property.
17581 If FACE is an integer, the value string has no text properties.
17583 Optional third and fourth args WINDOW and BUFFER specify the window
17584 and buffer to use as the context for the formatting (defaults
17585 are the selected window and the window's buffer). */)
17586 (format
, face
, window
, buffer
)
17587 Lisp_Object format
, face
, window
, buffer
;
17592 struct buffer
*old_buffer
= NULL
;
17594 int no_props
= INTEGERP (face
);
17595 int count
= SPECPDL_INDEX ();
17597 int string_start
= 0;
17600 window
= selected_window
;
17601 CHECK_WINDOW (window
);
17602 w
= XWINDOW (window
);
17605 buffer
= w
->buffer
;
17606 CHECK_BUFFER (buffer
);
17608 /* Make formatting the modeline a non-op when noninteractive, otherwise
17609 there will be problems later caused by a partially initialized frame. */
17610 if (NILP (format
) || noninteractive
)
17611 return empty_unibyte_string
;
17619 face
= (EQ (window
, selected_window
) ? Qmode_line
: Qmode_line_inactive
);
17620 face_id
= lookup_named_face (XFRAME (WINDOW_FRAME (w
)), face
, 0);
17624 face_id
= DEFAULT_FACE_ID
;
17626 if (XBUFFER (buffer
) != current_buffer
)
17627 old_buffer
= current_buffer
;
17629 /* Save things including mode_line_proptrans_alist,
17630 and set that to nil so that we don't alter the outer value. */
17631 record_unwind_protect (unwind_format_mode_line
,
17632 format_mode_line_unwind_data (old_buffer
, 1));
17633 mode_line_proptrans_alist
= Qnil
;
17636 set_buffer_internal_1 (XBUFFER (buffer
));
17638 init_iterator (&it
, w
, -1, -1, NULL
, face_id
);
17642 mode_line_target
= MODE_LINE_NOPROP
;
17643 mode_line_string_face_prop
= Qnil
;
17644 mode_line_string_list
= Qnil
;
17645 string_start
= MODE_LINE_NOPROP_LEN (0);
17649 mode_line_target
= MODE_LINE_STRING
;
17650 mode_line_string_list
= Qnil
;
17651 mode_line_string_face
= face
;
17652 mode_line_string_face_prop
17653 = (NILP (face
) ? Qnil
: Fcons (Qface
, Fcons (face
, Qnil
)));
17656 push_kboard (FRAME_KBOARD (it
.f
));
17657 display_mode_element (&it
, 0, 0, 0, format
, Qnil
, 0);
17662 len
= MODE_LINE_NOPROP_LEN (string_start
);
17663 str
= make_string (mode_line_noprop_buf
+ string_start
, len
);
17667 mode_line_string_list
= Fnreverse (mode_line_string_list
);
17668 str
= Fmapconcat (intern ("identity"), mode_line_string_list
,
17669 empty_unibyte_string
);
17672 unbind_to (count
, Qnil
);
17676 /* Write a null-terminated, right justified decimal representation of
17677 the positive integer D to BUF using a minimal field width WIDTH. */
17680 pint2str (buf
, width
, d
)
17681 register char *buf
;
17682 register int width
;
17685 register char *p
= buf
;
17693 *p
++ = d
% 10 + '0';
17698 for (width
-= (int) (p
- buf
); width
> 0; --width
)
17709 /* Write a null-terminated, right justified decimal and "human
17710 readable" representation of the nonnegative integer D to BUF using
17711 a minimal field width WIDTH. D should be smaller than 999.5e24. */
17713 static const char power_letter
[] =
17727 pint2hrstr (buf
, width
, d
)
17732 /* We aim to represent the nonnegative integer D as
17733 QUOTIENT.TENTHS * 10 ^ (3 * EXPONENT). */
17736 /* -1 means: do not use TENTHS. */
17740 /* Length of QUOTIENT.TENTHS as a string. */
17746 if (1000 <= quotient
)
17748 /* Scale to the appropriate EXPONENT. */
17751 remainder
= quotient
% 1000;
17755 while (1000 <= quotient
);
17757 /* Round to nearest and decide whether to use TENTHS or not. */
17760 tenths
= remainder
/ 100;
17761 if (50 <= remainder
% 100)
17768 if (quotient
== 10)
17776 if (500 <= remainder
)
17778 if (quotient
< 999)
17789 /* Calculate the LENGTH of QUOTIENT.TENTHS as a string. */
17790 if (tenths
== -1 && quotient
<= 99)
17797 p
= psuffix
= buf
+ max (width
, length
);
17799 /* Print EXPONENT. */
17801 *psuffix
++ = power_letter
[exponent
];
17804 /* Print TENTHS. */
17807 *--p
= '0' + tenths
;
17811 /* Print QUOTIENT. */
17814 int digit
= quotient
% 10;
17815 *--p
= '0' + digit
;
17817 while ((quotient
/= 10) != 0);
17819 /* Print leading spaces. */
17824 /* Set a mnemonic character for coding_system (Lisp symbol) in BUF.
17825 If EOL_FLAG is 1, set also a mnemonic character for end-of-line
17826 type of CODING_SYSTEM. Return updated pointer into BUF. */
17828 static unsigned char invalid_eol_type
[] = "(*invalid*)";
17831 decode_mode_spec_coding (coding_system
, buf
, eol_flag
)
17832 Lisp_Object coding_system
;
17833 register char *buf
;
17837 int multibyte
= !NILP (current_buffer
->enable_multibyte_characters
);
17838 const unsigned char *eol_str
;
17840 /* The EOL conversion we are using. */
17841 Lisp_Object eoltype
;
17843 val
= CODING_SYSTEM_SPEC (coding_system
);
17846 if (!VECTORP (val
)) /* Not yet decided. */
17851 eoltype
= eol_mnemonic_undecided
;
17852 /* Don't mention EOL conversion if it isn't decided. */
17857 Lisp_Object eolvalue
;
17859 attrs
= AREF (val
, 0);
17860 eolvalue
= AREF (val
, 2);
17863 *buf
++ = XFASTINT (CODING_ATTR_MNEMONIC (attrs
));
17867 /* The EOL conversion that is normal on this system. */
17869 if (NILP (eolvalue
)) /* Not yet decided. */
17870 eoltype
= eol_mnemonic_undecided
;
17871 else if (VECTORP (eolvalue
)) /* Not yet decided. */
17872 eoltype
= eol_mnemonic_undecided
;
17873 else /* eolvalue is Qunix, Qdos, or Qmac. */
17874 eoltype
= (EQ (eolvalue
, Qunix
)
17875 ? eol_mnemonic_unix
17876 : (EQ (eolvalue
, Qdos
) == 1
17877 ? eol_mnemonic_dos
: eol_mnemonic_mac
));
17883 /* Mention the EOL conversion if it is not the usual one. */
17884 if (STRINGP (eoltype
))
17886 eol_str
= SDATA (eoltype
);
17887 eol_str_len
= SBYTES (eoltype
);
17889 else if (CHARACTERP (eoltype
))
17891 unsigned char *tmp
= (unsigned char *) alloca (MAX_MULTIBYTE_LENGTH
);
17892 eol_str_len
= CHAR_STRING (XINT (eoltype
), tmp
);
17897 eol_str
= invalid_eol_type
;
17898 eol_str_len
= sizeof (invalid_eol_type
) - 1;
17900 bcopy (eol_str
, buf
, eol_str_len
);
17901 buf
+= eol_str_len
;
17907 /* Return a string for the output of a mode line %-spec for window W,
17908 generated by character C. PRECISION >= 0 means don't return a
17909 string longer than that value. FIELD_WIDTH > 0 means pad the
17910 string returned with spaces to that value. Return 1 in *MULTIBYTE
17911 if the result is multibyte text.
17913 Note we operate on the current buffer for most purposes,
17914 the exception being w->base_line_pos. */
17916 static char lots_of_dashes
[] = "--------------------------------------------------------------------------------------------------------------------------------------------";
17919 decode_mode_spec (w
, c
, field_width
, precision
, multibyte
)
17922 int field_width
, precision
;
17926 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
17927 char *decode_mode_spec_buf
= f
->decode_mode_spec_buffer
;
17928 struct buffer
*b
= current_buffer
;
17936 if (!NILP (b
->read_only
))
17938 if (BUF_MODIFF (b
) > BUF_SAVE_MODIFF (b
))
17943 /* This differs from %* only for a modified read-only buffer. */
17944 if (BUF_MODIFF (b
) > BUF_SAVE_MODIFF (b
))
17946 if (!NILP (b
->read_only
))
17951 /* This differs from %* in ignoring read-only-ness. */
17952 if (BUF_MODIFF (b
) > BUF_SAVE_MODIFF (b
))
17964 if (command_loop_level
> 5)
17966 p
= decode_mode_spec_buf
;
17967 for (i
= 0; i
< command_loop_level
; i
++)
17970 return decode_mode_spec_buf
;
17978 if (command_loop_level
> 5)
17980 p
= decode_mode_spec_buf
;
17981 for (i
= 0; i
< command_loop_level
; i
++)
17984 return decode_mode_spec_buf
;
17991 /* Let lots_of_dashes be a string of infinite length. */
17992 if (mode_line_target
== MODE_LINE_NOPROP
||
17993 mode_line_target
== MODE_LINE_STRING
)
17995 if (field_width
<= 0
17996 || field_width
> sizeof (lots_of_dashes
))
17998 for (i
= 0; i
< FRAME_MESSAGE_BUF_SIZE (f
) - 1; ++i
)
17999 decode_mode_spec_buf
[i
] = '-';
18000 decode_mode_spec_buf
[i
] = '\0';
18001 return decode_mode_spec_buf
;
18004 return lots_of_dashes
;
18012 /* %c and %l are ignored in `frame-title-format'.
18013 (In redisplay_internal, the frame title is drawn _before_ the
18014 windows are updated, so the stuff which depends on actual
18015 window contents (such as %l) may fail to render properly, or
18016 even crash emacs.) */
18017 if (mode_line_target
== MODE_LINE_TITLE
)
18021 int col
= (int) current_column (); /* iftc */
18022 w
->column_number_displayed
= make_number (col
);
18023 pint2str (decode_mode_spec_buf
, field_width
, col
);
18024 return decode_mode_spec_buf
;
18028 #ifndef SYSTEM_MALLOC
18030 if (NILP (Vmemory_full
))
18033 return "!MEM FULL! ";
18040 /* %F displays the frame name. */
18041 if (!NILP (f
->title
))
18042 return (char *) SDATA (f
->title
);
18043 if (f
->explicit_name
|| ! FRAME_WINDOW_P (f
))
18044 return (char *) SDATA (f
->name
);
18053 int size
= ZV
- BEGV
;
18054 pint2str (decode_mode_spec_buf
, field_width
, size
);
18055 return decode_mode_spec_buf
;
18060 int size
= ZV
- BEGV
;
18061 pint2hrstr (decode_mode_spec_buf
, field_width
, size
);
18062 return decode_mode_spec_buf
;
18067 int startpos
, startpos_byte
, line
, linepos
, linepos_byte
;
18068 int topline
, nlines
, junk
, height
;
18070 /* %c and %l are ignored in `frame-title-format'. */
18071 if (mode_line_target
== MODE_LINE_TITLE
)
18074 startpos
= XMARKER (w
->start
)->charpos
;
18075 startpos_byte
= marker_byte_position (w
->start
);
18076 height
= WINDOW_TOTAL_LINES (w
);
18078 /* If we decided that this buffer isn't suitable for line numbers,
18079 don't forget that too fast. */
18080 if (EQ (w
->base_line_pos
, w
->buffer
))
18082 /* But do forget it, if the window shows a different buffer now. */
18083 else if (BUFFERP (w
->base_line_pos
))
18084 w
->base_line_pos
= Qnil
;
18086 /* If the buffer is very big, don't waste time. */
18087 if (INTEGERP (Vline_number_display_limit
)
18088 && BUF_ZV (b
) - BUF_BEGV (b
) > XINT (Vline_number_display_limit
))
18090 w
->base_line_pos
= Qnil
;
18091 w
->base_line_number
= Qnil
;
18095 if (INTEGERP (w
->base_line_number
)
18096 && INTEGERP (w
->base_line_pos
)
18097 && XFASTINT (w
->base_line_pos
) <= startpos
)
18099 line
= XFASTINT (w
->base_line_number
);
18100 linepos
= XFASTINT (w
->base_line_pos
);
18101 linepos_byte
= buf_charpos_to_bytepos (b
, linepos
);
18106 linepos
= BUF_BEGV (b
);
18107 linepos_byte
= BUF_BEGV_BYTE (b
);
18110 /* Count lines from base line to window start position. */
18111 nlines
= display_count_lines (linepos
, linepos_byte
,
18115 topline
= nlines
+ line
;
18117 /* Determine a new base line, if the old one is too close
18118 or too far away, or if we did not have one.
18119 "Too close" means it's plausible a scroll-down would
18120 go back past it. */
18121 if (startpos
== BUF_BEGV (b
))
18123 w
->base_line_number
= make_number (topline
);
18124 w
->base_line_pos
= make_number (BUF_BEGV (b
));
18126 else if (nlines
< height
+ 25 || nlines
> height
* 3 + 50
18127 || linepos
== BUF_BEGV (b
))
18129 int limit
= BUF_BEGV (b
);
18130 int limit_byte
= BUF_BEGV_BYTE (b
);
18132 int distance
= (height
* 2 + 30) * line_number_display_limit_width
;
18134 if (startpos
- distance
> limit
)
18136 limit
= startpos
- distance
;
18137 limit_byte
= CHAR_TO_BYTE (limit
);
18140 nlines
= display_count_lines (startpos
, startpos_byte
,
18142 - (height
* 2 + 30),
18144 /* If we couldn't find the lines we wanted within
18145 line_number_display_limit_width chars per line,
18146 give up on line numbers for this window. */
18147 if (position
== limit_byte
&& limit
== startpos
- distance
)
18149 w
->base_line_pos
= w
->buffer
;
18150 w
->base_line_number
= Qnil
;
18154 w
->base_line_number
= make_number (topline
- nlines
);
18155 w
->base_line_pos
= make_number (BYTE_TO_CHAR (position
));
18158 /* Now count lines from the start pos to point. */
18159 nlines
= display_count_lines (startpos
, startpos_byte
,
18160 PT_BYTE
, PT
, &junk
);
18162 /* Record that we did display the line number. */
18163 line_number_displayed
= 1;
18165 /* Make the string to show. */
18166 pint2str (decode_mode_spec_buf
, field_width
, topline
+ nlines
);
18167 return decode_mode_spec_buf
;
18170 char* p
= decode_mode_spec_buf
;
18171 int pad
= field_width
- 2;
18177 return decode_mode_spec_buf
;
18183 obj
= b
->mode_name
;
18187 if (BUF_BEGV (b
) > BUF_BEG (b
) || BUF_ZV (b
) < BUF_Z (b
))
18193 int pos
= marker_position (w
->start
);
18194 int total
= BUF_ZV (b
) - BUF_BEGV (b
);
18196 if (XFASTINT (w
->window_end_pos
) <= BUF_Z (b
) - BUF_ZV (b
))
18198 if (pos
<= BUF_BEGV (b
))
18203 else if (pos
<= BUF_BEGV (b
))
18207 if (total
> 1000000)
18208 /* Do it differently for a large value, to avoid overflow. */
18209 total
= ((pos
- BUF_BEGV (b
)) + (total
/ 100) - 1) / (total
/ 100);
18211 total
= ((pos
- BUF_BEGV (b
)) * 100 + total
- 1) / total
;
18212 /* We can't normally display a 3-digit number,
18213 so get us a 2-digit number that is close. */
18216 sprintf (decode_mode_spec_buf
, "%2d%%", total
);
18217 return decode_mode_spec_buf
;
18221 /* Display percentage of size above the bottom of the screen. */
18224 int toppos
= marker_position (w
->start
);
18225 int botpos
= BUF_Z (b
) - XFASTINT (w
->window_end_pos
);
18226 int total
= BUF_ZV (b
) - BUF_BEGV (b
);
18228 if (botpos
>= BUF_ZV (b
))
18230 if (toppos
<= BUF_BEGV (b
))
18237 if (total
> 1000000)
18238 /* Do it differently for a large value, to avoid overflow. */
18239 total
= ((botpos
- BUF_BEGV (b
)) + (total
/ 100) - 1) / (total
/ 100);
18241 total
= ((botpos
- BUF_BEGV (b
)) * 100 + total
- 1) / total
;
18242 /* We can't normally display a 3-digit number,
18243 so get us a 2-digit number that is close. */
18246 if (toppos
<= BUF_BEGV (b
))
18247 sprintf (decode_mode_spec_buf
, "Top%2d%%", total
);
18249 sprintf (decode_mode_spec_buf
, "%2d%%", total
);
18250 return decode_mode_spec_buf
;
18255 /* status of process */
18256 obj
= Fget_buffer_process (Fcurrent_buffer ());
18258 return "no process";
18259 #ifdef subprocesses
18260 obj
= Fsymbol_name (Fprocess_status (obj
));
18267 val
= call1 (intern ("file-remote-p"), current_buffer
->directory
);
18274 case 't': /* indicate TEXT or BINARY */
18275 #ifdef MODE_LINE_BINARY_TEXT
18276 return MODE_LINE_BINARY_TEXT (b
);
18282 /* coding-system (not including end-of-line format) */
18284 /* coding-system (including end-of-line type) */
18286 int eol_flag
= (c
== 'Z');
18287 char *p
= decode_mode_spec_buf
;
18289 if (! FRAME_WINDOW_P (f
))
18291 /* No need to mention EOL here--the terminal never needs
18292 to do EOL conversion. */
18293 p
= decode_mode_spec_coding (CODING_ID_NAME
18294 (FRAME_KEYBOARD_CODING (f
)->id
),
18296 p
= decode_mode_spec_coding (CODING_ID_NAME
18297 (FRAME_TERMINAL_CODING (f
)->id
),
18300 p
= decode_mode_spec_coding (b
->buffer_file_coding_system
,
18303 #if 0 /* This proves to be annoying; I think we can do without. -- rms. */
18304 #ifdef subprocesses
18305 obj
= Fget_buffer_process (Fcurrent_buffer ());
18306 if (PROCESSP (obj
))
18308 p
= decode_mode_spec_coding (XPROCESS (obj
)->decode_coding_system
,
18310 p
= decode_mode_spec_coding (XPROCESS (obj
)->encode_coding_system
,
18313 #endif /* subprocesses */
18316 return decode_mode_spec_buf
;
18322 *multibyte
= STRING_MULTIBYTE (obj
);
18323 return (char *) SDATA (obj
);
18330 /* Count up to COUNT lines starting from START / START_BYTE.
18331 But don't go beyond LIMIT_BYTE.
18332 Return the number of lines thus found (always nonnegative).
18334 Set *BYTE_POS_PTR to 1 if we found COUNT lines, 0 if we hit LIMIT. */
18337 display_count_lines (start
, start_byte
, limit_byte
, count
, byte_pos_ptr
)
18338 int start
, start_byte
, limit_byte
, count
;
18341 register unsigned char *cursor
;
18342 unsigned char *base
;
18344 register int ceiling
;
18345 register unsigned char *ceiling_addr
;
18346 int orig_count
= count
;
18348 /* If we are not in selective display mode,
18349 check only for newlines. */
18350 int selective_display
= (!NILP (current_buffer
->selective_display
)
18351 && !INTEGERP (current_buffer
->selective_display
));
18355 while (start_byte
< limit_byte
)
18357 ceiling
= BUFFER_CEILING_OF (start_byte
);
18358 ceiling
= min (limit_byte
- 1, ceiling
);
18359 ceiling_addr
= BYTE_POS_ADDR (ceiling
) + 1;
18360 base
= (cursor
= BYTE_POS_ADDR (start_byte
));
18363 if (selective_display
)
18364 while (*cursor
!= '\n' && *cursor
!= 015 && ++cursor
!= ceiling_addr
)
18367 while (*cursor
!= '\n' && ++cursor
!= ceiling_addr
)
18370 if (cursor
!= ceiling_addr
)
18374 start_byte
+= cursor
- base
+ 1;
18375 *byte_pos_ptr
= start_byte
;
18379 if (++cursor
== ceiling_addr
)
18385 start_byte
+= cursor
- base
;
18390 while (start_byte
> limit_byte
)
18392 ceiling
= BUFFER_FLOOR_OF (start_byte
- 1);
18393 ceiling
= max (limit_byte
, ceiling
);
18394 ceiling_addr
= BYTE_POS_ADDR (ceiling
) - 1;
18395 base
= (cursor
= BYTE_POS_ADDR (start_byte
- 1) + 1);
18398 if (selective_display
)
18399 while (--cursor
!= ceiling_addr
18400 && *cursor
!= '\n' && *cursor
!= 015)
18403 while (--cursor
!= ceiling_addr
&& *cursor
!= '\n')
18406 if (cursor
!= ceiling_addr
)
18410 start_byte
+= cursor
- base
+ 1;
18411 *byte_pos_ptr
= start_byte
;
18412 /* When scanning backwards, we should
18413 not count the newline posterior to which we stop. */
18414 return - orig_count
- 1;
18420 /* Here we add 1 to compensate for the last decrement
18421 of CURSOR, which took it past the valid range. */
18422 start_byte
+= cursor
- base
+ 1;
18426 *byte_pos_ptr
= limit_byte
;
18429 return - orig_count
+ count
;
18430 return orig_count
- count
;
18436 /***********************************************************************
18438 ***********************************************************************/
18440 /* Display a NUL-terminated string, starting with index START.
18442 If STRING is non-null, display that C string. Otherwise, the Lisp
18443 string LISP_STRING is displayed.
18445 If FACE_STRING is not nil, FACE_STRING_POS is a position in
18446 FACE_STRING. Display STRING or LISP_STRING with the face at
18447 FACE_STRING_POS in FACE_STRING:
18449 Display the string in the environment given by IT, but use the
18450 standard display table, temporarily.
18452 FIELD_WIDTH is the minimum number of output glyphs to produce.
18453 If STRING has fewer characters than FIELD_WIDTH, pad to the right
18454 with spaces. If STRING has more characters, more than FIELD_WIDTH
18455 glyphs will be produced. FIELD_WIDTH <= 0 means don't pad.
18457 PRECISION is the maximum number of characters to output from
18458 STRING. PRECISION < 0 means don't truncate the string.
18460 This is roughly equivalent to printf format specifiers:
18462 FIELD_WIDTH PRECISION PRINTF
18463 ----------------------------------------
18469 MULTIBYTE zero means do not display multibyte chars, > 0 means do
18470 display them, and < 0 means obey the current buffer's value of
18471 enable_multibyte_characters.
18473 Value is the number of columns displayed. */
18476 display_string (string
, lisp_string
, face_string
, face_string_pos
,
18477 start
, it
, field_width
, precision
, max_x
, multibyte
)
18478 unsigned char *string
;
18479 Lisp_Object lisp_string
;
18480 Lisp_Object face_string
;
18481 EMACS_INT face_string_pos
;
18484 int field_width
, precision
, max_x
;
18487 int hpos_at_start
= it
->hpos
;
18488 int saved_face_id
= it
->face_id
;
18489 struct glyph_row
*row
= it
->glyph_row
;
18491 /* Initialize the iterator IT for iteration over STRING beginning
18492 with index START. */
18493 reseat_to_string (it
, string
, lisp_string
, start
,
18494 precision
, field_width
, multibyte
);
18496 /* If displaying STRING, set up the face of the iterator
18497 from LISP_STRING, if that's given. */
18498 if (STRINGP (face_string
))
18504 = face_at_string_position (it
->w
, face_string
, face_string_pos
,
18505 0, it
->region_beg_charpos
,
18506 it
->region_end_charpos
,
18507 &endptr
, it
->base_face_id
, 0);
18508 face
= FACE_FROM_ID (it
->f
, it
->face_id
);
18509 it
->face_box_p
= face
->box
!= FACE_NO_BOX
;
18512 /* Set max_x to the maximum allowed X position. Don't let it go
18513 beyond the right edge of the window. */
18515 max_x
= it
->last_visible_x
;
18517 max_x
= min (max_x
, it
->last_visible_x
);
18519 /* Skip over display elements that are not visible. because IT->w is
18521 if (it
->current_x
< it
->first_visible_x
)
18522 move_it_in_display_line_to (it
, 100000, it
->first_visible_x
,
18523 MOVE_TO_POS
| MOVE_TO_X
);
18525 row
->ascent
= it
->max_ascent
;
18526 row
->height
= it
->max_ascent
+ it
->max_descent
;
18527 row
->phys_ascent
= it
->max_phys_ascent
;
18528 row
->phys_height
= it
->max_phys_ascent
+ it
->max_phys_descent
;
18529 row
->extra_line_spacing
= it
->max_extra_line_spacing
;
18531 /* This condition is for the case that we are called with current_x
18532 past last_visible_x. */
18533 while (it
->current_x
< max_x
)
18535 int x_before
, x
, n_glyphs_before
, i
, nglyphs
;
18537 /* Get the next display element. */
18538 if (!get_next_display_element (it
))
18541 /* Produce glyphs. */
18542 x_before
= it
->current_x
;
18543 n_glyphs_before
= it
->glyph_row
->used
[TEXT_AREA
];
18544 PRODUCE_GLYPHS (it
);
18546 nglyphs
= it
->glyph_row
->used
[TEXT_AREA
] - n_glyphs_before
;
18549 while (i
< nglyphs
)
18551 struct glyph
*glyph
= row
->glyphs
[TEXT_AREA
] + n_glyphs_before
+ i
;
18553 if (!it
->truncate_lines_p
18554 && x
+ glyph
->pixel_width
> max_x
)
18556 /* End of continued line or max_x reached. */
18557 if (CHAR_GLYPH_PADDING_P (*glyph
))
18559 /* A wide character is unbreakable. */
18560 it
->glyph_row
->used
[TEXT_AREA
] = n_glyphs_before
;
18561 it
->current_x
= x_before
;
18565 it
->glyph_row
->used
[TEXT_AREA
] = n_glyphs_before
+ i
;
18570 else if (x
+ glyph
->pixel_width
>= it
->first_visible_x
)
18572 /* Glyph is at least partially visible. */
18574 if (x
< it
->first_visible_x
)
18575 it
->glyph_row
->x
= x
- it
->first_visible_x
;
18579 /* Glyph is off the left margin of the display area.
18580 Should not happen. */
18584 row
->ascent
= max (row
->ascent
, it
->max_ascent
);
18585 row
->height
= max (row
->height
, it
->max_ascent
+ it
->max_descent
);
18586 row
->phys_ascent
= max (row
->phys_ascent
, it
->max_phys_ascent
);
18587 row
->phys_height
= max (row
->phys_height
,
18588 it
->max_phys_ascent
+ it
->max_phys_descent
);
18589 row
->extra_line_spacing
= max (row
->extra_line_spacing
,
18590 it
->max_extra_line_spacing
);
18591 x
+= glyph
->pixel_width
;
18595 /* Stop if max_x reached. */
18599 /* Stop at line ends. */
18600 if (ITERATOR_AT_END_OF_LINE_P (it
))
18602 it
->continuation_lines_width
= 0;
18606 set_iterator_to_next (it
, 1);
18608 /* Stop if truncating at the right edge. */
18609 if (it
->truncate_lines_p
18610 && it
->current_x
>= it
->last_visible_x
)
18612 /* Add truncation mark, but don't do it if the line is
18613 truncated at a padding space. */
18614 if (IT_CHARPOS (*it
) < it
->string_nchars
)
18616 if (!FRAME_WINDOW_P (it
->f
))
18620 if (it
->current_x
> it
->last_visible_x
)
18622 for (i
= row
->used
[TEXT_AREA
] - 1; i
> 0; --i
)
18623 if (!CHAR_GLYPH_PADDING_P (row
->glyphs
[TEXT_AREA
][i
]))
18625 for (n
= row
->used
[TEXT_AREA
]; i
< n
; ++i
)
18627 row
->used
[TEXT_AREA
] = i
;
18628 produce_special_glyphs (it
, IT_TRUNCATION
);
18631 produce_special_glyphs (it
, IT_TRUNCATION
);
18633 it
->glyph_row
->truncated_on_right_p
= 1;
18639 /* Maybe insert a truncation at the left. */
18640 if (it
->first_visible_x
18641 && IT_CHARPOS (*it
) > 0)
18643 if (!FRAME_WINDOW_P (it
->f
))
18644 insert_left_trunc_glyphs (it
);
18645 it
->glyph_row
->truncated_on_left_p
= 1;
18648 it
->face_id
= saved_face_id
;
18650 /* Value is number of columns displayed. */
18651 return it
->hpos
- hpos_at_start
;
18656 /* This is like a combination of memq and assq. Return 1/2 if PROPVAL
18657 appears as an element of LIST or as the car of an element of LIST.
18658 If PROPVAL is a list, compare each element against LIST in that
18659 way, and return 1/2 if any element of PROPVAL is found in LIST.
18660 Otherwise return 0. This function cannot quit.
18661 The return value is 2 if the text is invisible but with an ellipsis
18662 and 1 if it's invisible and without an ellipsis. */
18665 invisible_p (propval
, list
)
18666 register Lisp_Object propval
;
18669 register Lisp_Object tail
, proptail
;
18671 for (tail
= list
; CONSP (tail
); tail
= XCDR (tail
))
18673 register Lisp_Object tem
;
18675 if (EQ (propval
, tem
))
18677 if (CONSP (tem
) && EQ (propval
, XCAR (tem
)))
18678 return NILP (XCDR (tem
)) ? 1 : 2;
18681 if (CONSP (propval
))
18683 for (proptail
= propval
; CONSP (proptail
); proptail
= XCDR (proptail
))
18685 Lisp_Object propelt
;
18686 propelt
= XCAR (proptail
);
18687 for (tail
= list
; CONSP (tail
); tail
= XCDR (tail
))
18689 register Lisp_Object tem
;
18691 if (EQ (propelt
, tem
))
18693 if (CONSP (tem
) && EQ (propelt
, XCAR (tem
)))
18694 return NILP (XCDR (tem
)) ? 1 : 2;
18702 DEFUN ("invisible-p", Finvisible_p
, Sinvisible_p
, 1, 1, 0,
18703 doc
: /* Non-nil if the property makes the text invisible.
18704 POS-OR-PROP can be a marker or number, in which case it is taken to be
18705 a position in the current buffer and the value of the `invisible' property
18706 is checked; or it can be some other value, which is then presumed to be the
18707 value of the `invisible' property of the text of interest.
18708 The non-nil value returned can be t for truly invisible text or something
18709 else if the text is replaced by an ellipsis. */)
18711 Lisp_Object pos_or_prop
;
18714 = (NATNUMP (pos_or_prop
) || MARKERP (pos_or_prop
)
18715 ? Fget_char_property (pos_or_prop
, Qinvisible
, Qnil
)
18717 int invis
= TEXT_PROP_MEANS_INVISIBLE (prop
);
18718 return (invis
== 0 ? Qnil
18720 : make_number (invis
));
18723 /* Calculate a width or height in pixels from a specification using
18724 the following elements:
18727 NUM - a (fractional) multiple of the default font width/height
18728 (NUM) - specifies exactly NUM pixels
18729 UNIT - a fixed number of pixels, see below.
18730 ELEMENT - size of a display element in pixels, see below.
18731 (NUM . SPEC) - equals NUM * SPEC
18732 (+ SPEC SPEC ...) - add pixel values
18733 (- SPEC SPEC ...) - subtract pixel values
18734 (- SPEC) - negate pixel value
18737 INT or FLOAT - a number constant
18738 SYMBOL - use symbol's (buffer local) variable binding.
18741 in - pixels per inch *)
18742 mm - pixels per 1/1000 meter *)
18743 cm - pixels per 1/100 meter *)
18744 width - width of current font in pixels.
18745 height - height of current font in pixels.
18747 *) using the ratio(s) defined in display-pixels-per-inch.
18751 left-fringe - left fringe width in pixels
18752 right-fringe - right fringe width in pixels
18754 left-margin - left margin width in pixels
18755 right-margin - right margin width in pixels
18757 scroll-bar - scroll-bar area width in pixels
18761 Pixels corresponding to 5 inches:
18764 Total width of non-text areas on left side of window (if scroll-bar is on left):
18765 '(space :width (+ left-fringe left-margin scroll-bar))
18767 Align to first text column (in header line):
18768 '(space :align-to 0)
18770 Align to middle of text area minus half the width of variable `my-image'
18771 containing a loaded image:
18772 '(space :align-to (0.5 . (- text my-image)))
18774 Width of left margin minus width of 1 character in the default font:
18775 '(space :width (- left-margin 1))
18777 Width of left margin minus width of 2 characters in the current font:
18778 '(space :width (- left-margin (2 . width)))
18780 Center 1 character over left-margin (in header line):
18781 '(space :align-to (+ left-margin (0.5 . left-margin) -0.5))
18783 Different ways to express width of left fringe plus left margin minus one pixel:
18784 '(space :width (- (+ left-fringe left-margin) (1)))
18785 '(space :width (+ left-fringe left-margin (- (1))))
18786 '(space :width (+ left-fringe left-margin (-1)))
18790 #define NUMVAL(X) \
18791 ((INTEGERP (X) || FLOATP (X)) \
18796 calc_pixel_width_or_height (res
, it
, prop
, font
, width_p
, align_to
)
18801 int width_p
, *align_to
;
18805 #define OK_PIXELS(val) ((*res = (double)(val)), 1)
18806 #define OK_ALIGN_TO(val) ((*align_to = (int)(val)), 1)
18809 return OK_PIXELS (0);
18811 xassert (FRAME_LIVE_P (it
->f
));
18813 if (SYMBOLP (prop
))
18815 if (SCHARS (SYMBOL_NAME (prop
)) == 2)
18817 char *unit
= SDATA (SYMBOL_NAME (prop
));
18819 if (unit
[0] == 'i' && unit
[1] == 'n')
18821 else if (unit
[0] == 'm' && unit
[1] == 'm')
18823 else if (unit
[0] == 'c' && unit
[1] == 'm')
18830 #ifdef HAVE_WINDOW_SYSTEM
18831 if (FRAME_WINDOW_P (it
->f
)
18833 ? FRAME_X_DISPLAY_INFO (it
->f
)->resx
18834 : FRAME_X_DISPLAY_INFO (it
->f
)->resy
),
18836 return OK_PIXELS (ppi
/ pixels
);
18839 if ((ppi
= NUMVAL (Vdisplay_pixels_per_inch
), ppi
> 0)
18840 || (CONSP (Vdisplay_pixels_per_inch
)
18842 ? NUMVAL (XCAR (Vdisplay_pixels_per_inch
))
18843 : NUMVAL (XCDR (Vdisplay_pixels_per_inch
))),
18845 return OK_PIXELS (ppi
/ pixels
);
18851 #ifdef HAVE_WINDOW_SYSTEM
18852 if (EQ (prop
, Qheight
))
18853 return OK_PIXELS (font
? FONT_HEIGHT ((XFontStruct
*)font
) : FRAME_LINE_HEIGHT (it
->f
));
18854 if (EQ (prop
, Qwidth
))
18855 return OK_PIXELS (font
? FONT_WIDTH ((XFontStruct
*)font
) : FRAME_COLUMN_WIDTH (it
->f
));
18857 if (EQ (prop
, Qheight
) || EQ (prop
, Qwidth
))
18858 return OK_PIXELS (1);
18861 if (EQ (prop
, Qtext
))
18862 return OK_PIXELS (width_p
18863 ? window_box_width (it
->w
, TEXT_AREA
)
18864 : WINDOW_BOX_HEIGHT_NO_MODE_LINE (it
->w
));
18866 if (align_to
&& *align_to
< 0)
18869 if (EQ (prop
, Qleft
))
18870 return OK_ALIGN_TO (window_box_left_offset (it
->w
, TEXT_AREA
));
18871 if (EQ (prop
, Qright
))
18872 return OK_ALIGN_TO (window_box_right_offset (it
->w
, TEXT_AREA
));
18873 if (EQ (prop
, Qcenter
))
18874 return OK_ALIGN_TO (window_box_left_offset (it
->w
, TEXT_AREA
)
18875 + window_box_width (it
->w
, TEXT_AREA
) / 2);
18876 if (EQ (prop
, Qleft_fringe
))
18877 return OK_ALIGN_TO (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it
->w
)
18878 ? WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (it
->w
)
18879 : window_box_right_offset (it
->w
, LEFT_MARGIN_AREA
));
18880 if (EQ (prop
, Qright_fringe
))
18881 return OK_ALIGN_TO (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it
->w
)
18882 ? window_box_right_offset (it
->w
, RIGHT_MARGIN_AREA
)
18883 : window_box_right_offset (it
->w
, TEXT_AREA
));
18884 if (EQ (prop
, Qleft_margin
))
18885 return OK_ALIGN_TO (window_box_left_offset (it
->w
, LEFT_MARGIN_AREA
));
18886 if (EQ (prop
, Qright_margin
))
18887 return OK_ALIGN_TO (window_box_left_offset (it
->w
, RIGHT_MARGIN_AREA
));
18888 if (EQ (prop
, Qscroll_bar
))
18889 return OK_ALIGN_TO (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (it
->w
)
18891 : (window_box_right_offset (it
->w
, RIGHT_MARGIN_AREA
)
18892 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it
->w
)
18893 ? WINDOW_RIGHT_FRINGE_WIDTH (it
->w
)
18898 if (EQ (prop
, Qleft_fringe
))
18899 return OK_PIXELS (WINDOW_LEFT_FRINGE_WIDTH (it
->w
));
18900 if (EQ (prop
, Qright_fringe
))
18901 return OK_PIXELS (WINDOW_RIGHT_FRINGE_WIDTH (it
->w
));
18902 if (EQ (prop
, Qleft_margin
))
18903 return OK_PIXELS (WINDOW_LEFT_MARGIN_WIDTH (it
->w
));
18904 if (EQ (prop
, Qright_margin
))
18905 return OK_PIXELS (WINDOW_RIGHT_MARGIN_WIDTH (it
->w
));
18906 if (EQ (prop
, Qscroll_bar
))
18907 return OK_PIXELS (WINDOW_SCROLL_BAR_AREA_WIDTH (it
->w
));
18910 prop
= Fbuffer_local_value (prop
, it
->w
->buffer
);
18913 if (INTEGERP (prop
) || FLOATP (prop
))
18915 int base_unit
= (width_p
18916 ? FRAME_COLUMN_WIDTH (it
->f
)
18917 : FRAME_LINE_HEIGHT (it
->f
));
18918 return OK_PIXELS (XFLOATINT (prop
) * base_unit
);
18923 Lisp_Object car
= XCAR (prop
);
18924 Lisp_Object cdr
= XCDR (prop
);
18928 #ifdef HAVE_WINDOW_SYSTEM
18929 if (FRAME_WINDOW_P (it
->f
)
18930 && valid_image_p (prop
))
18932 int id
= lookup_image (it
->f
, prop
);
18933 struct image
*img
= IMAGE_FROM_ID (it
->f
, id
);
18935 return OK_PIXELS (width_p
? img
->width
: img
->height
);
18938 if (EQ (car
, Qplus
) || EQ (car
, Qminus
))
18944 while (CONSP (cdr
))
18946 if (!calc_pixel_width_or_height (&px
, it
, XCAR (cdr
),
18947 font
, width_p
, align_to
))
18950 pixels
= (EQ (car
, Qplus
) ? px
: -px
), first
= 0;
18955 if (EQ (car
, Qminus
))
18957 return OK_PIXELS (pixels
);
18960 car
= Fbuffer_local_value (car
, it
->w
->buffer
);
18963 if (INTEGERP (car
) || FLOATP (car
))
18966 pixels
= XFLOATINT (car
);
18968 return OK_PIXELS (pixels
);
18969 if (calc_pixel_width_or_height (&fact
, it
, cdr
,
18970 font
, width_p
, align_to
))
18971 return OK_PIXELS (pixels
* fact
);
18982 /***********************************************************************
18984 ***********************************************************************/
18986 #ifdef HAVE_WINDOW_SYSTEM
18991 dump_glyph_string (s
)
18992 struct glyph_string
*s
;
18994 fprintf (stderr
, "glyph string\n");
18995 fprintf (stderr
, " x, y, w, h = %d, %d, %d, %d\n",
18996 s
->x
, s
->y
, s
->width
, s
->height
);
18997 fprintf (stderr
, " ybase = %d\n", s
->ybase
);
18998 fprintf (stderr
, " hl = %d\n", s
->hl
);
18999 fprintf (stderr
, " left overhang = %d, right = %d\n",
19000 s
->left_overhang
, s
->right_overhang
);
19001 fprintf (stderr
, " nchars = %d\n", s
->nchars
);
19002 fprintf (stderr
, " extends to end of line = %d\n",
19003 s
->extends_to_end_of_line_p
);
19004 fprintf (stderr
, " font height = %d\n", FONT_HEIGHT (s
->font
));
19005 fprintf (stderr
, " bg width = %d\n", s
->background_width
);
19008 #endif /* GLYPH_DEBUG */
19010 /* Initialize glyph string S. CHAR2B is a suitably allocated vector
19011 of XChar2b structures for S; it can't be allocated in
19012 init_glyph_string because it must be allocated via `alloca'. W
19013 is the window on which S is drawn. ROW and AREA are the glyph row
19014 and area within the row from which S is constructed. START is the
19015 index of the first glyph structure covered by S. HL is a
19016 face-override for drawing S. */
19019 #define OPTIONAL_HDC(hdc) hdc,
19020 #define DECLARE_HDC(hdc) HDC hdc;
19021 #define ALLOCATE_HDC(hdc, f) hdc = get_frame_dc ((f))
19022 #define RELEASE_HDC(hdc, f) release_frame_dc ((f), (hdc))
19025 #ifndef OPTIONAL_HDC
19026 #define OPTIONAL_HDC(hdc)
19027 #define DECLARE_HDC(hdc)
19028 #define ALLOCATE_HDC(hdc, f)
19029 #define RELEASE_HDC(hdc, f)
19033 init_glyph_string (s
, OPTIONAL_HDC (hdc
) char2b
, w
, row
, area
, start
, hl
)
19034 struct glyph_string
*s
;
19038 struct glyph_row
*row
;
19039 enum glyph_row_area area
;
19041 enum draw_glyphs_face hl
;
19043 bzero (s
, sizeof *s
);
19045 s
->f
= XFRAME (w
->frame
);
19049 s
->display
= FRAME_X_DISPLAY (s
->f
);
19050 s
->window
= FRAME_X_WINDOW (s
->f
);
19051 s
->char2b
= char2b
;
19055 s
->first_glyph
= row
->glyphs
[area
] + start
;
19056 s
->height
= row
->height
;
19057 s
->y
= WINDOW_TO_FRAME_PIXEL_Y (w
, row
->y
);
19059 /* Display the internal border below the tool-bar window. */
19060 if (WINDOWP (s
->f
->tool_bar_window
)
19061 && s
->w
== XWINDOW (s
->f
->tool_bar_window
))
19062 s
->y
-= FRAME_INTERNAL_BORDER_WIDTH (s
->f
);
19064 s
->ybase
= s
->y
+ row
->ascent
;
19068 /* Append the list of glyph strings with head H and tail T to the list
19069 with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the result. */
19072 append_glyph_string_lists (head
, tail
, h
, t
)
19073 struct glyph_string
**head
, **tail
;
19074 struct glyph_string
*h
, *t
;
19088 /* Prepend the list of glyph strings with head H and tail T to the
19089 list with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the
19093 prepend_glyph_string_lists (head
, tail
, h
, t
)
19094 struct glyph_string
**head
, **tail
;
19095 struct glyph_string
*h
, *t
;
19109 /* Append glyph string S to the list with head *HEAD and tail *TAIL.
19110 Set *HEAD and *TAIL to the resulting list. */
19113 append_glyph_string (head
, tail
, s
)
19114 struct glyph_string
**head
, **tail
;
19115 struct glyph_string
*s
;
19117 s
->next
= s
->prev
= NULL
;
19118 append_glyph_string_lists (head
, tail
, s
, s
);
19122 /* Get face and two-byte form of character C in face FACE_ID on frame
19123 F. The encoding of C is returned in *CHAR2B. MULTIBYTE_P non-zero
19124 means we want to display multibyte text. DISPLAY_P non-zero means
19125 make sure that X resources for the face returned are allocated.
19126 Value is a pointer to a realized face that is ready for display if
19127 DISPLAY_P is non-zero. */
19129 static INLINE
struct face
*
19130 get_char_face_and_encoding (f
, c
, face_id
, char2b
, multibyte_p
, display_p
)
19134 int multibyte_p
, display_p
;
19136 struct face
*face
= FACE_FROM_ID (f
, face_id
);
19138 #ifdef USE_FONT_BACKEND
19139 if (enable_font_backend
)
19141 struct font
*font
= (struct font
*) face
->font_info
;
19145 unsigned code
= font
->driver
->encode_char (font
, c
);
19147 if (code
!= FONT_INVALID_CODE
)
19148 STORE_XCHAR2B (char2b
, (code
>> 8), (code
& 0xFF));
19150 STORE_XCHAR2B (char2b
, 0, 0);
19154 #endif /* USE_FONT_BACKEND */
19157 /* Unibyte case. We don't have to encode, but we have to make
19158 sure to use a face suitable for unibyte. */
19159 STORE_XCHAR2B (char2b
, 0, c
);
19160 face_id
= FACE_FOR_CHAR (f
, face
, c
, -1, Qnil
);
19161 face
= FACE_FROM_ID (f
, face_id
);
19165 /* Case of ASCII in a face known to fit ASCII. */
19166 STORE_XCHAR2B (char2b
, 0, c
);
19168 else if (face
->font
!= NULL
)
19170 struct font_info
*font_info
19171 = FONT_INFO_FROM_ID (f
, face
->font_info_id
);
19172 struct charset
*charset
= CHARSET_FROM_ID (font_info
->charset
);
19173 unsigned code
= ENCODE_CHAR (charset
, c
);
19175 if (CHARSET_DIMENSION (charset
) == 1)
19176 STORE_XCHAR2B (char2b
, 0, code
);
19178 STORE_XCHAR2B (char2b
, (code
>> 8), (code
& 0xFF));
19179 /* Maybe encode the character in *CHAR2B. */
19180 FRAME_RIF (f
)->encode_char (c
, char2b
, font_info
, charset
, NULL
);
19183 /* Make sure X resources of the face are allocated. */
19184 #ifdef HAVE_X_WINDOWS
19188 xassert (face
!= NULL
);
19189 PREPARE_FACE_FOR_DISPLAY (f
, face
);
19196 /* Get face and two-byte form of character glyph GLYPH on frame F.
19197 The encoding of GLYPH->u.ch is returned in *CHAR2B. Value is
19198 a pointer to a realized face that is ready for display. */
19200 static INLINE
struct face
*
19201 get_glyph_face_and_encoding (f
, glyph
, char2b
, two_byte_p
)
19203 struct glyph
*glyph
;
19209 xassert (glyph
->type
== CHAR_GLYPH
);
19210 face
= FACE_FROM_ID (f
, glyph
->face_id
);
19215 #ifdef USE_FONT_BACKEND
19216 if (enable_font_backend
)
19218 struct font
*font
= (struct font
*) face
->font_info
;
19222 unsigned code
= font
->driver
->encode_char (font
, glyph
->u
.ch
);
19224 if (code
!= FONT_INVALID_CODE
)
19225 STORE_XCHAR2B (char2b
, (code
>> 8), (code
& 0xFF));
19227 STORE_XCHAR2B (char2b
, 0, code
);
19231 #endif /* USE_FONT_BACKEND */
19232 if (!glyph
->multibyte_p
)
19234 /* Unibyte case. We don't have to encode, but we have to make
19235 sure to use a face suitable for unibyte. */
19236 STORE_XCHAR2B (char2b
, 0, glyph
->u
.ch
);
19238 else if (glyph
->u
.ch
< 128)
19240 /* Case of ASCII in a face known to fit ASCII. */
19241 STORE_XCHAR2B (char2b
, 0, glyph
->u
.ch
);
19245 struct font_info
*font_info
19246 = FONT_INFO_FROM_ID (f
, face
->font_info_id
);
19249 struct charset
*charset
= CHARSET_FROM_ID (font_info
->charset
);
19250 unsigned code
= ENCODE_CHAR (charset
, glyph
->u
.ch
);
19252 if (CHARSET_DIMENSION (charset
) == 1)
19253 STORE_XCHAR2B (char2b
, 0, code
);
19255 STORE_XCHAR2B (char2b
, (code
>> 8), (code
& 0xFF));
19257 /* Maybe encode the character in *CHAR2B. */
19258 if (CHARSET_ID (charset
) != charset_ascii
)
19261 = FRAME_RIF (f
)->encode_char (glyph
->u
.ch
, char2b
, font_info
,
19262 charset
, two_byte_p
);
19267 /* Make sure X resources of the face are allocated. */
19268 xassert (face
!= NULL
);
19269 PREPARE_FACE_FOR_DISPLAY (f
, face
);
19274 /* Fill glyph string S with composition components specified by S->cmp.
19276 BASE_FACE is the base face of the composition.
19277 S->gidx is the index of the first component for S.
19279 OVERLAPS non-zero means S should draw the foreground only, and use
19280 its physical height for clipping. See also draw_glyphs.
19282 Value is the index of a component not in S. */
19285 fill_composite_glyph_string (s
, base_face
, overlaps
)
19286 struct glyph_string
*s
;
19287 struct face
*base_face
;
19294 s
->for_overlaps
= overlaps
;
19296 #ifdef USE_FONT_BACKEND
19297 if (enable_font_backend
&& s
->cmp
->method
== COMPOSITION_WITH_GLYPH_STRING
)
19299 Lisp_Object gstring
19300 = AREF (XHASH_TABLE (composition_hash_table
)->key_and_value
,
19301 s
->cmp
->hash_index
* 2);
19303 s
->face
= base_face
;
19304 s
->font_info
= base_face
->font_info
;
19305 s
->font
= s
->font_info
->font
;
19306 for (i
= 0, s
->nchars
= 0; i
< s
->cmp
->glyph_len
; i
++, s
->nchars
++)
19308 Lisp_Object g
= LGSTRING_GLYPH (gstring
, i
);
19310 XChar2b
* store_pos
;
19313 code
= LGLYPH_CODE (g
);
19314 store_pos
= s
->char2b
+ i
;
19315 STORE_XCHAR2B (store_pos
, code
>> 8, code
& 0xFF);
19317 s
->width
= s
->cmp
->pixel_width
;
19320 #endif /* USE_FONT_BACKEND */
19322 /* For all glyphs of this composition, starting at the offset
19323 S->gidx, until we reach the end of the definition or encounter a
19324 glyph that requires the different face, add it to S. */
19329 s
->font_info
= NULL
;
19330 for (i
= s
->gidx
; i
< s
->cmp
->glyph_len
; i
++)
19332 int c
= COMPOSITION_GLYPH (s
->cmp
, i
);
19336 int face_id
= FACE_FOR_CHAR (s
->f
, base_face
->ascii_face
, c
,
19339 face
= get_char_face_and_encoding (s
->f
, c
, face_id
,
19340 s
->char2b
+ i
, 1, 1);
19346 s
->font
= s
->face
->font
;
19347 s
->font_info
= FONT_INFO_FROM_FACE (s
->f
, s
->face
);
19349 else if (s
->face
!= face
)
19356 /* All glyph strings for the same composition has the same width,
19357 i.e. the width set for the first component of the composition. */
19358 s
->width
= s
->first_glyph
->pixel_width
;
19361 /* If the specified font could not be loaded, use the frame's
19362 default font, but record the fact that we couldn't load it in
19363 the glyph string so that we can draw rectangles for the
19364 characters of the glyph string. */
19365 if (s
->font
== NULL
)
19367 s
->font_not_found_p
= 1;
19368 s
->font
= FRAME_FONT (s
->f
);
19371 /* Adjust base line for subscript/superscript text. */
19372 s
->ybase
+= s
->first_glyph
->voffset
;
19374 /* This glyph string must always be drawn with 16-bit functions. */
19377 return s
->gidx
+ s
->nchars
;
19381 /* Fill glyph string S from a sequence of character glyphs.
19383 FACE_ID is the face id of the string. START is the index of the
19384 first glyph to consider, END is the index of the last + 1.
19385 OVERLAPS non-zero means S should draw the foreground only, and use
19386 its physical height for clipping. See also draw_glyphs.
19388 Value is the index of the first glyph not in S. */
19391 fill_glyph_string (s
, face_id
, start
, end
, overlaps
)
19392 struct glyph_string
*s
;
19394 int start
, end
, overlaps
;
19396 struct glyph
*glyph
, *last
;
19398 int glyph_not_available_p
;
19400 xassert (s
->f
== XFRAME (s
->w
->frame
));
19401 xassert (s
->nchars
== 0);
19402 xassert (start
>= 0 && end
> start
);
19404 s
->for_overlaps
= overlaps
,
19405 glyph
= s
->row
->glyphs
[s
->area
] + start
;
19406 last
= s
->row
->glyphs
[s
->area
] + end
;
19407 voffset
= glyph
->voffset
;
19408 s
->padding_p
= glyph
->padding_p
;
19409 glyph_not_available_p
= glyph
->glyph_not_available_p
;
19411 while (glyph
< last
19412 && glyph
->type
== CHAR_GLYPH
19413 && glyph
->voffset
== voffset
19414 /* Same face id implies same font, nowadays. */
19415 && glyph
->face_id
== face_id
19416 && glyph
->glyph_not_available_p
== glyph_not_available_p
)
19420 s
->face
= get_glyph_face_and_encoding (s
->f
, glyph
,
19421 s
->char2b
+ s
->nchars
,
19423 s
->two_byte_p
= two_byte_p
;
19425 xassert (s
->nchars
<= end
- start
);
19426 s
->width
+= glyph
->pixel_width
;
19427 if (glyph
++->padding_p
!= s
->padding_p
)
19431 s
->font
= s
->face
->font
;
19432 s
->font_info
= FONT_INFO_FROM_FACE (s
->f
, s
->face
);
19434 /* If the specified font could not be loaded, use the frame's font,
19435 but record the fact that we couldn't load it in
19436 S->font_not_found_p so that we can draw rectangles for the
19437 characters of the glyph string. */
19438 if (s
->font
== NULL
|| glyph_not_available_p
)
19440 s
->font_not_found_p
= 1;
19441 s
->font
= FRAME_FONT (s
->f
);
19444 /* Adjust base line for subscript/superscript text. */
19445 s
->ybase
+= voffset
;
19447 xassert (s
->face
&& s
->face
->gc
);
19448 return glyph
- s
->row
->glyphs
[s
->area
];
19452 /* Fill glyph string S from image glyph S->first_glyph. */
19455 fill_image_glyph_string (s
)
19456 struct glyph_string
*s
;
19458 xassert (s
->first_glyph
->type
== IMAGE_GLYPH
);
19459 s
->img
= IMAGE_FROM_ID (s
->f
, s
->first_glyph
->u
.img_id
);
19461 s
->slice
= s
->first_glyph
->slice
;
19462 s
->face
= FACE_FROM_ID (s
->f
, s
->first_glyph
->face_id
);
19463 s
->font
= s
->face
->font
;
19464 s
->width
= s
->first_glyph
->pixel_width
;
19466 /* Adjust base line for subscript/superscript text. */
19467 s
->ybase
+= s
->first_glyph
->voffset
;
19471 /* Fill glyph string S from a sequence of stretch glyphs.
19473 ROW is the glyph row in which the glyphs are found, AREA is the
19474 area within the row. START is the index of the first glyph to
19475 consider, END is the index of the last + 1.
19477 Value is the index of the first glyph not in S. */
19480 fill_stretch_glyph_string (s
, row
, area
, start
, end
)
19481 struct glyph_string
*s
;
19482 struct glyph_row
*row
;
19483 enum glyph_row_area area
;
19486 struct glyph
*glyph
, *last
;
19487 int voffset
, face_id
;
19489 xassert (s
->first_glyph
->type
== STRETCH_GLYPH
);
19491 glyph
= s
->row
->glyphs
[s
->area
] + start
;
19492 last
= s
->row
->glyphs
[s
->area
] + end
;
19493 face_id
= glyph
->face_id
;
19494 s
->face
= FACE_FROM_ID (s
->f
, face_id
);
19495 s
->font
= s
->face
->font
;
19496 s
->font_info
= FONT_INFO_FROM_FACE (s
->f
, s
->face
);
19497 s
->width
= glyph
->pixel_width
;
19499 voffset
= glyph
->voffset
;
19503 && glyph
->type
== STRETCH_GLYPH
19504 && glyph
->voffset
== voffset
19505 && glyph
->face_id
== face_id
);
19507 s
->width
+= glyph
->pixel_width
;
19509 /* Adjust base line for subscript/superscript text. */
19510 s
->ybase
+= voffset
;
19512 /* The case that face->gc == 0 is handled when drawing the glyph
19513 string by calling PREPARE_FACE_FOR_DISPLAY. */
19515 return glyph
- s
->row
->glyphs
[s
->area
];
19518 static XCharStruct
*
19519 get_per_char_metric (f
, font
, font_info
, char2b
, font_type
)
19522 struct font_info
*font_info
;
19526 #ifdef USE_FONT_BACKEND
19527 if (enable_font_backend
)
19529 static XCharStruct pcm_value
;
19530 unsigned code
= (XCHAR2B_BYTE1 (char2b
) << 8) | XCHAR2B_BYTE2 (char2b
);
19531 struct font
*fontp
;
19532 struct font_metrics metrics
;
19534 if (! font_info
|| code
== FONT_INVALID_CODE
)
19536 fontp
= (struct font
*) font_info
;
19537 fontp
->driver
->text_extents (fontp
, &code
, 1, &metrics
);
19538 pcm_value
.lbearing
= metrics
.lbearing
;
19539 pcm_value
.rbearing
= metrics
.rbearing
;
19540 pcm_value
.ascent
= metrics
.ascent
;
19541 pcm_value
.descent
= metrics
.descent
;
19542 pcm_value
.width
= metrics
.width
;
19545 #endif /* USE_FONT_BACKEND */
19546 return FRAME_RIF (f
)->per_char_metric (font
, char2b
, font_type
);
19550 Set *LEFT and *RIGHT to the left and right overhang of GLYPH on
19551 frame F. Overhangs of glyphs other than type CHAR_GLYPH are
19552 assumed to be zero. */
19555 x_get_glyph_overhangs (glyph
, f
, left
, right
)
19556 struct glyph
*glyph
;
19560 *left
= *right
= 0;
19562 if (glyph
->type
== CHAR_GLYPH
)
19566 struct font_info
*font_info
;
19570 face
= get_glyph_face_and_encoding (f
, glyph
, &char2b
, NULL
);
19572 font_info
= FONT_INFO_FROM_FACE (f
, face
);
19573 if (font
/* ++KFS: Should this be font_info ? */
19574 && (pcm
= get_per_char_metric (f
, font
, font_info
, &char2b
, glyph
->font_type
)))
19576 if (pcm
->rbearing
> pcm
->width
)
19577 *right
= pcm
->rbearing
- pcm
->width
;
19578 if (pcm
->lbearing
< 0)
19579 *left
= -pcm
->lbearing
;
19582 else if (glyph
->type
== COMPOSITE_GLYPH
)
19584 struct composition
*cmp
= composition_table
[glyph
->u
.cmp_id
];
19586 *right
= cmp
->rbearing
- cmp
->pixel_width
;
19587 *left
= - cmp
->lbearing
;
19592 /* Return the index of the first glyph preceding glyph string S that
19593 is overwritten by S because of S's left overhang. Value is -1
19594 if no glyphs are overwritten. */
19597 left_overwritten (s
)
19598 struct glyph_string
*s
;
19602 if (s
->left_overhang
)
19605 struct glyph
*glyphs
= s
->row
->glyphs
[s
->area
];
19606 int first
= s
->first_glyph
- glyphs
;
19608 for (i
= first
- 1; i
>= 0 && x
> -s
->left_overhang
; --i
)
19609 x
-= glyphs
[i
].pixel_width
;
19620 /* Return the index of the first glyph preceding glyph string S that
19621 is overwriting S because of its right overhang. Value is -1 if no
19622 glyph in front of S overwrites S. */
19625 left_overwriting (s
)
19626 struct glyph_string
*s
;
19629 struct glyph
*glyphs
= s
->row
->glyphs
[s
->area
];
19630 int first
= s
->first_glyph
- glyphs
;
19634 for (i
= first
- 1; i
>= 0; --i
)
19637 x_get_glyph_overhangs (glyphs
+ i
, s
->f
, &left
, &right
);
19640 x
-= glyphs
[i
].pixel_width
;
19647 /* Return the index of the last glyph following glyph string S that is
19648 not overwritten by S because of S's right overhang. Value is -1 if
19649 no such glyph is found. */
19652 right_overwritten (s
)
19653 struct glyph_string
*s
;
19657 if (s
->right_overhang
)
19660 struct glyph
*glyphs
= s
->row
->glyphs
[s
->area
];
19661 int first
= (s
->first_glyph
- glyphs
) + (s
->cmp
? 1 : s
->nchars
);
19662 int end
= s
->row
->used
[s
->area
];
19664 for (i
= first
; i
< end
&& s
->right_overhang
> x
; ++i
)
19665 x
+= glyphs
[i
].pixel_width
;
19674 /* Return the index of the last glyph following glyph string S that
19675 overwrites S because of its left overhang. Value is negative
19676 if no such glyph is found. */
19679 right_overwriting (s
)
19680 struct glyph_string
*s
;
19683 int end
= s
->row
->used
[s
->area
];
19684 struct glyph
*glyphs
= s
->row
->glyphs
[s
->area
];
19685 int first
= (s
->first_glyph
- glyphs
) + (s
->cmp
? 1 : s
->nchars
);
19689 for (i
= first
; i
< end
; ++i
)
19692 x_get_glyph_overhangs (glyphs
+ i
, s
->f
, &left
, &right
);
19695 x
+= glyphs
[i
].pixel_width
;
19702 /* Set background width of glyph string S. START is the index of the
19703 first glyph following S. LAST_X is the right-most x-position + 1
19704 in the drawing area. */
19707 set_glyph_string_background_width (s
, start
, last_x
)
19708 struct glyph_string
*s
;
19712 /* If the face of this glyph string has to be drawn to the end of
19713 the drawing area, set S->extends_to_end_of_line_p. */
19715 if (start
== s
->row
->used
[s
->area
]
19716 && s
->area
== TEXT_AREA
19717 && ((s
->row
->fill_line_p
19718 && (s
->hl
== DRAW_NORMAL_TEXT
19719 || s
->hl
== DRAW_IMAGE_RAISED
19720 || s
->hl
== DRAW_IMAGE_SUNKEN
))
19721 || s
->hl
== DRAW_MOUSE_FACE
))
19722 s
->extends_to_end_of_line_p
= 1;
19724 /* If S extends its face to the end of the line, set its
19725 background_width to the distance to the right edge of the drawing
19727 if (s
->extends_to_end_of_line_p
)
19728 s
->background_width
= last_x
- s
->x
+ 1;
19730 s
->background_width
= s
->width
;
19734 /* Compute overhangs and x-positions for glyph string S and its
19735 predecessors, or successors. X is the starting x-position for S.
19736 BACKWARD_P non-zero means process predecessors. */
19739 compute_overhangs_and_x (s
, x
, backward_p
)
19740 struct glyph_string
*s
;
19748 if (FRAME_RIF (s
->f
)->compute_glyph_string_overhangs
)
19749 FRAME_RIF (s
->f
)->compute_glyph_string_overhangs (s
);
19759 if (FRAME_RIF (s
->f
)->compute_glyph_string_overhangs
)
19760 FRAME_RIF (s
->f
)->compute_glyph_string_overhangs (s
);
19770 /* The following macros are only called from draw_glyphs below.
19771 They reference the following parameters of that function directly:
19772 `w', `row', `area', and `overlap_p'
19773 as well as the following local variables:
19774 `s', `f', and `hdc' (in W32) */
19777 /* On W32, silently add local `hdc' variable to argument list of
19778 init_glyph_string. */
19779 #define INIT_GLYPH_STRING(s, char2b, w, row, area, start, hl) \
19780 init_glyph_string (s, hdc, char2b, w, row, area, start, hl)
19782 #define INIT_GLYPH_STRING(s, char2b, w, row, area, start, hl) \
19783 init_glyph_string (s, char2b, w, row, area, start, hl)
19786 /* Add a glyph string for a stretch glyph to the list of strings
19787 between HEAD and TAIL. START is the index of the stretch glyph in
19788 row area AREA of glyph row ROW. END is the index of the last glyph
19789 in that glyph row area. X is the current output position assigned
19790 to the new glyph string constructed. HL overrides that face of the
19791 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
19792 is the right-most x-position of the drawing area. */
19794 /* SunOS 4 bundled cc, barfed on continuations in the arg lists here
19795 and below -- keep them on one line. */
19796 #define BUILD_STRETCH_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
19799 s = (struct glyph_string *) alloca (sizeof *s); \
19800 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
19801 START = fill_stretch_glyph_string (s, row, area, START, END); \
19802 append_glyph_string (&HEAD, &TAIL, s); \
19808 /* Add a glyph string for an image glyph to the list of strings
19809 between HEAD and TAIL. START is the index of the image glyph in
19810 row area AREA of glyph row ROW. END is the index of the last glyph
19811 in that glyph row area. X is the current output position assigned
19812 to the new glyph string constructed. HL overrides that face of the
19813 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
19814 is the right-most x-position of the drawing area. */
19816 #define BUILD_IMAGE_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
19819 s = (struct glyph_string *) alloca (sizeof *s); \
19820 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
19821 fill_image_glyph_string (s); \
19822 append_glyph_string (&HEAD, &TAIL, s); \
19829 /* Add a glyph string for a sequence of character glyphs to the list
19830 of strings between HEAD and TAIL. START is the index of the first
19831 glyph in row area AREA of glyph row ROW that is part of the new
19832 glyph string. END is the index of the last glyph in that glyph row
19833 area. X is the current output position assigned to the new glyph
19834 string constructed. HL overrides that face of the glyph; e.g. it
19835 is DRAW_CURSOR if a cursor has to be drawn. LAST_X is the
19836 right-most x-position of the drawing area. */
19838 #define BUILD_CHAR_GLYPH_STRINGS(START, END, HEAD, TAIL, HL, X, LAST_X) \
19844 face_id = (row)->glyphs[area][START].face_id; \
19846 s = (struct glyph_string *) alloca (sizeof *s); \
19847 char2b = (XChar2b *) alloca ((END - START) * sizeof *char2b); \
19848 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
19849 append_glyph_string (&HEAD, &TAIL, s); \
19851 START = fill_glyph_string (s, face_id, START, END, overlaps); \
19856 /* Add a glyph string for a composite sequence to the list of strings
19857 between HEAD and TAIL. START is the index of the first glyph in
19858 row area AREA of glyph row ROW that is part of the new glyph
19859 string. END is the index of the last glyph in that glyph row area.
19860 X is the current output position assigned to the new glyph string
19861 constructed. HL overrides that face of the glyph; e.g. it is
19862 DRAW_CURSOR if a cursor has to be drawn. LAST_X is the right-most
19863 x-position of the drawing area. */
19865 #define BUILD_COMPOSITE_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
19867 int face_id = (row)->glyphs[area][START].face_id; \
19868 struct face *base_face = FACE_FROM_ID (f, face_id); \
19869 int cmp_id = (row)->glyphs[area][START].u.cmp_id; \
19870 struct composition *cmp = composition_table[cmp_id]; \
19872 struct glyph_string *first_s; \
19875 char2b = (XChar2b *) alloca ((sizeof *char2b) * cmp->glyph_len); \
19877 /* Make glyph_strings for each glyph sequence that is drawable by \
19878 the same face, and append them to HEAD/TAIL. */ \
19879 for (n = 0; n < cmp->glyph_len;) \
19881 s = (struct glyph_string *) alloca (sizeof *s); \
19882 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
19883 append_glyph_string (&(HEAD), &(TAIL), s); \
19889 n = fill_composite_glyph_string (s, base_face, overlaps); \
19897 /* Build a list of glyph strings between HEAD and TAIL for the glyphs
19898 of AREA of glyph row ROW on window W between indices START and END.
19899 HL overrides the face for drawing glyph strings, e.g. it is
19900 DRAW_CURSOR to draw a cursor. X and LAST_X are start and end
19901 x-positions of the drawing area.
19903 This is an ugly monster macro construct because we must use alloca
19904 to allocate glyph strings (because draw_glyphs can be called
19905 asynchronously). */
19907 #define BUILD_GLYPH_STRINGS(START, END, HEAD, TAIL, HL, X, LAST_X) \
19910 HEAD = TAIL = NULL; \
19911 while (START < END) \
19913 struct glyph *first_glyph = (row)->glyphs[area] + START; \
19914 switch (first_glyph->type) \
19917 BUILD_CHAR_GLYPH_STRINGS (START, END, HEAD, TAIL, \
19921 case COMPOSITE_GLYPH: \
19922 BUILD_COMPOSITE_GLYPH_STRING (START, END, HEAD, TAIL, \
19926 case STRETCH_GLYPH: \
19927 BUILD_STRETCH_GLYPH_STRING (START, END, HEAD, TAIL, \
19931 case IMAGE_GLYPH: \
19932 BUILD_IMAGE_GLYPH_STRING (START, END, HEAD, TAIL, \
19942 set_glyph_string_background_width (s, START, LAST_X); \
19950 /* Draw glyphs between START and END in AREA of ROW on window W,
19951 starting at x-position X. X is relative to AREA in W. HL is a
19952 face-override with the following meaning:
19954 DRAW_NORMAL_TEXT draw normally
19955 DRAW_CURSOR draw in cursor face
19956 DRAW_MOUSE_FACE draw in mouse face.
19957 DRAW_INVERSE_VIDEO draw in mode line face
19958 DRAW_IMAGE_SUNKEN draw an image with a sunken relief around it
19959 DRAW_IMAGE_RAISED draw an image with a raised relief around it
19961 If OVERLAPS is non-zero, draw only the foreground of characters and
19962 clip to the physical height of ROW. Non-zero value also defines
19963 the overlapping part to be drawn:
19965 OVERLAPS_PRED overlap with preceding rows
19966 OVERLAPS_SUCC overlap with succeeding rows
19967 OVERLAPS_BOTH overlap with both preceding/succeeding rows
19968 OVERLAPS_ERASED_CURSOR overlap with erased cursor area
19970 Value is the x-position reached, relative to AREA of W. */
19973 draw_glyphs (w
, x
, row
, area
, start
, end
, hl
, overlaps
)
19976 struct glyph_row
*row
;
19977 enum glyph_row_area area
;
19978 EMACS_INT start
, end
;
19979 enum draw_glyphs_face hl
;
19982 struct glyph_string
*head
, *tail
;
19983 struct glyph_string
*s
;
19984 struct glyph_string
*clip_head
= NULL
, *clip_tail
= NULL
;
19985 int last_x
, area_width
;
19988 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
19991 ALLOCATE_HDC (hdc
, f
);
19993 /* Let's rather be paranoid than getting a SEGV. */
19994 end
= min (end
, row
->used
[area
]);
19995 start
= max (0, start
);
19996 start
= min (end
, start
);
19998 /* Translate X to frame coordinates. Set last_x to the right
19999 end of the drawing area. */
20000 if (row
->full_width_p
)
20002 /* X is relative to the left edge of W, without scroll bars
20004 x
+= WINDOW_LEFT_EDGE_X (w
);
20005 last_x
= WINDOW_LEFT_EDGE_X (w
) + WINDOW_TOTAL_WIDTH (w
);
20009 int area_left
= window_box_left (w
, area
);
20011 area_width
= window_box_width (w
, area
);
20012 last_x
= area_left
+ area_width
;
20015 /* Build a doubly-linked list of glyph_string structures between
20016 head and tail from what we have to draw. Note that the macro
20017 BUILD_GLYPH_STRINGS will modify its start parameter. That's
20018 the reason we use a separate variable `i'. */
20020 BUILD_GLYPH_STRINGS (i
, end
, head
, tail
, hl
, x
, last_x
);
20022 x_reached
= tail
->x
+ tail
->background_width
;
20026 /* If there are any glyphs with lbearing < 0 or rbearing > width in
20027 the row, redraw some glyphs in front or following the glyph
20028 strings built above. */
20029 if (head
&& !overlaps
&& row
->contains_overlapping_glyphs_p
)
20032 struct glyph_string
*h
, *t
;
20034 /* Compute overhangs for all glyph strings. */
20035 if (FRAME_RIF (f
)->compute_glyph_string_overhangs
)
20036 for (s
= head
; s
; s
= s
->next
)
20037 FRAME_RIF (f
)->compute_glyph_string_overhangs (s
);
20039 /* Prepend glyph strings for glyphs in front of the first glyph
20040 string that are overwritten because of the first glyph
20041 string's left overhang. The background of all strings
20042 prepended must be drawn because the first glyph string
20044 i
= left_overwritten (head
);
20048 BUILD_GLYPH_STRINGS (j
, start
, h
, t
,
20049 DRAW_NORMAL_TEXT
, dummy_x
, last_x
);
20051 compute_overhangs_and_x (t
, head
->x
, 1);
20052 prepend_glyph_string_lists (&head
, &tail
, h
, t
);
20056 /* Prepend glyph strings for glyphs in front of the first glyph
20057 string that overwrite that glyph string because of their
20058 right overhang. For these strings, only the foreground must
20059 be drawn, because it draws over the glyph string at `head'.
20060 The background must not be drawn because this would overwrite
20061 right overhangs of preceding glyphs for which no glyph
20063 i
= left_overwriting (head
);
20067 BUILD_GLYPH_STRINGS (i
, start
, h
, t
,
20068 DRAW_NORMAL_TEXT
, dummy_x
, last_x
);
20069 for (s
= h
; s
; s
= s
->next
)
20070 s
->background_filled_p
= 1;
20071 compute_overhangs_and_x (t
, head
->x
, 1);
20072 prepend_glyph_string_lists (&head
, &tail
, h
, t
);
20075 /* Append glyphs strings for glyphs following the last glyph
20076 string tail that are overwritten by tail. The background of
20077 these strings has to be drawn because tail's foreground draws
20079 i
= right_overwritten (tail
);
20082 BUILD_GLYPH_STRINGS (end
, i
, h
, t
,
20083 DRAW_NORMAL_TEXT
, x
, last_x
);
20084 compute_overhangs_and_x (h
, tail
->x
+ tail
->width
, 0);
20085 append_glyph_string_lists (&head
, &tail
, h
, t
);
20089 /* Append glyph strings for glyphs following the last glyph
20090 string tail that overwrite tail. The foreground of such
20091 glyphs has to be drawn because it writes into the background
20092 of tail. The background must not be drawn because it could
20093 paint over the foreground of following glyphs. */
20094 i
= right_overwriting (tail
);
20098 i
++; /* We must include the Ith glyph. */
20099 BUILD_GLYPH_STRINGS (end
, i
, h
, t
,
20100 DRAW_NORMAL_TEXT
, x
, last_x
);
20101 for (s
= h
; s
; s
= s
->next
)
20102 s
->background_filled_p
= 1;
20103 compute_overhangs_and_x (h
, tail
->x
+ tail
->width
, 0);
20104 append_glyph_string_lists (&head
, &tail
, h
, t
);
20106 if (clip_head
|| clip_tail
)
20107 for (s
= head
; s
; s
= s
->next
)
20109 s
->clip_head
= clip_head
;
20110 s
->clip_tail
= clip_tail
;
20114 /* Draw all strings. */
20115 for (s
= head
; s
; s
= s
->next
)
20116 FRAME_RIF (f
)->draw_glyph_string (s
);
20118 if (area
== TEXT_AREA
20119 && !row
->full_width_p
20120 /* When drawing overlapping rows, only the glyph strings'
20121 foreground is drawn, which doesn't erase a cursor
20125 int x0
= clip_head
? clip_head
->x
: (head
? head
->x
: x
);
20126 int x1
= (clip_tail
? clip_tail
->x
+ clip_tail
->background_width
20127 : (tail
? tail
->x
+ tail
->background_width
: x
));
20129 int text_left
= window_box_left (w
, TEXT_AREA
);
20133 notice_overwritten_cursor (w
, TEXT_AREA
, x0
, x1
,
20134 row
->y
, MATRIX_ROW_BOTTOM_Y (row
));
20137 /* Value is the x-position up to which drawn, relative to AREA of W.
20138 This doesn't include parts drawn because of overhangs. */
20139 if (row
->full_width_p
)
20140 x_reached
= FRAME_TO_WINDOW_PIXEL_X (w
, x_reached
);
20142 x_reached
-= window_box_left (w
, area
);
20144 RELEASE_HDC (hdc
, f
);
20149 /* Expand row matrix if too narrow. Don't expand if area
20152 #define IT_EXPAND_MATRIX_WIDTH(it, area) \
20154 if (!fonts_changed_p \
20155 && (it->glyph_row->glyphs[area] \
20156 < it->glyph_row->glyphs[area + 1])) \
20158 it->w->ncols_scale_factor++; \
20159 fonts_changed_p = 1; \
20163 /* Store one glyph for IT->char_to_display in IT->glyph_row.
20164 Called from x_produce_glyphs when IT->glyph_row is non-null. */
20170 struct glyph
*glyph
;
20171 enum glyph_row_area area
= it
->area
;
20173 xassert (it
->glyph_row
);
20174 xassert (it
->char_to_display
!= '\n' && it
->char_to_display
!= '\t');
20176 glyph
= it
->glyph_row
->glyphs
[area
] + it
->glyph_row
->used
[area
];
20177 if (glyph
< it
->glyph_row
->glyphs
[area
+ 1])
20179 glyph
->charpos
= CHARPOS (it
->position
);
20180 glyph
->object
= it
->object
;
20181 if (it
->pixel_width
> 0)
20183 glyph
->pixel_width
= it
->pixel_width
;
20184 glyph
->padding_p
= 0;
20188 /* Assure at least 1-pixel width. Otherwise, cursor can't
20189 be displayed correctly. */
20190 glyph
->pixel_width
= 1;
20191 glyph
->padding_p
= 1;
20193 glyph
->ascent
= it
->ascent
;
20194 glyph
->descent
= it
->descent
;
20195 glyph
->voffset
= it
->voffset
;
20196 glyph
->type
= CHAR_GLYPH
;
20197 glyph
->multibyte_p
= it
->multibyte_p
;
20198 glyph
->left_box_line_p
= it
->start_of_box_run_p
;
20199 glyph
->right_box_line_p
= it
->end_of_box_run_p
;
20200 glyph
->overlaps_vertically_p
= (it
->phys_ascent
> it
->ascent
20201 || it
->phys_descent
> it
->descent
);
20202 glyph
->glyph_not_available_p
= it
->glyph_not_available_p
;
20203 glyph
->face_id
= it
->face_id
;
20204 glyph
->u
.ch
= it
->char_to_display
;
20205 glyph
->slice
= null_glyph_slice
;
20206 glyph
->font_type
= FONT_TYPE_UNKNOWN
;
20207 ++it
->glyph_row
->used
[area
];
20210 IT_EXPAND_MATRIX_WIDTH (it
, area
);
20213 /* Store one glyph for the composition IT->cmp_id in IT->glyph_row.
20214 Called from x_produce_glyphs when IT->glyph_row is non-null. */
20217 append_composite_glyph (it
)
20220 struct glyph
*glyph
;
20221 enum glyph_row_area area
= it
->area
;
20223 xassert (it
->glyph_row
);
20225 glyph
= it
->glyph_row
->glyphs
[area
] + it
->glyph_row
->used
[area
];
20226 if (glyph
< it
->glyph_row
->glyphs
[area
+ 1])
20228 glyph
->charpos
= CHARPOS (it
->position
);
20229 glyph
->object
= it
->object
;
20230 glyph
->pixel_width
= it
->pixel_width
;
20231 glyph
->ascent
= it
->ascent
;
20232 glyph
->descent
= it
->descent
;
20233 glyph
->voffset
= it
->voffset
;
20234 glyph
->type
= COMPOSITE_GLYPH
;
20235 glyph
->multibyte_p
= it
->multibyte_p
;
20236 glyph
->left_box_line_p
= it
->start_of_box_run_p
;
20237 glyph
->right_box_line_p
= it
->end_of_box_run_p
;
20238 glyph
->overlaps_vertically_p
= (it
->phys_ascent
> it
->ascent
20239 || it
->phys_descent
> it
->descent
);
20240 glyph
->padding_p
= 0;
20241 glyph
->glyph_not_available_p
= 0;
20242 glyph
->face_id
= it
->face_id
;
20243 glyph
->u
.cmp_id
= it
->cmp_id
;
20244 glyph
->slice
= null_glyph_slice
;
20245 glyph
->font_type
= FONT_TYPE_UNKNOWN
;
20246 ++it
->glyph_row
->used
[area
];
20249 IT_EXPAND_MATRIX_WIDTH (it
, area
);
20253 /* Change IT->ascent and IT->height according to the setting of
20257 take_vertical_position_into_account (it
)
20262 if (it
->voffset
< 0)
20263 /* Increase the ascent so that we can display the text higher
20265 it
->ascent
-= it
->voffset
;
20267 /* Increase the descent so that we can display the text lower
20269 it
->descent
+= it
->voffset
;
20274 /* Produce glyphs/get display metrics for the image IT is loaded with.
20275 See the description of struct display_iterator in dispextern.h for
20276 an overview of struct display_iterator. */
20279 produce_image_glyph (it
)
20284 int glyph_ascent
, crop
;
20285 struct glyph_slice slice
;
20287 xassert (it
->what
== IT_IMAGE
);
20289 face
= FACE_FROM_ID (it
->f
, it
->face_id
);
20291 /* Make sure X resources of the face is loaded. */
20292 PREPARE_FACE_FOR_DISPLAY (it
->f
, face
);
20294 if (it
->image_id
< 0)
20296 /* Fringe bitmap. */
20297 it
->ascent
= it
->phys_ascent
= 0;
20298 it
->descent
= it
->phys_descent
= 0;
20299 it
->pixel_width
= 0;
20304 img
= IMAGE_FROM_ID (it
->f
, it
->image_id
);
20306 /* Make sure X resources of the image is loaded. */
20307 prepare_image_for_display (it
->f
, img
);
20309 slice
.x
= slice
.y
= 0;
20310 slice
.width
= img
->width
;
20311 slice
.height
= img
->height
;
20313 if (INTEGERP (it
->slice
.x
))
20314 slice
.x
= XINT (it
->slice
.x
);
20315 else if (FLOATP (it
->slice
.x
))
20316 slice
.x
= XFLOAT_DATA (it
->slice
.x
) * img
->width
;
20318 if (INTEGERP (it
->slice
.y
))
20319 slice
.y
= XINT (it
->slice
.y
);
20320 else if (FLOATP (it
->slice
.y
))
20321 slice
.y
= XFLOAT_DATA (it
->slice
.y
) * img
->height
;
20323 if (INTEGERP (it
->slice
.width
))
20324 slice
.width
= XINT (it
->slice
.width
);
20325 else if (FLOATP (it
->slice
.width
))
20326 slice
.width
= XFLOAT_DATA (it
->slice
.width
) * img
->width
;
20328 if (INTEGERP (it
->slice
.height
))
20329 slice
.height
= XINT (it
->slice
.height
);
20330 else if (FLOATP (it
->slice
.height
))
20331 slice
.height
= XFLOAT_DATA (it
->slice
.height
) * img
->height
;
20333 if (slice
.x
>= img
->width
)
20334 slice
.x
= img
->width
;
20335 if (slice
.y
>= img
->height
)
20336 slice
.y
= img
->height
;
20337 if (slice
.x
+ slice
.width
>= img
->width
)
20338 slice
.width
= img
->width
- slice
.x
;
20339 if (slice
.y
+ slice
.height
> img
->height
)
20340 slice
.height
= img
->height
- slice
.y
;
20342 if (slice
.width
== 0 || slice
.height
== 0)
20345 it
->ascent
= it
->phys_ascent
= glyph_ascent
= image_ascent (img
, face
, &slice
);
20347 it
->descent
= slice
.height
- glyph_ascent
;
20349 it
->descent
+= img
->vmargin
;
20350 if (slice
.y
+ slice
.height
== img
->height
)
20351 it
->descent
+= img
->vmargin
;
20352 it
->phys_descent
= it
->descent
;
20354 it
->pixel_width
= slice
.width
;
20356 it
->pixel_width
+= img
->hmargin
;
20357 if (slice
.x
+ slice
.width
== img
->width
)
20358 it
->pixel_width
+= img
->hmargin
;
20360 /* It's quite possible for images to have an ascent greater than
20361 their height, so don't get confused in that case. */
20362 if (it
->descent
< 0)
20365 #if 0 /* this breaks image tiling */
20366 /* If this glyph is alone on the last line, adjust it.ascent to minimum row ascent. */
20367 int face_ascent
= face
->font
? FONT_BASE (face
->font
) : FRAME_BASELINE_OFFSET (it
->f
);
20368 if (face_ascent
> it
->ascent
)
20369 it
->ascent
= it
->phys_ascent
= face_ascent
;
20374 if (face
->box
!= FACE_NO_BOX
)
20376 if (face
->box_line_width
> 0)
20379 it
->ascent
+= face
->box_line_width
;
20380 if (slice
.y
+ slice
.height
== img
->height
)
20381 it
->descent
+= face
->box_line_width
;
20384 if (it
->start_of_box_run_p
&& slice
.x
== 0)
20385 it
->pixel_width
+= eabs (face
->box_line_width
);
20386 if (it
->end_of_box_run_p
&& slice
.x
+ slice
.width
== img
->width
)
20387 it
->pixel_width
+= eabs (face
->box_line_width
);
20390 take_vertical_position_into_account (it
);
20392 /* Automatically crop wide image glyphs at right edge so we can
20393 draw the cursor on same display row. */
20394 if ((crop
= it
->pixel_width
- (it
->last_visible_x
- it
->current_x
), crop
> 0)
20395 && (it
->hpos
== 0 || it
->pixel_width
> it
->last_visible_x
/ 4))
20397 it
->pixel_width
-= crop
;
20398 slice
.width
-= crop
;
20403 struct glyph
*glyph
;
20404 enum glyph_row_area area
= it
->area
;
20406 glyph
= it
->glyph_row
->glyphs
[area
] + it
->glyph_row
->used
[area
];
20407 if (glyph
< it
->glyph_row
->glyphs
[area
+ 1])
20409 glyph
->charpos
= CHARPOS (it
->position
);
20410 glyph
->object
= it
->object
;
20411 glyph
->pixel_width
= it
->pixel_width
;
20412 glyph
->ascent
= glyph_ascent
;
20413 glyph
->descent
= it
->descent
;
20414 glyph
->voffset
= it
->voffset
;
20415 glyph
->type
= IMAGE_GLYPH
;
20416 glyph
->multibyte_p
= it
->multibyte_p
;
20417 glyph
->left_box_line_p
= it
->start_of_box_run_p
;
20418 glyph
->right_box_line_p
= it
->end_of_box_run_p
;
20419 glyph
->overlaps_vertically_p
= 0;
20420 glyph
->padding_p
= 0;
20421 glyph
->glyph_not_available_p
= 0;
20422 glyph
->face_id
= it
->face_id
;
20423 glyph
->u
.img_id
= img
->id
;
20424 glyph
->slice
= slice
;
20425 glyph
->font_type
= FONT_TYPE_UNKNOWN
;
20426 ++it
->glyph_row
->used
[area
];
20429 IT_EXPAND_MATRIX_WIDTH (it
, area
);
20434 /* Append a stretch glyph to IT->glyph_row. OBJECT is the source
20435 of the glyph, WIDTH and HEIGHT are the width and height of the
20436 stretch. ASCENT is the ascent of the glyph (0 <= ASCENT <= HEIGHT). */
20439 append_stretch_glyph (it
, object
, width
, height
, ascent
)
20441 Lisp_Object object
;
20445 struct glyph
*glyph
;
20446 enum glyph_row_area area
= it
->area
;
20448 xassert (ascent
>= 0 && ascent
<= height
);
20450 glyph
= it
->glyph_row
->glyphs
[area
] + it
->glyph_row
->used
[area
];
20451 if (glyph
< it
->glyph_row
->glyphs
[area
+ 1])
20453 glyph
->charpos
= CHARPOS (it
->position
);
20454 glyph
->object
= object
;
20455 glyph
->pixel_width
= width
;
20456 glyph
->ascent
= ascent
;
20457 glyph
->descent
= height
- ascent
;
20458 glyph
->voffset
= it
->voffset
;
20459 glyph
->type
= STRETCH_GLYPH
;
20460 glyph
->multibyte_p
= it
->multibyte_p
;
20461 glyph
->left_box_line_p
= it
->start_of_box_run_p
;
20462 glyph
->right_box_line_p
= it
->end_of_box_run_p
;
20463 glyph
->overlaps_vertically_p
= 0;
20464 glyph
->padding_p
= 0;
20465 glyph
->glyph_not_available_p
= 0;
20466 glyph
->face_id
= it
->face_id
;
20467 glyph
->u
.stretch
.ascent
= ascent
;
20468 glyph
->u
.stretch
.height
= height
;
20469 glyph
->slice
= null_glyph_slice
;
20470 glyph
->font_type
= FONT_TYPE_UNKNOWN
;
20471 ++it
->glyph_row
->used
[area
];
20474 IT_EXPAND_MATRIX_WIDTH (it
, area
);
20478 /* Produce a stretch glyph for iterator IT. IT->object is the value
20479 of the glyph property displayed. The value must be a list
20480 `(space KEYWORD VALUE ...)' with the following KEYWORD/VALUE pairs
20483 1. `:width WIDTH' specifies that the space should be WIDTH *
20484 canonical char width wide. WIDTH may be an integer or floating
20487 2. `:relative-width FACTOR' specifies that the width of the stretch
20488 should be computed from the width of the first character having the
20489 `glyph' property, and should be FACTOR times that width.
20491 3. `:align-to HPOS' specifies that the space should be wide enough
20492 to reach HPOS, a value in canonical character units.
20494 Exactly one of the above pairs must be present.
20496 4. `:height HEIGHT' specifies that the height of the stretch produced
20497 should be HEIGHT, measured in canonical character units.
20499 5. `:relative-height FACTOR' specifies that the height of the
20500 stretch should be FACTOR times the height of the characters having
20501 the glyph property.
20503 Either none or exactly one of 4 or 5 must be present.
20505 6. `:ascent ASCENT' specifies that ASCENT percent of the height
20506 of the stretch should be used for the ascent of the stretch.
20507 ASCENT must be in the range 0 <= ASCENT <= 100. */
20510 produce_stretch_glyph (it
)
20513 /* (space :width WIDTH :height HEIGHT ...) */
20514 Lisp_Object prop
, plist
;
20515 int width
= 0, height
= 0, align_to
= -1;
20516 int zero_width_ok_p
= 0, zero_height_ok_p
= 0;
20519 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
20520 XFontStruct
*font
= face
->font
? face
->font
: FRAME_FONT (it
->f
);
20522 PREPARE_FACE_FOR_DISPLAY (it
->f
, face
);
20524 /* List should start with `space'. */
20525 xassert (CONSP (it
->object
) && EQ (XCAR (it
->object
), Qspace
));
20526 plist
= XCDR (it
->object
);
20528 /* Compute the width of the stretch. */
20529 if ((prop
= Fplist_get (plist
, QCwidth
), !NILP (prop
))
20530 && calc_pixel_width_or_height (&tem
, it
, prop
, font
, 1, 0))
20532 /* Absolute width `:width WIDTH' specified and valid. */
20533 zero_width_ok_p
= 1;
20536 else if (prop
= Fplist_get (plist
, QCrelative_width
),
20539 /* Relative width `:relative-width FACTOR' specified and valid.
20540 Compute the width of the characters having the `glyph'
20543 unsigned char *p
= BYTE_POS_ADDR (IT_BYTEPOS (*it
));
20546 if (it
->multibyte_p
)
20548 int maxlen
= ((IT_BYTEPOS (*it
) >= GPT
? ZV
: GPT
)
20549 - IT_BYTEPOS (*it
));
20550 it2
.c
= STRING_CHAR_AND_LENGTH (p
, maxlen
, it2
.len
);
20553 it2
.c
= *p
, it2
.len
= 1;
20555 it2
.glyph_row
= NULL
;
20556 it2
.what
= IT_CHARACTER
;
20557 x_produce_glyphs (&it2
);
20558 width
= NUMVAL (prop
) * it2
.pixel_width
;
20560 else if ((prop
= Fplist_get (plist
, QCalign_to
), !NILP (prop
))
20561 && calc_pixel_width_or_height (&tem
, it
, prop
, font
, 1, &align_to
))
20563 if (it
->glyph_row
== NULL
|| !it
->glyph_row
->mode_line_p
)
20564 align_to
= (align_to
< 0
20566 : align_to
- window_box_left_offset (it
->w
, TEXT_AREA
));
20567 else if (align_to
< 0)
20568 align_to
= window_box_left_offset (it
->w
, TEXT_AREA
);
20569 width
= max (0, (int)tem
+ align_to
- it
->current_x
);
20570 zero_width_ok_p
= 1;
20573 /* Nothing specified -> width defaults to canonical char width. */
20574 width
= FRAME_COLUMN_WIDTH (it
->f
);
20576 if (width
<= 0 && (width
< 0 || !zero_width_ok_p
))
20579 /* Compute height. */
20580 if ((prop
= Fplist_get (plist
, QCheight
), !NILP (prop
))
20581 && calc_pixel_width_or_height (&tem
, it
, prop
, font
, 0, 0))
20584 zero_height_ok_p
= 1;
20586 else if (prop
= Fplist_get (plist
, QCrelative_height
),
20588 height
= FONT_HEIGHT (font
) * NUMVAL (prop
);
20590 height
= FONT_HEIGHT (font
);
20592 if (height
<= 0 && (height
< 0 || !zero_height_ok_p
))
20595 /* Compute percentage of height used for ascent. If
20596 `:ascent ASCENT' is present and valid, use that. Otherwise,
20597 derive the ascent from the font in use. */
20598 if (prop
= Fplist_get (plist
, QCascent
),
20599 NUMVAL (prop
) > 0 && NUMVAL (prop
) <= 100)
20600 ascent
= height
* NUMVAL (prop
) / 100.0;
20601 else if (!NILP (prop
)
20602 && calc_pixel_width_or_height (&tem
, it
, prop
, font
, 0, 0))
20603 ascent
= min (max (0, (int)tem
), height
);
20605 ascent
= (height
* FONT_BASE (font
)) / FONT_HEIGHT (font
);
20607 if (width
> 0 && !it
->truncate_lines_p
20608 && it
->current_x
+ width
> it
->last_visible_x
)
20609 width
= it
->last_visible_x
- it
->current_x
- 1;
20611 if (width
> 0 && height
> 0 && it
->glyph_row
)
20613 Lisp_Object object
= it
->stack
[it
->sp
- 1].string
;
20614 if (!STRINGP (object
))
20615 object
= it
->w
->buffer
;
20616 append_stretch_glyph (it
, object
, width
, height
, ascent
);
20619 it
->pixel_width
= width
;
20620 it
->ascent
= it
->phys_ascent
= ascent
;
20621 it
->descent
= it
->phys_descent
= height
- it
->ascent
;
20622 it
->nglyphs
= width
> 0 && height
> 0 ? 1 : 0;
20624 take_vertical_position_into_account (it
);
20627 /* Get line-height and line-spacing property at point.
20628 If line-height has format (HEIGHT TOTAL), return TOTAL
20629 in TOTAL_HEIGHT. */
20632 get_line_height_property (it
, prop
)
20636 Lisp_Object position
;
20638 if (STRINGP (it
->object
))
20639 position
= make_number (IT_STRING_CHARPOS (*it
));
20640 else if (BUFFERP (it
->object
))
20641 position
= make_number (IT_CHARPOS (*it
));
20645 return Fget_char_property (position
, prop
, it
->object
);
20648 /* Calculate line-height and line-spacing properties.
20649 An integer value specifies explicit pixel value.
20650 A float value specifies relative value to current face height.
20651 A cons (float . face-name) specifies relative value to
20652 height of specified face font.
20654 Returns height in pixels, or nil. */
20658 calc_line_height_property (it
, val
, font
, boff
, override
)
20662 int boff
, override
;
20664 Lisp_Object face_name
= Qnil
;
20665 int ascent
, descent
, height
;
20667 if (NILP (val
) || INTEGERP (val
) || (override
&& EQ (val
, Qt
)))
20672 face_name
= XCAR (val
);
20674 if (!NUMBERP (val
))
20675 val
= make_number (1);
20676 if (NILP (face_name
))
20678 height
= it
->ascent
+ it
->descent
;
20683 if (NILP (face_name
))
20685 font
= FRAME_FONT (it
->f
);
20686 boff
= FRAME_BASELINE_OFFSET (it
->f
);
20688 else if (EQ (face_name
, Qt
))
20696 struct font_info
*font_info
;
20698 face_id
= lookup_named_face (it
->f
, face_name
, 0);
20700 return make_number (-1);
20702 face
= FACE_FROM_ID (it
->f
, face_id
);
20705 return make_number (-1);
20707 font_info
= FONT_INFO_FROM_FACE (it
->f
, face
);
20708 boff
= font_info
->baseline_offset
;
20709 if (font_info
->vertical_centering
)
20710 boff
= VCENTER_BASELINE_OFFSET (font
, it
->f
) - boff
;
20713 ascent
= FONT_BASE (font
) + boff
;
20714 descent
= FONT_DESCENT (font
) - boff
;
20718 it
->override_ascent
= ascent
;
20719 it
->override_descent
= descent
;
20720 it
->override_boff
= boff
;
20723 height
= ascent
+ descent
;
20727 height
= (int)(XFLOAT_DATA (val
) * height
);
20728 else if (INTEGERP (val
))
20729 height
*= XINT (val
);
20731 return make_number (height
);
20736 Produce glyphs/get display metrics for the display element IT is
20737 loaded with. See the description of struct it in dispextern.h
20738 for an overview of struct it. */
20741 x_produce_glyphs (it
)
20744 int extra_line_spacing
= it
->extra_line_spacing
;
20746 it
->glyph_not_available_p
= 0;
20748 if (it
->what
== IT_CHARACTER
)
20752 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
20754 int font_not_found_p
;
20755 struct font_info
*font_info
;
20756 int boff
; /* baseline offset */
20757 /* We may change it->multibyte_p upon unibyte<->multibyte
20758 conversion. So, save the current value now and restore it
20761 Note: It seems that we don't have to record multibyte_p in
20762 struct glyph because the character code itself tells if or
20763 not the character is multibyte. Thus, in the future, we must
20764 consider eliminating the field `multibyte_p' in the struct
20766 int saved_multibyte_p
= it
->multibyte_p
;
20768 /* Maybe translate single-byte characters to multibyte, or the
20770 it
->char_to_display
= it
->c
;
20771 if (!ASCII_BYTE_P (it
->c
)
20772 && ! it
->multibyte_p
)
20774 if (SINGLE_BYTE_CHAR_P (it
->c
)
20775 && unibyte_display_via_language_environment
)
20776 it
->char_to_display
= unibyte_char_to_multibyte (it
->c
);
20777 if (! SINGLE_BYTE_CHAR_P (it
->char_to_display
))
20779 it
->multibyte_p
= 1;
20780 it
->face_id
= FACE_FOR_CHAR (it
->f
, face
, it
->char_to_display
,
20782 face
= FACE_FROM_ID (it
->f
, it
->face_id
);
20786 /* Get font to use. Encode IT->char_to_display. */
20787 get_char_face_and_encoding (it
->f
, it
->char_to_display
, it
->face_id
,
20788 &char2b
, it
->multibyte_p
, 0);
20791 /* When no suitable font found, use the default font. */
20792 font_not_found_p
= font
== NULL
;
20793 if (font_not_found_p
)
20795 font
= FRAME_FONT (it
->f
);
20796 boff
= FRAME_BASELINE_OFFSET (it
->f
);
20801 font_info
= FONT_INFO_FROM_FACE (it
->f
, face
);
20802 boff
= font_info
->baseline_offset
;
20803 if (font_info
->vertical_centering
)
20804 boff
= VCENTER_BASELINE_OFFSET (font
, it
->f
) - boff
;
20807 if (it
->char_to_display
>= ' '
20808 && (!it
->multibyte_p
|| it
->char_to_display
< 128))
20810 /* Either unibyte or ASCII. */
20815 pcm
= get_per_char_metric (it
->f
, font
, font_info
, &char2b
,
20816 FONT_TYPE_FOR_UNIBYTE (font
, it
->char_to_display
));
20818 if (it
->override_ascent
>= 0)
20820 it
->ascent
= it
->override_ascent
;
20821 it
->descent
= it
->override_descent
;
20822 boff
= it
->override_boff
;
20826 it
->ascent
= FONT_BASE (font
) + boff
;
20827 it
->descent
= FONT_DESCENT (font
) - boff
;
20832 it
->phys_ascent
= pcm
->ascent
+ boff
;
20833 it
->phys_descent
= pcm
->descent
- boff
;
20834 it
->pixel_width
= pcm
->width
;
20838 it
->glyph_not_available_p
= 1;
20839 it
->phys_ascent
= it
->ascent
;
20840 it
->phys_descent
= it
->descent
;
20841 it
->pixel_width
= FONT_WIDTH (font
);
20844 if (it
->constrain_row_ascent_descent_p
)
20846 if (it
->descent
> it
->max_descent
)
20848 it
->ascent
+= it
->descent
- it
->max_descent
;
20849 it
->descent
= it
->max_descent
;
20851 if (it
->ascent
> it
->max_ascent
)
20853 it
->descent
= min (it
->max_descent
, it
->descent
+ it
->ascent
- it
->max_ascent
);
20854 it
->ascent
= it
->max_ascent
;
20856 it
->phys_ascent
= min (it
->phys_ascent
, it
->ascent
);
20857 it
->phys_descent
= min (it
->phys_descent
, it
->descent
);
20858 extra_line_spacing
= 0;
20861 /* If this is a space inside a region of text with
20862 `space-width' property, change its width. */
20863 stretched_p
= it
->char_to_display
== ' ' && !NILP (it
->space_width
);
20865 it
->pixel_width
*= XFLOATINT (it
->space_width
);
20867 /* If face has a box, add the box thickness to the character
20868 height. If character has a box line to the left and/or
20869 right, add the box line width to the character's width. */
20870 if (face
->box
!= FACE_NO_BOX
)
20872 int thick
= face
->box_line_width
;
20876 it
->ascent
+= thick
;
20877 it
->descent
+= thick
;
20882 if (it
->start_of_box_run_p
)
20883 it
->pixel_width
+= thick
;
20884 if (it
->end_of_box_run_p
)
20885 it
->pixel_width
+= thick
;
20888 /* If face has an overline, add the height of the overline
20889 (1 pixel) and a 1 pixel margin to the character height. */
20890 if (face
->overline_p
)
20891 it
->ascent
+= overline_margin
;
20893 if (it
->constrain_row_ascent_descent_p
)
20895 if (it
->ascent
> it
->max_ascent
)
20896 it
->ascent
= it
->max_ascent
;
20897 if (it
->descent
> it
->max_descent
)
20898 it
->descent
= it
->max_descent
;
20901 take_vertical_position_into_account (it
);
20903 /* If we have to actually produce glyphs, do it. */
20908 /* Translate a space with a `space-width' property
20909 into a stretch glyph. */
20910 int ascent
= (((it
->ascent
+ it
->descent
) * FONT_BASE (font
))
20911 / FONT_HEIGHT (font
));
20912 append_stretch_glyph (it
, it
->object
, it
->pixel_width
,
20913 it
->ascent
+ it
->descent
, ascent
);
20918 /* If characters with lbearing or rbearing are displayed
20919 in this line, record that fact in a flag of the
20920 glyph row. This is used to optimize X output code. */
20921 if (pcm
&& (pcm
->lbearing
< 0 || pcm
->rbearing
> pcm
->width
))
20922 it
->glyph_row
->contains_overlapping_glyphs_p
= 1;
20924 if (! stretched_p
&& it
->pixel_width
== 0)
20925 /* We assure that all visible glyphs have at least 1-pixel
20927 it
->pixel_width
= 1;
20929 else if (it
->char_to_display
== '\n')
20931 /* A newline has no width but we need the height of the line.
20932 But if previous part of the line set a height, don't
20933 increase that height */
20935 Lisp_Object height
;
20936 Lisp_Object total_height
= Qnil
;
20938 it
->override_ascent
= -1;
20939 it
->pixel_width
= 0;
20942 height
= get_line_height_property(it
, Qline_height
);
20943 /* Split (line-height total-height) list */
20945 && CONSP (XCDR (height
))
20946 && NILP (XCDR (XCDR (height
))))
20948 total_height
= XCAR (XCDR (height
));
20949 height
= XCAR (height
);
20951 height
= calc_line_height_property(it
, height
, font
, boff
, 1);
20953 if (it
->override_ascent
>= 0)
20955 it
->ascent
= it
->override_ascent
;
20956 it
->descent
= it
->override_descent
;
20957 boff
= it
->override_boff
;
20961 it
->ascent
= FONT_BASE (font
) + boff
;
20962 it
->descent
= FONT_DESCENT (font
) - boff
;
20965 if (EQ (height
, Qt
))
20967 if (it
->descent
> it
->max_descent
)
20969 it
->ascent
+= it
->descent
- it
->max_descent
;
20970 it
->descent
= it
->max_descent
;
20972 if (it
->ascent
> it
->max_ascent
)
20974 it
->descent
= min (it
->max_descent
, it
->descent
+ it
->ascent
- it
->max_ascent
);
20975 it
->ascent
= it
->max_ascent
;
20977 it
->phys_ascent
= min (it
->phys_ascent
, it
->ascent
);
20978 it
->phys_descent
= min (it
->phys_descent
, it
->descent
);
20979 it
->constrain_row_ascent_descent_p
= 1;
20980 extra_line_spacing
= 0;
20984 Lisp_Object spacing
;
20986 it
->phys_ascent
= it
->ascent
;
20987 it
->phys_descent
= it
->descent
;
20989 if ((it
->max_ascent
> 0 || it
->max_descent
> 0)
20990 && face
->box
!= FACE_NO_BOX
20991 && face
->box_line_width
> 0)
20993 it
->ascent
+= face
->box_line_width
;
20994 it
->descent
+= face
->box_line_width
;
20997 && XINT (height
) > it
->ascent
+ it
->descent
)
20998 it
->ascent
= XINT (height
) - it
->descent
;
21000 if (!NILP (total_height
))
21001 spacing
= calc_line_height_property(it
, total_height
, font
, boff
, 0);
21004 spacing
= get_line_height_property(it
, Qline_spacing
);
21005 spacing
= calc_line_height_property(it
, spacing
, font
, boff
, 0);
21007 if (INTEGERP (spacing
))
21009 extra_line_spacing
= XINT (spacing
);
21010 if (!NILP (total_height
))
21011 extra_line_spacing
-= (it
->phys_ascent
+ it
->phys_descent
);
21015 else if (it
->char_to_display
== '\t')
21017 int tab_width
= it
->tab_width
* FRAME_SPACE_WIDTH (it
->f
);
21018 int x
= it
->current_x
+ it
->continuation_lines_width
;
21019 int next_tab_x
= ((1 + x
+ tab_width
- 1) / tab_width
) * tab_width
;
21021 /* If the distance from the current position to the next tab
21022 stop is less than a space character width, use the
21023 tab stop after that. */
21024 if (next_tab_x
- x
< FRAME_SPACE_WIDTH (it
->f
))
21025 next_tab_x
+= tab_width
;
21027 it
->pixel_width
= next_tab_x
- x
;
21029 it
->ascent
= it
->phys_ascent
= FONT_BASE (font
) + boff
;
21030 it
->descent
= it
->phys_descent
= FONT_DESCENT (font
) - boff
;
21034 append_stretch_glyph (it
, it
->object
, it
->pixel_width
,
21035 it
->ascent
+ it
->descent
, it
->ascent
);
21040 /* A multi-byte character. Assume that the display width of the
21041 character is the width of the character multiplied by the
21042 width of the font. */
21044 /* If we found a font, this font should give us the right
21045 metrics. If we didn't find a font, use the frame's
21046 default font and calculate the width of the character by
21047 multiplying the width of font by the width of the
21050 pcm
= get_per_char_metric (it
->f
, font
, font_info
, &char2b
,
21051 FONT_TYPE_FOR_MULTIBYTE (font
, it
->c
));
21053 if (font_not_found_p
|| !pcm
)
21055 int char_width
= CHAR_WIDTH (it
->char_to_display
);
21057 if (char_width
== 0)
21058 /* This is a non spacing character. But, as we are
21059 going to display an empty box, the box must occupy
21060 at least one column. */
21062 it
->glyph_not_available_p
= 1;
21063 it
->pixel_width
= FRAME_COLUMN_WIDTH (it
->f
) * char_width
;
21064 it
->phys_ascent
= FONT_BASE (font
) + boff
;
21065 it
->phys_descent
= FONT_DESCENT (font
) - boff
;
21069 it
->pixel_width
= pcm
->width
;
21070 it
->phys_ascent
= pcm
->ascent
+ boff
;
21071 it
->phys_descent
= pcm
->descent
- boff
;
21073 && (pcm
->lbearing
< 0
21074 || pcm
->rbearing
> pcm
->width
))
21075 it
->glyph_row
->contains_overlapping_glyphs_p
= 1;
21078 it
->ascent
= FONT_BASE (font
) + boff
;
21079 it
->descent
= FONT_DESCENT (font
) - boff
;
21080 if (face
->box
!= FACE_NO_BOX
)
21082 int thick
= face
->box_line_width
;
21086 it
->ascent
+= thick
;
21087 it
->descent
+= thick
;
21092 if (it
->start_of_box_run_p
)
21093 it
->pixel_width
+= thick
;
21094 if (it
->end_of_box_run_p
)
21095 it
->pixel_width
+= thick
;
21098 /* If face has an overline, add the height of the overline
21099 (1 pixel) and a 1 pixel margin to the character height. */
21100 if (face
->overline_p
)
21101 it
->ascent
+= overline_margin
;
21103 take_vertical_position_into_account (it
);
21105 if (it
->ascent
< 0)
21107 if (it
->descent
< 0)
21112 if (it
->pixel_width
== 0)
21113 /* We assure that all visible glyphs have at least 1-pixel
21115 it
->pixel_width
= 1;
21117 it
->multibyte_p
= saved_multibyte_p
;
21119 else if (it
->what
== IT_COMPOSITION
)
21121 /* Note: A composition is represented as one glyph in the
21122 glyph matrix. There are no padding glyphs.
21124 Important is that pixel_width, ascent, and descent are the
21125 values of what is drawn by draw_glyphs (i.e. the values of
21126 the overall glyphs composed). */
21127 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
21128 int boff
; /* baseline offset */
21129 struct composition
*cmp
= composition_table
[it
->cmp_id
];
21130 int glyph_len
= cmp
->glyph_len
;
21131 XFontStruct
*font
= face
->font
;
21135 #ifdef USE_FONT_BACKEND
21136 if (cmp
->method
== COMPOSITION_WITH_GLYPH_STRING
)
21138 PREPARE_FACE_FOR_DISPLAY (it
->f
, face
);
21139 font_prepare_composition (cmp
, it
->f
);
21142 #endif /* USE_FONT_BACKEND */
21143 /* If we have not yet calculated pixel size data of glyphs of
21144 the composition for the current face font, calculate them
21145 now. Theoretically, we have to check all fonts for the
21146 glyphs, but that requires much time and memory space. So,
21147 here we check only the font of the first glyph. This leads
21148 to incorrect display, but it's very rare, and C-l (recenter)
21149 can correct the display anyway. */
21150 if (! cmp
->font
|| cmp
->font
!= font
)
21152 /* Ascent and descent of the font of the first character
21153 of this composition (adjusted by baseline offset).
21154 Ascent and descent of overall glyphs should not be less
21155 than them respectively. */
21156 int font_ascent
, font_descent
, font_height
;
21157 /* Bounding box of the overall glyphs. */
21158 int leftmost
, rightmost
, lowest
, highest
;
21159 int lbearing
, rbearing
;
21160 int i
, width
, ascent
, descent
;
21161 int left_padded
= 0, right_padded
= 0;
21166 int font_not_found_p
;
21167 struct font_info
*font_info
;
21170 for (glyph_len
= cmp
->glyph_len
; glyph_len
> 0; glyph_len
--)
21171 if ((c
= COMPOSITION_GLYPH (cmp
, glyph_len
- 1)) != '\t')
21173 if (glyph_len
< cmp
->glyph_len
)
21175 for (i
= 0; i
< glyph_len
; i
++)
21177 if ((c
= COMPOSITION_GLYPH (cmp
, i
)) != '\t')
21179 cmp
->offsets
[i
* 2] = cmp
->offsets
[i
* 2 + 1] = 0;
21184 pos
= (STRINGP (it
->string
) ? IT_STRING_CHARPOS (*it
)
21185 : IT_CHARPOS (*it
));
21186 /* When no suitable font found, use the default font. */
21187 font_not_found_p
= font
== NULL
;
21188 if (font_not_found_p
)
21190 face
= face
->ascii_face
;
21193 font_info
= FONT_INFO_FROM_FACE (it
->f
, face
);
21194 boff
= font_info
->baseline_offset
;
21195 if (font_info
->vertical_centering
)
21196 boff
= VCENTER_BASELINE_OFFSET (font
, it
->f
) - boff
;
21197 font_ascent
= FONT_BASE (font
) + boff
;
21198 font_descent
= FONT_DESCENT (font
) - boff
;
21199 font_height
= FONT_HEIGHT (font
);
21201 cmp
->font
= (void *) font
;
21204 if (! font_not_found_p
)
21206 get_char_face_and_encoding (it
->f
, c
, it
->face_id
,
21207 &char2b
, it
->multibyte_p
, 0);
21208 pcm
= get_per_char_metric (it
->f
, font
, font_info
, &char2b
,
21209 FONT_TYPE_FOR_MULTIBYTE (font
, c
));
21212 /* Initialize the bounding box. */
21215 width
= pcm
->width
;
21216 ascent
= pcm
->ascent
;
21217 descent
= pcm
->descent
;
21218 lbearing
= pcm
->lbearing
;
21219 rbearing
= pcm
->rbearing
;
21223 width
= FONT_WIDTH (font
);
21224 ascent
= FONT_BASE (font
);
21225 descent
= FONT_DESCENT (font
);
21232 lowest
= - descent
+ boff
;
21233 highest
= ascent
+ boff
;
21235 if (! font_not_found_p
21236 && font_info
->default_ascent
21237 && CHAR_TABLE_P (Vuse_default_ascent
)
21238 && !NILP (Faref (Vuse_default_ascent
,
21239 make_number (it
->char_to_display
))))
21240 highest
= font_info
->default_ascent
+ boff
;
21242 /* Draw the first glyph at the normal position. It may be
21243 shifted to right later if some other glyphs are drawn
21245 cmp
->offsets
[i
* 2] = 0;
21246 cmp
->offsets
[i
* 2 + 1] = boff
;
21247 cmp
->lbearing
= lbearing
;
21248 cmp
->rbearing
= rbearing
;
21250 /* Set cmp->offsets for the remaining glyphs. */
21251 for (i
++; i
< glyph_len
; i
++)
21253 int left
, right
, btm
, top
;
21254 int ch
= COMPOSITION_GLYPH (cmp
, i
);
21256 struct face
*this_face
;
21261 face_id
= FACE_FOR_CHAR (it
->f
, face
, ch
, pos
, it
->string
);
21262 this_face
= FACE_FROM_ID (it
->f
, face_id
);
21263 font
= this_face
->font
;
21269 font_info
= FONT_INFO_FROM_FACE (it
->f
, this_face
);
21270 this_boff
= font_info
->baseline_offset
;
21271 if (font_info
->vertical_centering
)
21272 this_boff
= VCENTER_BASELINE_OFFSET (font
, it
->f
) - boff
;
21273 get_char_face_and_encoding (it
->f
, ch
, face_id
,
21274 &char2b
, it
->multibyte_p
, 0);
21275 pcm
= get_per_char_metric (it
->f
, font
, font_info
, &char2b
,
21276 FONT_TYPE_FOR_MULTIBYTE (font
,
21280 cmp
->offsets
[i
* 2] = cmp
->offsets
[i
* 2 + 1] = 0;
21283 width
= pcm
->width
;
21284 ascent
= pcm
->ascent
;
21285 descent
= pcm
->descent
;
21286 lbearing
= pcm
->lbearing
;
21287 rbearing
= pcm
->rbearing
;
21288 if (cmp
->method
!= COMPOSITION_WITH_RULE_ALTCHARS
)
21290 /* Relative composition with or without
21291 alternate chars. */
21292 left
= (leftmost
+ rightmost
- width
) / 2;
21293 btm
= - descent
+ boff
;
21294 if (font_info
->relative_compose
21295 && (! CHAR_TABLE_P (Vignore_relative_composition
)
21296 || NILP (Faref (Vignore_relative_composition
,
21297 make_number (ch
)))))
21300 if (- descent
>= font_info
->relative_compose
)
21301 /* One extra pixel between two glyphs. */
21303 else if (ascent
<= 0)
21304 /* One extra pixel between two glyphs. */
21305 btm
= lowest
- 1 - ascent
- descent
;
21310 /* A composition rule is specified by an integer
21311 value that encodes global and new reference
21312 points (GREF and NREF). GREF and NREF are
21313 specified by numbers as below:
21315 0---1---2 -- ascent
21319 9--10--11 -- center
21321 ---3---4---5--- baseline
21323 6---7---8 -- descent
21325 int rule
= COMPOSITION_RULE (cmp
, i
);
21326 int gref
, nref
, grefx
, grefy
, nrefx
, nrefy
, xoff
, yoff
;
21328 COMPOSITION_DECODE_RULE (rule
, gref
, nref
, xoff
, yoff
);
21329 grefx
= gref
% 3, nrefx
= nref
% 3;
21330 grefy
= gref
/ 3, nrefy
= nref
/ 3;
21332 xoff
= font_height
* (xoff
- 128) / 256;
21334 yoff
= font_height
* (yoff
- 128) / 256;
21337 + grefx
* (rightmost
- leftmost
) / 2
21338 - nrefx
* width
/ 2
21341 btm
= ((grefy
== 0 ? highest
21343 : grefy
== 2 ? lowest
21344 : (highest
+ lowest
) / 2)
21345 - (nrefy
== 0 ? ascent
+ descent
21346 : nrefy
== 1 ? descent
- boff
21348 : (ascent
+ descent
) / 2)
21352 cmp
->offsets
[i
* 2] = left
;
21353 cmp
->offsets
[i
* 2 + 1] = btm
+ descent
;
21355 /* Update the bounding box of the overall glyphs. */
21358 right
= left
+ width
;
21359 if (left
< leftmost
)
21361 if (right
> rightmost
)
21364 top
= btm
+ descent
+ ascent
;
21370 if (cmp
->lbearing
> left
+ lbearing
)
21371 cmp
->lbearing
= left
+ lbearing
;
21372 if (cmp
->rbearing
< left
+ rbearing
)
21373 cmp
->rbearing
= left
+ rbearing
;
21377 /* If there are glyphs whose x-offsets are negative,
21378 shift all glyphs to the right and make all x-offsets
21382 for (i
= 0; i
< cmp
->glyph_len
; i
++)
21383 cmp
->offsets
[i
* 2] -= leftmost
;
21384 rightmost
-= leftmost
;
21385 cmp
->lbearing
-= leftmost
;
21386 cmp
->rbearing
-= leftmost
;
21389 if (left_padded
&& cmp
->lbearing
< 0)
21391 for (i
= 0; i
< cmp
->glyph_len
; i
++)
21392 cmp
->offsets
[i
* 2] -= cmp
->lbearing
;
21393 rightmost
-= cmp
->lbearing
;
21394 cmp
->rbearing
-= cmp
->lbearing
;
21397 if (right_padded
&& rightmost
< cmp
->rbearing
)
21399 rightmost
= cmp
->rbearing
;
21402 cmp
->pixel_width
= rightmost
;
21403 cmp
->ascent
= highest
;
21404 cmp
->descent
= - lowest
;
21405 if (cmp
->ascent
< font_ascent
)
21406 cmp
->ascent
= font_ascent
;
21407 if (cmp
->descent
< font_descent
)
21408 cmp
->descent
= font_descent
;
21412 && (cmp
->lbearing
< 0
21413 || cmp
->rbearing
> cmp
->pixel_width
))
21414 it
->glyph_row
->contains_overlapping_glyphs_p
= 1;
21416 it
->pixel_width
= cmp
->pixel_width
;
21417 it
->ascent
= it
->phys_ascent
= cmp
->ascent
;
21418 it
->descent
= it
->phys_descent
= cmp
->descent
;
21419 if (face
->box
!= FACE_NO_BOX
)
21421 int thick
= face
->box_line_width
;
21425 it
->ascent
+= thick
;
21426 it
->descent
+= thick
;
21431 if (it
->start_of_box_run_p
)
21432 it
->pixel_width
+= thick
;
21433 if (it
->end_of_box_run_p
)
21434 it
->pixel_width
+= thick
;
21437 /* If face has an overline, add the height of the overline
21438 (1 pixel) and a 1 pixel margin to the character height. */
21439 if (face
->overline_p
)
21440 it
->ascent
+= overline_margin
;
21442 take_vertical_position_into_account (it
);
21443 if (it
->ascent
< 0)
21445 if (it
->descent
< 0)
21449 append_composite_glyph (it
);
21451 else if (it
->what
== IT_IMAGE
)
21452 produce_image_glyph (it
);
21453 else if (it
->what
== IT_STRETCH
)
21454 produce_stretch_glyph (it
);
21456 /* Accumulate dimensions. Note: can't assume that it->descent > 0
21457 because this isn't true for images with `:ascent 100'. */
21458 xassert (it
->ascent
>= 0 && it
->descent
>= 0);
21459 if (it
->area
== TEXT_AREA
)
21460 it
->current_x
+= it
->pixel_width
;
21462 if (extra_line_spacing
> 0)
21464 it
->descent
+= extra_line_spacing
;
21465 if (extra_line_spacing
> it
->max_extra_line_spacing
)
21466 it
->max_extra_line_spacing
= extra_line_spacing
;
21469 it
->max_ascent
= max (it
->max_ascent
, it
->ascent
);
21470 it
->max_descent
= max (it
->max_descent
, it
->descent
);
21471 it
->max_phys_ascent
= max (it
->max_phys_ascent
, it
->phys_ascent
);
21472 it
->max_phys_descent
= max (it
->max_phys_descent
, it
->phys_descent
);
21476 Output LEN glyphs starting at START at the nominal cursor position.
21477 Advance the nominal cursor over the text. The global variable
21478 updated_window contains the window being updated, updated_row is
21479 the glyph row being updated, and updated_area is the area of that
21480 row being updated. */
21483 x_write_glyphs (start
, len
)
21484 struct glyph
*start
;
21489 xassert (updated_window
&& updated_row
);
21492 /* Write glyphs. */
21494 hpos
= start
- updated_row
->glyphs
[updated_area
];
21495 x
= draw_glyphs (updated_window
, output_cursor
.x
,
21496 updated_row
, updated_area
,
21498 DRAW_NORMAL_TEXT
, 0);
21500 /* Invalidate old phys cursor if the glyph at its hpos is redrawn. */
21501 if (updated_area
== TEXT_AREA
21502 && updated_window
->phys_cursor_on_p
21503 && updated_window
->phys_cursor
.vpos
== output_cursor
.vpos
21504 && updated_window
->phys_cursor
.hpos
>= hpos
21505 && updated_window
->phys_cursor
.hpos
< hpos
+ len
)
21506 updated_window
->phys_cursor_on_p
= 0;
21510 /* Advance the output cursor. */
21511 output_cursor
.hpos
+= len
;
21512 output_cursor
.x
= x
;
21517 Insert LEN glyphs from START at the nominal cursor position. */
21520 x_insert_glyphs (start
, len
)
21521 struct glyph
*start
;
21526 int line_height
, shift_by_width
, shifted_region_width
;
21527 struct glyph_row
*row
;
21528 struct glyph
*glyph
;
21529 int frame_x
, frame_y
;
21532 xassert (updated_window
&& updated_row
);
21534 w
= updated_window
;
21535 f
= XFRAME (WINDOW_FRAME (w
));
21537 /* Get the height of the line we are in. */
21539 line_height
= row
->height
;
21541 /* Get the width of the glyphs to insert. */
21542 shift_by_width
= 0;
21543 for (glyph
= start
; glyph
< start
+ len
; ++glyph
)
21544 shift_by_width
+= glyph
->pixel_width
;
21546 /* Get the width of the region to shift right. */
21547 shifted_region_width
= (window_box_width (w
, updated_area
)
21552 frame_x
= window_box_left (w
, updated_area
) + output_cursor
.x
;
21553 frame_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, output_cursor
.y
);
21555 FRAME_RIF (f
)->shift_glyphs_for_insert (f
, frame_x
, frame_y
, shifted_region_width
,
21556 line_height
, shift_by_width
);
21558 /* Write the glyphs. */
21559 hpos
= start
- row
->glyphs
[updated_area
];
21560 draw_glyphs (w
, output_cursor
.x
, row
, updated_area
,
21562 DRAW_NORMAL_TEXT
, 0);
21564 /* Advance the output cursor. */
21565 output_cursor
.hpos
+= len
;
21566 output_cursor
.x
+= shift_by_width
;
21572 Erase the current text line from the nominal cursor position
21573 (inclusive) to pixel column TO_X (exclusive). The idea is that
21574 everything from TO_X onward is already erased.
21576 TO_X is a pixel position relative to updated_area of
21577 updated_window. TO_X == -1 means clear to the end of this area. */
21580 x_clear_end_of_line (to_x
)
21584 struct window
*w
= updated_window
;
21585 int max_x
, min_y
, max_y
;
21586 int from_x
, from_y
, to_y
;
21588 xassert (updated_window
&& updated_row
);
21589 f
= XFRAME (w
->frame
);
21591 if (updated_row
->full_width_p
)
21592 max_x
= WINDOW_TOTAL_WIDTH (w
);
21594 max_x
= window_box_width (w
, updated_area
);
21595 max_y
= window_text_bottom_y (w
);
21597 /* TO_X == 0 means don't do anything. TO_X < 0 means clear to end
21598 of window. For TO_X > 0, truncate to end of drawing area. */
21604 to_x
= min (to_x
, max_x
);
21606 to_y
= min (max_y
, output_cursor
.y
+ updated_row
->height
);
21608 /* Notice if the cursor will be cleared by this operation. */
21609 if (!updated_row
->full_width_p
)
21610 notice_overwritten_cursor (w
, updated_area
,
21611 output_cursor
.x
, -1,
21613 MATRIX_ROW_BOTTOM_Y (updated_row
));
21615 from_x
= output_cursor
.x
;
21617 /* Translate to frame coordinates. */
21618 if (updated_row
->full_width_p
)
21620 from_x
= WINDOW_TO_FRAME_PIXEL_X (w
, from_x
);
21621 to_x
= WINDOW_TO_FRAME_PIXEL_X (w
, to_x
);
21625 int area_left
= window_box_left (w
, updated_area
);
21626 from_x
+= area_left
;
21630 min_y
= WINDOW_HEADER_LINE_HEIGHT (w
);
21631 from_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, max (min_y
, output_cursor
.y
));
21632 to_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, to_y
);
21634 /* Prevent inadvertently clearing to end of the X window. */
21635 if (to_x
> from_x
&& to_y
> from_y
)
21638 FRAME_RIF (f
)->clear_frame_area (f
, from_x
, from_y
,
21639 to_x
- from_x
, to_y
- from_y
);
21644 #endif /* HAVE_WINDOW_SYSTEM */
21648 /***********************************************************************
21650 ***********************************************************************/
21652 /* Value is the internal representation of the specified cursor type
21653 ARG. If type is BAR_CURSOR, return in *WIDTH the specified width
21654 of the bar cursor. */
21656 static enum text_cursor_kinds
21657 get_specified_cursor_type (arg
, width
)
21661 enum text_cursor_kinds type
;
21666 if (EQ (arg
, Qbox
))
21667 return FILLED_BOX_CURSOR
;
21669 if (EQ (arg
, Qhollow
))
21670 return HOLLOW_BOX_CURSOR
;
21672 if (EQ (arg
, Qbar
))
21679 && EQ (XCAR (arg
), Qbar
)
21680 && INTEGERP (XCDR (arg
))
21681 && XINT (XCDR (arg
)) >= 0)
21683 *width
= XINT (XCDR (arg
));
21687 if (EQ (arg
, Qhbar
))
21690 return HBAR_CURSOR
;
21694 && EQ (XCAR (arg
), Qhbar
)
21695 && INTEGERP (XCDR (arg
))
21696 && XINT (XCDR (arg
)) >= 0)
21698 *width
= XINT (XCDR (arg
));
21699 return HBAR_CURSOR
;
21702 /* Treat anything unknown as "hollow box cursor".
21703 It was bad to signal an error; people have trouble fixing
21704 .Xdefaults with Emacs, when it has something bad in it. */
21705 type
= HOLLOW_BOX_CURSOR
;
21710 /* Set the default cursor types for specified frame. */
21712 set_frame_cursor_types (f
, arg
)
21719 FRAME_DESIRED_CURSOR (f
) = get_specified_cursor_type (arg
, &width
);
21720 FRAME_CURSOR_WIDTH (f
) = width
;
21722 /* By default, set up the blink-off state depending on the on-state. */
21724 tem
= Fassoc (arg
, Vblink_cursor_alist
);
21727 FRAME_BLINK_OFF_CURSOR (f
)
21728 = get_specified_cursor_type (XCDR (tem
), &width
);
21729 FRAME_BLINK_OFF_CURSOR_WIDTH (f
) = width
;
21732 FRAME_BLINK_OFF_CURSOR (f
) = DEFAULT_CURSOR
;
21736 /* Return the cursor we want to be displayed in window W. Return
21737 width of bar/hbar cursor through WIDTH arg. Return with
21738 ACTIVE_CURSOR arg set to 1 if cursor in window W is `active'
21739 (i.e. if the `system caret' should track this cursor).
21741 In a mini-buffer window, we want the cursor only to appear if we
21742 are reading input from this window. For the selected window, we
21743 want the cursor type given by the frame parameter or buffer local
21744 setting of cursor-type. If explicitly marked off, draw no cursor.
21745 In all other cases, we want a hollow box cursor. */
21747 static enum text_cursor_kinds
21748 get_window_cursor_type (w
, glyph
, width
, active_cursor
)
21750 struct glyph
*glyph
;
21752 int *active_cursor
;
21754 struct frame
*f
= XFRAME (w
->frame
);
21755 struct buffer
*b
= XBUFFER (w
->buffer
);
21756 int cursor_type
= DEFAULT_CURSOR
;
21757 Lisp_Object alt_cursor
;
21758 int non_selected
= 0;
21760 *active_cursor
= 1;
21763 if (cursor_in_echo_area
21764 && FRAME_HAS_MINIBUF_P (f
)
21765 && EQ (FRAME_MINIBUF_WINDOW (f
), echo_area_window
))
21767 if (w
== XWINDOW (echo_area_window
))
21769 if (EQ (b
->cursor_type
, Qt
) || NILP (b
->cursor_type
))
21771 *width
= FRAME_CURSOR_WIDTH (f
);
21772 return FRAME_DESIRED_CURSOR (f
);
21775 return get_specified_cursor_type (b
->cursor_type
, width
);
21778 *active_cursor
= 0;
21782 /* Detect a nonselected window or nonselected frame. */
21783 else if (w
!= XWINDOW (f
->selected_window
)
21784 #ifdef HAVE_WINDOW_SYSTEM
21785 || f
!= FRAME_X_DISPLAY_INFO (f
)->x_highlight_frame
21789 *active_cursor
= 0;
21791 if (MINI_WINDOW_P (w
) && minibuf_level
== 0)
21797 /* Never display a cursor in a window in which cursor-type is nil. */
21798 if (NILP (b
->cursor_type
))
21801 /* Get the normal cursor type for this window. */
21802 if (EQ (b
->cursor_type
, Qt
))
21804 cursor_type
= FRAME_DESIRED_CURSOR (f
);
21805 *width
= FRAME_CURSOR_WIDTH (f
);
21808 cursor_type
= get_specified_cursor_type (b
->cursor_type
, width
);
21810 /* Use cursor-in-non-selected-windows instead
21811 for non-selected window or frame. */
21814 alt_cursor
= b
->cursor_in_non_selected_windows
;
21815 if (!EQ (Qt
, alt_cursor
))
21816 return get_specified_cursor_type (alt_cursor
, width
);
21817 /* t means modify the normal cursor type. */
21818 if (cursor_type
== FILLED_BOX_CURSOR
)
21819 cursor_type
= HOLLOW_BOX_CURSOR
;
21820 else if (cursor_type
== BAR_CURSOR
&& *width
> 1)
21822 return cursor_type
;
21825 /* Use normal cursor if not blinked off. */
21826 if (!w
->cursor_off_p
)
21828 #ifdef HAVE_WINDOW_SYSTEM
21829 if (glyph
!= NULL
&& glyph
->type
== IMAGE_GLYPH
)
21831 if (cursor_type
== FILLED_BOX_CURSOR
)
21833 /* Using a block cursor on large images can be very annoying.
21834 So use a hollow cursor for "large" images.
21835 If image is not transparent (no mask), also use hollow cursor. */
21836 struct image
*img
= IMAGE_FROM_ID (f
, glyph
->u
.img_id
);
21837 if (img
!= NULL
&& IMAGEP (img
->spec
))
21839 /* Arbitrarily, interpret "Large" as >32x32 and >NxN
21840 where N = size of default frame font size.
21841 This should cover most of the "tiny" icons people may use. */
21843 || img
->width
> max (32, WINDOW_FRAME_COLUMN_WIDTH (w
))
21844 || img
->height
> max (32, WINDOW_FRAME_LINE_HEIGHT (w
)))
21845 cursor_type
= HOLLOW_BOX_CURSOR
;
21848 else if (cursor_type
!= NO_CURSOR
)
21850 /* Display current only supports BOX and HOLLOW cursors for images.
21851 So for now, unconditionally use a HOLLOW cursor when cursor is
21852 not a solid box cursor. */
21853 cursor_type
= HOLLOW_BOX_CURSOR
;
21857 return cursor_type
;
21860 /* Cursor is blinked off, so determine how to "toggle" it. */
21862 /* First look for an entry matching the buffer's cursor-type in blink-cursor-alist. */
21863 if ((alt_cursor
= Fassoc (b
->cursor_type
, Vblink_cursor_alist
), !NILP (alt_cursor
)))
21864 return get_specified_cursor_type (XCDR (alt_cursor
), width
);
21866 /* Then see if frame has specified a specific blink off cursor type. */
21867 if (FRAME_BLINK_OFF_CURSOR (f
) != DEFAULT_CURSOR
)
21869 *width
= FRAME_BLINK_OFF_CURSOR_WIDTH (f
);
21870 return FRAME_BLINK_OFF_CURSOR (f
);
21874 /* Some people liked having a permanently visible blinking cursor,
21875 while others had very strong opinions against it. So it was
21876 decided to remove it. KFS 2003-09-03 */
21878 /* Finally perform built-in cursor blinking:
21879 filled box <-> hollow box
21880 wide [h]bar <-> narrow [h]bar
21881 narrow [h]bar <-> no cursor
21882 other type <-> no cursor */
21884 if (cursor_type
== FILLED_BOX_CURSOR
)
21885 return HOLLOW_BOX_CURSOR
;
21887 if ((cursor_type
== BAR_CURSOR
|| cursor_type
== HBAR_CURSOR
) && *width
> 1)
21890 return cursor_type
;
21898 #ifdef HAVE_WINDOW_SYSTEM
21900 /* Notice when the text cursor of window W has been completely
21901 overwritten by a drawing operation that outputs glyphs in AREA
21902 starting at X0 and ending at X1 in the line starting at Y0 and
21903 ending at Y1. X coordinates are area-relative. X1 < 0 means all
21904 the rest of the line after X0 has been written. Y coordinates
21905 are window-relative. */
21908 notice_overwritten_cursor (w
, area
, x0
, x1
, y0
, y1
)
21910 enum glyph_row_area area
;
21911 int x0
, y0
, x1
, y1
;
21913 int cx0
, cx1
, cy0
, cy1
;
21914 struct glyph_row
*row
;
21916 if (!w
->phys_cursor_on_p
)
21918 if (area
!= TEXT_AREA
)
21921 if (w
->phys_cursor
.vpos
< 0
21922 || w
->phys_cursor
.vpos
>= w
->current_matrix
->nrows
21923 || (row
= w
->current_matrix
->rows
+ w
->phys_cursor
.vpos
,
21924 !(row
->enabled_p
&& row
->displays_text_p
)))
21927 if (row
->cursor_in_fringe_p
)
21929 row
->cursor_in_fringe_p
= 0;
21930 draw_fringe_bitmap (w
, row
, 0);
21931 w
->phys_cursor_on_p
= 0;
21935 cx0
= w
->phys_cursor
.x
;
21936 cx1
= cx0
+ w
->phys_cursor_width
;
21937 if (x0
> cx0
|| (x1
>= 0 && x1
< cx1
))
21940 /* The cursor image will be completely removed from the
21941 screen if the output area intersects the cursor area in
21942 y-direction. When we draw in [y0 y1[, and some part of
21943 the cursor is at y < y0, that part must have been drawn
21944 before. When scrolling, the cursor is erased before
21945 actually scrolling, so we don't come here. When not
21946 scrolling, the rows above the old cursor row must have
21947 changed, and in this case these rows must have written
21948 over the cursor image.
21950 Likewise if part of the cursor is below y1, with the
21951 exception of the cursor being in the first blank row at
21952 the buffer and window end because update_text_area
21953 doesn't draw that row. (Except when it does, but
21954 that's handled in update_text_area.) */
21956 cy0
= w
->phys_cursor
.y
;
21957 cy1
= cy0
+ w
->phys_cursor_height
;
21958 if ((y0
< cy0
|| y0
>= cy1
) && (y1
<= cy0
|| y1
>= cy1
))
21961 w
->phys_cursor_on_p
= 0;
21964 #endif /* HAVE_WINDOW_SYSTEM */
21967 /************************************************************************
21969 ************************************************************************/
21971 #ifdef HAVE_WINDOW_SYSTEM
21974 Fix the display of area AREA of overlapping row ROW in window W
21975 with respect to the overlapping part OVERLAPS. */
21978 x_fix_overlapping_area (w
, row
, area
, overlaps
)
21980 struct glyph_row
*row
;
21981 enum glyph_row_area area
;
21989 for (i
= 0; i
< row
->used
[area
];)
21991 if (row
->glyphs
[area
][i
].overlaps_vertically_p
)
21993 int start
= i
, start_x
= x
;
21997 x
+= row
->glyphs
[area
][i
].pixel_width
;
22000 while (i
< row
->used
[area
]
22001 && row
->glyphs
[area
][i
].overlaps_vertically_p
);
22003 draw_glyphs (w
, start_x
, row
, area
,
22005 DRAW_NORMAL_TEXT
, overlaps
);
22009 x
+= row
->glyphs
[area
][i
].pixel_width
;
22019 Draw the cursor glyph of window W in glyph row ROW. See the
22020 comment of draw_glyphs for the meaning of HL. */
22023 draw_phys_cursor_glyph (w
, row
, hl
)
22025 struct glyph_row
*row
;
22026 enum draw_glyphs_face hl
;
22028 /* If cursor hpos is out of bounds, don't draw garbage. This can
22029 happen in mini-buffer windows when switching between echo area
22030 glyphs and mini-buffer. */
22031 if (w
->phys_cursor
.hpos
< row
->used
[TEXT_AREA
])
22033 int on_p
= w
->phys_cursor_on_p
;
22035 x1
= draw_glyphs (w
, w
->phys_cursor
.x
, row
, TEXT_AREA
,
22036 w
->phys_cursor
.hpos
, w
->phys_cursor
.hpos
+ 1,
22038 w
->phys_cursor_on_p
= on_p
;
22040 if (hl
== DRAW_CURSOR
)
22041 w
->phys_cursor_width
= x1
- w
->phys_cursor
.x
;
22042 /* When we erase the cursor, and ROW is overlapped by other
22043 rows, make sure that these overlapping parts of other rows
22045 else if (hl
== DRAW_NORMAL_TEXT
&& row
->overlapped_p
)
22047 w
->phys_cursor_width
= x1
- w
->phys_cursor
.x
;
22049 if (row
> w
->current_matrix
->rows
22050 && MATRIX_ROW_OVERLAPS_SUCC_P (row
- 1))
22051 x_fix_overlapping_area (w
, row
- 1, TEXT_AREA
,
22052 OVERLAPS_ERASED_CURSOR
);
22054 if (MATRIX_ROW_BOTTOM_Y (row
) < window_text_bottom_y (w
)
22055 && MATRIX_ROW_OVERLAPS_PRED_P (row
+ 1))
22056 x_fix_overlapping_area (w
, row
+ 1, TEXT_AREA
,
22057 OVERLAPS_ERASED_CURSOR
);
22064 Erase the image of a cursor of window W from the screen. */
22067 erase_phys_cursor (w
)
22070 struct frame
*f
= XFRAME (w
->frame
);
22071 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
22072 int hpos
= w
->phys_cursor
.hpos
;
22073 int vpos
= w
->phys_cursor
.vpos
;
22074 int mouse_face_here_p
= 0;
22075 struct glyph_matrix
*active_glyphs
= w
->current_matrix
;
22076 struct glyph_row
*cursor_row
;
22077 struct glyph
*cursor_glyph
;
22078 enum draw_glyphs_face hl
;
22080 /* No cursor displayed or row invalidated => nothing to do on the
22082 if (w
->phys_cursor_type
== NO_CURSOR
)
22083 goto mark_cursor_off
;
22085 /* VPOS >= active_glyphs->nrows means that window has been resized.
22086 Don't bother to erase the cursor. */
22087 if (vpos
>= active_glyphs
->nrows
)
22088 goto mark_cursor_off
;
22090 /* If row containing cursor is marked invalid, there is nothing we
22092 cursor_row
= MATRIX_ROW (active_glyphs
, vpos
);
22093 if (!cursor_row
->enabled_p
)
22094 goto mark_cursor_off
;
22096 /* If line spacing is > 0, old cursor may only be partially visible in
22097 window after split-window. So adjust visible height. */
22098 cursor_row
->visible_height
= min (cursor_row
->visible_height
,
22099 window_text_bottom_y (w
) - cursor_row
->y
);
22101 /* If row is completely invisible, don't attempt to delete a cursor which
22102 isn't there. This can happen if cursor is at top of a window, and
22103 we switch to a buffer with a header line in that window. */
22104 if (cursor_row
->visible_height
<= 0)
22105 goto mark_cursor_off
;
22107 /* If cursor is in the fringe, erase by drawing actual bitmap there. */
22108 if (cursor_row
->cursor_in_fringe_p
)
22110 cursor_row
->cursor_in_fringe_p
= 0;
22111 draw_fringe_bitmap (w
, cursor_row
, 0);
22112 goto mark_cursor_off
;
22115 /* This can happen when the new row is shorter than the old one.
22116 In this case, either draw_glyphs or clear_end_of_line
22117 should have cleared the cursor. Note that we wouldn't be
22118 able to erase the cursor in this case because we don't have a
22119 cursor glyph at hand. */
22120 if (w
->phys_cursor
.hpos
>= cursor_row
->used
[TEXT_AREA
])
22121 goto mark_cursor_off
;
22123 /* If the cursor is in the mouse face area, redisplay that when
22124 we clear the cursor. */
22125 if (! NILP (dpyinfo
->mouse_face_window
)
22126 && w
== XWINDOW (dpyinfo
->mouse_face_window
)
22127 && (vpos
> dpyinfo
->mouse_face_beg_row
22128 || (vpos
== dpyinfo
->mouse_face_beg_row
22129 && hpos
>= dpyinfo
->mouse_face_beg_col
))
22130 && (vpos
< dpyinfo
->mouse_face_end_row
22131 || (vpos
== dpyinfo
->mouse_face_end_row
22132 && hpos
< dpyinfo
->mouse_face_end_col
))
22133 /* Don't redraw the cursor's spot in mouse face if it is at the
22134 end of a line (on a newline). The cursor appears there, but
22135 mouse highlighting does not. */
22136 && cursor_row
->used
[TEXT_AREA
] > hpos
)
22137 mouse_face_here_p
= 1;
22139 /* Maybe clear the display under the cursor. */
22140 if (w
->phys_cursor_type
== HOLLOW_BOX_CURSOR
)
22143 int header_line_height
= WINDOW_HEADER_LINE_HEIGHT (w
);
22146 cursor_glyph
= get_phys_cursor_glyph (w
);
22147 if (cursor_glyph
== NULL
)
22148 goto mark_cursor_off
;
22150 width
= cursor_glyph
->pixel_width
;
22151 left_x
= window_box_left_offset (w
, TEXT_AREA
);
22152 x
= w
->phys_cursor
.x
;
22154 width
-= left_x
- x
;
22155 width
= min (width
, window_box_width (w
, TEXT_AREA
) - x
);
22156 y
= WINDOW_TO_FRAME_PIXEL_Y (w
, max (header_line_height
, cursor_row
->y
));
22157 x
= WINDOW_TEXT_TO_FRAME_PIXEL_X (w
, max (x
, left_x
));
22160 FRAME_RIF (f
)->clear_frame_area (f
, x
, y
, width
, cursor_row
->visible_height
);
22163 /* Erase the cursor by redrawing the character underneath it. */
22164 if (mouse_face_here_p
)
22165 hl
= DRAW_MOUSE_FACE
;
22167 hl
= DRAW_NORMAL_TEXT
;
22168 draw_phys_cursor_glyph (w
, cursor_row
, hl
);
22171 w
->phys_cursor_on_p
= 0;
22172 w
->phys_cursor_type
= NO_CURSOR
;
22177 Display or clear cursor of window W. If ON is zero, clear the
22178 cursor. If it is non-zero, display the cursor. If ON is nonzero,
22179 where to put the cursor is specified by HPOS, VPOS, X and Y. */
22182 display_and_set_cursor (w
, on
, hpos
, vpos
, x
, y
)
22184 int on
, hpos
, vpos
, x
, y
;
22186 struct frame
*f
= XFRAME (w
->frame
);
22187 int new_cursor_type
;
22188 int new_cursor_width
;
22190 struct glyph_row
*glyph_row
;
22191 struct glyph
*glyph
;
22193 /* This is pointless on invisible frames, and dangerous on garbaged
22194 windows and frames; in the latter case, the frame or window may
22195 be in the midst of changing its size, and x and y may be off the
22197 if (! FRAME_VISIBLE_P (f
)
22198 || FRAME_GARBAGED_P (f
)
22199 || vpos
>= w
->current_matrix
->nrows
22200 || hpos
>= w
->current_matrix
->matrix_w
)
22203 /* If cursor is off and we want it off, return quickly. */
22204 if (!on
&& !w
->phys_cursor_on_p
)
22207 glyph_row
= MATRIX_ROW (w
->current_matrix
, vpos
);
22208 /* If cursor row is not enabled, we don't really know where to
22209 display the cursor. */
22210 if (!glyph_row
->enabled_p
)
22212 w
->phys_cursor_on_p
= 0;
22217 if (!glyph_row
->exact_window_width_line_p
22218 || hpos
< glyph_row
->used
[TEXT_AREA
])
22219 glyph
= glyph_row
->glyphs
[TEXT_AREA
] + hpos
;
22221 xassert (interrupt_input_blocked
);
22223 /* Set new_cursor_type to the cursor we want to be displayed. */
22224 new_cursor_type
= get_window_cursor_type (w
, glyph
,
22225 &new_cursor_width
, &active_cursor
);
22227 /* If cursor is currently being shown and we don't want it to be or
22228 it is in the wrong place, or the cursor type is not what we want,
22230 if (w
->phys_cursor_on_p
22232 || w
->phys_cursor
.x
!= x
22233 || w
->phys_cursor
.y
!= y
22234 || new_cursor_type
!= w
->phys_cursor_type
22235 || ((new_cursor_type
== BAR_CURSOR
|| new_cursor_type
== HBAR_CURSOR
)
22236 && new_cursor_width
!= w
->phys_cursor_width
)))
22237 erase_phys_cursor (w
);
22239 /* Don't check phys_cursor_on_p here because that flag is only set
22240 to zero in some cases where we know that the cursor has been
22241 completely erased, to avoid the extra work of erasing the cursor
22242 twice. In other words, phys_cursor_on_p can be 1 and the cursor
22243 still not be visible, or it has only been partly erased. */
22246 w
->phys_cursor_ascent
= glyph_row
->ascent
;
22247 w
->phys_cursor_height
= glyph_row
->height
;
22249 /* Set phys_cursor_.* before x_draw_.* is called because some
22250 of them may need the information. */
22251 w
->phys_cursor
.x
= x
;
22252 w
->phys_cursor
.y
= glyph_row
->y
;
22253 w
->phys_cursor
.hpos
= hpos
;
22254 w
->phys_cursor
.vpos
= vpos
;
22257 FRAME_RIF (f
)->draw_window_cursor (w
, glyph_row
, x
, y
,
22258 new_cursor_type
, new_cursor_width
,
22259 on
, active_cursor
);
22263 /* Switch the display of W's cursor on or off, according to the value
22267 update_window_cursor (w
, on
)
22271 /* Don't update cursor in windows whose frame is in the process
22272 of being deleted. */
22273 if (w
->current_matrix
)
22276 display_and_set_cursor (w
, on
, w
->phys_cursor
.hpos
, w
->phys_cursor
.vpos
,
22277 w
->phys_cursor
.x
, w
->phys_cursor
.y
);
22283 /* Call update_window_cursor with parameter ON_P on all leaf windows
22284 in the window tree rooted at W. */
22287 update_cursor_in_window_tree (w
, on_p
)
22293 if (!NILP (w
->hchild
))
22294 update_cursor_in_window_tree (XWINDOW (w
->hchild
), on_p
);
22295 else if (!NILP (w
->vchild
))
22296 update_cursor_in_window_tree (XWINDOW (w
->vchild
), on_p
);
22298 update_window_cursor (w
, on_p
);
22300 w
= NILP (w
->next
) ? 0 : XWINDOW (w
->next
);
22306 Display the cursor on window W, or clear it, according to ON_P.
22307 Don't change the cursor's position. */
22310 x_update_cursor (f
, on_p
)
22314 update_cursor_in_window_tree (XWINDOW (f
->root_window
), on_p
);
22319 Clear the cursor of window W to background color, and mark the
22320 cursor as not shown. This is used when the text where the cursor
22321 is is about to be rewritten. */
22327 if (FRAME_VISIBLE_P (XFRAME (w
->frame
)) && w
->phys_cursor_on_p
)
22328 update_window_cursor (w
, 0);
22333 Display the active region described by mouse_face_* according to DRAW. */
22336 show_mouse_face (dpyinfo
, draw
)
22337 Display_Info
*dpyinfo
;
22338 enum draw_glyphs_face draw
;
22340 struct window
*w
= XWINDOW (dpyinfo
->mouse_face_window
);
22341 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
22343 if (/* If window is in the process of being destroyed, don't bother
22345 w
->current_matrix
!= NULL
22346 /* Don't update mouse highlight if hidden */
22347 && (draw
!= DRAW_MOUSE_FACE
|| !dpyinfo
->mouse_face_hidden
)
22348 /* Recognize when we are called to operate on rows that don't exist
22349 anymore. This can happen when a window is split. */
22350 && dpyinfo
->mouse_face_end_row
< w
->current_matrix
->nrows
)
22352 int phys_cursor_on_p
= w
->phys_cursor_on_p
;
22353 struct glyph_row
*row
, *first
, *last
;
22355 first
= MATRIX_ROW (w
->current_matrix
, dpyinfo
->mouse_face_beg_row
);
22356 last
= MATRIX_ROW (w
->current_matrix
, dpyinfo
->mouse_face_end_row
);
22358 for (row
= first
; row
<= last
&& row
->enabled_p
; ++row
)
22360 int start_hpos
, end_hpos
, start_x
;
22362 /* For all but the first row, the highlight starts at column 0. */
22365 start_hpos
= dpyinfo
->mouse_face_beg_col
;
22366 start_x
= dpyinfo
->mouse_face_beg_x
;
22375 end_hpos
= dpyinfo
->mouse_face_end_col
;
22378 end_hpos
= row
->used
[TEXT_AREA
];
22379 if (draw
== DRAW_NORMAL_TEXT
)
22380 row
->fill_line_p
= 1; /* Clear to end of line */
22383 if (end_hpos
> start_hpos
)
22385 draw_glyphs (w
, start_x
, row
, TEXT_AREA
,
22386 start_hpos
, end_hpos
,
22390 = draw
== DRAW_MOUSE_FACE
|| draw
== DRAW_IMAGE_RAISED
;
22394 /* When we've written over the cursor, arrange for it to
22395 be displayed again. */
22396 if (phys_cursor_on_p
&& !w
->phys_cursor_on_p
)
22399 display_and_set_cursor (w
, 1,
22400 w
->phys_cursor
.hpos
, w
->phys_cursor
.vpos
,
22401 w
->phys_cursor
.x
, w
->phys_cursor
.y
);
22406 /* Change the mouse cursor. */
22407 if (draw
== DRAW_NORMAL_TEXT
&& !EQ (dpyinfo
->mouse_face_window
, f
->tool_bar_window
))
22408 FRAME_RIF (f
)->define_frame_cursor (f
, FRAME_X_OUTPUT (f
)->text_cursor
);
22409 else if (draw
== DRAW_MOUSE_FACE
)
22410 FRAME_RIF (f
)->define_frame_cursor (f
, FRAME_X_OUTPUT (f
)->hand_cursor
);
22412 FRAME_RIF (f
)->define_frame_cursor (f
, FRAME_X_OUTPUT (f
)->nontext_cursor
);
22416 Clear out the mouse-highlighted active region.
22417 Redraw it un-highlighted first. Value is non-zero if mouse
22418 face was actually drawn unhighlighted. */
22421 clear_mouse_face (dpyinfo
)
22422 Display_Info
*dpyinfo
;
22426 if (!dpyinfo
->mouse_face_hidden
&& !NILP (dpyinfo
->mouse_face_window
))
22428 show_mouse_face (dpyinfo
, DRAW_NORMAL_TEXT
);
22432 dpyinfo
->mouse_face_beg_row
= dpyinfo
->mouse_face_beg_col
= -1;
22433 dpyinfo
->mouse_face_end_row
= dpyinfo
->mouse_face_end_col
= -1;
22434 dpyinfo
->mouse_face_window
= Qnil
;
22435 dpyinfo
->mouse_face_overlay
= Qnil
;
22441 Non-zero if physical cursor of window W is within mouse face. */
22444 cursor_in_mouse_face_p (w
)
22447 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (XFRAME (w
->frame
));
22448 int in_mouse_face
= 0;
22450 if (WINDOWP (dpyinfo
->mouse_face_window
)
22451 && XWINDOW (dpyinfo
->mouse_face_window
) == w
)
22453 int hpos
= w
->phys_cursor
.hpos
;
22454 int vpos
= w
->phys_cursor
.vpos
;
22456 if (vpos
>= dpyinfo
->mouse_face_beg_row
22457 && vpos
<= dpyinfo
->mouse_face_end_row
22458 && (vpos
> dpyinfo
->mouse_face_beg_row
22459 || hpos
>= dpyinfo
->mouse_face_beg_col
)
22460 && (vpos
< dpyinfo
->mouse_face_end_row
22461 || hpos
< dpyinfo
->mouse_face_end_col
22462 || dpyinfo
->mouse_face_past_end
))
22466 return in_mouse_face
;
22472 /* Find the glyph matrix position of buffer position CHARPOS in window
22473 *W. HPOS, *VPOS, *X, and *Y are set to the positions found. W's
22474 current glyphs must be up to date. If CHARPOS is above window
22475 start return (0, 0, 0, 0). If CHARPOS is after end of W, return end
22476 of last line in W. In the row containing CHARPOS, stop before glyphs
22477 having STOP as object. */
22479 #if 1 /* This is a version of fast_find_position that's more correct
22480 in the presence of hscrolling, for example. I didn't install
22481 it right away because the problem fixed is minor, it failed
22482 in 20.x as well, and I think it's too risky to install
22483 so near the release of 21.1. 2001-09-25 gerd. */
22486 fast_find_position (w
, charpos
, hpos
, vpos
, x
, y
, stop
)
22489 int *hpos
, *vpos
, *x
, *y
;
22492 struct glyph_row
*row
, *first
;
22493 struct glyph
*glyph
, *end
;
22496 first
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
22497 if (charpos
< MATRIX_ROW_START_CHARPOS (first
))
22502 *vpos
= MATRIX_ROW_VPOS (first
, w
->current_matrix
);
22506 row
= row_containing_pos (w
, charpos
, first
, NULL
, 0);
22509 row
= MATRIX_ROW (w
->current_matrix
, XFASTINT (w
->window_end_vpos
));
22513 /* If whole rows or last part of a row came from a display overlay,
22514 row_containing_pos will skip over such rows because their end pos
22515 equals the start pos of the overlay or interval.
22517 Move back if we have a STOP object and previous row's
22518 end glyph came from STOP. */
22521 struct glyph_row
*prev
;
22522 while ((prev
= row
- 1, prev
>= first
)
22523 && MATRIX_ROW_END_CHARPOS (prev
) == charpos
22524 && prev
->used
[TEXT_AREA
] > 0)
22526 struct glyph
*beg
= prev
->glyphs
[TEXT_AREA
];
22527 glyph
= beg
+ prev
->used
[TEXT_AREA
];
22528 while (--glyph
>= beg
22529 && INTEGERP (glyph
->object
));
22531 || !EQ (stop
, glyph
->object
))
22539 *vpos
= MATRIX_ROW_VPOS (row
, w
->current_matrix
);
22541 glyph
= row
->glyphs
[TEXT_AREA
];
22542 end
= glyph
+ row
->used
[TEXT_AREA
];
22544 /* Skip over glyphs not having an object at the start of the row.
22545 These are special glyphs like truncation marks on terminal
22547 if (row
->displays_text_p
)
22549 && INTEGERP (glyph
->object
)
22550 && !EQ (stop
, glyph
->object
)
22551 && glyph
->charpos
< 0)
22553 *x
+= glyph
->pixel_width
;
22558 && !INTEGERP (glyph
->object
)
22559 && !EQ (stop
, glyph
->object
)
22560 && (!BUFFERP (glyph
->object
)
22561 || glyph
->charpos
< charpos
))
22563 *x
+= glyph
->pixel_width
;
22567 *hpos
= glyph
- row
->glyphs
[TEXT_AREA
];
22574 fast_find_position (w
, pos
, hpos
, vpos
, x
, y
, stop
)
22577 int *hpos
, *vpos
, *x
, *y
;
22582 int maybe_next_line_p
= 0;
22583 int line_start_position
;
22584 int yb
= window_text_bottom_y (w
);
22585 struct glyph_row
*row
, *best_row
;
22586 int row_vpos
, best_row_vpos
;
22589 row
= best_row
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
22590 row_vpos
= best_row_vpos
= MATRIX_ROW_VPOS (row
, w
->current_matrix
);
22592 while (row
->y
< yb
)
22594 if (row
->used
[TEXT_AREA
])
22595 line_start_position
= row
->glyphs
[TEXT_AREA
]->charpos
;
22597 line_start_position
= 0;
22599 if (line_start_position
> pos
)
22601 /* If the position sought is the end of the buffer,
22602 don't include the blank lines at the bottom of the window. */
22603 else if (line_start_position
== pos
22604 && pos
== BUF_ZV (XBUFFER (w
->buffer
)))
22606 maybe_next_line_p
= 1;
22609 else if (line_start_position
> 0)
22612 best_row_vpos
= row_vpos
;
22615 if (row
->y
+ row
->height
>= yb
)
22622 /* Find the right column within BEST_ROW. */
22624 current_x
= best_row
->x
;
22625 for (i
= 0; i
< best_row
->used
[TEXT_AREA
]; i
++)
22627 struct glyph
*glyph
= best_row
->glyphs
[TEXT_AREA
] + i
;
22628 int charpos
= glyph
->charpos
;
22630 if (BUFFERP (glyph
->object
))
22632 if (charpos
== pos
)
22635 *vpos
= best_row_vpos
;
22640 else if (charpos
> pos
)
22643 else if (EQ (glyph
->object
, stop
))
22648 current_x
+= glyph
->pixel_width
;
22651 /* If we're looking for the end of the buffer,
22652 and we didn't find it in the line we scanned,
22653 use the start of the following line. */
22654 if (maybe_next_line_p
)
22659 current_x
= best_row
->x
;
22662 *vpos
= best_row_vpos
;
22663 *hpos
= lastcol
+ 1;
22672 /* Find the position of the glyph for position POS in OBJECT in
22673 window W's current matrix, and return in *X, *Y the pixel
22674 coordinates, and return in *HPOS, *VPOS the column/row of the glyph.
22676 RIGHT_P non-zero means return the position of the right edge of the
22677 glyph, RIGHT_P zero means return the left edge position.
22679 If no glyph for POS exists in the matrix, return the position of
22680 the glyph with the next smaller position that is in the matrix, if
22681 RIGHT_P is zero. If RIGHT_P is non-zero, and no glyph for POS
22682 exists in the matrix, return the position of the glyph with the
22683 next larger position in OBJECT.
22685 Value is non-zero if a glyph was found. */
22688 fast_find_string_pos (w
, pos
, object
, hpos
, vpos
, x
, y
, right_p
)
22691 Lisp_Object object
;
22692 int *hpos
, *vpos
, *x
, *y
;
22695 int yb
= window_text_bottom_y (w
);
22696 struct glyph_row
*r
;
22697 struct glyph
*best_glyph
= NULL
;
22698 struct glyph_row
*best_row
= NULL
;
22701 for (r
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
22702 r
->enabled_p
&& r
->y
< yb
;
22705 struct glyph
*g
= r
->glyphs
[TEXT_AREA
];
22706 struct glyph
*e
= g
+ r
->used
[TEXT_AREA
];
22709 for (gx
= r
->x
; g
< e
; gx
+= g
->pixel_width
, ++g
)
22710 if (EQ (g
->object
, object
))
22712 if (g
->charpos
== pos
)
22719 else if (best_glyph
== NULL
22720 || ((eabs (g
->charpos
- pos
)
22721 < eabs (best_glyph
->charpos
- pos
))
22724 : g
->charpos
> pos
)))
22738 *hpos
= best_glyph
- best_row
->glyphs
[TEXT_AREA
];
22742 *x
+= best_glyph
->pixel_width
;
22747 *vpos
= best_row
- w
->current_matrix
->rows
;
22750 return best_glyph
!= NULL
;
22754 /* See if position X, Y is within a hot-spot of an image. */
22757 on_hot_spot_p (hot_spot
, x
, y
)
22758 Lisp_Object hot_spot
;
22761 if (!CONSP (hot_spot
))
22764 if (EQ (XCAR (hot_spot
), Qrect
))
22766 /* CDR is (Top-Left . Bottom-Right) = ((x0 . y0) . (x1 . y1)) */
22767 Lisp_Object rect
= XCDR (hot_spot
);
22771 if (!CONSP (XCAR (rect
)))
22773 if (!CONSP (XCDR (rect
)))
22775 if (!(tem
= XCAR (XCAR (rect
)), INTEGERP (tem
) && x
>= XINT (tem
)))
22777 if (!(tem
= XCDR (XCAR (rect
)), INTEGERP (tem
) && y
>= XINT (tem
)))
22779 if (!(tem
= XCAR (XCDR (rect
)), INTEGERP (tem
) && x
<= XINT (tem
)))
22781 if (!(tem
= XCDR (XCDR (rect
)), INTEGERP (tem
) && y
<= XINT (tem
)))
22785 else if (EQ (XCAR (hot_spot
), Qcircle
))
22787 /* CDR is (Center . Radius) = ((x0 . y0) . r) */
22788 Lisp_Object circ
= XCDR (hot_spot
);
22789 Lisp_Object lr
, lx0
, ly0
;
22791 && CONSP (XCAR (circ
))
22792 && (lr
= XCDR (circ
), INTEGERP (lr
) || FLOATP (lr
))
22793 && (lx0
= XCAR (XCAR (circ
)), INTEGERP (lx0
))
22794 && (ly0
= XCDR (XCAR (circ
)), INTEGERP (ly0
)))
22796 double r
= XFLOATINT (lr
);
22797 double dx
= XINT (lx0
) - x
;
22798 double dy
= XINT (ly0
) - y
;
22799 return (dx
* dx
+ dy
* dy
<= r
* r
);
22802 else if (EQ (XCAR (hot_spot
), Qpoly
))
22804 /* CDR is [x0 y0 x1 y1 x2 y2 ...x(n-1) y(n-1)] */
22805 if (VECTORP (XCDR (hot_spot
)))
22807 struct Lisp_Vector
*v
= XVECTOR (XCDR (hot_spot
));
22808 Lisp_Object
*poly
= v
->contents
;
22812 Lisp_Object lx
, ly
;
22815 /* Need an even number of coordinates, and at least 3 edges. */
22816 if (n
< 6 || n
& 1)
22819 /* Count edge segments intersecting line from (X,Y) to (X,infinity).
22820 If count is odd, we are inside polygon. Pixels on edges
22821 may or may not be included depending on actual geometry of the
22823 if ((lx
= poly
[n
-2], !INTEGERP (lx
))
22824 || (ly
= poly
[n
-1], !INTEGERP (lx
)))
22826 x0
= XINT (lx
), y0
= XINT (ly
);
22827 for (i
= 0; i
< n
; i
+= 2)
22829 int x1
= x0
, y1
= y0
;
22830 if ((lx
= poly
[i
], !INTEGERP (lx
))
22831 || (ly
= poly
[i
+1], !INTEGERP (ly
)))
22833 x0
= XINT (lx
), y0
= XINT (ly
);
22835 /* Does this segment cross the X line? */
22843 if (y
> y0
&& y
> y1
)
22845 if (y
< y0
+ ((y1
- y0
) * (x
- x0
)) / (x1
- x0
))
22855 find_hot_spot (map
, x
, y
)
22859 while (CONSP (map
))
22861 if (CONSP (XCAR (map
))
22862 && on_hot_spot_p (XCAR (XCAR (map
)), x
, y
))
22870 DEFUN ("lookup-image-map", Flookup_image_map
, Slookup_image_map
,
22872 doc
: /* Lookup in image map MAP coordinates X and Y.
22873 An image map is an alist where each element has the format (AREA ID PLIST).
22874 An AREA is specified as either a rectangle, a circle, or a polygon:
22875 A rectangle is a cons (rect . ((x0 . y0) . (x1 . y1))) specifying the
22876 pixel coordinates of the upper left and bottom right corners.
22877 A circle is a cons (circle . ((x0 . y0) . r)) specifying the center
22878 and the radius of the circle; r may be a float or integer.
22879 A polygon is a cons (poly . [x0 y0 x1 y1 ...]) where each pair in the
22880 vector describes one corner in the polygon.
22881 Returns the alist element for the first matching AREA in MAP. */)
22892 return find_hot_spot (map
, XINT (x
), XINT (y
));
22896 /* Display frame CURSOR, optionally using shape defined by POINTER. */
22898 define_frame_cursor1 (f
, cursor
, pointer
)
22901 Lisp_Object pointer
;
22903 /* Do not change cursor shape while dragging mouse. */
22904 if (!NILP (do_mouse_tracking
))
22907 if (!NILP (pointer
))
22909 if (EQ (pointer
, Qarrow
))
22910 cursor
= FRAME_X_OUTPUT (f
)->nontext_cursor
;
22911 else if (EQ (pointer
, Qhand
))
22912 cursor
= FRAME_X_OUTPUT (f
)->hand_cursor
;
22913 else if (EQ (pointer
, Qtext
))
22914 cursor
= FRAME_X_OUTPUT (f
)->text_cursor
;
22915 else if (EQ (pointer
, intern ("hdrag")))
22916 cursor
= FRAME_X_OUTPUT (f
)->horizontal_drag_cursor
;
22917 #ifdef HAVE_X_WINDOWS
22918 else if (EQ (pointer
, intern ("vdrag")))
22919 cursor
= FRAME_X_DISPLAY_INFO (f
)->vertical_scroll_bar_cursor
;
22921 else if (EQ (pointer
, intern ("hourglass")))
22922 cursor
= FRAME_X_OUTPUT (f
)->hourglass_cursor
;
22923 else if (EQ (pointer
, Qmodeline
))
22924 cursor
= FRAME_X_OUTPUT (f
)->modeline_cursor
;
22926 cursor
= FRAME_X_OUTPUT (f
)->nontext_cursor
;
22929 if (cursor
!= No_Cursor
)
22930 FRAME_RIF (f
)->define_frame_cursor (f
, cursor
);
22933 /* Take proper action when mouse has moved to the mode or header line
22934 or marginal area AREA of window W, x-position X and y-position Y.
22935 X is relative to the start of the text display area of W, so the
22936 width of bitmap areas and scroll bars must be subtracted to get a
22937 position relative to the start of the mode line. */
22940 note_mode_line_or_margin_highlight (window
, x
, y
, area
)
22941 Lisp_Object window
;
22943 enum window_part area
;
22945 struct window
*w
= XWINDOW (window
);
22946 struct frame
*f
= XFRAME (w
->frame
);
22947 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
22948 Cursor cursor
= FRAME_X_OUTPUT (f
)->nontext_cursor
;
22949 Lisp_Object pointer
= Qnil
;
22950 int charpos
, dx
, dy
, width
, height
;
22951 Lisp_Object string
, object
= Qnil
;
22952 Lisp_Object pos
, help
;
22954 Lisp_Object mouse_face
;
22955 int original_x_pixel
= x
;
22956 struct glyph
* glyph
= NULL
, * row_start_glyph
= NULL
;
22957 struct glyph_row
*row
;
22959 if (area
== ON_MODE_LINE
|| area
== ON_HEADER_LINE
)
22964 string
= mode_line_string (w
, area
, &x
, &y
, &charpos
,
22965 &object
, &dx
, &dy
, &width
, &height
);
22967 row
= (area
== ON_MODE_LINE
22968 ? MATRIX_MODE_LINE_ROW (w
->current_matrix
)
22969 : MATRIX_HEADER_LINE_ROW (w
->current_matrix
));
22972 if (row
->mode_line_p
&& row
->enabled_p
)
22974 glyph
= row_start_glyph
= row
->glyphs
[TEXT_AREA
];
22975 end
= glyph
+ row
->used
[TEXT_AREA
];
22977 for (x0
= original_x_pixel
;
22978 glyph
< end
&& x0
>= glyph
->pixel_width
;
22980 x0
-= glyph
->pixel_width
;
22988 x
-= WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w
);
22989 string
= marginal_area_string (w
, area
, &x
, &y
, &charpos
,
22990 &object
, &dx
, &dy
, &width
, &height
);
22995 if (IMAGEP (object
))
22997 Lisp_Object image_map
, hotspot
;
22998 if ((image_map
= Fplist_get (XCDR (object
), QCmap
),
23000 && (hotspot
= find_hot_spot (image_map
, dx
, dy
),
23002 && (hotspot
= XCDR (hotspot
), CONSP (hotspot
)))
23004 Lisp_Object area_id
, plist
;
23006 area_id
= XCAR (hotspot
);
23007 /* Could check AREA_ID to see if we enter/leave this hot-spot.
23008 If so, we could look for mouse-enter, mouse-leave
23009 properties in PLIST (and do something...). */
23010 hotspot
= XCDR (hotspot
);
23011 if (CONSP (hotspot
)
23012 && (plist
= XCAR (hotspot
), CONSP (plist
)))
23014 pointer
= Fplist_get (plist
, Qpointer
);
23015 if (NILP (pointer
))
23017 help
= Fplist_get (plist
, Qhelp_echo
);
23020 help_echo_string
= help
;
23021 /* Is this correct? ++kfs */
23022 XSETWINDOW (help_echo_window
, w
);
23023 help_echo_object
= w
->buffer
;
23024 help_echo_pos
= charpos
;
23028 if (NILP (pointer
))
23029 pointer
= Fplist_get (XCDR (object
), QCpointer
);
23032 if (STRINGP (string
))
23034 pos
= make_number (charpos
);
23035 /* If we're on a string with `help-echo' text property, arrange
23036 for the help to be displayed. This is done by setting the
23037 global variable help_echo_string to the help string. */
23040 help
= Fget_text_property (pos
, Qhelp_echo
, string
);
23043 help_echo_string
= help
;
23044 XSETWINDOW (help_echo_window
, w
);
23045 help_echo_object
= string
;
23046 help_echo_pos
= charpos
;
23050 if (NILP (pointer
))
23051 pointer
= Fget_text_property (pos
, Qpointer
, string
);
23053 /* Change the mouse pointer according to what is under X/Y. */
23054 if (NILP (pointer
) && ((area
== ON_MODE_LINE
) || (area
== ON_HEADER_LINE
)))
23057 map
= Fget_text_property (pos
, Qlocal_map
, string
);
23058 if (!KEYMAPP (map
))
23059 map
= Fget_text_property (pos
, Qkeymap
, string
);
23060 if (!KEYMAPP (map
))
23061 cursor
= dpyinfo
->vertical_scroll_bar_cursor
;
23064 /* Change the mouse face according to what is under X/Y. */
23065 mouse_face
= Fget_text_property (pos
, Qmouse_face
, string
);
23066 if (!NILP (mouse_face
)
23067 && ((area
== ON_MODE_LINE
) || (area
== ON_HEADER_LINE
))
23072 struct glyph
* tmp_glyph
;
23076 int total_pixel_width
;
23081 b
= Fprevious_single_property_change (make_number (charpos
+ 1),
23082 Qmouse_face
, string
, Qnil
);
23084 b
= make_number (0);
23086 e
= Fnext_single_property_change (pos
, Qmouse_face
, string
, Qnil
);
23088 e
= make_number (SCHARS (string
));
23090 /* Calculate the position(glyph position: GPOS) of GLYPH in
23091 displayed string. GPOS is different from CHARPOS.
23093 CHARPOS is the position of glyph in internal string
23094 object. A mode line string format has structures which
23095 is converted to a flatten by emacs lisp interpreter.
23096 The internal string is an element of the structures.
23097 The displayed string is the flatten string. */
23099 if (glyph
> row_start_glyph
)
23101 tmp_glyph
= glyph
- 1;
23102 while (tmp_glyph
>= row_start_glyph
23103 && tmp_glyph
->charpos
>= XINT (b
)
23104 && EQ (tmp_glyph
->object
, glyph
->object
))
23111 /* Calculate the lenght(glyph sequence length: GSEQ_LENGTH) of
23112 displayed string holding GLYPH.
23114 GSEQ_LENGTH is different from SCHARS (STRING).
23115 SCHARS (STRING) returns the length of the internal string. */
23116 for (tmp_glyph
= glyph
, gseq_length
= gpos
;
23117 tmp_glyph
->charpos
< XINT (e
);
23118 tmp_glyph
++, gseq_length
++)
23120 if (!EQ (tmp_glyph
->object
, glyph
->object
))
23124 total_pixel_width
= 0;
23125 for (tmp_glyph
= glyph
- gpos
; tmp_glyph
!= glyph
; tmp_glyph
++)
23126 total_pixel_width
+= tmp_glyph
->pixel_width
;
23128 /* Pre calculation of re-rendering position */
23130 hpos
= (area
== ON_MODE_LINE
23131 ? (w
->current_matrix
)->nrows
- 1
23134 /* If the re-rendering position is included in the last
23135 re-rendering area, we should do nothing. */
23136 if ( EQ (window
, dpyinfo
->mouse_face_window
)
23137 && dpyinfo
->mouse_face_beg_col
<= vpos
23138 && vpos
< dpyinfo
->mouse_face_end_col
23139 && dpyinfo
->mouse_face_beg_row
== hpos
)
23142 if (clear_mouse_face (dpyinfo
))
23143 cursor
= No_Cursor
;
23145 dpyinfo
->mouse_face_beg_col
= vpos
;
23146 dpyinfo
->mouse_face_beg_row
= hpos
;
23148 dpyinfo
->mouse_face_beg_x
= original_x_pixel
- (total_pixel_width
+ dx
);
23149 dpyinfo
->mouse_face_beg_y
= 0;
23151 dpyinfo
->mouse_face_end_col
= vpos
+ gseq_length
;
23152 dpyinfo
->mouse_face_end_row
= dpyinfo
->mouse_face_beg_row
;
23154 dpyinfo
->mouse_face_end_x
= 0;
23155 dpyinfo
->mouse_face_end_y
= 0;
23157 dpyinfo
->mouse_face_past_end
= 0;
23158 dpyinfo
->mouse_face_window
= window
;
23160 dpyinfo
->mouse_face_face_id
= face_at_string_position (w
, string
,
23163 glyph
->face_id
, 1);
23164 show_mouse_face (dpyinfo
, DRAW_MOUSE_FACE
);
23166 if (NILP (pointer
))
23169 else if ((area
== ON_MODE_LINE
) || (area
== ON_HEADER_LINE
))
23170 clear_mouse_face (dpyinfo
);
23172 define_frame_cursor1 (f
, cursor
, pointer
);
23177 Take proper action when the mouse has moved to position X, Y on
23178 frame F as regards highlighting characters that have mouse-face
23179 properties. Also de-highlighting chars where the mouse was before.
23180 X and Y can be negative or out of range. */
23183 note_mouse_highlight (f
, x
, y
)
23187 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
23188 enum window_part part
;
23189 Lisp_Object window
;
23191 Cursor cursor
= No_Cursor
;
23192 Lisp_Object pointer
= Qnil
; /* Takes precedence over cursor! */
23195 /* When a menu is active, don't highlight because this looks odd. */
23196 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (MAC_OS)
23197 if (popup_activated ())
23201 if (NILP (Vmouse_highlight
)
23202 || !f
->glyphs_initialized_p
)
23205 dpyinfo
->mouse_face_mouse_x
= x
;
23206 dpyinfo
->mouse_face_mouse_y
= y
;
23207 dpyinfo
->mouse_face_mouse_frame
= f
;
23209 if (dpyinfo
->mouse_face_defer
)
23212 if (gc_in_progress
)
23214 dpyinfo
->mouse_face_deferred_gc
= 1;
23218 /* Which window is that in? */
23219 window
= window_from_coordinates (f
, x
, y
, &part
, 0, 0, 1);
23221 /* If we were displaying active text in another window, clear that.
23222 Also clear if we move out of text area in same window. */
23223 if (! EQ (window
, dpyinfo
->mouse_face_window
)
23224 || (part
!= ON_TEXT
&& part
!= ON_MODE_LINE
&& part
!= ON_HEADER_LINE
23225 && !NILP (dpyinfo
->mouse_face_window
)))
23226 clear_mouse_face (dpyinfo
);
23228 /* Not on a window -> return. */
23229 if (!WINDOWP (window
))
23232 /* Reset help_echo_string. It will get recomputed below. */
23233 help_echo_string
= Qnil
;
23235 /* Convert to window-relative pixel coordinates. */
23236 w
= XWINDOW (window
);
23237 frame_to_window_pixel_xy (w
, &x
, &y
);
23239 /* Handle tool-bar window differently since it doesn't display a
23241 if (EQ (window
, f
->tool_bar_window
))
23243 note_tool_bar_highlight (f
, x
, y
);
23247 /* Mouse is on the mode, header line or margin? */
23248 if (part
== ON_MODE_LINE
|| part
== ON_HEADER_LINE
23249 || part
== ON_LEFT_MARGIN
|| part
== ON_RIGHT_MARGIN
)
23251 note_mode_line_or_margin_highlight (window
, x
, y
, part
);
23255 if (part
== ON_VERTICAL_BORDER
)
23257 cursor
= FRAME_X_OUTPUT (f
)->horizontal_drag_cursor
;
23258 help_echo_string
= build_string ("drag-mouse-1: resize");
23260 else if (part
== ON_LEFT_FRINGE
|| part
== ON_RIGHT_FRINGE
23261 || part
== ON_SCROLL_BAR
)
23262 cursor
= FRAME_X_OUTPUT (f
)->nontext_cursor
;
23264 cursor
= FRAME_X_OUTPUT (f
)->text_cursor
;
23266 /* Are we in a window whose display is up to date?
23267 And verify the buffer's text has not changed. */
23268 b
= XBUFFER (w
->buffer
);
23269 if (part
== ON_TEXT
23270 && EQ (w
->window_end_valid
, w
->buffer
)
23271 && XFASTINT (w
->last_modified
) == BUF_MODIFF (b
)
23272 && XFASTINT (w
->last_overlay_modified
) == BUF_OVERLAY_MODIFF (b
))
23274 int hpos
, vpos
, pos
, i
, dx
, dy
, area
;
23275 struct glyph
*glyph
;
23276 Lisp_Object object
;
23277 Lisp_Object mouse_face
= Qnil
, overlay
= Qnil
, position
;
23278 Lisp_Object
*overlay_vec
= NULL
;
23280 struct buffer
*obuf
;
23281 int obegv
, ozv
, same_region
;
23283 /* Find the glyph under X/Y. */
23284 glyph
= x_y_to_hpos_vpos (w
, x
, y
, &hpos
, &vpos
, &dx
, &dy
, &area
);
23286 /* Look for :pointer property on image. */
23287 if (glyph
!= NULL
&& glyph
->type
== IMAGE_GLYPH
)
23289 struct image
*img
= IMAGE_FROM_ID (f
, glyph
->u
.img_id
);
23290 if (img
!= NULL
&& IMAGEP (img
->spec
))
23292 Lisp_Object image_map
, hotspot
;
23293 if ((image_map
= Fplist_get (XCDR (img
->spec
), QCmap
),
23295 && (hotspot
= find_hot_spot (image_map
,
23296 glyph
->slice
.x
+ dx
,
23297 glyph
->slice
.y
+ dy
),
23299 && (hotspot
= XCDR (hotspot
), CONSP (hotspot
)))
23301 Lisp_Object area_id
, plist
;
23303 area_id
= XCAR (hotspot
);
23304 /* Could check AREA_ID to see if we enter/leave this hot-spot.
23305 If so, we could look for mouse-enter, mouse-leave
23306 properties in PLIST (and do something...). */
23307 hotspot
= XCDR (hotspot
);
23308 if (CONSP (hotspot
)
23309 && (plist
= XCAR (hotspot
), CONSP (plist
)))
23311 pointer
= Fplist_get (plist
, Qpointer
);
23312 if (NILP (pointer
))
23314 help_echo_string
= Fplist_get (plist
, Qhelp_echo
);
23315 if (!NILP (help_echo_string
))
23317 help_echo_window
= window
;
23318 help_echo_object
= glyph
->object
;
23319 help_echo_pos
= glyph
->charpos
;
23323 if (NILP (pointer
))
23324 pointer
= Fplist_get (XCDR (img
->spec
), QCpointer
);
23328 /* Clear mouse face if X/Y not over text. */
23330 || area
!= TEXT_AREA
23331 || !MATRIX_ROW (w
->current_matrix
, vpos
)->displays_text_p
)
23333 if (clear_mouse_face (dpyinfo
))
23334 cursor
= No_Cursor
;
23335 if (NILP (pointer
))
23337 if (area
!= TEXT_AREA
)
23338 cursor
= FRAME_X_OUTPUT (f
)->nontext_cursor
;
23340 pointer
= Vvoid_text_area_pointer
;
23345 pos
= glyph
->charpos
;
23346 object
= glyph
->object
;
23347 if (!STRINGP (object
) && !BUFFERP (object
))
23350 /* If we get an out-of-range value, return now; avoid an error. */
23351 if (BUFFERP (object
) && pos
> BUF_Z (b
))
23354 /* Make the window's buffer temporarily current for
23355 overlays_at and compute_char_face. */
23356 obuf
= current_buffer
;
23357 current_buffer
= b
;
23363 /* Is this char mouse-active or does it have help-echo? */
23364 position
= make_number (pos
);
23366 if (BUFFERP (object
))
23368 /* Put all the overlays we want in a vector in overlay_vec. */
23369 GET_OVERLAYS_AT (pos
, overlay_vec
, noverlays
, NULL
, 0);
23370 /* Sort overlays into increasing priority order. */
23371 noverlays
= sort_overlays (overlay_vec
, noverlays
, w
);
23376 same_region
= (EQ (window
, dpyinfo
->mouse_face_window
)
23377 && vpos
>= dpyinfo
->mouse_face_beg_row
23378 && vpos
<= dpyinfo
->mouse_face_end_row
23379 && (vpos
> dpyinfo
->mouse_face_beg_row
23380 || hpos
>= dpyinfo
->mouse_face_beg_col
)
23381 && (vpos
< dpyinfo
->mouse_face_end_row
23382 || hpos
< dpyinfo
->mouse_face_end_col
23383 || dpyinfo
->mouse_face_past_end
));
23386 cursor
= No_Cursor
;
23388 /* Check mouse-face highlighting. */
23390 /* If there exists an overlay with mouse-face overlapping
23391 the one we are currently highlighting, we have to
23392 check if we enter the overlapping overlay, and then
23393 highlight only that. */
23394 || (OVERLAYP (dpyinfo
->mouse_face_overlay
)
23395 && mouse_face_overlay_overlaps (dpyinfo
->mouse_face_overlay
)))
23397 /* Find the highest priority overlay that has a mouse-face
23400 for (i
= noverlays
- 1; i
>= 0 && NILP (overlay
); --i
)
23402 mouse_face
= Foverlay_get (overlay_vec
[i
], Qmouse_face
);
23403 if (!NILP (mouse_face
))
23404 overlay
= overlay_vec
[i
];
23407 /* If we're actually highlighting the same overlay as
23408 before, there's no need to do that again. */
23409 if (!NILP (overlay
)
23410 && EQ (overlay
, dpyinfo
->mouse_face_overlay
))
23411 goto check_help_echo
;
23413 dpyinfo
->mouse_face_overlay
= overlay
;
23415 /* Clear the display of the old active region, if any. */
23416 if (clear_mouse_face (dpyinfo
))
23417 cursor
= No_Cursor
;
23419 /* If no overlay applies, get a text property. */
23420 if (NILP (overlay
))
23421 mouse_face
= Fget_text_property (position
, Qmouse_face
, object
);
23423 /* Handle the overlay case. */
23424 if (!NILP (overlay
))
23426 /* Find the range of text around this char that
23427 should be active. */
23428 Lisp_Object before
, after
;
23431 before
= Foverlay_start (overlay
);
23432 after
= Foverlay_end (overlay
);
23433 /* Record this as the current active region. */
23434 fast_find_position (w
, XFASTINT (before
),
23435 &dpyinfo
->mouse_face_beg_col
,
23436 &dpyinfo
->mouse_face_beg_row
,
23437 &dpyinfo
->mouse_face_beg_x
,
23438 &dpyinfo
->mouse_face_beg_y
, Qnil
);
23440 dpyinfo
->mouse_face_past_end
23441 = !fast_find_position (w
, XFASTINT (after
),
23442 &dpyinfo
->mouse_face_end_col
,
23443 &dpyinfo
->mouse_face_end_row
,
23444 &dpyinfo
->mouse_face_end_x
,
23445 &dpyinfo
->mouse_face_end_y
, Qnil
);
23446 dpyinfo
->mouse_face_window
= window
;
23448 dpyinfo
->mouse_face_face_id
23449 = face_at_buffer_position (w
, pos
, 0, 0,
23451 !dpyinfo
->mouse_face_hidden
);
23453 /* Display it as active. */
23454 show_mouse_face (dpyinfo
, DRAW_MOUSE_FACE
);
23455 cursor
= No_Cursor
;
23457 /* Handle the text property case. */
23458 else if (!NILP (mouse_face
) && BUFFERP (object
))
23460 /* Find the range of text around this char that
23461 should be active. */
23462 Lisp_Object before
, after
, beginning
, end
;
23465 beginning
= Fmarker_position (w
->start
);
23466 end
= make_number (BUF_Z (XBUFFER (object
))
23467 - XFASTINT (w
->window_end_pos
));
23469 = Fprevious_single_property_change (make_number (pos
+ 1),
23471 object
, beginning
);
23473 = Fnext_single_property_change (position
, Qmouse_face
,
23476 /* Record this as the current active region. */
23477 fast_find_position (w
, XFASTINT (before
),
23478 &dpyinfo
->mouse_face_beg_col
,
23479 &dpyinfo
->mouse_face_beg_row
,
23480 &dpyinfo
->mouse_face_beg_x
,
23481 &dpyinfo
->mouse_face_beg_y
, Qnil
);
23482 dpyinfo
->mouse_face_past_end
23483 = !fast_find_position (w
, XFASTINT (after
),
23484 &dpyinfo
->mouse_face_end_col
,
23485 &dpyinfo
->mouse_face_end_row
,
23486 &dpyinfo
->mouse_face_end_x
,
23487 &dpyinfo
->mouse_face_end_y
, Qnil
);
23488 dpyinfo
->mouse_face_window
= window
;
23490 if (BUFFERP (object
))
23491 dpyinfo
->mouse_face_face_id
23492 = face_at_buffer_position (w
, pos
, 0, 0,
23494 !dpyinfo
->mouse_face_hidden
);
23496 /* Display it as active. */
23497 show_mouse_face (dpyinfo
, DRAW_MOUSE_FACE
);
23498 cursor
= No_Cursor
;
23500 else if (!NILP (mouse_face
) && STRINGP (object
))
23505 b
= Fprevious_single_property_change (make_number (pos
+ 1),
23508 e
= Fnext_single_property_change (position
, Qmouse_face
,
23511 b
= make_number (0);
23513 e
= make_number (SCHARS (object
) - 1);
23515 fast_find_string_pos (w
, XINT (b
), object
,
23516 &dpyinfo
->mouse_face_beg_col
,
23517 &dpyinfo
->mouse_face_beg_row
,
23518 &dpyinfo
->mouse_face_beg_x
,
23519 &dpyinfo
->mouse_face_beg_y
, 0);
23520 fast_find_string_pos (w
, XINT (e
), object
,
23521 &dpyinfo
->mouse_face_end_col
,
23522 &dpyinfo
->mouse_face_end_row
,
23523 &dpyinfo
->mouse_face_end_x
,
23524 &dpyinfo
->mouse_face_end_y
, 1);
23525 dpyinfo
->mouse_face_past_end
= 0;
23526 dpyinfo
->mouse_face_window
= window
;
23527 dpyinfo
->mouse_face_face_id
23528 = face_at_string_position (w
, object
, pos
, 0, 0, 0, &ignore
,
23529 glyph
->face_id
, 1);
23530 show_mouse_face (dpyinfo
, DRAW_MOUSE_FACE
);
23531 cursor
= No_Cursor
;
23533 else if (STRINGP (object
) && NILP (mouse_face
))
23535 /* A string which doesn't have mouse-face, but
23536 the text ``under'' it might have. */
23537 struct glyph_row
*r
= MATRIX_ROW (w
->current_matrix
, vpos
);
23538 int start
= MATRIX_ROW_START_CHARPOS (r
);
23540 pos
= string_buffer_position (w
, object
, start
);
23542 mouse_face
= get_char_property_and_overlay (make_number (pos
),
23546 if (!NILP (mouse_face
) && !NILP (overlay
))
23548 Lisp_Object before
= Foverlay_start (overlay
);
23549 Lisp_Object after
= Foverlay_end (overlay
);
23552 /* Note that we might not be able to find position
23553 BEFORE in the glyph matrix if the overlay is
23554 entirely covered by a `display' property. In
23555 this case, we overshoot. So let's stop in
23556 the glyph matrix before glyphs for OBJECT. */
23557 fast_find_position (w
, XFASTINT (before
),
23558 &dpyinfo
->mouse_face_beg_col
,
23559 &dpyinfo
->mouse_face_beg_row
,
23560 &dpyinfo
->mouse_face_beg_x
,
23561 &dpyinfo
->mouse_face_beg_y
,
23564 dpyinfo
->mouse_face_past_end
23565 = !fast_find_position (w
, XFASTINT (after
),
23566 &dpyinfo
->mouse_face_end_col
,
23567 &dpyinfo
->mouse_face_end_row
,
23568 &dpyinfo
->mouse_face_end_x
,
23569 &dpyinfo
->mouse_face_end_y
,
23571 dpyinfo
->mouse_face_window
= window
;
23572 dpyinfo
->mouse_face_face_id
23573 = face_at_buffer_position (w
, pos
, 0, 0,
23575 !dpyinfo
->mouse_face_hidden
);
23577 /* Display it as active. */
23578 show_mouse_face (dpyinfo
, DRAW_MOUSE_FACE
);
23579 cursor
= No_Cursor
;
23586 /* Look for a `help-echo' property. */
23587 if (NILP (help_echo_string
)) {
23588 Lisp_Object help
, overlay
;
23590 /* Check overlays first. */
23591 help
= overlay
= Qnil
;
23592 for (i
= noverlays
- 1; i
>= 0 && NILP (help
); --i
)
23594 overlay
= overlay_vec
[i
];
23595 help
= Foverlay_get (overlay
, Qhelp_echo
);
23600 help_echo_string
= help
;
23601 help_echo_window
= window
;
23602 help_echo_object
= overlay
;
23603 help_echo_pos
= pos
;
23607 Lisp_Object object
= glyph
->object
;
23608 int charpos
= glyph
->charpos
;
23610 /* Try text properties. */
23611 if (STRINGP (object
)
23613 && charpos
< SCHARS (object
))
23615 help
= Fget_text_property (make_number (charpos
),
23616 Qhelp_echo
, object
);
23619 /* If the string itself doesn't specify a help-echo,
23620 see if the buffer text ``under'' it does. */
23621 struct glyph_row
*r
23622 = MATRIX_ROW (w
->current_matrix
, vpos
);
23623 int start
= MATRIX_ROW_START_CHARPOS (r
);
23624 int pos
= string_buffer_position (w
, object
, start
);
23627 help
= Fget_char_property (make_number (pos
),
23628 Qhelp_echo
, w
->buffer
);
23632 object
= w
->buffer
;
23637 else if (BUFFERP (object
)
23640 help
= Fget_text_property (make_number (charpos
), Qhelp_echo
,
23645 help_echo_string
= help
;
23646 help_echo_window
= window
;
23647 help_echo_object
= object
;
23648 help_echo_pos
= charpos
;
23653 /* Look for a `pointer' property. */
23654 if (NILP (pointer
))
23656 /* Check overlays first. */
23657 for (i
= noverlays
- 1; i
>= 0 && NILP (pointer
); --i
)
23658 pointer
= Foverlay_get (overlay_vec
[i
], Qpointer
);
23660 if (NILP (pointer
))
23662 Lisp_Object object
= glyph
->object
;
23663 int charpos
= glyph
->charpos
;
23665 /* Try text properties. */
23666 if (STRINGP (object
)
23668 && charpos
< SCHARS (object
))
23670 pointer
= Fget_text_property (make_number (charpos
),
23672 if (NILP (pointer
))
23674 /* If the string itself doesn't specify a pointer,
23675 see if the buffer text ``under'' it does. */
23676 struct glyph_row
*r
23677 = MATRIX_ROW (w
->current_matrix
, vpos
);
23678 int start
= MATRIX_ROW_START_CHARPOS (r
);
23679 int pos
= string_buffer_position (w
, object
, start
);
23681 pointer
= Fget_char_property (make_number (pos
),
23682 Qpointer
, w
->buffer
);
23685 else if (BUFFERP (object
)
23688 pointer
= Fget_text_property (make_number (charpos
),
23695 current_buffer
= obuf
;
23700 define_frame_cursor1 (f
, cursor
, pointer
);
23705 Clear any mouse-face on window W. This function is part of the
23706 redisplay interface, and is called from try_window_id and similar
23707 functions to ensure the mouse-highlight is off. */
23710 x_clear_window_mouse_face (w
)
23713 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (XFRAME (w
->frame
));
23714 Lisp_Object window
;
23717 XSETWINDOW (window
, w
);
23718 if (EQ (window
, dpyinfo
->mouse_face_window
))
23719 clear_mouse_face (dpyinfo
);
23725 Just discard the mouse face information for frame F, if any.
23726 This is used when the size of F is changed. */
23729 cancel_mouse_face (f
)
23732 Lisp_Object window
;
23733 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
23735 window
= dpyinfo
->mouse_face_window
;
23736 if (! NILP (window
) && XFRAME (XWINDOW (window
)->frame
) == f
)
23738 dpyinfo
->mouse_face_beg_row
= dpyinfo
->mouse_face_beg_col
= -1;
23739 dpyinfo
->mouse_face_end_row
= dpyinfo
->mouse_face_end_col
= -1;
23740 dpyinfo
->mouse_face_window
= Qnil
;
23745 #endif /* HAVE_WINDOW_SYSTEM */
23748 /***********************************************************************
23750 ***********************************************************************/
23752 #ifdef HAVE_WINDOW_SYSTEM
23754 /* Redraw the part of glyph row area AREA of glyph row ROW on window W
23755 which intersects rectangle R. R is in window-relative coordinates. */
23758 expose_area (w
, row
, r
, area
)
23760 struct glyph_row
*row
;
23762 enum glyph_row_area area
;
23764 struct glyph
*first
= row
->glyphs
[area
];
23765 struct glyph
*end
= row
->glyphs
[area
] + row
->used
[area
];
23766 struct glyph
*last
;
23767 int first_x
, start_x
, x
;
23769 if (area
== TEXT_AREA
&& row
->fill_line_p
)
23770 /* If row extends face to end of line write the whole line. */
23771 draw_glyphs (w
, 0, row
, area
,
23772 0, row
->used
[area
],
23773 DRAW_NORMAL_TEXT
, 0);
23776 /* Set START_X to the window-relative start position for drawing glyphs of
23777 AREA. The first glyph of the text area can be partially visible.
23778 The first glyphs of other areas cannot. */
23779 start_x
= window_box_left_offset (w
, area
);
23781 if (area
== TEXT_AREA
)
23784 /* Find the first glyph that must be redrawn. */
23786 && x
+ first
->pixel_width
< r
->x
)
23788 x
+= first
->pixel_width
;
23792 /* Find the last one. */
23796 && x
< r
->x
+ r
->width
)
23798 x
+= last
->pixel_width
;
23804 draw_glyphs (w
, first_x
- start_x
, row
, area
,
23805 first
- row
->glyphs
[area
], last
- row
->glyphs
[area
],
23806 DRAW_NORMAL_TEXT
, 0);
23811 /* Redraw the parts of the glyph row ROW on window W intersecting
23812 rectangle R. R is in window-relative coordinates. Value is
23813 non-zero if mouse-face was overwritten. */
23816 expose_line (w
, row
, r
)
23818 struct glyph_row
*row
;
23821 xassert (row
->enabled_p
);
23823 if (row
->mode_line_p
|| w
->pseudo_window_p
)
23824 draw_glyphs (w
, 0, row
, TEXT_AREA
,
23825 0, row
->used
[TEXT_AREA
],
23826 DRAW_NORMAL_TEXT
, 0);
23829 if (row
->used
[LEFT_MARGIN_AREA
])
23830 expose_area (w
, row
, r
, LEFT_MARGIN_AREA
);
23831 if (row
->used
[TEXT_AREA
])
23832 expose_area (w
, row
, r
, TEXT_AREA
);
23833 if (row
->used
[RIGHT_MARGIN_AREA
])
23834 expose_area (w
, row
, r
, RIGHT_MARGIN_AREA
);
23835 draw_row_fringe_bitmaps (w
, row
);
23838 return row
->mouse_face_p
;
23842 /* Redraw those parts of glyphs rows during expose event handling that
23843 overlap other rows. Redrawing of an exposed line writes over parts
23844 of lines overlapping that exposed line; this function fixes that.
23846 W is the window being exposed. FIRST_OVERLAPPING_ROW is the first
23847 row in W's current matrix that is exposed and overlaps other rows.
23848 LAST_OVERLAPPING_ROW is the last such row. */
23851 expose_overlaps (w
, first_overlapping_row
, last_overlapping_row
, r
)
23853 struct glyph_row
*first_overlapping_row
;
23854 struct glyph_row
*last_overlapping_row
;
23857 struct glyph_row
*row
;
23859 for (row
= first_overlapping_row
; row
<= last_overlapping_row
; ++row
)
23860 if (row
->overlapping_p
)
23862 xassert (row
->enabled_p
&& !row
->mode_line_p
);
23865 if (row
->used
[LEFT_MARGIN_AREA
])
23866 x_fix_overlapping_area (w
, row
, LEFT_MARGIN_AREA
, OVERLAPS_BOTH
);
23868 if (row
->used
[TEXT_AREA
])
23869 x_fix_overlapping_area (w
, row
, TEXT_AREA
, OVERLAPS_BOTH
);
23871 if (row
->used
[RIGHT_MARGIN_AREA
])
23872 x_fix_overlapping_area (w
, row
, RIGHT_MARGIN_AREA
, OVERLAPS_BOTH
);
23878 /* Return non-zero if W's cursor intersects rectangle R. */
23881 phys_cursor_in_rect_p (w
, r
)
23885 XRectangle cr
, result
;
23886 struct glyph
*cursor_glyph
;
23887 struct glyph_row
*row
;
23889 if (w
->phys_cursor
.vpos
>= 0
23890 && w
->phys_cursor
.vpos
< w
->current_matrix
->nrows
23891 && (row
= MATRIX_ROW (w
->current_matrix
, w
->phys_cursor
.vpos
),
23893 && row
->cursor_in_fringe_p
)
23895 /* Cursor is in the fringe. */
23896 cr
.x
= window_box_right_offset (w
,
23897 (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
23898 ? RIGHT_MARGIN_AREA
23901 cr
.width
= WINDOW_RIGHT_FRINGE_WIDTH (w
);
23902 cr
.height
= row
->height
;
23903 return x_intersect_rectangles (&cr
, r
, &result
);
23906 cursor_glyph
= get_phys_cursor_glyph (w
);
23909 /* r is relative to W's box, but w->phys_cursor.x is relative
23910 to left edge of W's TEXT area. Adjust it. */
23911 cr
.x
= window_box_left_offset (w
, TEXT_AREA
) + w
->phys_cursor
.x
;
23912 cr
.y
= w
->phys_cursor
.y
;
23913 cr
.width
= cursor_glyph
->pixel_width
;
23914 cr
.height
= w
->phys_cursor_height
;
23915 /* ++KFS: W32 version used W32-specific IntersectRect here, but
23916 I assume the effect is the same -- and this is portable. */
23917 return x_intersect_rectangles (&cr
, r
, &result
);
23919 /* If we don't understand the format, pretend we're not in the hot-spot. */
23925 Draw a vertical window border to the right of window W if W doesn't
23926 have vertical scroll bars. */
23929 x_draw_vertical_border (w
)
23932 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
23934 /* We could do better, if we knew what type of scroll-bar the adjacent
23935 windows (on either side) have... But we don't :-(
23936 However, I think this works ok. ++KFS 2003-04-25 */
23938 /* Redraw borders between horizontally adjacent windows. Don't
23939 do it for frames with vertical scroll bars because either the
23940 right scroll bar of a window, or the left scroll bar of its
23941 neighbor will suffice as a border. */
23942 if (FRAME_HAS_VERTICAL_SCROLL_BARS (XFRAME (w
->frame
)))
23945 if (!WINDOW_RIGHTMOST_P (w
)
23946 && !WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w
))
23948 int x0
, x1
, y0
, y1
;
23950 window_box_edges (w
, -1, &x0
, &y0
, &x1
, &y1
);
23953 if (WINDOW_LEFT_FRINGE_WIDTH (w
) == 0)
23956 FRAME_RIF (f
)->draw_vertical_window_border (w
, x1
, y0
, y1
);
23958 else if (!WINDOW_LEFTMOST_P (w
)
23959 && !WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w
))
23961 int x0
, x1
, y0
, y1
;
23963 window_box_edges (w
, -1, &x0
, &y0
, &x1
, &y1
);
23966 if (WINDOW_LEFT_FRINGE_WIDTH (w
) == 0)
23969 FRAME_RIF (f
)->draw_vertical_window_border (w
, x0
, y0
, y1
);
23974 /* Redraw the part of window W intersection rectangle FR. Pixel
23975 coordinates in FR are frame-relative. Call this function with
23976 input blocked. Value is non-zero if the exposure overwrites
23980 expose_window (w
, fr
)
23984 struct frame
*f
= XFRAME (w
->frame
);
23986 int mouse_face_overwritten_p
= 0;
23988 /* If window is not yet fully initialized, do nothing. This can
23989 happen when toolkit scroll bars are used and a window is split.
23990 Reconfiguring the scroll bar will generate an expose for a newly
23992 if (w
->current_matrix
== NULL
)
23995 /* When we're currently updating the window, display and current
23996 matrix usually don't agree. Arrange for a thorough display
23998 if (w
== updated_window
)
24000 SET_FRAME_GARBAGED (f
);
24004 /* Frame-relative pixel rectangle of W. */
24005 wr
.x
= WINDOW_LEFT_EDGE_X (w
);
24006 wr
.y
= WINDOW_TOP_EDGE_Y (w
);
24007 wr
.width
= WINDOW_TOTAL_WIDTH (w
);
24008 wr
.height
= WINDOW_TOTAL_HEIGHT (w
);
24010 if (x_intersect_rectangles (fr
, &wr
, &r
))
24012 int yb
= window_text_bottom_y (w
);
24013 struct glyph_row
*row
;
24014 int cursor_cleared_p
;
24015 struct glyph_row
*first_overlapping_row
, *last_overlapping_row
;
24017 TRACE ((stderr
, "expose_window (%d, %d, %d, %d)\n",
24018 r
.x
, r
.y
, r
.width
, r
.height
));
24020 /* Convert to window coordinates. */
24021 r
.x
-= WINDOW_LEFT_EDGE_X (w
);
24022 r
.y
-= WINDOW_TOP_EDGE_Y (w
);
24024 /* Turn off the cursor. */
24025 if (!w
->pseudo_window_p
24026 && phys_cursor_in_rect_p (w
, &r
))
24028 x_clear_cursor (w
);
24029 cursor_cleared_p
= 1;
24032 cursor_cleared_p
= 0;
24034 /* Update lines intersecting rectangle R. */
24035 first_overlapping_row
= last_overlapping_row
= NULL
;
24036 for (row
= w
->current_matrix
->rows
;
24041 int y1
= MATRIX_ROW_BOTTOM_Y (row
);
24043 if ((y0
>= r
.y
&& y0
< r
.y
+ r
.height
)
24044 || (y1
> r
.y
&& y1
< r
.y
+ r
.height
)
24045 || (r
.y
>= y0
&& r
.y
< y1
)
24046 || (r
.y
+ r
.height
> y0
&& r
.y
+ r
.height
< y1
))
24048 /* A header line may be overlapping, but there is no need
24049 to fix overlapping areas for them. KFS 2005-02-12 */
24050 if (row
->overlapping_p
&& !row
->mode_line_p
)
24052 if (first_overlapping_row
== NULL
)
24053 first_overlapping_row
= row
;
24054 last_overlapping_row
= row
;
24058 if (expose_line (w
, row
, &r
))
24059 mouse_face_overwritten_p
= 1;
24062 else if (row
->overlapping_p
)
24064 /* We must redraw a row overlapping the exposed area. */
24066 ? y0
+ row
->phys_height
> r
.y
24067 : y0
+ row
->ascent
- row
->phys_ascent
< r
.y
+r
.height
)
24069 if (first_overlapping_row
== NULL
)
24070 first_overlapping_row
= row
;
24071 last_overlapping_row
= row
;
24079 /* Display the mode line if there is one. */
24080 if (WINDOW_WANTS_MODELINE_P (w
)
24081 && (row
= MATRIX_MODE_LINE_ROW (w
->current_matrix
),
24083 && row
->y
< r
.y
+ r
.height
)
24085 if (expose_line (w
, row
, &r
))
24086 mouse_face_overwritten_p
= 1;
24089 if (!w
->pseudo_window_p
)
24091 /* Fix the display of overlapping rows. */
24092 if (first_overlapping_row
)
24093 expose_overlaps (w
, first_overlapping_row
, last_overlapping_row
,
24096 /* Draw border between windows. */
24097 x_draw_vertical_border (w
);
24099 /* Turn the cursor on again. */
24100 if (cursor_cleared_p
)
24101 update_window_cursor (w
, 1);
24105 return mouse_face_overwritten_p
;
24110 /* Redraw (parts) of all windows in the window tree rooted at W that
24111 intersect R. R contains frame pixel coordinates. Value is
24112 non-zero if the exposure overwrites mouse-face. */
24115 expose_window_tree (w
, r
)
24119 struct frame
*f
= XFRAME (w
->frame
);
24120 int mouse_face_overwritten_p
= 0;
24122 while (w
&& !FRAME_GARBAGED_P (f
))
24124 if (!NILP (w
->hchild
))
24125 mouse_face_overwritten_p
24126 |= expose_window_tree (XWINDOW (w
->hchild
), r
);
24127 else if (!NILP (w
->vchild
))
24128 mouse_face_overwritten_p
24129 |= expose_window_tree (XWINDOW (w
->vchild
), r
);
24131 mouse_face_overwritten_p
|= expose_window (w
, r
);
24133 w
= NILP (w
->next
) ? NULL
: XWINDOW (w
->next
);
24136 return mouse_face_overwritten_p
;
24141 Redisplay an exposed area of frame F. X and Y are the upper-left
24142 corner of the exposed rectangle. W and H are width and height of
24143 the exposed area. All are pixel values. W or H zero means redraw
24144 the entire frame. */
24147 expose_frame (f
, x
, y
, w
, h
)
24152 int mouse_face_overwritten_p
= 0;
24154 TRACE ((stderr
, "expose_frame "));
24156 /* No need to redraw if frame will be redrawn soon. */
24157 if (FRAME_GARBAGED_P (f
))
24159 TRACE ((stderr
, " garbaged\n"));
24163 /* If basic faces haven't been realized yet, there is no point in
24164 trying to redraw anything. This can happen when we get an expose
24165 event while Emacs is starting, e.g. by moving another window. */
24166 if (FRAME_FACE_CACHE (f
) == NULL
24167 || FRAME_FACE_CACHE (f
)->used
< BASIC_FACE_ID_SENTINEL
)
24169 TRACE ((stderr
, " no faces\n"));
24173 if (w
== 0 || h
== 0)
24176 r
.width
= FRAME_COLUMN_WIDTH (f
) * FRAME_COLS (f
);
24177 r
.height
= FRAME_LINE_HEIGHT (f
) * FRAME_LINES (f
);
24187 TRACE ((stderr
, "(%d, %d, %d, %d)\n", r
.x
, r
.y
, r
.width
, r
.height
));
24188 mouse_face_overwritten_p
= expose_window_tree (XWINDOW (f
->root_window
), &r
);
24190 if (WINDOWP (f
->tool_bar_window
))
24191 mouse_face_overwritten_p
24192 |= expose_window (XWINDOW (f
->tool_bar_window
), &r
);
24194 #ifdef HAVE_X_WINDOWS
24196 #ifndef USE_X_TOOLKIT
24197 if (WINDOWP (f
->menu_bar_window
))
24198 mouse_face_overwritten_p
24199 |= expose_window (XWINDOW (f
->menu_bar_window
), &r
);
24200 #endif /* not USE_X_TOOLKIT */
24204 /* Some window managers support a focus-follows-mouse style with
24205 delayed raising of frames. Imagine a partially obscured frame,
24206 and moving the mouse into partially obscured mouse-face on that
24207 frame. The visible part of the mouse-face will be highlighted,
24208 then the WM raises the obscured frame. With at least one WM, KDE
24209 2.1, Emacs is not getting any event for the raising of the frame
24210 (even tried with SubstructureRedirectMask), only Expose events.
24211 These expose events will draw text normally, i.e. not
24212 highlighted. Which means we must redo the highlight here.
24213 Subsume it under ``we love X''. --gerd 2001-08-15 */
24214 /* Included in Windows version because Windows most likely does not
24215 do the right thing if any third party tool offers
24216 focus-follows-mouse with delayed raise. --jason 2001-10-12 */
24217 if (mouse_face_overwritten_p
&& !FRAME_GARBAGED_P (f
))
24219 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
24220 if (f
== dpyinfo
->mouse_face_mouse_frame
)
24222 int x
= dpyinfo
->mouse_face_mouse_x
;
24223 int y
= dpyinfo
->mouse_face_mouse_y
;
24224 clear_mouse_face (dpyinfo
);
24225 note_mouse_highlight (f
, x
, y
);
24232 Determine the intersection of two rectangles R1 and R2. Return
24233 the intersection in *RESULT. Value is non-zero if RESULT is not
24237 x_intersect_rectangles (r1
, r2
, result
)
24238 XRectangle
*r1
, *r2
, *result
;
24240 XRectangle
*left
, *right
;
24241 XRectangle
*upper
, *lower
;
24242 int intersection_p
= 0;
24244 /* Rearrange so that R1 is the left-most rectangle. */
24246 left
= r1
, right
= r2
;
24248 left
= r2
, right
= r1
;
24250 /* X0 of the intersection is right.x0, if this is inside R1,
24251 otherwise there is no intersection. */
24252 if (right
->x
<= left
->x
+ left
->width
)
24254 result
->x
= right
->x
;
24256 /* The right end of the intersection is the minimum of the
24257 the right ends of left and right. */
24258 result
->width
= (min (left
->x
+ left
->width
, right
->x
+ right
->width
)
24261 /* Same game for Y. */
24263 upper
= r1
, lower
= r2
;
24265 upper
= r2
, lower
= r1
;
24267 /* The upper end of the intersection is lower.y0, if this is inside
24268 of upper. Otherwise, there is no intersection. */
24269 if (lower
->y
<= upper
->y
+ upper
->height
)
24271 result
->y
= lower
->y
;
24273 /* The lower end of the intersection is the minimum of the lower
24274 ends of upper and lower. */
24275 result
->height
= (min (lower
->y
+ lower
->height
,
24276 upper
->y
+ upper
->height
)
24278 intersection_p
= 1;
24282 return intersection_p
;
24285 #endif /* HAVE_WINDOW_SYSTEM */
24288 /***********************************************************************
24290 ***********************************************************************/
24295 Vwith_echo_area_save_vector
= Qnil
;
24296 staticpro (&Vwith_echo_area_save_vector
);
24298 Vmessage_stack
= Qnil
;
24299 staticpro (&Vmessage_stack
);
24301 Qinhibit_redisplay
= intern ("inhibit-redisplay");
24302 staticpro (&Qinhibit_redisplay
);
24304 message_dolog_marker1
= Fmake_marker ();
24305 staticpro (&message_dolog_marker1
);
24306 message_dolog_marker2
= Fmake_marker ();
24307 staticpro (&message_dolog_marker2
);
24308 message_dolog_marker3
= Fmake_marker ();
24309 staticpro (&message_dolog_marker3
);
24312 defsubr (&Sdump_frame_glyph_matrix
);
24313 defsubr (&Sdump_glyph_matrix
);
24314 defsubr (&Sdump_glyph_row
);
24315 defsubr (&Sdump_tool_bar_row
);
24316 defsubr (&Strace_redisplay
);
24317 defsubr (&Strace_to_stderr
);
24319 #ifdef HAVE_WINDOW_SYSTEM
24320 defsubr (&Stool_bar_lines_needed
);
24321 defsubr (&Slookup_image_map
);
24323 defsubr (&Sformat_mode_line
);
24324 defsubr (&Sinvisible_p
);
24326 staticpro (&Qmenu_bar_update_hook
);
24327 Qmenu_bar_update_hook
= intern ("menu-bar-update-hook");
24329 staticpro (&Qoverriding_terminal_local_map
);
24330 Qoverriding_terminal_local_map
= intern ("overriding-terminal-local-map");
24332 staticpro (&Qoverriding_local_map
);
24333 Qoverriding_local_map
= intern ("overriding-local-map");
24335 staticpro (&Qwindow_scroll_functions
);
24336 Qwindow_scroll_functions
= intern ("window-scroll-functions");
24338 staticpro (&Qwindow_text_change_functions
);
24339 Qwindow_text_change_functions
= intern ("window-text-change-functions");
24341 staticpro (&Qredisplay_end_trigger_functions
);
24342 Qredisplay_end_trigger_functions
= intern ("redisplay-end-trigger-functions");
24344 staticpro (&Qinhibit_point_motion_hooks
);
24345 Qinhibit_point_motion_hooks
= intern ("inhibit-point-motion-hooks");
24347 QCdata
= intern (":data");
24348 staticpro (&QCdata
);
24349 Qdisplay
= intern ("display");
24350 staticpro (&Qdisplay
);
24351 Qspace_width
= intern ("space-width");
24352 staticpro (&Qspace_width
);
24353 Qraise
= intern ("raise");
24354 staticpro (&Qraise
);
24355 Qslice
= intern ("slice");
24356 staticpro (&Qslice
);
24357 Qspace
= intern ("space");
24358 staticpro (&Qspace
);
24359 Qmargin
= intern ("margin");
24360 staticpro (&Qmargin
);
24361 Qpointer
= intern ("pointer");
24362 staticpro (&Qpointer
);
24363 Qleft_margin
= intern ("left-margin");
24364 staticpro (&Qleft_margin
);
24365 Qright_margin
= intern ("right-margin");
24366 staticpro (&Qright_margin
);
24367 Qcenter
= intern ("center");
24368 staticpro (&Qcenter
);
24369 Qline_height
= intern ("line-height");
24370 staticpro (&Qline_height
);
24371 QCalign_to
= intern (":align-to");
24372 staticpro (&QCalign_to
);
24373 QCrelative_width
= intern (":relative-width");
24374 staticpro (&QCrelative_width
);
24375 QCrelative_height
= intern (":relative-height");
24376 staticpro (&QCrelative_height
);
24377 QCeval
= intern (":eval");
24378 staticpro (&QCeval
);
24379 QCpropertize
= intern (":propertize");
24380 staticpro (&QCpropertize
);
24381 QCfile
= intern (":file");
24382 staticpro (&QCfile
);
24383 Qfontified
= intern ("fontified");
24384 staticpro (&Qfontified
);
24385 Qfontification_functions
= intern ("fontification-functions");
24386 staticpro (&Qfontification_functions
);
24387 Qtrailing_whitespace
= intern ("trailing-whitespace");
24388 staticpro (&Qtrailing_whitespace
);
24389 Qescape_glyph
= intern ("escape-glyph");
24390 staticpro (&Qescape_glyph
);
24391 Qnobreak_space
= intern ("nobreak-space");
24392 staticpro (&Qnobreak_space
);
24393 Qimage
= intern ("image");
24394 staticpro (&Qimage
);
24395 QCmap
= intern (":map");
24396 staticpro (&QCmap
);
24397 QCpointer
= intern (":pointer");
24398 staticpro (&QCpointer
);
24399 Qrect
= intern ("rect");
24400 staticpro (&Qrect
);
24401 Qcircle
= intern ("circle");
24402 staticpro (&Qcircle
);
24403 Qpoly
= intern ("poly");
24404 staticpro (&Qpoly
);
24405 Qmessage_truncate_lines
= intern ("message-truncate-lines");
24406 staticpro (&Qmessage_truncate_lines
);
24407 Qgrow_only
= intern ("grow-only");
24408 staticpro (&Qgrow_only
);
24409 Qinhibit_menubar_update
= intern ("inhibit-menubar-update");
24410 staticpro (&Qinhibit_menubar_update
);
24411 Qinhibit_eval_during_redisplay
= intern ("inhibit-eval-during-redisplay");
24412 staticpro (&Qinhibit_eval_during_redisplay
);
24413 Qposition
= intern ("position");
24414 staticpro (&Qposition
);
24415 Qbuffer_position
= intern ("buffer-position");
24416 staticpro (&Qbuffer_position
);
24417 Qobject
= intern ("object");
24418 staticpro (&Qobject
);
24419 Qbar
= intern ("bar");
24421 Qhbar
= intern ("hbar");
24422 staticpro (&Qhbar
);
24423 Qbox
= intern ("box");
24425 Qhollow
= intern ("hollow");
24426 staticpro (&Qhollow
);
24427 Qhand
= intern ("hand");
24428 staticpro (&Qhand
);
24429 Qarrow
= intern ("arrow");
24430 staticpro (&Qarrow
);
24431 Qtext
= intern ("text");
24432 staticpro (&Qtext
);
24433 Qrisky_local_variable
= intern ("risky-local-variable");
24434 staticpro (&Qrisky_local_variable
);
24435 Qinhibit_free_realized_faces
= intern ("inhibit-free-realized-faces");
24436 staticpro (&Qinhibit_free_realized_faces
);
24438 list_of_error
= Fcons (Fcons (intern ("error"),
24439 Fcons (intern ("void-variable"), Qnil
)),
24441 staticpro (&list_of_error
);
24443 Qlast_arrow_position
= intern ("last-arrow-position");
24444 staticpro (&Qlast_arrow_position
);
24445 Qlast_arrow_string
= intern ("last-arrow-string");
24446 staticpro (&Qlast_arrow_string
);
24448 Qoverlay_arrow_string
= intern ("overlay-arrow-string");
24449 staticpro (&Qoverlay_arrow_string
);
24450 Qoverlay_arrow_bitmap
= intern ("overlay-arrow-bitmap");
24451 staticpro (&Qoverlay_arrow_bitmap
);
24453 echo_buffer
[0] = echo_buffer
[1] = Qnil
;
24454 staticpro (&echo_buffer
[0]);
24455 staticpro (&echo_buffer
[1]);
24457 echo_area_buffer
[0] = echo_area_buffer
[1] = Qnil
;
24458 staticpro (&echo_area_buffer
[0]);
24459 staticpro (&echo_area_buffer
[1]);
24461 Vmessages_buffer_name
= build_string ("*Messages*");
24462 staticpro (&Vmessages_buffer_name
);
24464 mode_line_proptrans_alist
= Qnil
;
24465 staticpro (&mode_line_proptrans_alist
);
24466 mode_line_string_list
= Qnil
;
24467 staticpro (&mode_line_string_list
);
24468 mode_line_string_face
= Qnil
;
24469 staticpro (&mode_line_string_face
);
24470 mode_line_string_face_prop
= Qnil
;
24471 staticpro (&mode_line_string_face_prop
);
24472 Vmode_line_unwind_vector
= Qnil
;
24473 staticpro (&Vmode_line_unwind_vector
);
24475 help_echo_string
= Qnil
;
24476 staticpro (&help_echo_string
);
24477 help_echo_object
= Qnil
;
24478 staticpro (&help_echo_object
);
24479 help_echo_window
= Qnil
;
24480 staticpro (&help_echo_window
);
24481 previous_help_echo_string
= Qnil
;
24482 staticpro (&previous_help_echo_string
);
24483 help_echo_pos
= -1;
24485 #ifdef HAVE_WINDOW_SYSTEM
24486 DEFVAR_BOOL ("x-stretch-cursor", &x_stretch_cursor_p
,
24487 doc
: /* *Non-nil means draw block cursor as wide as the glyph under it.
24488 For example, if a block cursor is over a tab, it will be drawn as
24489 wide as that tab on the display. */);
24490 x_stretch_cursor_p
= 0;
24493 DEFVAR_LISP ("show-trailing-whitespace", &Vshow_trailing_whitespace
,
24494 doc
: /* *Non-nil means highlight trailing whitespace.
24495 The face used for trailing whitespace is `trailing-whitespace'. */);
24496 Vshow_trailing_whitespace
= Qnil
;
24498 DEFVAR_LISP ("nobreak-char-display", &Vnobreak_char_display
,
24499 doc
: /* *Control highlighting of nobreak space and soft hyphen.
24500 A value of t means highlight the character itself (for nobreak space,
24501 use face `nobreak-space').
24502 A value of nil means no highlighting.
24503 Other values mean display the escape glyph followed by an ordinary
24504 space or ordinary hyphen. */);
24505 Vnobreak_char_display
= Qt
;
24507 DEFVAR_LISP ("void-text-area-pointer", &Vvoid_text_area_pointer
,
24508 doc
: /* *The pointer shape to show in void text areas.
24509 A value of nil means to show the text pointer. Other options are `arrow',
24510 `text', `hand', `vdrag', `hdrag', `modeline', and `hourglass'. */);
24511 Vvoid_text_area_pointer
= Qarrow
;
24513 DEFVAR_LISP ("inhibit-redisplay", &Vinhibit_redisplay
,
24514 doc
: /* Non-nil means don't actually do any redisplay.
24515 This is used for internal purposes. */);
24516 Vinhibit_redisplay
= Qnil
;
24518 DEFVAR_LISP ("global-mode-string", &Vglobal_mode_string
,
24519 doc
: /* String (or mode line construct) included (normally) in `mode-line-format'. */);
24520 Vglobal_mode_string
= Qnil
;
24522 DEFVAR_LISP ("overlay-arrow-position", &Voverlay_arrow_position
,
24523 doc
: /* Marker for where to display an arrow on top of the buffer text.
24524 This must be the beginning of a line in order to work.
24525 See also `overlay-arrow-string'. */);
24526 Voverlay_arrow_position
= Qnil
;
24528 DEFVAR_LISP ("overlay-arrow-string", &Voverlay_arrow_string
,
24529 doc
: /* String to display as an arrow in non-window frames.
24530 See also `overlay-arrow-position'. */);
24531 Voverlay_arrow_string
= build_string ("=>");
24533 DEFVAR_LISP ("overlay-arrow-variable-list", &Voverlay_arrow_variable_list
,
24534 doc
: /* List of variables (symbols) which hold markers for overlay arrows.
24535 The symbols on this list are examined during redisplay to determine
24536 where to display overlay arrows. */);
24537 Voverlay_arrow_variable_list
24538 = Fcons (intern ("overlay-arrow-position"), Qnil
);
24540 DEFVAR_INT ("scroll-step", &scroll_step
,
24541 doc
: /* *The number of lines to try scrolling a window by when point moves out.
24542 If that fails to bring point back on frame, point is centered instead.
24543 If this is zero, point is always centered after it moves off frame.
24544 If you want scrolling to always be a line at a time, you should set
24545 `scroll-conservatively' to a large value rather than set this to 1. */);
24547 DEFVAR_INT ("scroll-conservatively", &scroll_conservatively
,
24548 doc
: /* *Scroll up to this many lines, to bring point back on screen.
24549 If point moves off-screen, redisplay will scroll by up to
24550 `scroll-conservatively' lines in order to bring point just barely
24551 onto the screen again. If that cannot be done, then redisplay
24552 recenters point as usual.
24554 A value of zero means always recenter point if it moves off screen. */);
24555 scroll_conservatively
= 0;
24557 DEFVAR_INT ("scroll-margin", &scroll_margin
,
24558 doc
: /* *Number of lines of margin at the top and bottom of a window.
24559 Recenter the window whenever point gets within this many lines
24560 of the top or bottom of the window. */);
24563 DEFVAR_LISP ("display-pixels-per-inch", &Vdisplay_pixels_per_inch
,
24564 doc
: /* Pixels per inch value for non-window system displays.
24565 Value is a number or a cons (WIDTH-DPI . HEIGHT-DPI). */);
24566 Vdisplay_pixels_per_inch
= make_float (72.0);
24569 DEFVAR_INT ("debug-end-pos", &debug_end_pos
, doc
: /* Don't ask. */);
24572 DEFVAR_BOOL ("truncate-partial-width-windows",
24573 &truncate_partial_width_windows
,
24574 doc
: /* *Non-nil means truncate lines in all windows less than full frame wide. */);
24575 truncate_partial_width_windows
= 1;
24577 DEFVAR_BOOL ("mode-line-inverse-video", &mode_line_inverse_video
,
24578 doc
: /* When nil, display the mode-line/header-line/menu-bar in the default face.
24579 Any other value means to use the appropriate face, `mode-line',
24580 `header-line', or `menu' respectively. */);
24581 mode_line_inverse_video
= 1;
24583 DEFVAR_LISP ("line-number-display-limit", &Vline_number_display_limit
,
24584 doc
: /* *Maximum buffer size for which line number should be displayed.
24585 If the buffer is bigger than this, the line number does not appear
24586 in the mode line. A value of nil means no limit. */);
24587 Vline_number_display_limit
= Qnil
;
24589 DEFVAR_INT ("line-number-display-limit-width",
24590 &line_number_display_limit_width
,
24591 doc
: /* *Maximum line width (in characters) for line number display.
24592 If the average length of the lines near point is bigger than this, then the
24593 line number may be omitted from the mode line. */);
24594 line_number_display_limit_width
= 200;
24596 DEFVAR_BOOL ("highlight-nonselected-windows", &highlight_nonselected_windows
,
24597 doc
: /* *Non-nil means highlight region even in nonselected windows. */);
24598 highlight_nonselected_windows
= 0;
24600 DEFVAR_BOOL ("multiple-frames", &multiple_frames
,
24601 doc
: /* Non-nil if more than one frame is visible on this display.
24602 Minibuffer-only frames don't count, but iconified frames do.
24603 This variable is not guaranteed to be accurate except while processing
24604 `frame-title-format' and `icon-title-format'. */);
24606 DEFVAR_LISP ("frame-title-format", &Vframe_title_format
,
24607 doc
: /* Template for displaying the title bar of visible frames.
24608 \(Assuming the window manager supports this feature.)
24610 This variable has the same structure as `mode-line-format', except that
24611 the %c and %l constructs are ignored. It is used only on frames for
24612 which no explicit name has been set \(see `modify-frame-parameters'). */);
24614 DEFVAR_LISP ("icon-title-format", &Vicon_title_format
,
24615 doc
: /* Template for displaying the title bar of an iconified frame.
24616 \(Assuming the window manager supports this feature.)
24617 This variable has the same structure as `mode-line-format' (which see),
24618 and is used only on frames for which no explicit name has been set
24619 \(see `modify-frame-parameters'). */);
24621 = Vframe_title_format
24622 = Fcons (intern ("multiple-frames"),
24623 Fcons (build_string ("%b"),
24624 Fcons (Fcons (empty_unibyte_string
,
24625 Fcons (intern ("invocation-name"),
24626 Fcons (build_string ("@"),
24627 Fcons (intern ("system-name"),
24631 DEFVAR_LISP ("message-log-max", &Vmessage_log_max
,
24632 doc
: /* Maximum number of lines to keep in the message log buffer.
24633 If nil, disable message logging. If t, log messages but don't truncate
24634 the buffer when it becomes large. */);
24635 Vmessage_log_max
= make_number (100);
24637 DEFVAR_LISP ("window-size-change-functions", &Vwindow_size_change_functions
,
24638 doc
: /* Functions called before redisplay, if window sizes have changed.
24639 The value should be a list of functions that take one argument.
24640 Just before redisplay, for each frame, if any of its windows have changed
24641 size since the last redisplay, or have been split or deleted,
24642 all the functions in the list are called, with the frame as argument. */);
24643 Vwindow_size_change_functions
= Qnil
;
24645 DEFVAR_LISP ("window-scroll-functions", &Vwindow_scroll_functions
,
24646 doc
: /* List of functions to call before redisplaying a window with scrolling.
24647 Each function is called with two arguments, the window
24648 and its new display-start position. Note that the value of `window-end'
24649 is not valid when these functions are called. */);
24650 Vwindow_scroll_functions
= Qnil
;
24652 DEFVAR_LISP ("window-text-change-functions",
24653 &Vwindow_text_change_functions
,
24654 doc
: /* Functions to call in redisplay when text in the window might change. */);
24655 Vwindow_text_change_functions
= Qnil
;
24657 DEFVAR_LISP ("redisplay-end-trigger-functions", &Vredisplay_end_trigger_functions
,
24658 doc
: /* Functions called when redisplay of a window reaches the end trigger.
24659 Each function is called with two arguments, the window and the end trigger value.
24660 See `set-window-redisplay-end-trigger'. */);
24661 Vredisplay_end_trigger_functions
= Qnil
;
24663 DEFVAR_LISP ("mouse-autoselect-window", &Vmouse_autoselect_window
,
24664 doc
: /* *Non-nil means autoselect window with mouse pointer.
24665 If nil, do not autoselect windows.
24666 A positive number means delay autoselection by that many seconds: a
24667 window is autoselected only after the mouse has remained in that
24668 window for the duration of the delay.
24669 A negative number has a similar effect, but causes windows to be
24670 autoselected only after the mouse has stopped moving. \(Because of
24671 the way Emacs compares mouse events, you will occasionally wait twice
24672 that time before the window gets selected.\)
24673 Any other value means to autoselect window instantaneously when the
24674 mouse pointer enters it.
24676 Autoselection selects the minibuffer only if it is active, and never
24677 unselects the minibuffer if it is active.
24679 When customizing this variable make sure that the actual value of
24680 `focus-follows-mouse' matches the behavior of your window manager. */);
24681 Vmouse_autoselect_window
= Qnil
;
24683 DEFVAR_LISP ("auto-resize-tool-bars", &Vauto_resize_tool_bars
,
24684 doc
: /* *Non-nil means automatically resize tool-bars.
24685 This dynamically changes the tool-bar's height to the minimum height
24686 that is needed to make all tool-bar items visible.
24687 If value is `grow-only', the tool-bar's height is only increased
24688 automatically; to decrease the tool-bar height, use \\[recenter]. */);
24689 Vauto_resize_tool_bars
= Qt
;
24691 DEFVAR_BOOL ("auto-raise-tool-bar-buttons", &auto_raise_tool_bar_buttons_p
,
24692 doc
: /* *Non-nil means raise tool-bar buttons when the mouse moves over them. */);
24693 auto_raise_tool_bar_buttons_p
= 1;
24695 DEFVAR_BOOL ("make-cursor-line-fully-visible", &make_cursor_line_fully_visible_p
,
24696 doc
: /* *Non-nil means to scroll (recenter) cursor line if it is not fully visible. */);
24697 make_cursor_line_fully_visible_p
= 1;
24699 DEFVAR_LISP ("tool-bar-border", &Vtool_bar_border
,
24700 doc
: /* *Border below tool-bar in pixels.
24701 If an integer, use it as the height of the border.
24702 If it is one of `internal-border-width' or `border-width', use the
24703 value of the corresponding frame parameter.
24704 Otherwise, no border is added below the tool-bar. */);
24705 Vtool_bar_border
= Qinternal_border_width
;
24707 DEFVAR_LISP ("tool-bar-button-margin", &Vtool_bar_button_margin
,
24708 doc
: /* *Margin around tool-bar buttons in pixels.
24709 If an integer, use that for both horizontal and vertical margins.
24710 Otherwise, value should be a pair of integers `(HORZ . VERT)' with
24711 HORZ specifying the horizontal margin, and VERT specifying the
24712 vertical margin. */);
24713 Vtool_bar_button_margin
= make_number (DEFAULT_TOOL_BAR_BUTTON_MARGIN
);
24715 DEFVAR_INT ("tool-bar-button-relief", &tool_bar_button_relief
,
24716 doc
: /* *Relief thickness of tool-bar buttons. */);
24717 tool_bar_button_relief
= DEFAULT_TOOL_BAR_BUTTON_RELIEF
;
24719 DEFVAR_LISP ("fontification-functions", &Vfontification_functions
,
24720 doc
: /* List of functions to call to fontify regions of text.
24721 Each function is called with one argument POS. Functions must
24722 fontify a region starting at POS in the current buffer, and give
24723 fontified regions the property `fontified'. */);
24724 Vfontification_functions
= Qnil
;
24725 Fmake_variable_buffer_local (Qfontification_functions
);
24727 DEFVAR_BOOL ("unibyte-display-via-language-environment",
24728 &unibyte_display_via_language_environment
,
24729 doc
: /* *Non-nil means display unibyte text according to language environment.
24730 Specifically this means that unibyte non-ASCII characters
24731 are displayed by converting them to the equivalent multibyte characters
24732 according to the current language environment. As a result, they are
24733 displayed according to the current fontset. */);
24734 unibyte_display_via_language_environment
= 0;
24736 DEFVAR_LISP ("max-mini-window-height", &Vmax_mini_window_height
,
24737 doc
: /* *Maximum height for resizing mini-windows.
24738 If a float, it specifies a fraction of the mini-window frame's height.
24739 If an integer, it specifies a number of lines. */);
24740 Vmax_mini_window_height
= make_float (0.25);
24742 DEFVAR_LISP ("resize-mini-windows", &Vresize_mini_windows
,
24743 doc
: /* *How to resize mini-windows.
24744 A value of nil means don't automatically resize mini-windows.
24745 A value of t means resize them to fit the text displayed in them.
24746 A value of `grow-only', the default, means let mini-windows grow
24747 only, until their display becomes empty, at which point the windows
24748 go back to their normal size. */);
24749 Vresize_mini_windows
= Qgrow_only
;
24751 DEFVAR_LISP ("blink-cursor-alist", &Vblink_cursor_alist
,
24752 doc
: /* Alist specifying how to blink the cursor off.
24753 Each element has the form (ON-STATE . OFF-STATE). Whenever the
24754 `cursor-type' frame-parameter or variable equals ON-STATE,
24755 comparing using `equal', Emacs uses OFF-STATE to specify
24756 how to blink it off. ON-STATE and OFF-STATE are values for
24757 the `cursor-type' frame parameter.
24759 If a frame's ON-STATE has no entry in this list,
24760 the frame's other specifications determine how to blink the cursor off. */);
24761 Vblink_cursor_alist
= Qnil
;
24763 DEFVAR_BOOL ("auto-hscroll-mode", &automatic_hscrolling_p
,
24764 doc
: /* *Non-nil means scroll the display automatically to make point visible. */);
24765 automatic_hscrolling_p
= 1;
24766 Qauto_hscroll_mode
= intern ("auto-hscroll-mode");
24767 staticpro (&Qauto_hscroll_mode
);
24769 DEFVAR_INT ("hscroll-margin", &hscroll_margin
,
24770 doc
: /* *How many columns away from the window edge point is allowed to get
24771 before automatic hscrolling will horizontally scroll the window. */);
24772 hscroll_margin
= 5;
24774 DEFVAR_LISP ("hscroll-step", &Vhscroll_step
,
24775 doc
: /* *How many columns to scroll the window when point gets too close to the edge.
24776 When point is less than `hscroll-margin' columns from the window
24777 edge, automatic hscrolling will scroll the window by the amount of columns
24778 determined by this variable. If its value is a positive integer, scroll that
24779 many columns. If it's a positive floating-point number, it specifies the
24780 fraction of the window's width to scroll. If it's nil or zero, point will be
24781 centered horizontally after the scroll. Any other value, including negative
24782 numbers, are treated as if the value were zero.
24784 Automatic hscrolling always moves point outside the scroll margin, so if
24785 point was more than scroll step columns inside the margin, the window will
24786 scroll more than the value given by the scroll step.
24788 Note that the lower bound for automatic hscrolling specified by `scroll-left'
24789 and `scroll-right' overrides this variable's effect. */);
24790 Vhscroll_step
= make_number (0);
24792 DEFVAR_BOOL ("message-truncate-lines", &message_truncate_lines
,
24793 doc
: /* If non-nil, messages are truncated instead of resizing the echo area.
24794 Bind this around calls to `message' to let it take effect. */);
24795 message_truncate_lines
= 0;
24797 DEFVAR_LISP ("menu-bar-update-hook", &Vmenu_bar_update_hook
,
24798 doc
: /* Normal hook run to update the menu bar definitions.
24799 Redisplay runs this hook before it redisplays the menu bar.
24800 This is used to update submenus such as Buffers,
24801 whose contents depend on various data. */);
24802 Vmenu_bar_update_hook
= Qnil
;
24804 DEFVAR_LISP ("menu-updating-frame", &Vmenu_updating_frame
,
24805 doc
: /* Frame for which we are updating a menu.
24806 The enable predicate for a menu binding should check this variable. */);
24807 Vmenu_updating_frame
= Qnil
;
24809 DEFVAR_BOOL ("inhibit-menubar-update", &inhibit_menubar_update
,
24810 doc
: /* Non-nil means don't update menu bars. Internal use only. */);
24811 inhibit_menubar_update
= 0;
24813 DEFVAR_BOOL ("inhibit-eval-during-redisplay", &inhibit_eval_during_redisplay
,
24814 doc
: /* Non-nil means don't eval Lisp during redisplay. */);
24815 inhibit_eval_during_redisplay
= 0;
24817 DEFVAR_BOOL ("inhibit-free-realized-faces", &inhibit_free_realized_faces
,
24818 doc
: /* Non-nil means don't free realized faces. Internal use only. */);
24819 inhibit_free_realized_faces
= 0;
24822 DEFVAR_BOOL ("inhibit-try-window-id", &inhibit_try_window_id
,
24823 doc
: /* Inhibit try_window_id display optimization. */);
24824 inhibit_try_window_id
= 0;
24826 DEFVAR_BOOL ("inhibit-try-window-reusing", &inhibit_try_window_reusing
,
24827 doc
: /* Inhibit try_window_reusing display optimization. */);
24828 inhibit_try_window_reusing
= 0;
24830 DEFVAR_BOOL ("inhibit-try-cursor-movement", &inhibit_try_cursor_movement
,
24831 doc
: /* Inhibit try_cursor_movement display optimization. */);
24832 inhibit_try_cursor_movement
= 0;
24833 #endif /* GLYPH_DEBUG */
24835 DEFVAR_INT ("overline-margin", &overline_margin
,
24836 doc
: /* *Space between overline and text, in pixels.
24837 The default value is 2: the height of the overline (1 pixel) plus 1 pixel
24838 margin to the caracter height. */);
24839 overline_margin
= 2;
24843 /* Initialize this module when Emacs starts. */
24848 Lisp_Object root_window
;
24849 struct window
*mini_w
;
24851 current_header_line_height
= current_mode_line_height
= -1;
24853 CHARPOS (this_line_start_pos
) = 0;
24855 mini_w
= XWINDOW (minibuf_window
);
24856 root_window
= FRAME_ROOT_WINDOW (XFRAME (WINDOW_FRAME (mini_w
)));
24858 if (!noninteractive
)
24860 struct frame
*f
= XFRAME (WINDOW_FRAME (XWINDOW (root_window
)));
24863 XWINDOW (root_window
)->top_line
= make_number (FRAME_TOP_MARGIN (f
));
24864 set_window_height (root_window
,
24865 FRAME_LINES (f
) - 1 - FRAME_TOP_MARGIN (f
),
24867 mini_w
->top_line
= make_number (FRAME_LINES (f
) - 1);
24868 set_window_height (minibuf_window
, 1, 0);
24870 XWINDOW (root_window
)->total_cols
= make_number (FRAME_COLS (f
));
24871 mini_w
->total_cols
= make_number (FRAME_COLS (f
));
24873 scratch_glyph_row
.glyphs
[TEXT_AREA
] = scratch_glyphs
;
24874 scratch_glyph_row
.glyphs
[TEXT_AREA
+ 1]
24875 = scratch_glyphs
+ MAX_SCRATCH_GLYPHS
;
24877 /* The default ellipsis glyphs `...'. */
24878 for (i
= 0; i
< 3; ++i
)
24879 default_invis_vector
[i
] = make_number ('.');
24883 /* Allocate the buffer for frame titles.
24884 Also used for `format-mode-line'. */
24886 mode_line_noprop_buf
= (char *) xmalloc (size
);
24887 mode_line_noprop_buf_end
= mode_line_noprop_buf
+ size
;
24888 mode_line_noprop_ptr
= mode_line_noprop_buf
;
24889 mode_line_target
= MODE_LINE_DISPLAY
;
24892 help_echo_showing_p
= 0;
24896 /* arch-tag: eacc864d-bb6a-4b74-894a-1a4399a1358b
24897 (do not change this comment) */