1 /* Display generation from window structure and buffer text.
2 Copyright (C) 1985,86,87,88,93,94,95,97,98,99,2000,01,02,03
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 /* New redisplay written by Gerd Moellmann <gerd@gnu.org>.
26 Emacs separates the task of updating the display from code
27 modifying global state, e.g. buffer text. This way functions
28 operating on buffers don't also have to be concerned with updating
31 Updating the display is triggered by the Lisp interpreter when it
32 decides it's time to do it. This is done either automatically for
33 you as part of the interpreter's command loop or as the result of
34 calling Lisp functions like `sit-for'. The C function `redisplay'
35 in xdisp.c is the only entry into the inner redisplay code. (Or,
36 let's say almost---see the description of direct update
39 The following diagram shows how redisplay code is invoked. As you
40 can see, Lisp calls redisplay and vice versa. Under window systems
41 like X, some portions of the redisplay code are also called
42 asynchronously during mouse movement or expose events. It is very
43 important that these code parts do NOT use the C library (malloc,
44 free) because many C libraries under Unix are not reentrant. They
45 may also NOT call functions of the Lisp interpreter which could
46 change the interpreter's state. If you don't follow these rules,
47 you will encounter bugs which are very hard to explain.
49 (Direct functions, see below)
50 direct_output_for_insert,
51 direct_forward_char (dispnew.c)
52 +---------------------------------+
55 +--------------+ redisplay +----------------+
56 | Lisp machine |---------------->| Redisplay code |<--+
57 +--------------+ (xdisp.c) +----------------+ |
59 +----------------------------------+ |
60 Don't use this path when called |
63 expose_window (asynchronous) |
65 X expose events -----+
67 What does redisplay do? Obviously, it has to figure out somehow what
68 has been changed since the last time the display has been updated,
69 and to make these changes visible. Preferably it would do that in
70 a moderately intelligent way, i.e. fast.
72 Changes in buffer text can be deduced from window and buffer
73 structures, and from some global variables like `beg_unchanged' and
74 `end_unchanged'. The contents of the display are additionally
75 recorded in a `glyph matrix', a two-dimensional matrix of glyph
76 structures. Each row in such a matrix corresponds to a line on the
77 display, and each glyph in a row corresponds to a column displaying
78 a character, an image, or what else. This matrix is called the
79 `current glyph matrix' or `current matrix' in redisplay
82 For buffer parts that have been changed since the last update, a
83 second glyph matrix is constructed, the so called `desired glyph
84 matrix' or short `desired matrix'. Current and desired matrix are
85 then compared to find a cheap way to update the display, e.g. by
86 reusing part of the display by scrolling lines.
91 You will find a lot of redisplay optimizations when you start
92 looking at the innards of redisplay. The overall goal of all these
93 optimizations is to make redisplay fast because it is done
96 Two optimizations are not found in xdisp.c. These are the direct
97 operations mentioned above. As the name suggests they follow a
98 different principle than the rest of redisplay. Instead of
99 building a desired matrix and then comparing it with the current
100 display, they perform their actions directly on the display and on
103 One direct operation updates the display after one character has
104 been entered. The other one moves the cursor by one position
105 forward or backward. You find these functions under the names
106 `direct_output_for_insert' and `direct_output_forward_char' in
112 Desired matrices are always built per Emacs window. The function
113 `display_line' is the central function to look at if you are
114 interested. It constructs one row in a desired matrix given an
115 iterator structure containing both a buffer position and a
116 description of the environment in which the text is to be
117 displayed. But this is too early, read on.
119 Characters and pixmaps displayed for a range of buffer text depend
120 on various settings of buffers and windows, on overlays and text
121 properties, on display tables, on selective display. The good news
122 is that all this hairy stuff is hidden behind a small set of
123 interface functions taking an iterator structure (struct it)
126 Iteration over things to be displayed is then simple. It is
127 started by initializing an iterator with a call to init_iterator.
128 Calls to get_next_display_element fill the iterator structure with
129 relevant information about the next thing to display. Calls to
130 set_iterator_to_next move the iterator to the next thing.
132 Besides this, an iterator also contains information about the
133 display environment in which glyphs for display elements are to be
134 produced. It has fields for the width and height of the display,
135 the information whether long lines are truncated or continued, a
136 current X and Y position, and lots of other stuff you can better
139 Glyphs in a desired matrix are normally constructed in a loop
140 calling get_next_display_element and then produce_glyphs. The call
141 to produce_glyphs will fill the iterator structure with pixel
142 information about the element being displayed and at the same time
143 produce glyphs for it. If the display element fits on the line
144 being displayed, set_iterator_to_next is called next, otherwise the
145 glyphs produced are discarded.
150 That just couldn't be all, could it? What about terminal types not
151 supporting operations on sub-windows of the screen? To update the
152 display on such a terminal, window-based glyph matrices are not
153 well suited. To be able to reuse part of the display (scrolling
154 lines up and down), we must instead have a view of the whole
155 screen. This is what `frame matrices' are for. They are a trick.
157 Frames on terminals like above have a glyph pool. Windows on such
158 a frame sub-allocate their glyph memory from their frame's glyph
159 pool. The frame itself is given its own glyph matrices. By
160 coincidence---or maybe something else---rows in window glyph
161 matrices are slices of corresponding rows in frame matrices. Thus
162 writing to window matrices implicitly updates a frame matrix which
163 provides us with the view of the whole screen that we originally
164 wanted to have without having to move many bytes around. To be
165 honest, there is a little bit more done, but not much more. If you
166 plan to extend that code, take a look at dispnew.c. The function
167 build_frame_matrix is a good starting point. */
173 #include "keyboard.h"
176 #include "termchar.h"
177 #include "dispextern.h"
181 #include "commands.h"
185 #include "termhooks.h"
186 #include "intervals.h"
189 #include "region-cache.h"
191 #include "blockinput.h"
193 #ifdef HAVE_X_WINDOWS
205 #ifndef FRAME_X_OUTPUT
206 #define FRAME_X_OUTPUT(f) ((f)->output_data.x)
209 #define INFINITY 10000000
211 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
213 extern void set_frame_menubar
P_ ((struct frame
*f
, int, int));
214 extern int pending_menu_activation
;
217 extern int interrupt_input
;
218 extern int command_loop_level
;
220 extern int minibuffer_auto_raise
;
221 extern Lisp_Object Vminibuffer_list
;
223 extern Lisp_Object Qface
;
224 extern Lisp_Object Qmode_line
, Qmode_line_inactive
, Qheader_line
;
226 extern Lisp_Object Voverriding_local_map
;
227 extern Lisp_Object Voverriding_local_map_menu_flag
;
228 extern Lisp_Object Qmenu_item
;
229 extern Lisp_Object Qwhen
;
230 extern Lisp_Object Qhelp_echo
;
232 Lisp_Object Qoverriding_local_map
, Qoverriding_terminal_local_map
;
233 Lisp_Object Qwindow_scroll_functions
, Vwindow_scroll_functions
;
234 Lisp_Object Qredisplay_end_trigger_functions
;
235 Lisp_Object Qinhibit_point_motion_hooks
;
236 Lisp_Object QCeval
, QCfile
, QCdata
, QCpropertize
;
237 Lisp_Object Qfontified
;
238 Lisp_Object Qgrow_only
;
239 Lisp_Object Qinhibit_eval_during_redisplay
;
240 Lisp_Object Qbuffer_position
, Qposition
, Qobject
;
243 Lisp_Object Qbar
, Qhbar
, Qbox
, Qhollow
;
245 Lisp_Object Qrisky_local_variable
;
247 /* Holds the list (error). */
248 Lisp_Object list_of_error
;
250 /* Functions called to fontify regions of text. */
252 Lisp_Object Vfontification_functions
;
253 Lisp_Object Qfontification_functions
;
255 /* Non-zero means automatically select any window when the mouse
256 cursor moves into it. */
257 int mouse_autoselect_window
;
259 /* Non-zero means draw tool bar buttons raised when the mouse moves
262 int auto_raise_tool_bar_buttons_p
;
264 /* Margin around tool bar buttons in pixels. */
266 Lisp_Object Vtool_bar_button_margin
;
268 /* Thickness of shadow to draw around tool bar buttons. */
270 EMACS_INT tool_bar_button_relief
;
272 /* Non-zero means automatically resize tool-bars so that all tool-bar
273 items are visible, and no blank lines remain. */
275 int auto_resize_tool_bars_p
;
277 /* Non-zero means draw block and hollow cursor as wide as the glyph
278 under it. For example, if a block cursor is over a tab, it will be
279 drawn as wide as that tab on the display. */
281 int x_stretch_cursor_p
;
283 /* Non-nil means don't actually do any redisplay. */
285 Lisp_Object Vinhibit_redisplay
, Qinhibit_redisplay
;
287 /* Non-zero means Lisp evaluation during redisplay is inhibited. */
289 int inhibit_eval_during_redisplay
;
291 /* Names of text properties relevant for redisplay. */
293 Lisp_Object Qdisplay
, Qrelative_width
, Qalign_to
;
294 extern Lisp_Object Qface
, Qinvisible
, Qwidth
;
296 /* Symbols used in text property values. */
298 Lisp_Object Qspace
, QCalign_to
, QCrelative_width
, QCrelative_height
;
299 Lisp_Object Qleft_margin
, Qright_margin
, Qspace_width
, Qraise
;
301 extern Lisp_Object Qheight
;
302 extern Lisp_Object QCwidth
, QCheight
, QCascent
;
304 /* Non-nil means highlight trailing whitespace. */
306 Lisp_Object Vshow_trailing_whitespace
;
308 /* Name of the face used to highlight trailing whitespace. */
310 Lisp_Object Qtrailing_whitespace
;
312 /* The symbol `image' which is the car of the lists used to represent
317 /* Non-zero means print newline to stdout before next mini-buffer
320 int noninteractive_need_newline
;
322 /* Non-zero means print newline to message log before next message. */
324 static int message_log_need_newline
;
326 /* Three markers that message_dolog uses.
327 It could allocate them itself, but that causes trouble
328 in handling memory-full errors. */
329 static Lisp_Object message_dolog_marker1
;
330 static Lisp_Object message_dolog_marker2
;
331 static Lisp_Object message_dolog_marker3
;
333 /* The buffer position of the first character appearing entirely or
334 partially on the line of the selected window which contains the
335 cursor; <= 0 if not known. Set by set_cursor_from_row, used for
336 redisplay optimization in redisplay_internal. */
338 static struct text_pos this_line_start_pos
;
340 /* Number of characters past the end of the line above, including the
341 terminating newline. */
343 static struct text_pos this_line_end_pos
;
345 /* The vertical positions and the height of this line. */
347 static int this_line_vpos
;
348 static int this_line_y
;
349 static int this_line_pixel_height
;
351 /* X position at which this display line starts. Usually zero;
352 negative if first character is partially visible. */
354 static int this_line_start_x
;
356 /* Buffer that this_line_.* variables are referring to. */
358 static struct buffer
*this_line_buffer
;
360 /* Nonzero means truncate lines in all windows less wide than the
363 int truncate_partial_width_windows
;
365 /* A flag to control how to display unibyte 8-bit character. */
367 int unibyte_display_via_language_environment
;
369 /* Nonzero means we have more than one non-mini-buffer-only frame.
370 Not guaranteed to be accurate except while parsing
371 frame-title-format. */
375 Lisp_Object Vglobal_mode_string
;
377 /* Marker for where to display an arrow on top of the buffer text. */
379 Lisp_Object Voverlay_arrow_position
;
381 /* String to display for the arrow. Only used on terminal frames. */
383 Lisp_Object Voverlay_arrow_string
;
385 /* Values of those variables at last redisplay. However, if
386 Voverlay_arrow_position is a marker, last_arrow_position is its
387 numerical position. */
389 static Lisp_Object last_arrow_position
, last_arrow_string
;
391 /* Like mode-line-format, but for the title bar on a visible frame. */
393 Lisp_Object Vframe_title_format
;
395 /* Like mode-line-format, but for the title bar on an iconified frame. */
397 Lisp_Object Vicon_title_format
;
399 /* List of functions to call when a window's size changes. These
400 functions get one arg, a frame on which one or more windows' sizes
403 static Lisp_Object Vwindow_size_change_functions
;
405 Lisp_Object Qmenu_bar_update_hook
, Vmenu_bar_update_hook
;
407 /* Nonzero if overlay arrow has been displayed once in this window. */
409 static int overlay_arrow_seen
;
411 /* Nonzero means highlight the region even in nonselected windows. */
413 int highlight_nonselected_windows
;
415 /* If cursor motion alone moves point off frame, try scrolling this
416 many lines up or down if that will bring it back. */
418 static EMACS_INT scroll_step
;
420 /* Nonzero means scroll just far enough to bring point back on the
421 screen, when appropriate. */
423 static EMACS_INT scroll_conservatively
;
425 /* Recenter the window whenever point gets within this many lines of
426 the top or bottom of the window. This value is translated into a
427 pixel value by multiplying it with FRAME_LINE_HEIGHT, which means
428 that there is really a fixed pixel height scroll margin. */
430 EMACS_INT scroll_margin
;
432 /* Number of windows showing the buffer of the selected window (or
433 another buffer with the same base buffer). keyboard.c refers to
438 /* Vector containing glyphs for an ellipsis `...'. */
440 static Lisp_Object default_invis_vector
[3];
442 /* Zero means display the mode-line/header-line/menu-bar in the default face
443 (this slightly odd definition is for compatibility with previous versions
444 of emacs), non-zero means display them using their respective faces.
446 This variable is deprecated. */
448 int mode_line_inverse_video
;
450 /* Prompt to display in front of the mini-buffer contents. */
452 Lisp_Object minibuf_prompt
;
454 /* Width of current mini-buffer prompt. Only set after display_line
455 of the line that contains the prompt. */
457 int minibuf_prompt_width
;
459 /* This is the window where the echo area message was displayed. It
460 is always a mini-buffer window, but it may not be the same window
461 currently active as a mini-buffer. */
463 Lisp_Object echo_area_window
;
465 /* List of pairs (MESSAGE . MULTIBYTE). The function save_message
466 pushes the current message and the value of
467 message_enable_multibyte on the stack, the function restore_message
468 pops the stack and displays MESSAGE again. */
470 Lisp_Object Vmessage_stack
;
472 /* Nonzero means multibyte characters were enabled when the echo area
473 message was specified. */
475 int message_enable_multibyte
;
477 /* Nonzero if we should redraw the mode lines on the next redisplay. */
479 int update_mode_lines
;
481 /* Nonzero if window sizes or contents have changed since last
482 redisplay that finished. */
484 int windows_or_buffers_changed
;
486 /* Nonzero means a frame's cursor type has been changed. */
488 int cursor_type_changed
;
490 /* Nonzero after display_mode_line if %l was used and it displayed a
493 int line_number_displayed
;
495 /* Maximum buffer size for which to display line numbers. */
497 Lisp_Object Vline_number_display_limit
;
499 /* Line width to consider when repositioning for line number display. */
501 static EMACS_INT line_number_display_limit_width
;
503 /* Number of lines to keep in the message log buffer. t means
504 infinite. nil means don't log at all. */
506 Lisp_Object Vmessage_log_max
;
508 /* The name of the *Messages* buffer, a string. */
510 static Lisp_Object Vmessages_buffer_name
;
512 /* Current, index 0, and last displayed echo area message. Either
513 buffers from echo_buffers, or nil to indicate no message. */
515 Lisp_Object echo_area_buffer
[2];
517 /* The buffers referenced from echo_area_buffer. */
519 static Lisp_Object echo_buffer
[2];
521 /* A vector saved used in with_area_buffer to reduce consing. */
523 static Lisp_Object Vwith_echo_area_save_vector
;
525 /* Non-zero means display_echo_area should display the last echo area
526 message again. Set by redisplay_preserve_echo_area. */
528 static int display_last_displayed_message_p
;
530 /* Nonzero if echo area is being used by print; zero if being used by
533 int message_buf_print
;
535 /* The symbol `inhibit-menubar-update' and its DEFVAR_BOOL variable. */
537 Lisp_Object Qinhibit_menubar_update
;
538 int inhibit_menubar_update
;
540 /* Maximum height for resizing mini-windows. Either a float
541 specifying a fraction of the available height, or an integer
542 specifying a number of lines. */
544 Lisp_Object Vmax_mini_window_height
;
546 /* Non-zero means messages should be displayed with truncated
547 lines instead of being continued. */
549 int message_truncate_lines
;
550 Lisp_Object Qmessage_truncate_lines
;
552 /* Set to 1 in clear_message to make redisplay_internal aware
553 of an emptied echo area. */
555 static int message_cleared_p
;
557 /* Non-zero means we want a hollow cursor in windows that are not
558 selected. Zero means there's no cursor in such windows. */
560 Lisp_Object Vcursor_in_non_selected_windows
;
561 Lisp_Object Qcursor_in_non_selected_windows
;
563 /* How to blink the default frame cursor off. */
564 Lisp_Object Vblink_cursor_alist
;
566 /* A scratch glyph row with contents used for generating truncation
567 glyphs. Also used in direct_output_for_insert. */
569 #define MAX_SCRATCH_GLYPHS 100
570 struct glyph_row scratch_glyph_row
;
571 static struct glyph scratch_glyphs
[MAX_SCRATCH_GLYPHS
];
573 /* Ascent and height of the last line processed by move_it_to. */
575 static int last_max_ascent
, last_height
;
577 /* Non-zero if there's a help-echo in the echo area. */
579 int help_echo_showing_p
;
581 /* If >= 0, computed, exact values of mode-line and header-line height
582 to use in the macros CURRENT_MODE_LINE_HEIGHT and
583 CURRENT_HEADER_LINE_HEIGHT. */
585 int current_mode_line_height
, current_header_line_height
;
587 /* The maximum distance to look ahead for text properties. Values
588 that are too small let us call compute_char_face and similar
589 functions too often which is expensive. Values that are too large
590 let us call compute_char_face and alike too often because we
591 might not be interested in text properties that far away. */
593 #define TEXT_PROP_DISTANCE_LIMIT 100
597 /* Variables to turn off display optimizations from Lisp. */
599 int inhibit_try_window_id
, inhibit_try_window_reusing
;
600 int inhibit_try_cursor_movement
;
602 /* Non-zero means print traces of redisplay if compiled with
605 int trace_redisplay_p
;
607 #endif /* GLYPH_DEBUG */
609 #ifdef DEBUG_TRACE_MOVE
610 /* Non-zero means trace with TRACE_MOVE to stderr. */
613 #define TRACE_MOVE(x) if (trace_move) fprintf x; else (void) 0
615 #define TRACE_MOVE(x) (void) 0
618 /* Non-zero means automatically scroll windows horizontally to make
621 int automatic_hscrolling_p
;
623 /* How close to the margin can point get before the window is scrolled
625 EMACS_INT hscroll_margin
;
627 /* How much to scroll horizontally when point is inside the above margin. */
628 Lisp_Object Vhscroll_step
;
630 /* A list of symbols, one for each supported image type. */
632 Lisp_Object Vimage_types
;
634 /* The variable `resize-mini-windows'. If nil, don't resize
635 mini-windows. If t, always resize them to fit the text they
636 display. If `grow-only', let mini-windows grow only until they
639 Lisp_Object Vresize_mini_windows
;
641 /* Buffer being redisplayed -- for redisplay_window_error. */
643 struct buffer
*displayed_buffer
;
645 /* Value returned from text property handlers (see below). */
650 HANDLED_RECOMPUTE_PROPS
,
651 HANDLED_OVERLAY_STRING_CONSUMED
,
655 /* A description of text properties that redisplay is interested
660 /* The name of the property. */
663 /* A unique index for the property. */
666 /* A handler function called to set up iterator IT from the property
667 at IT's current position. Value is used to steer handle_stop. */
668 enum prop_handled (*handler
) P_ ((struct it
*it
));
671 static enum prop_handled handle_face_prop
P_ ((struct it
*));
672 static enum prop_handled handle_invisible_prop
P_ ((struct it
*));
673 static enum prop_handled handle_display_prop
P_ ((struct it
*));
674 static enum prop_handled handle_composition_prop
P_ ((struct it
*));
675 static enum prop_handled handle_overlay_change
P_ ((struct it
*));
676 static enum prop_handled handle_fontified_prop
P_ ((struct it
*));
678 /* Properties handled by iterators. */
680 static struct props it_props
[] =
682 {&Qfontified
, FONTIFIED_PROP_IDX
, handle_fontified_prop
},
683 /* Handle `face' before `display' because some sub-properties of
684 `display' need to know the face. */
685 {&Qface
, FACE_PROP_IDX
, handle_face_prop
},
686 {&Qdisplay
, DISPLAY_PROP_IDX
, handle_display_prop
},
687 {&Qinvisible
, INVISIBLE_PROP_IDX
, handle_invisible_prop
},
688 {&Qcomposition
, COMPOSITION_PROP_IDX
, handle_composition_prop
},
692 /* Value is the position described by X. If X is a marker, value is
693 the marker_position of X. Otherwise, value is X. */
695 #define COERCE_MARKER(X) (MARKERP ((X)) ? Fmarker_position (X) : (X))
697 /* Enumeration returned by some move_it_.* functions internally. */
701 /* Not used. Undefined value. */
704 /* Move ended at the requested buffer position or ZV. */
705 MOVE_POS_MATCH_OR_ZV
,
707 /* Move ended at the requested X pixel position. */
710 /* Move within a line ended at the end of a line that must be
714 /* Move within a line ended at the end of a line that would
715 be displayed truncated. */
718 /* Move within a line ended at a line end. */
722 /* This counter is used to clear the face cache every once in a while
723 in redisplay_internal. It is incremented for each redisplay.
724 Every CLEAR_FACE_CACHE_COUNT full redisplays, the face cache is
727 #define CLEAR_FACE_CACHE_COUNT 500
728 static int clear_face_cache_count
;
730 /* Record the previous terminal frame we displayed. */
732 static struct frame
*previous_terminal_frame
;
734 /* Non-zero while redisplay_internal is in progress. */
738 /* Non-zero means don't free realized faces. Bound while freeing
739 realized faces is dangerous because glyph matrices might still
742 int inhibit_free_realized_faces
;
743 Lisp_Object Qinhibit_free_realized_faces
;
745 /* If a string, XTread_socket generates an event to display that string.
746 (The display is done in read_char.) */
748 Lisp_Object help_echo_string
;
749 Lisp_Object help_echo_window
;
750 Lisp_Object help_echo_object
;
753 /* Temporary variable for XTread_socket. */
755 Lisp_Object previous_help_echo_string
;
759 /* Function prototypes. */
761 static void setup_for_ellipsis
P_ ((struct it
*));
762 static void mark_window_display_accurate_1
P_ ((struct window
*, int));
763 static int single_display_prop_string_p
P_ ((Lisp_Object
, Lisp_Object
));
764 static int display_prop_string_p
P_ ((Lisp_Object
, Lisp_Object
));
765 static int cursor_row_p
P_ ((struct window
*, struct glyph_row
*));
766 static int redisplay_mode_lines
P_ ((Lisp_Object
, int));
767 static char *decode_mode_spec_coding
P_ ((Lisp_Object
, char *, int));
770 static int invisible_text_between_p
P_ ((struct it
*, int, int));
773 static int next_element_from_ellipsis
P_ ((struct it
*));
774 static void pint2str
P_ ((char *, int, int));
775 static struct text_pos run_window_scroll_functions
P_ ((Lisp_Object
,
777 static void reconsider_clip_changes
P_ ((struct window
*, struct buffer
*));
778 static int text_outside_line_unchanged_p
P_ ((struct window
*, int, int));
779 static void store_frame_title_char
P_ ((char));
780 static int store_frame_title
P_ ((const unsigned char *, int, int));
781 static void x_consider_frame_title
P_ ((Lisp_Object
));
782 static void handle_stop
P_ ((struct it
*));
783 static int tool_bar_lines_needed
P_ ((struct frame
*));
784 static int single_display_prop_intangible_p
P_ ((Lisp_Object
));
785 static void ensure_echo_area_buffers
P_ ((void));
786 static Lisp_Object unwind_with_echo_area_buffer
P_ ((Lisp_Object
));
787 static Lisp_Object with_echo_area_buffer_unwind_data
P_ ((struct window
*));
788 static int with_echo_area_buffer
P_ ((struct window
*, int,
789 int (*) (EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
),
790 EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
));
791 static void clear_garbaged_frames
P_ ((void));
792 static int current_message_1
P_ ((EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
));
793 static int truncate_message_1
P_ ((EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
));
794 static int set_message_1
P_ ((EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
));
795 static int display_echo_area
P_ ((struct window
*));
796 static int display_echo_area_1
P_ ((EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
));
797 static int resize_mini_window_1
P_ ((EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
));
798 static Lisp_Object unwind_redisplay
P_ ((Lisp_Object
));
799 static int string_char_and_length
P_ ((const unsigned char *, int, int *));
800 static struct text_pos display_prop_end
P_ ((struct it
*, Lisp_Object
,
802 static int compute_window_start_on_continuation_line
P_ ((struct window
*));
803 static Lisp_Object safe_eval_handler
P_ ((Lisp_Object
));
804 static void insert_left_trunc_glyphs
P_ ((struct it
*));
805 static struct glyph_row
*get_overlay_arrow_glyph_row
P_ ((struct window
*));
806 static void extend_face_to_end_of_line
P_ ((struct it
*));
807 static int append_space
P_ ((struct it
*, int));
808 static int make_cursor_line_fully_visible
P_ ((struct window
*));
809 static int try_scrolling
P_ ((Lisp_Object
, int, EMACS_INT
, EMACS_INT
, int, int));
810 static int try_cursor_movement
P_ ((Lisp_Object
, struct text_pos
, int *));
811 static int trailing_whitespace_p
P_ ((int));
812 static int message_log_check_duplicate
P_ ((int, int, int, int));
813 static void push_it
P_ ((struct it
*));
814 static void pop_it
P_ ((struct it
*));
815 static void sync_frame_with_window_matrix_rows
P_ ((struct window
*));
816 static void redisplay_internal
P_ ((int));
817 static int echo_area_display
P_ ((int));
818 static void redisplay_windows
P_ ((Lisp_Object
));
819 static void redisplay_window
P_ ((Lisp_Object
, int));
820 static Lisp_Object
redisplay_window_error ();
821 static Lisp_Object redisplay_window_0
P_ ((Lisp_Object
));
822 static Lisp_Object redisplay_window_1
P_ ((Lisp_Object
));
823 static void update_menu_bar
P_ ((struct frame
*, int));
824 static int try_window_reusing_current_matrix
P_ ((struct window
*));
825 static int try_window_id
P_ ((struct window
*));
826 static int display_line
P_ ((struct it
*));
827 static int display_mode_lines
P_ ((struct window
*));
828 static int display_mode_line
P_ ((struct window
*, enum face_id
, Lisp_Object
));
829 static int display_mode_element
P_ ((struct it
*, int, int, int, Lisp_Object
, Lisp_Object
, int));
830 static int store_mode_line_string
P_ ((char *, Lisp_Object
, int, int, int, Lisp_Object
));
831 static char *decode_mode_spec
P_ ((struct window
*, int, int, int, int *));
832 static void display_menu_bar
P_ ((struct window
*));
833 static int display_count_lines
P_ ((int, int, int, int, int *));
834 static int display_string
P_ ((unsigned char *, Lisp_Object
, Lisp_Object
,
835 int, int, struct it
*, int, int, int, int));
836 static void compute_line_metrics
P_ ((struct it
*));
837 static void run_redisplay_end_trigger_hook
P_ ((struct it
*));
838 static int get_overlay_strings
P_ ((struct it
*, int));
839 static void next_overlay_string
P_ ((struct it
*));
840 static void reseat
P_ ((struct it
*, struct text_pos
, int));
841 static void reseat_1
P_ ((struct it
*, struct text_pos
, int));
842 static void back_to_previous_visible_line_start
P_ ((struct it
*));
843 static void reseat_at_previous_visible_line_start
P_ ((struct it
*));
844 static void reseat_at_next_visible_line_start
P_ ((struct it
*, int));
845 static int next_element_from_display_vector
P_ ((struct it
*));
846 static int next_element_from_string
P_ ((struct it
*));
847 static int next_element_from_c_string
P_ ((struct it
*));
848 static int next_element_from_buffer
P_ ((struct it
*));
849 static int next_element_from_composition
P_ ((struct it
*));
850 static int next_element_from_image
P_ ((struct it
*));
851 static int next_element_from_stretch
P_ ((struct it
*));
852 static void load_overlay_strings
P_ ((struct it
*, int));
853 static int init_from_display_pos
P_ ((struct it
*, struct window
*,
854 struct display_pos
*));
855 static void reseat_to_string
P_ ((struct it
*, unsigned char *,
856 Lisp_Object
, int, int, int, int));
857 static enum move_it_result move_it_in_display_line_to
P_ ((struct it
*,
859 void move_it_vertically_backward
P_ ((struct it
*, int));
860 static void init_to_row_start
P_ ((struct it
*, struct window
*,
861 struct glyph_row
*));
862 static int init_to_row_end
P_ ((struct it
*, struct window
*,
863 struct glyph_row
*));
864 static void back_to_previous_line_start
P_ ((struct it
*));
865 static int forward_to_next_line_start
P_ ((struct it
*, int *));
866 static struct text_pos string_pos_nchars_ahead
P_ ((struct text_pos
,
868 static struct text_pos string_pos
P_ ((int, Lisp_Object
));
869 static struct text_pos c_string_pos
P_ ((int, unsigned char *, int));
870 static int number_of_chars
P_ ((unsigned char *, int));
871 static void compute_stop_pos
P_ ((struct it
*));
872 static void compute_string_pos
P_ ((struct text_pos
*, struct text_pos
,
874 static int face_before_or_after_it_pos
P_ ((struct it
*, int));
875 static int next_overlay_change
P_ ((int));
876 static int handle_single_display_prop
P_ ((struct it
*, Lisp_Object
,
877 Lisp_Object
, struct text_pos
*,
879 static int underlying_face_id
P_ ((struct it
*));
880 static int in_ellipses_for_invisible_text_p
P_ ((struct display_pos
*,
883 #define face_before_it_pos(IT) face_before_or_after_it_pos ((IT), 1)
884 #define face_after_it_pos(IT) face_before_or_after_it_pos ((IT), 0)
886 #ifdef HAVE_WINDOW_SYSTEM
888 static void update_tool_bar
P_ ((struct frame
*, int));
889 static void build_desired_tool_bar_string
P_ ((struct frame
*f
));
890 static int redisplay_tool_bar
P_ ((struct frame
*));
891 static void display_tool_bar_line
P_ ((struct it
*));
892 static void notice_overwritten_cursor
P_ ((struct window
*,
894 int, int, int, int));
898 #endif /* HAVE_WINDOW_SYSTEM */
901 /***********************************************************************
902 Window display dimensions
903 ***********************************************************************/
905 /* Return the bottom boundary y-position for text lines in window W.
906 This is the first y position at which a line cannot start.
907 It is relative to the top of the window.
909 This is the height of W minus the height of a mode line, if any. */
912 window_text_bottom_y (w
)
915 int height
= WINDOW_TOTAL_HEIGHT (w
);
917 if (WINDOW_WANTS_MODELINE_P (w
))
918 height
-= CURRENT_MODE_LINE_HEIGHT (w
);
922 /* Return the pixel width of display area AREA of window W. AREA < 0
923 means return the total width of W, not including fringes to
924 the left and right of the window. */
927 window_box_width (w
, area
)
931 int cols
= XFASTINT (w
->total_cols
);
934 if (!w
->pseudo_window_p
)
936 cols
-= WINDOW_SCROLL_BAR_COLS (w
);
938 if (area
== TEXT_AREA
)
940 if (INTEGERP (w
->left_margin_cols
))
941 cols
-= XFASTINT (w
->left_margin_cols
);
942 if (INTEGERP (w
->right_margin_cols
))
943 cols
-= XFASTINT (w
->right_margin_cols
);
944 pixels
= -WINDOW_TOTAL_FRINGE_WIDTH (w
);
946 else if (area
== LEFT_MARGIN_AREA
)
948 cols
= (INTEGERP (w
->left_margin_cols
)
949 ? XFASTINT (w
->left_margin_cols
) : 0);
952 else if (area
== RIGHT_MARGIN_AREA
)
954 cols
= (INTEGERP (w
->right_margin_cols
)
955 ? XFASTINT (w
->right_margin_cols
) : 0);
960 return cols
* WINDOW_FRAME_COLUMN_WIDTH (w
) + pixels
;
964 /* Return the pixel height of the display area of window W, not
965 including mode lines of W, if any. */
968 window_box_height (w
)
971 struct frame
*f
= XFRAME (w
->frame
);
972 int height
= WINDOW_TOTAL_HEIGHT (w
);
974 xassert (height
>= 0);
976 /* Note: the code below that determines the mode-line/header-line
977 height is essentially the same as that contained in the macro
978 CURRENT_{MODE,HEADER}_LINE_HEIGHT, except that it checks whether
979 the appropriate glyph row has its `mode_line_p' flag set,
980 and if it doesn't, uses estimate_mode_line_height instead. */
982 if (WINDOW_WANTS_MODELINE_P (w
))
984 struct glyph_row
*ml_row
985 = (w
->current_matrix
&& w
->current_matrix
->rows
986 ? MATRIX_MODE_LINE_ROW (w
->current_matrix
)
988 if (ml_row
&& ml_row
->mode_line_p
)
989 height
-= ml_row
->height
;
991 height
-= estimate_mode_line_height (f
, CURRENT_MODE_LINE_FACE_ID (w
));
994 if (WINDOW_WANTS_HEADER_LINE_P (w
))
996 struct glyph_row
*hl_row
997 = (w
->current_matrix
&& w
->current_matrix
->rows
998 ? MATRIX_HEADER_LINE_ROW (w
->current_matrix
)
1000 if (hl_row
&& hl_row
->mode_line_p
)
1001 height
-= hl_row
->height
;
1003 height
-= estimate_mode_line_height (f
, HEADER_LINE_FACE_ID
);
1006 /* With a very small font and a mode-line that's taller than
1007 default, we might end up with a negative height. */
1008 return max (0, height
);
1011 /* Return the window-relative coordinate of the left edge of display
1012 area AREA of window W. AREA < 0 means return the left edge of the
1013 whole window, to the right of the left fringe of W. */
1016 window_box_left_offset (w
, area
)
1022 if (w
->pseudo_window_p
)
1025 x
= WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w
);
1027 if (area
== TEXT_AREA
)
1028 x
+= (WINDOW_LEFT_FRINGE_WIDTH (w
)
1029 + window_box_width (w
, LEFT_MARGIN_AREA
));
1030 else if (area
== RIGHT_MARGIN_AREA
)
1031 x
+= (WINDOW_LEFT_FRINGE_WIDTH (w
)
1032 + window_box_width (w
, LEFT_MARGIN_AREA
)
1033 + window_box_width (w
, TEXT_AREA
)
1034 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
1036 : WINDOW_RIGHT_FRINGE_WIDTH (w
)));
1037 else if (area
== LEFT_MARGIN_AREA
1038 && WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
))
1039 x
+= WINDOW_LEFT_FRINGE_WIDTH (w
);
1045 /* Return the window-relative coordinate of the right edge of display
1046 area AREA of window W. AREA < 0 means return the left edge of the
1047 whole window, to the left of the right fringe of W. */
1050 window_box_right_offset (w
, area
)
1054 return window_box_left_offset (w
, area
) + window_box_width (w
, area
);
1057 /* Return the frame-relative coordinate of the left edge of display
1058 area AREA of window W. AREA < 0 means return the left edge of the
1059 whole window, to the right of the left fringe of W. */
1062 window_box_left (w
, area
)
1066 struct frame
*f
= XFRAME (w
->frame
);
1069 if (w
->pseudo_window_p
)
1070 return FRAME_INTERNAL_BORDER_WIDTH (f
);
1072 x
= (WINDOW_LEFT_EDGE_X (w
)
1073 + window_box_left_offset (w
, area
));
1079 /* Return the frame-relative coordinate of the right edge of display
1080 area AREA of window W. AREA < 0 means return the left edge of the
1081 whole window, to the left of the right fringe of W. */
1084 window_box_right (w
, area
)
1088 return window_box_left (w
, area
) + window_box_width (w
, area
);
1091 /* Get the bounding box of the display area AREA of window W, without
1092 mode lines, in frame-relative coordinates. AREA < 0 means the
1093 whole window, not including the left and right fringes of
1094 the window. Return in *BOX_X and *BOX_Y the frame-relative pixel
1095 coordinates of the upper-left corner of the box. Return in
1096 *BOX_WIDTH, and *BOX_HEIGHT the pixel width and height of the box. */
1099 window_box (w
, area
, box_x
, box_y
, box_width
, box_height
)
1102 int *box_x
, *box_y
, *box_width
, *box_height
;
1105 *box_width
= window_box_width (w
, area
);
1107 *box_height
= window_box_height (w
);
1109 *box_x
= window_box_left (w
, area
);
1112 *box_y
= WINDOW_TOP_EDGE_Y (w
);
1113 if (WINDOW_WANTS_HEADER_LINE_P (w
))
1114 *box_y
+= CURRENT_HEADER_LINE_HEIGHT (w
);
1119 /* Get the bounding box of the display area AREA of window W, without
1120 mode lines. AREA < 0 means the whole window, not including the
1121 left and right fringe of the window. Return in *TOP_LEFT_X
1122 and TOP_LEFT_Y the frame-relative pixel coordinates of the
1123 upper-left corner of the box. Return in *BOTTOM_RIGHT_X, and
1124 *BOTTOM_RIGHT_Y the coordinates of the bottom-right corner of the
1128 window_box_edges (w
, area
, top_left_x
, top_left_y
,
1129 bottom_right_x
, bottom_right_y
)
1132 int *top_left_x
, *top_left_y
, *bottom_right_x
, *bottom_right_y
;
1134 window_box (w
, area
, top_left_x
, top_left_y
, bottom_right_x
,
1136 *bottom_right_x
+= *top_left_x
;
1137 *bottom_right_y
+= *top_left_y
;
1142 /***********************************************************************
1144 ***********************************************************************/
1146 /* Return the bottom y-position of the line the iterator IT is in.
1147 This can modify IT's settings. */
1153 int line_height
= it
->max_ascent
+ it
->max_descent
;
1154 int line_top_y
= it
->current_y
;
1156 if (line_height
== 0)
1159 line_height
= last_height
;
1160 else if (IT_CHARPOS (*it
) < ZV
)
1162 move_it_by_lines (it
, 1, 1);
1163 line_height
= (it
->max_ascent
|| it
->max_descent
1164 ? it
->max_ascent
+ it
->max_descent
1169 struct glyph_row
*row
= it
->glyph_row
;
1171 /* Use the default character height. */
1172 it
->glyph_row
= NULL
;
1173 it
->what
= IT_CHARACTER
;
1176 PRODUCE_GLYPHS (it
);
1177 line_height
= it
->ascent
+ it
->descent
;
1178 it
->glyph_row
= row
;
1182 return line_top_y
+ line_height
;
1186 /* Return 1 if position CHARPOS is visible in window W. Set *FULLY to
1187 1 if POS is visible and the line containing POS is fully visible.
1188 EXACT_MODE_LINE_HEIGHTS_P non-zero means compute exact mode-line
1189 and header-lines heights. */
1192 pos_visible_p (w
, charpos
, fully
, exact_mode_line_heights_p
)
1194 int charpos
, *fully
, exact_mode_line_heights_p
;
1197 struct text_pos top
;
1199 struct buffer
*old_buffer
= NULL
;
1201 if (XBUFFER (w
->buffer
) != current_buffer
)
1203 old_buffer
= current_buffer
;
1204 set_buffer_internal_1 (XBUFFER (w
->buffer
));
1207 *fully
= visible_p
= 0;
1208 SET_TEXT_POS_FROM_MARKER (top
, w
->start
);
1210 /* Compute exact mode line heights, if requested. */
1211 if (exact_mode_line_heights_p
)
1213 if (WINDOW_WANTS_MODELINE_P (w
))
1214 current_mode_line_height
1215 = display_mode_line (w
, CURRENT_MODE_LINE_FACE_ID (w
),
1216 current_buffer
->mode_line_format
);
1218 if (WINDOW_WANTS_HEADER_LINE_P (w
))
1219 current_header_line_height
1220 = display_mode_line (w
, HEADER_LINE_FACE_ID
,
1221 current_buffer
->header_line_format
);
1224 start_display (&it
, w
, top
);
1225 move_it_to (&it
, charpos
, 0, it
.last_visible_y
, -1,
1226 MOVE_TO_POS
| MOVE_TO_X
| MOVE_TO_Y
);
1228 /* Note that we may overshoot because of invisible text. */
1229 if (IT_CHARPOS (it
) >= charpos
)
1231 int top_y
= it
.current_y
;
1232 int bottom_y
= line_bottom_y (&it
);
1233 int window_top_y
= WINDOW_HEADER_LINE_HEIGHT (w
);
1235 if (top_y
< window_top_y
)
1236 visible_p
= bottom_y
> window_top_y
;
1237 else if (top_y
< it
.last_visible_y
)
1240 *fully
= bottom_y
<= it
.last_visible_y
;
1243 else if (it
.current_y
+ it
.max_ascent
+ it
.max_descent
> it
.last_visible_y
)
1245 move_it_by_lines (&it
, 1, 0);
1246 if (charpos
< IT_CHARPOS (it
))
1254 set_buffer_internal_1 (old_buffer
);
1256 current_header_line_height
= current_mode_line_height
= -1;
1261 /* Return the next character from STR which is MAXLEN bytes long.
1262 Return in *LEN the length of the character. This is like
1263 STRING_CHAR_AND_LENGTH but never returns an invalid character. If
1264 we find one, we return a `?', but with the length of the invalid
1268 string_char_and_length (str
, maxlen
, len
)
1269 const unsigned char *str
;
1274 c
= STRING_CHAR_AND_LENGTH (str
, maxlen
, *len
);
1275 if (!CHAR_VALID_P (c
, 1))
1276 /* We may not change the length here because other places in Emacs
1277 don't use this function, i.e. they silently accept invalid
1286 /* Given a position POS containing a valid character and byte position
1287 in STRING, return the position NCHARS ahead (NCHARS >= 0). */
1289 static struct text_pos
1290 string_pos_nchars_ahead (pos
, string
, nchars
)
1291 struct text_pos pos
;
1295 xassert (STRINGP (string
) && nchars
>= 0);
1297 if (STRING_MULTIBYTE (string
))
1299 int rest
= SBYTES (string
) - BYTEPOS (pos
);
1300 const unsigned char *p
= SDATA (string
) + BYTEPOS (pos
);
1305 string_char_and_length (p
, rest
, &len
);
1306 p
+= len
, rest
-= len
;
1307 xassert (rest
>= 0);
1309 BYTEPOS (pos
) += len
;
1313 SET_TEXT_POS (pos
, CHARPOS (pos
) + nchars
, BYTEPOS (pos
) + nchars
);
1319 /* Value is the text position, i.e. character and byte position,
1320 for character position CHARPOS in STRING. */
1322 static INLINE
struct text_pos
1323 string_pos (charpos
, string
)
1327 struct text_pos pos
;
1328 xassert (STRINGP (string
));
1329 xassert (charpos
>= 0);
1330 SET_TEXT_POS (pos
, charpos
, string_char_to_byte (string
, charpos
));
1335 /* Value is a text position, i.e. character and byte position, for
1336 character position CHARPOS in C string S. MULTIBYTE_P non-zero
1337 means recognize multibyte characters. */
1339 static struct text_pos
1340 c_string_pos (charpos
, s
, multibyte_p
)
1345 struct text_pos pos
;
1347 xassert (s
!= NULL
);
1348 xassert (charpos
>= 0);
1352 int rest
= strlen (s
), len
;
1354 SET_TEXT_POS (pos
, 0, 0);
1357 string_char_and_length (s
, rest
, &len
);
1358 s
+= len
, rest
-= len
;
1359 xassert (rest
>= 0);
1361 BYTEPOS (pos
) += len
;
1365 SET_TEXT_POS (pos
, charpos
, charpos
);
1371 /* Value is the number of characters in C string S. MULTIBYTE_P
1372 non-zero means recognize multibyte characters. */
1375 number_of_chars (s
, multibyte_p
)
1383 int rest
= strlen (s
), len
;
1384 unsigned char *p
= (unsigned char *) s
;
1386 for (nchars
= 0; rest
> 0; ++nchars
)
1388 string_char_and_length (p
, rest
, &len
);
1389 rest
-= len
, p
+= len
;
1393 nchars
= strlen (s
);
1399 /* Compute byte position NEWPOS->bytepos corresponding to
1400 NEWPOS->charpos. POS is a known position in string STRING.
1401 NEWPOS->charpos must be >= POS.charpos. */
1404 compute_string_pos (newpos
, pos
, string
)
1405 struct text_pos
*newpos
, pos
;
1408 xassert (STRINGP (string
));
1409 xassert (CHARPOS (*newpos
) >= CHARPOS (pos
));
1411 if (STRING_MULTIBYTE (string
))
1412 *newpos
= string_pos_nchars_ahead (pos
, string
,
1413 CHARPOS (*newpos
) - CHARPOS (pos
));
1415 BYTEPOS (*newpos
) = CHARPOS (*newpos
);
1419 Return an estimation of the pixel height of mode or top lines on
1420 frame F. FACE_ID specifies what line's height to estimate. */
1423 estimate_mode_line_height (f
, face_id
)
1425 enum face_id face_id
;
1427 #ifdef HAVE_WINDOW_SYSTEM
1428 if (FRAME_WINDOW_P (f
))
1430 int height
= FONT_HEIGHT (FRAME_FONT (f
));
1432 /* This function is called so early when Emacs starts that the face
1433 cache and mode line face are not yet initialized. */
1434 if (FRAME_FACE_CACHE (f
))
1436 struct face
*face
= FACE_FROM_ID (f
, face_id
);
1440 height
= FONT_HEIGHT (face
->font
);
1441 if (face
->box_line_width
> 0)
1442 height
+= 2 * face
->box_line_width
;
1453 /* Given a pixel position (PIX_X, PIX_Y) on frame F, return glyph
1454 co-ordinates in (*X, *Y). Set *BOUNDS to the rectangle that the
1455 glyph at X, Y occupies, if BOUNDS != 0. If NOCLIP is non-zero, do
1456 not force the value into range. */
1459 pixel_to_glyph_coords (f
, pix_x
, pix_y
, x
, y
, bounds
, noclip
)
1461 register int pix_x
, pix_y
;
1463 NativeRectangle
*bounds
;
1467 #ifdef HAVE_WINDOW_SYSTEM
1468 if (FRAME_WINDOW_P (f
))
1470 /* Arrange for the division in FRAME_PIXEL_X_TO_COL etc. to round down
1471 even for negative values. */
1473 pix_x
-= FRAME_COLUMN_WIDTH (f
) - 1;
1475 pix_y
-= FRAME_LINE_HEIGHT (f
) - 1;
1477 pix_x
= FRAME_PIXEL_X_TO_COL (f
, pix_x
);
1478 pix_y
= FRAME_PIXEL_Y_TO_LINE (f
, pix_y
);
1481 STORE_NATIVE_RECT (*bounds
,
1482 FRAME_COL_TO_PIXEL_X (f
, pix_x
),
1483 FRAME_LINE_TO_PIXEL_Y (f
, pix_y
),
1484 FRAME_COLUMN_WIDTH (f
) - 1,
1485 FRAME_LINE_HEIGHT (f
) - 1);
1491 else if (pix_x
> FRAME_TOTAL_COLS (f
))
1492 pix_x
= FRAME_TOTAL_COLS (f
);
1496 else if (pix_y
> FRAME_LINES (f
))
1497 pix_y
= FRAME_LINES (f
);
1507 /* Given HPOS/VPOS in the current matrix of W, return corresponding
1508 frame-relative pixel positions in *FRAME_X and *FRAME_Y. If we
1509 can't tell the positions because W's display is not up to date,
1513 glyph_to_pixel_coords (w
, hpos
, vpos
, frame_x
, frame_y
)
1516 int *frame_x
, *frame_y
;
1518 #ifdef HAVE_WINDOW_SYSTEM
1519 if (FRAME_WINDOW_P (XFRAME (WINDOW_FRAME (w
))))
1523 xassert (hpos
>= 0 && hpos
< w
->current_matrix
->matrix_w
);
1524 xassert (vpos
>= 0 && vpos
< w
->current_matrix
->matrix_h
);
1526 if (display_completed
)
1528 struct glyph_row
*row
= MATRIX_ROW (w
->current_matrix
, vpos
);
1529 struct glyph
*glyph
= row
->glyphs
[TEXT_AREA
];
1530 struct glyph
*end
= glyph
+ min (hpos
, row
->used
[TEXT_AREA
]);
1536 hpos
+= glyph
->pixel_width
;
1548 *frame_x
= WINDOW_TO_FRAME_PIXEL_X (w
, hpos
);
1549 *frame_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, vpos
);
1560 #ifdef HAVE_WINDOW_SYSTEM
1562 /* Find the glyph under window-relative coordinates X/Y in window W.
1563 Consider only glyphs from buffer text, i.e. no glyphs from overlay
1564 strings. Return in *HPOS and *VPOS the row and column number of
1565 the glyph found. Return in *AREA the glyph area containing X.
1566 Value is a pointer to the glyph found or null if X/Y is not on
1567 text, or we can't tell because W's current matrix is not up to
1570 static struct glyph
*
1571 x_y_to_hpos_vpos (w
, x
, y
, hpos
, vpos
, area
, buffer_only_p
)
1574 int *hpos
, *vpos
, *area
;
1577 struct glyph
*glyph
, *end
;
1578 struct glyph_row
*row
= NULL
;
1581 /* Find row containing Y. Give up if some row is not enabled. */
1582 for (i
= 0; i
< w
->current_matrix
->nrows
; ++i
)
1584 row
= MATRIX_ROW (w
->current_matrix
, i
);
1585 if (!row
->enabled_p
)
1587 if (y
>= row
->y
&& y
< MATRIX_ROW_BOTTOM_Y (row
))
1594 /* Give up if Y is not in the window. */
1595 if (i
== w
->current_matrix
->nrows
)
1598 /* Get the glyph area containing X. */
1599 if (w
->pseudo_window_p
)
1606 if (x
< window_box_left_offset (w
, TEXT_AREA
))
1608 *area
= LEFT_MARGIN_AREA
;
1609 x0
= window_box_left_offset (w
, LEFT_MARGIN_AREA
);
1611 else if (x
< window_box_right_offset (w
, TEXT_AREA
))
1614 x0
= window_box_left_offset (w
, TEXT_AREA
);
1618 *area
= RIGHT_MARGIN_AREA
;
1619 x0
= window_box_left_offset (w
, RIGHT_MARGIN_AREA
);
1623 /* Find glyph containing X. */
1624 glyph
= row
->glyphs
[*area
];
1625 end
= glyph
+ row
->used
[*area
];
1628 if (x
< x0
+ glyph
->pixel_width
)
1630 if (w
->pseudo_window_p
)
1632 else if (!buffer_only_p
|| BUFFERP (glyph
->object
))
1636 x0
+= glyph
->pixel_width
;
1643 *hpos
= glyph
- row
->glyphs
[*area
];
1649 Convert frame-relative x/y to coordinates relative to window W.
1650 Takes pseudo-windows into account. */
1653 frame_to_window_pixel_xy (w
, x
, y
)
1657 if (w
->pseudo_window_p
)
1659 /* A pseudo-window is always full-width, and starts at the
1660 left edge of the frame, plus a frame border. */
1661 struct frame
*f
= XFRAME (w
->frame
);
1662 *x
-= FRAME_INTERNAL_BORDER_WIDTH (f
);
1663 *y
= FRAME_TO_WINDOW_PIXEL_Y (w
, *y
);
1667 *x
-= WINDOW_LEFT_EDGE_X (w
);
1668 *y
= FRAME_TO_WINDOW_PIXEL_Y (w
, *y
);
1673 Return in *R the clipping rectangle for glyph string S. */
1676 get_glyph_string_clip_rect (s
, nr
)
1677 struct glyph_string
*s
;
1678 NativeRectangle
*nr
;
1682 if (s
->row
->full_width_p
)
1684 /* Draw full-width. X coordinates are relative to S->w->left_col. */
1685 r
.x
= WINDOW_LEFT_EDGE_X (s
->w
);
1686 r
.width
= WINDOW_TOTAL_WIDTH (s
->w
);
1688 /* Unless displaying a mode or menu bar line, which are always
1689 fully visible, clip to the visible part of the row. */
1690 if (s
->w
->pseudo_window_p
)
1691 r
.height
= s
->row
->visible_height
;
1693 r
.height
= s
->height
;
1697 /* This is a text line that may be partially visible. */
1698 r
.x
= window_box_left (s
->w
, s
->area
);
1699 r
.width
= window_box_width (s
->w
, s
->area
);
1700 r
.height
= s
->row
->visible_height
;
1703 /* If S draws overlapping rows, it's sufficient to use the top and
1704 bottom of the window for clipping because this glyph string
1705 intentionally draws over other lines. */
1706 if (s
->for_overlaps_p
)
1708 r
.y
= WINDOW_HEADER_LINE_HEIGHT (s
->w
);
1709 r
.height
= window_text_bottom_y (s
->w
) - r
.y
;
1713 /* Don't use S->y for clipping because it doesn't take partially
1714 visible lines into account. For example, it can be negative for
1715 partially visible lines at the top of a window. */
1716 if (!s
->row
->full_width_p
1717 && MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P (s
->w
, s
->row
))
1718 r
.y
= WINDOW_HEADER_LINE_HEIGHT (s
->w
);
1720 r
.y
= max (0, s
->row
->y
);
1722 /* If drawing a tool-bar window, draw it over the internal border
1723 at the top of the window. */
1724 if (s
->w
== XWINDOW (s
->f
->tool_bar_window
))
1725 r
.y
-= FRAME_INTERNAL_BORDER_WIDTH (s
->f
);
1728 r
.y
= WINDOW_TO_FRAME_PIXEL_Y (s
->w
, r
.y
);
1731 /* ++KFS: From W32 port, but it looks ok for all platforms to me. */
1732 /* If drawing the cursor, don't let glyph draw outside its
1733 advertised boundaries. Cleartype does this under some circumstances. */
1734 if (s
->hl
== DRAW_CURSOR
)
1738 r
.width
-= s
->x
- r
.x
;
1741 r
.width
= min (r
.width
, s
->first_glyph
->pixel_width
);
1745 #ifdef CONVERT_FROM_XRECT
1746 CONVERT_FROM_XRECT (r
, *nr
);
1752 #endif /* HAVE_WINDOW_SYSTEM */
1755 /***********************************************************************
1756 Lisp form evaluation
1757 ***********************************************************************/
1759 /* Error handler for safe_eval and safe_call. */
1762 safe_eval_handler (arg
)
1765 add_to_log ("Error during redisplay: %s", arg
, Qnil
);
1770 /* Evaluate SEXPR and return the result, or nil if something went
1771 wrong. Prevent redisplay during the evaluation. */
1779 if (inhibit_eval_during_redisplay
)
1783 int count
= SPECPDL_INDEX ();
1784 struct gcpro gcpro1
;
1787 specbind (Qinhibit_redisplay
, Qt
);
1788 /* Use Qt to ensure debugger does not run,
1789 so there is no possibility of wanting to redisplay. */
1790 val
= internal_condition_case_1 (Feval
, sexpr
, Qt
,
1793 val
= unbind_to (count
, val
);
1800 /* Call function ARGS[0] with arguments ARGS[1] to ARGS[NARGS - 1].
1801 Return the result, or nil if something went wrong. Prevent
1802 redisplay during the evaluation. */
1805 safe_call (nargs
, args
)
1811 if (inhibit_eval_during_redisplay
)
1815 int count
= SPECPDL_INDEX ();
1816 struct gcpro gcpro1
;
1819 gcpro1
.nvars
= nargs
;
1820 specbind (Qinhibit_redisplay
, Qt
);
1821 /* Use Qt to ensure debugger does not run,
1822 so there is no possibility of wanting to redisplay. */
1823 val
= internal_condition_case_2 (Ffuncall
, nargs
, args
, Qt
,
1826 val
= unbind_to (count
, val
);
1833 /* Call function FN with one argument ARG.
1834 Return the result, or nil if something went wrong. */
1837 safe_call1 (fn
, arg
)
1838 Lisp_Object fn
, arg
;
1840 Lisp_Object args
[2];
1843 return safe_call (2, args
);
1848 /***********************************************************************
1850 ***********************************************************************/
1854 /* Define CHECK_IT to perform sanity checks on iterators.
1855 This is for debugging. It is too slow to do unconditionally. */
1861 if (it
->method
== next_element_from_string
)
1863 xassert (STRINGP (it
->string
));
1864 xassert (IT_STRING_CHARPOS (*it
) >= 0);
1866 else if (it
->method
== next_element_from_buffer
)
1868 /* Check that character and byte positions agree. */
1869 xassert (IT_CHARPOS (*it
) == BYTE_TO_CHAR (IT_BYTEPOS (*it
)));
1873 xassert (it
->current
.dpvec_index
>= 0);
1875 xassert (it
->current
.dpvec_index
< 0);
1878 #define CHECK_IT(IT) check_it ((IT))
1882 #define CHECK_IT(IT) (void) 0
1889 /* Check that the window end of window W is what we expect it
1890 to be---the last row in the current matrix displaying text. */
1893 check_window_end (w
)
1896 if (!MINI_WINDOW_P (w
)
1897 && !NILP (w
->window_end_valid
))
1899 struct glyph_row
*row
;
1900 xassert ((row
= MATRIX_ROW (w
->current_matrix
,
1901 XFASTINT (w
->window_end_vpos
)),
1903 || MATRIX_ROW_DISPLAYS_TEXT_P (row
)
1904 || MATRIX_ROW_VPOS (row
, w
->current_matrix
) == 0));
1908 #define CHECK_WINDOW_END(W) check_window_end ((W))
1910 #else /* not GLYPH_DEBUG */
1912 #define CHECK_WINDOW_END(W) (void) 0
1914 #endif /* not GLYPH_DEBUG */
1918 /***********************************************************************
1919 Iterator initialization
1920 ***********************************************************************/
1922 /* Initialize IT for displaying current_buffer in window W, starting
1923 at character position CHARPOS. CHARPOS < 0 means that no buffer
1924 position is specified which is useful when the iterator is assigned
1925 a position later. BYTEPOS is the byte position corresponding to
1926 CHARPOS. BYTEPOS < 0 means compute it from CHARPOS.
1928 If ROW is not null, calls to produce_glyphs with IT as parameter
1929 will produce glyphs in that row.
1931 BASE_FACE_ID is the id of a base face to use. It must be one of
1932 DEFAULT_FACE_ID for normal text, MODE_LINE_FACE_ID,
1933 MODE_LINE_INACTIVE_FACE_ID, or HEADER_LINE_FACE_ID for displaying
1934 mode lines, or TOOL_BAR_FACE_ID for displaying the tool-bar.
1936 If ROW is null and BASE_FACE_ID is equal to MODE_LINE_FACE_ID,
1937 MODE_LINE_INACTIVE_FACE_ID, or HEADER_LINE_FACE_ID, the iterator
1938 will be initialized to use the corresponding mode line glyph row of
1939 the desired matrix of W. */
1942 init_iterator (it
, w
, charpos
, bytepos
, row
, base_face_id
)
1945 int charpos
, bytepos
;
1946 struct glyph_row
*row
;
1947 enum face_id base_face_id
;
1949 int highlight_region_p
;
1951 /* Some precondition checks. */
1952 xassert (w
!= NULL
&& it
!= NULL
);
1953 xassert (charpos
< 0 || (charpos
>= BUF_BEG (current_buffer
)
1956 /* If face attributes have been changed since the last redisplay,
1957 free realized faces now because they depend on face definitions
1958 that might have changed. Don't free faces while there might be
1959 desired matrices pending which reference these faces. */
1960 if (face_change_count
&& !inhibit_free_realized_faces
)
1962 face_change_count
= 0;
1963 free_all_realized_faces (Qnil
);
1966 /* Use one of the mode line rows of W's desired matrix if
1970 if (base_face_id
== MODE_LINE_FACE_ID
1971 || base_face_id
== MODE_LINE_INACTIVE_FACE_ID
)
1972 row
= MATRIX_MODE_LINE_ROW (w
->desired_matrix
);
1973 else if (base_face_id
== HEADER_LINE_FACE_ID
)
1974 row
= MATRIX_HEADER_LINE_ROW (w
->desired_matrix
);
1978 bzero (it
, sizeof *it
);
1979 it
->current
.overlay_string_index
= -1;
1980 it
->current
.dpvec_index
= -1;
1981 it
->base_face_id
= base_face_id
;
1983 /* The window in which we iterate over current_buffer: */
1984 XSETWINDOW (it
->window
, w
);
1986 it
->f
= XFRAME (w
->frame
);
1988 /* Extra space between lines (on window systems only). */
1989 if (base_face_id
== DEFAULT_FACE_ID
1990 && FRAME_WINDOW_P (it
->f
))
1992 if (NATNUMP (current_buffer
->extra_line_spacing
))
1993 it
->extra_line_spacing
= XFASTINT (current_buffer
->extra_line_spacing
);
1994 else if (it
->f
->extra_line_spacing
> 0)
1995 it
->extra_line_spacing
= it
->f
->extra_line_spacing
;
1998 /* If realized faces have been removed, e.g. because of face
1999 attribute changes of named faces, recompute them. When running
2000 in batch mode, the face cache of Vterminal_frame is null. If
2001 we happen to get called, make a dummy face cache. */
2006 FRAME_FACE_CACHE (it
->f
) == NULL
)
2007 init_frame_faces (it
->f
);
2008 if (FRAME_FACE_CACHE (it
->f
)->used
== 0)
2009 recompute_basic_faces (it
->f
);
2011 /* Current value of the `space-width', and 'height' properties. */
2012 it
->space_width
= Qnil
;
2013 it
->font_height
= Qnil
;
2015 /* Are control characters displayed as `^C'? */
2016 it
->ctl_arrow_p
= !NILP (current_buffer
->ctl_arrow
);
2018 /* -1 means everything between a CR and the following line end
2019 is invisible. >0 means lines indented more than this value are
2021 it
->selective
= (INTEGERP (current_buffer
->selective_display
)
2022 ? XFASTINT (current_buffer
->selective_display
)
2023 : (!NILP (current_buffer
->selective_display
)
2025 it
->selective_display_ellipsis_p
2026 = !NILP (current_buffer
->selective_display_ellipses
);
2028 /* Display table to use. */
2029 it
->dp
= window_display_table (w
);
2031 /* Are multibyte characters enabled in current_buffer? */
2032 it
->multibyte_p
= !NILP (current_buffer
->enable_multibyte_characters
);
2034 /* Non-zero if we should highlight the region. */
2036 = (!NILP (Vtransient_mark_mode
)
2037 && !NILP (current_buffer
->mark_active
)
2038 && XMARKER (current_buffer
->mark
)->buffer
!= 0);
2040 /* Set IT->region_beg_charpos and IT->region_end_charpos to the
2041 start and end of a visible region in window IT->w. Set both to
2042 -1 to indicate no region. */
2043 if (highlight_region_p
2044 /* Maybe highlight only in selected window. */
2045 && (/* Either show region everywhere. */
2046 highlight_nonselected_windows
2047 /* Or show region in the selected window. */
2048 || w
== XWINDOW (selected_window
)
2049 /* Or show the region if we are in the mini-buffer and W is
2050 the window the mini-buffer refers to. */
2051 || (MINI_WINDOW_P (XWINDOW (selected_window
))
2052 && WINDOWP (minibuf_selected_window
)
2053 && w
== XWINDOW (minibuf_selected_window
))))
2055 int charpos
= marker_position (current_buffer
->mark
);
2056 it
->region_beg_charpos
= min (PT
, charpos
);
2057 it
->region_end_charpos
= max (PT
, charpos
);
2060 it
->region_beg_charpos
= it
->region_end_charpos
= -1;
2062 /* Get the position at which the redisplay_end_trigger hook should
2063 be run, if it is to be run at all. */
2064 if (MARKERP (w
->redisplay_end_trigger
)
2065 && XMARKER (w
->redisplay_end_trigger
)->buffer
!= 0)
2066 it
->redisplay_end_trigger_charpos
2067 = marker_position (w
->redisplay_end_trigger
);
2068 else if (INTEGERP (w
->redisplay_end_trigger
))
2069 it
->redisplay_end_trigger_charpos
= XINT (w
->redisplay_end_trigger
);
2071 /* Correct bogus values of tab_width. */
2072 it
->tab_width
= XINT (current_buffer
->tab_width
);
2073 if (it
->tab_width
<= 0 || it
->tab_width
> 1000)
2076 /* Are lines in the display truncated? */
2077 it
->truncate_lines_p
2078 = (base_face_id
!= DEFAULT_FACE_ID
2079 || XINT (it
->w
->hscroll
)
2080 || (truncate_partial_width_windows
2081 && !WINDOW_FULL_WIDTH_P (it
->w
))
2082 || !NILP (current_buffer
->truncate_lines
));
2084 /* Get dimensions of truncation and continuation glyphs. These are
2085 displayed as fringe bitmaps under X, so we don't need them for such
2087 if (!FRAME_WINDOW_P (it
->f
))
2089 if (it
->truncate_lines_p
)
2091 /* We will need the truncation glyph. */
2092 xassert (it
->glyph_row
== NULL
);
2093 produce_special_glyphs (it
, IT_TRUNCATION
);
2094 it
->truncation_pixel_width
= it
->pixel_width
;
2098 /* We will need the continuation glyph. */
2099 xassert (it
->glyph_row
== NULL
);
2100 produce_special_glyphs (it
, IT_CONTINUATION
);
2101 it
->continuation_pixel_width
= it
->pixel_width
;
2104 /* Reset these values to zero because the produce_special_glyphs
2105 above has changed them. */
2106 it
->pixel_width
= it
->ascent
= it
->descent
= 0;
2107 it
->phys_ascent
= it
->phys_descent
= 0;
2110 /* Set this after getting the dimensions of truncation and
2111 continuation glyphs, so that we don't produce glyphs when calling
2112 produce_special_glyphs, above. */
2113 it
->glyph_row
= row
;
2114 it
->area
= TEXT_AREA
;
2116 /* Get the dimensions of the display area. The display area
2117 consists of the visible window area plus a horizontally scrolled
2118 part to the left of the window. All x-values are relative to the
2119 start of this total display area. */
2120 if (base_face_id
!= DEFAULT_FACE_ID
)
2122 /* Mode lines, menu bar in terminal frames. */
2123 it
->first_visible_x
= 0;
2124 it
->last_visible_x
= WINDOW_TOTAL_WIDTH (w
);
2129 = XFASTINT (it
->w
->hscroll
) * FRAME_COLUMN_WIDTH (it
->f
);
2130 it
->last_visible_x
= (it
->first_visible_x
2131 + window_box_width (w
, TEXT_AREA
));
2133 /* If we truncate lines, leave room for the truncator glyph(s) at
2134 the right margin. Otherwise, leave room for the continuation
2135 glyph(s). Truncation and continuation glyphs are not inserted
2136 for window-based redisplay. */
2137 if (!FRAME_WINDOW_P (it
->f
))
2139 if (it
->truncate_lines_p
)
2140 it
->last_visible_x
-= it
->truncation_pixel_width
;
2142 it
->last_visible_x
-= it
->continuation_pixel_width
;
2145 it
->header_line_p
= WINDOW_WANTS_HEADER_LINE_P (w
);
2146 it
->current_y
= WINDOW_HEADER_LINE_HEIGHT (w
) + w
->vscroll
;
2149 /* Leave room for a border glyph. */
2150 if (!FRAME_WINDOW_P (it
->f
)
2151 && !WINDOW_RIGHTMOST_P (it
->w
))
2152 it
->last_visible_x
-= 1;
2154 it
->last_visible_y
= window_text_bottom_y (w
);
2156 /* For mode lines and alike, arrange for the first glyph having a
2157 left box line if the face specifies a box. */
2158 if (base_face_id
!= DEFAULT_FACE_ID
)
2162 it
->face_id
= base_face_id
;
2164 /* If we have a boxed mode line, make the first character appear
2165 with a left box line. */
2166 face
= FACE_FROM_ID (it
->f
, base_face_id
);
2167 if (face
->box
!= FACE_NO_BOX
)
2168 it
->start_of_box_run_p
= 1;
2171 /* If a buffer position was specified, set the iterator there,
2172 getting overlays and face properties from that position. */
2173 if (charpos
>= BUF_BEG (current_buffer
))
2175 it
->end_charpos
= ZV
;
2177 IT_CHARPOS (*it
) = charpos
;
2179 /* Compute byte position if not specified. */
2180 if (bytepos
< charpos
)
2181 IT_BYTEPOS (*it
) = CHAR_TO_BYTE (charpos
);
2183 IT_BYTEPOS (*it
) = bytepos
;
2185 /* Compute faces etc. */
2186 reseat (it
, it
->current
.pos
, 1);
2193 /* Initialize IT for the display of window W with window start POS. */
2196 start_display (it
, w
, pos
)
2199 struct text_pos pos
;
2201 struct glyph_row
*row
;
2202 int first_vpos
= WINDOW_WANTS_HEADER_LINE_P (w
) ? 1 : 0;
2204 row
= w
->desired_matrix
->rows
+ first_vpos
;
2205 init_iterator (it
, w
, CHARPOS (pos
), BYTEPOS (pos
), row
, DEFAULT_FACE_ID
);
2207 if (!it
->truncate_lines_p
)
2209 int start_at_line_beg_p
;
2210 int first_y
= it
->current_y
;
2212 /* If window start is not at a line start, skip forward to POS to
2213 get the correct continuation lines width. */
2214 start_at_line_beg_p
= (CHARPOS (pos
) == BEGV
2215 || FETCH_BYTE (BYTEPOS (pos
) - 1) == '\n');
2216 if (!start_at_line_beg_p
)
2220 reseat_at_previous_visible_line_start (it
);
2221 move_it_to (it
, CHARPOS (pos
), -1, -1, -1, MOVE_TO_POS
);
2223 new_x
= it
->current_x
+ it
->pixel_width
;
2225 /* If lines are continued, this line may end in the middle
2226 of a multi-glyph character (e.g. a control character
2227 displayed as \003, or in the middle of an overlay
2228 string). In this case move_it_to above will not have
2229 taken us to the start of the continuation line but to the
2230 end of the continued line. */
2231 if (it
->current_x
> 0
2232 && !it
->truncate_lines_p
/* Lines are continued. */
2233 && (/* And glyph doesn't fit on the line. */
2234 new_x
> it
->last_visible_x
2235 /* Or it fits exactly and we're on a window
2237 || (new_x
== it
->last_visible_x
2238 && FRAME_WINDOW_P (it
->f
))))
2240 if (it
->current
.dpvec_index
>= 0
2241 || it
->current
.overlay_string_index
>= 0)
2243 set_iterator_to_next (it
, 1);
2244 move_it_in_display_line_to (it
, -1, -1, 0);
2247 it
->continuation_lines_width
+= it
->current_x
;
2250 /* We're starting a new display line, not affected by the
2251 height of the continued line, so clear the appropriate
2252 fields in the iterator structure. */
2253 it
->max_ascent
= it
->max_descent
= 0;
2254 it
->max_phys_ascent
= it
->max_phys_descent
= 0;
2256 it
->current_y
= first_y
;
2258 it
->current_x
= it
->hpos
= 0;
2262 #if 0 /* Don't assert the following because start_display is sometimes
2263 called intentionally with a window start that is not at a
2264 line start. Please leave this code in as a comment. */
2266 /* Window start should be on a line start, now. */
2267 xassert (it
->continuation_lines_width
2268 || IT_CHARPOS (it
) == BEGV
2269 || FETCH_BYTE (IT_BYTEPOS (it
) - 1) == '\n');
2274 /* Return 1 if POS is a position in ellipses displayed for invisible
2275 text. W is the window we display, for text property lookup. */
2278 in_ellipses_for_invisible_text_p (pos
, w
)
2279 struct display_pos
*pos
;
2282 Lisp_Object prop
, window
;
2284 int charpos
= CHARPOS (pos
->pos
);
2286 /* If POS specifies a position in a display vector, this might
2287 be for an ellipsis displayed for invisible text. We won't
2288 get the iterator set up for delivering that ellipsis unless
2289 we make sure that it gets aware of the invisible text. */
2290 if (pos
->dpvec_index
>= 0
2291 && pos
->overlay_string_index
< 0
2292 && CHARPOS (pos
->string_pos
) < 0
2294 && (XSETWINDOW (window
, w
),
2295 prop
= Fget_char_property (make_number (charpos
),
2296 Qinvisible
, window
),
2297 !TEXT_PROP_MEANS_INVISIBLE (prop
)))
2299 prop
= Fget_char_property (make_number (charpos
- 1), Qinvisible
,
2301 ellipses_p
= 2 == TEXT_PROP_MEANS_INVISIBLE (prop
);
2308 /* Initialize IT for stepping through current_buffer in window W,
2309 starting at position POS that includes overlay string and display
2310 vector/ control character translation position information. Value
2311 is zero if there are overlay strings with newlines at POS. */
2314 init_from_display_pos (it
, w
, pos
)
2317 struct display_pos
*pos
;
2319 int charpos
= CHARPOS (pos
->pos
), bytepos
= BYTEPOS (pos
->pos
);
2320 int i
, overlay_strings_with_newlines
= 0;
2322 /* If POS specifies a position in a display vector, this might
2323 be for an ellipsis displayed for invisible text. We won't
2324 get the iterator set up for delivering that ellipsis unless
2325 we make sure that it gets aware of the invisible text. */
2326 if (in_ellipses_for_invisible_text_p (pos
, w
))
2332 /* Keep in mind: the call to reseat in init_iterator skips invisible
2333 text, so we might end up at a position different from POS. This
2334 is only a problem when POS is a row start after a newline and an
2335 overlay starts there with an after-string, and the overlay has an
2336 invisible property. Since we don't skip invisible text in
2337 display_line and elsewhere immediately after consuming the
2338 newline before the row start, such a POS will not be in a string,
2339 but the call to init_iterator below will move us to the
2341 init_iterator (it
, w
, charpos
, bytepos
, NULL
, DEFAULT_FACE_ID
);
2343 for (i
= 0; i
< it
->n_overlay_strings
; ++i
)
2345 const char *s
= SDATA (it
->overlay_strings
[i
]);
2346 const char *e
= s
+ SBYTES (it
->overlay_strings
[i
]);
2348 while (s
< e
&& *s
!= '\n')
2353 overlay_strings_with_newlines
= 1;
2358 /* If position is within an overlay string, set up IT to the right
2360 if (pos
->overlay_string_index
>= 0)
2364 /* If the first overlay string happens to have a `display'
2365 property for an image, the iterator will be set up for that
2366 image, and we have to undo that setup first before we can
2367 correct the overlay string index. */
2368 if (it
->method
== next_element_from_image
)
2371 /* We already have the first chunk of overlay strings in
2372 IT->overlay_strings. Load more until the one for
2373 pos->overlay_string_index is in IT->overlay_strings. */
2374 if (pos
->overlay_string_index
>= OVERLAY_STRING_CHUNK_SIZE
)
2376 int n
= pos
->overlay_string_index
/ OVERLAY_STRING_CHUNK_SIZE
;
2377 it
->current
.overlay_string_index
= 0;
2380 load_overlay_strings (it
, 0);
2381 it
->current
.overlay_string_index
+= OVERLAY_STRING_CHUNK_SIZE
;
2385 it
->current
.overlay_string_index
= pos
->overlay_string_index
;
2386 relative_index
= (it
->current
.overlay_string_index
2387 % OVERLAY_STRING_CHUNK_SIZE
);
2388 it
->string
= it
->overlay_strings
[relative_index
];
2389 xassert (STRINGP (it
->string
));
2390 it
->current
.string_pos
= pos
->string_pos
;
2391 it
->method
= next_element_from_string
;
2394 #if 0 /* This is bogus because POS not having an overlay string
2395 position does not mean it's after the string. Example: A
2396 line starting with a before-string and initialization of IT
2397 to the previous row's end position. */
2398 else if (it
->current
.overlay_string_index
>= 0)
2400 /* If POS says we're already after an overlay string ending at
2401 POS, make sure to pop the iterator because it will be in
2402 front of that overlay string. When POS is ZV, we've thereby
2403 also ``processed'' overlay strings at ZV. */
2406 it
->current
.overlay_string_index
= -1;
2407 it
->method
= next_element_from_buffer
;
2408 if (CHARPOS (pos
->pos
) == ZV
)
2409 it
->overlay_strings_at_end_processed_p
= 1;
2413 if (CHARPOS (pos
->string_pos
) >= 0)
2415 /* Recorded position is not in an overlay string, but in another
2416 string. This can only be a string from a `display' property.
2417 IT should already be filled with that string. */
2418 it
->current
.string_pos
= pos
->string_pos
;
2419 xassert (STRINGP (it
->string
));
2422 /* Restore position in display vector translations, control
2423 character translations or ellipses. */
2424 if (pos
->dpvec_index
>= 0)
2426 if (it
->dpvec
== NULL
)
2427 get_next_display_element (it
);
2428 xassert (it
->dpvec
&& it
->current
.dpvec_index
== 0);
2429 it
->current
.dpvec_index
= pos
->dpvec_index
;
2433 return !overlay_strings_with_newlines
;
2437 /* Initialize IT for stepping through current_buffer in window W
2438 starting at ROW->start. */
2441 init_to_row_start (it
, w
, row
)
2444 struct glyph_row
*row
;
2446 init_from_display_pos (it
, w
, &row
->start
);
2447 it
->continuation_lines_width
= row
->continuation_lines_width
;
2452 /* Initialize IT for stepping through current_buffer in window W
2453 starting in the line following ROW, i.e. starting at ROW->end.
2454 Value is zero if there are overlay strings with newlines at ROW's
2458 init_to_row_end (it
, w
, row
)
2461 struct glyph_row
*row
;
2465 if (init_from_display_pos (it
, w
, &row
->end
))
2467 if (row
->continued_p
)
2468 it
->continuation_lines_width
2469 = row
->continuation_lines_width
+ row
->pixel_width
;
2480 /***********************************************************************
2482 ***********************************************************************/
2484 /* Called when IT reaches IT->stop_charpos. Handle text property and
2485 overlay changes. Set IT->stop_charpos to the next position where
2492 enum prop_handled handled
;
2493 int handle_overlay_change_p
= 1;
2497 it
->current
.dpvec_index
= -1;
2501 handled
= HANDLED_NORMALLY
;
2503 /* Call text property handlers. */
2504 for (p
= it_props
; p
->handler
; ++p
)
2506 handled
= p
->handler (it
);
2508 if (handled
== HANDLED_RECOMPUTE_PROPS
)
2510 else if (handled
== HANDLED_RETURN
)
2512 else if (handled
== HANDLED_OVERLAY_STRING_CONSUMED
)
2513 handle_overlay_change_p
= 0;
2516 if (handled
!= HANDLED_RECOMPUTE_PROPS
)
2518 /* Don't check for overlay strings below when set to deliver
2519 characters from a display vector. */
2520 if (it
->method
== next_element_from_display_vector
)
2521 handle_overlay_change_p
= 0;
2523 /* Handle overlay changes. */
2524 if (handle_overlay_change_p
)
2525 handled
= handle_overlay_change (it
);
2527 /* Determine where to stop next. */
2528 if (handled
== HANDLED_NORMALLY
)
2529 compute_stop_pos (it
);
2532 while (handled
== HANDLED_RECOMPUTE_PROPS
);
2536 /* Compute IT->stop_charpos from text property and overlay change
2537 information for IT's current position. */
2540 compute_stop_pos (it
)
2543 register INTERVAL iv
, next_iv
;
2544 Lisp_Object object
, limit
, position
;
2546 /* If nowhere else, stop at the end. */
2547 it
->stop_charpos
= it
->end_charpos
;
2549 if (STRINGP (it
->string
))
2551 /* Strings are usually short, so don't limit the search for
2553 object
= it
->string
;
2555 position
= make_number (IT_STRING_CHARPOS (*it
));
2561 /* If next overlay change is in front of the current stop pos
2562 (which is IT->end_charpos), stop there. Note: value of
2563 next_overlay_change is point-max if no overlay change
2565 charpos
= next_overlay_change (IT_CHARPOS (*it
));
2566 if (charpos
< it
->stop_charpos
)
2567 it
->stop_charpos
= charpos
;
2569 /* If showing the region, we have to stop at the region
2570 start or end because the face might change there. */
2571 if (it
->region_beg_charpos
> 0)
2573 if (IT_CHARPOS (*it
) < it
->region_beg_charpos
)
2574 it
->stop_charpos
= min (it
->stop_charpos
, it
->region_beg_charpos
);
2575 else if (IT_CHARPOS (*it
) < it
->region_end_charpos
)
2576 it
->stop_charpos
= min (it
->stop_charpos
, it
->region_end_charpos
);
2579 /* Set up variables for computing the stop position from text
2580 property changes. */
2581 XSETBUFFER (object
, current_buffer
);
2582 limit
= make_number (IT_CHARPOS (*it
) + TEXT_PROP_DISTANCE_LIMIT
);
2583 position
= make_number (IT_CHARPOS (*it
));
2587 /* Get the interval containing IT's position. Value is a null
2588 interval if there isn't such an interval. */
2589 iv
= validate_interval_range (object
, &position
, &position
, 0);
2590 if (!NULL_INTERVAL_P (iv
))
2592 Lisp_Object values_here
[LAST_PROP_IDX
];
2595 /* Get properties here. */
2596 for (p
= it_props
; p
->handler
; ++p
)
2597 values_here
[p
->idx
] = textget (iv
->plist
, *p
->name
);
2599 /* Look for an interval following iv that has different
2601 for (next_iv
= next_interval (iv
);
2602 (!NULL_INTERVAL_P (next_iv
)
2604 || XFASTINT (limit
) > next_iv
->position
));
2605 next_iv
= next_interval (next_iv
))
2607 for (p
= it_props
; p
->handler
; ++p
)
2609 Lisp_Object new_value
;
2611 new_value
= textget (next_iv
->plist
, *p
->name
);
2612 if (!EQ (values_here
[p
->idx
], new_value
))
2620 if (!NULL_INTERVAL_P (next_iv
))
2622 if (INTEGERP (limit
)
2623 && next_iv
->position
>= XFASTINT (limit
))
2624 /* No text property change up to limit. */
2625 it
->stop_charpos
= min (XFASTINT (limit
), it
->stop_charpos
);
2627 /* Text properties change in next_iv. */
2628 it
->stop_charpos
= min (it
->stop_charpos
, next_iv
->position
);
2632 xassert (STRINGP (it
->string
)
2633 || (it
->stop_charpos
>= BEGV
2634 && it
->stop_charpos
>= IT_CHARPOS (*it
)));
2638 /* Return the position of the next overlay change after POS in
2639 current_buffer. Value is point-max if no overlay change
2640 follows. This is like `next-overlay-change' but doesn't use
2644 next_overlay_change (pos
)
2649 Lisp_Object
*overlays
;
2653 /* Get all overlays at the given position. */
2655 overlays
= (Lisp_Object
*) alloca (len
* sizeof *overlays
);
2656 noverlays
= overlays_at (pos
, 0, &overlays
, &len
, &endpos
, NULL
, 1);
2657 if (noverlays
> len
)
2660 overlays
= (Lisp_Object
*) alloca (len
* sizeof *overlays
);
2661 noverlays
= overlays_at (pos
, 0, &overlays
, &len
, &endpos
, NULL
, 1);
2664 /* If any of these overlays ends before endpos,
2665 use its ending point instead. */
2666 for (i
= 0; i
< noverlays
; ++i
)
2671 oend
= OVERLAY_END (overlays
[i
]);
2672 oendpos
= OVERLAY_POSITION (oend
);
2673 endpos
= min (endpos
, oendpos
);
2681 /***********************************************************************
2683 ***********************************************************************/
2685 /* Handle changes in the `fontified' property of the current buffer by
2686 calling hook functions from Qfontification_functions to fontify
2689 static enum prop_handled
2690 handle_fontified_prop (it
)
2693 Lisp_Object prop
, pos
;
2694 enum prop_handled handled
= HANDLED_NORMALLY
;
2696 /* Get the value of the `fontified' property at IT's current buffer
2697 position. (The `fontified' property doesn't have a special
2698 meaning in strings.) If the value is nil, call functions from
2699 Qfontification_functions. */
2700 if (!STRINGP (it
->string
)
2702 && !NILP (Vfontification_functions
)
2703 && !NILP (Vrun_hooks
)
2704 && (pos
= make_number (IT_CHARPOS (*it
)),
2705 prop
= Fget_char_property (pos
, Qfontified
, Qnil
),
2708 int count
= SPECPDL_INDEX ();
2711 val
= Vfontification_functions
;
2712 specbind (Qfontification_functions
, Qnil
);
2714 if (!CONSP (val
) || EQ (XCAR (val
), Qlambda
))
2715 safe_call1 (val
, pos
);
2718 Lisp_Object globals
, fn
;
2719 struct gcpro gcpro1
, gcpro2
;
2722 GCPRO2 (val
, globals
);
2724 for (; CONSP (val
); val
= XCDR (val
))
2730 /* A value of t indicates this hook has a local
2731 binding; it means to run the global binding too.
2732 In a global value, t should not occur. If it
2733 does, we must ignore it to avoid an endless
2735 for (globals
= Fdefault_value (Qfontification_functions
);
2737 globals
= XCDR (globals
))
2739 fn
= XCAR (globals
);
2741 safe_call1 (fn
, pos
);
2745 safe_call1 (fn
, pos
);
2751 unbind_to (count
, Qnil
);
2753 /* Return HANDLED_RECOMPUTE_PROPS only if function fontified
2754 something. This avoids an endless loop if they failed to
2755 fontify the text for which reason ever. */
2756 if (!NILP (Fget_char_property (pos
, Qfontified
, Qnil
)))
2757 handled
= HANDLED_RECOMPUTE_PROPS
;
2765 /***********************************************************************
2767 ***********************************************************************/
2769 /* Set up iterator IT from face properties at its current position.
2770 Called from handle_stop. */
2772 static enum prop_handled
2773 handle_face_prop (it
)
2776 int new_face_id
, next_stop
;
2778 if (!STRINGP (it
->string
))
2781 = face_at_buffer_position (it
->w
,
2783 it
->region_beg_charpos
,
2784 it
->region_end_charpos
,
2787 + TEXT_PROP_DISTANCE_LIMIT
),
2790 /* Is this a start of a run of characters with box face?
2791 Caveat: this can be called for a freshly initialized
2792 iterator; face_id is -1 in this case. We know that the new
2793 face will not change until limit, i.e. if the new face has a
2794 box, all characters up to limit will have one. But, as
2795 usual, we don't know whether limit is really the end. */
2796 if (new_face_id
!= it
->face_id
)
2798 struct face
*new_face
= FACE_FROM_ID (it
->f
, new_face_id
);
2800 /* If new face has a box but old face has not, this is
2801 the start of a run of characters with box, i.e. it has
2802 a shadow on the left side. The value of face_id of the
2803 iterator will be -1 if this is the initial call that gets
2804 the face. In this case, we have to look in front of IT's
2805 position and see whether there is a face != new_face_id. */
2806 it
->start_of_box_run_p
2807 = (new_face
->box
!= FACE_NO_BOX
2808 && (it
->face_id
>= 0
2809 || IT_CHARPOS (*it
) == BEG
2810 || new_face_id
!= face_before_it_pos (it
)));
2811 it
->face_box_p
= new_face
->box
!= FACE_NO_BOX
;
2816 int base_face_id
, bufpos
;
2818 if (it
->current
.overlay_string_index
>= 0)
2819 bufpos
= IT_CHARPOS (*it
);
2823 /* For strings from a buffer, i.e. overlay strings or strings
2824 from a `display' property, use the face at IT's current
2825 buffer position as the base face to merge with, so that
2826 overlay strings appear in the same face as surrounding
2827 text, unless they specify their own faces. */
2828 base_face_id
= underlying_face_id (it
);
2830 new_face_id
= face_at_string_position (it
->w
,
2832 IT_STRING_CHARPOS (*it
),
2834 it
->region_beg_charpos
,
2835 it
->region_end_charpos
,
2839 #if 0 /* This shouldn't be neccessary. Let's check it. */
2840 /* If IT is used to display a mode line we would really like to
2841 use the mode line face instead of the frame's default face. */
2842 if (it
->glyph_row
== MATRIX_MODE_LINE_ROW (it
->w
->desired_matrix
)
2843 && new_face_id
== DEFAULT_FACE_ID
)
2844 new_face_id
= CURRENT_MODE_LINE_FACE_ID (it
->w
);
2847 /* Is this a start of a run of characters with box? Caveat:
2848 this can be called for a freshly allocated iterator; face_id
2849 is -1 is this case. We know that the new face will not
2850 change until the next check pos, i.e. if the new face has a
2851 box, all characters up to that position will have a
2852 box. But, as usual, we don't know whether that position
2853 is really the end. */
2854 if (new_face_id
!= it
->face_id
)
2856 struct face
*new_face
= FACE_FROM_ID (it
->f
, new_face_id
);
2857 struct face
*old_face
= FACE_FROM_ID (it
->f
, it
->face_id
);
2859 /* If new face has a box but old face hasn't, this is the
2860 start of a run of characters with box, i.e. it has a
2861 shadow on the left side. */
2862 it
->start_of_box_run_p
2863 = new_face
->box
&& (old_face
== NULL
|| !old_face
->box
);
2864 it
->face_box_p
= new_face
->box
!= FACE_NO_BOX
;
2868 it
->face_id
= new_face_id
;
2869 return HANDLED_NORMALLY
;
2873 /* Return the ID of the face ``underlying'' IT's current position,
2874 which is in a string. If the iterator is associated with a
2875 buffer, return the face at IT's current buffer position.
2876 Otherwise, use the iterator's base_face_id. */
2879 underlying_face_id (it
)
2882 int face_id
= it
->base_face_id
, i
;
2884 xassert (STRINGP (it
->string
));
2886 for (i
= it
->sp
- 1; i
>= 0; --i
)
2887 if (NILP (it
->stack
[i
].string
))
2888 face_id
= it
->stack
[i
].face_id
;
2894 /* Compute the face one character before or after the current position
2895 of IT. BEFORE_P non-zero means get the face in front of IT's
2896 position. Value is the id of the face. */
2899 face_before_or_after_it_pos (it
, before_p
)
2904 int next_check_charpos
;
2905 struct text_pos pos
;
2907 xassert (it
->s
== NULL
);
2909 if (STRINGP (it
->string
))
2911 int bufpos
, base_face_id
;
2913 /* No face change past the end of the string (for the case
2914 we are padding with spaces). No face change before the
2916 if (IT_STRING_CHARPOS (*it
) >= SCHARS (it
->string
)
2917 || (IT_STRING_CHARPOS (*it
) == 0 && before_p
))
2920 /* Set pos to the position before or after IT's current position. */
2922 pos
= string_pos (IT_STRING_CHARPOS (*it
) - 1, it
->string
);
2924 /* For composition, we must check the character after the
2926 pos
= (it
->what
== IT_COMPOSITION
2927 ? string_pos (IT_STRING_CHARPOS (*it
) + it
->cmp_len
, it
->string
)
2928 : string_pos (IT_STRING_CHARPOS (*it
) + 1, it
->string
));
2930 if (it
->current
.overlay_string_index
>= 0)
2931 bufpos
= IT_CHARPOS (*it
);
2935 base_face_id
= underlying_face_id (it
);
2937 /* Get the face for ASCII, or unibyte. */
2938 face_id
= face_at_string_position (it
->w
,
2942 it
->region_beg_charpos
,
2943 it
->region_end_charpos
,
2944 &next_check_charpos
,
2947 /* Correct the face for charsets different from ASCII. Do it
2948 for the multibyte case only. The face returned above is
2949 suitable for unibyte text if IT->string is unibyte. */
2950 if (STRING_MULTIBYTE (it
->string
))
2952 const unsigned char *p
= SDATA (it
->string
) + BYTEPOS (pos
);
2953 int rest
= SBYTES (it
->string
) - BYTEPOS (pos
);
2955 struct face
*face
= FACE_FROM_ID (it
->f
, face_id
);
2957 c
= string_char_and_length (p
, rest
, &len
);
2958 face_id
= FACE_FOR_CHAR (it
->f
, face
, c
);
2963 if ((IT_CHARPOS (*it
) >= ZV
&& !before_p
)
2964 || (IT_CHARPOS (*it
) <= BEGV
&& before_p
))
2967 limit
= IT_CHARPOS (*it
) + TEXT_PROP_DISTANCE_LIMIT
;
2968 pos
= it
->current
.pos
;
2971 DEC_TEXT_POS (pos
, it
->multibyte_p
);
2974 if (it
->what
== IT_COMPOSITION
)
2975 /* For composition, we must check the position after the
2977 pos
.charpos
+= it
->cmp_len
, pos
.bytepos
+= it
->len
;
2979 INC_TEXT_POS (pos
, it
->multibyte_p
);
2982 /* Determine face for CHARSET_ASCII, or unibyte. */
2983 face_id
= face_at_buffer_position (it
->w
,
2985 it
->region_beg_charpos
,
2986 it
->region_end_charpos
,
2987 &next_check_charpos
,
2990 /* Correct the face for charsets different from ASCII. Do it
2991 for the multibyte case only. The face returned above is
2992 suitable for unibyte text if current_buffer is unibyte. */
2993 if (it
->multibyte_p
)
2995 int c
= FETCH_MULTIBYTE_CHAR (BYTEPOS (pos
));
2996 struct face
*face
= FACE_FROM_ID (it
->f
, face_id
);
2997 face_id
= FACE_FOR_CHAR (it
->f
, face
, c
);
3006 /***********************************************************************
3008 ***********************************************************************/
3010 /* Set up iterator IT from invisible properties at its current
3011 position. Called from handle_stop. */
3013 static enum prop_handled
3014 handle_invisible_prop (it
)
3017 enum prop_handled handled
= HANDLED_NORMALLY
;
3019 if (STRINGP (it
->string
))
3021 extern Lisp_Object Qinvisible
;
3022 Lisp_Object prop
, end_charpos
, limit
, charpos
;
3024 /* Get the value of the invisible text property at the
3025 current position. Value will be nil if there is no such
3027 charpos
= make_number (IT_STRING_CHARPOS (*it
));
3028 prop
= Fget_text_property (charpos
, Qinvisible
, it
->string
);
3031 && IT_STRING_CHARPOS (*it
) < it
->end_charpos
)
3033 handled
= HANDLED_RECOMPUTE_PROPS
;
3035 /* Get the position at which the next change of the
3036 invisible text property can be found in IT->string.
3037 Value will be nil if the property value is the same for
3038 all the rest of IT->string. */
3039 XSETINT (limit
, SCHARS (it
->string
));
3040 end_charpos
= Fnext_single_property_change (charpos
, Qinvisible
,
3043 /* Text at current position is invisible. The next
3044 change in the property is at position end_charpos.
3045 Move IT's current position to that position. */
3046 if (INTEGERP (end_charpos
)
3047 && XFASTINT (end_charpos
) < XFASTINT (limit
))
3049 struct text_pos old
;
3050 old
= it
->current
.string_pos
;
3051 IT_STRING_CHARPOS (*it
) = XFASTINT (end_charpos
);
3052 compute_string_pos (&it
->current
.string_pos
, old
, it
->string
);
3056 /* The rest of the string is invisible. If this is an
3057 overlay string, proceed with the next overlay string
3058 or whatever comes and return a character from there. */
3059 if (it
->current
.overlay_string_index
>= 0)
3061 next_overlay_string (it
);
3062 /* Don't check for overlay strings when we just
3063 finished processing them. */
3064 handled
= HANDLED_OVERLAY_STRING_CONSUMED
;
3068 IT_STRING_CHARPOS (*it
) = SCHARS (it
->string
);
3069 IT_STRING_BYTEPOS (*it
) = SBYTES (it
->string
);
3076 int invis_p
, newpos
, next_stop
, start_charpos
;
3077 Lisp_Object pos
, prop
, overlay
;
3079 /* First of all, is there invisible text at this position? */
3080 start_charpos
= IT_CHARPOS (*it
);
3081 pos
= make_number (IT_CHARPOS (*it
));
3082 prop
= get_char_property_and_overlay (pos
, Qinvisible
, it
->window
,
3084 invis_p
= TEXT_PROP_MEANS_INVISIBLE (prop
);
3086 /* If we are on invisible text, skip over it. */
3087 if (invis_p
&& IT_CHARPOS (*it
) < it
->end_charpos
)
3089 /* Record whether we have to display an ellipsis for the
3091 int display_ellipsis_p
= invis_p
== 2;
3093 handled
= HANDLED_RECOMPUTE_PROPS
;
3095 /* Loop skipping over invisible text. The loop is left at
3096 ZV or with IT on the first char being visible again. */
3099 /* Try to skip some invisible text. Return value is the
3100 position reached which can be equal to IT's position
3101 if there is nothing invisible here. This skips both
3102 over invisible text properties and overlays with
3103 invisible property. */
3104 newpos
= skip_invisible (IT_CHARPOS (*it
),
3105 &next_stop
, ZV
, it
->window
);
3107 /* If we skipped nothing at all we weren't at invisible
3108 text in the first place. If everything to the end of
3109 the buffer was skipped, end the loop. */
3110 if (newpos
== IT_CHARPOS (*it
) || newpos
>= ZV
)
3114 /* We skipped some characters but not necessarily
3115 all there are. Check if we ended up on visible
3116 text. Fget_char_property returns the property of
3117 the char before the given position, i.e. if we
3118 get invis_p = 0, this means that the char at
3119 newpos is visible. */
3120 pos
= make_number (newpos
);
3121 prop
= Fget_char_property (pos
, Qinvisible
, it
->window
);
3122 invis_p
= TEXT_PROP_MEANS_INVISIBLE (prop
);
3125 /* If we ended up on invisible text, proceed to
3126 skip starting with next_stop. */
3128 IT_CHARPOS (*it
) = next_stop
;
3132 /* The position newpos is now either ZV or on visible text. */
3133 IT_CHARPOS (*it
) = newpos
;
3134 IT_BYTEPOS (*it
) = CHAR_TO_BYTE (newpos
);
3136 /* If there are before-strings at the start of invisible
3137 text, and the text is invisible because of a text
3138 property, arrange to show before-strings because 20.x did
3139 it that way. (If the text is invisible because of an
3140 overlay property instead of a text property, this is
3141 already handled in the overlay code.) */
3143 && get_overlay_strings (it
, start_charpos
))
3145 handled
= HANDLED_RECOMPUTE_PROPS
;
3146 it
->stack
[it
->sp
- 1].display_ellipsis_p
= display_ellipsis_p
;
3148 else if (display_ellipsis_p
)
3149 setup_for_ellipsis (it
);
3157 /* Make iterator IT return `...' next. */
3160 setup_for_ellipsis (it
)
3164 && VECTORP (DISP_INVIS_VECTOR (it
->dp
)))
3166 struct Lisp_Vector
*v
= XVECTOR (DISP_INVIS_VECTOR (it
->dp
));
3167 it
->dpvec
= v
->contents
;
3168 it
->dpend
= v
->contents
+ v
->size
;
3172 /* Default `...'. */
3173 it
->dpvec
= default_invis_vector
;
3174 it
->dpend
= default_invis_vector
+ 3;
3177 /* The ellipsis display does not replace the display of the
3178 character at the new position. Indicate this by setting
3179 IT->dpvec_char_len to zero. */
3180 it
->dpvec_char_len
= 0;
3182 it
->current
.dpvec_index
= 0;
3183 it
->method
= next_element_from_display_vector
;
3188 /***********************************************************************
3190 ***********************************************************************/
3192 /* Set up iterator IT from `display' property at its current position.
3193 Called from handle_stop. */
3195 static enum prop_handled
3196 handle_display_prop (it
)
3199 Lisp_Object prop
, object
;
3200 struct text_pos
*position
;
3201 int display_replaced_p
= 0;
3203 if (STRINGP (it
->string
))
3205 object
= it
->string
;
3206 position
= &it
->current
.string_pos
;
3210 object
= it
->w
->buffer
;
3211 position
= &it
->current
.pos
;
3214 /* Reset those iterator values set from display property values. */
3215 it
->font_height
= Qnil
;
3216 it
->space_width
= Qnil
;
3219 /* We don't support recursive `display' properties, i.e. string
3220 values that have a string `display' property, that have a string
3221 `display' property etc. */
3222 if (!it
->string_from_display_prop_p
)
3223 it
->area
= TEXT_AREA
;
3225 prop
= Fget_char_property (make_number (position
->charpos
),
3228 return HANDLED_NORMALLY
;
3231 /* Simple properties. */
3232 && !EQ (XCAR (prop
), Qimage
)
3233 && !EQ (XCAR (prop
), Qspace
)
3234 && !EQ (XCAR (prop
), Qwhen
)
3235 && !EQ (XCAR (prop
), Qspace_width
)
3236 && !EQ (XCAR (prop
), Qheight
)
3237 && !EQ (XCAR (prop
), Qraise
)
3238 /* Marginal area specifications. */
3239 && !(CONSP (XCAR (prop
)) && EQ (XCAR (XCAR (prop
)), Qmargin
))
3240 && !NILP (XCAR (prop
)))
3242 for (; CONSP (prop
); prop
= XCDR (prop
))
3244 if (handle_single_display_prop (it
, XCAR (prop
), object
,
3245 position
, display_replaced_p
))
3246 display_replaced_p
= 1;
3249 else if (VECTORP (prop
))
3252 for (i
= 0; i
< ASIZE (prop
); ++i
)
3253 if (handle_single_display_prop (it
, AREF (prop
, i
), object
,
3254 position
, display_replaced_p
))
3255 display_replaced_p
= 1;
3259 if (handle_single_display_prop (it
, prop
, object
, position
, 0))
3260 display_replaced_p
= 1;
3263 return display_replaced_p
? HANDLED_RETURN
: HANDLED_NORMALLY
;
3267 /* Value is the position of the end of the `display' property starting
3268 at START_POS in OBJECT. */
3270 static struct text_pos
3271 display_prop_end (it
, object
, start_pos
)
3274 struct text_pos start_pos
;
3277 struct text_pos end_pos
;
3279 end
= Fnext_single_char_property_change (make_number (CHARPOS (start_pos
)),
3280 Qdisplay
, object
, Qnil
);
3281 CHARPOS (end_pos
) = XFASTINT (end
);
3282 if (STRINGP (object
))
3283 compute_string_pos (&end_pos
, start_pos
, it
->string
);
3285 BYTEPOS (end_pos
) = CHAR_TO_BYTE (XFASTINT (end
));
3291 /* Set up IT from a single `display' sub-property value PROP. OBJECT
3292 is the object in which the `display' property was found. *POSITION
3293 is the position at which it was found. DISPLAY_REPLACED_P non-zero
3294 means that we previously saw a display sub-property which already
3295 replaced text display with something else, for example an image;
3296 ignore such properties after the first one has been processed.
3298 If PROP is a `space' or `image' sub-property, set *POSITION to the
3299 end position of the `display' property.
3301 Value is non-zero if something was found which replaces the display
3302 of buffer or string text. */
3305 handle_single_display_prop (it
, prop
, object
, position
,
3306 display_replaced_before_p
)
3310 struct text_pos
*position
;
3311 int display_replaced_before_p
;
3314 int replaces_text_display_p
= 0;
3317 /* If PROP is a list of the form `(when FORM . VALUE)', FORM is
3318 evaluated. If the result is nil, VALUE is ignored. */
3320 if (CONSP (prop
) && EQ (XCAR (prop
), Qwhen
))
3329 if (!NILP (form
) && !EQ (form
, Qt
))
3331 int count
= SPECPDL_INDEX ();
3332 struct gcpro gcpro1
;
3334 /* Bind `object' to the object having the `display' property, a
3335 buffer or string. Bind `position' to the position in the
3336 object where the property was found, and `buffer-position'
3337 to the current position in the buffer. */
3338 specbind (Qobject
, object
);
3339 specbind (Qposition
, make_number (CHARPOS (*position
)));
3340 specbind (Qbuffer_position
,
3341 make_number (STRINGP (object
)
3342 ? IT_CHARPOS (*it
) : CHARPOS (*position
)));
3344 form
= safe_eval (form
);
3346 unbind_to (count
, Qnil
);
3353 && EQ (XCAR (prop
), Qheight
)
3354 && CONSP (XCDR (prop
)))
3356 if (FRAME_TERMCAP_P (it
->f
) || FRAME_MSDOS_P (it
->f
))
3359 /* `(height HEIGHT)'. */
3360 it
->font_height
= XCAR (XCDR (prop
));
3361 if (!NILP (it
->font_height
))
3363 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
3364 int new_height
= -1;
3366 if (CONSP (it
->font_height
)
3367 && (EQ (XCAR (it
->font_height
), Qplus
)
3368 || EQ (XCAR (it
->font_height
), Qminus
))
3369 && CONSP (XCDR (it
->font_height
))
3370 && INTEGERP (XCAR (XCDR (it
->font_height
))))
3372 /* `(+ N)' or `(- N)' where N is an integer. */
3373 int steps
= XINT (XCAR (XCDR (it
->font_height
)));
3374 if (EQ (XCAR (it
->font_height
), Qplus
))
3376 it
->face_id
= smaller_face (it
->f
, it
->face_id
, steps
);
3378 else if (FUNCTIONP (it
->font_height
))
3380 /* Call function with current height as argument.
3381 Value is the new height. */
3383 height
= safe_call1 (it
->font_height
,
3384 face
->lface
[LFACE_HEIGHT_INDEX
]);
3385 if (NUMBERP (height
))
3386 new_height
= XFLOATINT (height
);
3388 else if (NUMBERP (it
->font_height
))
3390 /* Value is a multiple of the canonical char height. */
3393 face
= FACE_FROM_ID (it
->f
, DEFAULT_FACE_ID
);
3394 new_height
= (XFLOATINT (it
->font_height
)
3395 * XINT (face
->lface
[LFACE_HEIGHT_INDEX
]));
3399 /* Evaluate IT->font_height with `height' bound to the
3400 current specified height to get the new height. */
3402 int count
= SPECPDL_INDEX ();
3404 specbind (Qheight
, face
->lface
[LFACE_HEIGHT_INDEX
]);
3405 value
= safe_eval (it
->font_height
);
3406 unbind_to (count
, Qnil
);
3408 if (NUMBERP (value
))
3409 new_height
= XFLOATINT (value
);
3413 it
->face_id
= face_with_height (it
->f
, it
->face_id
, new_height
);
3416 else if (CONSP (prop
)
3417 && EQ (XCAR (prop
), Qspace_width
)
3418 && CONSP (XCDR (prop
)))
3420 /* `(space_width WIDTH)'. */
3421 if (FRAME_TERMCAP_P (it
->f
) || FRAME_MSDOS_P (it
->f
))
3424 value
= XCAR (XCDR (prop
));
3425 if (NUMBERP (value
) && XFLOATINT (value
) > 0)
3426 it
->space_width
= value
;
3428 else if (CONSP (prop
)
3429 && EQ (XCAR (prop
), Qraise
)
3430 && CONSP (XCDR (prop
)))
3432 /* `(raise FACTOR)'. */
3433 if (FRAME_TERMCAP_P (it
->f
) || FRAME_MSDOS_P (it
->f
))
3436 #ifdef HAVE_WINDOW_SYSTEM
3437 value
= XCAR (XCDR (prop
));
3438 if (NUMBERP (value
))
3440 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
3441 it
->voffset
= - (XFLOATINT (value
)
3442 * (FONT_HEIGHT (face
->font
)));
3444 #endif /* HAVE_WINDOW_SYSTEM */
3446 else if (!it
->string_from_display_prop_p
)
3448 /* `((margin left-margin) VALUE)' or `((margin right-margin)
3449 VALUE) or `((margin nil) VALUE)' or VALUE. */
3450 Lisp_Object location
, value
;
3451 struct text_pos start_pos
;
3454 /* Characters having this form of property are not displayed, so
3455 we have to find the end of the property. */
3456 start_pos
= *position
;
3457 *position
= display_prop_end (it
, object
, start_pos
);
3460 /* Let's stop at the new position and assume that all
3461 text properties change there. */
3462 it
->stop_charpos
= position
->charpos
;
3464 location
= Qunbound
;
3465 if (CONSP (prop
) && CONSP (XCAR (prop
)))
3469 value
= XCDR (prop
);
3471 value
= XCAR (value
);
3474 if (EQ (XCAR (tem
), Qmargin
)
3475 && (tem
= XCDR (tem
),
3476 tem
= CONSP (tem
) ? XCAR (tem
) : Qnil
,
3478 || EQ (tem
, Qleft_margin
)
3479 || EQ (tem
, Qright_margin
))))
3483 if (EQ (location
, Qunbound
))
3489 #ifdef HAVE_WINDOW_SYSTEM
3490 if (FRAME_TERMCAP_P (it
->f
))
3491 valid_p
= STRINGP (value
);
3493 valid_p
= (STRINGP (value
)
3494 || (CONSP (value
) && EQ (XCAR (value
), Qspace
))
3495 || valid_image_p (value
));
3496 #else /* not HAVE_WINDOW_SYSTEM */
3497 valid_p
= STRINGP (value
);
3498 #endif /* not HAVE_WINDOW_SYSTEM */
3500 if ((EQ (location
, Qleft_margin
)
3501 || EQ (location
, Qright_margin
)
3504 && !display_replaced_before_p
)
3506 replaces_text_display_p
= 1;
3508 /* Save current settings of IT so that we can restore them
3509 when we are finished with the glyph property value. */
3512 if (NILP (location
))
3513 it
->area
= TEXT_AREA
;
3514 else if (EQ (location
, Qleft_margin
))
3515 it
->area
= LEFT_MARGIN_AREA
;
3517 it
->area
= RIGHT_MARGIN_AREA
;
3519 if (STRINGP (value
))
3522 it
->multibyte_p
= STRING_MULTIBYTE (it
->string
);
3523 it
->current
.overlay_string_index
= -1;
3524 IT_STRING_CHARPOS (*it
) = IT_STRING_BYTEPOS (*it
) = 0;
3525 it
->end_charpos
= it
->string_nchars
= SCHARS (it
->string
);
3526 it
->method
= next_element_from_string
;
3527 it
->stop_charpos
= 0;
3528 it
->string_from_display_prop_p
= 1;
3529 /* Say that we haven't consumed the characters with
3530 `display' property yet. The call to pop_it in
3531 set_iterator_to_next will clean this up. */
3532 *position
= start_pos
;
3534 else if (CONSP (value
) && EQ (XCAR (value
), Qspace
))
3536 it
->method
= next_element_from_stretch
;
3538 it
->current
.pos
= it
->position
= start_pos
;
3540 #ifdef HAVE_WINDOW_SYSTEM
3543 it
->what
= IT_IMAGE
;
3544 it
->image_id
= lookup_image (it
->f
, value
);
3545 it
->position
= start_pos
;
3546 it
->object
= NILP (object
) ? it
->w
->buffer
: object
;
3547 it
->method
= next_element_from_image
;
3549 /* Say that we haven't consumed the characters with
3550 `display' property yet. The call to pop_it in
3551 set_iterator_to_next will clean this up. */
3552 *position
= start_pos
;
3554 #endif /* HAVE_WINDOW_SYSTEM */
3557 /* Invalid property or property not supported. Restore
3558 the position to what it was before. */
3559 *position
= start_pos
;
3562 return replaces_text_display_p
;
3566 /* Check if PROP is a display sub-property value whose text should be
3567 treated as intangible. */
3570 single_display_prop_intangible_p (prop
)
3573 /* Skip over `when FORM'. */
3574 if (CONSP (prop
) && EQ (XCAR (prop
), Qwhen
))
3588 /* Skip over `margin LOCATION'. If LOCATION is in the margins,
3589 we don't need to treat text as intangible. */
3590 if (EQ (XCAR (prop
), Qmargin
))
3598 || EQ (XCAR (prop
), Qleft_margin
)
3599 || EQ (XCAR (prop
), Qright_margin
))
3603 return (CONSP (prop
)
3604 && (EQ (XCAR (prop
), Qimage
)
3605 || EQ (XCAR (prop
), Qspace
)));
3609 /* Check if PROP is a display property value whose text should be
3610 treated as intangible. */
3613 display_prop_intangible_p (prop
)
3617 && CONSP (XCAR (prop
))
3618 && !EQ (Qmargin
, XCAR (XCAR (prop
))))
3620 /* A list of sub-properties. */
3621 while (CONSP (prop
))
3623 if (single_display_prop_intangible_p (XCAR (prop
)))
3628 else if (VECTORP (prop
))
3630 /* A vector of sub-properties. */
3632 for (i
= 0; i
< ASIZE (prop
); ++i
)
3633 if (single_display_prop_intangible_p (AREF (prop
, i
)))
3637 return single_display_prop_intangible_p (prop
);
3643 /* Return 1 if PROP is a display sub-property value containing STRING. */
3646 single_display_prop_string_p (prop
, string
)
3647 Lisp_Object prop
, string
;
3649 if (EQ (string
, prop
))
3652 /* Skip over `when FORM'. */
3653 if (CONSP (prop
) && EQ (XCAR (prop
), Qwhen
))
3662 /* Skip over `margin LOCATION'. */
3663 if (EQ (XCAR (prop
), Qmargin
))
3674 return CONSP (prop
) && EQ (XCAR (prop
), string
);
3678 /* Return 1 if STRING appears in the `display' property PROP. */
3681 display_prop_string_p (prop
, string
)
3682 Lisp_Object prop
, string
;
3685 && CONSP (XCAR (prop
))
3686 && !EQ (Qmargin
, XCAR (XCAR (prop
))))
3688 /* A list of sub-properties. */
3689 while (CONSP (prop
))
3691 if (single_display_prop_string_p (XCAR (prop
), string
))
3696 else if (VECTORP (prop
))
3698 /* A vector of sub-properties. */
3700 for (i
= 0; i
< ASIZE (prop
); ++i
)
3701 if (single_display_prop_string_p (AREF (prop
, i
), string
))
3705 return single_display_prop_string_p (prop
, string
);
3711 /* Determine from which buffer position in W's buffer STRING comes
3712 from. AROUND_CHARPOS is an approximate position where it could
3713 be from. Value is the buffer position or 0 if it couldn't be
3716 W's buffer must be current.
3718 This function is necessary because we don't record buffer positions
3719 in glyphs generated from strings (to keep struct glyph small).
3720 This function may only use code that doesn't eval because it is
3721 called asynchronously from note_mouse_highlight. */
3724 string_buffer_position (w
, string
, around_charpos
)
3729 Lisp_Object limit
, prop
, pos
;
3730 const int MAX_DISTANCE
= 1000;
3733 pos
= make_number (around_charpos
);
3734 limit
= make_number (min (XINT (pos
) + MAX_DISTANCE
, ZV
));
3735 while (!found
&& !EQ (pos
, limit
))
3737 prop
= Fget_char_property (pos
, Qdisplay
, Qnil
);
3738 if (!NILP (prop
) && display_prop_string_p (prop
, string
))
3741 pos
= Fnext_single_char_property_change (pos
, Qdisplay
, Qnil
, limit
);
3746 pos
= make_number (around_charpos
);
3747 limit
= make_number (max (XINT (pos
) - MAX_DISTANCE
, BEGV
));
3748 while (!found
&& !EQ (pos
, limit
))
3750 prop
= Fget_char_property (pos
, Qdisplay
, Qnil
);
3751 if (!NILP (prop
) && display_prop_string_p (prop
, string
))
3754 pos
= Fprevious_single_char_property_change (pos
, Qdisplay
, Qnil
,
3759 return found
? XINT (pos
) : 0;
3764 /***********************************************************************
3765 `composition' property
3766 ***********************************************************************/
3768 /* Set up iterator IT from `composition' property at its current
3769 position. Called from handle_stop. */
3771 static enum prop_handled
3772 handle_composition_prop (it
)
3775 Lisp_Object prop
, string
;
3776 int pos
, pos_byte
, end
;
3777 enum prop_handled handled
= HANDLED_NORMALLY
;
3779 if (STRINGP (it
->string
))
3781 pos
= IT_STRING_CHARPOS (*it
);
3782 pos_byte
= IT_STRING_BYTEPOS (*it
);
3783 string
= it
->string
;
3787 pos
= IT_CHARPOS (*it
);
3788 pos_byte
= IT_BYTEPOS (*it
);
3792 /* If there's a valid composition and point is not inside of the
3793 composition (in the case that the composition is from the current
3794 buffer), draw a glyph composed from the composition components. */
3795 if (find_composition (pos
, -1, &pos
, &end
, &prop
, string
)
3796 && COMPOSITION_VALID_P (pos
, end
, prop
)
3797 && (STRINGP (it
->string
) || (PT
<= pos
|| PT
>= end
)))
3799 int id
= get_composition_id (pos
, pos_byte
, end
- pos
, prop
, string
);
3803 it
->method
= next_element_from_composition
;
3805 it
->cmp_len
= COMPOSITION_LENGTH (prop
);
3806 /* For a terminal, draw only the first character of the
3808 it
->c
= COMPOSITION_GLYPH (composition_table
[id
], 0);
3809 it
->len
= (STRINGP (it
->string
)
3810 ? string_char_to_byte (it
->string
, end
)
3811 : CHAR_TO_BYTE (end
)) - pos_byte
;
3812 it
->stop_charpos
= end
;
3813 handled
= HANDLED_RETURN
;
3822 /***********************************************************************
3824 ***********************************************************************/
3826 /* The following structure is used to record overlay strings for
3827 later sorting in load_overlay_strings. */
3829 struct overlay_entry
3831 Lisp_Object overlay
;
3838 /* Set up iterator IT from overlay strings at its current position.
3839 Called from handle_stop. */
3841 static enum prop_handled
3842 handle_overlay_change (it
)
3845 if (!STRINGP (it
->string
) && get_overlay_strings (it
, 0))
3846 return HANDLED_RECOMPUTE_PROPS
;
3848 return HANDLED_NORMALLY
;
3852 /* Set up the next overlay string for delivery by IT, if there is an
3853 overlay string to deliver. Called by set_iterator_to_next when the
3854 end of the current overlay string is reached. If there are more
3855 overlay strings to display, IT->string and
3856 IT->current.overlay_string_index are set appropriately here.
3857 Otherwise IT->string is set to nil. */
3860 next_overlay_string (it
)
3863 ++it
->current
.overlay_string_index
;
3864 if (it
->current
.overlay_string_index
== it
->n_overlay_strings
)
3866 /* No more overlay strings. Restore IT's settings to what
3867 they were before overlay strings were processed, and
3868 continue to deliver from current_buffer. */
3869 int display_ellipsis_p
= it
->stack
[it
->sp
- 1].display_ellipsis_p
;
3872 xassert (it
->stop_charpos
>= BEGV
3873 && it
->stop_charpos
<= it
->end_charpos
);
3875 it
->current
.overlay_string_index
= -1;
3876 SET_TEXT_POS (it
->current
.string_pos
, -1, -1);
3877 it
->n_overlay_strings
= 0;
3878 it
->method
= next_element_from_buffer
;
3880 /* If we're at the end of the buffer, record that we have
3881 processed the overlay strings there already, so that
3882 next_element_from_buffer doesn't try it again. */
3883 if (IT_CHARPOS (*it
) >= it
->end_charpos
)
3884 it
->overlay_strings_at_end_processed_p
= 1;
3886 /* If we have to display `...' for invisible text, set
3887 the iterator up for that. */
3888 if (display_ellipsis_p
)
3889 setup_for_ellipsis (it
);
3893 /* There are more overlay strings to process. If
3894 IT->current.overlay_string_index has advanced to a position
3895 where we must load IT->overlay_strings with more strings, do
3897 int i
= it
->current
.overlay_string_index
% OVERLAY_STRING_CHUNK_SIZE
;
3899 if (it
->current
.overlay_string_index
&& i
== 0)
3900 load_overlay_strings (it
, 0);
3902 /* Initialize IT to deliver display elements from the overlay
3904 it
->string
= it
->overlay_strings
[i
];
3905 it
->multibyte_p
= STRING_MULTIBYTE (it
->string
);
3906 SET_TEXT_POS (it
->current
.string_pos
, 0, 0);
3907 it
->method
= next_element_from_string
;
3908 it
->stop_charpos
= 0;
3915 /* Compare two overlay_entry structures E1 and E2. Used as a
3916 comparison function for qsort in load_overlay_strings. Overlay
3917 strings for the same position are sorted so that
3919 1. All after-strings come in front of before-strings, except
3920 when they come from the same overlay.
3922 2. Within after-strings, strings are sorted so that overlay strings
3923 from overlays with higher priorities come first.
3925 2. Within before-strings, strings are sorted so that overlay
3926 strings from overlays with higher priorities come last.
3928 Value is analogous to strcmp. */
3932 compare_overlay_entries (e1
, e2
)
3935 struct overlay_entry
*entry1
= (struct overlay_entry
*) e1
;
3936 struct overlay_entry
*entry2
= (struct overlay_entry
*) e2
;
3939 if (entry1
->after_string_p
!= entry2
->after_string_p
)
3941 /* Let after-strings appear in front of before-strings if
3942 they come from different overlays. */
3943 if (EQ (entry1
->overlay
, entry2
->overlay
))
3944 result
= entry1
->after_string_p
? 1 : -1;
3946 result
= entry1
->after_string_p
? -1 : 1;
3948 else if (entry1
->after_string_p
)
3949 /* After-strings sorted in order of decreasing priority. */
3950 result
= entry2
->priority
- entry1
->priority
;
3952 /* Before-strings sorted in order of increasing priority. */
3953 result
= entry1
->priority
- entry2
->priority
;
3959 /* Load the vector IT->overlay_strings with overlay strings from IT's
3960 current buffer position, or from CHARPOS if that is > 0. Set
3961 IT->n_overlays to the total number of overlay strings found.
3963 Overlay strings are processed OVERLAY_STRING_CHUNK_SIZE strings at
3964 a time. On entry into load_overlay_strings,
3965 IT->current.overlay_string_index gives the number of overlay
3966 strings that have already been loaded by previous calls to this
3969 IT->add_overlay_start contains an additional overlay start
3970 position to consider for taking overlay strings from, if non-zero.
3971 This position comes into play when the overlay has an `invisible'
3972 property, and both before and after-strings. When we've skipped to
3973 the end of the overlay, because of its `invisible' property, we
3974 nevertheless want its before-string to appear.
3975 IT->add_overlay_start will contain the overlay start position
3978 Overlay strings are sorted so that after-string strings come in
3979 front of before-string strings. Within before and after-strings,
3980 strings are sorted by overlay priority. See also function
3981 compare_overlay_entries. */
3984 load_overlay_strings (it
, charpos
)
3988 extern Lisp_Object Qafter_string
, Qbefore_string
, Qwindow
, Qpriority
;
3989 Lisp_Object ov
, overlay
, window
, str
, invisible
;
3992 int n
= 0, i
, j
, invis_p
;
3993 struct overlay_entry
*entries
3994 = (struct overlay_entry
*) alloca (size
* sizeof *entries
);
3997 charpos
= IT_CHARPOS (*it
);
3999 /* Append the overlay string STRING of overlay OVERLAY to vector
4000 `entries' which has size `size' and currently contains `n'
4001 elements. AFTER_P non-zero means STRING is an after-string of
4003 #define RECORD_OVERLAY_STRING(OVERLAY, STRING, AFTER_P) \
4006 Lisp_Object priority; \
4010 int new_size = 2 * size; \
4011 struct overlay_entry *old = entries; \
4013 (struct overlay_entry *) alloca (new_size \
4014 * sizeof *entries); \
4015 bcopy (old, entries, size * sizeof *entries); \
4019 entries[n].string = (STRING); \
4020 entries[n].overlay = (OVERLAY); \
4021 priority = Foverlay_get ((OVERLAY), Qpriority); \
4022 entries[n].priority = INTEGERP (priority) ? XINT (priority) : 0; \
4023 entries[n].after_string_p = (AFTER_P); \
4028 /* Process overlay before the overlay center. */
4029 for (ov
= current_buffer
->overlays_before
; CONSP (ov
); ov
= XCDR (ov
))
4031 overlay
= XCAR (ov
);
4032 xassert (OVERLAYP (overlay
));
4033 start
= OVERLAY_POSITION (OVERLAY_START (overlay
));
4034 end
= OVERLAY_POSITION (OVERLAY_END (overlay
));
4039 /* Skip this overlay if it doesn't start or end at IT's current
4041 if (end
!= charpos
&& start
!= charpos
)
4044 /* Skip this overlay if it doesn't apply to IT->w. */
4045 window
= Foverlay_get (overlay
, Qwindow
);
4046 if (WINDOWP (window
) && XWINDOW (window
) != it
->w
)
4049 /* If the text ``under'' the overlay is invisible, both before-
4050 and after-strings from this overlay are visible; start and
4051 end position are indistinguishable. */
4052 invisible
= Foverlay_get (overlay
, Qinvisible
);
4053 invis_p
= TEXT_PROP_MEANS_INVISIBLE (invisible
);
4055 /* If overlay has a non-empty before-string, record it. */
4056 if ((start
== charpos
|| (end
== charpos
&& invis_p
))
4057 && (str
= Foverlay_get (overlay
, Qbefore_string
), STRINGP (str
))
4059 RECORD_OVERLAY_STRING (overlay
, str
, 0);
4061 /* If overlay has a non-empty after-string, record it. */
4062 if ((end
== charpos
|| (start
== charpos
&& invis_p
))
4063 && (str
= Foverlay_get (overlay
, Qafter_string
), STRINGP (str
))
4065 RECORD_OVERLAY_STRING (overlay
, str
, 1);
4068 /* Process overlays after the overlay center. */
4069 for (ov
= current_buffer
->overlays_after
; CONSP (ov
); ov
= XCDR (ov
))
4071 overlay
= XCAR (ov
);
4072 xassert (OVERLAYP (overlay
));
4073 start
= OVERLAY_POSITION (OVERLAY_START (overlay
));
4074 end
= OVERLAY_POSITION (OVERLAY_END (overlay
));
4076 if (start
> charpos
)
4079 /* Skip this overlay if it doesn't start or end at IT's current
4081 if (end
!= charpos
&& start
!= charpos
)
4084 /* Skip this overlay if it doesn't apply to IT->w. */
4085 window
= Foverlay_get (overlay
, Qwindow
);
4086 if (WINDOWP (window
) && XWINDOW (window
) != it
->w
)
4089 /* If the text ``under'' the overlay is invisible, it has a zero
4090 dimension, and both before- and after-strings apply. */
4091 invisible
= Foverlay_get (overlay
, Qinvisible
);
4092 invis_p
= TEXT_PROP_MEANS_INVISIBLE (invisible
);
4094 /* If overlay has a non-empty before-string, record it. */
4095 if ((start
== charpos
|| (end
== charpos
&& invis_p
))
4096 && (str
= Foverlay_get (overlay
, Qbefore_string
), STRINGP (str
))
4098 RECORD_OVERLAY_STRING (overlay
, str
, 0);
4100 /* If overlay has a non-empty after-string, record it. */
4101 if ((end
== charpos
|| (start
== charpos
&& invis_p
))
4102 && (str
= Foverlay_get (overlay
, Qafter_string
), STRINGP (str
))
4104 RECORD_OVERLAY_STRING (overlay
, str
, 1);
4107 #undef RECORD_OVERLAY_STRING
4111 qsort (entries
, n
, sizeof *entries
, compare_overlay_entries
);
4113 /* Record the total number of strings to process. */
4114 it
->n_overlay_strings
= n
;
4116 /* IT->current.overlay_string_index is the number of overlay strings
4117 that have already been consumed by IT. Copy some of the
4118 remaining overlay strings to IT->overlay_strings. */
4120 j
= it
->current
.overlay_string_index
;
4121 while (i
< OVERLAY_STRING_CHUNK_SIZE
&& j
< n
)
4122 it
->overlay_strings
[i
++] = entries
[j
++].string
;
4128 /* Get the first chunk of overlay strings at IT's current buffer
4129 position, or at CHARPOS if that is > 0. Value is non-zero if at
4130 least one overlay string was found. */
4133 get_overlay_strings (it
, charpos
)
4137 /* Get the first OVERLAY_STRING_CHUNK_SIZE overlay strings to
4138 process. This fills IT->overlay_strings with strings, and sets
4139 IT->n_overlay_strings to the total number of strings to process.
4140 IT->pos.overlay_string_index has to be set temporarily to zero
4141 because load_overlay_strings needs this; it must be set to -1
4142 when no overlay strings are found because a zero value would
4143 indicate a position in the first overlay string. */
4144 it
->current
.overlay_string_index
= 0;
4145 load_overlay_strings (it
, charpos
);
4147 /* If we found overlay strings, set up IT to deliver display
4148 elements from the first one. Otherwise set up IT to deliver
4149 from current_buffer. */
4150 if (it
->n_overlay_strings
)
4152 /* Make sure we know settings in current_buffer, so that we can
4153 restore meaningful values when we're done with the overlay
4155 compute_stop_pos (it
);
4156 xassert (it
->face_id
>= 0);
4158 /* Save IT's settings. They are restored after all overlay
4159 strings have been processed. */
4160 xassert (it
->sp
== 0);
4163 /* Set up IT to deliver display elements from the first overlay
4165 IT_STRING_CHARPOS (*it
) = IT_STRING_BYTEPOS (*it
) = 0;
4166 it
->string
= it
->overlay_strings
[0];
4167 it
->stop_charpos
= 0;
4168 xassert (STRINGP (it
->string
));
4169 it
->end_charpos
= SCHARS (it
->string
);
4170 it
->multibyte_p
= STRING_MULTIBYTE (it
->string
);
4171 it
->method
= next_element_from_string
;
4176 it
->current
.overlay_string_index
= -1;
4177 it
->method
= next_element_from_buffer
;
4182 /* Value is non-zero if we found at least one overlay string. */
4183 return STRINGP (it
->string
);
4188 /***********************************************************************
4189 Saving and restoring state
4190 ***********************************************************************/
4192 /* Save current settings of IT on IT->stack. Called, for example,
4193 before setting up IT for an overlay string, to be able to restore
4194 IT's settings to what they were after the overlay string has been
4201 struct iterator_stack_entry
*p
;
4203 xassert (it
->sp
< 2);
4204 p
= it
->stack
+ it
->sp
;
4206 p
->stop_charpos
= it
->stop_charpos
;
4207 xassert (it
->face_id
>= 0);
4208 p
->face_id
= it
->face_id
;
4209 p
->string
= it
->string
;
4210 p
->pos
= it
->current
;
4211 p
->end_charpos
= it
->end_charpos
;
4212 p
->string_nchars
= it
->string_nchars
;
4214 p
->multibyte_p
= it
->multibyte_p
;
4215 p
->space_width
= it
->space_width
;
4216 p
->font_height
= it
->font_height
;
4217 p
->voffset
= it
->voffset
;
4218 p
->string_from_display_prop_p
= it
->string_from_display_prop_p
;
4219 p
->display_ellipsis_p
= 0;
4224 /* Restore IT's settings from IT->stack. Called, for example, when no
4225 more overlay strings must be processed, and we return to delivering
4226 display elements from a buffer, or when the end of a string from a
4227 `display' property is reached and we return to delivering display
4228 elements from an overlay string, or from a buffer. */
4234 struct iterator_stack_entry
*p
;
4236 xassert (it
->sp
> 0);
4238 p
= it
->stack
+ it
->sp
;
4239 it
->stop_charpos
= p
->stop_charpos
;
4240 it
->face_id
= p
->face_id
;
4241 it
->string
= p
->string
;
4242 it
->current
= p
->pos
;
4243 it
->end_charpos
= p
->end_charpos
;
4244 it
->string_nchars
= p
->string_nchars
;
4246 it
->multibyte_p
= p
->multibyte_p
;
4247 it
->space_width
= p
->space_width
;
4248 it
->font_height
= p
->font_height
;
4249 it
->voffset
= p
->voffset
;
4250 it
->string_from_display_prop_p
= p
->string_from_display_prop_p
;
4255 /***********************************************************************
4257 ***********************************************************************/
4259 /* Set IT's current position to the previous line start. */
4262 back_to_previous_line_start (it
)
4265 IT_CHARPOS (*it
) = find_next_newline_no_quit (IT_CHARPOS (*it
) - 1, -1);
4266 IT_BYTEPOS (*it
) = CHAR_TO_BYTE (IT_CHARPOS (*it
));
4270 /* Move IT to the next line start.
4272 Value is non-zero if a newline was found. Set *SKIPPED_P to 1 if
4273 we skipped over part of the text (as opposed to moving the iterator
4274 continuously over the text). Otherwise, don't change the value
4277 Newlines may come from buffer text, overlay strings, or strings
4278 displayed via the `display' property. That's the reason we can't
4279 simply use find_next_newline_no_quit.
4281 Note that this function may not skip over invisible text that is so
4282 because of text properties and immediately follows a newline. If
4283 it would, function reseat_at_next_visible_line_start, when called
4284 from set_iterator_to_next, would effectively make invisible
4285 characters following a newline part of the wrong glyph row, which
4286 leads to wrong cursor motion. */
4289 forward_to_next_line_start (it
, skipped_p
)
4293 int old_selective
, newline_found_p
, n
;
4294 const int MAX_NEWLINE_DISTANCE
= 500;
4296 /* If already on a newline, just consume it to avoid unintended
4297 skipping over invisible text below. */
4298 if (it
->what
== IT_CHARACTER
4300 && CHARPOS (it
->position
) == IT_CHARPOS (*it
))
4302 set_iterator_to_next (it
, 0);
4307 /* Don't handle selective display in the following. It's (a)
4308 unnecessary because it's done by the caller, and (b) leads to an
4309 infinite recursion because next_element_from_ellipsis indirectly
4310 calls this function. */
4311 old_selective
= it
->selective
;
4314 /* Scan for a newline within MAX_NEWLINE_DISTANCE display elements
4315 from buffer text. */
4316 for (n
= newline_found_p
= 0;
4317 !newline_found_p
&& n
< MAX_NEWLINE_DISTANCE
;
4318 n
+= STRINGP (it
->string
) ? 0 : 1)
4320 if (!get_next_display_element (it
))
4322 newline_found_p
= it
->what
== IT_CHARACTER
&& it
->c
== '\n';
4323 set_iterator_to_next (it
, 0);
4326 /* If we didn't find a newline near enough, see if we can use a
4328 if (!newline_found_p
)
4330 int start
= IT_CHARPOS (*it
);
4331 int limit
= find_next_newline_no_quit (start
, 1);
4334 xassert (!STRINGP (it
->string
));
4336 /* If there isn't any `display' property in sight, and no
4337 overlays, we can just use the position of the newline in
4339 if (it
->stop_charpos
>= limit
4340 || ((pos
= Fnext_single_property_change (make_number (start
),
4342 Qnil
, make_number (limit
)),
4344 && next_overlay_change (start
) == ZV
))
4346 IT_CHARPOS (*it
) = limit
;
4347 IT_BYTEPOS (*it
) = CHAR_TO_BYTE (limit
);
4348 *skipped_p
= newline_found_p
= 1;
4352 while (get_next_display_element (it
)
4353 && !newline_found_p
)
4355 newline_found_p
= ITERATOR_AT_END_OF_LINE_P (it
);
4356 set_iterator_to_next (it
, 0);
4361 it
->selective
= old_selective
;
4362 return newline_found_p
;
4366 /* Set IT's current position to the previous visible line start. Skip
4367 invisible text that is so either due to text properties or due to
4368 selective display. Caution: this does not change IT->current_x and
4372 back_to_previous_visible_line_start (it
)
4377 /* Go back one newline if not on BEGV already. */
4378 if (IT_CHARPOS (*it
) > BEGV
)
4379 back_to_previous_line_start (it
);
4381 /* Move over lines that are invisible because of selective display
4382 or text properties. */
4383 while (IT_CHARPOS (*it
) > BEGV
4388 /* If selective > 0, then lines indented more than that values
4390 if (it
->selective
> 0
4391 && indented_beyond_p (IT_CHARPOS (*it
), IT_BYTEPOS (*it
),
4392 (double) it
->selective
)) /* iftc */
4398 prop
= Fget_char_property (make_number (IT_CHARPOS (*it
)),
4399 Qinvisible
, it
->window
);
4400 if (TEXT_PROP_MEANS_INVISIBLE (prop
))
4404 /* Back one more newline if the current one is invisible. */
4406 back_to_previous_line_start (it
);
4409 xassert (IT_CHARPOS (*it
) >= BEGV
);
4410 xassert (IT_CHARPOS (*it
) == BEGV
4411 || FETCH_BYTE (IT_BYTEPOS (*it
) - 1) == '\n');
4416 /* Reseat iterator IT at the previous visible line start. Skip
4417 invisible text that is so either due to text properties or due to
4418 selective display. At the end, update IT's overlay information,
4419 face information etc. */
4422 reseat_at_previous_visible_line_start (it
)
4425 back_to_previous_visible_line_start (it
);
4426 reseat (it
, it
->current
.pos
, 1);
4431 /* Reseat iterator IT on the next visible line start in the current
4432 buffer. ON_NEWLINE_P non-zero means position IT on the newline
4433 preceding the line start. Skip over invisible text that is so
4434 because of selective display. Compute faces, overlays etc at the
4435 new position. Note that this function does not skip over text that
4436 is invisible because of text properties. */
4439 reseat_at_next_visible_line_start (it
, on_newline_p
)
4443 int newline_found_p
, skipped_p
= 0;
4445 newline_found_p
= forward_to_next_line_start (it
, &skipped_p
);
4447 /* Skip over lines that are invisible because they are indented
4448 more than the value of IT->selective. */
4449 if (it
->selective
> 0)
4450 while (IT_CHARPOS (*it
) < ZV
4451 && indented_beyond_p (IT_CHARPOS (*it
), IT_BYTEPOS (*it
),
4452 (double) it
->selective
)) /* iftc */
4454 xassert (FETCH_BYTE (IT_BYTEPOS (*it
) - 1) == '\n');
4455 newline_found_p
= forward_to_next_line_start (it
, &skipped_p
);
4458 /* Position on the newline if that's what's requested. */
4459 if (on_newline_p
&& newline_found_p
)
4461 if (STRINGP (it
->string
))
4463 if (IT_STRING_CHARPOS (*it
) > 0)
4465 --IT_STRING_CHARPOS (*it
);
4466 --IT_STRING_BYTEPOS (*it
);
4469 else if (IT_CHARPOS (*it
) > BEGV
)
4473 reseat (it
, it
->current
.pos
, 0);
4477 reseat (it
, it
->current
.pos
, 0);
4484 /***********************************************************************
4485 Changing an iterator's position
4486 ***********************************************************************/
4488 /* Change IT's current position to POS in current_buffer. If FORCE_P
4489 is non-zero, always check for text properties at the new position.
4490 Otherwise, text properties are only looked up if POS >=
4491 IT->check_charpos of a property. */
4494 reseat (it
, pos
, force_p
)
4496 struct text_pos pos
;
4499 int original_pos
= IT_CHARPOS (*it
);
4501 reseat_1 (it
, pos
, 0);
4503 /* Determine where to check text properties. Avoid doing it
4504 where possible because text property lookup is very expensive. */
4506 || CHARPOS (pos
) > it
->stop_charpos
4507 || CHARPOS (pos
) < original_pos
)
4514 /* Change IT's buffer position to POS. SET_STOP_P non-zero means set
4515 IT->stop_pos to POS, also. */
4518 reseat_1 (it
, pos
, set_stop_p
)
4520 struct text_pos pos
;
4523 /* Don't call this function when scanning a C string. */
4524 xassert (it
->s
== NULL
);
4526 /* POS must be a reasonable value. */
4527 xassert (CHARPOS (pos
) >= BEGV
&& CHARPOS (pos
) <= ZV
);
4529 it
->current
.pos
= it
->position
= pos
;
4530 XSETBUFFER (it
->object
, current_buffer
);
4531 it
->end_charpos
= ZV
;
4533 it
->current
.dpvec_index
= -1;
4534 it
->current
.overlay_string_index
= -1;
4535 IT_STRING_CHARPOS (*it
) = -1;
4536 IT_STRING_BYTEPOS (*it
) = -1;
4538 it
->method
= next_element_from_buffer
;
4539 it
->multibyte_p
= !NILP (current_buffer
->enable_multibyte_characters
);
4541 it
->face_before_selective_p
= 0;
4544 it
->stop_charpos
= CHARPOS (pos
);
4548 /* Set up IT for displaying a string, starting at CHARPOS in window W.
4549 If S is non-null, it is a C string to iterate over. Otherwise,
4550 STRING gives a Lisp string to iterate over.
4552 If PRECISION > 0, don't return more then PRECISION number of
4553 characters from the string.
4555 If FIELD_WIDTH > 0, return padding spaces until FIELD_WIDTH
4556 characters have been returned. FIELD_WIDTH < 0 means an infinite
4559 MULTIBYTE = 0 means disable processing of multibyte characters,
4560 MULTIBYTE > 0 means enable it,
4561 MULTIBYTE < 0 means use IT->multibyte_p.
4563 IT must be initialized via a prior call to init_iterator before
4564 calling this function. */
4567 reseat_to_string (it
, s
, string
, charpos
, precision
, field_width
, multibyte
)
4572 int precision
, field_width
, multibyte
;
4574 /* No region in strings. */
4575 it
->region_beg_charpos
= it
->region_end_charpos
= -1;
4577 /* No text property checks performed by default, but see below. */
4578 it
->stop_charpos
= -1;
4580 /* Set iterator position and end position. */
4581 bzero (&it
->current
, sizeof it
->current
);
4582 it
->current
.overlay_string_index
= -1;
4583 it
->current
.dpvec_index
= -1;
4584 xassert (charpos
>= 0);
4586 /* If STRING is specified, use its multibyteness, otherwise use the
4587 setting of MULTIBYTE, if specified. */
4589 it
->multibyte_p
= multibyte
> 0;
4593 xassert (STRINGP (string
));
4594 it
->string
= string
;
4596 it
->end_charpos
= it
->string_nchars
= SCHARS (string
);
4597 it
->method
= next_element_from_string
;
4598 it
->current
.string_pos
= string_pos (charpos
, string
);
4605 /* Note that we use IT->current.pos, not it->current.string_pos,
4606 for displaying C strings. */
4607 IT_STRING_CHARPOS (*it
) = IT_STRING_BYTEPOS (*it
) = -1;
4608 if (it
->multibyte_p
)
4610 it
->current
.pos
= c_string_pos (charpos
, s
, 1);
4611 it
->end_charpos
= it
->string_nchars
= number_of_chars (s
, 1);
4615 IT_CHARPOS (*it
) = IT_BYTEPOS (*it
) = charpos
;
4616 it
->end_charpos
= it
->string_nchars
= strlen (s
);
4619 it
->method
= next_element_from_c_string
;
4622 /* PRECISION > 0 means don't return more than PRECISION characters
4624 if (precision
> 0 && it
->end_charpos
- charpos
> precision
)
4625 it
->end_charpos
= it
->string_nchars
= charpos
+ precision
;
4627 /* FIELD_WIDTH > 0 means pad with spaces until FIELD_WIDTH
4628 characters have been returned. FIELD_WIDTH == 0 means don't pad,
4629 FIELD_WIDTH < 0 means infinite field width. This is useful for
4630 padding with `-' at the end of a mode line. */
4631 if (field_width
< 0)
4632 field_width
= INFINITY
;
4633 if (field_width
> it
->end_charpos
- charpos
)
4634 it
->end_charpos
= charpos
+ field_width
;
4636 /* Use the standard display table for displaying strings. */
4637 if (DISP_TABLE_P (Vstandard_display_table
))
4638 it
->dp
= XCHAR_TABLE (Vstandard_display_table
);
4640 it
->stop_charpos
= charpos
;
4646 /***********************************************************************
4648 ***********************************************************************/
4650 /* Load IT's display element fields with information about the next
4651 display element from the current position of IT. Value is zero if
4652 end of buffer (or C string) is reached. */
4655 get_next_display_element (it
)
4658 /* Non-zero means that we found a display element. Zero means that
4659 we hit the end of what we iterate over. Performance note: the
4660 function pointer `method' used here turns out to be faster than
4661 using a sequence of if-statements. */
4662 int success_p
= (*it
->method
) (it
);
4664 if (it
->what
== IT_CHARACTER
)
4666 /* Map via display table or translate control characters.
4667 IT->c, IT->len etc. have been set to the next character by
4668 the function call above. If we have a display table, and it
4669 contains an entry for IT->c, translate it. Don't do this if
4670 IT->c itself comes from a display table, otherwise we could
4671 end up in an infinite recursion. (An alternative could be to
4672 count the recursion depth of this function and signal an
4673 error when a certain maximum depth is reached.) Is it worth
4675 if (success_p
&& it
->dpvec
== NULL
)
4680 && (dv
= DISP_CHAR_VECTOR (it
->dp
, it
->c
),
4683 struct Lisp_Vector
*v
= XVECTOR (dv
);
4685 /* Return the first character from the display table
4686 entry, if not empty. If empty, don't display the
4687 current character. */
4690 it
->dpvec_char_len
= it
->len
;
4691 it
->dpvec
= v
->contents
;
4692 it
->dpend
= v
->contents
+ v
->size
;
4693 it
->current
.dpvec_index
= 0;
4694 it
->method
= next_element_from_display_vector
;
4695 success_p
= get_next_display_element (it
);
4699 set_iterator_to_next (it
, 0);
4700 success_p
= get_next_display_element (it
);
4704 /* Translate control characters into `\003' or `^C' form.
4705 Control characters coming from a display table entry are
4706 currently not translated because we use IT->dpvec to hold
4707 the translation. This could easily be changed but I
4708 don't believe that it is worth doing.
4710 If it->multibyte_p is nonzero, eight-bit characters and
4711 non-printable multibyte characters are also translated to
4714 If it->multibyte_p is zero, eight-bit characters that
4715 don't have corresponding multibyte char code are also
4716 translated to octal form. */
4717 else if ((it
->c
< ' '
4718 && (it
->area
!= TEXT_AREA
4719 || (it
->c
!= '\n' && it
->c
!= '\t')))
4723 || !CHAR_PRINTABLE_P (it
->c
))
4725 && it
->c
== unibyte_char_to_multibyte (it
->c
))))
4727 /* IT->c is a control character which must be displayed
4728 either as '\003' or as `^C' where the '\\' and '^'
4729 can be defined in the display table. Fill
4730 IT->ctl_chars with glyphs for what we have to
4731 display. Then, set IT->dpvec to these glyphs. */
4734 if (it
->c
< 128 && it
->ctl_arrow_p
)
4736 /* Set IT->ctl_chars[0] to the glyph for `^'. */
4738 && INTEGERP (DISP_CTRL_GLYPH (it
->dp
))
4739 && GLYPH_CHAR_VALID_P (XINT (DISP_CTRL_GLYPH (it
->dp
))))
4740 g
= XINT (DISP_CTRL_GLYPH (it
->dp
));
4742 g
= FAST_MAKE_GLYPH ('^', 0);
4743 XSETINT (it
->ctl_chars
[0], g
);
4745 g
= FAST_MAKE_GLYPH (it
->c
^ 0100, 0);
4746 XSETINT (it
->ctl_chars
[1], g
);
4748 /* Set up IT->dpvec and return first character from it. */
4749 it
->dpvec_char_len
= it
->len
;
4750 it
->dpvec
= it
->ctl_chars
;
4751 it
->dpend
= it
->dpvec
+ 2;
4752 it
->current
.dpvec_index
= 0;
4753 it
->method
= next_element_from_display_vector
;
4754 get_next_display_element (it
);
4758 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
4763 /* Set IT->ctl_chars[0] to the glyph for `\\'. */
4765 && INTEGERP (DISP_ESCAPE_GLYPH (it
->dp
))
4766 && GLYPH_CHAR_VALID_P (XFASTINT (DISP_ESCAPE_GLYPH (it
->dp
))))
4767 escape_glyph
= XFASTINT (DISP_ESCAPE_GLYPH (it
->dp
));
4769 escape_glyph
= FAST_MAKE_GLYPH ('\\', 0);
4771 if (SINGLE_BYTE_CHAR_P (it
->c
))
4772 str
[0] = it
->c
, len
= 1;
4775 len
= CHAR_STRING_NO_SIGNAL (it
->c
, str
);
4778 /* It's an invalid character, which
4779 shouldn't happen actually, but due to
4780 bugs it may happen. Let's print the char
4781 as is, there's not much meaningful we can
4784 str
[1] = it
->c
>> 8;
4785 str
[2] = it
->c
>> 16;
4786 str
[3] = it
->c
>> 24;
4791 for (i
= 0; i
< len
; i
++)
4793 XSETINT (it
->ctl_chars
[i
* 4], escape_glyph
);
4794 /* Insert three more glyphs into IT->ctl_chars for
4795 the octal display of the character. */
4796 g
= FAST_MAKE_GLYPH (((str
[i
] >> 6) & 7) + '0', 0);
4797 XSETINT (it
->ctl_chars
[i
* 4 + 1], g
);
4798 g
= FAST_MAKE_GLYPH (((str
[i
] >> 3) & 7) + '0', 0);
4799 XSETINT (it
->ctl_chars
[i
* 4 + 2], g
);
4800 g
= FAST_MAKE_GLYPH ((str
[i
] & 7) + '0', 0);
4801 XSETINT (it
->ctl_chars
[i
* 4 + 3], g
);
4804 /* Set up IT->dpvec and return the first character
4806 it
->dpvec_char_len
= it
->len
;
4807 it
->dpvec
= it
->ctl_chars
;
4808 it
->dpend
= it
->dpvec
+ len
* 4;
4809 it
->current
.dpvec_index
= 0;
4810 it
->method
= next_element_from_display_vector
;
4811 get_next_display_element (it
);
4816 /* Adjust face id for a multibyte character. There are no
4817 multibyte character in unibyte text. */
4820 && FRAME_WINDOW_P (it
->f
))
4822 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
4823 it
->face_id
= FACE_FOR_CHAR (it
->f
, face
, it
->c
);
4827 /* Is this character the last one of a run of characters with
4828 box? If yes, set IT->end_of_box_run_p to 1. */
4835 it
->end_of_box_run_p
4836 = ((face_id
= face_after_it_pos (it
),
4837 face_id
!= it
->face_id
)
4838 && (face
= FACE_FROM_ID (it
->f
, face_id
),
4839 face
->box
== FACE_NO_BOX
));
4842 /* Value is 0 if end of buffer or string reached. */
4847 /* Move IT to the next display element.
4849 RESEAT_P non-zero means if called on a newline in buffer text,
4850 skip to the next visible line start.
4852 Functions get_next_display_element and set_iterator_to_next are
4853 separate because I find this arrangement easier to handle than a
4854 get_next_display_element function that also increments IT's
4855 position. The way it is we can first look at an iterator's current
4856 display element, decide whether it fits on a line, and if it does,
4857 increment the iterator position. The other way around we probably
4858 would either need a flag indicating whether the iterator has to be
4859 incremented the next time, or we would have to implement a
4860 decrement position function which would not be easy to write. */
4863 set_iterator_to_next (it
, reseat_p
)
4867 /* Reset flags indicating start and end of a sequence of characters
4868 with box. Reset them at the start of this function because
4869 moving the iterator to a new position might set them. */
4870 it
->start_of_box_run_p
= it
->end_of_box_run_p
= 0;
4872 if (it
->method
== next_element_from_buffer
)
4874 /* The current display element of IT is a character from
4875 current_buffer. Advance in the buffer, and maybe skip over
4876 invisible lines that are so because of selective display. */
4877 if (ITERATOR_AT_END_OF_LINE_P (it
) && reseat_p
)
4878 reseat_at_next_visible_line_start (it
, 0);
4881 xassert (it
->len
!= 0);
4882 IT_BYTEPOS (*it
) += it
->len
;
4883 IT_CHARPOS (*it
) += 1;
4884 xassert (IT_BYTEPOS (*it
) == CHAR_TO_BYTE (IT_CHARPOS (*it
)));
4887 else if (it
->method
== next_element_from_composition
)
4889 xassert (it
->cmp_id
>= 0 && it
->cmp_id
< n_compositions
);
4890 if (STRINGP (it
->string
))
4892 IT_STRING_BYTEPOS (*it
) += it
->len
;
4893 IT_STRING_CHARPOS (*it
) += it
->cmp_len
;
4894 it
->method
= next_element_from_string
;
4895 goto consider_string_end
;
4899 IT_BYTEPOS (*it
) += it
->len
;
4900 IT_CHARPOS (*it
) += it
->cmp_len
;
4901 it
->method
= next_element_from_buffer
;
4904 else if (it
->method
== next_element_from_c_string
)
4906 /* Current display element of IT is from a C string. */
4907 IT_BYTEPOS (*it
) += it
->len
;
4908 IT_CHARPOS (*it
) += 1;
4910 else if (it
->method
== next_element_from_display_vector
)
4912 /* Current display element of IT is from a display table entry.
4913 Advance in the display table definition. Reset it to null if
4914 end reached, and continue with characters from buffers/
4916 ++it
->current
.dpvec_index
;
4918 /* Restore face of the iterator to what they were before the
4919 display vector entry (these entries may contain faces). */
4920 it
->face_id
= it
->saved_face_id
;
4922 if (it
->dpvec
+ it
->current
.dpvec_index
== it
->dpend
)
4925 it
->method
= next_element_from_c_string
;
4926 else if (STRINGP (it
->string
))
4927 it
->method
= next_element_from_string
;
4929 it
->method
= next_element_from_buffer
;
4932 it
->current
.dpvec_index
= -1;
4934 /* Skip over characters which were displayed via IT->dpvec. */
4935 if (it
->dpvec_char_len
< 0)
4936 reseat_at_next_visible_line_start (it
, 1);
4937 else if (it
->dpvec_char_len
> 0)
4939 it
->len
= it
->dpvec_char_len
;
4940 set_iterator_to_next (it
, reseat_p
);
4944 else if (it
->method
== next_element_from_string
)
4946 /* Current display element is a character from a Lisp string. */
4947 xassert (it
->s
== NULL
&& STRINGP (it
->string
));
4948 IT_STRING_BYTEPOS (*it
) += it
->len
;
4949 IT_STRING_CHARPOS (*it
) += 1;
4951 consider_string_end
:
4953 if (it
->current
.overlay_string_index
>= 0)
4955 /* IT->string is an overlay string. Advance to the
4956 next, if there is one. */
4957 if (IT_STRING_CHARPOS (*it
) >= SCHARS (it
->string
))
4958 next_overlay_string (it
);
4962 /* IT->string is not an overlay string. If we reached
4963 its end, and there is something on IT->stack, proceed
4964 with what is on the stack. This can be either another
4965 string, this time an overlay string, or a buffer. */
4966 if (IT_STRING_CHARPOS (*it
) == SCHARS (it
->string
)
4970 if (!STRINGP (it
->string
))
4971 it
->method
= next_element_from_buffer
;
4973 goto consider_string_end
;
4977 else if (it
->method
== next_element_from_image
4978 || it
->method
== next_element_from_stretch
)
4980 /* The position etc with which we have to proceed are on
4981 the stack. The position may be at the end of a string,
4982 if the `display' property takes up the whole string. */
4985 if (STRINGP (it
->string
))
4987 it
->method
= next_element_from_string
;
4988 goto consider_string_end
;
4991 it
->method
= next_element_from_buffer
;
4994 /* There are no other methods defined, so this should be a bug. */
4997 xassert (it
->method
!= next_element_from_string
4998 || (STRINGP (it
->string
)
4999 && IT_STRING_CHARPOS (*it
) >= 0));
5003 /* Load IT's display element fields with information about the next
5004 display element which comes from a display table entry or from the
5005 result of translating a control character to one of the forms `^C'
5006 or `\003'. IT->dpvec holds the glyphs to return as characters. */
5009 next_element_from_display_vector (it
)
5013 xassert (it
->dpvec
&& it
->current
.dpvec_index
>= 0);
5015 /* Remember the current face id in case glyphs specify faces.
5016 IT's face is restored in set_iterator_to_next. */
5017 it
->saved_face_id
= it
->face_id
;
5019 if (INTEGERP (*it
->dpvec
)
5020 && GLYPH_CHAR_VALID_P (XFASTINT (*it
->dpvec
)))
5025 g
= XFASTINT (it
->dpvec
[it
->current
.dpvec_index
]);
5026 it
->c
= FAST_GLYPH_CHAR (g
);
5027 it
->len
= CHAR_BYTES (it
->c
);
5029 /* The entry may contain a face id to use. Such a face id is
5030 the id of a Lisp face, not a realized face. A face id of
5031 zero means no face is specified. */
5032 lface_id
= FAST_GLYPH_FACE (g
);
5035 /* The function returns -1 if lface_id is invalid. */
5036 int face_id
= ascii_face_of_lisp_face (it
->f
, lface_id
);
5038 it
->face_id
= face_id
;
5042 /* Display table entry is invalid. Return a space. */
5043 it
->c
= ' ', it
->len
= 1;
5045 /* Don't change position and object of the iterator here. They are
5046 still the values of the character that had this display table
5047 entry or was translated, and that's what we want. */
5048 it
->what
= IT_CHARACTER
;
5053 /* Load IT with the next display element from Lisp string IT->string.
5054 IT->current.string_pos is the current position within the string.
5055 If IT->current.overlay_string_index >= 0, the Lisp string is an
5059 next_element_from_string (it
)
5062 struct text_pos position
;
5064 xassert (STRINGP (it
->string
));
5065 xassert (IT_STRING_CHARPOS (*it
) >= 0);
5066 position
= it
->current
.string_pos
;
5068 /* Time to check for invisible text? */
5069 if (IT_STRING_CHARPOS (*it
) < it
->end_charpos
5070 && IT_STRING_CHARPOS (*it
) == it
->stop_charpos
)
5074 /* Since a handler may have changed IT->method, we must
5076 return get_next_display_element (it
);
5079 if (it
->current
.overlay_string_index
>= 0)
5081 /* Get the next character from an overlay string. In overlay
5082 strings, There is no field width or padding with spaces to
5084 if (IT_STRING_CHARPOS (*it
) >= SCHARS (it
->string
))
5089 else if (STRING_MULTIBYTE (it
->string
))
5091 int remaining
= SBYTES (it
->string
) - IT_STRING_BYTEPOS (*it
);
5092 const unsigned char *s
= (SDATA (it
->string
)
5093 + IT_STRING_BYTEPOS (*it
));
5094 it
->c
= string_char_and_length (s
, remaining
, &it
->len
);
5098 it
->c
= SREF (it
->string
, IT_STRING_BYTEPOS (*it
));
5104 /* Get the next character from a Lisp string that is not an
5105 overlay string. Such strings come from the mode line, for
5106 example. We may have to pad with spaces, or truncate the
5107 string. See also next_element_from_c_string. */
5108 if (IT_STRING_CHARPOS (*it
) >= it
->end_charpos
)
5113 else if (IT_STRING_CHARPOS (*it
) >= it
->string_nchars
)
5115 /* Pad with spaces. */
5116 it
->c
= ' ', it
->len
= 1;
5117 CHARPOS (position
) = BYTEPOS (position
) = -1;
5119 else if (STRING_MULTIBYTE (it
->string
))
5121 int maxlen
= SBYTES (it
->string
) - IT_STRING_BYTEPOS (*it
);
5122 const unsigned char *s
= (SDATA (it
->string
)
5123 + IT_STRING_BYTEPOS (*it
));
5124 it
->c
= string_char_and_length (s
, maxlen
, &it
->len
);
5128 it
->c
= SREF (it
->string
, IT_STRING_BYTEPOS (*it
));
5133 /* Record what we have and where it came from. Note that we store a
5134 buffer position in IT->position although it could arguably be a
5136 it
->what
= IT_CHARACTER
;
5137 it
->object
= it
->string
;
5138 it
->position
= position
;
5143 /* Load IT with next display element from C string IT->s.
5144 IT->string_nchars is the maximum number of characters to return
5145 from the string. IT->end_charpos may be greater than
5146 IT->string_nchars when this function is called, in which case we
5147 may have to return padding spaces. Value is zero if end of string
5148 reached, including padding spaces. */
5151 next_element_from_c_string (it
)
5157 it
->what
= IT_CHARACTER
;
5158 BYTEPOS (it
->position
) = CHARPOS (it
->position
) = 0;
5161 /* IT's position can be greater IT->string_nchars in case a field
5162 width or precision has been specified when the iterator was
5164 if (IT_CHARPOS (*it
) >= it
->end_charpos
)
5166 /* End of the game. */
5170 else if (IT_CHARPOS (*it
) >= it
->string_nchars
)
5172 /* Pad with spaces. */
5173 it
->c
= ' ', it
->len
= 1;
5174 BYTEPOS (it
->position
) = CHARPOS (it
->position
) = -1;
5176 else if (it
->multibyte_p
)
5178 /* Implementation note: The calls to strlen apparently aren't a
5179 performance problem because there is no noticeable performance
5180 difference between Emacs running in unibyte or multibyte mode. */
5181 int maxlen
= strlen (it
->s
) - IT_BYTEPOS (*it
);
5182 it
->c
= string_char_and_length (it
->s
+ IT_BYTEPOS (*it
),
5186 it
->c
= it
->s
[IT_BYTEPOS (*it
)], it
->len
= 1;
5192 /* Set up IT to return characters from an ellipsis, if appropriate.
5193 The definition of the ellipsis glyphs may come from a display table
5194 entry. This function Fills IT with the first glyph from the
5195 ellipsis if an ellipsis is to be displayed. */
5198 next_element_from_ellipsis (it
)
5201 if (it
->selective_display_ellipsis_p
)
5203 if (it
->dp
&& VECTORP (DISP_INVIS_VECTOR (it
->dp
)))
5205 /* Use the display table definition for `...'. Invalid glyphs
5206 will be handled by the method returning elements from dpvec. */
5207 struct Lisp_Vector
*v
= XVECTOR (DISP_INVIS_VECTOR (it
->dp
));
5208 it
->dpvec_char_len
= it
->len
;
5209 it
->dpvec
= v
->contents
;
5210 it
->dpend
= v
->contents
+ v
->size
;
5211 it
->current
.dpvec_index
= 0;
5212 it
->method
= next_element_from_display_vector
;
5216 /* Use default `...' which is stored in default_invis_vector. */
5217 it
->dpvec_char_len
= it
->len
;
5218 it
->dpvec
= default_invis_vector
;
5219 it
->dpend
= default_invis_vector
+ 3;
5220 it
->current
.dpvec_index
= 0;
5221 it
->method
= next_element_from_display_vector
;
5226 /* The face at the current position may be different from the
5227 face we find after the invisible text. Remember what it
5228 was in IT->saved_face_id, and signal that it's there by
5229 setting face_before_selective_p. */
5230 it
->saved_face_id
= it
->face_id
;
5231 it
->method
= next_element_from_buffer
;
5232 reseat_at_next_visible_line_start (it
, 1);
5233 it
->face_before_selective_p
= 1;
5236 return get_next_display_element (it
);
5240 /* Deliver an image display element. The iterator IT is already
5241 filled with image information (done in handle_display_prop). Value
5246 next_element_from_image (it
)
5249 it
->what
= IT_IMAGE
;
5254 /* Fill iterator IT with next display element from a stretch glyph
5255 property. IT->object is the value of the text property. Value is
5259 next_element_from_stretch (it
)
5262 it
->what
= IT_STRETCH
;
5267 /* Load IT with the next display element from current_buffer. Value
5268 is zero if end of buffer reached. IT->stop_charpos is the next
5269 position at which to stop and check for text properties or buffer
5273 next_element_from_buffer (it
)
5278 /* Check this assumption, otherwise, we would never enter the
5279 if-statement, below. */
5280 xassert (IT_CHARPOS (*it
) >= BEGV
5281 && IT_CHARPOS (*it
) <= it
->stop_charpos
);
5283 if (IT_CHARPOS (*it
) >= it
->stop_charpos
)
5285 if (IT_CHARPOS (*it
) >= it
->end_charpos
)
5287 int overlay_strings_follow_p
;
5289 /* End of the game, except when overlay strings follow that
5290 haven't been returned yet. */
5291 if (it
->overlay_strings_at_end_processed_p
)
5292 overlay_strings_follow_p
= 0;
5295 it
->overlay_strings_at_end_processed_p
= 1;
5296 overlay_strings_follow_p
= get_overlay_strings (it
, 0);
5299 if (overlay_strings_follow_p
)
5300 success_p
= get_next_display_element (it
);
5304 it
->position
= it
->current
.pos
;
5311 return get_next_display_element (it
);
5316 /* No face changes, overlays etc. in sight, so just return a
5317 character from current_buffer. */
5320 /* Maybe run the redisplay end trigger hook. Performance note:
5321 This doesn't seem to cost measurable time. */
5322 if (it
->redisplay_end_trigger_charpos
5324 && IT_CHARPOS (*it
) >= it
->redisplay_end_trigger_charpos
)
5325 run_redisplay_end_trigger_hook (it
);
5327 /* Get the next character, maybe multibyte. */
5328 p
= BYTE_POS_ADDR (IT_BYTEPOS (*it
));
5329 if (it
->multibyte_p
&& !ASCII_BYTE_P (*p
))
5331 int maxlen
= ((IT_BYTEPOS (*it
) >= GPT_BYTE
? ZV_BYTE
: GPT_BYTE
)
5332 - IT_BYTEPOS (*it
));
5333 it
->c
= string_char_and_length (p
, maxlen
, &it
->len
);
5336 it
->c
= *p
, it
->len
= 1;
5338 /* Record what we have and where it came from. */
5339 it
->what
= IT_CHARACTER
;;
5340 it
->object
= it
->w
->buffer
;
5341 it
->position
= it
->current
.pos
;
5343 /* Normally we return the character found above, except when we
5344 really want to return an ellipsis for selective display. */
5349 /* A value of selective > 0 means hide lines indented more
5350 than that number of columns. */
5351 if (it
->selective
> 0
5352 && IT_CHARPOS (*it
) + 1 < ZV
5353 && indented_beyond_p (IT_CHARPOS (*it
) + 1,
5354 IT_BYTEPOS (*it
) + 1,
5355 (double) it
->selective
)) /* iftc */
5357 success_p
= next_element_from_ellipsis (it
);
5358 it
->dpvec_char_len
= -1;
5361 else if (it
->c
== '\r' && it
->selective
== -1)
5363 /* A value of selective == -1 means that everything from the
5364 CR to the end of the line is invisible, with maybe an
5365 ellipsis displayed for it. */
5366 success_p
= next_element_from_ellipsis (it
);
5367 it
->dpvec_char_len
= -1;
5372 /* Value is zero if end of buffer reached. */
5373 xassert (!success_p
|| it
->what
!= IT_CHARACTER
|| it
->len
> 0);
5378 /* Run the redisplay end trigger hook for IT. */
5381 run_redisplay_end_trigger_hook (it
)
5384 Lisp_Object args
[3];
5386 /* IT->glyph_row should be non-null, i.e. we should be actually
5387 displaying something, or otherwise we should not run the hook. */
5388 xassert (it
->glyph_row
);
5390 /* Set up hook arguments. */
5391 args
[0] = Qredisplay_end_trigger_functions
;
5392 args
[1] = it
->window
;
5393 XSETINT (args
[2], it
->redisplay_end_trigger_charpos
);
5394 it
->redisplay_end_trigger_charpos
= 0;
5396 /* Since we are *trying* to run these functions, don't try to run
5397 them again, even if they get an error. */
5398 it
->w
->redisplay_end_trigger
= Qnil
;
5399 Frun_hook_with_args (3, args
);
5401 /* Notice if it changed the face of the character we are on. */
5402 handle_face_prop (it
);
5406 /* Deliver a composition display element. The iterator IT is already
5407 filled with composition information (done in
5408 handle_composition_prop). Value is always 1. */
5411 next_element_from_composition (it
)
5414 it
->what
= IT_COMPOSITION
;
5415 it
->position
= (STRINGP (it
->string
)
5416 ? it
->current
.string_pos
5423 /***********************************************************************
5424 Moving an iterator without producing glyphs
5425 ***********************************************************************/
5427 /* Move iterator IT to a specified buffer or X position within one
5428 line on the display without producing glyphs.
5430 OP should be a bit mask including some or all of these bits:
5431 MOVE_TO_X: Stop on reaching x-position TO_X.
5432 MOVE_TO_POS: Stop on reaching buffer or string position TO_CHARPOS.
5433 Regardless of OP's value, stop in reaching the end of the display line.
5435 TO_X is normally a value 0 <= TO_X <= IT->last_visible_x.
5436 This means, in particular, that TO_X includes window's horizontal
5439 The return value has several possible values that
5440 say what condition caused the scan to stop:
5442 MOVE_POS_MATCH_OR_ZV
5443 - when TO_POS or ZV was reached.
5446 -when TO_X was reached before TO_POS or ZV were reached.
5449 - when we reached the end of the display area and the line must
5453 - when we reached the end of the display area and the line is
5457 - when we stopped at a line end, i.e. a newline or a CR and selective
5460 static enum move_it_result
5461 move_it_in_display_line_to (it
, to_charpos
, to_x
, op
)
5463 int to_charpos
, to_x
, op
;
5465 enum move_it_result result
= MOVE_UNDEFINED
;
5466 struct glyph_row
*saved_glyph_row
;
5468 /* Don't produce glyphs in produce_glyphs. */
5469 saved_glyph_row
= it
->glyph_row
;
5470 it
->glyph_row
= NULL
;
5474 int x
, i
, ascent
= 0, descent
= 0;
5476 /* Stop when ZV or TO_CHARPOS reached. */
5477 if (!get_next_display_element (it
)
5478 || ((op
& MOVE_TO_POS
) != 0
5479 && BUFFERP (it
->object
)
5480 && IT_CHARPOS (*it
) >= to_charpos
))
5482 result
= MOVE_POS_MATCH_OR_ZV
;
5486 /* The call to produce_glyphs will get the metrics of the
5487 display element IT is loaded with. We record in x the
5488 x-position before this display element in case it does not
5492 /* Remember the line height so far in case the next element doesn't
5494 if (!it
->truncate_lines_p
)
5496 ascent
= it
->max_ascent
;
5497 descent
= it
->max_descent
;
5500 PRODUCE_GLYPHS (it
);
5502 if (it
->area
!= TEXT_AREA
)
5504 set_iterator_to_next (it
, 1);
5508 /* The number of glyphs we get back in IT->nglyphs will normally
5509 be 1 except when IT->c is (i) a TAB, or (ii) a multi-glyph
5510 character on a terminal frame, or (iii) a line end. For the
5511 second case, IT->nglyphs - 1 padding glyphs will be present
5512 (on X frames, there is only one glyph produced for a
5513 composite character.
5515 The behavior implemented below means, for continuation lines,
5516 that as many spaces of a TAB as fit on the current line are
5517 displayed there. For terminal frames, as many glyphs of a
5518 multi-glyph character are displayed in the current line, too.
5519 This is what the old redisplay code did, and we keep it that
5520 way. Under X, the whole shape of a complex character must
5521 fit on the line or it will be completely displayed in the
5524 Note that both for tabs and padding glyphs, all glyphs have
5528 /* More than one glyph or glyph doesn't fit on line. All
5529 glyphs have the same width. */
5530 int single_glyph_width
= it
->pixel_width
/ it
->nglyphs
;
5533 for (i
= 0; i
< it
->nglyphs
; ++i
, x
= new_x
)
5535 new_x
= x
+ single_glyph_width
;
5537 /* We want to leave anything reaching TO_X to the caller. */
5538 if ((op
& MOVE_TO_X
) && new_x
> to_x
)
5541 result
= MOVE_X_REACHED
;
5544 else if (/* Lines are continued. */
5545 !it
->truncate_lines_p
5546 && (/* And glyph doesn't fit on the line. */
5547 new_x
> it
->last_visible_x
5548 /* Or it fits exactly and we're on a window
5550 || (new_x
== it
->last_visible_x
5551 && FRAME_WINDOW_P (it
->f
))))
5553 if (/* IT->hpos == 0 means the very first glyph
5554 doesn't fit on the line, e.g. a wide image. */
5556 || (new_x
== it
->last_visible_x
5557 && FRAME_WINDOW_P (it
->f
)))
5560 it
->current_x
= new_x
;
5561 if (i
== it
->nglyphs
- 1)
5562 set_iterator_to_next (it
, 1);
5567 it
->max_ascent
= ascent
;
5568 it
->max_descent
= descent
;
5571 TRACE_MOVE ((stderr
, "move_it_in: continued at %d\n",
5573 result
= MOVE_LINE_CONTINUED
;
5576 else if (new_x
> it
->first_visible_x
)
5578 /* Glyph is visible. Increment number of glyphs that
5579 would be displayed. */
5584 /* Glyph is completely off the left margin of the display
5585 area. Nothing to do. */
5589 if (result
!= MOVE_UNDEFINED
)
5592 else if ((op
& MOVE_TO_X
) && it
->current_x
>= to_x
)
5594 /* Stop when TO_X specified and reached. This check is
5595 necessary here because of lines consisting of a line end,
5596 only. The line end will not produce any glyphs and we
5597 would never get MOVE_X_REACHED. */
5598 xassert (it
->nglyphs
== 0);
5599 result
= MOVE_X_REACHED
;
5603 /* Is this a line end? If yes, we're done. */
5604 if (ITERATOR_AT_END_OF_LINE_P (it
))
5606 result
= MOVE_NEWLINE_OR_CR
;
5610 /* The current display element has been consumed. Advance
5612 set_iterator_to_next (it
, 1);
5614 /* Stop if lines are truncated and IT's current x-position is
5615 past the right edge of the window now. */
5616 if (it
->truncate_lines_p
5617 && it
->current_x
>= it
->last_visible_x
)
5619 result
= MOVE_LINE_TRUNCATED
;
5624 /* Restore the iterator settings altered at the beginning of this
5626 it
->glyph_row
= saved_glyph_row
;
5631 /* Move IT forward until it satisfies one or more of the criteria in
5632 TO_CHARPOS, TO_X, TO_Y, and TO_VPOS.
5634 OP is a bit-mask that specifies where to stop, and in particular,
5635 which of those four position arguments makes a difference. See the
5636 description of enum move_operation_enum.
5638 If TO_CHARPOS is in invisible text, e.g. a truncated part of a
5639 screen line, this function will set IT to the next position >
5643 move_it_to (it
, to_charpos
, to_x
, to_y
, to_vpos
, op
)
5645 int to_charpos
, to_x
, to_y
, to_vpos
;
5648 enum move_it_result skip
, skip2
= MOVE_X_REACHED
;
5654 if (op
& MOVE_TO_VPOS
)
5656 /* If no TO_CHARPOS and no TO_X specified, stop at the
5657 start of the line TO_VPOS. */
5658 if ((op
& (MOVE_TO_X
| MOVE_TO_POS
)) == 0)
5660 if (it
->vpos
== to_vpos
)
5666 skip
= move_it_in_display_line_to (it
, -1, -1, 0);
5670 /* TO_VPOS >= 0 means stop at TO_X in the line at
5671 TO_VPOS, or at TO_POS, whichever comes first. */
5672 if (it
->vpos
== to_vpos
)
5678 skip
= move_it_in_display_line_to (it
, to_charpos
, to_x
, op
);
5680 if (skip
== MOVE_POS_MATCH_OR_ZV
|| it
->vpos
== to_vpos
)
5685 else if (skip
== MOVE_X_REACHED
&& it
->vpos
!= to_vpos
)
5687 /* We have reached TO_X but not in the line we want. */
5688 skip
= move_it_in_display_line_to (it
, to_charpos
,
5690 if (skip
== MOVE_POS_MATCH_OR_ZV
)
5698 else if (op
& MOVE_TO_Y
)
5700 struct it it_backup
;
5702 /* TO_Y specified means stop at TO_X in the line containing
5703 TO_Y---or at TO_CHARPOS if this is reached first. The
5704 problem is that we can't really tell whether the line
5705 contains TO_Y before we have completely scanned it, and
5706 this may skip past TO_X. What we do is to first scan to
5709 If TO_X is not specified, use a TO_X of zero. The reason
5710 is to make the outcome of this function more predictable.
5711 If we didn't use TO_X == 0, we would stop at the end of
5712 the line which is probably not what a caller would expect
5714 skip
= move_it_in_display_line_to (it
, to_charpos
,
5718 | (op
& MOVE_TO_POS
)));
5720 /* If TO_CHARPOS is reached or ZV, we don't have to do more. */
5721 if (skip
== MOVE_POS_MATCH_OR_ZV
)
5727 /* If TO_X was reached, we would like to know whether TO_Y
5728 is in the line. This can only be said if we know the
5729 total line height which requires us to scan the rest of
5731 if (skip
== MOVE_X_REACHED
)
5734 TRACE_MOVE ((stderr
, "move_it: from %d\n", IT_CHARPOS (*it
)));
5735 skip2
= move_it_in_display_line_to (it
, to_charpos
, -1,
5737 TRACE_MOVE ((stderr
, "move_it: to %d\n", IT_CHARPOS (*it
)));
5740 /* Now, decide whether TO_Y is in this line. */
5741 line_height
= it
->max_ascent
+ it
->max_descent
;
5742 TRACE_MOVE ((stderr
, "move_it: line_height = %d\n", line_height
));
5744 if (to_y
>= it
->current_y
5745 && to_y
< it
->current_y
+ line_height
)
5747 if (skip
== MOVE_X_REACHED
)
5748 /* If TO_Y is in this line and TO_X was reached above,
5749 we scanned too far. We have to restore IT's settings
5750 to the ones before skipping. */
5754 else if (skip
== MOVE_X_REACHED
)
5757 if (skip
== MOVE_POS_MATCH_OR_ZV
)
5765 skip
= move_it_in_display_line_to (it
, to_charpos
, -1, MOVE_TO_POS
);
5769 case MOVE_POS_MATCH_OR_ZV
:
5773 case MOVE_NEWLINE_OR_CR
:
5774 set_iterator_to_next (it
, 1);
5775 it
->continuation_lines_width
= 0;
5778 case MOVE_LINE_TRUNCATED
:
5779 it
->continuation_lines_width
= 0;
5780 reseat_at_next_visible_line_start (it
, 0);
5781 if ((op
& MOVE_TO_POS
) != 0
5782 && IT_CHARPOS (*it
) > to_charpos
)
5789 case MOVE_LINE_CONTINUED
:
5790 it
->continuation_lines_width
+= it
->current_x
;
5797 /* Reset/increment for the next run. */
5798 recenter_overlay_lists (current_buffer
, IT_CHARPOS (*it
));
5799 it
->current_x
= it
->hpos
= 0;
5800 it
->current_y
+= it
->max_ascent
+ it
->max_descent
;
5802 last_height
= it
->max_ascent
+ it
->max_descent
;
5803 last_max_ascent
= it
->max_ascent
;
5804 it
->max_ascent
= it
->max_descent
= 0;
5809 TRACE_MOVE ((stderr
, "move_it_to: reached %d\n", reached
));
5813 /* Move iterator IT backward by a specified y-distance DY, DY >= 0.
5815 If DY > 0, move IT backward at least that many pixels. DY = 0
5816 means move IT backward to the preceding line start or BEGV. This
5817 function may move over more than DY pixels if IT->current_y - DY
5818 ends up in the middle of a line; in this case IT->current_y will be
5819 set to the top of the line moved to. */
5822 move_it_vertically_backward (it
, dy
)
5828 int start_pos
= IT_CHARPOS (*it
);
5832 /* Estimate how many newlines we must move back. */
5833 nlines
= max (1, dy
/ FRAME_LINE_HEIGHT (it
->f
));
5835 /* Set the iterator's position that many lines back. */
5836 while (nlines
-- && IT_CHARPOS (*it
) > BEGV
)
5837 back_to_previous_visible_line_start (it
);
5839 /* Reseat the iterator here. When moving backward, we don't want
5840 reseat to skip forward over invisible text, set up the iterator
5841 to deliver from overlay strings at the new position etc. So,
5842 use reseat_1 here. */
5843 reseat_1 (it
, it
->current
.pos
, 1);
5845 /* We are now surely at a line start. */
5846 it
->current_x
= it
->hpos
= 0;
5847 it
->continuation_lines_width
= 0;
5849 /* Move forward and see what y-distance we moved. First move to the
5850 start of the next line so that we get its height. We need this
5851 height to be able to tell whether we reached the specified
5854 it2
.max_ascent
= it2
.max_descent
= 0;
5855 move_it_to (&it2
, start_pos
, -1, -1, it2
.vpos
+ 1,
5856 MOVE_TO_POS
| MOVE_TO_VPOS
);
5857 xassert (IT_CHARPOS (*it
) >= BEGV
);
5860 move_it_to (&it2
, start_pos
, -1, -1, -1, MOVE_TO_POS
);
5861 xassert (IT_CHARPOS (*it
) >= BEGV
);
5862 /* H is the actual vertical distance from the position in *IT
5863 and the starting position. */
5864 h
= it2
.current_y
- it
->current_y
;
5865 /* NLINES is the distance in number of lines. */
5866 nlines
= it2
.vpos
- it
->vpos
;
5868 /* Correct IT's y and vpos position
5869 so that they are relative to the starting point. */
5875 /* DY == 0 means move to the start of the screen line. The
5876 value of nlines is > 0 if continuation lines were involved. */
5878 move_it_by_lines (it
, nlines
, 1);
5879 xassert (IT_CHARPOS (*it
) <= start_pos
);
5883 /* The y-position we try to reach, relative to *IT.
5884 Note that H has been subtracted in front of the if-statement. */
5885 int target_y
= it
->current_y
+ h
- dy
;
5886 int y0
= it3
.current_y
;
5887 int y1
= line_bottom_y (&it3
);
5888 int line_height
= y1
- y0
;
5890 /* If we did not reach target_y, try to move further backward if
5891 we can. If we moved too far backward, try to move forward. */
5892 if (target_y
< it
->current_y
5893 /* This is heuristic. In a window that's 3 lines high, with
5894 a line height of 13 pixels each, recentering with point
5895 on the bottom line will try to move -39/2 = 19 pixels
5896 backward. Try to avoid moving into the first line. */
5897 && it
->current_y
- target_y
> line_height
/ 3 * 2
5898 && IT_CHARPOS (*it
) > BEGV
)
5900 TRACE_MOVE ((stderr
, " not far enough -> move_vert %d\n",
5901 target_y
- it
->current_y
));
5902 move_it_vertically (it
, target_y
- it
->current_y
);
5903 xassert (IT_CHARPOS (*it
) >= BEGV
);
5905 else if (target_y
>= it
->current_y
+ line_height
5906 && IT_CHARPOS (*it
) < ZV
)
5908 /* Should move forward by at least one line, maybe more.
5910 Note: Calling move_it_by_lines can be expensive on
5911 terminal frames, where compute_motion is used (via
5912 vmotion) to do the job, when there are very long lines
5913 and truncate-lines is nil. That's the reason for
5914 treating terminal frames specially here. */
5916 if (!FRAME_WINDOW_P (it
->f
))
5917 move_it_vertically (it
, target_y
- (it
->current_y
+ line_height
));
5922 move_it_by_lines (it
, 1, 1);
5924 while (target_y
>= line_bottom_y (it
) && IT_CHARPOS (*it
) < ZV
);
5927 xassert (IT_CHARPOS (*it
) >= BEGV
);
5933 /* Move IT by a specified amount of pixel lines DY. DY negative means
5934 move backwards. DY = 0 means move to start of screen line. At the
5935 end, IT will be on the start of a screen line. */
5938 move_it_vertically (it
, dy
)
5943 move_it_vertically_backward (it
, -dy
);
5946 TRACE_MOVE ((stderr
, "move_it_v: from %d, %d\n", IT_CHARPOS (*it
), dy
));
5947 move_it_to (it
, ZV
, -1, it
->current_y
+ dy
, -1,
5948 MOVE_TO_POS
| MOVE_TO_Y
);
5949 TRACE_MOVE ((stderr
, "move_it_v: to %d\n", IT_CHARPOS (*it
)));
5951 /* If buffer ends in ZV without a newline, move to the start of
5952 the line to satisfy the post-condition. */
5953 if (IT_CHARPOS (*it
) == ZV
5954 && FETCH_BYTE (IT_BYTEPOS (*it
) - 1) != '\n')
5955 move_it_by_lines (it
, 0, 0);
5960 /* Move iterator IT past the end of the text line it is in. */
5963 move_it_past_eol (it
)
5966 enum move_it_result rc
;
5968 rc
= move_it_in_display_line_to (it
, Z
, 0, MOVE_TO_POS
);
5969 if (rc
== MOVE_NEWLINE_OR_CR
)
5970 set_iterator_to_next (it
, 0);
5974 #if 0 /* Currently not used. */
5976 /* Return non-zero if some text between buffer positions START_CHARPOS
5977 and END_CHARPOS is invisible. IT->window is the window for text
5981 invisible_text_between_p (it
, start_charpos
, end_charpos
)
5983 int start_charpos
, end_charpos
;
5985 Lisp_Object prop
, limit
;
5986 int invisible_found_p
;
5988 xassert (it
!= NULL
&& start_charpos
<= end_charpos
);
5990 /* Is text at START invisible? */
5991 prop
= Fget_char_property (make_number (start_charpos
), Qinvisible
,
5993 if (TEXT_PROP_MEANS_INVISIBLE (prop
))
5994 invisible_found_p
= 1;
5997 limit
= Fnext_single_char_property_change (make_number (start_charpos
),
5999 make_number (end_charpos
));
6000 invisible_found_p
= XFASTINT (limit
) < end_charpos
;
6003 return invisible_found_p
;
6009 /* Move IT by a specified number DVPOS of screen lines down. DVPOS
6010 negative means move up. DVPOS == 0 means move to the start of the
6011 screen line. NEED_Y_P non-zero means calculate IT->current_y. If
6012 NEED_Y_P is zero, IT->current_y will be left unchanged.
6014 Further optimization ideas: If we would know that IT->f doesn't use
6015 a face with proportional font, we could be faster for
6016 truncate-lines nil. */
6019 move_it_by_lines (it
, dvpos
, need_y_p
)
6021 int dvpos
, need_y_p
;
6023 struct position pos
;
6025 if (!FRAME_WINDOW_P (it
->f
))
6027 struct text_pos textpos
;
6029 /* We can use vmotion on frames without proportional fonts. */
6030 pos
= *vmotion (IT_CHARPOS (*it
), dvpos
, it
->w
);
6031 SET_TEXT_POS (textpos
, pos
.bufpos
, pos
.bytepos
);
6032 reseat (it
, textpos
, 1);
6033 it
->vpos
+= pos
.vpos
;
6034 it
->current_y
+= pos
.vpos
;
6036 else if (dvpos
== 0)
6038 /* DVPOS == 0 means move to the start of the screen line. */
6039 move_it_vertically_backward (it
, 0);
6040 xassert (it
->current_x
== 0 && it
->hpos
== 0);
6043 move_it_to (it
, -1, -1, -1, it
->vpos
+ dvpos
, MOVE_TO_VPOS
);
6047 int start_charpos
, i
;
6049 /* Start at the beginning of the screen line containing IT's
6051 move_it_vertically_backward (it
, 0);
6053 /* Go back -DVPOS visible lines and reseat the iterator there. */
6054 start_charpos
= IT_CHARPOS (*it
);
6055 for (i
= -dvpos
; i
&& IT_CHARPOS (*it
) > BEGV
; --i
)
6056 back_to_previous_visible_line_start (it
);
6057 reseat (it
, it
->current
.pos
, 1);
6058 it
->current_x
= it
->hpos
= 0;
6060 /* Above call may have moved too far if continuation lines
6061 are involved. Scan forward and see if it did. */
6063 it2
.vpos
= it2
.current_y
= 0;
6064 move_it_to (&it2
, start_charpos
, -1, -1, -1, MOVE_TO_POS
);
6065 it
->vpos
-= it2
.vpos
;
6066 it
->current_y
-= it2
.current_y
;
6067 it
->current_x
= it
->hpos
= 0;
6069 /* If we moved too far, move IT some lines forward. */
6070 if (it2
.vpos
> -dvpos
)
6072 int delta
= it2
.vpos
+ dvpos
;
6073 move_it_to (it
, -1, -1, -1, it
->vpos
+ delta
, MOVE_TO_VPOS
);
6078 /* Return 1 if IT points into the middle of a display vector. */
6081 in_display_vector_p (it
)
6084 return (it
->method
== next_element_from_display_vector
6085 && it
->current
.dpvec_index
> 0
6086 && it
->dpvec
+ it
->current
.dpvec_index
!= it
->dpend
);
6090 /***********************************************************************
6092 ***********************************************************************/
6095 /* Add a message with format string FORMAT and arguments ARG1 and ARG2
6099 add_to_log (format
, arg1
, arg2
)
6101 Lisp_Object arg1
, arg2
;
6103 Lisp_Object args
[3];
6104 Lisp_Object msg
, fmt
;
6107 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
6109 /* Do nothing if called asynchronously. Inserting text into
6110 a buffer may call after-change-functions and alike and
6111 that would means running Lisp asynchronously. */
6112 if (handling_signal
)
6116 GCPRO4 (fmt
, msg
, arg1
, arg2
);
6118 args
[0] = fmt
= build_string (format
);
6121 msg
= Fformat (3, args
);
6123 len
= SBYTES (msg
) + 1;
6124 buffer
= (char *) alloca (len
);
6125 bcopy (SDATA (msg
), buffer
, len
);
6127 message_dolog (buffer
, len
- 1, 1, 0);
6132 /* Output a newline in the *Messages* buffer if "needs" one. */
6135 message_log_maybe_newline ()
6137 if (message_log_need_newline
)
6138 message_dolog ("", 0, 1, 0);
6142 /* Add a string M of length NBYTES to the message log, optionally
6143 terminated with a newline when NLFLAG is non-zero. MULTIBYTE, if
6144 nonzero, means interpret the contents of M as multibyte. This
6145 function calls low-level routines in order to bypass text property
6146 hooks, etc. which might not be safe to run. */
6149 message_dolog (m
, nbytes
, nlflag
, multibyte
)
6151 int nbytes
, nlflag
, multibyte
;
6153 if (!NILP (Vmemory_full
))
6156 if (!NILP (Vmessage_log_max
))
6158 struct buffer
*oldbuf
;
6159 Lisp_Object oldpoint
, oldbegv
, oldzv
;
6160 int old_windows_or_buffers_changed
= windows_or_buffers_changed
;
6161 int point_at_end
= 0;
6163 Lisp_Object old_deactivate_mark
, tem
;
6164 struct gcpro gcpro1
;
6166 old_deactivate_mark
= Vdeactivate_mark
;
6167 oldbuf
= current_buffer
;
6168 Fset_buffer (Fget_buffer_create (Vmessages_buffer_name
));
6169 current_buffer
->undo_list
= Qt
;
6171 oldpoint
= message_dolog_marker1
;
6172 set_marker_restricted (oldpoint
, make_number (PT
), Qnil
);
6173 oldbegv
= message_dolog_marker2
;
6174 set_marker_restricted (oldbegv
, make_number (BEGV
), Qnil
);
6175 oldzv
= message_dolog_marker3
;
6176 set_marker_restricted (oldzv
, make_number (ZV
), Qnil
);
6177 GCPRO1 (old_deactivate_mark
);
6185 BEGV_BYTE
= BEG_BYTE
;
6188 TEMP_SET_PT_BOTH (Z
, Z_BYTE
);
6190 /* Insert the string--maybe converting multibyte to single byte
6191 or vice versa, so that all the text fits the buffer. */
6193 && NILP (current_buffer
->enable_multibyte_characters
))
6195 int i
, c
, char_bytes
;
6196 unsigned char work
[1];
6198 /* Convert a multibyte string to single-byte
6199 for the *Message* buffer. */
6200 for (i
= 0; i
< nbytes
; i
+= char_bytes
)
6202 c
= string_char_and_length (m
+ i
, nbytes
- i
, &char_bytes
);
6203 work
[0] = (SINGLE_BYTE_CHAR_P (c
)
6205 : multibyte_char_to_unibyte (c
, Qnil
));
6206 insert_1_both (work
, 1, 1, 1, 0, 0);
6209 else if (! multibyte
6210 && ! NILP (current_buffer
->enable_multibyte_characters
))
6212 int i
, c
, char_bytes
;
6213 unsigned char *msg
= (unsigned char *) m
;
6214 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
6215 /* Convert a single-byte string to multibyte
6216 for the *Message* buffer. */
6217 for (i
= 0; i
< nbytes
; i
++)
6219 c
= unibyte_char_to_multibyte (msg
[i
]);
6220 char_bytes
= CHAR_STRING (c
, str
);
6221 insert_1_both (str
, 1, char_bytes
, 1, 0, 0);
6225 insert_1 (m
, nbytes
, 1, 0, 0);
6229 int this_bol
, this_bol_byte
, prev_bol
, prev_bol_byte
, dup
;
6230 insert_1 ("\n", 1, 1, 0, 0);
6232 scan_newline (Z
, Z_BYTE
, BEG
, BEG_BYTE
, -2, 0);
6234 this_bol_byte
= PT_BYTE
;
6236 /* See if this line duplicates the previous one.
6237 If so, combine duplicates. */
6240 scan_newline (PT
, PT_BYTE
, BEG
, BEG_BYTE
, -2, 0);
6242 prev_bol_byte
= PT_BYTE
;
6244 dup
= message_log_check_duplicate (prev_bol
, prev_bol_byte
,
6245 this_bol
, this_bol_byte
);
6248 del_range_both (prev_bol
, prev_bol_byte
,
6249 this_bol
, this_bol_byte
, 0);
6255 /* If you change this format, don't forget to also
6256 change message_log_check_duplicate. */
6257 sprintf (dupstr
, " [%d times]", dup
);
6258 duplen
= strlen (dupstr
);
6259 TEMP_SET_PT_BOTH (Z
- 1, Z_BYTE
- 1);
6260 insert_1 (dupstr
, duplen
, 1, 0, 1);
6265 /* If we have more than the desired maximum number of lines
6266 in the *Messages* buffer now, delete the oldest ones.
6267 This is safe because we don't have undo in this buffer. */
6269 if (NATNUMP (Vmessage_log_max
))
6271 scan_newline (Z
, Z_BYTE
, BEG
, BEG_BYTE
,
6272 -XFASTINT (Vmessage_log_max
) - 1, 0);
6273 del_range_both (BEG
, BEG_BYTE
, PT
, PT_BYTE
, 0);
6276 BEGV
= XMARKER (oldbegv
)->charpos
;
6277 BEGV_BYTE
= marker_byte_position (oldbegv
);
6286 ZV
= XMARKER (oldzv
)->charpos
;
6287 ZV_BYTE
= marker_byte_position (oldzv
);
6291 TEMP_SET_PT_BOTH (Z
, Z_BYTE
);
6293 /* We can't do Fgoto_char (oldpoint) because it will run some
6295 TEMP_SET_PT_BOTH (XMARKER (oldpoint
)->charpos
,
6296 XMARKER (oldpoint
)->bytepos
);
6299 unchain_marker (oldpoint
);
6300 unchain_marker (oldbegv
);
6301 unchain_marker (oldzv
);
6303 tem
= Fget_buffer_window (Fcurrent_buffer (), Qt
);
6304 set_buffer_internal (oldbuf
);
6306 windows_or_buffers_changed
= old_windows_or_buffers_changed
;
6307 message_log_need_newline
= !nlflag
;
6308 Vdeactivate_mark
= old_deactivate_mark
;
6313 /* We are at the end of the buffer after just having inserted a newline.
6314 (Note: We depend on the fact we won't be crossing the gap.)
6315 Check to see if the most recent message looks a lot like the previous one.
6316 Return 0 if different, 1 if the new one should just replace it, or a
6317 value N > 1 if we should also append " [N times]". */
6320 message_log_check_duplicate (prev_bol
, prev_bol_byte
, this_bol
, this_bol_byte
)
6321 int prev_bol
, this_bol
;
6322 int prev_bol_byte
, this_bol_byte
;
6325 int len
= Z_BYTE
- 1 - this_bol_byte
;
6327 unsigned char *p1
= BUF_BYTE_ADDRESS (current_buffer
, prev_bol_byte
);
6328 unsigned char *p2
= BUF_BYTE_ADDRESS (current_buffer
, this_bol_byte
);
6330 for (i
= 0; i
< len
; i
++)
6332 if (i
>= 3 && p1
[i
-3] == '.' && p1
[i
-2] == '.' && p1
[i
-1] == '.')
6340 if (*p1
++ == ' ' && *p1
++ == '[')
6343 while (*p1
>= '0' && *p1
<= '9')
6344 n
= n
* 10 + *p1
++ - '0';
6345 if (strncmp (p1
, " times]\n", 8) == 0)
6352 /* Display an echo area message M with a specified length of NBYTES
6353 bytes. The string may include null characters. If M is 0, clear
6354 out any existing message, and let the mini-buffer text show
6357 The buffer M must continue to exist until after the echo area gets
6358 cleared or some other message gets displayed there. This means do
6359 not pass text that is stored in a Lisp string; do not pass text in
6360 a buffer that was alloca'd. */
6363 message2 (m
, nbytes
, multibyte
)
6368 /* First flush out any partial line written with print. */
6369 message_log_maybe_newline ();
6371 message_dolog (m
, nbytes
, 1, multibyte
);
6372 message2_nolog (m
, nbytes
, multibyte
);
6376 /* The non-logging counterpart of message2. */
6379 message2_nolog (m
, nbytes
, multibyte
)
6381 int nbytes
, multibyte
;
6383 struct frame
*sf
= SELECTED_FRAME ();
6384 message_enable_multibyte
= multibyte
;
6388 if (noninteractive_need_newline
)
6389 putc ('\n', stderr
);
6390 noninteractive_need_newline
= 0;
6392 fwrite (m
, nbytes
, 1, stderr
);
6393 if (cursor_in_echo_area
== 0)
6394 fprintf (stderr
, "\n");
6397 /* A null message buffer means that the frame hasn't really been
6398 initialized yet. Error messages get reported properly by
6399 cmd_error, so this must be just an informative message; toss it. */
6400 else if (INTERACTIVE
6401 && sf
->glyphs_initialized_p
6402 && FRAME_MESSAGE_BUF (sf
))
6404 Lisp_Object mini_window
;
6407 /* Get the frame containing the mini-buffer
6408 that the selected frame is using. */
6409 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
6410 f
= XFRAME (WINDOW_FRAME (XWINDOW (mini_window
)));
6412 FRAME_SAMPLE_VISIBILITY (f
);
6413 if (FRAME_VISIBLE_P (sf
)
6414 && ! FRAME_VISIBLE_P (f
))
6415 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (mini_window
)));
6419 set_message (m
, Qnil
, nbytes
, multibyte
);
6420 if (minibuffer_auto_raise
)
6421 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window
)));
6424 clear_message (1, 1);
6426 do_pending_window_change (0);
6427 echo_area_display (1);
6428 do_pending_window_change (0);
6429 if (frame_up_to_date_hook
!= 0 && ! gc_in_progress
)
6430 (*frame_up_to_date_hook
) (f
);
6435 /* Display an echo area message M with a specified length of NBYTES
6436 bytes. The string may include null characters. If M is not a
6437 string, clear out any existing message, and let the mini-buffer
6438 text show through. */
6441 message3 (m
, nbytes
, multibyte
)
6446 struct gcpro gcpro1
;
6450 /* First flush out any partial line written with print. */
6451 message_log_maybe_newline ();
6453 message_dolog (SDATA (m
), nbytes
, 1, multibyte
);
6454 message3_nolog (m
, nbytes
, multibyte
);
6460 /* The non-logging version of message3. */
6463 message3_nolog (m
, nbytes
, multibyte
)
6465 int nbytes
, multibyte
;
6467 struct frame
*sf
= SELECTED_FRAME ();
6468 message_enable_multibyte
= multibyte
;
6472 if (noninteractive_need_newline
)
6473 putc ('\n', stderr
);
6474 noninteractive_need_newline
= 0;
6476 fwrite (SDATA (m
), nbytes
, 1, stderr
);
6477 if (cursor_in_echo_area
== 0)
6478 fprintf (stderr
, "\n");
6481 /* A null message buffer means that the frame hasn't really been
6482 initialized yet. Error messages get reported properly by
6483 cmd_error, so this must be just an informative message; toss it. */
6484 else if (INTERACTIVE
6485 && sf
->glyphs_initialized_p
6486 && FRAME_MESSAGE_BUF (sf
))
6488 Lisp_Object mini_window
;
6492 /* Get the frame containing the mini-buffer
6493 that the selected frame is using. */
6494 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
6495 frame
= XWINDOW (mini_window
)->frame
;
6498 FRAME_SAMPLE_VISIBILITY (f
);
6499 if (FRAME_VISIBLE_P (sf
)
6500 && !FRAME_VISIBLE_P (f
))
6501 Fmake_frame_visible (frame
);
6503 if (STRINGP (m
) && SCHARS (m
) > 0)
6505 set_message (NULL
, m
, nbytes
, multibyte
);
6506 if (minibuffer_auto_raise
)
6507 Fraise_frame (frame
);
6510 clear_message (1, 1);
6512 do_pending_window_change (0);
6513 echo_area_display (1);
6514 do_pending_window_change (0);
6515 if (frame_up_to_date_hook
!= 0 && ! gc_in_progress
)
6516 (*frame_up_to_date_hook
) (f
);
6521 /* Display a null-terminated echo area message M. If M is 0, clear
6522 out any existing message, and let the mini-buffer text show through.
6524 The buffer M must continue to exist until after the echo area gets
6525 cleared or some other message gets displayed there. Do not pass
6526 text that is stored in a Lisp string. Do not pass text in a buffer
6527 that was alloca'd. */
6533 message2 (m
, (m
? strlen (m
) : 0), 0);
6537 /* The non-logging counterpart of message1. */
6543 message2_nolog (m
, (m
? strlen (m
) : 0), 0);
6546 /* Display a message M which contains a single %s
6547 which gets replaced with STRING. */
6550 message_with_string (m
, string
, log
)
6555 CHECK_STRING (string
);
6561 if (noninteractive_need_newline
)
6562 putc ('\n', stderr
);
6563 noninteractive_need_newline
= 0;
6564 fprintf (stderr
, m
, SDATA (string
));
6565 if (cursor_in_echo_area
== 0)
6566 fprintf (stderr
, "\n");
6570 else if (INTERACTIVE
)
6572 /* The frame whose minibuffer we're going to display the message on.
6573 It may be larger than the selected frame, so we need
6574 to use its buffer, not the selected frame's buffer. */
6575 Lisp_Object mini_window
;
6576 struct frame
*f
, *sf
= SELECTED_FRAME ();
6578 /* Get the frame containing the minibuffer
6579 that the selected frame is using. */
6580 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
6581 f
= XFRAME (WINDOW_FRAME (XWINDOW (mini_window
)));
6583 /* A null message buffer means that the frame hasn't really been
6584 initialized yet. Error messages get reported properly by
6585 cmd_error, so this must be just an informative message; toss it. */
6586 if (FRAME_MESSAGE_BUF (f
))
6588 Lisp_Object args
[2], message
;
6589 struct gcpro gcpro1
, gcpro2
;
6591 args
[0] = build_string (m
);
6592 args
[1] = message
= string
;
6593 GCPRO2 (args
[0], message
);
6596 message
= Fformat (2, args
);
6599 message3 (message
, SBYTES (message
), STRING_MULTIBYTE (message
));
6601 message3_nolog (message
, SBYTES (message
), STRING_MULTIBYTE (message
));
6605 /* Print should start at the beginning of the message
6606 buffer next time. */
6607 message_buf_print
= 0;
6613 /* Dump an informative message to the minibuf. If M is 0, clear out
6614 any existing message, and let the mini-buffer text show through. */
6618 message (m
, a1
, a2
, a3
)
6620 EMACS_INT a1
, a2
, a3
;
6626 if (noninteractive_need_newline
)
6627 putc ('\n', stderr
);
6628 noninteractive_need_newline
= 0;
6629 fprintf (stderr
, m
, a1
, a2
, a3
);
6630 if (cursor_in_echo_area
== 0)
6631 fprintf (stderr
, "\n");
6635 else if (INTERACTIVE
)
6637 /* The frame whose mini-buffer we're going to display the message
6638 on. It may be larger than the selected frame, so we need to
6639 use its buffer, not the selected frame's buffer. */
6640 Lisp_Object mini_window
;
6641 struct frame
*f
, *sf
= SELECTED_FRAME ();
6643 /* Get the frame containing the mini-buffer
6644 that the selected frame is using. */
6645 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
6646 f
= XFRAME (WINDOW_FRAME (XWINDOW (mini_window
)));
6648 /* A null message buffer means that the frame hasn't really been
6649 initialized yet. Error messages get reported properly by
6650 cmd_error, so this must be just an informative message; toss
6652 if (FRAME_MESSAGE_BUF (f
))
6663 len
= doprnt (FRAME_MESSAGE_BUF (f
),
6664 FRAME_MESSAGE_BUF_SIZE (f
), m
, (char *)0, 3, a
);
6666 len
= doprnt (FRAME_MESSAGE_BUF (f
),
6667 FRAME_MESSAGE_BUF_SIZE (f
), m
, (char *)0, 3,
6669 #endif /* NO_ARG_ARRAY */
6671 message2 (FRAME_MESSAGE_BUF (f
), len
, 0);
6676 /* Print should start at the beginning of the message
6677 buffer next time. */
6678 message_buf_print
= 0;
6684 /* The non-logging version of message. */
6687 message_nolog (m
, a1
, a2
, a3
)
6689 EMACS_INT a1
, a2
, a3
;
6691 Lisp_Object old_log_max
;
6692 old_log_max
= Vmessage_log_max
;
6693 Vmessage_log_max
= Qnil
;
6694 message (m
, a1
, a2
, a3
);
6695 Vmessage_log_max
= old_log_max
;
6699 /* Display the current message in the current mini-buffer. This is
6700 only called from error handlers in process.c, and is not time
6706 if (!NILP (echo_area_buffer
[0]))
6709 string
= Fcurrent_message ();
6710 message3 (string
, SBYTES (string
),
6711 !NILP (current_buffer
->enable_multibyte_characters
));
6716 /* Make sure echo area buffers in `echo_buffers' are live.
6717 If they aren't, make new ones. */
6720 ensure_echo_area_buffers ()
6724 for (i
= 0; i
< 2; ++i
)
6725 if (!BUFFERP (echo_buffer
[i
])
6726 || NILP (XBUFFER (echo_buffer
[i
])->name
))
6729 Lisp_Object old_buffer
;
6732 old_buffer
= echo_buffer
[i
];
6733 sprintf (name
, " *Echo Area %d*", i
);
6734 echo_buffer
[i
] = Fget_buffer_create (build_string (name
));
6735 XBUFFER (echo_buffer
[i
])->truncate_lines
= Qnil
;
6737 for (j
= 0; j
< 2; ++j
)
6738 if (EQ (old_buffer
, echo_area_buffer
[j
]))
6739 echo_area_buffer
[j
] = echo_buffer
[i
];
6744 /* Call FN with args A1..A4 with either the current or last displayed
6745 echo_area_buffer as current buffer.
6747 WHICH zero means use the current message buffer
6748 echo_area_buffer[0]. If that is nil, choose a suitable buffer
6749 from echo_buffer[] and clear it.
6751 WHICH > 0 means use echo_area_buffer[1]. If that is nil, choose a
6752 suitable buffer from echo_buffer[] and clear it.
6754 If WHICH < 0, set echo_area_buffer[1] to echo_area_buffer[0], so
6755 that the current message becomes the last displayed one, make
6756 choose a suitable buffer for echo_area_buffer[0], and clear it.
6758 Value is what FN returns. */
6761 with_echo_area_buffer (w
, which
, fn
, a1
, a2
, a3
, a4
)
6764 int (*fn
) P_ ((EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
));
6770 int this_one
, the_other
, clear_buffer_p
, rc
;
6771 int count
= SPECPDL_INDEX ();
6773 /* If buffers aren't live, make new ones. */
6774 ensure_echo_area_buffers ();
6779 this_one
= 0, the_other
= 1;
6781 this_one
= 1, the_other
= 0;
6784 this_one
= 0, the_other
= 1;
6787 /* We need a fresh one in case the current echo buffer equals
6788 the one containing the last displayed echo area message. */
6789 if (!NILP (echo_area_buffer
[this_one
])
6790 && EQ (echo_area_buffer
[this_one
], echo_area_buffer
[the_other
]))
6791 echo_area_buffer
[this_one
] = Qnil
;
6794 /* Choose a suitable buffer from echo_buffer[] is we don't
6796 if (NILP (echo_area_buffer
[this_one
]))
6798 echo_area_buffer
[this_one
]
6799 = (EQ (echo_area_buffer
[the_other
], echo_buffer
[this_one
])
6800 ? echo_buffer
[the_other
]
6801 : echo_buffer
[this_one
]);
6805 buffer
= echo_area_buffer
[this_one
];
6807 /* Don't get confused by reusing the buffer used for echoing
6808 for a different purpose. */
6809 if (echo_kboard
== NULL
&& EQ (buffer
, echo_message_buffer
))
6812 record_unwind_protect (unwind_with_echo_area_buffer
,
6813 with_echo_area_buffer_unwind_data (w
));
6815 /* Make the echo area buffer current. Note that for display
6816 purposes, it is not necessary that the displayed window's buffer
6817 == current_buffer, except for text property lookup. So, let's
6818 only set that buffer temporarily here without doing a full
6819 Fset_window_buffer. We must also change w->pointm, though,
6820 because otherwise an assertions in unshow_buffer fails, and Emacs
6822 set_buffer_internal_1 (XBUFFER (buffer
));
6826 set_marker_both (w
->pointm
, buffer
, BEG
, BEG_BYTE
);
6829 current_buffer
->undo_list
= Qt
;
6830 current_buffer
->read_only
= Qnil
;
6831 specbind (Qinhibit_read_only
, Qt
);
6832 specbind (Qinhibit_modification_hooks
, Qt
);
6834 if (clear_buffer_p
&& Z
> BEG
)
6837 xassert (BEGV
>= BEG
);
6838 xassert (ZV
<= Z
&& ZV
>= BEGV
);
6840 rc
= fn (a1
, a2
, a3
, a4
);
6842 xassert (BEGV
>= BEG
);
6843 xassert (ZV
<= Z
&& ZV
>= BEGV
);
6845 unbind_to (count
, Qnil
);
6850 /* Save state that should be preserved around the call to the function
6851 FN called in with_echo_area_buffer. */
6854 with_echo_area_buffer_unwind_data (w
)
6860 /* Reduce consing by keeping one vector in
6861 Vwith_echo_area_save_vector. */
6862 vector
= Vwith_echo_area_save_vector
;
6863 Vwith_echo_area_save_vector
= Qnil
;
6866 vector
= Fmake_vector (make_number (7), Qnil
);
6868 XSETBUFFER (AREF (vector
, i
), current_buffer
); ++i
;
6869 AREF (vector
, i
) = Vdeactivate_mark
, ++i
;
6870 AREF (vector
, i
) = make_number (windows_or_buffers_changed
), ++i
;
6874 XSETWINDOW (AREF (vector
, i
), w
); ++i
;
6875 AREF (vector
, i
) = w
->buffer
; ++i
;
6876 AREF (vector
, i
) = make_number (XMARKER (w
->pointm
)->charpos
); ++i
;
6877 AREF (vector
, i
) = make_number (XMARKER (w
->pointm
)->bytepos
); ++i
;
6882 for (; i
< end
; ++i
)
6883 AREF (vector
, i
) = Qnil
;
6886 xassert (i
== ASIZE (vector
));
6891 /* Restore global state from VECTOR which was created by
6892 with_echo_area_buffer_unwind_data. */
6895 unwind_with_echo_area_buffer (vector
)
6898 set_buffer_internal_1 (XBUFFER (AREF (vector
, 0)));
6899 Vdeactivate_mark
= AREF (vector
, 1);
6900 windows_or_buffers_changed
= XFASTINT (AREF (vector
, 2));
6902 if (WINDOWP (AREF (vector
, 3)))
6905 Lisp_Object buffer
, charpos
, bytepos
;
6907 w
= XWINDOW (AREF (vector
, 3));
6908 buffer
= AREF (vector
, 4);
6909 charpos
= AREF (vector
, 5);
6910 bytepos
= AREF (vector
, 6);
6913 set_marker_both (w
->pointm
, buffer
,
6914 XFASTINT (charpos
), XFASTINT (bytepos
));
6917 Vwith_echo_area_save_vector
= vector
;
6922 /* Set up the echo area for use by print functions. MULTIBYTE_P
6923 non-zero means we will print multibyte. */
6926 setup_echo_area_for_printing (multibyte_p
)
6929 /* If we can't find an echo area any more, exit. */
6930 if (! FRAME_LIVE_P (XFRAME (selected_frame
)))
6933 ensure_echo_area_buffers ();
6935 if (!message_buf_print
)
6937 /* A message has been output since the last time we printed.
6938 Choose a fresh echo area buffer. */
6939 if (EQ (echo_area_buffer
[1], echo_buffer
[0]))
6940 echo_area_buffer
[0] = echo_buffer
[1];
6942 echo_area_buffer
[0] = echo_buffer
[0];
6944 /* Switch to that buffer and clear it. */
6945 set_buffer_internal (XBUFFER (echo_area_buffer
[0]));
6946 current_buffer
->truncate_lines
= Qnil
;
6950 int count
= SPECPDL_INDEX ();
6951 specbind (Qinhibit_read_only
, Qt
);
6952 /* Note that undo recording is always disabled. */
6954 unbind_to (count
, Qnil
);
6956 TEMP_SET_PT_BOTH (BEG
, BEG_BYTE
);
6958 /* Set up the buffer for the multibyteness we need. */
6960 != !NILP (current_buffer
->enable_multibyte_characters
))
6961 Fset_buffer_multibyte (multibyte_p
? Qt
: Qnil
);
6963 /* Raise the frame containing the echo area. */
6964 if (minibuffer_auto_raise
)
6966 struct frame
*sf
= SELECTED_FRAME ();
6967 Lisp_Object mini_window
;
6968 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
6969 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window
)));
6972 message_log_maybe_newline ();
6973 message_buf_print
= 1;
6977 if (NILP (echo_area_buffer
[0]))
6979 if (EQ (echo_area_buffer
[1], echo_buffer
[0]))
6980 echo_area_buffer
[0] = echo_buffer
[1];
6982 echo_area_buffer
[0] = echo_buffer
[0];
6985 if (current_buffer
!= XBUFFER (echo_area_buffer
[0]))
6987 /* Someone switched buffers between print requests. */
6988 set_buffer_internal (XBUFFER (echo_area_buffer
[0]));
6989 current_buffer
->truncate_lines
= Qnil
;
6995 /* Display an echo area message in window W. Value is non-zero if W's
6996 height is changed. If display_last_displayed_message_p is
6997 non-zero, display the message that was last displayed, otherwise
6998 display the current message. */
7001 display_echo_area (w
)
7004 int i
, no_message_p
, window_height_changed_p
, count
;
7006 /* Temporarily disable garbage collections while displaying the echo
7007 area. This is done because a GC can print a message itself.
7008 That message would modify the echo area buffer's contents while a
7009 redisplay of the buffer is going on, and seriously confuse
7011 count
= inhibit_garbage_collection ();
7013 /* If there is no message, we must call display_echo_area_1
7014 nevertheless because it resizes the window. But we will have to
7015 reset the echo_area_buffer in question to nil at the end because
7016 with_echo_area_buffer will sets it to an empty buffer. */
7017 i
= display_last_displayed_message_p
? 1 : 0;
7018 no_message_p
= NILP (echo_area_buffer
[i
]);
7020 window_height_changed_p
7021 = with_echo_area_buffer (w
, display_last_displayed_message_p
,
7022 display_echo_area_1
,
7023 (EMACS_INT
) w
, Qnil
, 0, 0);
7026 echo_area_buffer
[i
] = Qnil
;
7028 unbind_to (count
, Qnil
);
7029 return window_height_changed_p
;
7033 /* Helper for display_echo_area. Display the current buffer which
7034 contains the current echo area message in window W, a mini-window,
7035 a pointer to which is passed in A1. A2..A4 are currently not used.
7036 Change the height of W so that all of the message is displayed.
7037 Value is non-zero if height of W was changed. */
7040 display_echo_area_1 (a1
, a2
, a3
, a4
)
7045 struct window
*w
= (struct window
*) a1
;
7047 struct text_pos start
;
7048 int window_height_changed_p
= 0;
7050 /* Do this before displaying, so that we have a large enough glyph
7051 matrix for the display. */
7052 window_height_changed_p
= resize_mini_window (w
, 0);
7055 clear_glyph_matrix (w
->desired_matrix
);
7056 XSETWINDOW (window
, w
);
7057 SET_TEXT_POS (start
, BEG
, BEG_BYTE
);
7058 try_window (window
, start
);
7060 return window_height_changed_p
;
7064 /* Resize the echo area window to exactly the size needed for the
7065 currently displayed message, if there is one. If a mini-buffer
7066 is active, don't shrink it. */
7069 resize_echo_area_exactly ()
7071 if (BUFFERP (echo_area_buffer
[0])
7072 && WINDOWP (echo_area_window
))
7074 struct window
*w
= XWINDOW (echo_area_window
);
7076 Lisp_Object resize_exactly
;
7078 if (minibuf_level
== 0)
7079 resize_exactly
= Qt
;
7081 resize_exactly
= Qnil
;
7083 resized_p
= with_echo_area_buffer (w
, 0, resize_mini_window_1
,
7084 (EMACS_INT
) w
, resize_exactly
, 0, 0);
7087 ++windows_or_buffers_changed
;
7088 ++update_mode_lines
;
7089 redisplay_internal (0);
7095 /* Callback function for with_echo_area_buffer, when used from
7096 resize_echo_area_exactly. A1 contains a pointer to the window to
7097 resize, EXACTLY non-nil means resize the mini-window exactly to the
7098 size of the text displayed. A3 and A4 are not used. Value is what
7099 resize_mini_window returns. */
7102 resize_mini_window_1 (a1
, exactly
, a3
, a4
)
7104 Lisp_Object exactly
;
7107 return resize_mini_window ((struct window
*) a1
, !NILP (exactly
));
7111 /* Resize mini-window W to fit the size of its contents. EXACT:P
7112 means size the window exactly to the size needed. Otherwise, it's
7113 only enlarged until W's buffer is empty. Value is non-zero if
7114 the window height has been changed. */
7117 resize_mini_window (w
, exact_p
)
7121 struct frame
*f
= XFRAME (w
->frame
);
7122 int window_height_changed_p
= 0;
7124 xassert (MINI_WINDOW_P (w
));
7126 /* Don't resize windows while redisplaying a window; it would
7127 confuse redisplay functions when the size of the window they are
7128 displaying changes from under them. Such a resizing can happen,
7129 for instance, when which-func prints a long message while
7130 we are running fontification-functions. We're running these
7131 functions with safe_call which binds inhibit-redisplay to t. */
7132 if (!NILP (Vinhibit_redisplay
))
7135 /* Nil means don't try to resize. */
7136 if (NILP (Vresize_mini_windows
)
7137 || (FRAME_X_P (f
) && FRAME_X_OUTPUT (f
) == NULL
))
7140 if (!FRAME_MINIBUF_ONLY_P (f
))
7143 struct window
*root
= XWINDOW (FRAME_ROOT_WINDOW (f
));
7144 int total_height
= WINDOW_TOTAL_LINES (root
) + WINDOW_TOTAL_LINES (w
);
7145 int height
, max_height
;
7146 int unit
= FRAME_LINE_HEIGHT (f
);
7147 struct text_pos start
;
7148 struct buffer
*old_current_buffer
= NULL
;
7150 if (current_buffer
!= XBUFFER (w
->buffer
))
7152 old_current_buffer
= current_buffer
;
7153 set_buffer_internal (XBUFFER (w
->buffer
));
7156 init_iterator (&it
, w
, BEGV
, BEGV_BYTE
, NULL
, DEFAULT_FACE_ID
);
7158 /* Compute the max. number of lines specified by the user. */
7159 if (FLOATP (Vmax_mini_window_height
))
7160 max_height
= XFLOATINT (Vmax_mini_window_height
) * FRAME_LINES (f
);
7161 else if (INTEGERP (Vmax_mini_window_height
))
7162 max_height
= XINT (Vmax_mini_window_height
);
7164 max_height
= total_height
/ 4;
7166 /* Correct that max. height if it's bogus. */
7167 max_height
= max (1, max_height
);
7168 max_height
= min (total_height
, max_height
);
7170 /* Find out the height of the text in the window. */
7171 if (it
.truncate_lines_p
)
7176 move_it_to (&it
, ZV
, -1, -1, -1, MOVE_TO_POS
);
7177 if (it
.max_ascent
== 0 && it
.max_descent
== 0)
7178 height
= it
.current_y
+ last_height
;
7180 height
= it
.current_y
+ it
.max_ascent
+ it
.max_descent
;
7181 height
-= it
.extra_line_spacing
;
7182 height
= (height
+ unit
- 1) / unit
;
7185 /* Compute a suitable window start. */
7186 if (height
> max_height
)
7188 height
= max_height
;
7189 init_iterator (&it
, w
, PT
, PT_BYTE
, NULL
, DEFAULT_FACE_ID
);
7190 move_it_vertically_backward (&it
, (height
- 1) * unit
);
7191 start
= it
.current
.pos
;
7194 SET_TEXT_POS (start
, BEGV
, BEGV_BYTE
);
7195 SET_MARKER_FROM_TEXT_POS (w
->start
, start
);
7197 if (EQ (Vresize_mini_windows
, Qgrow_only
))
7199 /* Let it grow only, until we display an empty message, in which
7200 case the window shrinks again. */
7201 if (height
> WINDOW_TOTAL_LINES (w
))
7203 int old_height
= WINDOW_TOTAL_LINES (w
);
7204 freeze_window_starts (f
, 1);
7205 grow_mini_window (w
, height
- WINDOW_TOTAL_LINES (w
));
7206 window_height_changed_p
= WINDOW_TOTAL_LINES (w
) != old_height
;
7208 else if (height
< WINDOW_TOTAL_LINES (w
)
7209 && (exact_p
|| BEGV
== ZV
))
7211 int old_height
= WINDOW_TOTAL_LINES (w
);
7212 freeze_window_starts (f
, 0);
7213 shrink_mini_window (w
);
7214 window_height_changed_p
= WINDOW_TOTAL_LINES (w
) != old_height
;
7219 /* Always resize to exact size needed. */
7220 if (height
> WINDOW_TOTAL_LINES (w
))
7222 int old_height
= WINDOW_TOTAL_LINES (w
);
7223 freeze_window_starts (f
, 1);
7224 grow_mini_window (w
, height
- WINDOW_TOTAL_LINES (w
));
7225 window_height_changed_p
= WINDOW_TOTAL_LINES (w
) != old_height
;
7227 else if (height
< WINDOW_TOTAL_LINES (w
))
7229 int old_height
= WINDOW_TOTAL_LINES (w
);
7230 freeze_window_starts (f
, 0);
7231 shrink_mini_window (w
);
7235 freeze_window_starts (f
, 1);
7236 grow_mini_window (w
, height
- WINDOW_TOTAL_LINES (w
));
7239 window_height_changed_p
= WINDOW_TOTAL_LINES (w
) != old_height
;
7243 if (old_current_buffer
)
7244 set_buffer_internal (old_current_buffer
);
7247 return window_height_changed_p
;
7251 /* Value is the current message, a string, or nil if there is no
7259 if (NILP (echo_area_buffer
[0]))
7263 with_echo_area_buffer (0, 0, current_message_1
,
7264 (EMACS_INT
) &msg
, Qnil
, 0, 0);
7266 echo_area_buffer
[0] = Qnil
;
7274 current_message_1 (a1
, a2
, a3
, a4
)
7279 Lisp_Object
*msg
= (Lisp_Object
*) a1
;
7282 *msg
= make_buffer_string (BEG
, Z
, 1);
7289 /* Push the current message on Vmessage_stack for later restauration
7290 by restore_message. Value is non-zero if the current message isn't
7291 empty. This is a relatively infrequent operation, so it's not
7292 worth optimizing. */
7298 msg
= current_message ();
7299 Vmessage_stack
= Fcons (msg
, Vmessage_stack
);
7300 return STRINGP (msg
);
7304 /* Restore message display from the top of Vmessage_stack. */
7311 xassert (CONSP (Vmessage_stack
));
7312 msg
= XCAR (Vmessage_stack
);
7314 message3_nolog (msg
, SBYTES (msg
), STRING_MULTIBYTE (msg
));
7316 message3_nolog (msg
, 0, 0);
7320 /* Handler for record_unwind_protect calling pop_message. */
7323 pop_message_unwind (dummy
)
7330 /* Pop the top-most entry off Vmessage_stack. */
7335 xassert (CONSP (Vmessage_stack
));
7336 Vmessage_stack
= XCDR (Vmessage_stack
);
7340 /* Check that Vmessage_stack is nil. Called from emacs.c when Emacs
7341 exits. If the stack is not empty, we have a missing pop_message
7345 check_message_stack ()
7347 if (!NILP (Vmessage_stack
))
7352 /* Truncate to NCHARS what will be displayed in the echo area the next
7353 time we display it---but don't redisplay it now. */
7356 truncate_echo_area (nchars
)
7360 echo_area_buffer
[0] = Qnil
;
7361 /* A null message buffer means that the frame hasn't really been
7362 initialized yet. Error messages get reported properly by
7363 cmd_error, so this must be just an informative message; toss it. */
7364 else if (!noninteractive
7366 && !NILP (echo_area_buffer
[0]))
7368 struct frame
*sf
= SELECTED_FRAME ();
7369 if (FRAME_MESSAGE_BUF (sf
))
7370 with_echo_area_buffer (0, 0, truncate_message_1
, nchars
, Qnil
, 0, 0);
7375 /* Helper function for truncate_echo_area. Truncate the current
7376 message to at most NCHARS characters. */
7379 truncate_message_1 (nchars
, a2
, a3
, a4
)
7384 if (BEG
+ nchars
< Z
)
7385 del_range (BEG
+ nchars
, Z
);
7387 echo_area_buffer
[0] = Qnil
;
7392 /* Set the current message to a substring of S or STRING.
7394 If STRING is a Lisp string, set the message to the first NBYTES
7395 bytes from STRING. NBYTES zero means use the whole string. If
7396 STRING is multibyte, the message will be displayed multibyte.
7398 If S is not null, set the message to the first LEN bytes of S. LEN
7399 zero means use the whole string. MULTIBYTE_P non-zero means S is
7400 multibyte. Display the message multibyte in that case. */
7403 set_message (s
, string
, nbytes
, multibyte_p
)
7406 int nbytes
, multibyte_p
;
7408 message_enable_multibyte
7409 = ((s
&& multibyte_p
)
7410 || (STRINGP (string
) && STRING_MULTIBYTE (string
)));
7412 with_echo_area_buffer (0, -1, set_message_1
,
7413 (EMACS_INT
) s
, string
, nbytes
, multibyte_p
);
7414 message_buf_print
= 0;
7415 help_echo_showing_p
= 0;
7419 /* Helper function for set_message. Arguments have the same meaning
7420 as there, with A1 corresponding to S and A2 corresponding to STRING
7421 This function is called with the echo area buffer being
7425 set_message_1 (a1
, a2
, nbytes
, multibyte_p
)
7428 EMACS_INT nbytes
, multibyte_p
;
7430 const char *s
= (const char *) a1
;
7431 Lisp_Object string
= a2
;
7435 /* Change multibyteness of the echo buffer appropriately. */
7436 if (message_enable_multibyte
7437 != !NILP (current_buffer
->enable_multibyte_characters
))
7438 Fset_buffer_multibyte (message_enable_multibyte
? Qt
: Qnil
);
7440 current_buffer
->truncate_lines
= message_truncate_lines
? Qt
: Qnil
;
7442 /* Insert new message at BEG. */
7443 TEMP_SET_PT_BOTH (BEG
, BEG_BYTE
);
7445 if (STRINGP (string
))
7450 nbytes
= SBYTES (string
);
7451 nchars
= string_byte_to_char (string
, nbytes
);
7453 /* This function takes care of single/multibyte conversion. We
7454 just have to ensure that the echo area buffer has the right
7455 setting of enable_multibyte_characters. */
7456 insert_from_string (string
, 0, 0, nchars
, nbytes
, 1);
7461 nbytes
= strlen (s
);
7463 if (multibyte_p
&& NILP (current_buffer
->enable_multibyte_characters
))
7465 /* Convert from multi-byte to single-byte. */
7467 unsigned char work
[1];
7469 /* Convert a multibyte string to single-byte. */
7470 for (i
= 0; i
< nbytes
; i
+= n
)
7472 c
= string_char_and_length (s
+ i
, nbytes
- i
, &n
);
7473 work
[0] = (SINGLE_BYTE_CHAR_P (c
)
7475 : multibyte_char_to_unibyte (c
, Qnil
));
7476 insert_1_both (work
, 1, 1, 1, 0, 0);
7479 else if (!multibyte_p
7480 && !NILP (current_buffer
->enable_multibyte_characters
))
7482 /* Convert from single-byte to multi-byte. */
7484 const unsigned char *msg
= (const unsigned char *) s
;
7485 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
7487 /* Convert a single-byte string to multibyte. */
7488 for (i
= 0; i
< nbytes
; i
++)
7490 c
= unibyte_char_to_multibyte (msg
[i
]);
7491 n
= CHAR_STRING (c
, str
);
7492 insert_1_both (str
, 1, n
, 1, 0, 0);
7496 insert_1 (s
, nbytes
, 1, 0, 0);
7503 /* Clear messages. CURRENT_P non-zero means clear the current
7504 message. LAST_DISPLAYED_P non-zero means clear the message
7508 clear_message (current_p
, last_displayed_p
)
7509 int current_p
, last_displayed_p
;
7513 echo_area_buffer
[0] = Qnil
;
7514 message_cleared_p
= 1;
7517 if (last_displayed_p
)
7518 echo_area_buffer
[1] = Qnil
;
7520 message_buf_print
= 0;
7523 /* Clear garbaged frames.
7525 This function is used where the old redisplay called
7526 redraw_garbaged_frames which in turn called redraw_frame which in
7527 turn called clear_frame. The call to clear_frame was a source of
7528 flickering. I believe a clear_frame is not necessary. It should
7529 suffice in the new redisplay to invalidate all current matrices,
7530 and ensure a complete redisplay of all windows. */
7533 clear_garbaged_frames ()
7537 Lisp_Object tail
, frame
;
7538 int changed_count
= 0;
7540 FOR_EACH_FRAME (tail
, frame
)
7542 struct frame
*f
= XFRAME (frame
);
7544 if (FRAME_VISIBLE_P (f
) && FRAME_GARBAGED_P (f
))
7547 Fredraw_frame (frame
);
7548 clear_current_matrices (f
);
7557 ++windows_or_buffers_changed
;
7562 /* Redisplay the echo area of the selected frame. If UPDATE_FRAME_P
7563 is non-zero update selected_frame. Value is non-zero if the
7564 mini-windows height has been changed. */
7567 echo_area_display (update_frame_p
)
7570 Lisp_Object mini_window
;
7573 int window_height_changed_p
= 0;
7574 struct frame
*sf
= SELECTED_FRAME ();
7576 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
7577 w
= XWINDOW (mini_window
);
7578 f
= XFRAME (WINDOW_FRAME (w
));
7580 /* Don't display if frame is invisible or not yet initialized. */
7581 if (!FRAME_VISIBLE_P (f
) || !f
->glyphs_initialized_p
)
7584 /* The terminal frame is used as the first Emacs frame on the Mac OS. */
7586 #ifdef HAVE_WINDOW_SYSTEM
7587 /* When Emacs starts, selected_frame may be a visible terminal
7588 frame, even if we run under a window system. If we let this
7589 through, a message would be displayed on the terminal. */
7590 if (EQ (selected_frame
, Vterminal_frame
)
7591 && !NILP (Vwindow_system
))
7593 #endif /* HAVE_WINDOW_SYSTEM */
7596 /* Redraw garbaged frames. */
7598 clear_garbaged_frames ();
7600 if (!NILP (echo_area_buffer
[0]) || minibuf_level
== 0)
7602 echo_area_window
= mini_window
;
7603 window_height_changed_p
= display_echo_area (w
);
7604 w
->must_be_updated_p
= 1;
7606 /* Update the display, unless called from redisplay_internal.
7607 Also don't update the screen during redisplay itself. The
7608 update will happen at the end of redisplay, and an update
7609 here could cause confusion. */
7610 if (update_frame_p
&& !redisplaying_p
)
7614 /* If the display update has been interrupted by pending
7615 input, update mode lines in the frame. Due to the
7616 pending input, it might have been that redisplay hasn't
7617 been called, so that mode lines above the echo area are
7618 garbaged. This looks odd, so we prevent it here. */
7619 if (!display_completed
)
7620 n
= redisplay_mode_lines (FRAME_ROOT_WINDOW (f
), 0);
7622 if (window_height_changed_p
7623 /* Don't do this if Emacs is shutting down. Redisplay
7624 needs to run hooks. */
7625 && !NILP (Vrun_hooks
))
7627 /* Must update other windows. Likewise as in other
7628 cases, don't let this update be interrupted by
7630 int count
= SPECPDL_INDEX ();
7631 specbind (Qredisplay_dont_pause
, Qt
);
7632 windows_or_buffers_changed
= 1;
7633 redisplay_internal (0);
7634 unbind_to (count
, Qnil
);
7636 else if (FRAME_WINDOW_P (f
) && n
== 0)
7638 /* Window configuration is the same as before.
7639 Can do with a display update of the echo area,
7640 unless we displayed some mode lines. */
7641 update_single_window (w
, 1);
7642 rif
->flush_display (f
);
7645 update_frame (f
, 1, 1);
7647 /* If cursor is in the echo area, make sure that the next
7648 redisplay displays the minibuffer, so that the cursor will
7649 be replaced with what the minibuffer wants. */
7650 if (cursor_in_echo_area
)
7651 ++windows_or_buffers_changed
;
7654 else if (!EQ (mini_window
, selected_window
))
7655 windows_or_buffers_changed
++;
7657 /* Last displayed message is now the current message. */
7658 echo_area_buffer
[1] = echo_area_buffer
[0];
7660 /* Prevent redisplay optimization in redisplay_internal by resetting
7661 this_line_start_pos. This is done because the mini-buffer now
7662 displays the message instead of its buffer text. */
7663 if (EQ (mini_window
, selected_window
))
7664 CHARPOS (this_line_start_pos
) = 0;
7666 return window_height_changed_p
;
7671 /***********************************************************************
7673 ***********************************************************************/
7676 /* The frame title buffering code is also used by Fformat_mode_line.
7677 So it is not conditioned by HAVE_WINDOW_SYSTEM. */
7679 /* A buffer for constructing frame titles in it; allocated from the
7680 heap in init_xdisp and resized as needed in store_frame_title_char. */
7682 static char *frame_title_buf
;
7684 /* The buffer's end, and a current output position in it. */
7686 static char *frame_title_buf_end
;
7687 static char *frame_title_ptr
;
7690 /* Store a single character C for the frame title in frame_title_buf.
7691 Re-allocate frame_title_buf if necessary. */
7695 store_frame_title_char (char c
)
7697 store_frame_title_char (c
)
7701 /* If output position has reached the end of the allocated buffer,
7702 double the buffer's size. */
7703 if (frame_title_ptr
== frame_title_buf_end
)
7705 int len
= frame_title_ptr
- frame_title_buf
;
7706 int new_size
= 2 * len
* sizeof *frame_title_buf
;
7707 frame_title_buf
= (char *) xrealloc (frame_title_buf
, new_size
);
7708 frame_title_buf_end
= frame_title_buf
+ new_size
;
7709 frame_title_ptr
= frame_title_buf
+ len
;
7712 *frame_title_ptr
++ = c
;
7716 /* Store part of a frame title in frame_title_buf, beginning at
7717 frame_title_ptr. STR is the string to store. Do not copy
7718 characters that yield more columns than PRECISION; PRECISION <= 0
7719 means copy the whole string. Pad with spaces until FIELD_WIDTH
7720 number of characters have been copied; FIELD_WIDTH <= 0 means don't
7721 pad. Called from display_mode_element when it is used to build a
7725 store_frame_title (str
, field_width
, precision
)
7726 const unsigned char *str
;
7727 int field_width
, precision
;
7732 /* Copy at most PRECISION chars from STR. */
7733 nbytes
= strlen (str
);
7734 n
+= c_string_width (str
, nbytes
, precision
, &dummy
, &nbytes
);
7736 store_frame_title_char (*str
++);
7738 /* Fill up with spaces until FIELD_WIDTH reached. */
7739 while (field_width
> 0
7742 store_frame_title_char (' ');
7749 #ifdef HAVE_WINDOW_SYSTEM
7751 /* Set the title of FRAME, if it has changed. The title format is
7752 Vicon_title_format if FRAME is iconified, otherwise it is
7753 frame_title_format. */
7756 x_consider_frame_title (frame
)
7759 struct frame
*f
= XFRAME (frame
);
7761 if (FRAME_WINDOW_P (f
)
7762 || FRAME_MINIBUF_ONLY_P (f
)
7763 || f
->explicit_name
)
7765 /* Do we have more than one visible frame on this X display? */
7768 struct buffer
*obuf
;
7772 for (tail
= Vframe_list
; CONSP (tail
); tail
= XCDR (tail
))
7774 Lisp_Object other_frame
= XCAR (tail
);
7775 struct frame
*tf
= XFRAME (other_frame
);
7778 && FRAME_KBOARD (tf
) == FRAME_KBOARD (f
)
7779 && !FRAME_MINIBUF_ONLY_P (tf
)
7780 && !EQ (other_frame
, tip_frame
)
7781 && (FRAME_VISIBLE_P (tf
) || FRAME_ICONIFIED_P (tf
)))
7785 /* Set global variable indicating that multiple frames exist. */
7786 multiple_frames
= CONSP (tail
);
7788 /* Switch to the buffer of selected window of the frame. Set up
7789 frame_title_ptr so that display_mode_element will output into it;
7790 then display the title. */
7791 obuf
= current_buffer
;
7792 set_buffer_internal_1 (XBUFFER (XWINDOW (f
->selected_window
)->buffer
));
7793 fmt
= FRAME_ICONIFIED_P (f
) ? Vicon_title_format
: Vframe_title_format
;
7794 frame_title_ptr
= frame_title_buf
;
7795 init_iterator (&it
, XWINDOW (f
->selected_window
), -1, -1,
7796 NULL
, DEFAULT_FACE_ID
);
7797 display_mode_element (&it
, 0, -1, -1, fmt
, Qnil
, 0);
7798 len
= frame_title_ptr
- frame_title_buf
;
7799 frame_title_ptr
= NULL
;
7800 set_buffer_internal_1 (obuf
);
7802 /* Set the title only if it's changed. This avoids consing in
7803 the common case where it hasn't. (If it turns out that we've
7804 already wasted too much time by walking through the list with
7805 display_mode_element, then we might need to optimize at a
7806 higher level than this.) */
7807 if (! STRINGP (f
->name
)
7808 || SBYTES (f
->name
) != len
7809 || bcmp (frame_title_buf
, SDATA (f
->name
), len
) != 0)
7810 x_implicitly_set_name (f
, make_string (frame_title_buf
, len
), Qnil
);
7814 #endif /* not HAVE_WINDOW_SYSTEM */
7819 /***********************************************************************
7821 ***********************************************************************/
7824 /* Prepare for redisplay by updating menu-bar item lists when
7825 appropriate. This can call eval. */
7828 prepare_menu_bars ()
7831 struct gcpro gcpro1
, gcpro2
;
7833 Lisp_Object tooltip_frame
;
7835 #ifdef HAVE_WINDOW_SYSTEM
7836 tooltip_frame
= tip_frame
;
7838 tooltip_frame
= Qnil
;
7841 /* Update all frame titles based on their buffer names, etc. We do
7842 this before the menu bars so that the buffer-menu will show the
7843 up-to-date frame titles. */
7844 #ifdef HAVE_WINDOW_SYSTEM
7845 if (windows_or_buffers_changed
|| update_mode_lines
)
7847 Lisp_Object tail
, frame
;
7849 FOR_EACH_FRAME (tail
, frame
)
7852 if (!EQ (frame
, tooltip_frame
)
7853 && (FRAME_VISIBLE_P (f
) || FRAME_ICONIFIED_P (f
)))
7854 x_consider_frame_title (frame
);
7857 #endif /* HAVE_WINDOW_SYSTEM */
7859 /* Update the menu bar item lists, if appropriate. This has to be
7860 done before any actual redisplay or generation of display lines. */
7861 all_windows
= (update_mode_lines
7862 || buffer_shared
> 1
7863 || windows_or_buffers_changed
);
7866 Lisp_Object tail
, frame
;
7867 int count
= SPECPDL_INDEX ();
7869 record_unwind_protect (Fset_match_data
, Fmatch_data (Qnil
, Qnil
));
7871 FOR_EACH_FRAME (tail
, frame
)
7875 /* Ignore tooltip frame. */
7876 if (EQ (frame
, tooltip_frame
))
7879 /* If a window on this frame changed size, report that to
7880 the user and clear the size-change flag. */
7881 if (FRAME_WINDOW_SIZES_CHANGED (f
))
7883 Lisp_Object functions
;
7885 /* Clear flag first in case we get an error below. */
7886 FRAME_WINDOW_SIZES_CHANGED (f
) = 0;
7887 functions
= Vwindow_size_change_functions
;
7888 GCPRO2 (tail
, functions
);
7890 while (CONSP (functions
))
7892 call1 (XCAR (functions
), frame
);
7893 functions
= XCDR (functions
);
7899 update_menu_bar (f
, 0);
7900 #ifdef HAVE_WINDOW_SYSTEM
7901 update_tool_bar (f
, 0);
7906 unbind_to (count
, Qnil
);
7910 struct frame
*sf
= SELECTED_FRAME ();
7911 update_menu_bar (sf
, 1);
7912 #ifdef HAVE_WINDOW_SYSTEM
7913 update_tool_bar (sf
, 1);
7917 /* Motif needs this. See comment in xmenu.c. Turn it off when
7918 pending_menu_activation is not defined. */
7919 #ifdef USE_X_TOOLKIT
7920 pending_menu_activation
= 0;
7925 /* Update the menu bar item list for frame F. This has to be done
7926 before we start to fill in any display lines, because it can call
7929 If SAVE_MATCH_DATA is non-zero, we must save and restore it here. */
7932 update_menu_bar (f
, save_match_data
)
7934 int save_match_data
;
7937 register struct window
*w
;
7939 /* If called recursively during a menu update, do nothing. This can
7940 happen when, for instance, an activate-menubar-hook causes a
7942 if (inhibit_menubar_update
)
7945 window
= FRAME_SELECTED_WINDOW (f
);
7946 w
= XWINDOW (window
);
7948 #if 0 /* The if statement below this if statement used to include the
7949 condition !NILP (w->update_mode_line), rather than using
7950 update_mode_lines directly, and this if statement may have
7951 been added to make that condition work. Now the if
7952 statement below matches its comment, this isn't needed. */
7953 if (update_mode_lines
)
7954 w
->update_mode_line
= Qt
;
7957 if (FRAME_WINDOW_P (f
)
7959 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
7960 || defined (USE_GTK)
7961 FRAME_EXTERNAL_MENU_BAR (f
)
7963 FRAME_MENU_BAR_LINES (f
) > 0
7965 : FRAME_MENU_BAR_LINES (f
) > 0)
7967 /* If the user has switched buffers or windows, we need to
7968 recompute to reflect the new bindings. But we'll
7969 recompute when update_mode_lines is set too; that means
7970 that people can use force-mode-line-update to request
7971 that the menu bar be recomputed. The adverse effect on
7972 the rest of the redisplay algorithm is about the same as
7973 windows_or_buffers_changed anyway. */
7974 if (windows_or_buffers_changed
7975 /* This used to test w->update_mode_line, but we believe
7976 there is no need to recompute the menu in that case. */
7977 || update_mode_lines
7978 || ((BUF_SAVE_MODIFF (XBUFFER (w
->buffer
))
7979 < BUF_MODIFF (XBUFFER (w
->buffer
)))
7980 != !NILP (w
->last_had_star
))
7981 || ((!NILP (Vtransient_mark_mode
)
7982 && !NILP (XBUFFER (w
->buffer
)->mark_active
))
7983 != !NILP (w
->region_showing
)))
7985 struct buffer
*prev
= current_buffer
;
7986 int count
= SPECPDL_INDEX ();
7988 specbind (Qinhibit_menubar_update
, Qt
);
7990 set_buffer_internal_1 (XBUFFER (w
->buffer
));
7991 if (save_match_data
)
7992 record_unwind_protect (Fset_match_data
, Fmatch_data (Qnil
, Qnil
));
7993 if (NILP (Voverriding_local_map_menu_flag
))
7995 specbind (Qoverriding_terminal_local_map
, Qnil
);
7996 specbind (Qoverriding_local_map
, Qnil
);
7999 /* Run the Lucid hook. */
8000 safe_run_hooks (Qactivate_menubar_hook
);
8002 /* If it has changed current-menubar from previous value,
8003 really recompute the menu-bar from the value. */
8004 if (! NILP (Vlucid_menu_bar_dirty_flag
))
8005 call0 (Qrecompute_lucid_menubar
);
8007 safe_run_hooks (Qmenu_bar_update_hook
);
8008 FRAME_MENU_BAR_ITEMS (f
) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f
));
8010 /* Redisplay the menu bar in case we changed it. */
8011 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
8012 || defined (USE_GTK)
8013 if (FRAME_WINDOW_P (f
)
8014 #if defined (MAC_OS)
8015 /* All frames on Mac OS share the same menubar. So only the
8016 selected frame should be allowed to set it. */
8017 && f
== SELECTED_FRAME ()
8020 set_frame_menubar (f
, 0, 0);
8022 /* On a terminal screen, the menu bar is an ordinary screen
8023 line, and this makes it get updated. */
8024 w
->update_mode_line
= Qt
;
8025 #else /* ! (USE_X_TOOLKIT || HAVE_NTGUI || MAC_OS || USE_GTK) */
8026 /* In the non-toolkit version, the menu bar is an ordinary screen
8027 line, and this makes it get updated. */
8028 w
->update_mode_line
= Qt
;
8029 #endif /* ! (USE_X_TOOLKIT || HAVE_NTGUI || MAC_OS || USE_GTK) */
8031 unbind_to (count
, Qnil
);
8032 set_buffer_internal_1 (prev
);
8039 /***********************************************************************
8041 ***********************************************************************/
8043 #ifdef HAVE_WINDOW_SYSTEM
8046 Nominal cursor position -- where to draw output.
8047 HPOS and VPOS are window relative glyph matrix coordinates.
8048 X and Y are window relative pixel coordinates. */
8050 struct cursor_pos output_cursor
;
8054 Set the global variable output_cursor to CURSOR. All cursor
8055 positions are relative to updated_window. */
8058 set_output_cursor (cursor
)
8059 struct cursor_pos
*cursor
;
8061 output_cursor
.hpos
= cursor
->hpos
;
8062 output_cursor
.vpos
= cursor
->vpos
;
8063 output_cursor
.x
= cursor
->x
;
8064 output_cursor
.y
= cursor
->y
;
8069 Set a nominal cursor position.
8071 HPOS and VPOS are column/row positions in a window glyph matrix. X
8072 and Y are window text area relative pixel positions.
8074 If this is done during an update, updated_window will contain the
8075 window that is being updated and the position is the future output
8076 cursor position for that window. If updated_window is null, use
8077 selected_window and display the cursor at the given position. */
8080 x_cursor_to (vpos
, hpos
, y
, x
)
8081 int vpos
, hpos
, y
, x
;
8085 /* If updated_window is not set, work on selected_window. */
8089 w
= XWINDOW (selected_window
);
8091 /* Set the output cursor. */
8092 output_cursor
.hpos
= hpos
;
8093 output_cursor
.vpos
= vpos
;
8094 output_cursor
.x
= x
;
8095 output_cursor
.y
= y
;
8097 /* If not called as part of an update, really display the cursor.
8098 This will also set the cursor position of W. */
8099 if (updated_window
== NULL
)
8102 display_and_set_cursor (w
, 1, hpos
, vpos
, x
, y
);
8103 if (rif
->flush_display_optional
)
8104 rif
->flush_display_optional (SELECTED_FRAME ());
8109 #endif /* HAVE_WINDOW_SYSTEM */
8112 /***********************************************************************
8114 ***********************************************************************/
8116 #ifdef HAVE_WINDOW_SYSTEM
8118 /* Where the mouse was last time we reported a mouse event. */
8120 FRAME_PTR last_mouse_frame
;
8122 /* Tool-bar item index of the item on which a mouse button was pressed
8125 int last_tool_bar_item
;
8128 /* Update the tool-bar item list for frame F. This has to be done
8129 before we start to fill in any display lines. Called from
8130 prepare_menu_bars. If SAVE_MATCH_DATA is non-zero, we must save
8131 and restore it here. */
8134 update_tool_bar (f
, save_match_data
)
8136 int save_match_data
;
8139 int do_update
= FRAME_EXTERNAL_TOOL_BAR(f
);
8141 int do_update
= WINDOWP (f
->tool_bar_window
)
8142 && WINDOW_TOTAL_LINES (XWINDOW (f
->tool_bar_window
)) > 0;
8150 window
= FRAME_SELECTED_WINDOW (f
);
8151 w
= XWINDOW (window
);
8153 /* If the user has switched buffers or windows, we need to
8154 recompute to reflect the new bindings. But we'll
8155 recompute when update_mode_lines is set too; that means
8156 that people can use force-mode-line-update to request
8157 that the menu bar be recomputed. The adverse effect on
8158 the rest of the redisplay algorithm is about the same as
8159 windows_or_buffers_changed anyway. */
8160 if (windows_or_buffers_changed
8161 || !NILP (w
->update_mode_line
)
8162 || update_mode_lines
8163 || ((BUF_SAVE_MODIFF (XBUFFER (w
->buffer
))
8164 < BUF_MODIFF (XBUFFER (w
->buffer
)))
8165 != !NILP (w
->last_had_star
))
8166 || ((!NILP (Vtransient_mark_mode
)
8167 && !NILP (XBUFFER (w
->buffer
)->mark_active
))
8168 != !NILP (w
->region_showing
)))
8170 struct buffer
*prev
= current_buffer
;
8171 int count
= SPECPDL_INDEX ();
8172 Lisp_Object old_tool_bar
;
8173 struct gcpro gcpro1
;
8175 /* Set current_buffer to the buffer of the selected
8176 window of the frame, so that we get the right local
8178 set_buffer_internal_1 (XBUFFER (w
->buffer
));
8180 /* Save match data, if we must. */
8181 if (save_match_data
)
8182 record_unwind_protect (Fset_match_data
, Fmatch_data (Qnil
, Qnil
));
8184 /* Make sure that we don't accidentally use bogus keymaps. */
8185 if (NILP (Voverriding_local_map_menu_flag
))
8187 specbind (Qoverriding_terminal_local_map
, Qnil
);
8188 specbind (Qoverriding_local_map
, Qnil
);
8191 old_tool_bar
= f
->tool_bar_items
;
8192 GCPRO1 (old_tool_bar
);
8194 /* Build desired tool-bar items from keymaps. */
8197 = tool_bar_items (f
->tool_bar_items
, &f
->n_tool_bar_items
);
8200 /* Redisplay the tool-bar if we changed it. */
8201 if (! NILP (Fequal (old_tool_bar
, f
->tool_bar_items
)))
8202 w
->update_mode_line
= Qt
;
8206 unbind_to (count
, Qnil
);
8207 set_buffer_internal_1 (prev
);
8213 /* Set F->desired_tool_bar_string to a Lisp string representing frame
8214 F's desired tool-bar contents. F->tool_bar_items must have
8215 been set up previously by calling prepare_menu_bars. */
8218 build_desired_tool_bar_string (f
)
8221 int i
, size
, size_needed
;
8222 struct gcpro gcpro1
, gcpro2
, gcpro3
;
8223 Lisp_Object image
, plist
, props
;
8225 image
= plist
= props
= Qnil
;
8226 GCPRO3 (image
, plist
, props
);
8228 /* Prepare F->desired_tool_bar_string. If we can reuse it, do so.
8229 Otherwise, make a new string. */
8231 /* The size of the string we might be able to reuse. */
8232 size
= (STRINGP (f
->desired_tool_bar_string
)
8233 ? SCHARS (f
->desired_tool_bar_string
)
8236 /* We need one space in the string for each image. */
8237 size_needed
= f
->n_tool_bar_items
;
8239 /* Reuse f->desired_tool_bar_string, if possible. */
8240 if (size
< size_needed
|| NILP (f
->desired_tool_bar_string
))
8241 f
->desired_tool_bar_string
= Fmake_string (make_number (size_needed
),
8245 props
= list4 (Qdisplay
, Qnil
, Qmenu_item
, Qnil
);
8246 Fremove_text_properties (make_number (0), make_number (size
),
8247 props
, f
->desired_tool_bar_string
);
8250 /* Put a `display' property on the string for the images to display,
8251 put a `menu_item' property on tool-bar items with a value that
8252 is the index of the item in F's tool-bar item vector. */
8253 for (i
= 0; i
< f
->n_tool_bar_items
; ++i
)
8255 #define PROP(IDX) AREF (f->tool_bar_items, i * TOOL_BAR_ITEM_NSLOTS + (IDX))
8257 int enabled_p
= !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P
));
8258 int selected_p
= !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P
));
8259 int hmargin
, vmargin
, relief
, idx
, end
;
8260 extern Lisp_Object QCrelief
, QCmargin
, QCconversion
, Qimage
;
8262 /* If image is a vector, choose the image according to the
8264 image
= PROP (TOOL_BAR_ITEM_IMAGES
);
8265 if (VECTORP (image
))
8269 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
8270 : TOOL_BAR_IMAGE_ENABLED_DESELECTED
);
8273 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
8274 : TOOL_BAR_IMAGE_DISABLED_DESELECTED
);
8276 xassert (ASIZE (image
) >= idx
);
8277 image
= AREF (image
, idx
);
8282 /* Ignore invalid image specifications. */
8283 if (!valid_image_p (image
))
8286 /* Display the tool-bar button pressed, or depressed. */
8287 plist
= Fcopy_sequence (XCDR (image
));
8289 /* Compute margin and relief to draw. */
8290 relief
= (tool_bar_button_relief
>= 0
8291 ? tool_bar_button_relief
8292 : DEFAULT_TOOL_BAR_BUTTON_RELIEF
);
8293 hmargin
= vmargin
= relief
;
8295 if (INTEGERP (Vtool_bar_button_margin
)
8296 && XINT (Vtool_bar_button_margin
) > 0)
8298 hmargin
+= XFASTINT (Vtool_bar_button_margin
);
8299 vmargin
+= XFASTINT (Vtool_bar_button_margin
);
8301 else if (CONSP (Vtool_bar_button_margin
))
8303 if (INTEGERP (XCAR (Vtool_bar_button_margin
))
8304 && XINT (XCAR (Vtool_bar_button_margin
)) > 0)
8305 hmargin
+= XFASTINT (XCAR (Vtool_bar_button_margin
));
8307 if (INTEGERP (XCDR (Vtool_bar_button_margin
))
8308 && XINT (XCDR (Vtool_bar_button_margin
)) > 0)
8309 vmargin
+= XFASTINT (XCDR (Vtool_bar_button_margin
));
8312 if (auto_raise_tool_bar_buttons_p
)
8314 /* Add a `:relief' property to the image spec if the item is
8318 plist
= Fplist_put (plist
, QCrelief
, make_number (-relief
));
8325 /* If image is selected, display it pressed, i.e. with a
8326 negative relief. If it's not selected, display it with a
8328 plist
= Fplist_put (plist
, QCrelief
,
8330 ? make_number (-relief
)
8331 : make_number (relief
)));
8336 /* Put a margin around the image. */
8337 if (hmargin
|| vmargin
)
8339 if (hmargin
== vmargin
)
8340 plist
= Fplist_put (plist
, QCmargin
, make_number (hmargin
));
8342 plist
= Fplist_put (plist
, QCmargin
,
8343 Fcons (make_number (hmargin
),
8344 make_number (vmargin
)));
8347 /* If button is not enabled, and we don't have special images
8348 for the disabled state, make the image appear disabled by
8349 applying an appropriate algorithm to it. */
8350 if (!enabled_p
&& idx
< 0)
8351 plist
= Fplist_put (plist
, QCconversion
, Qdisabled
);
8353 /* Put a `display' text property on the string for the image to
8354 display. Put a `menu-item' property on the string that gives
8355 the start of this item's properties in the tool-bar items
8357 image
= Fcons (Qimage
, plist
);
8358 props
= list4 (Qdisplay
, image
,
8359 Qmenu_item
, make_number (i
* TOOL_BAR_ITEM_NSLOTS
));
8361 /* Let the last image hide all remaining spaces in the tool bar
8362 string. The string can be longer than needed when we reuse a
8364 if (i
+ 1 == f
->n_tool_bar_items
)
8365 end
= SCHARS (f
->desired_tool_bar_string
);
8368 Fadd_text_properties (make_number (i
), make_number (end
),
8369 props
, f
->desired_tool_bar_string
);
8377 /* Display one line of the tool-bar of frame IT->f. */
8380 display_tool_bar_line (it
)
8383 struct glyph_row
*row
= it
->glyph_row
;
8384 int max_x
= it
->last_visible_x
;
8387 prepare_desired_row (row
);
8388 row
->y
= it
->current_y
;
8390 /* Note that this isn't made use of if the face hasn't a box,
8391 so there's no need to check the face here. */
8392 it
->start_of_box_run_p
= 1;
8394 while (it
->current_x
< max_x
)
8396 int x_before
, x
, n_glyphs_before
, i
, nglyphs
;
8398 /* Get the next display element. */
8399 if (!get_next_display_element (it
))
8402 /* Produce glyphs. */
8403 x_before
= it
->current_x
;
8404 n_glyphs_before
= it
->glyph_row
->used
[TEXT_AREA
];
8405 PRODUCE_GLYPHS (it
);
8407 nglyphs
= it
->glyph_row
->used
[TEXT_AREA
] - n_glyphs_before
;
8412 struct glyph
*glyph
= row
->glyphs
[TEXT_AREA
] + n_glyphs_before
+ i
;
8414 if (x
+ glyph
->pixel_width
> max_x
)
8416 /* Glyph doesn't fit on line. */
8417 it
->glyph_row
->used
[TEXT_AREA
] = n_glyphs_before
+ i
;
8423 x
+= glyph
->pixel_width
;
8427 /* Stop at line ends. */
8428 if (ITERATOR_AT_END_OF_LINE_P (it
))
8431 set_iterator_to_next (it
, 1);
8436 row
->displays_text_p
= row
->used
[TEXT_AREA
] != 0;
8437 extend_face_to_end_of_line (it
);
8438 last
= row
->glyphs
[TEXT_AREA
] + row
->used
[TEXT_AREA
] - 1;
8439 last
->right_box_line_p
= 1;
8440 if (last
== row
->glyphs
[TEXT_AREA
])
8441 last
->left_box_line_p
= 1;
8442 compute_line_metrics (it
);
8444 /* If line is empty, make it occupy the rest of the tool-bar. */
8445 if (!row
->displays_text_p
)
8447 row
->height
= row
->phys_height
= it
->last_visible_y
- row
->y
;
8448 row
->ascent
= row
->phys_ascent
= 0;
8451 row
->full_width_p
= 1;
8452 row
->continued_p
= 0;
8453 row
->truncated_on_left_p
= 0;
8454 row
->truncated_on_right_p
= 0;
8456 it
->current_x
= it
->hpos
= 0;
8457 it
->current_y
+= row
->height
;
8463 /* Value is the number of screen lines needed to make all tool-bar
8464 items of frame F visible. */
8467 tool_bar_lines_needed (f
)
8470 struct window
*w
= XWINDOW (f
->tool_bar_window
);
8473 /* Initialize an iterator for iteration over
8474 F->desired_tool_bar_string in the tool-bar window of frame F. */
8475 init_iterator (&it
, w
, -1, -1, w
->desired_matrix
->rows
, TOOL_BAR_FACE_ID
);
8476 it
.first_visible_x
= 0;
8477 it
.last_visible_x
= FRAME_TOTAL_COLS (f
) * FRAME_COLUMN_WIDTH (f
);
8478 reseat_to_string (&it
, NULL
, f
->desired_tool_bar_string
, 0, 0, 0, -1);
8480 while (!ITERATOR_AT_END_P (&it
))
8482 it
.glyph_row
= w
->desired_matrix
->rows
;
8483 clear_glyph_row (it
.glyph_row
);
8484 display_tool_bar_line (&it
);
8487 return (it
.current_y
+ FRAME_LINE_HEIGHT (f
) - 1) / FRAME_LINE_HEIGHT (f
);
8491 DEFUN ("tool-bar-lines-needed", Ftool_bar_lines_needed
, Stool_bar_lines_needed
,
8493 doc
: /* Return the number of lines occupied by the tool bar of FRAME. */)
8502 frame
= selected_frame
;
8504 CHECK_FRAME (frame
);
8507 if (WINDOWP (f
->tool_bar_window
)
8508 || (w
= XWINDOW (f
->tool_bar_window
),
8509 WINDOW_TOTAL_LINES (w
) > 0))
8511 update_tool_bar (f
, 1);
8512 if (f
->n_tool_bar_items
)
8514 build_desired_tool_bar_string (f
);
8515 nlines
= tool_bar_lines_needed (f
);
8519 return make_number (nlines
);
8523 /* Display the tool-bar of frame F. Value is non-zero if tool-bar's
8524 height should be changed. */
8527 redisplay_tool_bar (f
)
8532 struct glyph_row
*row
;
8533 int change_height_p
= 0;
8536 if (FRAME_EXTERNAL_TOOL_BAR(f
))
8537 update_frame_tool_bar (f
);
8541 /* If frame hasn't a tool-bar window or if it is zero-height, don't
8542 do anything. This means you must start with tool-bar-lines
8543 non-zero to get the auto-sizing effect. Or in other words, you
8544 can turn off tool-bars by specifying tool-bar-lines zero. */
8545 if (!WINDOWP (f
->tool_bar_window
)
8546 || (w
= XWINDOW (f
->tool_bar_window
),
8547 WINDOW_TOTAL_LINES (w
) == 0))
8550 /* Set up an iterator for the tool-bar window. */
8551 init_iterator (&it
, w
, -1, -1, w
->desired_matrix
->rows
, TOOL_BAR_FACE_ID
);
8552 it
.first_visible_x
= 0;
8553 it
.last_visible_x
= FRAME_TOTAL_COLS (f
) * FRAME_COLUMN_WIDTH (f
);
8556 /* Build a string that represents the contents of the tool-bar. */
8557 build_desired_tool_bar_string (f
);
8558 reseat_to_string (&it
, NULL
, f
->desired_tool_bar_string
, 0, 0, 0, -1);
8560 /* Display as many lines as needed to display all tool-bar items. */
8561 while (it
.current_y
< it
.last_visible_y
)
8562 display_tool_bar_line (&it
);
8564 /* It doesn't make much sense to try scrolling in the tool-bar
8565 window, so don't do it. */
8566 w
->desired_matrix
->no_scrolling_p
= 1;
8567 w
->must_be_updated_p
= 1;
8569 if (auto_resize_tool_bars_p
)
8573 /* If we couldn't display everything, change the tool-bar's
8575 if (IT_STRING_CHARPOS (it
) < it
.end_charpos
)
8576 change_height_p
= 1;
8578 /* If there are blank lines at the end, except for a partially
8579 visible blank line at the end that is smaller than
8580 FRAME_LINE_HEIGHT, change the tool-bar's height. */
8581 row
= it
.glyph_row
- 1;
8582 if (!row
->displays_text_p
8583 && row
->height
>= FRAME_LINE_HEIGHT (f
))
8584 change_height_p
= 1;
8586 /* If row displays tool-bar items, but is partially visible,
8587 change the tool-bar's height. */
8588 if (row
->displays_text_p
8589 && MATRIX_ROW_BOTTOM_Y (row
) > it
.last_visible_y
)
8590 change_height_p
= 1;
8592 /* Resize windows as needed by changing the `tool-bar-lines'
8595 && (nlines
= tool_bar_lines_needed (f
),
8596 nlines
!= WINDOW_TOTAL_LINES (w
)))
8598 extern Lisp_Object Qtool_bar_lines
;
8600 int old_height
= WINDOW_TOTAL_LINES (w
);
8602 XSETFRAME (frame
, f
);
8603 clear_glyph_matrix (w
->desired_matrix
);
8604 Fmodify_frame_parameters (frame
,
8605 Fcons (Fcons (Qtool_bar_lines
,
8606 make_number (nlines
)),
8608 if (WINDOW_TOTAL_LINES (w
) != old_height
)
8609 fonts_changed_p
= 1;
8613 return change_height_p
;
8617 /* Get information about the tool-bar item which is displayed in GLYPH
8618 on frame F. Return in *PROP_IDX the index where tool-bar item
8619 properties start in F->tool_bar_items. Value is zero if
8620 GLYPH doesn't display a tool-bar item. */
8623 tool_bar_item_info (f
, glyph
, prop_idx
)
8625 struct glyph
*glyph
;
8632 /* This function can be called asynchronously, which means we must
8633 exclude any possibility that Fget_text_property signals an
8635 charpos
= min (SCHARS (f
->current_tool_bar_string
), glyph
->charpos
);
8636 charpos
= max (0, charpos
);
8638 /* Get the text property `menu-item' at pos. The value of that
8639 property is the start index of this item's properties in
8640 F->tool_bar_items. */
8641 prop
= Fget_text_property (make_number (charpos
),
8642 Qmenu_item
, f
->current_tool_bar_string
);
8643 if (INTEGERP (prop
))
8645 *prop_idx
= XINT (prop
);
8655 /* Get information about the tool-bar item at position X/Y on frame F.
8656 Return in *GLYPH a pointer to the glyph of the tool-bar item in
8657 the current matrix of the tool-bar window of F, or NULL if not
8658 on a tool-bar item. Return in *PROP_IDX the index of the tool-bar
8659 item in F->tool_bar_items. Value is
8661 -1 if X/Y is not on a tool-bar item
8662 0 if X/Y is on the same item that was highlighted before.
8666 get_tool_bar_item (f
, x
, y
, glyph
, hpos
, vpos
, prop_idx
)
8669 struct glyph
**glyph
;
8670 int *hpos
, *vpos
, *prop_idx
;
8672 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
8673 struct window
*w
= XWINDOW (f
->tool_bar_window
);
8676 /* Find the glyph under X/Y. */
8677 *glyph
= x_y_to_hpos_vpos (w
, x
, y
, hpos
, vpos
, &area
, 0);
8681 /* Get the start of this tool-bar item's properties in
8682 f->tool_bar_items. */
8683 if (!tool_bar_item_info (f
, *glyph
, prop_idx
))
8686 /* Is mouse on the highlighted item? */
8687 if (EQ (f
->tool_bar_window
, dpyinfo
->mouse_face_window
)
8688 && *vpos
>= dpyinfo
->mouse_face_beg_row
8689 && *vpos
<= dpyinfo
->mouse_face_end_row
8690 && (*vpos
> dpyinfo
->mouse_face_beg_row
8691 || *hpos
>= dpyinfo
->mouse_face_beg_col
)
8692 && (*vpos
< dpyinfo
->mouse_face_end_row
8693 || *hpos
< dpyinfo
->mouse_face_end_col
8694 || dpyinfo
->mouse_face_past_end
))
8702 Handle mouse button event on the tool-bar of frame F, at
8703 frame-relative coordinates X/Y. DOWN_P is 1 for a button press,
8704 0 for button release. MODIFIERS is event modifiers for button
8708 handle_tool_bar_click (f
, x
, y
, down_p
, modifiers
)
8711 unsigned int modifiers
;
8713 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
8714 struct window
*w
= XWINDOW (f
->tool_bar_window
);
8715 int hpos
, vpos
, prop_idx
;
8716 struct glyph
*glyph
;
8717 Lisp_Object enabled_p
;
8719 /* If not on the highlighted tool-bar item, return. */
8720 frame_to_window_pixel_xy (w
, &x
, &y
);
8721 if (get_tool_bar_item (f
, x
, y
, &glyph
, &hpos
, &vpos
, &prop_idx
) != 0)
8724 /* If item is disabled, do nothing. */
8725 enabled_p
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_ENABLED_P
);
8726 if (NILP (enabled_p
))
8731 /* Show item in pressed state. */
8732 show_mouse_face (dpyinfo
, DRAW_IMAGE_SUNKEN
);
8733 dpyinfo
->mouse_face_image_state
= DRAW_IMAGE_SUNKEN
;
8734 last_tool_bar_item
= prop_idx
;
8738 Lisp_Object key
, frame
;
8739 struct input_event event
;
8741 /* Show item in released state. */
8742 show_mouse_face (dpyinfo
, DRAW_IMAGE_RAISED
);
8743 dpyinfo
->mouse_face_image_state
= DRAW_IMAGE_RAISED
;
8745 key
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_KEY
);
8747 XSETFRAME (frame
, f
);
8748 event
.kind
= TOOL_BAR_EVENT
;
8749 event
.frame_or_window
= frame
;
8751 kbd_buffer_store_event (&event
);
8753 event
.kind
= TOOL_BAR_EVENT
;
8754 event
.frame_or_window
= frame
;
8756 event
.modifiers
= modifiers
;
8757 kbd_buffer_store_event (&event
);
8758 last_tool_bar_item
= -1;
8763 /* Possibly highlight a tool-bar item on frame F when mouse moves to
8764 tool-bar window-relative coordinates X/Y. Called from
8765 note_mouse_highlight. */
8768 note_tool_bar_highlight (f
, x
, y
)
8772 Lisp_Object window
= f
->tool_bar_window
;
8773 struct window
*w
= XWINDOW (window
);
8774 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
8776 struct glyph
*glyph
;
8777 struct glyph_row
*row
;
8779 Lisp_Object enabled_p
;
8781 enum draw_glyphs_face draw
= DRAW_IMAGE_RAISED
;
8782 int mouse_down_p
, rc
;
8784 /* Function note_mouse_highlight is called with negative x(y
8785 values when mouse moves outside of the frame. */
8786 if (x
<= 0 || y
<= 0)
8788 clear_mouse_face (dpyinfo
);
8792 rc
= get_tool_bar_item (f
, x
, y
, &glyph
, &hpos
, &vpos
, &prop_idx
);
8795 /* Not on tool-bar item. */
8796 clear_mouse_face (dpyinfo
);
8800 /* On same tool-bar item as before. */
8803 clear_mouse_face (dpyinfo
);
8805 /* Mouse is down, but on different tool-bar item? */
8806 mouse_down_p
= (dpyinfo
->grabbed
8807 && f
== last_mouse_frame
8808 && FRAME_LIVE_P (f
));
8810 && last_tool_bar_item
!= prop_idx
)
8813 dpyinfo
->mouse_face_image_state
= DRAW_NORMAL_TEXT
;
8814 draw
= mouse_down_p
? DRAW_IMAGE_SUNKEN
: DRAW_IMAGE_RAISED
;
8816 /* If tool-bar item is not enabled, don't highlight it. */
8817 enabled_p
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_ENABLED_P
);
8818 if (!NILP (enabled_p
))
8820 /* Compute the x-position of the glyph. In front and past the
8821 image is a space. We include this in the highlighted area. */
8822 row
= MATRIX_ROW (w
->current_matrix
, vpos
);
8823 for (i
= x
= 0; i
< hpos
; ++i
)
8824 x
+= row
->glyphs
[TEXT_AREA
][i
].pixel_width
;
8826 /* Record this as the current active region. */
8827 dpyinfo
->mouse_face_beg_col
= hpos
;
8828 dpyinfo
->mouse_face_beg_row
= vpos
;
8829 dpyinfo
->mouse_face_beg_x
= x
;
8830 dpyinfo
->mouse_face_beg_y
= row
->y
;
8831 dpyinfo
->mouse_face_past_end
= 0;
8833 dpyinfo
->mouse_face_end_col
= hpos
+ 1;
8834 dpyinfo
->mouse_face_end_row
= vpos
;
8835 dpyinfo
->mouse_face_end_x
= x
+ glyph
->pixel_width
;
8836 dpyinfo
->mouse_face_end_y
= row
->y
;
8837 dpyinfo
->mouse_face_window
= window
;
8838 dpyinfo
->mouse_face_face_id
= TOOL_BAR_FACE_ID
;
8840 /* Display it as active. */
8841 show_mouse_face (dpyinfo
, draw
);
8842 dpyinfo
->mouse_face_image_state
= draw
;
8847 /* Set help_echo_string to a help string to display for this tool-bar item.
8848 XTread_socket does the rest. */
8849 help_echo_object
= help_echo_window
= Qnil
;
8851 help_echo_string
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_HELP
);
8852 if (NILP (help_echo_string
))
8853 help_echo_string
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_CAPTION
);
8856 #endif /* HAVE_WINDOW_SYSTEM */
8860 /***********************************************************************
8862 ***********************************************************************/
8864 #ifdef HAVE_WINDOW_SYSTEM
8866 /* An arrow like this: `<-'. */
8867 static unsigned char left_bits
[] = {
8868 0x18, 0x0c, 0x06, 0x3f, 0x3f, 0x06, 0x0c, 0x18};
8870 /* Right truncation arrow bitmap `->'. */
8871 static unsigned char right_bits
[] = {
8872 0x18, 0x30, 0x60, 0xfc, 0xfc, 0x60, 0x30, 0x18};
8874 /* Marker for continued lines. */
8875 static unsigned char continued_bits
[] = {
8876 0x3c, 0x7c, 0xc0, 0xe4, 0xfc, 0x7c, 0x3c, 0x7c};
8878 /* Marker for continuation lines. */
8879 static unsigned char continuation_bits
[] = {
8880 0x3c, 0x3e, 0x03, 0x27, 0x3f, 0x3e, 0x3c, 0x3e};
8882 /* Overlay arrow bitmap. A triangular arrow. */
8883 static unsigned char ov_bits
[] = {
8884 0x03, 0x0f, 0x1f, 0x3f, 0x3f, 0x1f, 0x0f, 0x03};
8886 /* Bitmap drawn to indicate lines not displaying text if
8887 `indicate-empty-lines' is non-nil. */
8888 static unsigned char zv_bits
[] = {
8889 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
8890 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
8891 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
8892 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
8893 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
8894 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
8895 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
8896 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00};
8898 struct fringe_bitmap fringe_bitmaps
[MAX_FRINGE_BITMAPS
] =
8900 { 0, 0, 0, NULL
/* NO_FRINGE_BITMAP */ },
8901 { 8, sizeof (left_bits
), 0, left_bits
},
8902 { 8, sizeof (right_bits
), 0, right_bits
},
8903 { 8, sizeof (continued_bits
), 0, continued_bits
},
8904 { 8, sizeof (continuation_bits
), 0, continuation_bits
},
8905 { 8, sizeof (ov_bits
), 0, ov_bits
},
8906 { 8, sizeof (zv_bits
), 3, zv_bits
}
8910 /* Draw the bitmap WHICH in one of the left or right fringes of
8911 window W. ROW is the glyph row for which to display the bitmap; it
8912 determines the vertical position at which the bitmap has to be
8916 draw_fringe_bitmap (w
, row
, which
, left_p
)
8918 struct glyph_row
*row
;
8919 enum fringe_bitmap_type which
;
8922 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
8923 struct draw_fringe_bitmap_params p
;
8925 /* Convert row to frame coordinates. */
8926 p
.y
= WINDOW_TO_FRAME_PIXEL_Y (w
, row
->y
);
8929 p
.wd
= fringe_bitmaps
[which
].width
;
8931 p
.h
= fringe_bitmaps
[which
].height
;
8932 p
.dh
= (fringe_bitmaps
[which
].period
8933 ? (p
.y
% fringe_bitmaps
[which
].period
)
8936 /* Clip bitmap if too high. */
8937 if (p
.h
> row
->height
)
8940 p
.face
= FACE_FROM_ID (f
, FRINGE_FACE_ID
);
8941 PREPARE_FACE_FOR_DISPLAY (f
, p
.face
);
8943 /* Clear left fringe if no bitmap to draw or if bitmap doesn't fill
8948 int wd
= WINDOW_LEFT_FRINGE_WIDTH (w
);
8949 int x
= window_box_left (w
, (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
8954 p
.x
= x
- p
.wd
- (wd
- p
.wd
) / 2;
8956 if (p
.wd
< wd
|| row
->height
> p
.h
)
8958 /* If W has a vertical border to its left, don't draw over it. */
8959 wd
-= ((!WINDOW_LEFTMOST_P (w
)
8960 && !WINDOW_HAS_VERTICAL_SCROLL_BAR (w
))
8968 int x
= window_box_right (w
,
8969 (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
8972 int wd
= WINDOW_RIGHT_FRINGE_WIDTH (w
);
8975 p
.x
= x
+ (wd
- p
.wd
) / 2;
8976 /* Clear right fringe if no bitmap to draw of if bitmap doesn't fill
8978 if (p
.wd
< wd
|| row
->height
> p
.h
)
8987 int header_line_height
= WINDOW_HEADER_LINE_HEIGHT (w
);
8989 p
.by
= WINDOW_TO_FRAME_PIXEL_Y (w
, max (header_line_height
, row
->y
));
8990 p
.ny
= row
->visible_height
;
8993 /* Adjust y to the offset in the row to start drawing the bitmap. */
8994 p
.y
+= (row
->height
- p
.h
) / 2;
8996 rif
->draw_fringe_bitmap (w
, row
, &p
);
8999 /* Draw fringe bitmaps for glyph row ROW on window W. Call this
9000 function with input blocked. */
9003 draw_row_fringe_bitmaps (w
, row
)
9005 struct glyph_row
*row
;
9007 enum fringe_bitmap_type bitmap
;
9009 xassert (interrupt_input_blocked
);
9011 /* If row is completely invisible, because of vscrolling, we
9012 don't have to draw anything. */
9013 if (row
->visible_height
<= 0)
9016 if (WINDOW_LEFT_FRINGE_WIDTH (w
) != 0)
9018 /* Decide which bitmap to draw in the left fringe. */
9019 if (row
->overlay_arrow_p
)
9020 bitmap
= OVERLAY_ARROW_BITMAP
;
9021 else if (row
->truncated_on_left_p
)
9022 bitmap
= LEFT_TRUNCATION_BITMAP
;
9023 else if (MATRIX_ROW_CONTINUATION_LINE_P (row
))
9024 bitmap
= CONTINUATION_LINE_BITMAP
;
9025 else if (row
->indicate_empty_line_p
)
9026 bitmap
= ZV_LINE_BITMAP
;
9028 bitmap
= NO_FRINGE_BITMAP
;
9030 draw_fringe_bitmap (w
, row
, bitmap
, 1);
9033 if (WINDOW_RIGHT_FRINGE_WIDTH (w
) != 0)
9035 /* Decide which bitmap to draw in the right fringe. */
9036 if (row
->truncated_on_right_p
)
9037 bitmap
= RIGHT_TRUNCATION_BITMAP
;
9038 else if (row
->continued_p
)
9039 bitmap
= CONTINUED_LINE_BITMAP
;
9040 else if (row
->indicate_empty_line_p
&& WINDOW_LEFT_FRINGE_WIDTH (w
) == 0)
9041 bitmap
= ZV_LINE_BITMAP
;
9043 bitmap
= NO_FRINGE_BITMAP
;
9045 draw_fringe_bitmap (w
, row
, bitmap
, 0);
9050 /* Compute actual fringe widths */
9053 compute_fringe_widths (f
, redraw
)
9057 int o_left
= FRAME_LEFT_FRINGE_WIDTH (f
);
9058 int o_right
= FRAME_RIGHT_FRINGE_WIDTH (f
);
9059 int o_cols
= FRAME_FRINGE_COLS (f
);
9061 Lisp_Object left_fringe
= Fassq (Qleft_fringe
, f
->param_alist
);
9062 Lisp_Object right_fringe
= Fassq (Qright_fringe
, f
->param_alist
);
9063 int left_fringe_width
, right_fringe_width
;
9065 if (!NILP (left_fringe
))
9066 left_fringe
= Fcdr (left_fringe
);
9067 if (!NILP (right_fringe
))
9068 right_fringe
= Fcdr (right_fringe
);
9070 left_fringe_width
= ((NILP (left_fringe
) || !INTEGERP (left_fringe
)) ? 8 :
9071 XINT (left_fringe
));
9072 right_fringe_width
= ((NILP (right_fringe
) || !INTEGERP (right_fringe
)) ? 8 :
9073 XINT (right_fringe
));
9075 if (left_fringe_width
|| right_fringe_width
)
9077 int left_wid
= left_fringe_width
>= 0 ? left_fringe_width
: -left_fringe_width
;
9078 int right_wid
= right_fringe_width
>= 0 ? right_fringe_width
: -right_fringe_width
;
9079 int conf_wid
= left_wid
+ right_wid
;
9080 int font_wid
= FRAME_COLUMN_WIDTH (f
);
9081 int cols
= (left_wid
+ right_wid
+ font_wid
-1) / font_wid
;
9082 int real_wid
= cols
* font_wid
;
9083 if (left_wid
&& right_wid
)
9085 if (left_fringe_width
< 0)
9087 /* Left fringe width is fixed, adjust right fringe if necessary */
9088 FRAME_LEFT_FRINGE_WIDTH (f
) = left_wid
;
9089 FRAME_RIGHT_FRINGE_WIDTH (f
) = real_wid
- left_wid
;
9091 else if (right_fringe_width
< 0)
9093 /* Right fringe width is fixed, adjust left fringe if necessary */
9094 FRAME_LEFT_FRINGE_WIDTH (f
) = real_wid
- right_wid
;
9095 FRAME_RIGHT_FRINGE_WIDTH (f
) = right_wid
;
9099 /* Adjust both fringes with an equal amount.
9100 Note that we are doing integer arithmetic here, so don't
9101 lose a pixel if the total width is an odd number. */
9102 int fill
= real_wid
- conf_wid
;
9103 FRAME_LEFT_FRINGE_WIDTH (f
) = left_wid
+ fill
/2;
9104 FRAME_RIGHT_FRINGE_WIDTH (f
) = right_wid
+ fill
- fill
/2;
9107 else if (left_fringe_width
)
9109 FRAME_LEFT_FRINGE_WIDTH (f
) = real_wid
;
9110 FRAME_RIGHT_FRINGE_WIDTH (f
) = 0;
9114 FRAME_LEFT_FRINGE_WIDTH (f
) = 0;
9115 FRAME_RIGHT_FRINGE_WIDTH (f
) = real_wid
;
9117 FRAME_FRINGE_COLS (f
) = cols
;
9121 FRAME_LEFT_FRINGE_WIDTH (f
) = 0;
9122 FRAME_RIGHT_FRINGE_WIDTH (f
) = 0;
9123 FRAME_FRINGE_COLS (f
) = 0;
9126 if (redraw
&& FRAME_VISIBLE_P (f
))
9127 if (o_left
!= FRAME_LEFT_FRINGE_WIDTH (f
) ||
9128 o_right
!= FRAME_RIGHT_FRINGE_WIDTH (f
) ||
9129 o_cols
!= FRAME_FRINGE_COLS (f
))
9133 #endif /* HAVE_WINDOW_SYSTEM */
9137 /************************************************************************
9138 Horizontal scrolling
9139 ************************************************************************/
9141 static int hscroll_window_tree
P_ ((Lisp_Object
));
9142 static int hscroll_windows
P_ ((Lisp_Object
));
9144 /* For all leaf windows in the window tree rooted at WINDOW, set their
9145 hscroll value so that PT is (i) visible in the window, and (ii) so
9146 that it is not within a certain margin at the window's left and
9147 right border. Value is non-zero if any window's hscroll has been
9151 hscroll_window_tree (window
)
9154 int hscrolled_p
= 0;
9155 int hscroll_relative_p
= FLOATP (Vhscroll_step
);
9156 int hscroll_step_abs
= 0;
9157 double hscroll_step_rel
= 0;
9159 if (hscroll_relative_p
)
9161 hscroll_step_rel
= XFLOAT_DATA (Vhscroll_step
);
9162 if (hscroll_step_rel
< 0)
9164 hscroll_relative_p
= 0;
9165 hscroll_step_abs
= 0;
9168 else if (INTEGERP (Vhscroll_step
))
9170 hscroll_step_abs
= XINT (Vhscroll_step
);
9171 if (hscroll_step_abs
< 0)
9172 hscroll_step_abs
= 0;
9175 hscroll_step_abs
= 0;
9177 while (WINDOWP (window
))
9179 struct window
*w
= XWINDOW (window
);
9181 if (WINDOWP (w
->hchild
))
9182 hscrolled_p
|= hscroll_window_tree (w
->hchild
);
9183 else if (WINDOWP (w
->vchild
))
9184 hscrolled_p
|= hscroll_window_tree (w
->vchild
);
9185 else if (w
->cursor
.vpos
>= 0)
9188 int text_area_width
;
9189 struct glyph_row
*current_cursor_row
9190 = MATRIX_ROW (w
->current_matrix
, w
->cursor
.vpos
);
9191 struct glyph_row
*desired_cursor_row
9192 = MATRIX_ROW (w
->desired_matrix
, w
->cursor
.vpos
);
9193 struct glyph_row
*cursor_row
9194 = (desired_cursor_row
->enabled_p
9195 ? desired_cursor_row
9196 : current_cursor_row
);
9198 text_area_width
= window_box_width (w
, TEXT_AREA
);
9200 /* Scroll when cursor is inside this scroll margin. */
9201 h_margin
= hscroll_margin
* WINDOW_FRAME_COLUMN_WIDTH (w
);
9203 if ((XFASTINT (w
->hscroll
)
9204 && w
->cursor
.x
<= h_margin
)
9205 || (cursor_row
->enabled_p
9206 && cursor_row
->truncated_on_right_p
9207 && (w
->cursor
.x
>= text_area_width
- h_margin
)))
9211 struct buffer
*saved_current_buffer
;
9215 /* Find point in a display of infinite width. */
9216 saved_current_buffer
= current_buffer
;
9217 current_buffer
= XBUFFER (w
->buffer
);
9219 if (w
== XWINDOW (selected_window
))
9220 pt
= BUF_PT (current_buffer
);
9223 pt
= marker_position (w
->pointm
);
9224 pt
= max (BEGV
, pt
);
9228 /* Move iterator to pt starting at cursor_row->start in
9229 a line with infinite width. */
9230 init_to_row_start (&it
, w
, cursor_row
);
9231 it
.last_visible_x
= INFINITY
;
9232 move_it_in_display_line_to (&it
, pt
, -1, MOVE_TO_POS
);
9233 current_buffer
= saved_current_buffer
;
9235 /* Position cursor in window. */
9236 if (!hscroll_relative_p
&& hscroll_step_abs
== 0)
9237 hscroll
= max (0, it
.current_x
- text_area_width
/ 2)
9238 / FRAME_COLUMN_WIDTH (it
.f
);
9239 else if (w
->cursor
.x
>= text_area_width
- h_margin
)
9241 if (hscroll_relative_p
)
9242 wanted_x
= text_area_width
* (1 - hscroll_step_rel
)
9245 wanted_x
= text_area_width
9246 - hscroll_step_abs
* FRAME_COLUMN_WIDTH (it
.f
)
9249 = max (0, it
.current_x
- wanted_x
) / FRAME_COLUMN_WIDTH (it
.f
);
9253 if (hscroll_relative_p
)
9254 wanted_x
= text_area_width
* hscroll_step_rel
9257 wanted_x
= hscroll_step_abs
* FRAME_COLUMN_WIDTH (it
.f
)
9260 = max (0, it
.current_x
- wanted_x
) / FRAME_COLUMN_WIDTH (it
.f
);
9262 hscroll
= max (hscroll
, XFASTINT (w
->min_hscroll
));
9264 /* Don't call Fset_window_hscroll if value hasn't
9265 changed because it will prevent redisplay
9267 if (XFASTINT (w
->hscroll
) != hscroll
)
9269 XBUFFER (w
->buffer
)->prevent_redisplay_optimizations_p
= 1;
9270 w
->hscroll
= make_number (hscroll
);
9279 /* Value is non-zero if hscroll of any leaf window has been changed. */
9284 /* Set hscroll so that cursor is visible and not inside horizontal
9285 scroll margins for all windows in the tree rooted at WINDOW. See
9286 also hscroll_window_tree above. Value is non-zero if any window's
9287 hscroll has been changed. If it has, desired matrices on the frame
9288 of WINDOW are cleared. */
9291 hscroll_windows (window
)
9296 if (automatic_hscrolling_p
)
9298 hscrolled_p
= hscroll_window_tree (window
);
9300 clear_desired_matrices (XFRAME (WINDOW_FRAME (XWINDOW (window
))));
9309 /************************************************************************
9311 ************************************************************************/
9313 /* Variables holding some state of redisplay if GLYPH_DEBUG is defined
9314 to a non-zero value. This is sometimes handy to have in a debugger
9319 /* First and last unchanged row for try_window_id. */
9321 int debug_first_unchanged_at_end_vpos
;
9322 int debug_last_unchanged_at_beg_vpos
;
9324 /* Delta vpos and y. */
9326 int debug_dvpos
, debug_dy
;
9328 /* Delta in characters and bytes for try_window_id. */
9330 int debug_delta
, debug_delta_bytes
;
9332 /* Values of window_end_pos and window_end_vpos at the end of
9335 EMACS_INT debug_end_pos
, debug_end_vpos
;
9337 /* Append a string to W->desired_matrix->method. FMT is a printf
9338 format string. A1...A9 are a supplement for a variable-length
9339 argument list. If trace_redisplay_p is non-zero also printf the
9340 resulting string to stderr. */
9343 debug_method_add (w
, fmt
, a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
, a9
)
9346 int a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
, a9
;
9349 char *method
= w
->desired_matrix
->method
;
9350 int len
= strlen (method
);
9351 int size
= sizeof w
->desired_matrix
->method
;
9352 int remaining
= size
- len
- 1;
9354 sprintf (buffer
, fmt
, a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
, a9
);
9355 if (len
&& remaining
)
9361 strncpy (method
+ len
, buffer
, remaining
);
9363 if (trace_redisplay_p
)
9364 fprintf (stderr
, "%p (%s): %s\n",
9366 ((BUFFERP (w
->buffer
)
9367 && STRINGP (XBUFFER (w
->buffer
)->name
))
9368 ? (char *) SDATA (XBUFFER (w
->buffer
)->name
)
9373 #endif /* GLYPH_DEBUG */
9376 /* Value is non-zero if all changes in window W, which displays
9377 current_buffer, are in the text between START and END. START is a
9378 buffer position, END is given as a distance from Z. Used in
9379 redisplay_internal for display optimization. */
9382 text_outside_line_unchanged_p (w
, start
, end
)
9386 int unchanged_p
= 1;
9388 /* If text or overlays have changed, see where. */
9389 if (XFASTINT (w
->last_modified
) < MODIFF
9390 || XFASTINT (w
->last_overlay_modified
) < OVERLAY_MODIFF
)
9392 /* Gap in the line? */
9393 if (GPT
< start
|| Z
- GPT
< end
)
9396 /* Changes start in front of the line, or end after it? */
9398 && (BEG_UNCHANGED
< start
- 1
9399 || END_UNCHANGED
< end
))
9402 /* If selective display, can't optimize if changes start at the
9403 beginning of the line. */
9405 && INTEGERP (current_buffer
->selective_display
)
9406 && XINT (current_buffer
->selective_display
) > 0
9407 && (BEG_UNCHANGED
< start
|| GPT
<= start
))
9410 /* If there are overlays at the start or end of the line, these
9411 may have overlay strings with newlines in them. A change at
9412 START, for instance, may actually concern the display of such
9413 overlay strings as well, and they are displayed on different
9414 lines. So, quickly rule out this case. (For the future, it
9415 might be desirable to implement something more telling than
9416 just BEG/END_UNCHANGED.) */
9419 if (BEG
+ BEG_UNCHANGED
== start
9420 && overlay_touches_p (start
))
9422 if (END_UNCHANGED
== end
9423 && overlay_touches_p (Z
- end
))
9432 /* Do a frame update, taking possible shortcuts into account. This is
9433 the main external entry point for redisplay.
9435 If the last redisplay displayed an echo area message and that message
9436 is no longer requested, we clear the echo area or bring back the
9437 mini-buffer if that is in use. */
9442 redisplay_internal (0);
9446 /* Return 1 if point moved out of or into a composition. Otherwise
9447 return 0. PREV_BUF and PREV_PT are the last point buffer and
9448 position. BUF and PT are the current point buffer and position. */
9451 check_point_in_composition (prev_buf
, prev_pt
, buf
, pt
)
9452 struct buffer
*prev_buf
, *buf
;
9459 XSETBUFFER (buffer
, buf
);
9460 /* Check a composition at the last point if point moved within the
9462 if (prev_buf
== buf
)
9465 /* Point didn't move. */
9468 if (prev_pt
> BUF_BEGV (buf
) && prev_pt
< BUF_ZV (buf
)
9469 && find_composition (prev_pt
, -1, &start
, &end
, &prop
, buffer
)
9470 && COMPOSITION_VALID_P (start
, end
, prop
)
9471 && start
< prev_pt
&& end
> prev_pt
)
9472 /* The last point was within the composition. Return 1 iff
9473 point moved out of the composition. */
9474 return (pt
<= start
|| pt
>= end
);
9477 /* Check a composition at the current point. */
9478 return (pt
> BUF_BEGV (buf
) && pt
< BUF_ZV (buf
)
9479 && find_composition (pt
, -1, &start
, &end
, &prop
, buffer
)
9480 && COMPOSITION_VALID_P (start
, end
, prop
)
9481 && start
< pt
&& end
> pt
);
9485 /* Reconsider the setting of B->clip_changed which is displayed
9489 reconsider_clip_changes (w
, b
)
9494 && !NILP (w
->window_end_valid
)
9495 && w
->current_matrix
->buffer
== b
9496 && w
->current_matrix
->zv
== BUF_ZV (b
)
9497 && w
->current_matrix
->begv
== BUF_BEGV (b
))
9498 b
->clip_changed
= 0;
9500 /* If display wasn't paused, and W is not a tool bar window, see if
9501 point has been moved into or out of a composition. In that case,
9502 we set b->clip_changed to 1 to force updating the screen. If
9503 b->clip_changed has already been set to 1, we can skip this
9505 if (!b
->clip_changed
9506 && BUFFERP (w
->buffer
) && !NILP (w
->window_end_valid
))
9510 if (w
== XWINDOW (selected_window
))
9511 pt
= BUF_PT (current_buffer
);
9513 pt
= marker_position (w
->pointm
);
9515 if ((w
->current_matrix
->buffer
!= XBUFFER (w
->buffer
)
9516 || pt
!= XINT (w
->last_point
))
9517 && check_point_in_composition (w
->current_matrix
->buffer
,
9518 XINT (w
->last_point
),
9519 XBUFFER (w
->buffer
), pt
))
9520 b
->clip_changed
= 1;
9524 #define STOP_POLLING \
9525 do { if (! polling_stopped_here) stop_polling (); \
9526 polling_stopped_here = 1; } while (0)
9528 #define RESUME_POLLING \
9529 do { if (polling_stopped_here) start_polling (); \
9530 polling_stopped_here = 0; } while (0)
9533 /* If PRESERVE_ECHO_AREA is nonzero, it means this redisplay is not in
9534 response to any user action; therefore, we should preserve the echo
9535 area. (Actually, our caller does that job.) Perhaps in the future
9536 avoid recentering windows if it is not necessary; currently that
9537 causes some problems. */
9540 redisplay_internal (preserve_echo_area
)
9541 int preserve_echo_area
;
9543 struct window
*w
= XWINDOW (selected_window
);
9544 struct frame
*f
= XFRAME (w
->frame
);
9546 int must_finish
= 0;
9547 struct text_pos tlbufpos
, tlendpos
;
9548 int number_of_visible_frames
;
9550 struct frame
*sf
= SELECTED_FRAME ();
9551 int polling_stopped_here
= 0;
9553 /* Non-zero means redisplay has to consider all windows on all
9554 frames. Zero means, only selected_window is considered. */
9555 int consider_all_windows_p
;
9557 TRACE ((stderr
, "redisplay_internal %d\n", redisplaying_p
));
9559 /* No redisplay if running in batch mode or frame is not yet fully
9560 initialized, or redisplay is explicitly turned off by setting
9561 Vinhibit_redisplay. */
9563 || !NILP (Vinhibit_redisplay
)
9564 || !f
->glyphs_initialized_p
)
9567 /* The flag redisplay_performed_directly_p is set by
9568 direct_output_for_insert when it already did the whole screen
9569 update necessary. */
9570 if (redisplay_performed_directly_p
)
9572 redisplay_performed_directly_p
= 0;
9573 if (!hscroll_windows (selected_window
))
9577 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
9578 if (popup_activated ())
9582 /* I don't think this happens but let's be paranoid. */
9586 /* Record a function that resets redisplaying_p to its old value
9587 when we leave this function. */
9588 count
= SPECPDL_INDEX ();
9589 record_unwind_protect (unwind_redisplay
, make_number (redisplaying_p
));
9591 specbind (Qinhibit_free_realized_faces
, Qnil
);
9595 reconsider_clip_changes (w
, current_buffer
);
9597 /* If new fonts have been loaded that make a glyph matrix adjustment
9598 necessary, do it. */
9599 if (fonts_changed_p
)
9601 adjust_glyphs (NULL
);
9602 ++windows_or_buffers_changed
;
9603 fonts_changed_p
= 0;
9606 /* If face_change_count is non-zero, init_iterator will free all
9607 realized faces, which includes the faces referenced from current
9608 matrices. So, we can't reuse current matrices in this case. */
9609 if (face_change_count
)
9610 ++windows_or_buffers_changed
;
9612 if (! FRAME_WINDOW_P (sf
)
9613 && previous_terminal_frame
!= sf
)
9615 /* Since frames on an ASCII terminal share the same display
9616 area, displaying a different frame means redisplay the whole
9618 windows_or_buffers_changed
++;
9619 SET_FRAME_GARBAGED (sf
);
9620 XSETFRAME (Vterminal_frame
, sf
);
9622 previous_terminal_frame
= sf
;
9624 /* Set the visible flags for all frames. Do this before checking
9625 for resized or garbaged frames; they want to know if their frames
9626 are visible. See the comment in frame.h for
9627 FRAME_SAMPLE_VISIBILITY. */
9629 Lisp_Object tail
, frame
;
9631 number_of_visible_frames
= 0;
9633 FOR_EACH_FRAME (tail
, frame
)
9635 struct frame
*f
= XFRAME (frame
);
9637 FRAME_SAMPLE_VISIBILITY (f
);
9638 if (FRAME_VISIBLE_P (f
))
9639 ++number_of_visible_frames
;
9640 clear_desired_matrices (f
);
9644 /* Notice any pending interrupt request to change frame size. */
9645 do_pending_window_change (1);
9647 /* Clear frames marked as garbaged. */
9649 clear_garbaged_frames ();
9651 /* Build menubar and tool-bar items. */
9652 prepare_menu_bars ();
9654 if (windows_or_buffers_changed
)
9655 update_mode_lines
++;
9657 /* Detect case that we need to write or remove a star in the mode line. */
9658 if ((SAVE_MODIFF
< MODIFF
) != !NILP (w
->last_had_star
))
9660 w
->update_mode_line
= Qt
;
9661 if (buffer_shared
> 1)
9662 update_mode_lines
++;
9665 /* If %c is in the mode line, update it if needed. */
9666 if (!NILP (w
->column_number_displayed
)
9667 /* This alternative quickly identifies a common case
9668 where no change is needed. */
9669 && !(PT
== XFASTINT (w
->last_point
)
9670 && XFASTINT (w
->last_modified
) >= MODIFF
9671 && XFASTINT (w
->last_overlay_modified
) >= OVERLAY_MODIFF
)
9672 && (XFASTINT (w
->column_number_displayed
)
9673 != (int) current_column ())) /* iftc */
9674 w
->update_mode_line
= Qt
;
9676 FRAME_SCROLL_BOTTOM_VPOS (XFRAME (w
->frame
)) = -1;
9678 /* The variable buffer_shared is set in redisplay_window and
9679 indicates that we redisplay a buffer in different windows. See
9681 consider_all_windows_p
= (update_mode_lines
|| buffer_shared
> 1
9682 || cursor_type_changed
);
9684 /* If specs for an arrow have changed, do thorough redisplay
9685 to ensure we remove any arrow that should no longer exist. */
9686 if (! EQ (COERCE_MARKER (Voverlay_arrow_position
), last_arrow_position
)
9687 || ! EQ (Voverlay_arrow_string
, last_arrow_string
))
9688 consider_all_windows_p
= windows_or_buffers_changed
= 1;
9690 /* Normally the message* functions will have already displayed and
9691 updated the echo area, but the frame may have been trashed, or
9692 the update may have been preempted, so display the echo area
9693 again here. Checking message_cleared_p captures the case that
9694 the echo area should be cleared. */
9695 if ((!NILP (echo_area_buffer
[0]) && !display_last_displayed_message_p
)
9696 || (!NILP (echo_area_buffer
[1]) && display_last_displayed_message_p
)
9697 || (message_cleared_p
9698 && minibuf_level
== 0
9699 /* If the mini-window is currently selected, this means the
9700 echo-area doesn't show through. */
9701 && !MINI_WINDOW_P (XWINDOW (selected_window
))))
9703 int window_height_changed_p
= echo_area_display (0);
9706 /* If we don't display the current message, don't clear the
9707 message_cleared_p flag, because, if we did, we wouldn't clear
9708 the echo area in the next redisplay which doesn't preserve
9710 if (!display_last_displayed_message_p
)
9711 message_cleared_p
= 0;
9713 if (fonts_changed_p
)
9715 else if (window_height_changed_p
)
9717 consider_all_windows_p
= 1;
9718 ++update_mode_lines
;
9719 ++windows_or_buffers_changed
;
9721 /* If window configuration was changed, frames may have been
9722 marked garbaged. Clear them or we will experience
9723 surprises wrt scrolling. */
9725 clear_garbaged_frames ();
9728 else if (EQ (selected_window
, minibuf_window
)
9729 && (current_buffer
->clip_changed
9730 || XFASTINT (w
->last_modified
) < MODIFF
9731 || XFASTINT (w
->last_overlay_modified
) < OVERLAY_MODIFF
)
9732 && resize_mini_window (w
, 0))
9734 /* Resized active mini-window to fit the size of what it is
9735 showing if its contents might have changed. */
9737 consider_all_windows_p
= 1;
9738 ++windows_or_buffers_changed
;
9739 ++update_mode_lines
;
9741 /* If window configuration was changed, frames may have been
9742 marked garbaged. Clear them or we will experience
9743 surprises wrt scrolling. */
9745 clear_garbaged_frames ();
9749 /* If showing the region, and mark has changed, we must redisplay
9750 the whole window. The assignment to this_line_start_pos prevents
9751 the optimization directly below this if-statement. */
9752 if (((!NILP (Vtransient_mark_mode
)
9753 && !NILP (XBUFFER (w
->buffer
)->mark_active
))
9754 != !NILP (w
->region_showing
))
9755 || (!NILP (w
->region_showing
)
9756 && !EQ (w
->region_showing
,
9757 Fmarker_position (XBUFFER (w
->buffer
)->mark
))))
9758 CHARPOS (this_line_start_pos
) = 0;
9760 /* Optimize the case that only the line containing the cursor in the
9761 selected window has changed. Variables starting with this_ are
9762 set in display_line and record information about the line
9763 containing the cursor. */
9764 tlbufpos
= this_line_start_pos
;
9765 tlendpos
= this_line_end_pos
;
9766 if (!consider_all_windows_p
9767 && CHARPOS (tlbufpos
) > 0
9768 && NILP (w
->update_mode_line
)
9769 && !current_buffer
->clip_changed
9770 && !current_buffer
->prevent_redisplay_optimizations_p
9771 && FRAME_VISIBLE_P (XFRAME (w
->frame
))
9772 && !FRAME_OBSCURED_P (XFRAME (w
->frame
))
9773 /* Make sure recorded data applies to current buffer, etc. */
9774 && this_line_buffer
== current_buffer
9775 && current_buffer
== XBUFFER (w
->buffer
)
9776 && NILP (w
->force_start
)
9777 && NILP (w
->optional_new_start
)
9778 /* Point must be on the line that we have info recorded about. */
9779 && PT
>= CHARPOS (tlbufpos
)
9780 && PT
<= Z
- CHARPOS (tlendpos
)
9781 /* All text outside that line, including its final newline,
9782 must be unchanged */
9783 && text_outside_line_unchanged_p (w
, CHARPOS (tlbufpos
),
9784 CHARPOS (tlendpos
)))
9786 if (CHARPOS (tlbufpos
) > BEGV
9787 && FETCH_BYTE (BYTEPOS (tlbufpos
) - 1) != '\n'
9788 && (CHARPOS (tlbufpos
) == ZV
9789 || FETCH_BYTE (BYTEPOS (tlbufpos
)) == '\n'))
9790 /* Former continuation line has disappeared by becoming empty */
9792 else if (XFASTINT (w
->last_modified
) < MODIFF
9793 || XFASTINT (w
->last_overlay_modified
) < OVERLAY_MODIFF
9794 || MINI_WINDOW_P (w
))
9796 /* We have to handle the case of continuation around a
9797 wide-column character (See the comment in indent.c around
9800 For instance, in the following case:
9802 -------- Insert --------
9803 K_A_N_\\ `a' K_A_N_a\ `X_' are wide-column chars.
9804 J_I_ ==> J_I_ `^^' are cursors.
9808 As we have to redraw the line above, we should goto cancel. */
9811 int line_height_before
= this_line_pixel_height
;
9813 /* Note that start_display will handle the case that the
9814 line starting at tlbufpos is a continuation lines. */
9815 start_display (&it
, w
, tlbufpos
);
9817 /* Implementation note: It this still necessary? */
9818 if (it
.current_x
!= this_line_start_x
)
9821 TRACE ((stderr
, "trying display optimization 1\n"));
9822 w
->cursor
.vpos
= -1;
9823 overlay_arrow_seen
= 0;
9824 it
.vpos
= this_line_vpos
;
9825 it
.current_y
= this_line_y
;
9826 it
.glyph_row
= MATRIX_ROW (w
->desired_matrix
, this_line_vpos
);
9829 /* If line contains point, is not continued,
9830 and ends at same distance from eob as before, we win */
9831 if (w
->cursor
.vpos
>= 0
9832 /* Line is not continued, otherwise this_line_start_pos
9833 would have been set to 0 in display_line. */
9834 && CHARPOS (this_line_start_pos
)
9835 /* Line ends as before. */
9836 && CHARPOS (this_line_end_pos
) == CHARPOS (tlendpos
)
9837 /* Line has same height as before. Otherwise other lines
9838 would have to be shifted up or down. */
9839 && this_line_pixel_height
== line_height_before
)
9841 /* If this is not the window's last line, we must adjust
9842 the charstarts of the lines below. */
9843 if (it
.current_y
< it
.last_visible_y
)
9845 struct glyph_row
*row
9846 = MATRIX_ROW (w
->current_matrix
, this_line_vpos
+ 1);
9847 int delta
, delta_bytes
;
9849 if (Z
- CHARPOS (tlendpos
) == ZV
)
9851 /* This line ends at end of (accessible part of)
9852 buffer. There is no newline to count. */
9854 - CHARPOS (tlendpos
)
9855 - MATRIX_ROW_START_CHARPOS (row
));
9856 delta_bytes
= (Z_BYTE
9857 - BYTEPOS (tlendpos
)
9858 - MATRIX_ROW_START_BYTEPOS (row
));
9862 /* This line ends in a newline. Must take
9863 account of the newline and the rest of the
9864 text that follows. */
9866 - CHARPOS (tlendpos
)
9867 - MATRIX_ROW_START_CHARPOS (row
));
9868 delta_bytes
= (Z_BYTE
9869 - BYTEPOS (tlendpos
)
9870 - MATRIX_ROW_START_BYTEPOS (row
));
9873 increment_matrix_positions (w
->current_matrix
,
9875 w
->current_matrix
->nrows
,
9876 delta
, delta_bytes
);
9879 /* If this row displays text now but previously didn't,
9880 or vice versa, w->window_end_vpos may have to be
9882 if ((it
.glyph_row
- 1)->displays_text_p
)
9884 if (XFASTINT (w
->window_end_vpos
) < this_line_vpos
)
9885 XSETINT (w
->window_end_vpos
, this_line_vpos
);
9887 else if (XFASTINT (w
->window_end_vpos
) == this_line_vpos
9888 && this_line_vpos
> 0)
9889 XSETINT (w
->window_end_vpos
, this_line_vpos
- 1);
9890 w
->window_end_valid
= Qnil
;
9892 /* Update hint: No need to try to scroll in update_window. */
9893 w
->desired_matrix
->no_scrolling_p
= 1;
9896 *w
->desired_matrix
->method
= 0;
9897 debug_method_add (w
, "optimization 1");
9904 else if (/* Cursor position hasn't changed. */
9905 PT
== XFASTINT (w
->last_point
)
9906 /* Make sure the cursor was last displayed
9907 in this window. Otherwise we have to reposition it. */
9908 && 0 <= w
->cursor
.vpos
9909 && WINDOW_TOTAL_LINES (w
) > w
->cursor
.vpos
)
9913 do_pending_window_change (1);
9915 /* We used to always goto end_of_redisplay here, but this
9916 isn't enough if we have a blinking cursor. */
9917 if (w
->cursor_off_p
== w
->last_cursor_off_p
)
9918 goto end_of_redisplay
;
9922 /* If highlighting the region, or if the cursor is in the echo area,
9923 then we can't just move the cursor. */
9924 else if (! (!NILP (Vtransient_mark_mode
)
9925 && !NILP (current_buffer
->mark_active
))
9926 && (EQ (selected_window
, current_buffer
->last_selected_window
)
9927 || highlight_nonselected_windows
)
9928 && NILP (w
->region_showing
)
9929 && NILP (Vshow_trailing_whitespace
)
9930 && !cursor_in_echo_area
)
9933 struct glyph_row
*row
;
9935 /* Skip from tlbufpos to PT and see where it is. Note that
9936 PT may be in invisible text. If so, we will end at the
9937 next visible position. */
9938 init_iterator (&it
, w
, CHARPOS (tlbufpos
), BYTEPOS (tlbufpos
),
9939 NULL
, DEFAULT_FACE_ID
);
9940 it
.current_x
= this_line_start_x
;
9941 it
.current_y
= this_line_y
;
9942 it
.vpos
= this_line_vpos
;
9944 /* The call to move_it_to stops in front of PT, but
9945 moves over before-strings. */
9946 move_it_to (&it
, PT
, -1, -1, -1, MOVE_TO_POS
);
9948 if (it
.vpos
== this_line_vpos
9949 && (row
= MATRIX_ROW (w
->current_matrix
, this_line_vpos
),
9952 xassert (this_line_vpos
== it
.vpos
);
9953 xassert (this_line_y
== it
.current_y
);
9954 set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0, 0, 0);
9956 *w
->desired_matrix
->method
= 0;
9957 debug_method_add (w
, "optimization 3");
9966 /* Text changed drastically or point moved off of line. */
9967 SET_MATRIX_ROW_ENABLED_P (w
->desired_matrix
, this_line_vpos
, 0);
9970 CHARPOS (this_line_start_pos
) = 0;
9971 consider_all_windows_p
|= buffer_shared
> 1;
9972 ++clear_face_cache_count
;
9975 /* Build desired matrices, and update the display. If
9976 consider_all_windows_p is non-zero, do it for all windows on all
9977 frames. Otherwise do it for selected_window, only. */
9979 if (consider_all_windows_p
)
9981 Lisp_Object tail
, frame
;
9982 int i
, n
= 0, size
= 50;
9983 struct frame
**updated
9984 = (struct frame
**) alloca (size
* sizeof *updated
);
9986 /* Clear the face cache eventually. */
9987 if (clear_face_cache_count
> CLEAR_FACE_CACHE_COUNT
)
9989 clear_face_cache (0);
9990 clear_face_cache_count
= 0;
9993 /* Recompute # windows showing selected buffer. This will be
9994 incremented each time such a window is displayed. */
9997 FOR_EACH_FRAME (tail
, frame
)
9999 struct frame
*f
= XFRAME (frame
);
10001 if (FRAME_WINDOW_P (f
) || f
== sf
)
10003 #ifdef HAVE_WINDOW_SYSTEM
10004 if (clear_face_cache_count
% 50 == 0
10005 && FRAME_WINDOW_P (f
))
10006 clear_image_cache (f
, 0);
10007 #endif /* HAVE_WINDOW_SYSTEM */
10009 /* Mark all the scroll bars to be removed; we'll redeem
10010 the ones we want when we redisplay their windows. */
10011 if (condemn_scroll_bars_hook
)
10012 condemn_scroll_bars_hook (f
);
10014 if (FRAME_VISIBLE_P (f
) && !FRAME_OBSCURED_P (f
))
10015 redisplay_windows (FRAME_ROOT_WINDOW (f
));
10017 /* Any scroll bars which redisplay_windows should have
10018 nuked should now go away. */
10019 if (judge_scroll_bars_hook
)
10020 judge_scroll_bars_hook (f
);
10022 /* If fonts changed, display again. */
10023 /* ??? rms: I suspect it is a mistake to jump all the way
10024 back to retry here. It should just retry this frame. */
10025 if (fonts_changed_p
)
10028 if (FRAME_VISIBLE_P (f
) && !FRAME_OBSCURED_P (f
))
10030 /* See if we have to hscroll. */
10031 if (hscroll_windows (f
->root_window
))
10034 /* Prevent various kinds of signals during display
10035 update. stdio is not robust about handling
10036 signals, which can cause an apparent I/O
10038 if (interrupt_input
)
10039 unrequest_sigio ();
10042 /* Update the display. */
10043 set_window_update_flags (XWINDOW (f
->root_window
), 1);
10044 pause
|= update_frame (f
, 0, 0);
10045 #if 0 /* Exiting the loop can leave the wrong value for buffer_shared. */
10052 int nbytes
= size
* sizeof *updated
;
10053 struct frame
**p
= (struct frame
**) alloca (2 * nbytes
);
10054 bcopy (updated
, p
, nbytes
);
10063 /* Do the mark_window_display_accurate after all windows have
10064 been redisplayed because this call resets flags in buffers
10065 which are needed for proper redisplay. */
10066 for (i
= 0; i
< n
; ++i
)
10068 struct frame
*f
= updated
[i
];
10069 mark_window_display_accurate (f
->root_window
, 1);
10070 if (frame_up_to_date_hook
)
10071 frame_up_to_date_hook (f
);
10074 else if (FRAME_VISIBLE_P (sf
) && !FRAME_OBSCURED_P (sf
))
10076 Lisp_Object mini_window
;
10077 struct frame
*mini_frame
;
10079 displayed_buffer
= XBUFFER (XWINDOW (selected_window
)->buffer
);
10080 /* Use list_of_error, not Qerror, so that
10081 we catch only errors and don't run the debugger. */
10082 internal_condition_case_1 (redisplay_window_1
, selected_window
,
10084 redisplay_window_error
);
10086 /* Compare desired and current matrices, perform output. */
10089 /* If fonts changed, display again. */
10090 if (fonts_changed_p
)
10093 /* Prevent various kinds of signals during display update.
10094 stdio is not robust about handling signals,
10095 which can cause an apparent I/O error. */
10096 if (interrupt_input
)
10097 unrequest_sigio ();
10100 if (FRAME_VISIBLE_P (sf
) && !FRAME_OBSCURED_P (sf
))
10102 if (hscroll_windows (selected_window
))
10105 XWINDOW (selected_window
)->must_be_updated_p
= 1;
10106 pause
= update_frame (sf
, 0, 0);
10109 /* We may have called echo_area_display at the top of this
10110 function. If the echo area is on another frame, that may
10111 have put text on a frame other than the selected one, so the
10112 above call to update_frame would not have caught it. Catch
10114 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
10115 mini_frame
= XFRAME (WINDOW_FRAME (XWINDOW (mini_window
)));
10117 if (mini_frame
!= sf
&& FRAME_WINDOW_P (mini_frame
))
10119 XWINDOW (mini_window
)->must_be_updated_p
= 1;
10120 pause
|= update_frame (mini_frame
, 0, 0);
10121 if (!pause
&& hscroll_windows (mini_window
))
10126 /* If display was paused because of pending input, make sure we do a
10127 thorough update the next time. */
10130 /* Prevent the optimization at the beginning of
10131 redisplay_internal that tries a single-line update of the
10132 line containing the cursor in the selected window. */
10133 CHARPOS (this_line_start_pos
) = 0;
10135 /* Let the overlay arrow be updated the next time. */
10136 if (!NILP (last_arrow_position
))
10138 last_arrow_position
= Qt
;
10139 last_arrow_string
= Qt
;
10142 /* If we pause after scrolling, some rows in the current
10143 matrices of some windows are not valid. */
10144 if (!WINDOW_FULL_WIDTH_P (w
)
10145 && !FRAME_WINDOW_P (XFRAME (w
->frame
)))
10146 update_mode_lines
= 1;
10150 if (!consider_all_windows_p
)
10152 /* This has already been done above if
10153 consider_all_windows_p is set. */
10154 mark_window_display_accurate_1 (w
, 1);
10156 last_arrow_position
= COERCE_MARKER (Voverlay_arrow_position
);
10157 last_arrow_string
= Voverlay_arrow_string
;
10159 if (frame_up_to_date_hook
!= 0)
10160 frame_up_to_date_hook (sf
);
10163 update_mode_lines
= 0;
10164 windows_or_buffers_changed
= 0;
10165 cursor_type_changed
= 0;
10168 /* Start SIGIO interrupts coming again. Having them off during the
10169 code above makes it less likely one will discard output, but not
10170 impossible, since there might be stuff in the system buffer here.
10171 But it is much hairier to try to do anything about that. */
10172 if (interrupt_input
)
10176 /* If a frame has become visible which was not before, redisplay
10177 again, so that we display it. Expose events for such a frame
10178 (which it gets when becoming visible) don't call the parts of
10179 redisplay constructing glyphs, so simply exposing a frame won't
10180 display anything in this case. So, we have to display these
10181 frames here explicitly. */
10184 Lisp_Object tail
, frame
;
10187 FOR_EACH_FRAME (tail
, frame
)
10189 int this_is_visible
= 0;
10191 if (XFRAME (frame
)->visible
)
10192 this_is_visible
= 1;
10193 FRAME_SAMPLE_VISIBILITY (XFRAME (frame
));
10194 if (XFRAME (frame
)->visible
)
10195 this_is_visible
= 1;
10197 if (this_is_visible
)
10201 if (new_count
!= number_of_visible_frames
)
10202 windows_or_buffers_changed
++;
10205 /* Change frame size now if a change is pending. */
10206 do_pending_window_change (1);
10208 /* If we just did a pending size change, or have additional
10209 visible frames, redisplay again. */
10210 if (windows_or_buffers_changed
&& !pause
)
10214 unbind_to (count
, Qnil
);
10219 /* Redisplay, but leave alone any recent echo area message unless
10220 another message has been requested in its place.
10222 This is useful in situations where you need to redisplay but no
10223 user action has occurred, making it inappropriate for the message
10224 area to be cleared. See tracking_off and
10225 wait_reading_process_input for examples of these situations.
10227 FROM_WHERE is an integer saying from where this function was
10228 called. This is useful for debugging. */
10231 redisplay_preserve_echo_area (from_where
)
10234 TRACE ((stderr
, "redisplay_preserve_echo_area (%d)\n", from_where
));
10236 if (!NILP (echo_area_buffer
[1]))
10238 /* We have a previously displayed message, but no current
10239 message. Redisplay the previous message. */
10240 display_last_displayed_message_p
= 1;
10241 redisplay_internal (1);
10242 display_last_displayed_message_p
= 0;
10245 redisplay_internal (1);
10249 /* Function registered with record_unwind_protect in
10250 redisplay_internal. Reset redisplaying_p to the value it had
10251 before redisplay_internal was called, and clear
10252 prevent_freeing_realized_faces_p. */
10255 unwind_redisplay (old_redisplaying_p
)
10256 Lisp_Object old_redisplaying_p
;
10258 redisplaying_p
= XFASTINT (old_redisplaying_p
);
10263 /* Mark the display of window W as accurate or inaccurate. If
10264 ACCURATE_P is non-zero mark display of W as accurate. If
10265 ACCURATE_P is zero, arrange for W to be redisplayed the next time
10266 redisplay_internal is called. */
10269 mark_window_display_accurate_1 (w
, accurate_p
)
10273 if (BUFFERP (w
->buffer
))
10275 struct buffer
*b
= XBUFFER (w
->buffer
);
10278 = make_number (accurate_p
? BUF_MODIFF (b
) : 0);
10279 w
->last_overlay_modified
10280 = make_number (accurate_p
? BUF_OVERLAY_MODIFF (b
) : 0);
10282 = BUF_MODIFF (b
) > BUF_SAVE_MODIFF (b
) ? Qt
: Qnil
;
10286 b
->clip_changed
= 0;
10287 b
->prevent_redisplay_optimizations_p
= 0;
10289 BUF_UNCHANGED_MODIFIED (b
) = BUF_MODIFF (b
);
10290 BUF_OVERLAY_UNCHANGED_MODIFIED (b
) = BUF_OVERLAY_MODIFF (b
);
10291 BUF_BEG_UNCHANGED (b
) = BUF_GPT (b
) - BUF_BEG (b
);
10292 BUF_END_UNCHANGED (b
) = BUF_Z (b
) - BUF_GPT (b
);
10294 w
->current_matrix
->buffer
= b
;
10295 w
->current_matrix
->begv
= BUF_BEGV (b
);
10296 w
->current_matrix
->zv
= BUF_ZV (b
);
10298 w
->last_cursor
= w
->cursor
;
10299 w
->last_cursor_off_p
= w
->cursor_off_p
;
10301 if (w
== XWINDOW (selected_window
))
10302 w
->last_point
= make_number (BUF_PT (b
));
10304 w
->last_point
= make_number (XMARKER (w
->pointm
)->charpos
);
10310 w
->window_end_valid
= w
->buffer
;
10311 #if 0 /* This is incorrect with variable-height lines. */
10312 xassert (XINT (w
->window_end_vpos
)
10313 < (WINDOW_TOTAL_LINES (w
)
10314 - (WINDOW_WANTS_MODELINE_P (w
) ? 1 : 0)));
10316 w
->update_mode_line
= Qnil
;
10321 /* Mark the display of windows in the window tree rooted at WINDOW as
10322 accurate or inaccurate. If ACCURATE_P is non-zero mark display of
10323 windows as accurate. If ACCURATE_P is zero, arrange for windows to
10324 be redisplayed the next time redisplay_internal is called. */
10327 mark_window_display_accurate (window
, accurate_p
)
10328 Lisp_Object window
;
10333 for (; !NILP (window
); window
= w
->next
)
10335 w
= XWINDOW (window
);
10336 mark_window_display_accurate_1 (w
, accurate_p
);
10338 if (!NILP (w
->vchild
))
10339 mark_window_display_accurate (w
->vchild
, accurate_p
);
10340 if (!NILP (w
->hchild
))
10341 mark_window_display_accurate (w
->hchild
, accurate_p
);
10346 last_arrow_position
= COERCE_MARKER (Voverlay_arrow_position
);
10347 last_arrow_string
= Voverlay_arrow_string
;
10351 /* Force a thorough redisplay the next time by setting
10352 last_arrow_position and last_arrow_string to t, which is
10353 unequal to any useful value of Voverlay_arrow_... */
10354 last_arrow_position
= Qt
;
10355 last_arrow_string
= Qt
;
10360 /* Return value in display table DP (Lisp_Char_Table *) for character
10361 C. Since a display table doesn't have any parent, we don't have to
10362 follow parent. Do not call this function directly but use the
10363 macro DISP_CHAR_VECTOR. */
10366 disp_char_vector (dp
, c
)
10367 struct Lisp_Char_Table
*dp
;
10373 if (SINGLE_BYTE_CHAR_P (c
))
10374 return (dp
->contents
[c
]);
10376 SPLIT_CHAR (c
, code
[0], code
[1], code
[2]);
10379 else if (code
[2] < 32)
10382 /* Here, the possible range of code[0] (== charset ID) is
10383 128..max_charset. Since the top level char table contains data
10384 for multibyte characters after 256th element, we must increment
10385 code[0] by 128 to get a correct index. */
10387 code
[3] = -1; /* anchor */
10389 for (i
= 0; code
[i
] >= 0; i
++, dp
= XCHAR_TABLE (val
))
10391 val
= dp
->contents
[code
[i
]];
10392 if (!SUB_CHAR_TABLE_P (val
))
10393 return (NILP (val
) ? dp
->defalt
: val
);
10396 /* Here, val is a sub char table. We return the default value of
10398 return (dp
->defalt
);
10403 /***********************************************************************
10405 ***********************************************************************/
10407 /* Redisplay all leaf windows in the window tree rooted at WINDOW. */
10410 redisplay_windows (window
)
10411 Lisp_Object window
;
10413 while (!NILP (window
))
10415 struct window
*w
= XWINDOW (window
);
10417 if (!NILP (w
->hchild
))
10418 redisplay_windows (w
->hchild
);
10419 else if (!NILP (w
->vchild
))
10420 redisplay_windows (w
->vchild
);
10423 displayed_buffer
= XBUFFER (w
->buffer
);
10424 /* Use list_of_error, not Qerror, so that
10425 we catch only errors and don't run the debugger. */
10426 internal_condition_case_1 (redisplay_window_0
, window
,
10428 redisplay_window_error
);
10436 redisplay_window_error ()
10438 displayed_buffer
->display_error_modiff
= BUF_MODIFF (displayed_buffer
);
10443 redisplay_window_0 (window
)
10444 Lisp_Object window
;
10446 if (displayed_buffer
->display_error_modiff
< BUF_MODIFF (displayed_buffer
))
10447 redisplay_window (window
, 0);
10452 redisplay_window_1 (window
)
10453 Lisp_Object window
;
10455 if (displayed_buffer
->display_error_modiff
< BUF_MODIFF (displayed_buffer
))
10456 redisplay_window (window
, 1);
10461 /* Increment GLYPH until it reaches END or CONDITION fails while
10462 adding (GLYPH)->pixel_width to X. */
10464 #define SKIP_GLYPHS(glyph, end, x, condition) \
10467 (x) += (glyph)->pixel_width; \
10470 while ((glyph) < (end) && (condition))
10473 /* Set cursor position of W. PT is assumed to be displayed in ROW.
10474 DELTA is the number of bytes by which positions recorded in ROW
10475 differ from current buffer positions. */
10478 set_cursor_from_row (w
, row
, matrix
, delta
, delta_bytes
, dy
, dvpos
)
10480 struct glyph_row
*row
;
10481 struct glyph_matrix
*matrix
;
10482 int delta
, delta_bytes
, dy
, dvpos
;
10484 struct glyph
*glyph
= row
->glyphs
[TEXT_AREA
];
10485 struct glyph
*end
= glyph
+ row
->used
[TEXT_AREA
];
10486 /* The first glyph that starts a sequence of glyphs from string. */
10487 struct glyph
*string_start
;
10488 /* The X coordinate of string_start. */
10489 int string_start_x
;
10490 /* The last known character position. */
10491 int last_pos
= MATRIX_ROW_START_CHARPOS (row
) + delta
;
10492 /* The last known character position before string_start. */
10493 int string_before_pos
;
10495 int pt_old
= PT
- delta
;
10497 /* Skip over glyphs not having an object at the start of the row.
10498 These are special glyphs like truncation marks on terminal
10500 if (row
->displays_text_p
)
10502 && INTEGERP (glyph
->object
)
10503 && glyph
->charpos
< 0)
10505 x
+= glyph
->pixel_width
;
10509 string_start
= NULL
;
10511 && !INTEGERP (glyph
->object
)
10512 && (!BUFFERP (glyph
->object
)
10513 || (last_pos
= glyph
->charpos
) < pt_old
))
10515 if (! STRINGP (glyph
->object
))
10517 string_start
= NULL
;
10518 x
+= glyph
->pixel_width
;
10523 string_before_pos
= last_pos
;
10524 string_start
= glyph
;
10525 string_start_x
= x
;
10526 /* Skip all glyphs from string. */
10527 SKIP_GLYPHS (glyph
, end
, x
, STRINGP (glyph
->object
));
10532 && (glyph
== end
|| !BUFFERP (glyph
->object
) || last_pos
> pt_old
))
10534 /* We may have skipped over point because the previous glyphs
10535 are from string. As there's no easy way to know the
10536 character position of the current glyph, find the correct
10537 glyph on point by scanning from string_start again. */
10539 Lisp_Object string
;
10542 limit
= make_number (pt_old
+ 1);
10544 glyph
= string_start
;
10545 x
= string_start_x
;
10546 string
= glyph
->object
;
10547 pos
= string_buffer_position (w
, string
, string_before_pos
);
10548 /* If STRING is from overlay, LAST_POS == 0. We skip such glyphs
10549 because we always put cursor after overlay strings. */
10550 while (pos
== 0 && glyph
< end
)
10552 string
= glyph
->object
;
10553 SKIP_GLYPHS (glyph
, end
, x
, EQ (glyph
->object
, string
));
10555 pos
= string_buffer_position (w
, glyph
->object
, string_before_pos
);
10558 while (glyph
< end
)
10560 pos
= XINT (Fnext_single_char_property_change
10561 (make_number (pos
), Qdisplay
, Qnil
, limit
));
10564 /* Skip glyphs from the same string. */
10565 string
= glyph
->object
;
10566 SKIP_GLYPHS (glyph
, end
, x
, EQ (glyph
->object
, string
));
10567 /* Skip glyphs from an overlay. */
10569 && ! string_buffer_position (w
, glyph
->object
, pos
))
10571 string
= glyph
->object
;
10572 SKIP_GLYPHS (glyph
, end
, x
, EQ (glyph
->object
, string
));
10577 w
->cursor
.hpos
= glyph
- row
->glyphs
[TEXT_AREA
];
10579 w
->cursor
.vpos
= MATRIX_ROW_VPOS (row
, matrix
) + dvpos
;
10580 w
->cursor
.y
= row
->y
+ dy
;
10582 if (w
== XWINDOW (selected_window
))
10584 if (!row
->continued_p
10585 && !MATRIX_ROW_CONTINUATION_LINE_P (row
)
10588 this_line_buffer
= XBUFFER (w
->buffer
);
10590 CHARPOS (this_line_start_pos
)
10591 = MATRIX_ROW_START_CHARPOS (row
) + delta
;
10592 BYTEPOS (this_line_start_pos
)
10593 = MATRIX_ROW_START_BYTEPOS (row
) + delta_bytes
;
10595 CHARPOS (this_line_end_pos
)
10596 = Z
- (MATRIX_ROW_END_CHARPOS (row
) + delta
);
10597 BYTEPOS (this_line_end_pos
)
10598 = Z_BYTE
- (MATRIX_ROW_END_BYTEPOS (row
) + delta_bytes
);
10600 this_line_y
= w
->cursor
.y
;
10601 this_line_pixel_height
= row
->height
;
10602 this_line_vpos
= w
->cursor
.vpos
;
10603 this_line_start_x
= row
->x
;
10606 CHARPOS (this_line_start_pos
) = 0;
10611 /* Run window scroll functions, if any, for WINDOW with new window
10612 start STARTP. Sets the window start of WINDOW to that position.
10614 We assume that the window's buffer is really current. */
10616 static INLINE
struct text_pos
10617 run_window_scroll_functions (window
, startp
)
10618 Lisp_Object window
;
10619 struct text_pos startp
;
10621 struct window
*w
= XWINDOW (window
);
10622 SET_MARKER_FROM_TEXT_POS (w
->start
, startp
);
10624 if (current_buffer
!= XBUFFER (w
->buffer
))
10627 if (!NILP (Vwindow_scroll_functions
))
10629 run_hook_with_args_2 (Qwindow_scroll_functions
, window
,
10630 make_number (CHARPOS (startp
)));
10631 SET_TEXT_POS_FROM_MARKER (startp
, w
->start
);
10632 /* In case the hook functions switch buffers. */
10633 if (current_buffer
!= XBUFFER (w
->buffer
))
10634 set_buffer_internal_1 (XBUFFER (w
->buffer
));
10641 /* Make sure the line containing the cursor is fully visible.
10642 A value of 1 means there is nothing to be done.
10643 (Either the line is fully visible, or it cannot be made so,
10644 or we cannot tell.)
10645 A value of 0 means the caller should do scrolling
10646 as if point had gone off the screen. */
10649 make_cursor_line_fully_visible (w
)
10652 struct glyph_matrix
*matrix
;
10653 struct glyph_row
*row
;
10656 /* It's not always possible to find the cursor, e.g, when a window
10657 is full of overlay strings. Don't do anything in that case. */
10658 if (w
->cursor
.vpos
< 0)
10661 matrix
= w
->desired_matrix
;
10662 row
= MATRIX_ROW (matrix
, w
->cursor
.vpos
);
10664 /* If the cursor row is not partially visible, there's nothing to do. */
10665 if (!MATRIX_ROW_PARTIALLY_VISIBLE_P (row
))
10668 /* If the row the cursor is in is taller than the window's height,
10669 it's not clear what to do, so do nothing. */
10670 window_height
= window_box_height (w
);
10671 if (row
->height
>= window_height
)
10677 /* This code used to try to scroll the window just enough to make
10678 the line visible. It returned 0 to say that the caller should
10679 allocate larger glyph matrices. */
10681 if (MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P (w
, row
))
10683 int dy
= row
->height
- row
->visible_height
;
10686 shift_glyph_matrix (w
, matrix
, 0, matrix
->nrows
, dy
);
10688 else /* MATRIX_ROW_PARTIALLY_VISIBLE_AT_BOTTOM_P (w, row)) */
10690 int dy
= - (row
->height
- row
->visible_height
);
10693 shift_glyph_matrix (w
, matrix
, 0, matrix
->nrows
, dy
);
10696 /* When we change the cursor y-position of the selected window,
10697 change this_line_y as well so that the display optimization for
10698 the cursor line of the selected window in redisplay_internal uses
10699 the correct y-position. */
10700 if (w
== XWINDOW (selected_window
))
10701 this_line_y
= w
->cursor
.y
;
10703 /* If vscrolling requires a larger glyph matrix, arrange for a fresh
10704 redisplay with larger matrices. */
10705 if (matrix
->nrows
< required_matrix_height (w
))
10707 fonts_changed_p
= 1;
10716 /* Try scrolling PT into view in window WINDOW. JUST_THIS_ONE_P
10717 non-zero means only WINDOW is redisplayed in redisplay_internal.
10718 TEMP_SCROLL_STEP has the same meaning as scroll_step, and is used
10719 in redisplay_window to bring a partially visible line into view in
10720 the case that only the cursor has moved.
10722 LAST_LINE_MISFIT should be nonzero if we're scrolling because the
10723 last screen line's vertical height extends past the end of the screen.
10727 1 if scrolling succeeded
10729 0 if scrolling didn't find point.
10731 -1 if new fonts have been loaded so that we must interrupt
10732 redisplay, adjust glyph matrices, and try again. */
10738 SCROLLING_NEED_LARGER_MATRICES
10742 try_scrolling (window
, just_this_one_p
, scroll_conservatively
,
10743 scroll_step
, temp_scroll_step
, last_line_misfit
)
10744 Lisp_Object window
;
10745 int just_this_one_p
;
10746 EMACS_INT scroll_conservatively
, scroll_step
;
10747 int temp_scroll_step
;
10748 int last_line_misfit
;
10750 struct window
*w
= XWINDOW (window
);
10751 struct frame
*f
= XFRAME (w
->frame
);
10752 struct text_pos scroll_margin_pos
;
10753 struct text_pos pos
;
10754 struct text_pos startp
;
10756 Lisp_Object window_end
;
10757 int this_scroll_margin
;
10761 int amount_to_scroll
= 0;
10762 Lisp_Object aggressive
;
10764 int end_scroll_margin
;
10767 debug_method_add (w
, "try_scrolling");
10770 SET_TEXT_POS_FROM_MARKER (startp
, w
->start
);
10772 /* Compute scroll margin height in pixels. We scroll when point is
10773 within this distance from the top or bottom of the window. */
10774 if (scroll_margin
> 0)
10776 this_scroll_margin
= min (scroll_margin
, WINDOW_TOTAL_LINES (w
) / 4);
10777 this_scroll_margin
*= FRAME_LINE_HEIGHT (f
);
10780 this_scroll_margin
= 0;
10782 /* Compute how much we should try to scroll maximally to bring point
10784 if (scroll_step
|| scroll_conservatively
|| temp_scroll_step
)
10785 scroll_max
= max (scroll_step
,
10786 max (scroll_conservatively
, temp_scroll_step
));
10787 else if (NUMBERP (current_buffer
->scroll_down_aggressively
)
10788 || NUMBERP (current_buffer
->scroll_up_aggressively
))
10789 /* We're trying to scroll because of aggressive scrolling
10790 but no scroll_step is set. Choose an arbitrary one. Maybe
10791 there should be a variable for this. */
10795 scroll_max
*= FRAME_LINE_HEIGHT (f
);
10797 /* Decide whether we have to scroll down. Start at the window end
10798 and move this_scroll_margin up to find the position of the scroll
10800 window_end
= Fwindow_end (window
, Qt
);
10804 CHARPOS (scroll_margin_pos
) = XINT (window_end
);
10805 BYTEPOS (scroll_margin_pos
) = CHAR_TO_BYTE (CHARPOS (scroll_margin_pos
));
10807 end_scroll_margin
= this_scroll_margin
+ !!last_line_misfit
;
10808 if (end_scroll_margin
)
10810 start_display (&it
, w
, scroll_margin_pos
);
10811 move_it_vertically (&it
, - end_scroll_margin
);
10812 scroll_margin_pos
= it
.current
.pos
;
10815 if (PT
>= CHARPOS (scroll_margin_pos
))
10819 /* Point is in the scroll margin at the bottom of the window, or
10820 below. Compute a new window start that makes point visible. */
10822 /* Compute the distance from the scroll margin to PT.
10823 Give up if the distance is greater than scroll_max. */
10824 start_display (&it
, w
, scroll_margin_pos
);
10826 move_it_to (&it
, PT
, 0, it
.last_visible_y
, -1,
10827 MOVE_TO_POS
| MOVE_TO_X
| MOVE_TO_Y
);
10829 /* To make point visible, we have to move the window start
10830 down so that the line the cursor is in is visible, which
10831 means we have to add in the height of the cursor line. */
10832 dy
= line_bottom_y (&it
) - y0
;
10834 if (dy
> scroll_max
)
10835 return SCROLLING_FAILED
;
10837 /* Move the window start down. If scrolling conservatively,
10838 move it just enough down to make point visible. If
10839 scroll_step is set, move it down by scroll_step. */
10840 start_display (&it
, w
, startp
);
10842 if (scroll_conservatively
)
10843 /* Set AMOUNT_TO_SCROLL to at least one line,
10844 and at most scroll_conservatively lines. */
10846 = min (max (dy
, FRAME_LINE_HEIGHT (f
)),
10847 FRAME_LINE_HEIGHT (f
) * scroll_conservatively
);
10848 else if (scroll_step
|| temp_scroll_step
)
10849 amount_to_scroll
= scroll_max
;
10852 aggressive
= current_buffer
->scroll_up_aggressively
;
10853 height
= WINDOW_BOX_TEXT_HEIGHT (w
);
10854 if (NUMBERP (aggressive
))
10855 amount_to_scroll
= XFLOATINT (aggressive
) * height
;
10858 if (amount_to_scroll
<= 0)
10859 return SCROLLING_FAILED
;
10861 /* If moving by amount_to_scroll leaves STARTP unchanged,
10862 move it down one screen line. */
10864 move_it_vertically (&it
, amount_to_scroll
);
10865 if (CHARPOS (it
.current
.pos
) == CHARPOS (startp
))
10866 move_it_by_lines (&it
, 1, 1);
10867 startp
= it
.current
.pos
;
10871 /* See if point is inside the scroll margin at the top of the
10873 scroll_margin_pos
= startp
;
10874 if (this_scroll_margin
)
10876 start_display (&it
, w
, startp
);
10877 move_it_vertically (&it
, this_scroll_margin
);
10878 scroll_margin_pos
= it
.current
.pos
;
10881 if (PT
< CHARPOS (scroll_margin_pos
))
10883 /* Point is in the scroll margin at the top of the window or
10884 above what is displayed in the window. */
10887 /* Compute the vertical distance from PT to the scroll
10888 margin position. Give up if distance is greater than
10890 SET_TEXT_POS (pos
, PT
, PT_BYTE
);
10891 start_display (&it
, w
, pos
);
10893 move_it_to (&it
, CHARPOS (scroll_margin_pos
), 0,
10894 it
.last_visible_y
, -1,
10895 MOVE_TO_POS
| MOVE_TO_X
| MOVE_TO_Y
);
10896 dy
= it
.current_y
- y0
;
10897 if (dy
> scroll_max
)
10898 return SCROLLING_FAILED
;
10900 /* Compute new window start. */
10901 start_display (&it
, w
, startp
);
10903 if (scroll_conservatively
)
10905 max (dy
, FRAME_LINE_HEIGHT (f
) * max (scroll_step
, temp_scroll_step
));
10906 else if (scroll_step
|| temp_scroll_step
)
10907 amount_to_scroll
= scroll_max
;
10910 aggressive
= current_buffer
->scroll_down_aggressively
;
10911 height
= WINDOW_BOX_TEXT_HEIGHT (w
);
10912 if (NUMBERP (aggressive
))
10913 amount_to_scroll
= XFLOATINT (aggressive
) * height
;
10916 if (amount_to_scroll
<= 0)
10917 return SCROLLING_FAILED
;
10919 move_it_vertically (&it
, - amount_to_scroll
);
10920 startp
= it
.current
.pos
;
10924 /* Run window scroll functions. */
10925 startp
= run_window_scroll_functions (window
, startp
);
10927 /* Display the window. Give up if new fonts are loaded, or if point
10929 if (!try_window (window
, startp
))
10930 rc
= SCROLLING_NEED_LARGER_MATRICES
;
10931 else if (w
->cursor
.vpos
< 0)
10933 clear_glyph_matrix (w
->desired_matrix
);
10934 rc
= SCROLLING_FAILED
;
10938 /* Maybe forget recorded base line for line number display. */
10939 if (!just_this_one_p
10940 || current_buffer
->clip_changed
10941 || BEG_UNCHANGED
< CHARPOS (startp
))
10942 w
->base_line_number
= Qnil
;
10944 /* If cursor ends up on a partially visible line,
10945 treat that as being off the bottom of the screen. */
10946 if (! make_cursor_line_fully_visible (w
))
10948 clear_glyph_matrix (w
->desired_matrix
);
10949 last_line_misfit
= 1;
10952 rc
= SCROLLING_SUCCESS
;
10959 /* Compute a suitable window start for window W if display of W starts
10960 on a continuation line. Value is non-zero if a new window start
10963 The new window start will be computed, based on W's width, starting
10964 from the start of the continued line. It is the start of the
10965 screen line with the minimum distance from the old start W->start. */
10968 compute_window_start_on_continuation_line (w
)
10971 struct text_pos pos
, start_pos
;
10972 int window_start_changed_p
= 0;
10974 SET_TEXT_POS_FROM_MARKER (start_pos
, w
->start
);
10976 /* If window start is on a continuation line... Window start may be
10977 < BEGV in case there's invisible text at the start of the
10978 buffer (M-x rmail, for example). */
10979 if (CHARPOS (start_pos
) > BEGV
10980 && FETCH_BYTE (BYTEPOS (start_pos
) - 1) != '\n')
10983 struct glyph_row
*row
;
10985 /* Handle the case that the window start is out of range. */
10986 if (CHARPOS (start_pos
) < BEGV
)
10987 SET_TEXT_POS (start_pos
, BEGV
, BEGV_BYTE
);
10988 else if (CHARPOS (start_pos
) > ZV
)
10989 SET_TEXT_POS (start_pos
, ZV
, ZV_BYTE
);
10991 /* Find the start of the continued line. This should be fast
10992 because scan_buffer is fast (newline cache). */
10993 row
= w
->desired_matrix
->rows
+ (WINDOW_WANTS_HEADER_LINE_P (w
) ? 1 : 0);
10994 init_iterator (&it
, w
, CHARPOS (start_pos
), BYTEPOS (start_pos
),
10995 row
, DEFAULT_FACE_ID
);
10996 reseat_at_previous_visible_line_start (&it
);
10998 /* If the line start is "too far" away from the window start,
10999 say it takes too much time to compute a new window start. */
11000 if (CHARPOS (start_pos
) - IT_CHARPOS (it
)
11001 < WINDOW_TOTAL_LINES (w
) * WINDOW_TOTAL_COLS (w
))
11003 int min_distance
, distance
;
11005 /* Move forward by display lines to find the new window
11006 start. If window width was enlarged, the new start can
11007 be expected to be > the old start. If window width was
11008 decreased, the new window start will be < the old start.
11009 So, we're looking for the display line start with the
11010 minimum distance from the old window start. */
11011 pos
= it
.current
.pos
;
11012 min_distance
= INFINITY
;
11013 while ((distance
= abs (CHARPOS (start_pos
) - IT_CHARPOS (it
))),
11014 distance
< min_distance
)
11016 min_distance
= distance
;
11017 pos
= it
.current
.pos
;
11018 move_it_by_lines (&it
, 1, 0);
11021 /* Set the window start there. */
11022 SET_MARKER_FROM_TEXT_POS (w
->start
, pos
);
11023 window_start_changed_p
= 1;
11027 return window_start_changed_p
;
11031 /* Try cursor movement in case text has not changed in window WINDOW,
11032 with window start STARTP. Value is
11034 CURSOR_MOVEMENT_SUCCESS if successful
11036 CURSOR_MOVEMENT_CANNOT_BE_USED if this method cannot be used
11038 CURSOR_MOVEMENT_MUST_SCROLL if we know we have to scroll the
11039 display. *SCROLL_STEP is set to 1, under certain circumstances, if
11040 we want to scroll as if scroll-step were set to 1. See the code.
11042 CURSOR_MOVEMENT_NEED_LARGER_MATRICES if we need larger matrices, in
11043 which case we have to abort this redisplay, and adjust matrices
11048 CURSOR_MOVEMENT_SUCCESS
,
11049 CURSOR_MOVEMENT_CANNOT_BE_USED
,
11050 CURSOR_MOVEMENT_MUST_SCROLL
,
11051 CURSOR_MOVEMENT_NEED_LARGER_MATRICES
11055 try_cursor_movement (window
, startp
, scroll_step
)
11056 Lisp_Object window
;
11057 struct text_pos startp
;
11060 struct window
*w
= XWINDOW (window
);
11061 struct frame
*f
= XFRAME (w
->frame
);
11062 int rc
= CURSOR_MOVEMENT_CANNOT_BE_USED
;
11065 if (inhibit_try_cursor_movement
)
11069 /* Handle case where text has not changed, only point, and it has
11070 not moved off the frame. */
11071 if (/* Point may be in this window. */
11072 PT
>= CHARPOS (startp
)
11073 /* Selective display hasn't changed. */
11074 && !current_buffer
->clip_changed
11075 /* Function force-mode-line-update is used to force a thorough
11076 redisplay. It sets either windows_or_buffers_changed or
11077 update_mode_lines. So don't take a shortcut here for these
11079 && !update_mode_lines
11080 && !windows_or_buffers_changed
11081 && !cursor_type_changed
11082 /* Can't use this case if highlighting a region. When a
11083 region exists, cursor movement has to do more than just
11085 && !(!NILP (Vtransient_mark_mode
)
11086 && !NILP (current_buffer
->mark_active
))
11087 && NILP (w
->region_showing
)
11088 && NILP (Vshow_trailing_whitespace
)
11089 /* Right after splitting windows, last_point may be nil. */
11090 && INTEGERP (w
->last_point
)
11091 /* This code is not used for mini-buffer for the sake of the case
11092 of redisplaying to replace an echo area message; since in
11093 that case the mini-buffer contents per se are usually
11094 unchanged. This code is of no real use in the mini-buffer
11095 since the handling of this_line_start_pos, etc., in redisplay
11096 handles the same cases. */
11097 && !EQ (window
, minibuf_window
)
11098 /* When splitting windows or for new windows, it happens that
11099 redisplay is called with a nil window_end_vpos or one being
11100 larger than the window. This should really be fixed in
11101 window.c. I don't have this on my list, now, so we do
11102 approximately the same as the old redisplay code. --gerd. */
11103 && INTEGERP (w
->window_end_vpos
)
11104 && XFASTINT (w
->window_end_vpos
) < w
->current_matrix
->nrows
11105 && (FRAME_WINDOW_P (f
)
11106 || !MARKERP (Voverlay_arrow_position
)
11107 || current_buffer
!= XMARKER (Voverlay_arrow_position
)->buffer
))
11109 int this_scroll_margin
;
11110 struct glyph_row
*row
= NULL
;
11113 debug_method_add (w
, "cursor movement");
11116 /* Scroll if point within this distance from the top or bottom
11117 of the window. This is a pixel value. */
11118 this_scroll_margin
= max (0, scroll_margin
);
11119 this_scroll_margin
= min (this_scroll_margin
, WINDOW_TOTAL_LINES (w
) / 4);
11120 this_scroll_margin
*= FRAME_LINE_HEIGHT (f
);
11122 /* Start with the row the cursor was displayed during the last
11123 not paused redisplay. Give up if that row is not valid. */
11124 if (w
->last_cursor
.vpos
< 0
11125 || w
->last_cursor
.vpos
>= w
->current_matrix
->nrows
)
11126 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
11129 row
= MATRIX_ROW (w
->current_matrix
, w
->last_cursor
.vpos
);
11130 if (row
->mode_line_p
)
11132 if (!row
->enabled_p
)
11133 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
11136 if (rc
== CURSOR_MOVEMENT_CANNOT_BE_USED
)
11139 int last_y
= window_text_bottom_y (w
) - this_scroll_margin
;
11141 if (PT
> XFASTINT (w
->last_point
))
11143 /* Point has moved forward. */
11144 while (MATRIX_ROW_END_CHARPOS (row
) < PT
11145 && MATRIX_ROW_BOTTOM_Y (row
) < last_y
)
11147 xassert (row
->enabled_p
);
11151 /* The end position of a row equals the start position
11152 of the next row. If PT is there, we would rather
11153 display it in the next line. */
11154 while (MATRIX_ROW_BOTTOM_Y (row
) < last_y
11155 && MATRIX_ROW_END_CHARPOS (row
) == PT
11156 && !cursor_row_p (w
, row
))
11159 /* If within the scroll margin, scroll. Note that
11160 MATRIX_ROW_BOTTOM_Y gives the pixel position at which
11161 the next line would be drawn, and that
11162 this_scroll_margin can be zero. */
11163 if (MATRIX_ROW_BOTTOM_Y (row
) > last_y
11164 || PT
> MATRIX_ROW_END_CHARPOS (row
)
11165 /* Line is completely visible last line in window
11166 and PT is to be set in the next line. */
11167 || (MATRIX_ROW_BOTTOM_Y (row
) == last_y
11168 && PT
== MATRIX_ROW_END_CHARPOS (row
)
11169 && !row
->ends_at_zv_p
11170 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row
)))
11173 else if (PT
< XFASTINT (w
->last_point
))
11175 /* Cursor has to be moved backward. Note that PT >=
11176 CHARPOS (startp) because of the outer
11178 while (!row
->mode_line_p
11179 && (MATRIX_ROW_START_CHARPOS (row
) > PT
11180 || (MATRIX_ROW_START_CHARPOS (row
) == PT
11181 && MATRIX_ROW_STARTS_IN_MIDDLE_OF_CHAR_P (row
)))
11182 && (row
->y
> this_scroll_margin
11183 || CHARPOS (startp
) == BEGV
))
11185 xassert (row
->enabled_p
);
11189 /* Consider the following case: Window starts at BEGV,
11190 there is invisible, intangible text at BEGV, so that
11191 display starts at some point START > BEGV. It can
11192 happen that we are called with PT somewhere between
11193 BEGV and START. Try to handle that case. */
11194 if (row
< w
->current_matrix
->rows
11195 || row
->mode_line_p
)
11197 row
= w
->current_matrix
->rows
;
11198 if (row
->mode_line_p
)
11202 /* Due to newlines in overlay strings, we may have to
11203 skip forward over overlay strings. */
11204 while (MATRIX_ROW_BOTTOM_Y (row
) < last_y
11205 && MATRIX_ROW_END_CHARPOS (row
) == PT
11206 && !cursor_row_p (w
, row
))
11209 /* If within the scroll margin, scroll. */
11210 if (row
->y
< this_scroll_margin
11211 && CHARPOS (startp
) != BEGV
)
11215 if (PT
< MATRIX_ROW_START_CHARPOS (row
)
11216 || PT
> MATRIX_ROW_END_CHARPOS (row
))
11218 /* if PT is not in the glyph row, give up. */
11219 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
11221 else if (MATRIX_ROW_PARTIALLY_VISIBLE_P (row
))
11223 if (PT
== MATRIX_ROW_END_CHARPOS (row
)
11224 && !row
->ends_at_zv_p
11225 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row
))
11226 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
11227 else if (row
->height
> window_box_height (w
))
11229 /* If we end up in a partially visible line, let's
11230 make it fully visible, except when it's taller
11231 than the window, in which case we can't do much
11234 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
11238 set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0, 0, 0);
11239 if (!make_cursor_line_fully_visible (w
))
11240 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
11242 rc
= CURSOR_MOVEMENT_SUCCESS
;
11246 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
11249 set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0, 0, 0);
11250 rc
= CURSOR_MOVEMENT_SUCCESS
;
11259 set_vertical_scroll_bar (w
)
11262 int start
, end
, whole
;
11264 /* Calculate the start and end positions for the current window.
11265 At some point, it would be nice to choose between scrollbars
11266 which reflect the whole buffer size, with special markers
11267 indicating narrowing, and scrollbars which reflect only the
11270 Note that mini-buffers sometimes aren't displaying any text. */
11271 if (!MINI_WINDOW_P (w
)
11272 || (w
== XWINDOW (minibuf_window
)
11273 && NILP (echo_area_buffer
[0])))
11275 struct buffer
*buf
= XBUFFER (w
->buffer
);
11276 whole
= BUF_ZV (buf
) - BUF_BEGV (buf
);
11277 start
= marker_position (w
->start
) - BUF_BEGV (buf
);
11278 /* I don't think this is guaranteed to be right. For the
11279 moment, we'll pretend it is. */
11280 end
= BUF_Z (buf
) - XFASTINT (w
->window_end_pos
) - BUF_BEGV (buf
);
11284 if (whole
< (end
- start
))
11285 whole
= end
- start
;
11288 start
= end
= whole
= 0;
11290 /* Indicate what this scroll bar ought to be displaying now. */
11291 set_vertical_scroll_bar_hook (w
, end
- start
, whole
, start
);
11294 /* Redisplay leaf window WINDOW. JUST_THIS_ONE_P non-zero means only
11295 selected_window is redisplayed.
11297 We can return without actually redisplaying the window if
11298 fonts_changed_p is nonzero. In that case, redisplay_internal will
11302 redisplay_window (window
, just_this_one_p
)
11303 Lisp_Object window
;
11304 int just_this_one_p
;
11306 struct window
*w
= XWINDOW (window
);
11307 struct frame
*f
= XFRAME (w
->frame
);
11308 struct buffer
*buffer
= XBUFFER (w
->buffer
);
11309 struct buffer
*old
= current_buffer
;
11310 struct text_pos lpoint
, opoint
, startp
;
11311 int update_mode_line
;
11314 /* Record it now because it's overwritten. */
11315 int current_matrix_up_to_date_p
= 0;
11316 /* This is less strict than current_matrix_up_to_date_p.
11317 It indictes that the buffer contents and narrowing are unchanged. */
11318 int buffer_unchanged_p
= 0;
11319 int temp_scroll_step
= 0;
11320 int count
= SPECPDL_INDEX ();
11322 int centering_position
;
11323 int last_line_misfit
= 0;
11325 SET_TEXT_POS (lpoint
, PT
, PT_BYTE
);
11328 /* W must be a leaf window here. */
11329 xassert (!NILP (w
->buffer
));
11331 *w
->desired_matrix
->method
= 0;
11334 specbind (Qinhibit_point_motion_hooks
, Qt
);
11336 reconsider_clip_changes (w
, buffer
);
11338 /* Has the mode line to be updated? */
11339 update_mode_line
= (!NILP (w
->update_mode_line
)
11340 || update_mode_lines
11341 || buffer
->clip_changed
11342 || buffer
->prevent_redisplay_optimizations_p
);
11344 if (MINI_WINDOW_P (w
))
11346 if (w
== XWINDOW (echo_area_window
)
11347 && !NILP (echo_area_buffer
[0]))
11349 if (update_mode_line
)
11350 /* We may have to update a tty frame's menu bar or a
11351 tool-bar. Example `M-x C-h C-h C-g'. */
11352 goto finish_menu_bars
;
11354 /* We've already displayed the echo area glyphs in this window. */
11355 goto finish_scroll_bars
;
11357 else if ((w
!= XWINDOW (minibuf_window
)
11358 || minibuf_level
== 0)
11359 /* When buffer is nonempty, redisplay window normally. */
11360 && BUF_Z (XBUFFER (w
->buffer
)) == BUF_BEG (XBUFFER (w
->buffer
))
11361 /* Quail displays non-mini buffers in minibuffer window.
11362 In that case, redisplay the window normally. */
11363 && !NILP (Fmemq (w
->buffer
, Vminibuffer_list
)))
11365 /* W is a mini-buffer window, but it's not active, so clear
11367 int yb
= window_text_bottom_y (w
);
11368 struct glyph_row
*row
;
11371 for (y
= 0, row
= w
->desired_matrix
->rows
;
11373 y
+= row
->height
, ++row
)
11374 blank_row (w
, row
, y
);
11375 goto finish_scroll_bars
;
11378 clear_glyph_matrix (w
->desired_matrix
);
11381 /* Otherwise set up data on this window; select its buffer and point
11383 /* Really select the buffer, for the sake of buffer-local
11385 set_buffer_internal_1 (XBUFFER (w
->buffer
));
11386 SET_TEXT_POS (opoint
, PT
, PT_BYTE
);
11388 current_matrix_up_to_date_p
11389 = (!NILP (w
->window_end_valid
)
11390 && !current_buffer
->clip_changed
11391 && !current_buffer
->prevent_redisplay_optimizations_p
11392 && XFASTINT (w
->last_modified
) >= MODIFF
11393 && XFASTINT (w
->last_overlay_modified
) >= OVERLAY_MODIFF
);
11396 = (!NILP (w
->window_end_valid
)
11397 && !current_buffer
->clip_changed
11398 && XFASTINT (w
->last_modified
) >= MODIFF
11399 && XFASTINT (w
->last_overlay_modified
) >= OVERLAY_MODIFF
);
11401 /* When windows_or_buffers_changed is non-zero, we can't rely on
11402 the window end being valid, so set it to nil there. */
11403 if (windows_or_buffers_changed
)
11405 /* If window starts on a continuation line, maybe adjust the
11406 window start in case the window's width changed. */
11407 if (XMARKER (w
->start
)->buffer
== current_buffer
)
11408 compute_window_start_on_continuation_line (w
);
11410 w
->window_end_valid
= Qnil
;
11413 /* Some sanity checks. */
11414 CHECK_WINDOW_END (w
);
11415 if (Z
== Z_BYTE
&& CHARPOS (opoint
) != BYTEPOS (opoint
))
11417 if (BYTEPOS (opoint
) < CHARPOS (opoint
))
11420 /* If %c is in mode line, update it if needed. */
11421 if (!NILP (w
->column_number_displayed
)
11422 /* This alternative quickly identifies a common case
11423 where no change is needed. */
11424 && !(PT
== XFASTINT (w
->last_point
)
11425 && XFASTINT (w
->last_modified
) >= MODIFF
11426 && XFASTINT (w
->last_overlay_modified
) >= OVERLAY_MODIFF
)
11427 && (XFASTINT (w
->column_number_displayed
)
11428 != (int) current_column ())) /* iftc */
11429 update_mode_line
= 1;
11431 /* Count number of windows showing the selected buffer. An indirect
11432 buffer counts as its base buffer. */
11433 if (!just_this_one_p
)
11435 struct buffer
*current_base
, *window_base
;
11436 current_base
= current_buffer
;
11437 window_base
= XBUFFER (XWINDOW (selected_window
)->buffer
);
11438 if (current_base
->base_buffer
)
11439 current_base
= current_base
->base_buffer
;
11440 if (window_base
->base_buffer
)
11441 window_base
= window_base
->base_buffer
;
11442 if (current_base
== window_base
)
11446 /* Point refers normally to the selected window. For any other
11447 window, set up appropriate value. */
11448 if (!EQ (window
, selected_window
))
11450 int new_pt
= XMARKER (w
->pointm
)->charpos
;
11451 int new_pt_byte
= marker_byte_position (w
->pointm
);
11455 new_pt_byte
= BEGV_BYTE
;
11456 set_marker_both (w
->pointm
, Qnil
, BEGV
, BEGV_BYTE
);
11458 else if (new_pt
> (ZV
- 1))
11461 new_pt_byte
= ZV_BYTE
;
11462 set_marker_both (w
->pointm
, Qnil
, ZV
, ZV_BYTE
);
11465 /* We don't use SET_PT so that the point-motion hooks don't run. */
11466 TEMP_SET_PT_BOTH (new_pt
, new_pt_byte
);
11469 /* If any of the character widths specified in the display table
11470 have changed, invalidate the width run cache. It's true that
11471 this may be a bit late to catch such changes, but the rest of
11472 redisplay goes (non-fatally) haywire when the display table is
11473 changed, so why should we worry about doing any better? */
11474 if (current_buffer
->width_run_cache
)
11476 struct Lisp_Char_Table
*disptab
= buffer_display_table ();
11478 if (! disptab_matches_widthtab (disptab
,
11479 XVECTOR (current_buffer
->width_table
)))
11481 invalidate_region_cache (current_buffer
,
11482 current_buffer
->width_run_cache
,
11484 recompute_width_table (current_buffer
, disptab
);
11488 /* If window-start is screwed up, choose a new one. */
11489 if (XMARKER (w
->start
)->buffer
!= current_buffer
)
11492 SET_TEXT_POS_FROM_MARKER (startp
, w
->start
);
11494 /* If someone specified a new starting point but did not insist,
11495 check whether it can be used. */
11496 if (!NILP (w
->optional_new_start
)
11497 && CHARPOS (startp
) >= BEGV
11498 && CHARPOS (startp
) <= ZV
)
11500 w
->optional_new_start
= Qnil
;
11501 start_display (&it
, w
, startp
);
11502 move_it_to (&it
, PT
, 0, it
.last_visible_y
, -1,
11503 MOVE_TO_POS
| MOVE_TO_X
| MOVE_TO_Y
);
11504 if (IT_CHARPOS (it
) == PT
)
11505 w
->force_start
= Qt
;
11508 /* Handle case where place to start displaying has been specified,
11509 unless the specified location is outside the accessible range. */
11510 if (!NILP (w
->force_start
)
11511 || w
->frozen_window_start_p
)
11513 /* We set this later on if we have to adjust point. */
11516 w
->force_start
= Qnil
;
11518 w
->window_end_valid
= Qnil
;
11520 /* Forget any recorded base line for line number display. */
11521 if (!buffer_unchanged_p
)
11522 w
->base_line_number
= Qnil
;
11524 /* Redisplay the mode line. Select the buffer properly for that.
11525 Also, run the hook window-scroll-functions
11526 because we have scrolled. */
11527 /* Note, we do this after clearing force_start because
11528 if there's an error, it is better to forget about force_start
11529 than to get into an infinite loop calling the hook functions
11530 and having them get more errors. */
11531 if (!update_mode_line
11532 || ! NILP (Vwindow_scroll_functions
))
11534 update_mode_line
= 1;
11535 w
->update_mode_line
= Qt
;
11536 startp
= run_window_scroll_functions (window
, startp
);
11539 w
->last_modified
= make_number (0);
11540 w
->last_overlay_modified
= make_number (0);
11541 if (CHARPOS (startp
) < BEGV
)
11542 SET_TEXT_POS (startp
, BEGV
, BEGV_BYTE
);
11543 else if (CHARPOS (startp
) > ZV
)
11544 SET_TEXT_POS (startp
, ZV
, ZV_BYTE
);
11546 /* Redisplay, then check if cursor has been set during the
11547 redisplay. Give up if new fonts were loaded. */
11548 if (!try_window (window
, startp
))
11550 w
->force_start
= Qt
;
11551 clear_glyph_matrix (w
->desired_matrix
);
11552 goto need_larger_matrices
;
11555 if (w
->cursor
.vpos
< 0 && !w
->frozen_window_start_p
)
11557 /* If point does not appear, try to move point so it does
11558 appear. The desired matrix has been built above, so we
11559 can use it here. */
11560 new_vpos
= window_box_height (w
) / 2;
11563 if (!make_cursor_line_fully_visible (w
))
11565 /* Point does appear, but on a line partly visible at end of window.
11566 Move it back to a fully-visible line. */
11567 new_vpos
= window_box_height (w
);
11570 /* If we need to move point for either of the above reasons,
11571 now actually do it. */
11574 struct glyph_row
*row
;
11576 row
= MATRIX_FIRST_TEXT_ROW (w
->desired_matrix
);
11577 while (MATRIX_ROW_BOTTOM_Y (row
) < new_vpos
)
11580 TEMP_SET_PT_BOTH (MATRIX_ROW_START_CHARPOS (row
),
11581 MATRIX_ROW_START_BYTEPOS (row
));
11583 if (w
!= XWINDOW (selected_window
))
11584 set_marker_both (w
->pointm
, Qnil
, PT
, PT_BYTE
);
11585 else if (current_buffer
== old
)
11586 SET_TEXT_POS (lpoint
, PT
, PT_BYTE
);
11588 set_cursor_from_row (w
, row
, w
->desired_matrix
, 0, 0, 0, 0);
11590 /* If we are highlighting the region, then we just changed
11591 the region, so redisplay to show it. */
11592 if (!NILP (Vtransient_mark_mode
)
11593 && !NILP (current_buffer
->mark_active
))
11595 clear_glyph_matrix (w
->desired_matrix
);
11596 if (!try_window (window
, startp
))
11597 goto need_larger_matrices
;
11602 debug_method_add (w
, "forced window start");
11607 /* Handle case where text has not changed, only point, and it has
11608 not moved off the frame, and we are not retrying after hscroll.
11609 (current_matrix_up_to_date_p is nonzero when retrying.) */
11610 if (current_matrix_up_to_date_p
11611 && (rc
= try_cursor_movement (window
, startp
, &temp_scroll_step
),
11612 rc
!= CURSOR_MOVEMENT_CANNOT_BE_USED
))
11616 case CURSOR_MOVEMENT_SUCCESS
:
11619 #if 0 /* try_cursor_movement never returns this value. */
11620 case CURSOR_MOVEMENT_NEED_LARGER_MATRICES
:
11621 goto need_larger_matrices
;
11624 case CURSOR_MOVEMENT_MUST_SCROLL
:
11625 goto try_to_scroll
;
11631 /* If current starting point was originally the beginning of a line
11632 but no longer is, find a new starting point. */
11633 else if (!NILP (w
->start_at_line_beg
)
11634 && !(CHARPOS (startp
) <= BEGV
11635 || FETCH_BYTE (BYTEPOS (startp
) - 1) == '\n'))
11638 debug_method_add (w
, "recenter 1");
11643 /* Try scrolling with try_window_id. Value is > 0 if update has
11644 been done, it is -1 if we know that the same window start will
11645 not work. It is 0 if unsuccessful for some other reason. */
11646 else if ((tem
= try_window_id (w
)) != 0)
11649 debug_method_add (w
, "try_window_id %d", tem
);
11652 if (fonts_changed_p
)
11653 goto need_larger_matrices
;
11657 /* Otherwise try_window_id has returned -1 which means that we
11658 don't want the alternative below this comment to execute. */
11660 else if (CHARPOS (startp
) >= BEGV
11661 && CHARPOS (startp
) <= ZV
11662 && PT
>= CHARPOS (startp
)
11663 && (CHARPOS (startp
) < ZV
11664 /* Avoid starting at end of buffer. */
11665 || CHARPOS (startp
) == BEGV
11666 || (XFASTINT (w
->last_modified
) >= MODIFF
11667 && XFASTINT (w
->last_overlay_modified
) >= OVERLAY_MODIFF
)))
11670 debug_method_add (w
, "same window start");
11673 /* Try to redisplay starting at same place as before.
11674 If point has not moved off frame, accept the results. */
11675 if (!current_matrix_up_to_date_p
11676 /* Don't use try_window_reusing_current_matrix in this case
11677 because a window scroll function can have changed the
11679 || !NILP (Vwindow_scroll_functions
)
11680 || MINI_WINDOW_P (w
)
11681 || !try_window_reusing_current_matrix (w
))
11683 IF_DEBUG (debug_method_add (w
, "1"));
11684 try_window (window
, startp
);
11687 if (fonts_changed_p
)
11688 goto need_larger_matrices
;
11690 if (w
->cursor
.vpos
>= 0)
11692 if (!just_this_one_p
11693 || current_buffer
->clip_changed
11694 || BEG_UNCHANGED
< CHARPOS (startp
))
11695 /* Forget any recorded base line for line number display. */
11696 w
->base_line_number
= Qnil
;
11698 if (!make_cursor_line_fully_visible (w
))
11700 clear_glyph_matrix (w
->desired_matrix
);
11701 last_line_misfit
= 1;
11703 /* Drop through and scroll. */
11708 clear_glyph_matrix (w
->desired_matrix
);
11713 w
->last_modified
= make_number (0);
11714 w
->last_overlay_modified
= make_number (0);
11716 /* Redisplay the mode line. Select the buffer properly for that. */
11717 if (!update_mode_line
)
11719 update_mode_line
= 1;
11720 w
->update_mode_line
= Qt
;
11723 /* Try to scroll by specified few lines. */
11724 if ((scroll_conservatively
11726 || temp_scroll_step
11727 || NUMBERP (current_buffer
->scroll_up_aggressively
)
11728 || NUMBERP (current_buffer
->scroll_down_aggressively
))
11729 && !current_buffer
->clip_changed
11730 && CHARPOS (startp
) >= BEGV
11731 && CHARPOS (startp
) <= ZV
)
11733 /* The function returns -1 if new fonts were loaded, 1 if
11734 successful, 0 if not successful. */
11735 int rc
= try_scrolling (window
, just_this_one_p
,
11736 scroll_conservatively
,
11738 temp_scroll_step
, last_line_misfit
);
11741 case SCROLLING_SUCCESS
:
11744 case SCROLLING_NEED_LARGER_MATRICES
:
11745 goto need_larger_matrices
;
11747 case SCROLLING_FAILED
:
11755 /* Finally, just choose place to start which centers point */
11758 centering_position
= window_box_height (w
) / 2;
11761 /* Jump here with centering_position already set to 0. */
11764 debug_method_add (w
, "recenter");
11767 /* w->vscroll = 0; */
11769 /* Forget any previously recorded base line for line number display. */
11770 if (!buffer_unchanged_p
)
11771 w
->base_line_number
= Qnil
;
11773 /* Move backward half the height of the window. */
11774 init_iterator (&it
, w
, PT
, PT_BYTE
, NULL
, DEFAULT_FACE_ID
);
11775 it
.current_y
= it
.last_visible_y
;
11776 move_it_vertically_backward (&it
, centering_position
);
11777 xassert (IT_CHARPOS (it
) >= BEGV
);
11779 /* The function move_it_vertically_backward may move over more
11780 than the specified y-distance. If it->w is small, e.g. a
11781 mini-buffer window, we may end up in front of the window's
11782 display area. Start displaying at the start of the line
11783 containing PT in this case. */
11784 if (it
.current_y
<= 0)
11786 init_iterator (&it
, w
, PT
, PT_BYTE
, NULL
, DEFAULT_FACE_ID
);
11787 move_it_vertically (&it
, 0);
11788 xassert (IT_CHARPOS (it
) <= PT
);
11792 it
.current_x
= it
.hpos
= 0;
11794 /* Set startp here explicitly in case that helps avoid an infinite loop
11795 in case the window-scroll-functions functions get errors. */
11796 set_marker_both (w
->start
, Qnil
, IT_CHARPOS (it
), IT_BYTEPOS (it
));
11798 /* Run scroll hooks. */
11799 startp
= run_window_scroll_functions (window
, it
.current
.pos
);
11801 /* Redisplay the window. */
11802 if (!current_matrix_up_to_date_p
11803 || windows_or_buffers_changed
11804 || cursor_type_changed
11805 /* Don't use try_window_reusing_current_matrix in this case
11806 because it can have changed the buffer. */
11807 || !NILP (Vwindow_scroll_functions
)
11808 || !just_this_one_p
11809 || MINI_WINDOW_P (w
)
11810 || !try_window_reusing_current_matrix (w
))
11811 try_window (window
, startp
);
11813 /* If new fonts have been loaded (due to fontsets), give up. We
11814 have to start a new redisplay since we need to re-adjust glyph
11816 if (fonts_changed_p
)
11817 goto need_larger_matrices
;
11819 /* If cursor did not appear assume that the middle of the window is
11820 in the first line of the window. Do it again with the next line.
11821 (Imagine a window of height 100, displaying two lines of height
11822 60. Moving back 50 from it->last_visible_y will end in the first
11824 if (w
->cursor
.vpos
< 0)
11826 if (!NILP (w
->window_end_valid
)
11827 && PT
>= Z
- XFASTINT (w
->window_end_pos
))
11829 clear_glyph_matrix (w
->desired_matrix
);
11830 move_it_by_lines (&it
, 1, 0);
11831 try_window (window
, it
.current
.pos
);
11833 else if (PT
< IT_CHARPOS (it
))
11835 clear_glyph_matrix (w
->desired_matrix
);
11836 move_it_by_lines (&it
, -1, 0);
11837 try_window (window
, it
.current
.pos
);
11841 /* Not much we can do about it. */
11845 /* Consider the following case: Window starts at BEGV, there is
11846 invisible, intangible text at BEGV, so that display starts at
11847 some point START > BEGV. It can happen that we are called with
11848 PT somewhere between BEGV and START. Try to handle that case. */
11849 if (w
->cursor
.vpos
< 0)
11851 struct glyph_row
*row
= w
->current_matrix
->rows
;
11852 if (row
->mode_line_p
)
11854 set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0, 0, 0);
11857 if (!make_cursor_line_fully_visible (w
))
11859 /* If vscroll is enabled, disable it and try again. */
11863 clear_glyph_matrix (w
->desired_matrix
);
11867 /* If centering point failed to make the whole line visible,
11868 put point at the top instead. That has to make the whole line
11869 visible, if it can be done. */
11870 centering_position
= 0;
11876 SET_TEXT_POS_FROM_MARKER (startp
, w
->start
);
11877 w
->start_at_line_beg
= ((CHARPOS (startp
) == BEGV
11878 || FETCH_BYTE (BYTEPOS (startp
) - 1) == '\n')
11881 /* Display the mode line, if we must. */
11882 if ((update_mode_line
11883 /* If window not full width, must redo its mode line
11884 if (a) the window to its side is being redone and
11885 (b) we do a frame-based redisplay. This is a consequence
11886 of how inverted lines are drawn in frame-based redisplay. */
11887 || (!just_this_one_p
11888 && !FRAME_WINDOW_P (f
)
11889 && !WINDOW_FULL_WIDTH_P (w
))
11890 /* Line number to display. */
11891 || INTEGERP (w
->base_line_pos
)
11892 /* Column number is displayed and different from the one displayed. */
11893 || (!NILP (w
->column_number_displayed
)
11894 && (XFASTINT (w
->column_number_displayed
)
11895 != (int) current_column ()))) /* iftc */
11896 /* This means that the window has a mode line. */
11897 && (WINDOW_WANTS_MODELINE_P (w
)
11898 || WINDOW_WANTS_HEADER_LINE_P (w
)))
11900 display_mode_lines (w
);
11902 /* If mode line height has changed, arrange for a thorough
11903 immediate redisplay using the correct mode line height. */
11904 if (WINDOW_WANTS_MODELINE_P (w
)
11905 && CURRENT_MODE_LINE_HEIGHT (w
) != DESIRED_MODE_LINE_HEIGHT (w
))
11907 fonts_changed_p
= 1;
11908 MATRIX_MODE_LINE_ROW (w
->current_matrix
)->height
11909 = DESIRED_MODE_LINE_HEIGHT (w
);
11912 /* If top line height has changed, arrange for a thorough
11913 immediate redisplay using the correct mode line height. */
11914 if (WINDOW_WANTS_HEADER_LINE_P (w
)
11915 && CURRENT_HEADER_LINE_HEIGHT (w
) != DESIRED_HEADER_LINE_HEIGHT (w
))
11917 fonts_changed_p
= 1;
11918 MATRIX_HEADER_LINE_ROW (w
->current_matrix
)->height
11919 = DESIRED_HEADER_LINE_HEIGHT (w
);
11922 if (fonts_changed_p
)
11923 goto need_larger_matrices
;
11926 if (!line_number_displayed
11927 && !BUFFERP (w
->base_line_pos
))
11929 w
->base_line_pos
= Qnil
;
11930 w
->base_line_number
= Qnil
;
11935 /* When we reach a frame's selected window, redo the frame's menu bar. */
11936 if (update_mode_line
11937 && EQ (FRAME_SELECTED_WINDOW (f
), window
))
11939 int redisplay_menu_p
= 0;
11940 int redisplay_tool_bar_p
= 0;
11942 if (FRAME_WINDOW_P (f
))
11944 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
11945 || defined (USE_GTK)
11946 redisplay_menu_p
= FRAME_EXTERNAL_MENU_BAR (f
);
11948 redisplay_menu_p
= FRAME_MENU_BAR_LINES (f
) > 0;
11952 redisplay_menu_p
= FRAME_MENU_BAR_LINES (f
) > 0;
11954 if (redisplay_menu_p
)
11955 display_menu_bar (w
);
11957 #ifdef HAVE_WINDOW_SYSTEM
11959 redisplay_tool_bar_p
= FRAME_EXTERNAL_TOOL_BAR (f
);
11961 redisplay_tool_bar_p
= WINDOWP (f
->tool_bar_window
)
11962 && (FRAME_TOOL_BAR_LINES (f
) > 0
11963 || auto_resize_tool_bars_p
);
11967 if (redisplay_tool_bar_p
)
11968 redisplay_tool_bar (f
);
11972 /* We go to this label, with fonts_changed_p nonzero,
11973 if it is necessary to try again using larger glyph matrices.
11974 We have to redeem the scroll bar even in this case,
11975 because the loop in redisplay_internal expects that. */
11976 need_larger_matrices
:
11978 finish_scroll_bars
:
11980 if (WINDOW_HAS_VERTICAL_SCROLL_BAR (w
))
11982 /* Set the thumb's position and size. */
11983 set_vertical_scroll_bar (w
);
11985 /* Note that we actually used the scroll bar attached to this
11986 window, so it shouldn't be deleted at the end of redisplay. */
11987 redeem_scroll_bar_hook (w
);
11990 /* Restore current_buffer and value of point in it. */
11991 TEMP_SET_PT_BOTH (CHARPOS (opoint
), BYTEPOS (opoint
));
11992 set_buffer_internal_1 (old
);
11993 TEMP_SET_PT_BOTH (CHARPOS (lpoint
), BYTEPOS (lpoint
));
11995 unbind_to (count
, Qnil
);
11999 /* Build the complete desired matrix of WINDOW with a window start
12000 buffer position POS. Value is non-zero if successful. It is zero
12001 if fonts were loaded during redisplay which makes re-adjusting
12002 glyph matrices necessary. */
12005 try_window (window
, pos
)
12006 Lisp_Object window
;
12007 struct text_pos pos
;
12009 struct window
*w
= XWINDOW (window
);
12011 struct glyph_row
*last_text_row
= NULL
;
12013 /* Make POS the new window start. */
12014 set_marker_both (w
->start
, Qnil
, CHARPOS (pos
), BYTEPOS (pos
));
12016 /* Mark cursor position as unknown. No overlay arrow seen. */
12017 w
->cursor
.vpos
= -1;
12018 overlay_arrow_seen
= 0;
12020 /* Initialize iterator and info to start at POS. */
12021 start_display (&it
, w
, pos
);
12023 /* Display all lines of W. */
12024 while (it
.current_y
< it
.last_visible_y
)
12026 if (display_line (&it
))
12027 last_text_row
= it
.glyph_row
- 1;
12028 if (fonts_changed_p
)
12032 /* If bottom moved off end of frame, change mode line percentage. */
12033 if (XFASTINT (w
->window_end_pos
) <= 0
12034 && Z
!= IT_CHARPOS (it
))
12035 w
->update_mode_line
= Qt
;
12037 /* Set window_end_pos to the offset of the last character displayed
12038 on the window from the end of current_buffer. Set
12039 window_end_vpos to its row number. */
12042 xassert (MATRIX_ROW_DISPLAYS_TEXT_P (last_text_row
));
12043 w
->window_end_bytepos
12044 = Z_BYTE
- MATRIX_ROW_END_BYTEPOS (last_text_row
);
12046 = make_number (Z
- MATRIX_ROW_END_CHARPOS (last_text_row
));
12048 = make_number (MATRIX_ROW_VPOS (last_text_row
, w
->desired_matrix
));
12049 xassert (MATRIX_ROW (w
->desired_matrix
, XFASTINT (w
->window_end_vpos
))
12050 ->displays_text_p
);
12054 w
->window_end_bytepos
= Z_BYTE
- ZV_BYTE
;
12055 w
->window_end_pos
= make_number (Z
- ZV
);
12056 w
->window_end_vpos
= make_number (0);
12059 /* But that is not valid info until redisplay finishes. */
12060 w
->window_end_valid
= Qnil
;
12066 /************************************************************************
12067 Window redisplay reusing current matrix when buffer has not changed
12068 ************************************************************************/
12070 /* Try redisplay of window W showing an unchanged buffer with a
12071 different window start than the last time it was displayed by
12072 reusing its current matrix. Value is non-zero if successful.
12073 W->start is the new window start. */
12076 try_window_reusing_current_matrix (w
)
12079 struct frame
*f
= XFRAME (w
->frame
);
12080 struct glyph_row
*row
, *bottom_row
;
12083 struct text_pos start
, new_start
;
12084 int nrows_scrolled
, i
;
12085 struct glyph_row
*last_text_row
;
12086 struct glyph_row
*last_reused_text_row
;
12087 struct glyph_row
*start_row
;
12088 int start_vpos
, min_y
, max_y
;
12091 if (inhibit_try_window_reusing
)
12095 if (/* This function doesn't handle terminal frames. */
12096 !FRAME_WINDOW_P (f
)
12097 /* Don't try to reuse the display if windows have been split
12099 || windows_or_buffers_changed
12100 || cursor_type_changed
)
12103 /* Can't do this if region may have changed. */
12104 if ((!NILP (Vtransient_mark_mode
)
12105 && !NILP (current_buffer
->mark_active
))
12106 || !NILP (w
->region_showing
)
12107 || !NILP (Vshow_trailing_whitespace
))
12110 /* If top-line visibility has changed, give up. */
12111 if (WINDOW_WANTS_HEADER_LINE_P (w
)
12112 != MATRIX_HEADER_LINE_ROW (w
->current_matrix
)->mode_line_p
)
12115 /* Give up if old or new display is scrolled vertically. We could
12116 make this function handle this, but right now it doesn't. */
12117 start_row
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
12118 if (w
->vscroll
|| MATRIX_ROW_PARTIALLY_VISIBLE_P (start_row
))
12121 /* The variable new_start now holds the new window start. The old
12122 start `start' can be determined from the current matrix. */
12123 SET_TEXT_POS_FROM_MARKER (new_start
, w
->start
);
12124 start
= start_row
->start
.pos
;
12125 start_vpos
= MATRIX_ROW_VPOS (start_row
, w
->current_matrix
);
12127 /* Clear the desired matrix for the display below. */
12128 clear_glyph_matrix (w
->desired_matrix
);
12130 if (CHARPOS (new_start
) <= CHARPOS (start
))
12134 /* Don't use this method if the display starts with an ellipsis
12135 displayed for invisible text. It's not easy to handle that case
12136 below, and it's certainly not worth the effort since this is
12137 not a frequent case. */
12138 if (in_ellipses_for_invisible_text_p (&start_row
->start
, w
))
12141 IF_DEBUG (debug_method_add (w
, "twu1"));
12143 /* Display up to a row that can be reused. The variable
12144 last_text_row is set to the last row displayed that displays
12145 text. Note that it.vpos == 0 if or if not there is a
12146 header-line; it's not the same as the MATRIX_ROW_VPOS! */
12147 start_display (&it
, w
, new_start
);
12148 first_row_y
= it
.current_y
;
12149 w
->cursor
.vpos
= -1;
12150 last_text_row
= last_reused_text_row
= NULL
;
12152 while (it
.current_y
< it
.last_visible_y
12153 && IT_CHARPOS (it
) < CHARPOS (start
)
12154 && !fonts_changed_p
)
12155 if (display_line (&it
))
12156 last_text_row
= it
.glyph_row
- 1;
12158 /* A value of current_y < last_visible_y means that we stopped
12159 at the previous window start, which in turn means that we
12160 have at least one reusable row. */
12161 if (it
.current_y
< it
.last_visible_y
)
12163 /* IT.vpos always starts from 0; it counts text lines. */
12164 nrows_scrolled
= it
.vpos
;
12166 /* Find PT if not already found in the lines displayed. */
12167 if (w
->cursor
.vpos
< 0)
12169 int dy
= it
.current_y
- first_row_y
;
12171 row
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
12172 row
= row_containing_pos (w
, PT
, row
, NULL
, dy
);
12174 set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0,
12175 dy
, nrows_scrolled
);
12178 clear_glyph_matrix (w
->desired_matrix
);
12183 /* Scroll the display. Do it before the current matrix is
12184 changed. The problem here is that update has not yet
12185 run, i.e. part of the current matrix is not up to date.
12186 scroll_run_hook will clear the cursor, and use the
12187 current matrix to get the height of the row the cursor is
12189 run
.current_y
= first_row_y
;
12190 run
.desired_y
= it
.current_y
;
12191 run
.height
= it
.last_visible_y
- it
.current_y
;
12193 if (run
.height
> 0 && run
.current_y
!= run
.desired_y
)
12196 rif
->update_window_begin_hook (w
);
12197 rif
->clear_window_mouse_face (w
);
12198 rif
->scroll_run_hook (w
, &run
);
12199 rif
->update_window_end_hook (w
, 0, 0);
12203 /* Shift current matrix down by nrows_scrolled lines. */
12204 bottom_row
= MATRIX_BOTTOM_TEXT_ROW (w
->current_matrix
, w
);
12205 rotate_matrix (w
->current_matrix
,
12207 MATRIX_ROW_VPOS (bottom_row
, w
->current_matrix
),
12210 /* Disable lines that must be updated. */
12211 for (i
= 0; i
< it
.vpos
; ++i
)
12212 (start_row
+ i
)->enabled_p
= 0;
12214 /* Re-compute Y positions. */
12215 min_y
= WINDOW_HEADER_LINE_HEIGHT (w
);
12216 max_y
= it
.last_visible_y
;
12217 for (row
= start_row
+ nrows_scrolled
;
12221 row
->y
= it
.current_y
;
12222 row
->visible_height
= row
->height
;
12224 if (row
->y
< min_y
)
12225 row
->visible_height
-= min_y
- row
->y
;
12226 if (row
->y
+ row
->height
> max_y
)
12227 row
->visible_height
-= row
->y
+ row
->height
- max_y
;
12229 it
.current_y
+= row
->height
;
12231 if (MATRIX_ROW_DISPLAYS_TEXT_P (row
))
12232 last_reused_text_row
= row
;
12233 if (MATRIX_ROW_BOTTOM_Y (row
) >= it
.last_visible_y
)
12237 /* Disable lines in the current matrix which are now
12238 below the window. */
12239 for (++row
; row
< bottom_row
; ++row
)
12240 row
->enabled_p
= 0;
12243 /* Update window_end_pos etc.; last_reused_text_row is the last
12244 reused row from the current matrix containing text, if any.
12245 The value of last_text_row is the last displayed line
12246 containing text. */
12247 if (last_reused_text_row
)
12249 w
->window_end_bytepos
12250 = Z_BYTE
- MATRIX_ROW_END_BYTEPOS (last_reused_text_row
);
12252 = make_number (Z
- MATRIX_ROW_END_CHARPOS (last_reused_text_row
));
12254 = make_number (MATRIX_ROW_VPOS (last_reused_text_row
,
12255 w
->current_matrix
));
12257 else if (last_text_row
)
12259 w
->window_end_bytepos
12260 = Z_BYTE
- MATRIX_ROW_END_BYTEPOS (last_text_row
);
12262 = make_number (Z
- MATRIX_ROW_END_CHARPOS (last_text_row
));
12264 = make_number (MATRIX_ROW_VPOS (last_text_row
, w
->desired_matrix
));
12268 /* This window must be completely empty. */
12269 w
->window_end_bytepos
= Z_BYTE
- ZV_BYTE
;
12270 w
->window_end_pos
= make_number (Z
- ZV
);
12271 w
->window_end_vpos
= make_number (0);
12273 w
->window_end_valid
= Qnil
;
12275 /* Update hint: don't try scrolling again in update_window. */
12276 w
->desired_matrix
->no_scrolling_p
= 1;
12279 debug_method_add (w
, "try_window_reusing_current_matrix 1");
12283 else if (CHARPOS (new_start
) > CHARPOS (start
))
12285 struct glyph_row
*pt_row
, *row
;
12286 struct glyph_row
*first_reusable_row
;
12287 struct glyph_row
*first_row_to_display
;
12289 int yb
= window_text_bottom_y (w
);
12291 /* Find the row starting at new_start, if there is one. Don't
12292 reuse a partially visible line at the end. */
12293 first_reusable_row
= start_row
;
12294 while (first_reusable_row
->enabled_p
12295 && MATRIX_ROW_BOTTOM_Y (first_reusable_row
) < yb
12296 && (MATRIX_ROW_START_CHARPOS (first_reusable_row
)
12297 < CHARPOS (new_start
)))
12298 ++first_reusable_row
;
12300 /* Give up if there is no row to reuse. */
12301 if (MATRIX_ROW_BOTTOM_Y (first_reusable_row
) >= yb
12302 || !first_reusable_row
->enabled_p
12303 || (MATRIX_ROW_START_CHARPOS (first_reusable_row
)
12304 != CHARPOS (new_start
)))
12307 /* We can reuse fully visible rows beginning with
12308 first_reusable_row to the end of the window. Set
12309 first_row_to_display to the first row that cannot be reused.
12310 Set pt_row to the row containing point, if there is any. */
12312 for (first_row_to_display
= first_reusable_row
;
12313 MATRIX_ROW_BOTTOM_Y (first_row_to_display
) < yb
;
12314 ++first_row_to_display
)
12316 if (PT
>= MATRIX_ROW_START_CHARPOS (first_row_to_display
)
12317 && PT
< MATRIX_ROW_END_CHARPOS (first_row_to_display
))
12318 pt_row
= first_row_to_display
;
12321 /* Start displaying at the start of first_row_to_display. */
12322 xassert (first_row_to_display
->y
< yb
);
12323 init_to_row_start (&it
, w
, first_row_to_display
);
12325 nrows_scrolled
= (MATRIX_ROW_VPOS (first_reusable_row
, w
->current_matrix
)
12327 it
.vpos
= (MATRIX_ROW_VPOS (first_row_to_display
, w
->current_matrix
)
12329 it
.current_y
= (first_row_to_display
->y
- first_reusable_row
->y
12330 + WINDOW_HEADER_LINE_HEIGHT (w
));
12332 /* Display lines beginning with first_row_to_display in the
12333 desired matrix. Set last_text_row to the last row displayed
12334 that displays text. */
12335 it
.glyph_row
= MATRIX_ROW (w
->desired_matrix
, it
.vpos
);
12336 if (pt_row
== NULL
)
12337 w
->cursor
.vpos
= -1;
12338 last_text_row
= NULL
;
12339 while (it
.current_y
< it
.last_visible_y
&& !fonts_changed_p
)
12340 if (display_line (&it
))
12341 last_text_row
= it
.glyph_row
- 1;
12343 /* Give up If point isn't in a row displayed or reused. */
12344 if (w
->cursor
.vpos
< 0)
12346 clear_glyph_matrix (w
->desired_matrix
);
12350 /* If point is in a reused row, adjust y and vpos of the cursor
12354 w
->cursor
.vpos
-= MATRIX_ROW_VPOS (first_reusable_row
,
12355 w
->current_matrix
);
12356 w
->cursor
.y
-= first_reusable_row
->y
;
12359 /* Scroll the display. */
12360 run
.current_y
= first_reusable_row
->y
;
12361 run
.desired_y
= WINDOW_HEADER_LINE_HEIGHT (w
);
12362 run
.height
= it
.last_visible_y
- run
.current_y
;
12363 dy
= run
.current_y
- run
.desired_y
;
12367 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
12369 rif
->update_window_begin_hook (w
);
12370 rif
->clear_window_mouse_face (w
);
12371 rif
->scroll_run_hook (w
, &run
);
12372 rif
->update_window_end_hook (w
, 0, 0);
12376 /* Adjust Y positions of reused rows. */
12377 bottom_row
= MATRIX_BOTTOM_TEXT_ROW (w
->current_matrix
, w
);
12378 min_y
= WINDOW_HEADER_LINE_HEIGHT (w
);
12379 max_y
= it
.last_visible_y
;
12380 for (row
= first_reusable_row
; row
< first_row_to_display
; ++row
)
12383 row
->visible_height
= row
->height
;
12384 if (row
->y
< min_y
)
12385 row
->visible_height
-= min_y
- row
->y
;
12386 if (row
->y
+ row
->height
> max_y
)
12387 row
->visible_height
-= row
->y
+ row
->height
- max_y
;
12390 /* Scroll the current matrix. */
12391 xassert (nrows_scrolled
> 0);
12392 rotate_matrix (w
->current_matrix
,
12394 MATRIX_ROW_VPOS (bottom_row
, w
->current_matrix
),
12397 /* Disable rows not reused. */
12398 for (row
-= nrows_scrolled
; row
< bottom_row
; ++row
)
12399 row
->enabled_p
= 0;
12401 /* Adjust window end. A null value of last_text_row means that
12402 the window end is in reused rows which in turn means that
12403 only its vpos can have changed. */
12406 w
->window_end_bytepos
12407 = Z_BYTE
- MATRIX_ROW_END_BYTEPOS (last_text_row
);
12409 = make_number (Z
- MATRIX_ROW_END_CHARPOS (last_text_row
));
12411 = make_number (MATRIX_ROW_VPOS (last_text_row
, w
->desired_matrix
));
12416 = make_number (XFASTINT (w
->window_end_vpos
) - nrows_scrolled
);
12419 w
->window_end_valid
= Qnil
;
12420 w
->desired_matrix
->no_scrolling_p
= 1;
12423 debug_method_add (w
, "try_window_reusing_current_matrix 2");
12433 /************************************************************************
12434 Window redisplay reusing current matrix when buffer has changed
12435 ************************************************************************/
12437 static struct glyph_row
*find_last_unchanged_at_beg_row
P_ ((struct window
*));
12438 static struct glyph_row
*find_first_unchanged_at_end_row
P_ ((struct window
*,
12440 static struct glyph_row
*
12441 find_last_row_displaying_text
P_ ((struct glyph_matrix
*, struct it
*,
12442 struct glyph_row
*));
12445 /* Return the last row in MATRIX displaying text. If row START is
12446 non-null, start searching with that row. IT gives the dimensions
12447 of the display. Value is null if matrix is empty; otherwise it is
12448 a pointer to the row found. */
12450 static struct glyph_row
*
12451 find_last_row_displaying_text (matrix
, it
, start
)
12452 struct glyph_matrix
*matrix
;
12454 struct glyph_row
*start
;
12456 struct glyph_row
*row
, *row_found
;
12458 /* Set row_found to the last row in IT->w's current matrix
12459 displaying text. The loop looks funny but think of partially
12462 row
= start
? start
: MATRIX_FIRST_TEXT_ROW (matrix
);
12463 while (MATRIX_ROW_DISPLAYS_TEXT_P (row
))
12465 xassert (row
->enabled_p
);
12467 if (MATRIX_ROW_BOTTOM_Y (row
) >= it
->last_visible_y
)
12476 /* Return the last row in the current matrix of W that is not affected
12477 by changes at the start of current_buffer that occurred since W's
12478 current matrix was built. Value is null if no such row exists.
12480 BEG_UNCHANGED us the number of characters unchanged at the start of
12481 current_buffer. BEG + BEG_UNCHANGED is the buffer position of the
12482 first changed character in current_buffer. Characters at positions <
12483 BEG + BEG_UNCHANGED are at the same buffer positions as they were
12484 when the current matrix was built. */
12486 static struct glyph_row
*
12487 find_last_unchanged_at_beg_row (w
)
12490 int first_changed_pos
= BEG
+ BEG_UNCHANGED
;
12491 struct glyph_row
*row
;
12492 struct glyph_row
*row_found
= NULL
;
12493 int yb
= window_text_bottom_y (w
);
12495 /* Find the last row displaying unchanged text. */
12496 row
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
12497 while (MATRIX_ROW_DISPLAYS_TEXT_P (row
)
12498 && MATRIX_ROW_START_CHARPOS (row
) < first_changed_pos
)
12500 if (/* If row ends before first_changed_pos, it is unchanged,
12501 except in some case. */
12502 MATRIX_ROW_END_CHARPOS (row
) <= first_changed_pos
12503 /* When row ends in ZV and we write at ZV it is not
12505 && !row
->ends_at_zv_p
12506 /* When first_changed_pos is the end of a continued line,
12507 row is not unchanged because it may be no longer
12509 && !(MATRIX_ROW_END_CHARPOS (row
) == first_changed_pos
12510 && row
->continued_p
))
12513 /* Stop if last visible row. */
12514 if (MATRIX_ROW_BOTTOM_Y (row
) >= yb
)
12524 /* Find the first glyph row in the current matrix of W that is not
12525 affected by changes at the end of current_buffer since the
12526 time W's current matrix was built.
12528 Return in *DELTA the number of chars by which buffer positions in
12529 unchanged text at the end of current_buffer must be adjusted.
12531 Return in *DELTA_BYTES the corresponding number of bytes.
12533 Value is null if no such row exists, i.e. all rows are affected by
12536 static struct glyph_row
*
12537 find_first_unchanged_at_end_row (w
, delta
, delta_bytes
)
12539 int *delta
, *delta_bytes
;
12541 struct glyph_row
*row
;
12542 struct glyph_row
*row_found
= NULL
;
12544 *delta
= *delta_bytes
= 0;
12546 /* Display must not have been paused, otherwise the current matrix
12547 is not up to date. */
12548 if (NILP (w
->window_end_valid
))
12551 /* A value of window_end_pos >= END_UNCHANGED means that the window
12552 end is in the range of changed text. If so, there is no
12553 unchanged row at the end of W's current matrix. */
12554 if (XFASTINT (w
->window_end_pos
) >= END_UNCHANGED
)
12557 /* Set row to the last row in W's current matrix displaying text. */
12558 row
= MATRIX_ROW (w
->current_matrix
, XFASTINT (w
->window_end_vpos
));
12560 /* If matrix is entirely empty, no unchanged row exists. */
12561 if (MATRIX_ROW_DISPLAYS_TEXT_P (row
))
12563 /* The value of row is the last glyph row in the matrix having a
12564 meaningful buffer position in it. The end position of row
12565 corresponds to window_end_pos. This allows us to translate
12566 buffer positions in the current matrix to current buffer
12567 positions for characters not in changed text. */
12568 int Z_old
= MATRIX_ROW_END_CHARPOS (row
) + XFASTINT (w
->window_end_pos
);
12569 int Z_BYTE_old
= MATRIX_ROW_END_BYTEPOS (row
) + w
->window_end_bytepos
;
12570 int last_unchanged_pos
, last_unchanged_pos_old
;
12571 struct glyph_row
*first_text_row
12572 = MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
12574 *delta
= Z
- Z_old
;
12575 *delta_bytes
= Z_BYTE
- Z_BYTE_old
;
12577 /* Set last_unchanged_pos to the buffer position of the last
12578 character in the buffer that has not been changed. Z is the
12579 index + 1 of the last character in current_buffer, i.e. by
12580 subtracting END_UNCHANGED we get the index of the last
12581 unchanged character, and we have to add BEG to get its buffer
12583 last_unchanged_pos
= Z
- END_UNCHANGED
+ BEG
;
12584 last_unchanged_pos_old
= last_unchanged_pos
- *delta
;
12586 /* Search backward from ROW for a row displaying a line that
12587 starts at a minimum position >= last_unchanged_pos_old. */
12588 for (; row
> first_text_row
; --row
)
12590 if (!row
->enabled_p
|| !MATRIX_ROW_DISPLAYS_TEXT_P (row
))
12593 if (MATRIX_ROW_START_CHARPOS (row
) >= last_unchanged_pos_old
)
12598 if (row_found
&& !MATRIX_ROW_DISPLAYS_TEXT_P (row_found
))
12605 /* Make sure that glyph rows in the current matrix of window W
12606 reference the same glyph memory as corresponding rows in the
12607 frame's frame matrix. This function is called after scrolling W's
12608 current matrix on a terminal frame in try_window_id and
12609 try_window_reusing_current_matrix. */
12612 sync_frame_with_window_matrix_rows (w
)
12615 struct frame
*f
= XFRAME (w
->frame
);
12616 struct glyph_row
*window_row
, *window_row_end
, *frame_row
;
12618 /* Preconditions: W must be a leaf window and full-width. Its frame
12619 must have a frame matrix. */
12620 xassert (NILP (w
->hchild
) && NILP (w
->vchild
));
12621 xassert (WINDOW_FULL_WIDTH_P (w
));
12622 xassert (!FRAME_WINDOW_P (f
));
12624 /* If W is a full-width window, glyph pointers in W's current matrix
12625 have, by definition, to be the same as glyph pointers in the
12626 corresponding frame matrix. Note that frame matrices have no
12627 marginal areas (see build_frame_matrix). */
12628 window_row
= w
->current_matrix
->rows
;
12629 window_row_end
= window_row
+ w
->current_matrix
->nrows
;
12630 frame_row
= f
->current_matrix
->rows
+ WINDOW_TOP_EDGE_LINE (w
);
12631 while (window_row
< window_row_end
)
12633 struct glyph
*start
= window_row
->glyphs
[LEFT_MARGIN_AREA
];
12634 struct glyph
*end
= window_row
->glyphs
[LAST_AREA
];
12636 frame_row
->glyphs
[LEFT_MARGIN_AREA
] = start
;
12637 frame_row
->glyphs
[TEXT_AREA
] = start
;
12638 frame_row
->glyphs
[RIGHT_MARGIN_AREA
] = end
;
12639 frame_row
->glyphs
[LAST_AREA
] = end
;
12641 /* Disable frame rows whose corresponding window rows have
12642 been disabled in try_window_id. */
12643 if (!window_row
->enabled_p
)
12644 frame_row
->enabled_p
= 0;
12646 ++window_row
, ++frame_row
;
12651 /* Find the glyph row in window W containing CHARPOS. Consider all
12652 rows between START and END (not inclusive). END null means search
12653 all rows to the end of the display area of W. Value is the row
12654 containing CHARPOS or null. */
12657 row_containing_pos (w
, charpos
, start
, end
, dy
)
12660 struct glyph_row
*start
, *end
;
12663 struct glyph_row
*row
= start
;
12666 /* If we happen to start on a header-line, skip that. */
12667 if (row
->mode_line_p
)
12670 if ((end
&& row
>= end
) || !row
->enabled_p
)
12673 last_y
= window_text_bottom_y (w
) - dy
;
12677 /* Give up if we have gone too far. */
12678 if (end
&& row
>= end
)
12680 /* This formerly returned if they were equal.
12681 I think that both quantities are of a "last plus one" type;
12682 if so, when they are equal, the row is within the screen. -- rms. */
12683 if (MATRIX_ROW_BOTTOM_Y (row
) > last_y
)
12686 /* If it is in this row, return this row. */
12687 if (! (MATRIX_ROW_END_CHARPOS (row
) < charpos
12688 || (MATRIX_ROW_END_CHARPOS (row
) == charpos
12689 /* The end position of a row equals the start
12690 position of the next row. If CHARPOS is there, we
12691 would rather display it in the next line, except
12692 when this line ends in ZV. */
12693 && !row
->ends_at_zv_p
12694 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row
)))
12695 && charpos
>= MATRIX_ROW_START_CHARPOS (row
))
12702 /* Try to redisplay window W by reusing its existing display. W's
12703 current matrix must be up to date when this function is called,
12704 i.e. window_end_valid must not be nil.
12708 1 if display has been updated
12709 0 if otherwise unsuccessful
12710 -1 if redisplay with same window start is known not to succeed
12712 The following steps are performed:
12714 1. Find the last row in the current matrix of W that is not
12715 affected by changes at the start of current_buffer. If no such row
12718 2. Find the first row in W's current matrix that is not affected by
12719 changes at the end of current_buffer. Maybe there is no such row.
12721 3. Display lines beginning with the row + 1 found in step 1 to the
12722 row found in step 2 or, if step 2 didn't find a row, to the end of
12725 4. If cursor is not known to appear on the window, give up.
12727 5. If display stopped at the row found in step 2, scroll the
12728 display and current matrix as needed.
12730 6. Maybe display some lines at the end of W, if we must. This can
12731 happen under various circumstances, like a partially visible line
12732 becoming fully visible, or because newly displayed lines are displayed
12733 in smaller font sizes.
12735 7. Update W's window end information. */
12741 struct frame
*f
= XFRAME (w
->frame
);
12742 struct glyph_matrix
*current_matrix
= w
->current_matrix
;
12743 struct glyph_matrix
*desired_matrix
= w
->desired_matrix
;
12744 struct glyph_row
*last_unchanged_at_beg_row
;
12745 struct glyph_row
*first_unchanged_at_end_row
;
12746 struct glyph_row
*row
;
12747 struct glyph_row
*bottom_row
;
12750 int delta
= 0, delta_bytes
= 0, stop_pos
, dvpos
, dy
;
12751 struct text_pos start_pos
;
12753 int first_unchanged_at_end_vpos
= 0;
12754 struct glyph_row
*last_text_row
, *last_text_row_at_end
;
12755 struct text_pos start
;
12756 int first_changed_charpos
, last_changed_charpos
;
12759 if (inhibit_try_window_id
)
12763 /* This is handy for debugging. */
12765 #define GIVE_UP(X) \
12767 fprintf (stderr, "try_window_id give up %d\n", (X)); \
12771 #define GIVE_UP(X) return 0
12774 SET_TEXT_POS_FROM_MARKER (start
, w
->start
);
12776 /* Don't use this for mini-windows because these can show
12777 messages and mini-buffers, and we don't handle that here. */
12778 if (MINI_WINDOW_P (w
))
12781 /* This flag is used to prevent redisplay optimizations. */
12782 if (windows_or_buffers_changed
|| cursor_type_changed
)
12785 /* Verify that narrowing has not changed.
12786 Also verify that we were not told to prevent redisplay optimizations.
12787 It would be nice to further
12788 reduce the number of cases where this prevents try_window_id. */
12789 if (current_buffer
->clip_changed
12790 || current_buffer
->prevent_redisplay_optimizations_p
)
12793 /* Window must either use window-based redisplay or be full width. */
12794 if (!FRAME_WINDOW_P (f
)
12795 && (!line_ins_del_ok
12796 || !WINDOW_FULL_WIDTH_P (w
)))
12799 /* Give up if point is not known NOT to appear in W. */
12800 if (PT
< CHARPOS (start
))
12803 /* Another way to prevent redisplay optimizations. */
12804 if (XFASTINT (w
->last_modified
) == 0)
12807 /* Verify that window is not hscrolled. */
12808 if (XFASTINT (w
->hscroll
) != 0)
12811 /* Verify that display wasn't paused. */
12812 if (NILP (w
->window_end_valid
))
12815 /* Can't use this if highlighting a region because a cursor movement
12816 will do more than just set the cursor. */
12817 if (!NILP (Vtransient_mark_mode
)
12818 && !NILP (current_buffer
->mark_active
))
12821 /* Likewise if highlighting trailing whitespace. */
12822 if (!NILP (Vshow_trailing_whitespace
))
12825 /* Likewise if showing a region. */
12826 if (!NILP (w
->region_showing
))
12829 /* Can use this if overlay arrow position and or string have changed. */
12830 if (!EQ (last_arrow_position
, COERCE_MARKER (Voverlay_arrow_position
))
12831 || !EQ (last_arrow_string
, Voverlay_arrow_string
))
12835 /* Make sure beg_unchanged and end_unchanged are up to date. Do it
12836 only if buffer has really changed. The reason is that the gap is
12837 initially at Z for freshly visited files. The code below would
12838 set end_unchanged to 0 in that case. */
12839 if (MODIFF
> SAVE_MODIFF
12840 /* This seems to happen sometimes after saving a buffer. */
12841 || BEG_UNCHANGED
+ END_UNCHANGED
> Z_BYTE
)
12843 if (GPT
- BEG
< BEG_UNCHANGED
)
12844 BEG_UNCHANGED
= GPT
- BEG
;
12845 if (Z
- GPT
< END_UNCHANGED
)
12846 END_UNCHANGED
= Z
- GPT
;
12849 /* The position of the first and last character that has been changed. */
12850 first_changed_charpos
= BEG
+ BEG_UNCHANGED
;
12851 last_changed_charpos
= Z
- END_UNCHANGED
;
12853 /* If window starts after a line end, and the last change is in
12854 front of that newline, then changes don't affect the display.
12855 This case happens with stealth-fontification. Note that although
12856 the display is unchanged, glyph positions in the matrix have to
12857 be adjusted, of course. */
12858 row
= MATRIX_ROW (w
->current_matrix
, XFASTINT (w
->window_end_vpos
));
12859 if (MATRIX_ROW_DISPLAYS_TEXT_P (row
)
12860 && ((last_changed_charpos
< CHARPOS (start
)
12861 && CHARPOS (start
) == BEGV
)
12862 || (last_changed_charpos
< CHARPOS (start
) - 1
12863 && FETCH_BYTE (BYTEPOS (start
) - 1) == '\n')))
12865 int Z_old
, delta
, Z_BYTE_old
, delta_bytes
;
12866 struct glyph_row
*r0
;
12868 /* Compute how many chars/bytes have been added to or removed
12869 from the buffer. */
12870 Z_old
= MATRIX_ROW_END_CHARPOS (row
) + XFASTINT (w
->window_end_pos
);
12871 Z_BYTE_old
= MATRIX_ROW_END_BYTEPOS (row
) + w
->window_end_bytepos
;
12873 delta_bytes
= Z_BYTE
- Z_BYTE_old
;
12875 /* Give up if PT is not in the window. Note that it already has
12876 been checked at the start of try_window_id that PT is not in
12877 front of the window start. */
12878 if (PT
>= MATRIX_ROW_END_CHARPOS (row
) + delta
)
12881 /* If window start is unchanged, we can reuse the whole matrix
12882 as is, after adjusting glyph positions. No need to compute
12883 the window end again, since its offset from Z hasn't changed. */
12884 r0
= MATRIX_FIRST_TEXT_ROW (current_matrix
);
12885 if (CHARPOS (start
) == MATRIX_ROW_START_CHARPOS (r0
) + delta
12886 && BYTEPOS (start
) == MATRIX_ROW_START_BYTEPOS (r0
) + delta_bytes
12887 /* PT must not be in a partially visible line. */
12888 && !(PT
>= MATRIX_ROW_START_CHARPOS (row
) + delta
12889 && MATRIX_ROW_BOTTOM_Y (row
) > window_text_bottom_y (w
)))
12891 /* Adjust positions in the glyph matrix. */
12892 if (delta
|| delta_bytes
)
12894 struct glyph_row
*r1
12895 = MATRIX_BOTTOM_TEXT_ROW (current_matrix
, w
);
12896 increment_matrix_positions (w
->current_matrix
,
12897 MATRIX_ROW_VPOS (r0
, current_matrix
),
12898 MATRIX_ROW_VPOS (r1
, current_matrix
),
12899 delta
, delta_bytes
);
12902 /* Set the cursor. */
12903 row
= row_containing_pos (w
, PT
, r0
, NULL
, 0);
12905 set_cursor_from_row (w
, row
, current_matrix
, 0, 0, 0, 0);
12912 /* Handle the case that changes are all below what is displayed in
12913 the window, and that PT is in the window. This shortcut cannot
12914 be taken if ZV is visible in the window, and text has been added
12915 there that is visible in the window. */
12916 if (first_changed_charpos
>= MATRIX_ROW_END_CHARPOS (row
)
12917 /* ZV is not visible in the window, or there are no
12918 changes at ZV, actually. */
12919 && (current_matrix
->zv
> MATRIX_ROW_END_CHARPOS (row
)
12920 || first_changed_charpos
== last_changed_charpos
))
12922 struct glyph_row
*r0
;
12924 /* Give up if PT is not in the window. Note that it already has
12925 been checked at the start of try_window_id that PT is not in
12926 front of the window start. */
12927 if (PT
>= MATRIX_ROW_END_CHARPOS (row
))
12930 /* If window start is unchanged, we can reuse the whole matrix
12931 as is, without changing glyph positions since no text has
12932 been added/removed in front of the window end. */
12933 r0
= MATRIX_FIRST_TEXT_ROW (current_matrix
);
12934 if (TEXT_POS_EQUAL_P (start
, r0
->start
.pos
)
12935 /* PT must not be in a partially visible line. */
12936 && !(PT
>= MATRIX_ROW_START_CHARPOS (row
)
12937 && MATRIX_ROW_BOTTOM_Y (row
) > window_text_bottom_y (w
)))
12939 /* We have to compute the window end anew since text
12940 can have been added/removed after it. */
12942 = make_number (Z
- MATRIX_ROW_END_CHARPOS (row
));
12943 w
->window_end_bytepos
12944 = Z_BYTE
- MATRIX_ROW_END_BYTEPOS (row
);
12946 /* Set the cursor. */
12947 row
= row_containing_pos (w
, PT
, r0
, NULL
, 0);
12949 set_cursor_from_row (w
, row
, current_matrix
, 0, 0, 0, 0);
12956 /* Give up if window start is in the changed area.
12958 The condition used to read
12960 (BEG_UNCHANGED + END_UNCHANGED != Z - BEG && ...)
12962 but why that was tested escapes me at the moment. */
12963 if (CHARPOS (start
) >= first_changed_charpos
12964 && CHARPOS (start
) <= last_changed_charpos
)
12967 /* Check that window start agrees with the start of the first glyph
12968 row in its current matrix. Check this after we know the window
12969 start is not in changed text, otherwise positions would not be
12971 row
= MATRIX_FIRST_TEXT_ROW (current_matrix
);
12972 if (!TEXT_POS_EQUAL_P (start
, row
->start
.pos
))
12975 /* Give up if the window ends in strings. Overlay strings
12976 at the end are difficult to handle, so don't try. */
12977 row
= MATRIX_ROW (current_matrix
, XFASTINT (w
->window_end_vpos
));
12978 if (MATRIX_ROW_START_CHARPOS (row
) == MATRIX_ROW_END_CHARPOS (row
))
12981 /* Compute the position at which we have to start displaying new
12982 lines. Some of the lines at the top of the window might be
12983 reusable because they are not displaying changed text. Find the
12984 last row in W's current matrix not affected by changes at the
12985 start of current_buffer. Value is null if changes start in the
12986 first line of window. */
12987 last_unchanged_at_beg_row
= find_last_unchanged_at_beg_row (w
);
12988 if (last_unchanged_at_beg_row
)
12990 /* Avoid starting to display in the moddle of a character, a TAB
12991 for instance. This is easier than to set up the iterator
12992 exactly, and it's not a frequent case, so the additional
12993 effort wouldn't really pay off. */
12994 while ((MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (last_unchanged_at_beg_row
)
12995 || last_unchanged_at_beg_row
->ends_in_newline_from_string_p
)
12996 && last_unchanged_at_beg_row
> w
->current_matrix
->rows
)
12997 --last_unchanged_at_beg_row
;
12999 if (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (last_unchanged_at_beg_row
))
13002 if (init_to_row_end (&it
, w
, last_unchanged_at_beg_row
) == 0)
13004 start_pos
= it
.current
.pos
;
13006 /* Start displaying new lines in the desired matrix at the same
13007 vpos we would use in the current matrix, i.e. below
13008 last_unchanged_at_beg_row. */
13009 it
.vpos
= 1 + MATRIX_ROW_VPOS (last_unchanged_at_beg_row
,
13011 it
.glyph_row
= MATRIX_ROW (desired_matrix
, it
.vpos
);
13012 it
.current_y
= MATRIX_ROW_BOTTOM_Y (last_unchanged_at_beg_row
);
13014 xassert (it
.hpos
== 0 && it
.current_x
== 0);
13018 /* There are no reusable lines at the start of the window.
13019 Start displaying in the first line. */
13020 start_display (&it
, w
, start
);
13021 start_pos
= it
.current
.pos
;
13024 /* Find the first row that is not affected by changes at the end of
13025 the buffer. Value will be null if there is no unchanged row, in
13026 which case we must redisplay to the end of the window. delta
13027 will be set to the value by which buffer positions beginning with
13028 first_unchanged_at_end_row have to be adjusted due to text
13030 first_unchanged_at_end_row
13031 = find_first_unchanged_at_end_row (w
, &delta
, &delta_bytes
);
13032 IF_DEBUG (debug_delta
= delta
);
13033 IF_DEBUG (debug_delta_bytes
= delta_bytes
);
13035 /* Set stop_pos to the buffer position up to which we will have to
13036 display new lines. If first_unchanged_at_end_row != NULL, this
13037 is the buffer position of the start of the line displayed in that
13038 row. For first_unchanged_at_end_row == NULL, use 0 to indicate
13039 that we don't stop at a buffer position. */
13041 if (first_unchanged_at_end_row
)
13043 xassert (last_unchanged_at_beg_row
== NULL
13044 || first_unchanged_at_end_row
>= last_unchanged_at_beg_row
);
13046 /* If this is a continuation line, move forward to the next one
13047 that isn't. Changes in lines above affect this line.
13048 Caution: this may move first_unchanged_at_end_row to a row
13049 not displaying text. */
13050 while (MATRIX_ROW_CONTINUATION_LINE_P (first_unchanged_at_end_row
)
13051 && MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row
)
13052 && (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row
)
13053 < it
.last_visible_y
))
13054 ++first_unchanged_at_end_row
;
13056 if (!MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row
)
13057 || (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row
)
13058 >= it
.last_visible_y
))
13059 first_unchanged_at_end_row
= NULL
;
13062 stop_pos
= (MATRIX_ROW_START_CHARPOS (first_unchanged_at_end_row
)
13064 first_unchanged_at_end_vpos
13065 = MATRIX_ROW_VPOS (first_unchanged_at_end_row
, current_matrix
);
13066 xassert (stop_pos
>= Z
- END_UNCHANGED
);
13069 else if (last_unchanged_at_beg_row
== NULL
)
13075 /* Either there is no unchanged row at the end, or the one we have
13076 now displays text. This is a necessary condition for the window
13077 end pos calculation at the end of this function. */
13078 xassert (first_unchanged_at_end_row
== NULL
13079 || MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row
));
13081 debug_last_unchanged_at_beg_vpos
13082 = (last_unchanged_at_beg_row
13083 ? MATRIX_ROW_VPOS (last_unchanged_at_beg_row
, current_matrix
)
13085 debug_first_unchanged_at_end_vpos
= first_unchanged_at_end_vpos
;
13087 #endif /* GLYPH_DEBUG != 0 */
13090 /* Display new lines. Set last_text_row to the last new line
13091 displayed which has text on it, i.e. might end up as being the
13092 line where the window_end_vpos is. */
13093 w
->cursor
.vpos
= -1;
13094 last_text_row
= NULL
;
13095 overlay_arrow_seen
= 0;
13096 while (it
.current_y
< it
.last_visible_y
13097 && !fonts_changed_p
13098 && (first_unchanged_at_end_row
== NULL
13099 || IT_CHARPOS (it
) < stop_pos
))
13101 if (display_line (&it
))
13102 last_text_row
= it
.glyph_row
- 1;
13105 if (fonts_changed_p
)
13109 /* Compute differences in buffer positions, y-positions etc. for
13110 lines reused at the bottom of the window. Compute what we can
13112 if (first_unchanged_at_end_row
13113 /* No lines reused because we displayed everything up to the
13114 bottom of the window. */
13115 && it
.current_y
< it
.last_visible_y
)
13118 - MATRIX_ROW_VPOS (first_unchanged_at_end_row
,
13120 dy
= it
.current_y
- first_unchanged_at_end_row
->y
;
13121 run
.current_y
= first_unchanged_at_end_row
->y
;
13122 run
.desired_y
= run
.current_y
+ dy
;
13123 run
.height
= it
.last_visible_y
- max (run
.current_y
, run
.desired_y
);
13127 delta
= dvpos
= dy
= run
.current_y
= run
.desired_y
= run
.height
= 0;
13128 first_unchanged_at_end_row
= NULL
;
13130 IF_DEBUG (debug_dvpos
= dvpos
; debug_dy
= dy
);
13133 /* Find the cursor if not already found. We have to decide whether
13134 PT will appear on this window (it sometimes doesn't, but this is
13135 not a very frequent case.) This decision has to be made before
13136 the current matrix is altered. A value of cursor.vpos < 0 means
13137 that PT is either in one of the lines beginning at
13138 first_unchanged_at_end_row or below the window. Don't care for
13139 lines that might be displayed later at the window end; as
13140 mentioned, this is not a frequent case. */
13141 if (w
->cursor
.vpos
< 0)
13143 /* Cursor in unchanged rows at the top? */
13144 if (PT
< CHARPOS (start_pos
)
13145 && last_unchanged_at_beg_row
)
13147 row
= row_containing_pos (w
, PT
,
13148 MATRIX_FIRST_TEXT_ROW (w
->current_matrix
),
13149 last_unchanged_at_beg_row
+ 1, 0);
13151 set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0, 0, 0);
13154 /* Start from first_unchanged_at_end_row looking for PT. */
13155 else if (first_unchanged_at_end_row
)
13157 row
= row_containing_pos (w
, PT
- delta
,
13158 first_unchanged_at_end_row
, NULL
, 0);
13160 set_cursor_from_row (w
, row
, w
->current_matrix
, delta
,
13161 delta_bytes
, dy
, dvpos
);
13164 /* Give up if cursor was not found. */
13165 if (w
->cursor
.vpos
< 0)
13167 clear_glyph_matrix (w
->desired_matrix
);
13172 /* Don't let the cursor end in the scroll margins. */
13174 int this_scroll_margin
, cursor_height
;
13176 this_scroll_margin
= max (0, scroll_margin
);
13177 this_scroll_margin
= min (this_scroll_margin
, WINDOW_TOTAL_LINES (w
) / 4);
13178 this_scroll_margin
*= FRAME_LINE_HEIGHT (it
.f
);
13179 cursor_height
= MATRIX_ROW (w
->desired_matrix
, w
->cursor
.vpos
)->height
;
13181 if ((w
->cursor
.y
< this_scroll_margin
13182 && CHARPOS (start
) > BEGV
)
13183 /* Don't take scroll margin into account at the bottom because
13184 old redisplay didn't do it either. */
13185 || w
->cursor
.y
+ cursor_height
> it
.last_visible_y
)
13187 w
->cursor
.vpos
= -1;
13188 clear_glyph_matrix (w
->desired_matrix
);
13193 /* Scroll the display. Do it before changing the current matrix so
13194 that xterm.c doesn't get confused about where the cursor glyph is
13196 if (dy
&& run
.height
)
13200 if (FRAME_WINDOW_P (f
))
13202 rif
->update_window_begin_hook (w
);
13203 rif
->clear_window_mouse_face (w
);
13204 rif
->scroll_run_hook (w
, &run
);
13205 rif
->update_window_end_hook (w
, 0, 0);
13209 /* Terminal frame. In this case, dvpos gives the number of
13210 lines to scroll by; dvpos < 0 means scroll up. */
13211 int first_unchanged_at_end_vpos
13212 = MATRIX_ROW_VPOS (first_unchanged_at_end_row
, w
->current_matrix
);
13213 int from
= WINDOW_TOP_EDGE_LINE (w
) + first_unchanged_at_end_vpos
;
13214 int end
= (WINDOW_TOP_EDGE_LINE (w
)
13215 + (WINDOW_WANTS_HEADER_LINE_P (w
) ? 1 : 0)
13216 + window_internal_height (w
));
13218 /* Perform the operation on the screen. */
13221 /* Scroll last_unchanged_at_beg_row to the end of the
13222 window down dvpos lines. */
13223 set_terminal_window (end
);
13225 /* On dumb terminals delete dvpos lines at the end
13226 before inserting dvpos empty lines. */
13227 if (!scroll_region_ok
)
13228 ins_del_lines (end
- dvpos
, -dvpos
);
13230 /* Insert dvpos empty lines in front of
13231 last_unchanged_at_beg_row. */
13232 ins_del_lines (from
, dvpos
);
13234 else if (dvpos
< 0)
13236 /* Scroll up last_unchanged_at_beg_vpos to the end of
13237 the window to last_unchanged_at_beg_vpos - |dvpos|. */
13238 set_terminal_window (end
);
13240 /* Delete dvpos lines in front of
13241 last_unchanged_at_beg_vpos. ins_del_lines will set
13242 the cursor to the given vpos and emit |dvpos| delete
13244 ins_del_lines (from
+ dvpos
, dvpos
);
13246 /* On a dumb terminal insert dvpos empty lines at the
13248 if (!scroll_region_ok
)
13249 ins_del_lines (end
+ dvpos
, -dvpos
);
13252 set_terminal_window (0);
13258 /* Shift reused rows of the current matrix to the right position.
13259 BOTTOM_ROW is the last + 1 row in the current matrix reserved for
13261 bottom_row
= MATRIX_BOTTOM_TEXT_ROW (current_matrix
, w
);
13262 bottom_vpos
= MATRIX_ROW_VPOS (bottom_row
, current_matrix
);
13265 rotate_matrix (current_matrix
, first_unchanged_at_end_vpos
+ dvpos
,
13266 bottom_vpos
, dvpos
);
13267 enable_glyph_matrix_rows (current_matrix
, bottom_vpos
+ dvpos
,
13270 else if (dvpos
> 0)
13272 rotate_matrix (current_matrix
, first_unchanged_at_end_vpos
,
13273 bottom_vpos
, dvpos
);
13274 enable_glyph_matrix_rows (current_matrix
, first_unchanged_at_end_vpos
,
13275 first_unchanged_at_end_vpos
+ dvpos
, 0);
13278 /* For frame-based redisplay, make sure that current frame and window
13279 matrix are in sync with respect to glyph memory. */
13280 if (!FRAME_WINDOW_P (f
))
13281 sync_frame_with_window_matrix_rows (w
);
13283 /* Adjust buffer positions in reused rows. */
13285 increment_matrix_positions (current_matrix
,
13286 first_unchanged_at_end_vpos
+ dvpos
,
13287 bottom_vpos
, delta
, delta_bytes
);
13289 /* Adjust Y positions. */
13291 shift_glyph_matrix (w
, current_matrix
,
13292 first_unchanged_at_end_vpos
+ dvpos
,
13295 if (first_unchanged_at_end_row
)
13296 first_unchanged_at_end_row
+= dvpos
;
13298 /* If scrolling up, there may be some lines to display at the end of
13300 last_text_row_at_end
= NULL
;
13303 /* Scrolling up can leave for example a partially visible line
13304 at the end of the window to be redisplayed. */
13305 /* Set last_row to the glyph row in the current matrix where the
13306 window end line is found. It has been moved up or down in
13307 the matrix by dvpos. */
13308 int last_vpos
= XFASTINT (w
->window_end_vpos
) + dvpos
;
13309 struct glyph_row
*last_row
= MATRIX_ROW (current_matrix
, last_vpos
);
13311 /* If last_row is the window end line, it should display text. */
13312 xassert (last_row
->displays_text_p
);
13314 /* If window end line was partially visible before, begin
13315 displaying at that line. Otherwise begin displaying with the
13316 line following it. */
13317 if (MATRIX_ROW_BOTTOM_Y (last_row
) - dy
>= it
.last_visible_y
)
13319 init_to_row_start (&it
, w
, last_row
);
13320 it
.vpos
= last_vpos
;
13321 it
.current_y
= last_row
->y
;
13325 init_to_row_end (&it
, w
, last_row
);
13326 it
.vpos
= 1 + last_vpos
;
13327 it
.current_y
= MATRIX_ROW_BOTTOM_Y (last_row
);
13331 /* We may start in a continuation line. If so, we have to
13332 get the right continuation_lines_width and current_x. */
13333 it
.continuation_lines_width
= last_row
->continuation_lines_width
;
13334 it
.hpos
= it
.current_x
= 0;
13336 /* Display the rest of the lines at the window end. */
13337 it
.glyph_row
= MATRIX_ROW (desired_matrix
, it
.vpos
);
13338 while (it
.current_y
< it
.last_visible_y
13339 && !fonts_changed_p
)
13341 /* Is it always sure that the display agrees with lines in
13342 the current matrix? I don't think so, so we mark rows
13343 displayed invalid in the current matrix by setting their
13344 enabled_p flag to zero. */
13345 MATRIX_ROW (w
->current_matrix
, it
.vpos
)->enabled_p
= 0;
13346 if (display_line (&it
))
13347 last_text_row_at_end
= it
.glyph_row
- 1;
13351 /* Update window_end_pos and window_end_vpos. */
13352 if (first_unchanged_at_end_row
13353 && first_unchanged_at_end_row
->y
< it
.last_visible_y
13354 && !last_text_row_at_end
)
13356 /* Window end line if one of the preserved rows from the current
13357 matrix. Set row to the last row displaying text in current
13358 matrix starting at first_unchanged_at_end_row, after
13360 xassert (first_unchanged_at_end_row
->displays_text_p
);
13361 row
= find_last_row_displaying_text (w
->current_matrix
, &it
,
13362 first_unchanged_at_end_row
);
13363 xassert (row
&& MATRIX_ROW_DISPLAYS_TEXT_P (row
));
13365 w
->window_end_pos
= make_number (Z
- MATRIX_ROW_END_CHARPOS (row
));
13366 w
->window_end_bytepos
= Z_BYTE
- MATRIX_ROW_END_BYTEPOS (row
);
13368 = make_number (MATRIX_ROW_VPOS (row
, w
->current_matrix
));
13369 xassert (w
->window_end_bytepos
>= 0);
13370 IF_DEBUG (debug_method_add (w
, "A"));
13372 else if (last_text_row_at_end
)
13375 = make_number (Z
- MATRIX_ROW_END_CHARPOS (last_text_row_at_end
));
13376 w
->window_end_bytepos
13377 = Z_BYTE
- MATRIX_ROW_END_BYTEPOS (last_text_row_at_end
);
13379 = make_number (MATRIX_ROW_VPOS (last_text_row_at_end
, desired_matrix
));
13380 xassert (w
->window_end_bytepos
>= 0);
13381 IF_DEBUG (debug_method_add (w
, "B"));
13383 else if (last_text_row
)
13385 /* We have displayed either to the end of the window or at the
13386 end of the window, i.e. the last row with text is to be found
13387 in the desired matrix. */
13389 = make_number (Z
- MATRIX_ROW_END_CHARPOS (last_text_row
));
13390 w
->window_end_bytepos
13391 = Z_BYTE
- MATRIX_ROW_END_BYTEPOS (last_text_row
);
13393 = make_number (MATRIX_ROW_VPOS (last_text_row
, desired_matrix
));
13394 xassert (w
->window_end_bytepos
>= 0);
13396 else if (first_unchanged_at_end_row
== NULL
13397 && last_text_row
== NULL
13398 && last_text_row_at_end
== NULL
)
13400 /* Displayed to end of window, but no line containing text was
13401 displayed. Lines were deleted at the end of the window. */
13402 int first_vpos
= WINDOW_WANTS_HEADER_LINE_P (w
) ? 1 : 0;
13403 int vpos
= XFASTINT (w
->window_end_vpos
);
13404 struct glyph_row
*current_row
= current_matrix
->rows
+ vpos
;
13405 struct glyph_row
*desired_row
= desired_matrix
->rows
+ vpos
;
13408 row
== NULL
&& vpos
>= first_vpos
;
13409 --vpos
, --current_row
, --desired_row
)
13411 if (desired_row
->enabled_p
)
13413 if (desired_row
->displays_text_p
)
13416 else if (current_row
->displays_text_p
)
13420 xassert (row
!= NULL
);
13421 w
->window_end_vpos
= make_number (vpos
+ 1);
13422 w
->window_end_pos
= make_number (Z
- MATRIX_ROW_END_CHARPOS (row
));
13423 w
->window_end_bytepos
= Z_BYTE
- MATRIX_ROW_END_BYTEPOS (row
);
13424 xassert (w
->window_end_bytepos
>= 0);
13425 IF_DEBUG (debug_method_add (w
, "C"));
13430 #if 0 /* This leads to problems, for instance when the cursor is
13431 at ZV, and the cursor line displays no text. */
13432 /* Disable rows below what's displayed in the window. This makes
13433 debugging easier. */
13434 enable_glyph_matrix_rows (current_matrix
,
13435 XFASTINT (w
->window_end_vpos
) + 1,
13439 IF_DEBUG (debug_end_pos
= XFASTINT (w
->window_end_pos
);
13440 debug_end_vpos
= XFASTINT (w
->window_end_vpos
));
13442 /* Record that display has not been completed. */
13443 w
->window_end_valid
= Qnil
;
13444 w
->desired_matrix
->no_scrolling_p
= 1;
13452 /***********************************************************************
13453 More debugging support
13454 ***********************************************************************/
13458 void dump_glyph_row
P_ ((struct glyph_row
*, int, int));
13459 void dump_glyph_matrix
P_ ((struct glyph_matrix
*, int));
13460 void dump_glyph
P_ ((struct glyph_row
*, struct glyph
*, int));
13463 /* Dump the contents of glyph matrix MATRIX on stderr.
13465 GLYPHS 0 means don't show glyph contents.
13466 GLYPHS 1 means show glyphs in short form
13467 GLYPHS > 1 means show glyphs in long form. */
13470 dump_glyph_matrix (matrix
, glyphs
)
13471 struct glyph_matrix
*matrix
;
13475 for (i
= 0; i
< matrix
->nrows
; ++i
)
13476 dump_glyph_row (MATRIX_ROW (matrix
, i
), i
, glyphs
);
13480 /* Dump contents of glyph GLYPH to stderr. ROW and AREA are
13481 the glyph row and area where the glyph comes from. */
13484 dump_glyph (row
, glyph
, area
)
13485 struct glyph_row
*row
;
13486 struct glyph
*glyph
;
13489 if (glyph
->type
== CHAR_GLYPH
)
13492 " %5d %4c %6d %c %3d 0x%05x %c %4d %1.1d%1.1d\n",
13493 glyph
- row
->glyphs
[TEXT_AREA
],
13496 (BUFFERP (glyph
->object
)
13498 : (STRINGP (glyph
->object
)
13501 glyph
->pixel_width
,
13503 (glyph
->u
.ch
< 0x80 && glyph
->u
.ch
>= ' '
13507 glyph
->left_box_line_p
,
13508 glyph
->right_box_line_p
);
13510 else if (glyph
->type
== STRETCH_GLYPH
)
13513 " %5d %4c %6d %c %3d 0x%05x %c %4d %1.1d%1.1d\n",
13514 glyph
- row
->glyphs
[TEXT_AREA
],
13517 (BUFFERP (glyph
->object
)
13519 : (STRINGP (glyph
->object
)
13522 glyph
->pixel_width
,
13526 glyph
->left_box_line_p
,
13527 glyph
->right_box_line_p
);
13529 else if (glyph
->type
== IMAGE_GLYPH
)
13532 " %5d %4c %6d %c %3d 0x%05x %c %4d %1.1d%1.1d\n",
13533 glyph
- row
->glyphs
[TEXT_AREA
],
13536 (BUFFERP (glyph
->object
)
13538 : (STRINGP (glyph
->object
)
13541 glyph
->pixel_width
,
13545 glyph
->left_box_line_p
,
13546 glyph
->right_box_line_p
);
13551 /* Dump the contents of glyph row at VPOS in MATRIX to stderr.
13552 GLYPHS 0 means don't show glyph contents.
13553 GLYPHS 1 means show glyphs in short form
13554 GLYPHS > 1 means show glyphs in long form. */
13557 dump_glyph_row (row
, vpos
, glyphs
)
13558 struct glyph_row
*row
;
13563 fprintf (stderr
, "Row Start End Used oEI><O\\CTZFesm X Y W H V A P\n");
13564 fprintf (stderr
, "=======================================================================\n");
13566 fprintf (stderr
, "%3d %5d %5d %4d %1.1d%1.1d%1.1d%1.1d%1.1d\
13567 %1.1d%1.1d%1.1d%1.1d%1.1d%1.1d%1.1d%1.1d %4d %4d %4d %4d %4d %4d %4d\n",
13569 MATRIX_ROW_START_CHARPOS (row
),
13570 MATRIX_ROW_END_CHARPOS (row
),
13571 row
->used
[TEXT_AREA
],
13572 row
->contains_overlapping_glyphs_p
,
13574 row
->truncated_on_left_p
,
13575 row
->truncated_on_right_p
,
13576 row
->overlay_arrow_p
,
13578 MATRIX_ROW_CONTINUATION_LINE_P (row
),
13579 row
->displays_text_p
,
13582 row
->ends_in_middle_of_char_p
,
13583 row
->starts_in_middle_of_char_p
,
13589 row
->visible_height
,
13592 fprintf (stderr
, "%9d %5d\t%5d\n", row
->start
.overlay_string_index
,
13593 row
->end
.overlay_string_index
,
13594 row
->continuation_lines_width
);
13595 fprintf (stderr
, "%9d %5d\n",
13596 CHARPOS (row
->start
.string_pos
),
13597 CHARPOS (row
->end
.string_pos
));
13598 fprintf (stderr
, "%9d %5d\n", row
->start
.dpvec_index
,
13599 row
->end
.dpvec_index
);
13606 for (area
= LEFT_MARGIN_AREA
; area
< LAST_AREA
; ++area
)
13608 struct glyph
*glyph
= row
->glyphs
[area
];
13609 struct glyph
*glyph_end
= glyph
+ row
->used
[area
];
13611 /* Glyph for a line end in text. */
13612 if (area
== TEXT_AREA
&& glyph
== glyph_end
&& glyph
->charpos
> 0)
13615 if (glyph
< glyph_end
)
13616 fprintf (stderr
, " Glyph Type Pos O W Code C Face LR\n");
13618 for (; glyph
< glyph_end
; ++glyph
)
13619 dump_glyph (row
, glyph
, area
);
13622 else if (glyphs
== 1)
13626 for (area
= LEFT_MARGIN_AREA
; area
< LAST_AREA
; ++area
)
13628 char *s
= (char *) alloca (row
->used
[area
] + 1);
13631 for (i
= 0; i
< row
->used
[area
]; ++i
)
13633 struct glyph
*glyph
= row
->glyphs
[area
] + i
;
13634 if (glyph
->type
== CHAR_GLYPH
13635 && glyph
->u
.ch
< 0x80
13636 && glyph
->u
.ch
>= ' ')
13637 s
[i
] = glyph
->u
.ch
;
13643 fprintf (stderr
, "%3d: (%d) '%s'\n", vpos
, row
->enabled_p
, s
);
13649 DEFUN ("dump-glyph-matrix", Fdump_glyph_matrix
,
13650 Sdump_glyph_matrix
, 0, 1, "p",
13651 doc
: /* Dump the current matrix of the selected window to stderr.
13652 Shows contents of glyph row structures. With non-nil
13653 parameter GLYPHS, dump glyphs as well. If GLYPHS is 1 show
13654 glyphs in short form, otherwise show glyphs in long form. */)
13656 Lisp_Object glyphs
;
13658 struct window
*w
= XWINDOW (selected_window
);
13659 struct buffer
*buffer
= XBUFFER (w
->buffer
);
13661 fprintf (stderr
, "PT = %d, BEGV = %d. ZV = %d\n",
13662 BUF_PT (buffer
), BUF_BEGV (buffer
), BUF_ZV (buffer
));
13663 fprintf (stderr
, "Cursor x = %d, y = %d, hpos = %d, vpos = %d\n",
13664 w
->cursor
.x
, w
->cursor
.y
, w
->cursor
.hpos
, w
->cursor
.vpos
);
13665 fprintf (stderr
, "=============================================\n");
13666 dump_glyph_matrix (w
->current_matrix
,
13667 NILP (glyphs
) ? 0 : XINT (glyphs
));
13672 DEFUN ("dump-frame-glyph-matrix", Fdump_frame_glyph_matrix
,
13673 Sdump_frame_glyph_matrix
, 0, 0, "", doc
: /* */)
13676 struct frame
*f
= XFRAME (selected_frame
);
13677 dump_glyph_matrix (f
->current_matrix
, 1);
13682 DEFUN ("dump-glyph-row", Fdump_glyph_row
, Sdump_glyph_row
, 1, 2, "",
13683 doc
: /* Dump glyph row ROW to stderr.
13684 GLYPH 0 means don't dump glyphs.
13685 GLYPH 1 means dump glyphs in short form.
13686 GLYPH > 1 or omitted means dump glyphs in long form. */)
13688 Lisp_Object row
, glyphs
;
13690 struct glyph_matrix
*matrix
;
13693 CHECK_NUMBER (row
);
13694 matrix
= XWINDOW (selected_window
)->current_matrix
;
13696 if (vpos
>= 0 && vpos
< matrix
->nrows
)
13697 dump_glyph_row (MATRIX_ROW (matrix
, vpos
),
13699 INTEGERP (glyphs
) ? XINT (glyphs
) : 2);
13704 DEFUN ("dump-tool-bar-row", Fdump_tool_bar_row
, Sdump_tool_bar_row
, 1, 2, "",
13705 doc
: /* Dump glyph row ROW of the tool-bar of the current frame to stderr.
13706 GLYPH 0 means don't dump glyphs.
13707 GLYPH 1 means dump glyphs in short form.
13708 GLYPH > 1 or omitted means dump glyphs in long form. */)
13710 Lisp_Object row
, glyphs
;
13712 struct frame
*sf
= SELECTED_FRAME ();
13713 struct glyph_matrix
*m
= XWINDOW (sf
->tool_bar_window
)->current_matrix
;
13716 CHECK_NUMBER (row
);
13718 if (vpos
>= 0 && vpos
< m
->nrows
)
13719 dump_glyph_row (MATRIX_ROW (m
, vpos
), vpos
,
13720 INTEGERP (glyphs
) ? XINT (glyphs
) : 2);
13725 DEFUN ("trace-redisplay", Ftrace_redisplay
, Strace_redisplay
, 0, 1, "P",
13726 doc
: /* Toggle tracing of redisplay.
13727 With ARG, turn tracing on if and only if ARG is positive. */)
13732 trace_redisplay_p
= !trace_redisplay_p
;
13735 arg
= Fprefix_numeric_value (arg
);
13736 trace_redisplay_p
= XINT (arg
) > 0;
13743 DEFUN ("trace-to-stderr", Ftrace_to_stderr
, Strace_to_stderr
, 1, MANY
, "",
13744 doc
: /* Like `format', but print result to stderr.
13745 usage: (trace-to-stderr STRING &rest OBJECTS) */)
13750 Lisp_Object s
= Fformat (nargs
, args
);
13751 fprintf (stderr
, "%s", SDATA (s
));
13755 #endif /* GLYPH_DEBUG */
13759 /***********************************************************************
13760 Building Desired Matrix Rows
13761 ***********************************************************************/
13763 /* Return a temporary glyph row holding the glyphs of an overlay
13764 arrow. Only used for non-window-redisplay windows. */
13766 static struct glyph_row
*
13767 get_overlay_arrow_glyph_row (w
)
13770 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
13771 struct buffer
*buffer
= XBUFFER (w
->buffer
);
13772 struct buffer
*old
= current_buffer
;
13773 const unsigned char *arrow_string
= SDATA (Voverlay_arrow_string
);
13774 int arrow_len
= SCHARS (Voverlay_arrow_string
);
13775 const unsigned char *arrow_end
= arrow_string
+ arrow_len
;
13776 const unsigned char *p
;
13779 int n_glyphs_before
;
13781 set_buffer_temp (buffer
);
13782 init_iterator (&it
, w
, -1, -1, &scratch_glyph_row
, DEFAULT_FACE_ID
);
13783 it
.glyph_row
->used
[TEXT_AREA
] = 0;
13784 SET_TEXT_POS (it
.position
, 0, 0);
13786 multibyte_p
= !NILP (buffer
->enable_multibyte_characters
);
13788 while (p
< arrow_end
)
13790 Lisp_Object face
, ilisp
;
13792 /* Get the next character. */
13794 it
.c
= string_char_and_length (p
, arrow_len
, &it
.len
);
13796 it
.c
= *p
, it
.len
= 1;
13799 /* Get its face. */
13800 ilisp
= make_number (p
- arrow_string
);
13801 face
= Fget_text_property (ilisp
, Qface
, Voverlay_arrow_string
);
13802 it
.face_id
= compute_char_face (f
, it
.c
, face
);
13804 /* Compute its width, get its glyphs. */
13805 n_glyphs_before
= it
.glyph_row
->used
[TEXT_AREA
];
13806 SET_TEXT_POS (it
.position
, -1, -1);
13807 PRODUCE_GLYPHS (&it
);
13809 /* If this character doesn't fit any more in the line, we have
13810 to remove some glyphs. */
13811 if (it
.current_x
> it
.last_visible_x
)
13813 it
.glyph_row
->used
[TEXT_AREA
] = n_glyphs_before
;
13818 set_buffer_temp (old
);
13819 return it
.glyph_row
;
13823 /* Insert truncation glyphs at the start of IT->glyph_row. Truncation
13824 glyphs are only inserted for terminal frames since we can't really
13825 win with truncation glyphs when partially visible glyphs are
13826 involved. Which glyphs to insert is determined by
13827 produce_special_glyphs. */
13830 insert_left_trunc_glyphs (it
)
13833 struct it truncate_it
;
13834 struct glyph
*from
, *end
, *to
, *toend
;
13836 xassert (!FRAME_WINDOW_P (it
->f
));
13838 /* Get the truncation glyphs. */
13840 truncate_it
.current_x
= 0;
13841 truncate_it
.face_id
= DEFAULT_FACE_ID
;
13842 truncate_it
.glyph_row
= &scratch_glyph_row
;
13843 truncate_it
.glyph_row
->used
[TEXT_AREA
] = 0;
13844 CHARPOS (truncate_it
.position
) = BYTEPOS (truncate_it
.position
) = -1;
13845 truncate_it
.object
= make_number (0);
13846 produce_special_glyphs (&truncate_it
, IT_TRUNCATION
);
13848 /* Overwrite glyphs from IT with truncation glyphs. */
13849 from
= truncate_it
.glyph_row
->glyphs
[TEXT_AREA
];
13850 end
= from
+ truncate_it
.glyph_row
->used
[TEXT_AREA
];
13851 to
= it
->glyph_row
->glyphs
[TEXT_AREA
];
13852 toend
= to
+ it
->glyph_row
->used
[TEXT_AREA
];
13857 /* There may be padding glyphs left over. Overwrite them too. */
13858 while (to
< toend
&& CHAR_GLYPH_PADDING_P (*to
))
13860 from
= truncate_it
.glyph_row
->glyphs
[TEXT_AREA
];
13866 it
->glyph_row
->used
[TEXT_AREA
] = to
- it
->glyph_row
->glyphs
[TEXT_AREA
];
13870 /* Compute the pixel height and width of IT->glyph_row.
13872 Most of the time, ascent and height of a display line will be equal
13873 to the max_ascent and max_height values of the display iterator
13874 structure. This is not the case if
13876 1. We hit ZV without displaying anything. In this case, max_ascent
13877 and max_height will be zero.
13879 2. We have some glyphs that don't contribute to the line height.
13880 (The glyph row flag contributes_to_line_height_p is for future
13881 pixmap extensions).
13883 The first case is easily covered by using default values because in
13884 these cases, the line height does not really matter, except that it
13885 must not be zero. */
13888 compute_line_metrics (it
)
13891 struct glyph_row
*row
= it
->glyph_row
;
13894 if (FRAME_WINDOW_P (it
->f
))
13896 int i
, min_y
, max_y
;
13898 /* The line may consist of one space only, that was added to
13899 place the cursor on it. If so, the row's height hasn't been
13901 if (row
->height
== 0)
13903 if (it
->max_ascent
+ it
->max_descent
== 0)
13904 it
->max_descent
= it
->max_phys_descent
= FRAME_LINE_HEIGHT (it
->f
);
13905 row
->ascent
= it
->max_ascent
;
13906 row
->height
= it
->max_ascent
+ it
->max_descent
;
13907 row
->phys_ascent
= it
->max_phys_ascent
;
13908 row
->phys_height
= it
->max_phys_ascent
+ it
->max_phys_descent
;
13911 /* Compute the width of this line. */
13912 row
->pixel_width
= row
->x
;
13913 for (i
= 0; i
< row
->used
[TEXT_AREA
]; ++i
)
13914 row
->pixel_width
+= row
->glyphs
[TEXT_AREA
][i
].pixel_width
;
13916 xassert (row
->pixel_width
>= 0);
13917 xassert (row
->ascent
>= 0 && row
->height
> 0);
13919 row
->overlapping_p
= (MATRIX_ROW_OVERLAPS_SUCC_P (row
)
13920 || MATRIX_ROW_OVERLAPS_PRED_P (row
));
13922 /* If first line's physical ascent is larger than its logical
13923 ascent, use the physical ascent, and make the row taller.
13924 This makes accented characters fully visible. */
13925 if (row
== MATRIX_FIRST_TEXT_ROW (it
->w
->desired_matrix
)
13926 && row
->phys_ascent
> row
->ascent
)
13928 row
->height
+= row
->phys_ascent
- row
->ascent
;
13929 row
->ascent
= row
->phys_ascent
;
13932 /* Compute how much of the line is visible. */
13933 row
->visible_height
= row
->height
;
13935 min_y
= WINDOW_HEADER_LINE_HEIGHT (it
->w
);
13936 max_y
= WINDOW_BOX_HEIGHT_NO_MODE_LINE (it
->w
);
13938 if (row
->y
< min_y
)
13939 row
->visible_height
-= min_y
- row
->y
;
13940 if (row
->y
+ row
->height
> max_y
)
13941 row
->visible_height
-= row
->y
+ row
->height
- max_y
;
13945 row
->pixel_width
= row
->used
[TEXT_AREA
];
13946 if (row
->continued_p
)
13947 row
->pixel_width
-= it
->continuation_pixel_width
;
13948 else if (row
->truncated_on_right_p
)
13949 row
->pixel_width
-= it
->truncation_pixel_width
;
13950 row
->ascent
= row
->phys_ascent
= 0;
13951 row
->height
= row
->phys_height
= row
->visible_height
= 1;
13954 /* Compute a hash code for this row. */
13956 for (area
= LEFT_MARGIN_AREA
; area
< LAST_AREA
; ++area
)
13957 for (i
= 0; i
< row
->used
[area
]; ++i
)
13958 row
->hash
= ((((row
->hash
<< 4) + (row
->hash
>> 24)) & 0x0fffffff)
13959 + row
->glyphs
[area
][i
].u
.val
13960 + row
->glyphs
[area
][i
].face_id
13961 + row
->glyphs
[area
][i
].padding_p
13962 + (row
->glyphs
[area
][i
].type
<< 2));
13964 it
->max_ascent
= it
->max_descent
= 0;
13965 it
->max_phys_ascent
= it
->max_phys_descent
= 0;
13969 /* Append one space to the glyph row of iterator IT if doing a
13970 window-based redisplay. DEFAULT_FACE_P non-zero means let the
13971 space have the default face, otherwise let it have the same face as
13972 IT->face_id. Value is non-zero if a space was added.
13974 This function is called to make sure that there is always one glyph
13975 at the end of a glyph row that the cursor can be set on under
13976 window-systems. (If there weren't such a glyph we would not know
13977 how wide and tall a box cursor should be displayed).
13979 At the same time this space let's a nicely handle clearing to the
13980 end of the line if the row ends in italic text. */
13983 append_space (it
, default_face_p
)
13985 int default_face_p
;
13987 if (FRAME_WINDOW_P (it
->f
))
13989 int n
= it
->glyph_row
->used
[TEXT_AREA
];
13991 if (it
->glyph_row
->glyphs
[TEXT_AREA
] + n
13992 < it
->glyph_row
->glyphs
[1 + TEXT_AREA
])
13994 /* Save some values that must not be changed.
13995 Must save IT->c and IT->len because otherwise
13996 ITERATOR_AT_END_P wouldn't work anymore after
13997 append_space has been called. */
13998 enum display_element_type saved_what
= it
->what
;
13999 int saved_c
= it
->c
, saved_len
= it
->len
;
14000 int saved_x
= it
->current_x
;
14001 int saved_face_id
= it
->face_id
;
14002 struct text_pos saved_pos
;
14003 Lisp_Object saved_object
;
14006 saved_object
= it
->object
;
14007 saved_pos
= it
->position
;
14009 it
->what
= IT_CHARACTER
;
14010 bzero (&it
->position
, sizeof it
->position
);
14011 it
->object
= make_number (0);
14015 if (default_face_p
)
14016 it
->face_id
= DEFAULT_FACE_ID
;
14017 else if (it
->face_before_selective_p
)
14018 it
->face_id
= it
->saved_face_id
;
14019 face
= FACE_FROM_ID (it
->f
, it
->face_id
);
14020 it
->face_id
= FACE_FOR_CHAR (it
->f
, face
, 0);
14022 PRODUCE_GLYPHS (it
);
14024 it
->current_x
= saved_x
;
14025 it
->object
= saved_object
;
14026 it
->position
= saved_pos
;
14027 it
->what
= saved_what
;
14028 it
->face_id
= saved_face_id
;
14029 it
->len
= saved_len
;
14039 /* Extend the face of the last glyph in the text area of IT->glyph_row
14040 to the end of the display line. Called from display_line.
14041 If the glyph row is empty, add a space glyph to it so that we
14042 know the face to draw. Set the glyph row flag fill_line_p. */
14045 extend_face_to_end_of_line (it
)
14049 struct frame
*f
= it
->f
;
14051 /* If line is already filled, do nothing. */
14052 if (it
->current_x
>= it
->last_visible_x
)
14055 /* Face extension extends the background and box of IT->face_id
14056 to the end of the line. If the background equals the background
14057 of the frame, we don't have to do anything. */
14058 if (it
->face_before_selective_p
)
14059 face
= FACE_FROM_ID (it
->f
, it
->saved_face_id
);
14061 face
= FACE_FROM_ID (f
, it
->face_id
);
14063 if (FRAME_WINDOW_P (f
)
14064 && face
->box
== FACE_NO_BOX
14065 && face
->background
== FRAME_BACKGROUND_PIXEL (f
)
14069 /* Set the glyph row flag indicating that the face of the last glyph
14070 in the text area has to be drawn to the end of the text area. */
14071 it
->glyph_row
->fill_line_p
= 1;
14073 /* If current character of IT is not ASCII, make sure we have the
14074 ASCII face. This will be automatically undone the next time
14075 get_next_display_element returns a multibyte character. Note
14076 that the character will always be single byte in unibyte text. */
14077 if (!SINGLE_BYTE_CHAR_P (it
->c
))
14079 it
->face_id
= FACE_FOR_CHAR (f
, face
, 0);
14082 if (FRAME_WINDOW_P (f
))
14084 /* If the row is empty, add a space with the current face of IT,
14085 so that we know which face to draw. */
14086 if (it
->glyph_row
->used
[TEXT_AREA
] == 0)
14088 it
->glyph_row
->glyphs
[TEXT_AREA
][0] = space_glyph
;
14089 it
->glyph_row
->glyphs
[TEXT_AREA
][0].face_id
= it
->face_id
;
14090 it
->glyph_row
->used
[TEXT_AREA
] = 1;
14095 /* Save some values that must not be changed. */
14096 int saved_x
= it
->current_x
;
14097 struct text_pos saved_pos
;
14098 Lisp_Object saved_object
;
14099 enum display_element_type saved_what
= it
->what
;
14100 int saved_face_id
= it
->face_id
;
14102 saved_object
= it
->object
;
14103 saved_pos
= it
->position
;
14105 it
->what
= IT_CHARACTER
;
14106 bzero (&it
->position
, sizeof it
->position
);
14107 it
->object
= make_number (0);
14110 it
->face_id
= face
->id
;
14112 PRODUCE_GLYPHS (it
);
14114 while (it
->current_x
<= it
->last_visible_x
)
14115 PRODUCE_GLYPHS (it
);
14117 /* Don't count these blanks really. It would let us insert a left
14118 truncation glyph below and make us set the cursor on them, maybe. */
14119 it
->current_x
= saved_x
;
14120 it
->object
= saved_object
;
14121 it
->position
= saved_pos
;
14122 it
->what
= saved_what
;
14123 it
->face_id
= saved_face_id
;
14128 /* Value is non-zero if text starting at CHARPOS in current_buffer is
14129 trailing whitespace. */
14132 trailing_whitespace_p (charpos
)
14135 int bytepos
= CHAR_TO_BYTE (charpos
);
14138 while (bytepos
< ZV_BYTE
14139 && (c
= FETCH_CHAR (bytepos
),
14140 c
== ' ' || c
== '\t'))
14143 if (bytepos
>= ZV_BYTE
|| c
== '\n' || c
== '\r')
14145 if (bytepos
!= PT_BYTE
)
14152 /* Highlight trailing whitespace, if any, in ROW. */
14155 highlight_trailing_whitespace (f
, row
)
14157 struct glyph_row
*row
;
14159 int used
= row
->used
[TEXT_AREA
];
14163 struct glyph
*start
= row
->glyphs
[TEXT_AREA
];
14164 struct glyph
*glyph
= start
+ used
- 1;
14166 /* Skip over glyphs inserted to display the cursor at the
14167 end of a line, for extending the face of the last glyph
14168 to the end of the line on terminals, and for truncation
14169 and continuation glyphs. */
14170 while (glyph
>= start
14171 && glyph
->type
== CHAR_GLYPH
14172 && INTEGERP (glyph
->object
))
14175 /* If last glyph is a space or stretch, and it's trailing
14176 whitespace, set the face of all trailing whitespace glyphs in
14177 IT->glyph_row to `trailing-whitespace'. */
14179 && BUFFERP (glyph
->object
)
14180 && (glyph
->type
== STRETCH_GLYPH
14181 || (glyph
->type
== CHAR_GLYPH
14182 && glyph
->u
.ch
== ' '))
14183 && trailing_whitespace_p (glyph
->charpos
))
14185 int face_id
= lookup_named_face (f
, Qtrailing_whitespace
, 0);
14187 while (glyph
>= start
14188 && BUFFERP (glyph
->object
)
14189 && (glyph
->type
== STRETCH_GLYPH
14190 || (glyph
->type
== CHAR_GLYPH
14191 && glyph
->u
.ch
== ' ')))
14192 (glyph
--)->face_id
= face_id
;
14198 /* Value is non-zero if glyph row ROW in window W should be
14199 used to hold the cursor. */
14202 cursor_row_p (w
, row
)
14204 struct glyph_row
*row
;
14206 int cursor_row_p
= 1;
14208 if (PT
== MATRIX_ROW_END_CHARPOS (row
))
14210 /* If the row ends with a newline from a string, we don't want
14211 the cursor there (if the row is continued it doesn't end in a
14213 if (CHARPOS (row
->end
.string_pos
) >= 0
14214 || MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row
))
14215 cursor_row_p
= row
->continued_p
;
14217 /* If the row ends at ZV, display the cursor at the end of that
14218 row instead of at the start of the row below. */
14219 else if (row
->ends_at_zv_p
)
14225 return cursor_row_p
;
14229 /* Construct the glyph row IT->glyph_row in the desired matrix of
14230 IT->w from text at the current position of IT. See dispextern.h
14231 for an overview of struct it. Value is non-zero if
14232 IT->glyph_row displays text, as opposed to a line displaying ZV
14239 struct glyph_row
*row
= it
->glyph_row
;
14241 /* We always start displaying at hpos zero even if hscrolled. */
14242 xassert (it
->hpos
== 0 && it
->current_x
== 0);
14244 /* We must not display in a row that's not a text row. */
14245 xassert (MATRIX_ROW_VPOS (row
, it
->w
->desired_matrix
)
14246 < it
->w
->desired_matrix
->nrows
);
14248 /* Is IT->w showing the region? */
14249 it
->w
->region_showing
= it
->region_beg_charpos
> 0 ? Qt
: Qnil
;
14251 /* Clear the result glyph row and enable it. */
14252 prepare_desired_row (row
);
14254 row
->y
= it
->current_y
;
14255 row
->start
= it
->current
;
14256 row
->continuation_lines_width
= it
->continuation_lines_width
;
14257 row
->displays_text_p
= 1;
14258 row
->starts_in_middle_of_char_p
= it
->starts_in_middle_of_char_p
;
14259 it
->starts_in_middle_of_char_p
= 0;
14261 /* Arrange the overlays nicely for our purposes. Usually, we call
14262 display_line on only one line at a time, in which case this
14263 can't really hurt too much, or we call it on lines which appear
14264 one after another in the buffer, in which case all calls to
14265 recenter_overlay_lists but the first will be pretty cheap. */
14266 recenter_overlay_lists (current_buffer
, IT_CHARPOS (*it
));
14268 /* Move over display elements that are not visible because we are
14269 hscrolled. This may stop at an x-position < IT->first_visible_x
14270 if the first glyph is partially visible or if we hit a line end. */
14271 if (it
->current_x
< it
->first_visible_x
)
14272 move_it_in_display_line_to (it
, ZV
, it
->first_visible_x
,
14273 MOVE_TO_POS
| MOVE_TO_X
);
14275 /* Get the initial row height. This is either the height of the
14276 text hscrolled, if there is any, or zero. */
14277 row
->ascent
= it
->max_ascent
;
14278 row
->height
= it
->max_ascent
+ it
->max_descent
;
14279 row
->phys_ascent
= it
->max_phys_ascent
;
14280 row
->phys_height
= it
->max_phys_ascent
+ it
->max_phys_descent
;
14282 /* Loop generating characters. The loop is left with IT on the next
14283 character to display. */
14286 int n_glyphs_before
, hpos_before
, x_before
;
14288 int ascent
= 0, descent
= 0, phys_ascent
= 0, phys_descent
= 0;
14290 /* Retrieve the next thing to display. Value is zero if end of
14292 if (!get_next_display_element (it
))
14294 /* Maybe add a space at the end of this line that is used to
14295 display the cursor there under X. Set the charpos of the
14296 first glyph of blank lines not corresponding to any text
14298 if ((append_space (it
, 1) && row
->used
[TEXT_AREA
] == 1)
14299 || row
->used
[TEXT_AREA
] == 0)
14301 row
->glyphs
[TEXT_AREA
]->charpos
= -1;
14302 row
->displays_text_p
= 0;
14304 if (!NILP (XBUFFER (it
->w
->buffer
)->indicate_empty_lines
)
14305 && (!MINI_WINDOW_P (it
->w
)
14306 || (minibuf_level
&& EQ (it
->window
, minibuf_window
))))
14307 row
->indicate_empty_line_p
= 1;
14310 it
->continuation_lines_width
= 0;
14311 row
->ends_at_zv_p
= 1;
14315 /* Now, get the metrics of what we want to display. This also
14316 generates glyphs in `row' (which is IT->glyph_row). */
14317 n_glyphs_before
= row
->used
[TEXT_AREA
];
14320 /* Remember the line height so far in case the next element doesn't
14321 fit on the line. */
14322 if (!it
->truncate_lines_p
)
14324 ascent
= it
->max_ascent
;
14325 descent
= it
->max_descent
;
14326 phys_ascent
= it
->max_phys_ascent
;
14327 phys_descent
= it
->max_phys_descent
;
14330 PRODUCE_GLYPHS (it
);
14332 /* If this display element was in marginal areas, continue with
14334 if (it
->area
!= TEXT_AREA
)
14336 row
->ascent
= max (row
->ascent
, it
->max_ascent
);
14337 row
->height
= max (row
->height
, it
->max_ascent
+ it
->max_descent
);
14338 row
->phys_ascent
= max (row
->phys_ascent
, it
->max_phys_ascent
);
14339 row
->phys_height
= max (row
->phys_height
,
14340 it
->max_phys_ascent
+ it
->max_phys_descent
);
14341 set_iterator_to_next (it
, 1);
14345 /* Does the display element fit on the line? If we truncate
14346 lines, we should draw past the right edge of the window. If
14347 we don't truncate, we want to stop so that we can display the
14348 continuation glyph before the right margin. If lines are
14349 continued, there are two possible strategies for characters
14350 resulting in more than 1 glyph (e.g. tabs): Display as many
14351 glyphs as possible in this line and leave the rest for the
14352 continuation line, or display the whole element in the next
14353 line. Original redisplay did the former, so we do it also. */
14354 nglyphs
= row
->used
[TEXT_AREA
] - n_glyphs_before
;
14355 hpos_before
= it
->hpos
;
14358 if (/* Not a newline. */
14360 /* Glyphs produced fit entirely in the line. */
14361 && it
->current_x
< it
->last_visible_x
)
14363 it
->hpos
+= nglyphs
;
14364 row
->ascent
= max (row
->ascent
, it
->max_ascent
);
14365 row
->height
= max (row
->height
, it
->max_ascent
+ it
->max_descent
);
14366 row
->phys_ascent
= max (row
->phys_ascent
, it
->max_phys_ascent
);
14367 row
->phys_height
= max (row
->phys_height
,
14368 it
->max_phys_ascent
+ it
->max_phys_descent
);
14369 if (it
->current_x
- it
->pixel_width
< it
->first_visible_x
)
14370 row
->x
= x
- it
->first_visible_x
;
14375 struct glyph
*glyph
;
14377 for (i
= 0; i
< nglyphs
; ++i
, x
= new_x
)
14379 glyph
= row
->glyphs
[TEXT_AREA
] + n_glyphs_before
+ i
;
14380 new_x
= x
+ glyph
->pixel_width
;
14382 if (/* Lines are continued. */
14383 !it
->truncate_lines_p
14384 && (/* Glyph doesn't fit on the line. */
14385 new_x
> it
->last_visible_x
14386 /* Or it fits exactly on a window system frame. */
14387 || (new_x
== it
->last_visible_x
14388 && FRAME_WINDOW_P (it
->f
))))
14390 /* End of a continued line. */
14393 || (new_x
== it
->last_visible_x
14394 && FRAME_WINDOW_P (it
->f
)))
14396 /* Current glyph is the only one on the line or
14397 fits exactly on the line. We must continue
14398 the line because we can't draw the cursor
14399 after the glyph. */
14400 row
->continued_p
= 1;
14401 it
->current_x
= new_x
;
14402 it
->continuation_lines_width
+= new_x
;
14404 if (i
== nglyphs
- 1)
14405 set_iterator_to_next (it
, 1);
14407 else if (CHAR_GLYPH_PADDING_P (*glyph
)
14408 && !FRAME_WINDOW_P (it
->f
))
14410 /* A padding glyph that doesn't fit on this line.
14411 This means the whole character doesn't fit
14413 row
->used
[TEXT_AREA
] = n_glyphs_before
;
14415 /* Fill the rest of the row with continuation
14416 glyphs like in 20.x. */
14417 while (row
->glyphs
[TEXT_AREA
] + row
->used
[TEXT_AREA
]
14418 < row
->glyphs
[1 + TEXT_AREA
])
14419 produce_special_glyphs (it
, IT_CONTINUATION
);
14421 row
->continued_p
= 1;
14422 it
->current_x
= x_before
;
14423 it
->continuation_lines_width
+= x_before
;
14425 /* Restore the height to what it was before the
14426 element not fitting on the line. */
14427 it
->max_ascent
= ascent
;
14428 it
->max_descent
= descent
;
14429 it
->max_phys_ascent
= phys_ascent
;
14430 it
->max_phys_descent
= phys_descent
;
14432 else if (it
->c
== '\t' && FRAME_WINDOW_P (it
->f
))
14434 /* A TAB that extends past the right edge of the
14435 window. This produces a single glyph on
14436 window system frames. We leave the glyph in
14437 this row and let it fill the row, but don't
14438 consume the TAB. */
14439 it
->continuation_lines_width
+= it
->last_visible_x
;
14440 row
->ends_in_middle_of_char_p
= 1;
14441 row
->continued_p
= 1;
14442 glyph
->pixel_width
= it
->last_visible_x
- x
;
14443 it
->starts_in_middle_of_char_p
= 1;
14447 /* Something other than a TAB that draws past
14448 the right edge of the window. Restore
14449 positions to values before the element. */
14450 row
->used
[TEXT_AREA
] = n_glyphs_before
+ i
;
14452 /* Display continuation glyphs. */
14453 if (!FRAME_WINDOW_P (it
->f
))
14454 produce_special_glyphs (it
, IT_CONTINUATION
);
14455 row
->continued_p
= 1;
14457 it
->continuation_lines_width
+= x
;
14459 if (nglyphs
> 1 && i
> 0)
14461 row
->ends_in_middle_of_char_p
= 1;
14462 it
->starts_in_middle_of_char_p
= 1;
14465 /* Restore the height to what it was before the
14466 element not fitting on the line. */
14467 it
->max_ascent
= ascent
;
14468 it
->max_descent
= descent
;
14469 it
->max_phys_ascent
= phys_ascent
;
14470 it
->max_phys_descent
= phys_descent
;
14475 else if (new_x
> it
->first_visible_x
)
14477 /* Increment number of glyphs actually displayed. */
14480 if (x
< it
->first_visible_x
)
14481 /* Glyph is partially visible, i.e. row starts at
14482 negative X position. */
14483 row
->x
= x
- it
->first_visible_x
;
14487 /* Glyph is completely off the left margin of the
14488 window. This should not happen because of the
14489 move_it_in_display_line at the start of this
14490 function, unless the text display area of the
14491 window is empty. */
14492 xassert (it
->first_visible_x
<= it
->last_visible_x
);
14496 row
->ascent
= max (row
->ascent
, it
->max_ascent
);
14497 row
->height
= max (row
->height
, it
->max_ascent
+ it
->max_descent
);
14498 row
->phys_ascent
= max (row
->phys_ascent
, it
->max_phys_ascent
);
14499 row
->phys_height
= max (row
->phys_height
,
14500 it
->max_phys_ascent
+ it
->max_phys_descent
);
14502 /* End of this display line if row is continued. */
14503 if (row
->continued_p
)
14507 /* Is this a line end? If yes, we're also done, after making
14508 sure that a non-default face is extended up to the right
14509 margin of the window. */
14510 if (ITERATOR_AT_END_OF_LINE_P (it
))
14512 int used_before
= row
->used
[TEXT_AREA
];
14514 row
->ends_in_newline_from_string_p
= STRINGP (it
->object
);
14516 /* Add a space at the end of the line that is used to
14517 display the cursor there. */
14518 append_space (it
, 0);
14520 /* Extend the face to the end of the line. */
14521 extend_face_to_end_of_line (it
);
14523 /* Make sure we have the position. */
14524 if (used_before
== 0)
14525 row
->glyphs
[TEXT_AREA
]->charpos
= CHARPOS (it
->position
);
14527 /* Consume the line end. This skips over invisible lines. */
14528 set_iterator_to_next (it
, 1);
14529 it
->continuation_lines_width
= 0;
14533 /* Proceed with next display element. Note that this skips
14534 over lines invisible because of selective display. */
14535 set_iterator_to_next (it
, 1);
14537 /* If we truncate lines, we are done when the last displayed
14538 glyphs reach past the right margin of the window. */
14539 if (it
->truncate_lines_p
14540 && (FRAME_WINDOW_P (it
->f
)
14541 ? (it
->current_x
>= it
->last_visible_x
)
14542 : (it
->current_x
> it
->last_visible_x
)))
14544 /* Maybe add truncation glyphs. */
14545 if (!FRAME_WINDOW_P (it
->f
))
14549 for (i
= row
->used
[TEXT_AREA
] - 1; i
> 0; --i
)
14550 if (!CHAR_GLYPH_PADDING_P (row
->glyphs
[TEXT_AREA
][i
]))
14553 for (n
= row
->used
[TEXT_AREA
]; i
< n
; ++i
)
14555 row
->used
[TEXT_AREA
] = i
;
14556 produce_special_glyphs (it
, IT_TRUNCATION
);
14560 row
->truncated_on_right_p
= 1;
14561 it
->continuation_lines_width
= 0;
14562 reseat_at_next_visible_line_start (it
, 0);
14563 row
->ends_at_zv_p
= FETCH_BYTE (IT_BYTEPOS (*it
) - 1) != '\n';
14564 it
->hpos
= hpos_before
;
14565 it
->current_x
= x_before
;
14570 /* If line is not empty and hscrolled, maybe insert truncation glyphs
14571 at the left window margin. */
14572 if (it
->first_visible_x
14573 && IT_CHARPOS (*it
) != MATRIX_ROW_START_CHARPOS (row
))
14575 if (!FRAME_WINDOW_P (it
->f
))
14576 insert_left_trunc_glyphs (it
);
14577 row
->truncated_on_left_p
= 1;
14580 /* If the start of this line is the overlay arrow-position, then
14581 mark this glyph row as the one containing the overlay arrow.
14582 This is clearly a mess with variable size fonts. It would be
14583 better to let it be displayed like cursors under X. */
14584 if (MARKERP (Voverlay_arrow_position
)
14585 && current_buffer
== XMARKER (Voverlay_arrow_position
)->buffer
14586 && (MATRIX_ROW_START_CHARPOS (row
)
14587 == marker_position (Voverlay_arrow_position
))
14588 && STRINGP (Voverlay_arrow_string
)
14589 && ! overlay_arrow_seen
)
14591 /* Overlay arrow in window redisplay is a fringe bitmap. */
14592 if (!FRAME_WINDOW_P (it
->f
))
14594 struct glyph_row
*arrow_row
= get_overlay_arrow_glyph_row (it
->w
);
14595 struct glyph
*glyph
= arrow_row
->glyphs
[TEXT_AREA
];
14596 struct glyph
*arrow_end
= glyph
+ arrow_row
->used
[TEXT_AREA
];
14597 struct glyph
*p
= row
->glyphs
[TEXT_AREA
];
14598 struct glyph
*p2
, *end
;
14600 /* Copy the arrow glyphs. */
14601 while (glyph
< arrow_end
)
14604 /* Throw away padding glyphs. */
14606 end
= row
->glyphs
[TEXT_AREA
] + row
->used
[TEXT_AREA
];
14607 while (p2
< end
&& CHAR_GLYPH_PADDING_P (*p2
))
14613 row
->used
[TEXT_AREA
] = p2
- row
->glyphs
[TEXT_AREA
];
14617 overlay_arrow_seen
= 1;
14618 row
->overlay_arrow_p
= 1;
14621 /* Compute pixel dimensions of this line. */
14622 compute_line_metrics (it
);
14624 /* Remember the position at which this line ends. */
14625 row
->end
= it
->current
;
14627 /* Maybe set the cursor. */
14628 if (it
->w
->cursor
.vpos
< 0
14629 && PT
>= MATRIX_ROW_START_CHARPOS (row
)
14630 && PT
<= MATRIX_ROW_END_CHARPOS (row
)
14631 && cursor_row_p (it
->w
, row
))
14632 set_cursor_from_row (it
->w
, row
, it
->w
->desired_matrix
, 0, 0, 0, 0);
14634 /* Highlight trailing whitespace. */
14635 if (!NILP (Vshow_trailing_whitespace
))
14636 highlight_trailing_whitespace (it
->f
, it
->glyph_row
);
14638 /* Prepare for the next line. This line starts horizontally at (X
14639 HPOS) = (0 0). Vertical positions are incremented. As a
14640 convenience for the caller, IT->glyph_row is set to the next
14642 it
->current_x
= it
->hpos
= 0;
14643 it
->current_y
+= row
->height
;
14646 return row
->displays_text_p
;
14651 /***********************************************************************
14653 ***********************************************************************/
14655 /* Redisplay the menu bar in the frame for window W.
14657 The menu bar of X frames that don't have X toolkit support is
14658 displayed in a special window W->frame->menu_bar_window.
14660 The menu bar of terminal frames is treated specially as far as
14661 glyph matrices are concerned. Menu bar lines are not part of
14662 windows, so the update is done directly on the frame matrix rows
14663 for the menu bar. */
14666 display_menu_bar (w
)
14669 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
14674 /* Don't do all this for graphical frames. */
14676 if (!NILP (Vwindow_system
))
14679 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
14684 if (FRAME_MAC_P (f
))
14688 #ifdef USE_X_TOOLKIT
14689 xassert (!FRAME_WINDOW_P (f
));
14690 init_iterator (&it
, w
, -1, -1, f
->desired_matrix
->rows
, MENU_FACE_ID
);
14691 it
.first_visible_x
= 0;
14692 it
.last_visible_x
= FRAME_TOTAL_COLS (f
) * FRAME_COLUMN_WIDTH (f
);
14693 #else /* not USE_X_TOOLKIT */
14694 if (FRAME_WINDOW_P (f
))
14696 /* Menu bar lines are displayed in the desired matrix of the
14697 dummy window menu_bar_window. */
14698 struct window
*menu_w
;
14699 xassert (WINDOWP (f
->menu_bar_window
));
14700 menu_w
= XWINDOW (f
->menu_bar_window
);
14701 init_iterator (&it
, menu_w
, -1, -1, menu_w
->desired_matrix
->rows
,
14703 it
.first_visible_x
= 0;
14704 it
.last_visible_x
= FRAME_TOTAL_COLS (f
) * FRAME_COLUMN_WIDTH (f
);
14708 /* This is a TTY frame, i.e. character hpos/vpos are used as
14710 init_iterator (&it
, w
, -1, -1, f
->desired_matrix
->rows
,
14712 it
.first_visible_x
= 0;
14713 it
.last_visible_x
= FRAME_COLS (f
);
14715 #endif /* not USE_X_TOOLKIT */
14717 if (! mode_line_inverse_video
)
14718 /* Force the menu-bar to be displayed in the default face. */
14719 it
.base_face_id
= it
.face_id
= DEFAULT_FACE_ID
;
14721 /* Clear all rows of the menu bar. */
14722 for (i
= 0; i
< FRAME_MENU_BAR_LINES (f
); ++i
)
14724 struct glyph_row
*row
= it
.glyph_row
+ i
;
14725 clear_glyph_row (row
);
14726 row
->enabled_p
= 1;
14727 row
->full_width_p
= 1;
14730 /* Display all items of the menu bar. */
14731 items
= FRAME_MENU_BAR_ITEMS (it
.f
);
14732 for (i
= 0; i
< XVECTOR (items
)->size
; i
+= 4)
14734 Lisp_Object string
;
14736 /* Stop at nil string. */
14737 string
= AREF (items
, i
+ 1);
14741 /* Remember where item was displayed. */
14742 AREF (items
, i
+ 3) = make_number (it
.hpos
);
14744 /* Display the item, pad with one space. */
14745 if (it
.current_x
< it
.last_visible_x
)
14746 display_string (NULL
, string
, Qnil
, 0, 0, &it
,
14747 SCHARS (string
) + 1, 0, 0, -1);
14750 /* Fill out the line with spaces. */
14751 if (it
.current_x
< it
.last_visible_x
)
14752 display_string ("", Qnil
, Qnil
, 0, 0, &it
, -1, 0, 0, -1);
14754 /* Compute the total height of the lines. */
14755 compute_line_metrics (&it
);
14760 /***********************************************************************
14762 ***********************************************************************/
14764 /* Redisplay mode lines in the window tree whose root is WINDOW. If
14765 FORCE is non-zero, redisplay mode lines unconditionally.
14766 Otherwise, redisplay only mode lines that are garbaged. Value is
14767 the number of windows whose mode lines were redisplayed. */
14770 redisplay_mode_lines (window
, force
)
14771 Lisp_Object window
;
14776 while (!NILP (window
))
14778 struct window
*w
= XWINDOW (window
);
14780 if (WINDOWP (w
->hchild
))
14781 nwindows
+= redisplay_mode_lines (w
->hchild
, force
);
14782 else if (WINDOWP (w
->vchild
))
14783 nwindows
+= redisplay_mode_lines (w
->vchild
, force
);
14785 || FRAME_GARBAGED_P (XFRAME (w
->frame
))
14786 || !MATRIX_MODE_LINE_ROW (w
->current_matrix
)->enabled_p
)
14788 struct text_pos lpoint
;
14789 struct buffer
*old
= current_buffer
;
14791 /* Set the window's buffer for the mode line display. */
14792 SET_TEXT_POS (lpoint
, PT
, PT_BYTE
);
14793 set_buffer_internal_1 (XBUFFER (w
->buffer
));
14795 /* Point refers normally to the selected window. For any
14796 other window, set up appropriate value. */
14797 if (!EQ (window
, selected_window
))
14799 struct text_pos pt
;
14801 SET_TEXT_POS_FROM_MARKER (pt
, w
->pointm
);
14802 if (CHARPOS (pt
) < BEGV
)
14803 TEMP_SET_PT_BOTH (BEGV
, BEGV_BYTE
);
14804 else if (CHARPOS (pt
) > (ZV
- 1))
14805 TEMP_SET_PT_BOTH (ZV
, ZV_BYTE
);
14807 TEMP_SET_PT_BOTH (CHARPOS (pt
), BYTEPOS (pt
));
14810 /* Display mode lines. */
14811 clear_glyph_matrix (w
->desired_matrix
);
14812 if (display_mode_lines (w
))
14815 w
->must_be_updated_p
= 1;
14818 /* Restore old settings. */
14819 set_buffer_internal_1 (old
);
14820 TEMP_SET_PT_BOTH (CHARPOS (lpoint
), BYTEPOS (lpoint
));
14830 /* Display the mode and/or top line of window W. Value is the number
14831 of mode lines displayed. */
14834 display_mode_lines (w
)
14837 Lisp_Object old_selected_window
, old_selected_frame
;
14840 old_selected_frame
= selected_frame
;
14841 selected_frame
= w
->frame
;
14842 old_selected_window
= selected_window
;
14843 XSETWINDOW (selected_window
, w
);
14845 /* These will be set while the mode line specs are processed. */
14846 line_number_displayed
= 0;
14847 w
->column_number_displayed
= Qnil
;
14849 if (WINDOW_WANTS_MODELINE_P (w
))
14851 struct window
*sel_w
= XWINDOW (old_selected_window
);
14853 /* Select mode line face based on the real selected window. */
14854 display_mode_line (w
, CURRENT_MODE_LINE_FACE_ID_3 (sel_w
, sel_w
, w
),
14855 current_buffer
->mode_line_format
);
14859 if (WINDOW_WANTS_HEADER_LINE_P (w
))
14861 display_mode_line (w
, HEADER_LINE_FACE_ID
,
14862 current_buffer
->header_line_format
);
14866 selected_frame
= old_selected_frame
;
14867 selected_window
= old_selected_window
;
14872 /* Display mode or top line of window W. FACE_ID specifies which line
14873 to display; it is either MODE_LINE_FACE_ID or HEADER_LINE_FACE_ID.
14874 FORMAT is the mode line format to display. Value is the pixel
14875 height of the mode line displayed. */
14878 display_mode_line (w
, face_id
, format
)
14880 enum face_id face_id
;
14881 Lisp_Object format
;
14886 init_iterator (&it
, w
, -1, -1, NULL
, face_id
);
14887 prepare_desired_row (it
.glyph_row
);
14889 if (! mode_line_inverse_video
)
14890 /* Force the mode-line to be displayed in the default face. */
14891 it
.base_face_id
= it
.face_id
= DEFAULT_FACE_ID
;
14893 /* Temporarily make frame's keyboard the current kboard so that
14894 kboard-local variables in the mode_line_format will get the right
14896 push_frame_kboard (it
.f
);
14897 display_mode_element (&it
, 0, 0, 0, format
, Qnil
, 0);
14898 pop_frame_kboard ();
14900 /* Fill up with spaces. */
14901 display_string (" ", Qnil
, Qnil
, 0, 0, &it
, 10000, -1, -1, 0);
14903 compute_line_metrics (&it
);
14904 it
.glyph_row
->full_width_p
= 1;
14905 it
.glyph_row
->mode_line_p
= 1;
14906 it
.glyph_row
->continued_p
= 0;
14907 it
.glyph_row
->truncated_on_left_p
= 0;
14908 it
.glyph_row
->truncated_on_right_p
= 0;
14910 /* Make a 3D mode-line have a shadow at its right end. */
14911 face
= FACE_FROM_ID (it
.f
, face_id
);
14912 extend_face_to_end_of_line (&it
);
14913 if (face
->box
!= FACE_NO_BOX
)
14915 struct glyph
*last
= (it
.glyph_row
->glyphs
[TEXT_AREA
]
14916 + it
.glyph_row
->used
[TEXT_AREA
] - 1);
14917 last
->right_box_line_p
= 1;
14920 return it
.glyph_row
->height
;
14923 /* Alist that caches the results of :propertize.
14924 Each element is (PROPERTIZED-STRING . PROPERTY-LIST). */
14925 Lisp_Object mode_line_proptrans_alist
;
14927 /* List of strings making up the mode-line. */
14928 Lisp_Object mode_line_string_list
;
14930 /* Base face property when building propertized mode line string. */
14931 static Lisp_Object mode_line_string_face
;
14932 static Lisp_Object mode_line_string_face_prop
;
14935 /* Contribute ELT to the mode line for window IT->w. How it
14936 translates into text depends on its data type.
14938 IT describes the display environment in which we display, as usual.
14940 DEPTH is the depth in recursion. It is used to prevent
14941 infinite recursion here.
14943 FIELD_WIDTH is the number of characters the display of ELT should
14944 occupy in the mode line, and PRECISION is the maximum number of
14945 characters to display from ELT's representation. See
14946 display_string for details.
14948 Returns the hpos of the end of the text generated by ELT.
14950 PROPS is a property list to add to any string we encounter.
14952 If RISKY is nonzero, remove (disregard) any properties in any string
14953 we encounter, and ignore :eval and :propertize.
14955 If the global variable `frame_title_ptr' is non-NULL, then the output
14956 is passed to `store_frame_title' instead of `display_string'. */
14959 display_mode_element (it
, depth
, field_width
, precision
, elt
, props
, risky
)
14962 int field_width
, precision
;
14963 Lisp_Object elt
, props
;
14966 int n
= 0, field
, prec
;
14971 elt
= build_string ("*too-deep*");
14975 switch (SWITCH_ENUM_CAST (XTYPE (elt
)))
14979 /* A string: output it and check for %-constructs within it. */
14981 const unsigned char *this, *lisp_string
;
14983 if (!NILP (props
) || risky
)
14985 Lisp_Object oprops
, aelt
;
14986 oprops
= Ftext_properties_at (make_number (0), elt
);
14988 if (NILP (Fequal (props
, oprops
)) || risky
)
14990 /* If the starting string has properties,
14991 merge the specified ones onto the existing ones. */
14992 if (! NILP (oprops
) && !risky
)
14996 oprops
= Fcopy_sequence (oprops
);
14998 while (CONSP (tem
))
15000 oprops
= Fplist_put (oprops
, XCAR (tem
),
15001 XCAR (XCDR (tem
)));
15002 tem
= XCDR (XCDR (tem
));
15007 aelt
= Fassoc (elt
, mode_line_proptrans_alist
);
15008 if (! NILP (aelt
) && !NILP (Fequal (props
, XCDR (aelt
))))
15010 mode_line_proptrans_alist
15011 = Fcons (aelt
, Fdelq (aelt
, mode_line_proptrans_alist
));
15018 elt
= Fcopy_sequence (elt
);
15019 Fset_text_properties (make_number (0), Flength (elt
),
15021 /* Add this item to mode_line_proptrans_alist. */
15022 mode_line_proptrans_alist
15023 = Fcons (Fcons (elt
, props
),
15024 mode_line_proptrans_alist
);
15025 /* Truncate mode_line_proptrans_alist
15026 to at most 50 elements. */
15027 tem
= Fnthcdr (make_number (50),
15028 mode_line_proptrans_alist
);
15030 XSETCDR (tem
, Qnil
);
15035 this = SDATA (elt
);
15036 lisp_string
= this;
15040 prec
= precision
- n
;
15041 if (frame_title_ptr
)
15042 n
+= store_frame_title (SDATA (elt
), -1, prec
);
15043 else if (!NILP (mode_line_string_list
))
15044 n
+= store_mode_line_string (NULL
, elt
, 1, 0, prec
, Qnil
);
15046 n
+= display_string (NULL
, elt
, Qnil
, 0, 0, it
,
15047 0, prec
, 0, STRING_MULTIBYTE (elt
));
15052 while ((precision
<= 0 || n
< precision
)
15054 && (frame_title_ptr
15055 || !NILP (mode_line_string_list
)
15056 || it
->current_x
< it
->last_visible_x
))
15058 const unsigned char *last
= this;
15060 /* Advance to end of string or next format specifier. */
15061 while ((c
= *this++) != '\0' && c
!= '%')
15064 if (this - 1 != last
)
15066 /* Output to end of string or up to '%'. Field width
15067 is length of string. Don't output more than
15068 PRECISION allows us. */
15071 prec
= chars_in_text (last
, this - last
);
15072 if (precision
> 0 && prec
> precision
- n
)
15073 prec
= precision
- n
;
15075 if (frame_title_ptr
)
15076 n
+= store_frame_title (last
, 0, prec
);
15077 else if (!NILP (mode_line_string_list
))
15079 int bytepos
= last
- lisp_string
;
15080 int charpos
= string_byte_to_char (elt
, bytepos
);
15081 n
+= store_mode_line_string (NULL
,
15082 Fsubstring (elt
, make_number (charpos
),
15083 make_number (charpos
+ prec
)),
15088 int bytepos
= last
- lisp_string
;
15089 int charpos
= string_byte_to_char (elt
, bytepos
);
15090 n
+= display_string (NULL
, elt
, Qnil
, 0, charpos
,
15092 STRING_MULTIBYTE (elt
));
15095 else /* c == '%' */
15097 const unsigned char *percent_position
= this;
15099 /* Get the specified minimum width. Zero means
15102 while ((c
= *this++) >= '0' && c
<= '9')
15103 field
= field
* 10 + c
- '0';
15105 /* Don't pad beyond the total padding allowed. */
15106 if (field_width
- n
> 0 && field
> field_width
- n
)
15107 field
= field_width
- n
;
15109 /* Note that either PRECISION <= 0 or N < PRECISION. */
15110 prec
= precision
- n
;
15113 n
+= display_mode_element (it
, depth
, field
, prec
,
15114 Vglobal_mode_string
, props
,
15119 int bytepos
, charpos
;
15120 unsigned char *spec
;
15122 bytepos
= percent_position
- lisp_string
;
15123 charpos
= (STRING_MULTIBYTE (elt
)
15124 ? string_byte_to_char (elt
, bytepos
)
15128 = decode_mode_spec (it
->w
, c
, field
, prec
, &multibyte
);
15130 if (frame_title_ptr
)
15131 n
+= store_frame_title (spec
, field
, prec
);
15132 else if (!NILP (mode_line_string_list
))
15134 int len
= strlen (spec
);
15135 Lisp_Object tem
= make_string (spec
, len
);
15136 props
= Ftext_properties_at (make_number (charpos
), elt
);
15137 /* Should only keep face property in props */
15138 n
+= store_mode_line_string (NULL
, tem
, 0, field
, prec
, props
);
15142 int nglyphs_before
, nwritten
;
15144 nglyphs_before
= it
->glyph_row
->used
[TEXT_AREA
];
15145 nwritten
= display_string (spec
, Qnil
, elt
,
15150 /* Assign to the glyphs written above the
15151 string where the `%x' came from, position
15155 struct glyph
*glyph
15156 = (it
->glyph_row
->glyphs
[TEXT_AREA
]
15160 for (i
= 0; i
< nwritten
; ++i
)
15162 glyph
[i
].object
= elt
;
15163 glyph
[i
].charpos
= charpos
;
15178 /* A symbol: process the value of the symbol recursively
15179 as if it appeared here directly. Avoid error if symbol void.
15180 Special case: if value of symbol is a string, output the string
15183 register Lisp_Object tem
;
15185 /* If the variable is not marked as risky to set
15186 then its contents are risky to use. */
15187 if (NILP (Fget (elt
, Qrisky_local_variable
)))
15190 tem
= Fboundp (elt
);
15193 tem
= Fsymbol_value (elt
);
15194 /* If value is a string, output that string literally:
15195 don't check for % within it. */
15199 if (!EQ (tem
, elt
))
15201 /* Give up right away for nil or t. */
15211 register Lisp_Object car
, tem
;
15213 /* A cons cell: five distinct cases.
15214 If first element is :eval or :propertize, do something special.
15215 If first element is a string or a cons, process all the elements
15216 and effectively concatenate them.
15217 If first element is a negative number, truncate displaying cdr to
15218 at most that many characters. If positive, pad (with spaces)
15219 to at least that many characters.
15220 If first element is a symbol, process the cadr or caddr recursively
15221 according to whether the symbol's value is non-nil or nil. */
15223 if (EQ (car
, QCeval
))
15225 /* An element of the form (:eval FORM) means evaluate FORM
15226 and use the result as mode line elements. */
15231 if (CONSP (XCDR (elt
)))
15234 spec
= safe_eval (XCAR (XCDR (elt
)));
15235 n
+= display_mode_element (it
, depth
, field_width
- n
,
15236 precision
- n
, spec
, props
,
15240 else if (EQ (car
, QCpropertize
))
15242 /* An element of the form (:propertize ELT PROPS...)
15243 means display ELT but applying properties PROPS. */
15248 if (CONSP (XCDR (elt
)))
15249 n
+= display_mode_element (it
, depth
, field_width
- n
,
15250 precision
- n
, XCAR (XCDR (elt
)),
15251 XCDR (XCDR (elt
)), risky
);
15253 else if (SYMBOLP (car
))
15255 tem
= Fboundp (car
);
15259 /* elt is now the cdr, and we know it is a cons cell.
15260 Use its car if CAR has a non-nil value. */
15263 tem
= Fsymbol_value (car
);
15270 /* Symbol's value is nil (or symbol is unbound)
15271 Get the cddr of the original list
15272 and if possible find the caddr and use that. */
15276 else if (!CONSP (elt
))
15281 else if (INTEGERP (car
))
15283 register int lim
= XINT (car
);
15287 /* Negative int means reduce maximum width. */
15288 if (precision
<= 0)
15291 precision
= min (precision
, -lim
);
15295 /* Padding specified. Don't let it be more than
15296 current maximum. */
15298 lim
= min (precision
, lim
);
15300 /* If that's more padding than already wanted, queue it.
15301 But don't reduce padding already specified even if
15302 that is beyond the current truncation point. */
15303 field_width
= max (lim
, field_width
);
15307 else if (STRINGP (car
) || CONSP (car
))
15309 register int limit
= 50;
15310 /* Limit is to protect against circular lists. */
15313 && (precision
<= 0 || n
< precision
))
15315 n
+= display_mode_element (it
, depth
, field_width
- n
,
15316 precision
- n
, XCAR (elt
),
15326 elt
= build_string ("*invalid*");
15330 /* Pad to FIELD_WIDTH. */
15331 if (field_width
> 0 && n
< field_width
)
15333 if (frame_title_ptr
)
15334 n
+= store_frame_title ("", field_width
- n
, 0);
15335 else if (!NILP (mode_line_string_list
))
15336 n
+= store_mode_line_string ("", Qnil
, 0, field_width
- n
, 0, Qnil
);
15338 n
+= display_string ("", Qnil
, Qnil
, 0, 0, it
, field_width
- n
,
15345 /* Store a mode-line string element in mode_line_string_list.
15347 If STRING is non-null, display that C string. Otherwise, the Lisp
15348 string LISP_STRING is displayed.
15350 FIELD_WIDTH is the minimum number of output glyphs to produce.
15351 If STRING has fewer characters than FIELD_WIDTH, pad to the right
15352 with spaces. FIELD_WIDTH <= 0 means don't pad.
15354 PRECISION is the maximum number of characters to output from
15355 STRING. PRECISION <= 0 means don't truncate the string.
15357 If COPY_STRING is non-zero, make a copy of LISP_STRING before adding
15358 properties to the string.
15360 PROPS are the properties to add to the string.
15361 The mode_line_string_face face property is always added to the string.
15364 static int store_mode_line_string (string
, lisp_string
, copy_string
, field_width
, precision
, props
)
15366 Lisp_Object lisp_string
;
15375 if (string
!= NULL
)
15377 len
= strlen (string
);
15378 if (precision
> 0 && len
> precision
)
15380 lisp_string
= make_string (string
, len
);
15382 props
= mode_line_string_face_prop
;
15383 else if (!NILP (mode_line_string_face
))
15385 Lisp_Object face
= Fplist_get (props
, Qface
);
15386 props
= Fcopy_sequence (props
);
15388 face
= mode_line_string_face
;
15390 face
= Fcons (face
, Fcons (mode_line_string_face
, Qnil
));
15391 props
= Fplist_put (props
, Qface
, face
);
15393 Fadd_text_properties (make_number (0), make_number (len
),
15394 props
, lisp_string
);
15398 len
= XFASTINT (Flength (lisp_string
));
15399 if (precision
> 0 && len
> precision
)
15402 lisp_string
= Fsubstring (lisp_string
, make_number (0), make_number (len
));
15405 if (!NILP (mode_line_string_face
))
15409 props
= Ftext_properties_at (make_number (0), lisp_string
);
15410 face
= Fplist_get (props
, Qface
);
15412 face
= mode_line_string_face
;
15414 face
= Fcons (face
, Fcons (mode_line_string_face
, Qnil
));
15415 props
= Fcons (Qface
, Fcons (face
, Qnil
));
15417 lisp_string
= Fcopy_sequence (lisp_string
);
15420 Fadd_text_properties (make_number (0), make_number (len
),
15421 props
, lisp_string
);
15426 mode_line_string_list
= Fcons (lisp_string
, mode_line_string_list
);
15430 if (field_width
> len
)
15432 field_width
-= len
;
15433 lisp_string
= Fmake_string (make_number (field_width
), make_number (' '));
15435 Fadd_text_properties (make_number (0), make_number (field_width
),
15436 props
, lisp_string
);
15437 mode_line_string_list
= Fcons (lisp_string
, mode_line_string_list
);
15445 DEFUN ("format-mode-line", Fformat_mode_line
, Sformat_mode_line
,
15447 doc
: /* Return the mode-line of selected window as a string.
15448 First optional arg FORMAT specifies a different format string (see
15449 `mode-line-format' for details) to use. If FORMAT is t, return
15450 the buffer's header-line. Second optional arg WINDOW specifies a
15451 different window to use as the context for the formatting.
15452 If third optional arg NO-PROPS is non-nil, string is not propertized. */)
15453 (format
, window
, no_props
)
15454 Lisp_Object format
, window
, no_props
;
15459 struct buffer
*old_buffer
= NULL
;
15460 enum face_id face_id
= DEFAULT_FACE_ID
;
15463 window
= selected_window
;
15464 CHECK_WINDOW (window
);
15465 w
= XWINDOW (window
);
15466 CHECK_BUFFER (w
->buffer
);
15468 if (XBUFFER (w
->buffer
) != current_buffer
)
15470 old_buffer
= current_buffer
;
15471 set_buffer_internal_1 (XBUFFER (w
->buffer
));
15474 if (NILP (format
) || EQ (format
, Qt
))
15476 face_id
= NILP (format
)
15477 ? CURRENT_MODE_LINE_FACE_ID (w
) :
15478 HEADER_LINE_FACE_ID
;
15479 format
= NILP (format
)
15480 ? current_buffer
->mode_line_format
15481 : current_buffer
->header_line_format
;
15484 init_iterator (&it
, w
, -1, -1, NULL
, face_id
);
15486 if (NILP (no_props
))
15488 mode_line_string_face
=
15489 (face_id
== MODE_LINE_FACE_ID
? Qmode_line
:
15490 face_id
== MODE_LINE_INACTIVE_FACE_ID
? Qmode_line_inactive
:
15491 face_id
== HEADER_LINE_FACE_ID
? Qheader_line
: Qnil
);
15493 mode_line_string_face_prop
=
15494 NILP (mode_line_string_face
) ? Qnil
:
15495 Fcons (Qface
, Fcons (mode_line_string_face
, Qnil
));
15497 /* We need a dummy last element in mode_line_string_list to
15498 indicate we are building the propertized mode-line string.
15499 Using mode_line_string_face_prop here GC protects it. */
15500 mode_line_string_list
=
15501 Fcons (mode_line_string_face_prop
, Qnil
);
15502 frame_title_ptr
= NULL
;
15506 mode_line_string_face_prop
= Qnil
;
15507 mode_line_string_list
= Qnil
;
15508 frame_title_ptr
= frame_title_buf
;
15511 push_frame_kboard (it
.f
);
15512 display_mode_element (&it
, 0, 0, 0, format
, Qnil
, 0);
15513 pop_frame_kboard ();
15516 set_buffer_internal_1 (old_buffer
);
15518 if (NILP (no_props
))
15521 mode_line_string_list
= Fnreverse (mode_line_string_list
);
15522 str
= Fmapconcat (intern ("identity"), XCDR (mode_line_string_list
),
15523 make_string ("", 0));
15524 mode_line_string_face_prop
= Qnil
;
15525 mode_line_string_list
= Qnil
;
15529 len
= frame_title_ptr
- frame_title_buf
;
15530 if (len
> 0 && frame_title_ptr
[-1] == '-')
15532 /* Mode lines typically ends with numerous dashes; reduce to two dashes. */
15533 while (frame_title_ptr
> frame_title_buf
&& *--frame_title_ptr
== '-')
15535 frame_title_ptr
+= 3; /* restore last non-dash + two dashes */
15536 if (len
> frame_title_ptr
- frame_title_buf
)
15537 len
= frame_title_ptr
- frame_title_buf
;
15540 frame_title_ptr
= NULL
;
15541 return make_string (frame_title_buf
, len
);
15544 /* Write a null-terminated, right justified decimal representation of
15545 the positive integer D to BUF using a minimal field width WIDTH. */
15548 pint2str (buf
, width
, d
)
15549 register char *buf
;
15550 register int width
;
15553 register char *p
= buf
;
15561 *p
++ = d
% 10 + '0';
15566 for (width
-= (int) (p
- buf
); width
> 0; --width
)
15577 /* Set a mnemonic character for coding_system (Lisp symbol) in BUF.
15578 If EOL_FLAG is 1, set also a mnemonic character for end-of-line
15579 type of CODING_SYSTEM. Return updated pointer into BUF. */
15581 static unsigned char invalid_eol_type
[] = "(*invalid*)";
15584 decode_mode_spec_coding (coding_system
, buf
, eol_flag
)
15585 Lisp_Object coding_system
;
15586 register char *buf
;
15590 int multibyte
= !NILP (current_buffer
->enable_multibyte_characters
);
15591 const unsigned char *eol_str
;
15593 /* The EOL conversion we are using. */
15594 Lisp_Object eoltype
;
15596 val
= Fget (coding_system
, Qcoding_system
);
15599 if (!VECTORP (val
)) /* Not yet decided. */
15604 eoltype
= eol_mnemonic_undecided
;
15605 /* Don't mention EOL conversion if it isn't decided. */
15609 Lisp_Object eolvalue
;
15611 eolvalue
= Fget (coding_system
, Qeol_type
);
15614 *buf
++ = XFASTINT (AREF (val
, 1));
15618 /* The EOL conversion that is normal on this system. */
15620 if (NILP (eolvalue
)) /* Not yet decided. */
15621 eoltype
= eol_mnemonic_undecided
;
15622 else if (VECTORP (eolvalue
)) /* Not yet decided. */
15623 eoltype
= eol_mnemonic_undecided
;
15624 else /* INTEGERP (eolvalue) -- 0:LF, 1:CRLF, 2:CR */
15625 eoltype
= (XFASTINT (eolvalue
) == 0
15626 ? eol_mnemonic_unix
15627 : (XFASTINT (eolvalue
) == 1
15628 ? eol_mnemonic_dos
: eol_mnemonic_mac
));
15634 /* Mention the EOL conversion if it is not the usual one. */
15635 if (STRINGP (eoltype
))
15637 eol_str
= SDATA (eoltype
);
15638 eol_str_len
= SBYTES (eoltype
);
15640 else if (INTEGERP (eoltype
)
15641 && CHAR_VALID_P (XINT (eoltype
), 0))
15643 unsigned char *tmp
= (unsigned char *) alloca (MAX_MULTIBYTE_LENGTH
);
15644 eol_str_len
= CHAR_STRING (XINT (eoltype
), tmp
);
15649 eol_str
= invalid_eol_type
;
15650 eol_str_len
= sizeof (invalid_eol_type
) - 1;
15652 bcopy (eol_str
, buf
, eol_str_len
);
15653 buf
+= eol_str_len
;
15659 /* Return a string for the output of a mode line %-spec for window W,
15660 generated by character C. PRECISION >= 0 means don't return a
15661 string longer than that value. FIELD_WIDTH > 0 means pad the
15662 string returned with spaces to that value. Return 1 in *MULTIBYTE
15663 if the result is multibyte text. */
15665 static char lots_of_dashes
[] = "--------------------------------------------------------------------------------------------------------------------------------------------";
15668 decode_mode_spec (w
, c
, field_width
, precision
, multibyte
)
15671 int field_width
, precision
;
15675 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
15676 char *decode_mode_spec_buf
= f
->decode_mode_spec_buffer
;
15677 struct buffer
*b
= XBUFFER (w
->buffer
);
15685 if (!NILP (b
->read_only
))
15687 if (BUF_MODIFF (b
) > BUF_SAVE_MODIFF (b
))
15692 /* This differs from %* only for a modified read-only buffer. */
15693 if (BUF_MODIFF (b
) > BUF_SAVE_MODIFF (b
))
15695 if (!NILP (b
->read_only
))
15700 /* This differs from %* in ignoring read-only-ness. */
15701 if (BUF_MODIFF (b
) > BUF_SAVE_MODIFF (b
))
15713 if (command_loop_level
> 5)
15715 p
= decode_mode_spec_buf
;
15716 for (i
= 0; i
< command_loop_level
; i
++)
15719 return decode_mode_spec_buf
;
15727 if (command_loop_level
> 5)
15729 p
= decode_mode_spec_buf
;
15730 for (i
= 0; i
< command_loop_level
; i
++)
15733 return decode_mode_spec_buf
;
15740 /* Let lots_of_dashes be a string of infinite length. */
15741 if (!NILP (mode_line_string_list
))
15743 if (field_width
<= 0
15744 || field_width
> sizeof (lots_of_dashes
))
15746 for (i
= 0; i
< FRAME_MESSAGE_BUF_SIZE (f
) - 1; ++i
)
15747 decode_mode_spec_buf
[i
] = '-';
15748 decode_mode_spec_buf
[i
] = '\0';
15749 return decode_mode_spec_buf
;
15752 return lots_of_dashes
;
15761 int col
= (int) current_column (); /* iftc */
15762 w
->column_number_displayed
= make_number (col
);
15763 pint2str (decode_mode_spec_buf
, field_width
, col
);
15764 return decode_mode_spec_buf
;
15768 /* %F displays the frame name. */
15769 if (!NILP (f
->title
))
15770 return (char *) SDATA (f
->title
);
15771 if (f
->explicit_name
|| ! FRAME_WINDOW_P (f
))
15772 return (char *) SDATA (f
->name
);
15781 int startpos
= XMARKER (w
->start
)->charpos
;
15782 int startpos_byte
= marker_byte_position (w
->start
);
15783 int line
, linepos
, linepos_byte
, topline
;
15785 int height
= WINDOW_TOTAL_LINES (w
);
15787 /* If we decided that this buffer isn't suitable for line numbers,
15788 don't forget that too fast. */
15789 if (EQ (w
->base_line_pos
, w
->buffer
))
15791 /* But do forget it, if the window shows a different buffer now. */
15792 else if (BUFFERP (w
->base_line_pos
))
15793 w
->base_line_pos
= Qnil
;
15795 /* If the buffer is very big, don't waste time. */
15796 if (INTEGERP (Vline_number_display_limit
)
15797 && BUF_ZV (b
) - BUF_BEGV (b
) > XINT (Vline_number_display_limit
))
15799 w
->base_line_pos
= Qnil
;
15800 w
->base_line_number
= Qnil
;
15804 if (!NILP (w
->base_line_number
)
15805 && !NILP (w
->base_line_pos
)
15806 && XFASTINT (w
->base_line_pos
) <= startpos
)
15808 line
= XFASTINT (w
->base_line_number
);
15809 linepos
= XFASTINT (w
->base_line_pos
);
15810 linepos_byte
= buf_charpos_to_bytepos (b
, linepos
);
15815 linepos
= BUF_BEGV (b
);
15816 linepos_byte
= BUF_BEGV_BYTE (b
);
15819 /* Count lines from base line to window start position. */
15820 nlines
= display_count_lines (linepos
, linepos_byte
,
15824 topline
= nlines
+ line
;
15826 /* Determine a new base line, if the old one is too close
15827 or too far away, or if we did not have one.
15828 "Too close" means it's plausible a scroll-down would
15829 go back past it. */
15830 if (startpos
== BUF_BEGV (b
))
15832 w
->base_line_number
= make_number (topline
);
15833 w
->base_line_pos
= make_number (BUF_BEGV (b
));
15835 else if (nlines
< height
+ 25 || nlines
> height
* 3 + 50
15836 || linepos
== BUF_BEGV (b
))
15838 int limit
= BUF_BEGV (b
);
15839 int limit_byte
= BUF_BEGV_BYTE (b
);
15841 int distance
= (height
* 2 + 30) * line_number_display_limit_width
;
15843 if (startpos
- distance
> limit
)
15845 limit
= startpos
- distance
;
15846 limit_byte
= CHAR_TO_BYTE (limit
);
15849 nlines
= display_count_lines (startpos
, startpos_byte
,
15851 - (height
* 2 + 30),
15853 /* If we couldn't find the lines we wanted within
15854 line_number_display_limit_width chars per line,
15855 give up on line numbers for this window. */
15856 if (position
== limit_byte
&& limit
== startpos
- distance
)
15858 w
->base_line_pos
= w
->buffer
;
15859 w
->base_line_number
= Qnil
;
15863 w
->base_line_number
= make_number (topline
- nlines
);
15864 w
->base_line_pos
= make_number (BYTE_TO_CHAR (position
));
15867 /* Now count lines from the start pos to point. */
15868 nlines
= display_count_lines (startpos
, startpos_byte
,
15869 PT_BYTE
, PT
, &junk
);
15871 /* Record that we did display the line number. */
15872 line_number_displayed
= 1;
15874 /* Make the string to show. */
15875 pint2str (decode_mode_spec_buf
, field_width
, topline
+ nlines
);
15876 return decode_mode_spec_buf
;
15879 char* p
= decode_mode_spec_buf
;
15880 int pad
= field_width
- 2;
15886 return decode_mode_spec_buf
;
15892 obj
= b
->mode_name
;
15896 if (BUF_BEGV (b
) > BUF_BEG (b
) || BUF_ZV (b
) < BUF_Z (b
))
15902 int pos
= marker_position (w
->start
);
15903 int total
= BUF_ZV (b
) - BUF_BEGV (b
);
15905 if (XFASTINT (w
->window_end_pos
) <= BUF_Z (b
) - BUF_ZV (b
))
15907 if (pos
<= BUF_BEGV (b
))
15912 else if (pos
<= BUF_BEGV (b
))
15916 if (total
> 1000000)
15917 /* Do it differently for a large value, to avoid overflow. */
15918 total
= ((pos
- BUF_BEGV (b
)) + (total
/ 100) - 1) / (total
/ 100);
15920 total
= ((pos
- BUF_BEGV (b
)) * 100 + total
- 1) / total
;
15921 /* We can't normally display a 3-digit number,
15922 so get us a 2-digit number that is close. */
15925 sprintf (decode_mode_spec_buf
, "%2d%%", total
);
15926 return decode_mode_spec_buf
;
15930 /* Display percentage of size above the bottom of the screen. */
15933 int toppos
= marker_position (w
->start
);
15934 int botpos
= BUF_Z (b
) - XFASTINT (w
->window_end_pos
);
15935 int total
= BUF_ZV (b
) - BUF_BEGV (b
);
15937 if (botpos
>= BUF_ZV (b
))
15939 if (toppos
<= BUF_BEGV (b
))
15946 if (total
> 1000000)
15947 /* Do it differently for a large value, to avoid overflow. */
15948 total
= ((botpos
- BUF_BEGV (b
)) + (total
/ 100) - 1) / (total
/ 100);
15950 total
= ((botpos
- BUF_BEGV (b
)) * 100 + total
- 1) / total
;
15951 /* We can't normally display a 3-digit number,
15952 so get us a 2-digit number that is close. */
15955 if (toppos
<= BUF_BEGV (b
))
15956 sprintf (decode_mode_spec_buf
, "Top%2d%%", total
);
15958 sprintf (decode_mode_spec_buf
, "%2d%%", total
);
15959 return decode_mode_spec_buf
;
15964 /* status of process */
15965 obj
= Fget_buffer_process (w
->buffer
);
15967 return "no process";
15968 #ifdef subprocesses
15969 obj
= Fsymbol_name (Fprocess_status (obj
));
15973 case 't': /* indicate TEXT or BINARY */
15974 #ifdef MODE_LINE_BINARY_TEXT
15975 return MODE_LINE_BINARY_TEXT (b
);
15981 /* coding-system (not including end-of-line format) */
15983 /* coding-system (including end-of-line type) */
15985 int eol_flag
= (c
== 'Z');
15986 char *p
= decode_mode_spec_buf
;
15988 if (! FRAME_WINDOW_P (f
))
15990 /* No need to mention EOL here--the terminal never needs
15991 to do EOL conversion. */
15992 p
= decode_mode_spec_coding (keyboard_coding
.symbol
, p
, 0);
15993 p
= decode_mode_spec_coding (terminal_coding
.symbol
, p
, 0);
15995 p
= decode_mode_spec_coding (b
->buffer_file_coding_system
,
15998 #if 0 /* This proves to be annoying; I think we can do without. -- rms. */
15999 #ifdef subprocesses
16000 obj
= Fget_buffer_process (Fcurrent_buffer ());
16001 if (PROCESSP (obj
))
16003 p
= decode_mode_spec_coding (XPROCESS (obj
)->decode_coding_system
,
16005 p
= decode_mode_spec_coding (XPROCESS (obj
)->encode_coding_system
,
16008 #endif /* subprocesses */
16011 return decode_mode_spec_buf
;
16017 *multibyte
= STRING_MULTIBYTE (obj
);
16018 return (char *) SDATA (obj
);
16025 /* Count up to COUNT lines starting from START / START_BYTE.
16026 But don't go beyond LIMIT_BYTE.
16027 Return the number of lines thus found (always nonnegative).
16029 Set *BYTE_POS_PTR to 1 if we found COUNT lines, 0 if we hit LIMIT. */
16032 display_count_lines (start
, start_byte
, limit_byte
, count
, byte_pos_ptr
)
16033 int start
, start_byte
, limit_byte
, count
;
16036 register unsigned char *cursor
;
16037 unsigned char *base
;
16039 register int ceiling
;
16040 register unsigned char *ceiling_addr
;
16041 int orig_count
= count
;
16043 /* If we are not in selective display mode,
16044 check only for newlines. */
16045 int selective_display
= (!NILP (current_buffer
->selective_display
)
16046 && !INTEGERP (current_buffer
->selective_display
));
16050 while (start_byte
< limit_byte
)
16052 ceiling
= BUFFER_CEILING_OF (start_byte
);
16053 ceiling
= min (limit_byte
- 1, ceiling
);
16054 ceiling_addr
= BYTE_POS_ADDR (ceiling
) + 1;
16055 base
= (cursor
= BYTE_POS_ADDR (start_byte
));
16058 if (selective_display
)
16059 while (*cursor
!= '\n' && *cursor
!= 015 && ++cursor
!= ceiling_addr
)
16062 while (*cursor
!= '\n' && ++cursor
!= ceiling_addr
)
16065 if (cursor
!= ceiling_addr
)
16069 start_byte
+= cursor
- base
+ 1;
16070 *byte_pos_ptr
= start_byte
;
16074 if (++cursor
== ceiling_addr
)
16080 start_byte
+= cursor
- base
;
16085 while (start_byte
> limit_byte
)
16087 ceiling
= BUFFER_FLOOR_OF (start_byte
- 1);
16088 ceiling
= max (limit_byte
, ceiling
);
16089 ceiling_addr
= BYTE_POS_ADDR (ceiling
) - 1;
16090 base
= (cursor
= BYTE_POS_ADDR (start_byte
- 1) + 1);
16093 if (selective_display
)
16094 while (--cursor
!= ceiling_addr
16095 && *cursor
!= '\n' && *cursor
!= 015)
16098 while (--cursor
!= ceiling_addr
&& *cursor
!= '\n')
16101 if (cursor
!= ceiling_addr
)
16105 start_byte
+= cursor
- base
+ 1;
16106 *byte_pos_ptr
= start_byte
;
16107 /* When scanning backwards, we should
16108 not count the newline posterior to which we stop. */
16109 return - orig_count
- 1;
16115 /* Here we add 1 to compensate for the last decrement
16116 of CURSOR, which took it past the valid range. */
16117 start_byte
+= cursor
- base
+ 1;
16121 *byte_pos_ptr
= limit_byte
;
16124 return - orig_count
+ count
;
16125 return orig_count
- count
;
16131 /***********************************************************************
16133 ***********************************************************************/
16135 /* Display a NUL-terminated string, starting with index START.
16137 If STRING is non-null, display that C string. Otherwise, the Lisp
16138 string LISP_STRING is displayed.
16140 If FACE_STRING is not nil, FACE_STRING_POS is a position in
16141 FACE_STRING. Display STRING or LISP_STRING with the face at
16142 FACE_STRING_POS in FACE_STRING:
16144 Display the string in the environment given by IT, but use the
16145 standard display table, temporarily.
16147 FIELD_WIDTH is the minimum number of output glyphs to produce.
16148 If STRING has fewer characters than FIELD_WIDTH, pad to the right
16149 with spaces. If STRING has more characters, more than FIELD_WIDTH
16150 glyphs will be produced. FIELD_WIDTH <= 0 means don't pad.
16152 PRECISION is the maximum number of characters to output from
16153 STRING. PRECISION < 0 means don't truncate the string.
16155 This is roughly equivalent to printf format specifiers:
16157 FIELD_WIDTH PRECISION PRINTF
16158 ----------------------------------------
16164 MULTIBYTE zero means do not display multibyte chars, > 0 means do
16165 display them, and < 0 means obey the current buffer's value of
16166 enable_multibyte_characters.
16168 Value is the number of glyphs produced. */
16171 display_string (string
, lisp_string
, face_string
, face_string_pos
,
16172 start
, it
, field_width
, precision
, max_x
, multibyte
)
16173 unsigned char *string
;
16174 Lisp_Object lisp_string
;
16175 Lisp_Object face_string
;
16176 int face_string_pos
;
16179 int field_width
, precision
, max_x
;
16182 int hpos_at_start
= it
->hpos
;
16183 int saved_face_id
= it
->face_id
;
16184 struct glyph_row
*row
= it
->glyph_row
;
16186 /* Initialize the iterator IT for iteration over STRING beginning
16187 with index START. */
16188 reseat_to_string (it
, string
, lisp_string
, start
,
16189 precision
, field_width
, multibyte
);
16191 /* If displaying STRING, set up the face of the iterator
16192 from LISP_STRING, if that's given. */
16193 if (STRINGP (face_string
))
16199 = face_at_string_position (it
->w
, face_string
, face_string_pos
,
16200 0, it
->region_beg_charpos
,
16201 it
->region_end_charpos
,
16202 &endptr
, it
->base_face_id
, 0);
16203 face
= FACE_FROM_ID (it
->f
, it
->face_id
);
16204 it
->face_box_p
= face
->box
!= FACE_NO_BOX
;
16207 /* Set max_x to the maximum allowed X position. Don't let it go
16208 beyond the right edge of the window. */
16210 max_x
= it
->last_visible_x
;
16212 max_x
= min (max_x
, it
->last_visible_x
);
16214 /* Skip over display elements that are not visible. because IT->w is
16216 if (it
->current_x
< it
->first_visible_x
)
16217 move_it_in_display_line_to (it
, 100000, it
->first_visible_x
,
16218 MOVE_TO_POS
| MOVE_TO_X
);
16220 row
->ascent
= it
->max_ascent
;
16221 row
->height
= it
->max_ascent
+ it
->max_descent
;
16222 row
->phys_ascent
= it
->max_phys_ascent
;
16223 row
->phys_height
= it
->max_phys_ascent
+ it
->max_phys_descent
;
16225 /* This condition is for the case that we are called with current_x
16226 past last_visible_x. */
16227 while (it
->current_x
< max_x
)
16229 int x_before
, x
, n_glyphs_before
, i
, nglyphs
;
16231 /* Get the next display element. */
16232 if (!get_next_display_element (it
))
16235 /* Produce glyphs. */
16236 x_before
= it
->current_x
;
16237 n_glyphs_before
= it
->glyph_row
->used
[TEXT_AREA
];
16238 PRODUCE_GLYPHS (it
);
16240 nglyphs
= it
->glyph_row
->used
[TEXT_AREA
] - n_glyphs_before
;
16243 while (i
< nglyphs
)
16245 struct glyph
*glyph
= row
->glyphs
[TEXT_AREA
] + n_glyphs_before
+ i
;
16247 if (!it
->truncate_lines_p
16248 && x
+ glyph
->pixel_width
> max_x
)
16250 /* End of continued line or max_x reached. */
16251 if (CHAR_GLYPH_PADDING_P (*glyph
))
16253 /* A wide character is unbreakable. */
16254 it
->glyph_row
->used
[TEXT_AREA
] = n_glyphs_before
;
16255 it
->current_x
= x_before
;
16259 it
->glyph_row
->used
[TEXT_AREA
] = n_glyphs_before
+ i
;
16264 else if (x
+ glyph
->pixel_width
> it
->first_visible_x
)
16266 /* Glyph is at least partially visible. */
16268 if (x
< it
->first_visible_x
)
16269 it
->glyph_row
->x
= x
- it
->first_visible_x
;
16273 /* Glyph is off the left margin of the display area.
16274 Should not happen. */
16278 row
->ascent
= max (row
->ascent
, it
->max_ascent
);
16279 row
->height
= max (row
->height
, it
->max_ascent
+ it
->max_descent
);
16280 row
->phys_ascent
= max (row
->phys_ascent
, it
->max_phys_ascent
);
16281 row
->phys_height
= max (row
->phys_height
,
16282 it
->max_phys_ascent
+ it
->max_phys_descent
);
16283 x
+= glyph
->pixel_width
;
16287 /* Stop if max_x reached. */
16291 /* Stop at line ends. */
16292 if (ITERATOR_AT_END_OF_LINE_P (it
))
16294 it
->continuation_lines_width
= 0;
16298 set_iterator_to_next (it
, 1);
16300 /* Stop if truncating at the right edge. */
16301 if (it
->truncate_lines_p
16302 && it
->current_x
>= it
->last_visible_x
)
16304 /* Add truncation mark, but don't do it if the line is
16305 truncated at a padding space. */
16306 if (IT_CHARPOS (*it
) < it
->string_nchars
)
16308 if (!FRAME_WINDOW_P (it
->f
))
16312 if (it
->current_x
> it
->last_visible_x
)
16314 for (i
= row
->used
[TEXT_AREA
] - 1; i
> 0; --i
)
16315 if (!CHAR_GLYPH_PADDING_P (row
->glyphs
[TEXT_AREA
][i
]))
16317 for (n
= row
->used
[TEXT_AREA
]; i
< n
; ++i
)
16319 row
->used
[TEXT_AREA
] = i
;
16320 produce_special_glyphs (it
, IT_TRUNCATION
);
16323 produce_special_glyphs (it
, IT_TRUNCATION
);
16325 it
->glyph_row
->truncated_on_right_p
= 1;
16331 /* Maybe insert a truncation at the left. */
16332 if (it
->first_visible_x
16333 && IT_CHARPOS (*it
) > 0)
16335 if (!FRAME_WINDOW_P (it
->f
))
16336 insert_left_trunc_glyphs (it
);
16337 it
->glyph_row
->truncated_on_left_p
= 1;
16340 it
->face_id
= saved_face_id
;
16342 /* Value is number of columns displayed. */
16343 return it
->hpos
- hpos_at_start
;
16348 /* This is like a combination of memq and assq. Return 1/2 if PROPVAL
16349 appears as an element of LIST or as the car of an element of LIST.
16350 If PROPVAL is a list, compare each element against LIST in that
16351 way, and return 1/2 if any element of PROPVAL is found in LIST.
16352 Otherwise return 0. This function cannot quit.
16353 The return value is 2 if the text is invisible but with an ellipsis
16354 and 1 if it's invisible and without an ellipsis. */
16357 invisible_p (propval
, list
)
16358 register Lisp_Object propval
;
16361 register Lisp_Object tail
, proptail
;
16363 for (tail
= list
; CONSP (tail
); tail
= XCDR (tail
))
16365 register Lisp_Object tem
;
16367 if (EQ (propval
, tem
))
16369 if (CONSP (tem
) && EQ (propval
, XCAR (tem
)))
16370 return NILP (XCDR (tem
)) ? 1 : 2;
16373 if (CONSP (propval
))
16375 for (proptail
= propval
; CONSP (proptail
); proptail
= XCDR (proptail
))
16377 Lisp_Object propelt
;
16378 propelt
= XCAR (proptail
);
16379 for (tail
= list
; CONSP (tail
); tail
= XCDR (tail
))
16381 register Lisp_Object tem
;
16383 if (EQ (propelt
, tem
))
16385 if (CONSP (tem
) && EQ (propelt
, XCAR (tem
)))
16386 return NILP (XCDR (tem
)) ? 1 : 2;
16395 /***********************************************************************
16397 ***********************************************************************/
16399 #ifdef HAVE_WINDOW_SYSTEM
16404 dump_glyph_string (s
)
16405 struct glyph_string
*s
;
16407 fprintf (stderr
, "glyph string\n");
16408 fprintf (stderr
, " x, y, w, h = %d, %d, %d, %d\n",
16409 s
->x
, s
->y
, s
->width
, s
->height
);
16410 fprintf (stderr
, " ybase = %d\n", s
->ybase
);
16411 fprintf (stderr
, " hl = %d\n", s
->hl
);
16412 fprintf (stderr
, " left overhang = %d, right = %d\n",
16413 s
->left_overhang
, s
->right_overhang
);
16414 fprintf (stderr
, " nchars = %d\n", s
->nchars
);
16415 fprintf (stderr
, " extends to end of line = %d\n",
16416 s
->extends_to_end_of_line_p
);
16417 fprintf (stderr
, " font height = %d\n", FONT_HEIGHT (s
->font
));
16418 fprintf (stderr
, " bg width = %d\n", s
->background_width
);
16421 #endif /* GLYPH_DEBUG */
16423 /* Initialize glyph string S. CHAR2B is a suitably allocated vector
16424 of XChar2b structures for S; it can't be allocated in
16425 init_glyph_string because it must be allocated via `alloca'. W
16426 is the window on which S is drawn. ROW and AREA are the glyph row
16427 and area within the row from which S is constructed. START is the
16428 index of the first glyph structure covered by S. HL is a
16429 face-override for drawing S. */
16432 #define OPTIONAL_HDC(hdc) hdc,
16433 #define DECLARE_HDC(hdc) HDC hdc;
16434 #define ALLOCATE_HDC(hdc, f) hdc = get_frame_dc ((f))
16435 #define RELEASE_HDC(hdc, f) release_frame_dc ((f), (hdc))
16438 #ifndef OPTIONAL_HDC
16439 #define OPTIONAL_HDC(hdc)
16440 #define DECLARE_HDC(hdc)
16441 #define ALLOCATE_HDC(hdc, f)
16442 #define RELEASE_HDC(hdc, f)
16446 init_glyph_string (s
, OPTIONAL_HDC (hdc
) char2b
, w
, row
, area
, start
, hl
)
16447 struct glyph_string
*s
;
16451 struct glyph_row
*row
;
16452 enum glyph_row_area area
;
16454 enum draw_glyphs_face hl
;
16456 bzero (s
, sizeof *s
);
16458 s
->f
= XFRAME (w
->frame
);
16462 s
->display
= FRAME_X_DISPLAY (s
->f
);
16463 s
->window
= FRAME_X_WINDOW (s
->f
);
16464 s
->char2b
= char2b
;
16468 s
->first_glyph
= row
->glyphs
[area
] + start
;
16469 s
->height
= row
->height
;
16470 s
->y
= WINDOW_TO_FRAME_PIXEL_Y (w
, row
->y
);
16472 /* Display the internal border below the tool-bar window. */
16473 if (s
->w
== XWINDOW (s
->f
->tool_bar_window
))
16474 s
->y
-= FRAME_INTERNAL_BORDER_WIDTH (s
->f
);
16476 s
->ybase
= s
->y
+ row
->ascent
;
16480 /* Append the list of glyph strings with head H and tail T to the list
16481 with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the result. */
16484 append_glyph_string_lists (head
, tail
, h
, t
)
16485 struct glyph_string
**head
, **tail
;
16486 struct glyph_string
*h
, *t
;
16500 /* Prepend the list of glyph strings with head H and tail T to the
16501 list with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the
16505 prepend_glyph_string_lists (head
, tail
, h
, t
)
16506 struct glyph_string
**head
, **tail
;
16507 struct glyph_string
*h
, *t
;
16521 /* Append glyph string S to the list with head *HEAD and tail *TAIL.
16522 Set *HEAD and *TAIL to the resulting list. */
16525 append_glyph_string (head
, tail
, s
)
16526 struct glyph_string
**head
, **tail
;
16527 struct glyph_string
*s
;
16529 s
->next
= s
->prev
= NULL
;
16530 append_glyph_string_lists (head
, tail
, s
, s
);
16534 /* Get face and two-byte form of character glyph GLYPH on frame F.
16535 The encoding of GLYPH->u.ch is returned in *CHAR2B. Value is
16536 a pointer to a realized face that is ready for display. */
16538 static INLINE
struct face
*
16539 get_glyph_face_and_encoding (f
, glyph
, char2b
, two_byte_p
)
16541 struct glyph
*glyph
;
16547 xassert (glyph
->type
== CHAR_GLYPH
);
16548 face
= FACE_FROM_ID (f
, glyph
->face_id
);
16553 if (!glyph
->multibyte_p
)
16555 /* Unibyte case. We don't have to encode, but we have to make
16556 sure to use a face suitable for unibyte. */
16557 STORE_XCHAR2B (char2b
, 0, glyph
->u
.ch
);
16559 else if (glyph
->u
.ch
< 128
16560 && glyph
->face_id
< BASIC_FACE_ID_SENTINEL
)
16562 /* Case of ASCII in a face known to fit ASCII. */
16563 STORE_XCHAR2B (char2b
, 0, glyph
->u
.ch
);
16567 int c1
, c2
, charset
;
16569 /* Split characters into bytes. If c2 is -1 afterwards, C is
16570 really a one-byte character so that byte1 is zero. */
16571 SPLIT_CHAR (glyph
->u
.ch
, charset
, c1
, c2
);
16573 STORE_XCHAR2B (char2b
, c1
, c2
);
16575 STORE_XCHAR2B (char2b
, 0, c1
);
16577 /* Maybe encode the character in *CHAR2B. */
16578 if (charset
!= CHARSET_ASCII
)
16580 struct font_info
*font_info
16581 = FONT_INFO_FROM_ID (f
, face
->font_info_id
);
16584 = rif
->encode_char (glyph
->u
.ch
, char2b
, font_info
, two_byte_p
);
16588 /* Make sure X resources of the face are allocated. */
16589 xassert (face
!= NULL
);
16590 PREPARE_FACE_FOR_DISPLAY (f
, face
);
16595 /* Fill glyph string S with composition components specified by S->cmp.
16597 FACES is an array of faces for all components of this composition.
16598 S->gidx is the index of the first component for S.
16599 OVERLAPS_P non-zero means S should draw the foreground only, and
16600 use its physical height for clipping.
16602 Value is the index of a component not in S. */
16605 fill_composite_glyph_string (s
, faces
, overlaps_p
)
16606 struct glyph_string
*s
;
16607 struct face
**faces
;
16614 s
->for_overlaps_p
= overlaps_p
;
16616 s
->face
= faces
[s
->gidx
];
16617 s
->font
= s
->face
->font
;
16618 s
->font_info
= FONT_INFO_FROM_ID (s
->f
, s
->face
->font_info_id
);
16620 /* For all glyphs of this composition, starting at the offset
16621 S->gidx, until we reach the end of the definition or encounter a
16622 glyph that requires the different face, add it to S. */
16624 for (i
= s
->gidx
+ 1; i
< s
->cmp
->glyph_len
&& faces
[i
] == s
->face
; ++i
)
16627 /* All glyph strings for the same composition has the same width,
16628 i.e. the width set for the first component of the composition. */
16630 s
->width
= s
->first_glyph
->pixel_width
;
16632 /* If the specified font could not be loaded, use the frame's
16633 default font, but record the fact that we couldn't load it in
16634 the glyph string so that we can draw rectangles for the
16635 characters of the glyph string. */
16636 if (s
->font
== NULL
)
16638 s
->font_not_found_p
= 1;
16639 s
->font
= FRAME_FONT (s
->f
);
16642 /* Adjust base line for subscript/superscript text. */
16643 s
->ybase
+= s
->first_glyph
->voffset
;
16645 xassert (s
->face
&& s
->face
->gc
);
16647 /* This glyph string must always be drawn with 16-bit functions. */
16650 return s
->gidx
+ s
->nchars
;
16654 /* Fill glyph string S from a sequence of character glyphs.
16656 FACE_ID is the face id of the string. START is the index of the
16657 first glyph to consider, END is the index of the last + 1.
16658 OVERLAPS_P non-zero means S should draw the foreground only, and
16659 use its physical height for clipping.
16661 Value is the index of the first glyph not in S. */
16664 fill_glyph_string (s
, face_id
, start
, end
, overlaps_p
)
16665 struct glyph_string
*s
;
16667 int start
, end
, overlaps_p
;
16669 struct glyph
*glyph
, *last
;
16671 int glyph_not_available_p
;
16673 xassert (s
->f
== XFRAME (s
->w
->frame
));
16674 xassert (s
->nchars
== 0);
16675 xassert (start
>= 0 && end
> start
);
16677 s
->for_overlaps_p
= overlaps_p
,
16678 glyph
= s
->row
->glyphs
[s
->area
] + start
;
16679 last
= s
->row
->glyphs
[s
->area
] + end
;
16680 voffset
= glyph
->voffset
;
16682 glyph_not_available_p
= glyph
->glyph_not_available_p
;
16684 while (glyph
< last
16685 && glyph
->type
== CHAR_GLYPH
16686 && glyph
->voffset
== voffset
16687 /* Same face id implies same font, nowadays. */
16688 && glyph
->face_id
== face_id
16689 && glyph
->glyph_not_available_p
== glyph_not_available_p
)
16693 s
->face
= get_glyph_face_and_encoding (s
->f
, glyph
,
16694 s
->char2b
+ s
->nchars
,
16696 s
->two_byte_p
= two_byte_p
;
16698 xassert (s
->nchars
<= end
- start
);
16699 s
->width
+= glyph
->pixel_width
;
16703 s
->font
= s
->face
->font
;
16704 s
->font_info
= FONT_INFO_FROM_ID (s
->f
, s
->face
->font_info_id
);
16706 /* If the specified font could not be loaded, use the frame's font,
16707 but record the fact that we couldn't load it in
16708 S->font_not_found_p so that we can draw rectangles for the
16709 characters of the glyph string. */
16710 if (s
->font
== NULL
|| glyph_not_available_p
)
16712 s
->font_not_found_p
= 1;
16713 s
->font
= FRAME_FONT (s
->f
);
16716 /* Adjust base line for subscript/superscript text. */
16717 s
->ybase
+= voffset
;
16719 xassert (s
->face
&& s
->face
->gc
);
16720 return glyph
- s
->row
->glyphs
[s
->area
];
16724 /* Fill glyph string S from image glyph S->first_glyph. */
16727 fill_image_glyph_string (s
)
16728 struct glyph_string
*s
;
16730 xassert (s
->first_glyph
->type
== IMAGE_GLYPH
);
16731 s
->img
= IMAGE_FROM_ID (s
->f
, s
->first_glyph
->u
.img_id
);
16733 s
->face
= FACE_FROM_ID (s
->f
, s
->first_glyph
->face_id
);
16734 s
->font
= s
->face
->font
;
16735 s
->width
= s
->first_glyph
->pixel_width
;
16737 /* Adjust base line for subscript/superscript text. */
16738 s
->ybase
+= s
->first_glyph
->voffset
;
16742 /* Fill glyph string S from a sequence of stretch glyphs.
16744 ROW is the glyph row in which the glyphs are found, AREA is the
16745 area within the row. START is the index of the first glyph to
16746 consider, END is the index of the last + 1.
16748 Value is the index of the first glyph not in S. */
16751 fill_stretch_glyph_string (s
, row
, area
, start
, end
)
16752 struct glyph_string
*s
;
16753 struct glyph_row
*row
;
16754 enum glyph_row_area area
;
16757 struct glyph
*glyph
, *last
;
16758 int voffset
, face_id
;
16760 xassert (s
->first_glyph
->type
== STRETCH_GLYPH
);
16762 glyph
= s
->row
->glyphs
[s
->area
] + start
;
16763 last
= s
->row
->glyphs
[s
->area
] + end
;
16764 face_id
= glyph
->face_id
;
16765 s
->face
= FACE_FROM_ID (s
->f
, face_id
);
16766 s
->font
= s
->face
->font
;
16767 s
->font_info
= FONT_INFO_FROM_ID (s
->f
, s
->face
->font_info_id
);
16768 s
->width
= glyph
->pixel_width
;
16769 voffset
= glyph
->voffset
;
16773 && glyph
->type
== STRETCH_GLYPH
16774 && glyph
->voffset
== voffset
16775 && glyph
->face_id
== face_id
);
16777 s
->width
+= glyph
->pixel_width
;
16779 /* Adjust base line for subscript/superscript text. */
16780 s
->ybase
+= voffset
;
16782 /* The case that face->gc == 0 is handled when drawing the glyph
16783 string by calling PREPARE_FACE_FOR_DISPLAY. */
16785 return glyph
- s
->row
->glyphs
[s
->area
];
16790 Set *LEFT and *RIGHT to the left and right overhang of GLYPH on
16791 frame F. Overhangs of glyphs other than type CHAR_GLYPH are
16792 assumed to be zero. */
16795 x_get_glyph_overhangs (glyph
, f
, left
, right
)
16796 struct glyph
*glyph
;
16800 *left
= *right
= 0;
16802 if (glyph
->type
== CHAR_GLYPH
)
16806 struct font_info
*font_info
;
16810 face
= get_glyph_face_and_encoding (f
, glyph
, &char2b
, NULL
);
16812 font_info
= FONT_INFO_FROM_ID (f
, face
->font_info_id
);
16813 if (font
/* ++KFS: Should this be font_info ? */
16814 && (pcm
= rif
->per_char_metric (font
, &char2b
, glyph
->font_type
)))
16816 if (pcm
->rbearing
> pcm
->width
)
16817 *right
= pcm
->rbearing
- pcm
->width
;
16818 if (pcm
->lbearing
< 0)
16819 *left
= -pcm
->lbearing
;
16825 /* Return the index of the first glyph preceding glyph string S that
16826 is overwritten by S because of S's left overhang. Value is -1
16827 if no glyphs are overwritten. */
16830 left_overwritten (s
)
16831 struct glyph_string
*s
;
16835 if (s
->left_overhang
)
16838 struct glyph
*glyphs
= s
->row
->glyphs
[s
->area
];
16839 int first
= s
->first_glyph
- glyphs
;
16841 for (i
= first
- 1; i
>= 0 && x
> -s
->left_overhang
; --i
)
16842 x
-= glyphs
[i
].pixel_width
;
16853 /* Return the index of the first glyph preceding glyph string S that
16854 is overwriting S because of its right overhang. Value is -1 if no
16855 glyph in front of S overwrites S. */
16858 left_overwriting (s
)
16859 struct glyph_string
*s
;
16862 struct glyph
*glyphs
= s
->row
->glyphs
[s
->area
];
16863 int first
= s
->first_glyph
- glyphs
;
16867 for (i
= first
- 1; i
>= 0; --i
)
16870 x_get_glyph_overhangs (glyphs
+ i
, s
->f
, &left
, &right
);
16873 x
-= glyphs
[i
].pixel_width
;
16880 /* Return the index of the last glyph following glyph string S that is
16881 not overwritten by S because of S's right overhang. Value is -1 if
16882 no such glyph is found. */
16885 right_overwritten (s
)
16886 struct glyph_string
*s
;
16890 if (s
->right_overhang
)
16893 struct glyph
*glyphs
= s
->row
->glyphs
[s
->area
];
16894 int first
= (s
->first_glyph
- glyphs
) + (s
->cmp
? 1 : s
->nchars
);
16895 int end
= s
->row
->used
[s
->area
];
16897 for (i
= first
; i
< end
&& s
->right_overhang
> x
; ++i
)
16898 x
+= glyphs
[i
].pixel_width
;
16907 /* Return the index of the last glyph following glyph string S that
16908 overwrites S because of its left overhang. Value is negative
16909 if no such glyph is found. */
16912 right_overwriting (s
)
16913 struct glyph_string
*s
;
16916 int end
= s
->row
->used
[s
->area
];
16917 struct glyph
*glyphs
= s
->row
->glyphs
[s
->area
];
16918 int first
= (s
->first_glyph
- glyphs
) + (s
->cmp
? 1 : s
->nchars
);
16922 for (i
= first
; i
< end
; ++i
)
16925 x_get_glyph_overhangs (glyphs
+ i
, s
->f
, &left
, &right
);
16928 x
+= glyphs
[i
].pixel_width
;
16935 /* Get face and two-byte form of character C in face FACE_ID on frame
16936 F. The encoding of C is returned in *CHAR2B. MULTIBYTE_P non-zero
16937 means we want to display multibyte text. DISPLAY_P non-zero means
16938 make sure that X resources for the face returned are allocated.
16939 Value is a pointer to a realized face that is ready for display if
16940 DISPLAY_P is non-zero. */
16942 static INLINE
struct face
*
16943 get_char_face_and_encoding (f
, c
, face_id
, char2b
, multibyte_p
, display_p
)
16947 int multibyte_p
, display_p
;
16949 struct face
*face
= FACE_FROM_ID (f
, face_id
);
16953 /* Unibyte case. We don't have to encode, but we have to make
16954 sure to use a face suitable for unibyte. */
16955 STORE_XCHAR2B (char2b
, 0, c
);
16956 face_id
= FACE_FOR_CHAR (f
, face
, c
);
16957 face
= FACE_FROM_ID (f
, face_id
);
16959 else if (c
< 128 && face_id
< BASIC_FACE_ID_SENTINEL
)
16961 /* Case of ASCII in a face known to fit ASCII. */
16962 STORE_XCHAR2B (char2b
, 0, c
);
16966 int c1
, c2
, charset
;
16968 /* Split characters into bytes. If c2 is -1 afterwards, C is
16969 really a one-byte character so that byte1 is zero. */
16970 SPLIT_CHAR (c
, charset
, c1
, c2
);
16972 STORE_XCHAR2B (char2b
, c1
, c2
);
16974 STORE_XCHAR2B (char2b
, 0, c1
);
16976 /* Maybe encode the character in *CHAR2B. */
16977 if (face
->font
!= NULL
)
16979 struct font_info
*font_info
16980 = FONT_INFO_FROM_ID (f
, face
->font_info_id
);
16982 rif
->encode_char (c
, char2b
, font_info
, 0);
16986 /* Make sure X resources of the face are allocated. */
16987 #ifdef HAVE_X_WINDOWS
16991 xassert (face
!= NULL
);
16992 PREPARE_FACE_FOR_DISPLAY (f
, face
);
16999 /* Set background width of glyph string S. START is the index of the
17000 first glyph following S. LAST_X is the right-most x-position + 1
17001 in the drawing area. */
17004 set_glyph_string_background_width (s
, start
, last_x
)
17005 struct glyph_string
*s
;
17009 /* If the face of this glyph string has to be drawn to the end of
17010 the drawing area, set S->extends_to_end_of_line_p. */
17011 struct face
*default_face
= FACE_FROM_ID (s
->f
, DEFAULT_FACE_ID
);
17013 if (start
== s
->row
->used
[s
->area
]
17014 && s
->area
== TEXT_AREA
17015 && ((s
->hl
== DRAW_NORMAL_TEXT
17016 && (s
->row
->fill_line_p
17017 || s
->face
->background
!= default_face
->background
17018 || s
->face
->stipple
!= default_face
->stipple
17019 || s
->row
->mouse_face_p
))
17020 || s
->hl
== DRAW_MOUSE_FACE
17021 || ((s
->hl
== DRAW_IMAGE_RAISED
|| s
->hl
== DRAW_IMAGE_SUNKEN
)
17022 && s
->row
->fill_line_p
)))
17023 s
->extends_to_end_of_line_p
= 1;
17025 /* If S extends its face to the end of the line, set its
17026 background_width to the distance to the right edge of the drawing
17028 if (s
->extends_to_end_of_line_p
)
17029 s
->background_width
= last_x
- s
->x
+ 1;
17031 s
->background_width
= s
->width
;
17035 /* Compute overhangs and x-positions for glyph string S and its
17036 predecessors, or successors. X is the starting x-position for S.
17037 BACKWARD_P non-zero means process predecessors. */
17040 compute_overhangs_and_x (s
, x
, backward_p
)
17041 struct glyph_string
*s
;
17049 if (rif
->compute_glyph_string_overhangs
)
17050 rif
->compute_glyph_string_overhangs (s
);
17060 if (rif
->compute_glyph_string_overhangs
)
17061 rif
->compute_glyph_string_overhangs (s
);
17071 /* The following macros are only called from draw_glyphs below.
17072 They reference the following parameters of that function directly:
17073 `w', `row', `area', and `overlap_p'
17074 as well as the following local variables:
17075 `s', `f', and `hdc' (in W32) */
17078 /* On W32, silently add local `hdc' variable to argument list of
17079 init_glyph_string. */
17080 #define INIT_GLYPH_STRING(s, char2b, w, row, area, start, hl) \
17081 init_glyph_string (s, hdc, char2b, w, row, area, start, hl)
17083 #define INIT_GLYPH_STRING(s, char2b, w, row, area, start, hl) \
17084 init_glyph_string (s, char2b, w, row, area, start, hl)
17087 /* Add a glyph string for a stretch glyph to the list of strings
17088 between HEAD and TAIL. START is the index of the stretch glyph in
17089 row area AREA of glyph row ROW. END is the index of the last glyph
17090 in that glyph row area. X is the current output position assigned
17091 to the new glyph string constructed. HL overrides that face of the
17092 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
17093 is the right-most x-position of the drawing area. */
17095 /* SunOS 4 bundled cc, barfed on continuations in the arg lists here
17096 and below -- keep them on one line. */
17097 #define BUILD_STRETCH_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
17100 s = (struct glyph_string *) alloca (sizeof *s); \
17101 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
17102 START = fill_stretch_glyph_string (s, row, area, START, END); \
17103 append_glyph_string (&HEAD, &TAIL, s); \
17109 /* Add a glyph string for an image glyph to the list of strings
17110 between HEAD and TAIL. START is the index of the image glyph in
17111 row area AREA of glyph row ROW. END is the index of the last glyph
17112 in that glyph row area. X is the current output position assigned
17113 to the new glyph string constructed. HL overrides that face of the
17114 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
17115 is the right-most x-position of the drawing area. */
17117 #define BUILD_IMAGE_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
17120 s = (struct glyph_string *) alloca (sizeof *s); \
17121 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
17122 fill_image_glyph_string (s); \
17123 append_glyph_string (&HEAD, &TAIL, s); \
17130 /* Add a glyph string for a sequence of character glyphs to the list
17131 of strings between HEAD and TAIL. START is the index of the first
17132 glyph in row area AREA of glyph row ROW that is part of the new
17133 glyph string. END is the index of the last glyph in that glyph row
17134 area. X is the current output position assigned to the new glyph
17135 string constructed. HL overrides that face of the glyph; e.g. it
17136 is DRAW_CURSOR if a cursor has to be drawn. LAST_X is the
17137 right-most x-position of the drawing area. */
17139 #define BUILD_CHAR_GLYPH_STRINGS(START, END, HEAD, TAIL, HL, X, LAST_X) \
17145 c = (row)->glyphs[area][START].u.ch; \
17146 face_id = (row)->glyphs[area][START].face_id; \
17148 s = (struct glyph_string *) alloca (sizeof *s); \
17149 char2b = (XChar2b *) alloca ((END - START) * sizeof *char2b); \
17150 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
17151 append_glyph_string (&HEAD, &TAIL, s); \
17153 START = fill_glyph_string (s, face_id, START, END, overlaps_p); \
17158 /* Add a glyph string for a composite sequence to the list of strings
17159 between HEAD and TAIL. START is the index of the first glyph in
17160 row area AREA of glyph row ROW that is part of the new glyph
17161 string. END is the index of the last glyph in that glyph row area.
17162 X is the current output position assigned to the new glyph string
17163 constructed. HL overrides that face of the glyph; e.g. it is
17164 DRAW_CURSOR if a cursor has to be drawn. LAST_X is the right-most
17165 x-position of the drawing area. */
17167 #define BUILD_COMPOSITE_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
17169 int cmp_id = (row)->glyphs[area][START].u.cmp_id; \
17170 int face_id = (row)->glyphs[area][START].face_id; \
17171 struct face *base_face = FACE_FROM_ID (f, face_id); \
17172 struct composition *cmp = composition_table[cmp_id]; \
17173 int glyph_len = cmp->glyph_len; \
17175 struct face **faces; \
17176 struct glyph_string *first_s = NULL; \
17179 base_face = base_face->ascii_face; \
17180 char2b = (XChar2b *) alloca ((sizeof *char2b) * glyph_len); \
17181 faces = (struct face **) alloca ((sizeof *faces) * glyph_len); \
17182 /* At first, fill in `char2b' and `faces'. */ \
17183 for (n = 0; n < glyph_len; n++) \
17185 int c = COMPOSITION_GLYPH (cmp, n); \
17186 int this_face_id = FACE_FOR_CHAR (f, base_face, c); \
17187 faces[n] = FACE_FROM_ID (f, this_face_id); \
17188 get_char_face_and_encoding (f, c, this_face_id, \
17189 char2b + n, 1, 1); \
17192 /* Make glyph_strings for each glyph sequence that is drawable by \
17193 the same face, and append them to HEAD/TAIL. */ \
17194 for (n = 0; n < cmp->glyph_len;) \
17196 s = (struct glyph_string *) alloca (sizeof *s); \
17197 INIT_GLYPH_STRING (s, char2b + n, w, row, area, START, HL); \
17198 append_glyph_string (&(HEAD), &(TAIL), s); \
17206 n = fill_composite_glyph_string (s, faces, overlaps_p); \
17214 /* Build a list of glyph strings between HEAD and TAIL for the glyphs
17215 of AREA of glyph row ROW on window W between indices START and END.
17216 HL overrides the face for drawing glyph strings, e.g. it is
17217 DRAW_CURSOR to draw a cursor. X and LAST_X are start and end
17218 x-positions of the drawing area.
17220 This is an ugly monster macro construct because we must use alloca
17221 to allocate glyph strings (because draw_glyphs can be called
17222 asynchronously). */
17224 #define BUILD_GLYPH_STRINGS(START, END, HEAD, TAIL, HL, X, LAST_X) \
17227 HEAD = TAIL = NULL; \
17228 while (START < END) \
17230 struct glyph *first_glyph = (row)->glyphs[area] + START; \
17231 switch (first_glyph->type) \
17234 BUILD_CHAR_GLYPH_STRINGS (START, END, HEAD, TAIL, \
17238 case COMPOSITE_GLYPH: \
17239 BUILD_COMPOSITE_GLYPH_STRING (START, END, HEAD, TAIL, \
17243 case STRETCH_GLYPH: \
17244 BUILD_STRETCH_GLYPH_STRING (START, END, HEAD, TAIL, \
17248 case IMAGE_GLYPH: \
17249 BUILD_IMAGE_GLYPH_STRING (START, END, HEAD, TAIL, \
17257 set_glyph_string_background_width (s, START, LAST_X); \
17264 /* Draw glyphs between START and END in AREA of ROW on window W,
17265 starting at x-position X. X is relative to AREA in W. HL is a
17266 face-override with the following meaning:
17268 DRAW_NORMAL_TEXT draw normally
17269 DRAW_CURSOR draw in cursor face
17270 DRAW_MOUSE_FACE draw in mouse face.
17271 DRAW_INVERSE_VIDEO draw in mode line face
17272 DRAW_IMAGE_SUNKEN draw an image with a sunken relief around it
17273 DRAW_IMAGE_RAISED draw an image with a raised relief around it
17275 If OVERLAPS_P is non-zero, draw only the foreground of characters
17276 and clip to the physical height of ROW.
17278 Value is the x-position reached, relative to AREA of W. */
17281 draw_glyphs (w
, x
, row
, area
, start
, end
, hl
, overlaps_p
)
17284 struct glyph_row
*row
;
17285 enum glyph_row_area area
;
17287 enum draw_glyphs_face hl
;
17290 struct glyph_string
*head
, *tail
;
17291 struct glyph_string
*s
;
17292 int last_x
, area_width
;
17295 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
17298 ALLOCATE_HDC (hdc
, f
);
17300 /* Let's rather be paranoid than getting a SEGV. */
17301 end
= min (end
, row
->used
[area
]);
17302 start
= max (0, start
);
17303 start
= min (end
, start
);
17305 /* Translate X to frame coordinates. Set last_x to the right
17306 end of the drawing area. */
17307 if (row
->full_width_p
)
17309 /* X is relative to the left edge of W, without scroll bars
17311 x
+= WINDOW_LEFT_EDGE_X (w
);
17312 last_x
= WINDOW_LEFT_EDGE_X (w
) + WINDOW_TOTAL_WIDTH (w
);
17316 int area_left
= window_box_left (w
, area
);
17318 area_width
= window_box_width (w
, area
);
17319 last_x
= area_left
+ area_width
;
17322 /* Build a doubly-linked list of glyph_string structures between
17323 head and tail from what we have to draw. Note that the macro
17324 BUILD_GLYPH_STRINGS will modify its start parameter. That's
17325 the reason we use a separate variable `i'. */
17327 BUILD_GLYPH_STRINGS (i
, end
, head
, tail
, hl
, x
, last_x
);
17329 x_reached
= tail
->x
+ tail
->background_width
;
17333 /* If there are any glyphs with lbearing < 0 or rbearing > width in
17334 the row, redraw some glyphs in front or following the glyph
17335 strings built above. */
17336 if (head
&& !overlaps_p
&& row
->contains_overlapping_glyphs_p
)
17339 struct glyph_string
*h
, *t
;
17341 /* Compute overhangs for all glyph strings. */
17342 if (rif
->compute_glyph_string_overhangs
)
17343 for (s
= head
; s
; s
= s
->next
)
17344 rif
->compute_glyph_string_overhangs (s
);
17346 /* Prepend glyph strings for glyphs in front of the first glyph
17347 string that are overwritten because of the first glyph
17348 string's left overhang. The background of all strings
17349 prepended must be drawn because the first glyph string
17351 i
= left_overwritten (head
);
17355 BUILD_GLYPH_STRINGS (j
, start
, h
, t
,
17356 DRAW_NORMAL_TEXT
, dummy_x
, last_x
);
17358 compute_overhangs_and_x (t
, head
->x
, 1);
17359 prepend_glyph_string_lists (&head
, &tail
, h
, t
);
17362 /* Prepend glyph strings for glyphs in front of the first glyph
17363 string that overwrite that glyph string because of their
17364 right overhang. For these strings, only the foreground must
17365 be drawn, because it draws over the glyph string at `head'.
17366 The background must not be drawn because this would overwrite
17367 right overhangs of preceding glyphs for which no glyph
17369 i
= left_overwriting (head
);
17372 BUILD_GLYPH_STRINGS (i
, start
, h
, t
,
17373 DRAW_NORMAL_TEXT
, dummy_x
, last_x
);
17374 for (s
= h
; s
; s
= s
->next
)
17375 s
->background_filled_p
= 1;
17376 compute_overhangs_and_x (t
, head
->x
, 1);
17377 prepend_glyph_string_lists (&head
, &tail
, h
, t
);
17380 /* Append glyphs strings for glyphs following the last glyph
17381 string tail that are overwritten by tail. The background of
17382 these strings has to be drawn because tail's foreground draws
17384 i
= right_overwritten (tail
);
17387 BUILD_GLYPH_STRINGS (end
, i
, h
, t
,
17388 DRAW_NORMAL_TEXT
, x
, last_x
);
17389 compute_overhangs_and_x (h
, tail
->x
+ tail
->width
, 0);
17390 append_glyph_string_lists (&head
, &tail
, h
, t
);
17393 /* Append glyph strings for glyphs following the last glyph
17394 string tail that overwrite tail. The foreground of such
17395 glyphs has to be drawn because it writes into the background
17396 of tail. The background must not be drawn because it could
17397 paint over the foreground of following glyphs. */
17398 i
= right_overwriting (tail
);
17401 BUILD_GLYPH_STRINGS (end
, i
, h
, t
,
17402 DRAW_NORMAL_TEXT
, x
, last_x
);
17403 for (s
= h
; s
; s
= s
->next
)
17404 s
->background_filled_p
= 1;
17405 compute_overhangs_and_x (h
, tail
->x
+ tail
->width
, 0);
17406 append_glyph_string_lists (&head
, &tail
, h
, t
);
17410 /* Draw all strings. */
17411 for (s
= head
; s
; s
= s
->next
)
17412 rif
->draw_glyph_string (s
);
17414 if (area
== TEXT_AREA
17415 && !row
->full_width_p
17416 /* When drawing overlapping rows, only the glyph strings'
17417 foreground is drawn, which doesn't erase a cursor
17421 int x0
= head
? head
->x
: x
;
17422 int x1
= tail
? tail
->x
+ tail
->background_width
: x
;
17424 int text_left
= window_box_left (w
, TEXT_AREA
);
17428 notice_overwritten_cursor (w
, TEXT_AREA
, x0
, x1
,
17429 row
->y
, MATRIX_ROW_BOTTOM_Y (row
));
17432 /* Value is the x-position up to which drawn, relative to AREA of W.
17433 This doesn't include parts drawn because of overhangs. */
17434 if (row
->full_width_p
)
17435 x_reached
= FRAME_TO_WINDOW_PIXEL_X (w
, x_reached
);
17437 x_reached
-= window_box_left (w
, area
);
17439 RELEASE_HDC (hdc
, f
);
17445 /* Store one glyph for IT->char_to_display in IT->glyph_row.
17446 Called from x_produce_glyphs when IT->glyph_row is non-null. */
17452 struct glyph
*glyph
;
17453 enum glyph_row_area area
= it
->area
;
17455 xassert (it
->glyph_row
);
17456 xassert (it
->char_to_display
!= '\n' && it
->char_to_display
!= '\t');
17458 glyph
= it
->glyph_row
->glyphs
[area
] + it
->glyph_row
->used
[area
];
17459 if (glyph
< it
->glyph_row
->glyphs
[area
+ 1])
17461 glyph
->charpos
= CHARPOS (it
->position
);
17462 glyph
->object
= it
->object
;
17463 glyph
->pixel_width
= it
->pixel_width
;
17464 glyph
->voffset
= it
->voffset
;
17465 glyph
->type
= CHAR_GLYPH
;
17466 glyph
->multibyte_p
= it
->multibyte_p
;
17467 glyph
->left_box_line_p
= it
->start_of_box_run_p
;
17468 glyph
->right_box_line_p
= it
->end_of_box_run_p
;
17469 glyph
->overlaps_vertically_p
= (it
->phys_ascent
> it
->ascent
17470 || it
->phys_descent
> it
->descent
);
17471 glyph
->padding_p
= 0;
17472 glyph
->glyph_not_available_p
= it
->glyph_not_available_p
;
17473 glyph
->face_id
= it
->face_id
;
17474 glyph
->u
.ch
= it
->char_to_display
;
17475 glyph
->font_type
= FONT_TYPE_UNKNOWN
;
17476 ++it
->glyph_row
->used
[area
];
17480 /* Store one glyph for the composition IT->cmp_id in IT->glyph_row.
17481 Called from x_produce_glyphs when IT->glyph_row is non-null. */
17484 append_composite_glyph (it
)
17487 struct glyph
*glyph
;
17488 enum glyph_row_area area
= it
->area
;
17490 xassert (it
->glyph_row
);
17492 glyph
= it
->glyph_row
->glyphs
[area
] + it
->glyph_row
->used
[area
];
17493 if (glyph
< it
->glyph_row
->glyphs
[area
+ 1])
17495 glyph
->charpos
= CHARPOS (it
->position
);
17496 glyph
->object
= it
->object
;
17497 glyph
->pixel_width
= it
->pixel_width
;
17498 glyph
->voffset
= it
->voffset
;
17499 glyph
->type
= COMPOSITE_GLYPH
;
17500 glyph
->multibyte_p
= it
->multibyte_p
;
17501 glyph
->left_box_line_p
= it
->start_of_box_run_p
;
17502 glyph
->right_box_line_p
= it
->end_of_box_run_p
;
17503 glyph
->overlaps_vertically_p
= (it
->phys_ascent
> it
->ascent
17504 || it
->phys_descent
> it
->descent
);
17505 glyph
->padding_p
= 0;
17506 glyph
->glyph_not_available_p
= 0;
17507 glyph
->face_id
= it
->face_id
;
17508 glyph
->u
.cmp_id
= it
->cmp_id
;
17509 glyph
->font_type
= FONT_TYPE_UNKNOWN
;
17510 ++it
->glyph_row
->used
[area
];
17515 /* Change IT->ascent and IT->height according to the setting of
17519 take_vertical_position_into_account (it
)
17524 if (it
->voffset
< 0)
17525 /* Increase the ascent so that we can display the text higher
17527 it
->ascent
+= abs (it
->voffset
);
17529 /* Increase the descent so that we can display the text lower
17531 it
->descent
+= it
->voffset
;
17536 /* Produce glyphs/get display metrics for the image IT is loaded with.
17537 See the description of struct display_iterator in dispextern.h for
17538 an overview of struct display_iterator. */
17541 produce_image_glyph (it
)
17547 xassert (it
->what
== IT_IMAGE
);
17549 face
= FACE_FROM_ID (it
->f
, it
->face_id
);
17550 img
= IMAGE_FROM_ID (it
->f
, it
->image_id
);
17553 /* Make sure X resources of the face and image are loaded. */
17554 PREPARE_FACE_FOR_DISPLAY (it
->f
, face
);
17555 prepare_image_for_display (it
->f
, img
);
17557 it
->ascent
= it
->phys_ascent
= image_ascent (img
, face
);
17558 it
->descent
= it
->phys_descent
= img
->height
+ 2 * img
->vmargin
- it
->ascent
;
17559 it
->pixel_width
= img
->width
+ 2 * img
->hmargin
;
17563 if (face
->box
!= FACE_NO_BOX
)
17565 if (face
->box_line_width
> 0)
17567 it
->ascent
+= face
->box_line_width
;
17568 it
->descent
+= face
->box_line_width
;
17571 if (it
->start_of_box_run_p
)
17572 it
->pixel_width
+= abs (face
->box_line_width
);
17573 if (it
->end_of_box_run_p
)
17574 it
->pixel_width
+= abs (face
->box_line_width
);
17577 take_vertical_position_into_account (it
);
17581 struct glyph
*glyph
;
17582 enum glyph_row_area area
= it
->area
;
17584 glyph
= it
->glyph_row
->glyphs
[area
] + it
->glyph_row
->used
[area
];
17585 if (glyph
< it
->glyph_row
->glyphs
[area
+ 1])
17587 glyph
->charpos
= CHARPOS (it
->position
);
17588 glyph
->object
= it
->object
;
17589 glyph
->pixel_width
= it
->pixel_width
;
17590 glyph
->voffset
= it
->voffset
;
17591 glyph
->type
= IMAGE_GLYPH
;
17592 glyph
->multibyte_p
= it
->multibyte_p
;
17593 glyph
->left_box_line_p
= it
->start_of_box_run_p
;
17594 glyph
->right_box_line_p
= it
->end_of_box_run_p
;
17595 glyph
->overlaps_vertically_p
= 0;
17596 glyph
->padding_p
= 0;
17597 glyph
->glyph_not_available_p
= 0;
17598 glyph
->face_id
= it
->face_id
;
17599 glyph
->u
.img_id
= img
->id
;
17600 glyph
->font_type
= FONT_TYPE_UNKNOWN
;
17601 ++it
->glyph_row
->used
[area
];
17607 /* Append a stretch glyph to IT->glyph_row. OBJECT is the source
17608 of the glyph, WIDTH and HEIGHT are the width and height of the
17609 stretch. ASCENT is the percentage/100 of HEIGHT to use for the
17610 ascent of the glyph (0 <= ASCENT <= 1). */
17613 append_stretch_glyph (it
, object
, width
, height
, ascent
)
17615 Lisp_Object object
;
17619 struct glyph
*glyph
;
17620 enum glyph_row_area area
= it
->area
;
17622 xassert (ascent
>= 0 && ascent
<= 1);
17624 glyph
= it
->glyph_row
->glyphs
[area
] + it
->glyph_row
->used
[area
];
17625 if (glyph
< it
->glyph_row
->glyphs
[area
+ 1])
17627 glyph
->charpos
= CHARPOS (it
->position
);
17628 glyph
->object
= object
;
17629 glyph
->pixel_width
= width
;
17630 glyph
->voffset
= it
->voffset
;
17631 glyph
->type
= STRETCH_GLYPH
;
17632 glyph
->multibyte_p
= it
->multibyte_p
;
17633 glyph
->left_box_line_p
= it
->start_of_box_run_p
;
17634 glyph
->right_box_line_p
= it
->end_of_box_run_p
;
17635 glyph
->overlaps_vertically_p
= 0;
17636 glyph
->padding_p
= 0;
17637 glyph
->glyph_not_available_p
= 0;
17638 glyph
->face_id
= it
->face_id
;
17639 glyph
->u
.stretch
.ascent
= height
* ascent
;
17640 glyph
->u
.stretch
.height
= height
;
17641 glyph
->font_type
= FONT_TYPE_UNKNOWN
;
17642 ++it
->glyph_row
->used
[area
];
17647 /* Produce a stretch glyph for iterator IT. IT->object is the value
17648 of the glyph property displayed. The value must be a list
17649 `(space KEYWORD VALUE ...)' with the following KEYWORD/VALUE pairs
17652 1. `:width WIDTH' specifies that the space should be WIDTH *
17653 canonical char width wide. WIDTH may be an integer or floating
17656 2. `:relative-width FACTOR' specifies that the width of the stretch
17657 should be computed from the width of the first character having the
17658 `glyph' property, and should be FACTOR times that width.
17660 3. `:align-to HPOS' specifies that the space should be wide enough
17661 to reach HPOS, a value in canonical character units.
17663 Exactly one of the above pairs must be present.
17665 4. `:height HEIGHT' specifies that the height of the stretch produced
17666 should be HEIGHT, measured in canonical character units.
17668 5. `:relative-height FACTOR' specifies that the height of the
17669 stretch should be FACTOR times the height of the characters having
17670 the glyph property.
17672 Either none or exactly one of 4 or 5 must be present.
17674 6. `:ascent ASCENT' specifies that ASCENT percent of the height
17675 of the stretch should be used for the ascent of the stretch.
17676 ASCENT must be in the range 0 <= ASCENT <= 100. */
17678 #define NUMVAL(X) \
17679 ((INTEGERP (X) || FLOATP (X)) \
17685 produce_stretch_glyph (it
)
17688 /* (space :width WIDTH :height HEIGHT. */
17689 Lisp_Object prop
, plist
;
17690 int width
= 0, height
= 0;
17692 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
17693 XFontStruct
*font
= face
->font
? face
->font
: FRAME_FONT (it
->f
);
17695 PREPARE_FACE_FOR_DISPLAY (it
->f
, face
);
17697 /* List should start with `space'. */
17698 xassert (CONSP (it
->object
) && EQ (XCAR (it
->object
), Qspace
));
17699 plist
= XCDR (it
->object
);
17701 /* Compute the width of the stretch. */
17702 if (prop
= Fplist_get (plist
, QCwidth
),
17704 /* Absolute width `:width WIDTH' specified and valid. */
17705 width
= NUMVAL (prop
) * FRAME_COLUMN_WIDTH (it
->f
);
17706 else if (prop
= Fplist_get (plist
, QCrelative_width
),
17709 /* Relative width `:relative-width FACTOR' specified and valid.
17710 Compute the width of the characters having the `glyph'
17713 unsigned char *p
= BYTE_POS_ADDR (IT_BYTEPOS (*it
));
17716 if (it
->multibyte_p
)
17718 int maxlen
= ((IT_BYTEPOS (*it
) >= GPT
? ZV
: GPT
)
17719 - IT_BYTEPOS (*it
));
17720 it2
.c
= STRING_CHAR_AND_LENGTH (p
, maxlen
, it2
.len
);
17723 it2
.c
= *p
, it2
.len
= 1;
17725 it2
.glyph_row
= NULL
;
17726 it2
.what
= IT_CHARACTER
;
17727 x_produce_glyphs (&it2
);
17728 width
= NUMVAL (prop
) * it2
.pixel_width
;
17730 else if (prop
= Fplist_get (plist
, QCalign_to
),
17732 width
= NUMVAL (prop
) * FRAME_COLUMN_WIDTH (it
->f
) - it
->current_x
;
17734 /* Nothing specified -> width defaults to canonical char width. */
17735 width
= FRAME_COLUMN_WIDTH (it
->f
);
17737 /* Compute height. */
17738 if (prop
= Fplist_get (plist
, QCheight
),
17740 height
= NUMVAL (prop
) * FRAME_LINE_HEIGHT (it
->f
);
17741 else if (prop
= Fplist_get (plist
, QCrelative_height
),
17743 height
= FONT_HEIGHT (font
) * NUMVAL (prop
);
17745 height
= FONT_HEIGHT (font
);
17747 /* Compute percentage of height used for ascent. If
17748 `:ascent ASCENT' is present and valid, use that. Otherwise,
17749 derive the ascent from the font in use. */
17750 if (prop
= Fplist_get (plist
, QCascent
),
17751 NUMVAL (prop
) > 0 && NUMVAL (prop
) <= 100)
17752 ascent
= NUMVAL (prop
) / 100.0;
17754 ascent
= (double) FONT_BASE (font
) / FONT_HEIGHT (font
);
17763 Lisp_Object object
= it
->stack
[it
->sp
- 1].string
;
17764 if (!STRINGP (object
))
17765 object
= it
->w
->buffer
;
17766 append_stretch_glyph (it
, object
, width
, height
, ascent
);
17769 it
->pixel_width
= width
;
17770 it
->ascent
= it
->phys_ascent
= height
* ascent
;
17771 it
->descent
= it
->phys_descent
= height
- it
->ascent
;
17774 if (face
->box
!= FACE_NO_BOX
)
17776 if (face
->box_line_width
> 0)
17778 it
->ascent
+= face
->box_line_width
;
17779 it
->descent
+= face
->box_line_width
;
17782 if (it
->start_of_box_run_p
)
17783 it
->pixel_width
+= abs (face
->box_line_width
);
17784 if (it
->end_of_box_run_p
)
17785 it
->pixel_width
+= abs (face
->box_line_width
);
17788 take_vertical_position_into_account (it
);
17792 Produce glyphs/get display metrics for the display element IT is
17793 loaded with. See the description of struct display_iterator in
17794 dispextern.h for an overview of struct display_iterator. */
17797 x_produce_glyphs (it
)
17800 it
->glyph_not_available_p
= 0;
17802 if (it
->what
== IT_CHARACTER
)
17806 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
17808 int font_not_found_p
;
17809 struct font_info
*font_info
;
17810 int boff
; /* baseline offset */
17811 /* We may change it->multibyte_p upon unibyte<->multibyte
17812 conversion. So, save the current value now and restore it
17815 Note: It seems that we don't have to record multibyte_p in
17816 struct glyph because the character code itself tells if or
17817 not the character is multibyte. Thus, in the future, we must
17818 consider eliminating the field `multibyte_p' in the struct
17820 int saved_multibyte_p
= it
->multibyte_p
;
17822 /* Maybe translate single-byte characters to multibyte, or the
17824 it
->char_to_display
= it
->c
;
17825 if (!ASCII_BYTE_P (it
->c
))
17827 if (unibyte_display_via_language_environment
17828 && SINGLE_BYTE_CHAR_P (it
->c
)
17830 || !NILP (Vnonascii_translation_table
)))
17832 it
->char_to_display
= unibyte_char_to_multibyte (it
->c
);
17833 it
->multibyte_p
= 1;
17834 it
->face_id
= FACE_FOR_CHAR (it
->f
, face
, it
->char_to_display
);
17835 face
= FACE_FROM_ID (it
->f
, it
->face_id
);
17837 else if (!SINGLE_BYTE_CHAR_P (it
->c
)
17838 && !it
->multibyte_p
)
17840 it
->multibyte_p
= 1;
17841 it
->face_id
= FACE_FOR_CHAR (it
->f
, face
, it
->char_to_display
);
17842 face
= FACE_FROM_ID (it
->f
, it
->face_id
);
17846 /* Get font to use. Encode IT->char_to_display. */
17847 get_char_face_and_encoding (it
->f
, it
->char_to_display
, it
->face_id
,
17848 &char2b
, it
->multibyte_p
, 0);
17851 /* When no suitable font found, use the default font. */
17852 font_not_found_p
= font
== NULL
;
17853 if (font_not_found_p
)
17855 font
= FRAME_FONT (it
->f
);
17856 boff
= FRAME_BASELINE_OFFSET (it
->f
);
17861 font_info
= FONT_INFO_FROM_ID (it
->f
, face
->font_info_id
);
17862 boff
= font_info
->baseline_offset
;
17863 if (font_info
->vertical_centering
)
17864 boff
= VCENTER_BASELINE_OFFSET (font
, it
->f
) - boff
;
17867 if (it
->char_to_display
>= ' '
17868 && (!it
->multibyte_p
|| it
->char_to_display
< 128))
17870 /* Either unibyte or ASCII. */
17875 pcm
= rif
->per_char_metric (font
, &char2b
,
17876 FONT_TYPE_FOR_UNIBYTE (font
, it
->char_to_display
));
17877 it
->ascent
= FONT_BASE (font
) + boff
;
17878 it
->descent
= FONT_DESCENT (font
) - boff
;
17882 it
->phys_ascent
= pcm
->ascent
+ boff
;
17883 it
->phys_descent
= pcm
->descent
- boff
;
17884 it
->pixel_width
= pcm
->width
;
17888 it
->glyph_not_available_p
= 1;
17889 it
->phys_ascent
= FONT_BASE (font
) + boff
;
17890 it
->phys_descent
= FONT_DESCENT (font
) - boff
;
17891 it
->pixel_width
= FONT_WIDTH (font
);
17894 /* If this is a space inside a region of text with
17895 `space-width' property, change its width. */
17896 stretched_p
= it
->char_to_display
== ' ' && !NILP (it
->space_width
);
17898 it
->pixel_width
*= XFLOATINT (it
->space_width
);
17900 /* If face has a box, add the box thickness to the character
17901 height. If character has a box line to the left and/or
17902 right, add the box line width to the character's width. */
17903 if (face
->box
!= FACE_NO_BOX
)
17905 int thick
= face
->box_line_width
;
17909 it
->ascent
+= thick
;
17910 it
->descent
+= thick
;
17915 if (it
->start_of_box_run_p
)
17916 it
->pixel_width
+= thick
;
17917 if (it
->end_of_box_run_p
)
17918 it
->pixel_width
+= thick
;
17921 /* If face has an overline, add the height of the overline
17922 (1 pixel) and a 1 pixel margin to the character height. */
17923 if (face
->overline_p
)
17926 take_vertical_position_into_account (it
);
17928 /* If we have to actually produce glyphs, do it. */
17933 /* Translate a space with a `space-width' property
17934 into a stretch glyph. */
17935 double ascent
= (double) FONT_BASE (font
)
17936 / FONT_HEIGHT (font
);
17937 append_stretch_glyph (it
, it
->object
, it
->pixel_width
,
17938 it
->ascent
+ it
->descent
, ascent
);
17943 /* If characters with lbearing or rbearing are displayed
17944 in this line, record that fact in a flag of the
17945 glyph row. This is used to optimize X output code. */
17946 if (pcm
&& (pcm
->lbearing
< 0 || pcm
->rbearing
> pcm
->width
))
17947 it
->glyph_row
->contains_overlapping_glyphs_p
= 1;
17950 else if (it
->char_to_display
== '\n')
17952 /* A newline has no width but we need the height of the line. */
17953 it
->pixel_width
= 0;
17955 it
->ascent
= it
->phys_ascent
= FONT_BASE (font
) + boff
;
17956 it
->descent
= it
->phys_descent
= FONT_DESCENT (font
) - boff
;
17958 if (face
->box
!= FACE_NO_BOX
17959 && face
->box_line_width
> 0)
17961 it
->ascent
+= face
->box_line_width
;
17962 it
->descent
+= face
->box_line_width
;
17965 else if (it
->char_to_display
== '\t')
17967 int tab_width
= it
->tab_width
* FRAME_COLUMN_WIDTH (it
->f
);
17968 int x
= it
->current_x
+ it
->continuation_lines_width
;
17969 int next_tab_x
= ((1 + x
+ tab_width
- 1) / tab_width
) * tab_width
;
17971 /* If the distance from the current position to the next tab
17972 stop is less than a canonical character width, use the
17973 tab stop after that. */
17974 if (next_tab_x
- x
< FRAME_COLUMN_WIDTH (it
->f
))
17975 next_tab_x
+= tab_width
;
17977 it
->pixel_width
= next_tab_x
- x
;
17979 it
->ascent
= it
->phys_ascent
= FONT_BASE (font
) + boff
;
17980 it
->descent
= it
->phys_descent
= FONT_DESCENT (font
) - boff
;
17984 double ascent
= (double) it
->ascent
/ (it
->ascent
+ it
->descent
);
17985 append_stretch_glyph (it
, it
->object
, it
->pixel_width
,
17986 it
->ascent
+ it
->descent
, ascent
);
17991 /* A multi-byte character. Assume that the display width of the
17992 character is the width of the character multiplied by the
17993 width of the font. */
17995 /* If we found a font, this font should give us the right
17996 metrics. If we didn't find a font, use the frame's
17997 default font and calculate the width of the character
17998 from the charset width; this is what old redisplay code
18001 pcm
= rif
->per_char_metric (font
, &char2b
,
18002 FONT_TYPE_FOR_MULTIBYTE (font
, it
->c
));
18004 if (font_not_found_p
|| !pcm
)
18006 int charset
= CHAR_CHARSET (it
->char_to_display
);
18008 it
->glyph_not_available_p
= 1;
18009 it
->pixel_width
= (FRAME_COLUMN_WIDTH (it
->f
)
18010 * CHARSET_WIDTH (charset
));
18011 it
->phys_ascent
= FONT_BASE (font
) + boff
;
18012 it
->phys_descent
= FONT_DESCENT (font
) - boff
;
18016 it
->pixel_width
= pcm
->width
;
18017 it
->phys_ascent
= pcm
->ascent
+ boff
;
18018 it
->phys_descent
= pcm
->descent
- boff
;
18020 && (pcm
->lbearing
< 0
18021 || pcm
->rbearing
> pcm
->width
))
18022 it
->glyph_row
->contains_overlapping_glyphs_p
= 1;
18025 it
->ascent
= FONT_BASE (font
) + boff
;
18026 it
->descent
= FONT_DESCENT (font
) - boff
;
18027 if (face
->box
!= FACE_NO_BOX
)
18029 int thick
= face
->box_line_width
;
18033 it
->ascent
+= thick
;
18034 it
->descent
+= thick
;
18039 if (it
->start_of_box_run_p
)
18040 it
->pixel_width
+= thick
;
18041 if (it
->end_of_box_run_p
)
18042 it
->pixel_width
+= thick
;
18045 /* If face has an overline, add the height of the overline
18046 (1 pixel) and a 1 pixel margin to the character height. */
18047 if (face
->overline_p
)
18050 take_vertical_position_into_account (it
);
18055 it
->multibyte_p
= saved_multibyte_p
;
18057 else if (it
->what
== IT_COMPOSITION
)
18059 /* Note: A composition is represented as one glyph in the
18060 glyph matrix. There are no padding glyphs. */
18063 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
18065 int font_not_found_p
;
18066 struct font_info
*font_info
;
18067 int boff
; /* baseline offset */
18068 struct composition
*cmp
= composition_table
[it
->cmp_id
];
18070 /* Maybe translate single-byte characters to multibyte. */
18071 it
->char_to_display
= it
->c
;
18072 if (unibyte_display_via_language_environment
18073 && SINGLE_BYTE_CHAR_P (it
->c
)
18076 && !NILP (Vnonascii_translation_table
))))
18078 it
->char_to_display
= unibyte_char_to_multibyte (it
->c
);
18081 /* Get face and font to use. Encode IT->char_to_display. */
18082 it
->face_id
= FACE_FOR_CHAR (it
->f
, face
, it
->char_to_display
);
18083 face
= FACE_FROM_ID (it
->f
, it
->face_id
);
18084 get_char_face_and_encoding (it
->f
, it
->char_to_display
, it
->face_id
,
18085 &char2b
, it
->multibyte_p
, 0);
18088 /* When no suitable font found, use the default font. */
18089 font_not_found_p
= font
== NULL
;
18090 if (font_not_found_p
)
18092 font
= FRAME_FONT (it
->f
);
18093 boff
= FRAME_BASELINE_OFFSET (it
->f
);
18098 font_info
= FONT_INFO_FROM_ID (it
->f
, face
->font_info_id
);
18099 boff
= font_info
->baseline_offset
;
18100 if (font_info
->vertical_centering
)
18101 boff
= VCENTER_BASELINE_OFFSET (font
, it
->f
) - boff
;
18104 /* There are no padding glyphs, so there is only one glyph to
18105 produce for the composition. Important is that pixel_width,
18106 ascent and descent are the values of what is drawn by
18107 draw_glyphs (i.e. the values of the overall glyphs composed). */
18110 /* If we have not yet calculated pixel size data of glyphs of
18111 the composition for the current face font, calculate them
18112 now. Theoretically, we have to check all fonts for the
18113 glyphs, but that requires much time and memory space. So,
18114 here we check only the font of the first glyph. This leads
18115 to incorrect display very rarely, and C-l (recenter) can
18116 correct the display anyway. */
18117 if (cmp
->font
!= (void *) font
)
18119 /* Ascent and descent of the font of the first character of
18120 this composition (adjusted by baseline offset). Ascent
18121 and descent of overall glyphs should not be less than
18122 them respectively. */
18123 int font_ascent
= FONT_BASE (font
) + boff
;
18124 int font_descent
= FONT_DESCENT (font
) - boff
;
18125 /* Bounding box of the overall glyphs. */
18126 int leftmost
, rightmost
, lowest
, highest
;
18127 int i
, width
, ascent
, descent
;
18129 cmp
->font
= (void *) font
;
18131 /* Initialize the bounding box. */
18133 && (pcm
= rif
->per_char_metric (font
, &char2b
,
18134 FONT_TYPE_FOR_MULTIBYTE (font
, it
->c
))))
18136 width
= pcm
->width
;
18137 ascent
= pcm
->ascent
;
18138 descent
= pcm
->descent
;
18142 width
= FONT_WIDTH (font
);
18143 ascent
= FONT_BASE (font
);
18144 descent
= FONT_DESCENT (font
);
18148 lowest
= - descent
+ boff
;
18149 highest
= ascent
+ boff
;
18153 && font_info
->default_ascent
18154 && CHAR_TABLE_P (Vuse_default_ascent
)
18155 && !NILP (Faref (Vuse_default_ascent
,
18156 make_number (it
->char_to_display
))))
18157 highest
= font_info
->default_ascent
+ boff
;
18159 /* Draw the first glyph at the normal position. It may be
18160 shifted to right later if some other glyphs are drawn at
18162 cmp
->offsets
[0] = 0;
18163 cmp
->offsets
[1] = boff
;
18165 /* Set cmp->offsets for the remaining glyphs. */
18166 for (i
= 1; i
< cmp
->glyph_len
; i
++)
18168 int left
, right
, btm
, top
;
18169 int ch
= COMPOSITION_GLYPH (cmp
, i
);
18170 int face_id
= FACE_FOR_CHAR (it
->f
, face
, ch
);
18172 face
= FACE_FROM_ID (it
->f
, face_id
);
18173 get_char_face_and_encoding (it
->f
, ch
, face
->id
,
18174 &char2b
, it
->multibyte_p
, 0);
18178 font
= FRAME_FONT (it
->f
);
18179 boff
= FRAME_BASELINE_OFFSET (it
->f
);
18185 = FONT_INFO_FROM_ID (it
->f
, face
->font_info_id
);
18186 boff
= font_info
->baseline_offset
;
18187 if (font_info
->vertical_centering
)
18188 boff
= VCENTER_BASELINE_OFFSET (font
, it
->f
) - boff
;
18192 && (pcm
= rif
->per_char_metric (font
, &char2b
,
18193 FONT_TYPE_FOR_MULTIBYTE (font
, ch
))))
18195 width
= pcm
->width
;
18196 ascent
= pcm
->ascent
;
18197 descent
= pcm
->descent
;
18201 width
= FONT_WIDTH (font
);
18206 if (cmp
->method
!= COMPOSITION_WITH_RULE_ALTCHARS
)
18208 /* Relative composition with or without
18209 alternate chars. */
18210 left
= (leftmost
+ rightmost
- width
) / 2;
18211 btm
= - descent
+ boff
;
18212 if (font_info
&& font_info
->relative_compose
18213 && (! CHAR_TABLE_P (Vignore_relative_composition
)
18214 || NILP (Faref (Vignore_relative_composition
,
18215 make_number (ch
)))))
18218 if (- descent
>= font_info
->relative_compose
)
18219 /* One extra pixel between two glyphs. */
18221 else if (ascent
<= 0)
18222 /* One extra pixel between two glyphs. */
18223 btm
= lowest
- 1 - ascent
- descent
;
18228 /* A composition rule is specified by an integer
18229 value that encodes global and new reference
18230 points (GREF and NREF). GREF and NREF are
18231 specified by numbers as below:
18233 0---1---2 -- ascent
18237 9--10--11 -- center
18239 ---3---4---5--- baseline
18241 6---7---8 -- descent
18243 int rule
= COMPOSITION_RULE (cmp
, i
);
18244 int gref
, nref
, grefx
, grefy
, nrefx
, nrefy
;
18246 COMPOSITION_DECODE_RULE (rule
, gref
, nref
);
18247 grefx
= gref
% 3, nrefx
= nref
% 3;
18248 grefy
= gref
/ 3, nrefy
= nref
/ 3;
18251 + grefx
* (rightmost
- leftmost
) / 2
18252 - nrefx
* width
/ 2);
18253 btm
= ((grefy
== 0 ? highest
18255 : grefy
== 2 ? lowest
18256 : (highest
+ lowest
) / 2)
18257 - (nrefy
== 0 ? ascent
+ descent
18258 : nrefy
== 1 ? descent
- boff
18260 : (ascent
+ descent
) / 2));
18263 cmp
->offsets
[i
* 2] = left
;
18264 cmp
->offsets
[i
* 2 + 1] = btm
+ descent
;
18266 /* Update the bounding box of the overall glyphs. */
18267 right
= left
+ width
;
18268 top
= btm
+ descent
+ ascent
;
18269 if (left
< leftmost
)
18271 if (right
> rightmost
)
18279 /* If there are glyphs whose x-offsets are negative,
18280 shift all glyphs to the right and make all x-offsets
18284 for (i
= 0; i
< cmp
->glyph_len
; i
++)
18285 cmp
->offsets
[i
* 2] -= leftmost
;
18286 rightmost
-= leftmost
;
18289 cmp
->pixel_width
= rightmost
;
18290 cmp
->ascent
= highest
;
18291 cmp
->descent
= - lowest
;
18292 if (cmp
->ascent
< font_ascent
)
18293 cmp
->ascent
= font_ascent
;
18294 if (cmp
->descent
< font_descent
)
18295 cmp
->descent
= font_descent
;
18298 it
->pixel_width
= cmp
->pixel_width
;
18299 it
->ascent
= it
->phys_ascent
= cmp
->ascent
;
18300 it
->descent
= it
->phys_descent
= cmp
->descent
;
18302 if (face
->box
!= FACE_NO_BOX
)
18304 int thick
= face
->box_line_width
;
18308 it
->ascent
+= thick
;
18309 it
->descent
+= thick
;
18314 if (it
->start_of_box_run_p
)
18315 it
->pixel_width
+= thick
;
18316 if (it
->end_of_box_run_p
)
18317 it
->pixel_width
+= thick
;
18320 /* If face has an overline, add the height of the overline
18321 (1 pixel) and a 1 pixel margin to the character height. */
18322 if (face
->overline_p
)
18325 take_vertical_position_into_account (it
);
18328 append_composite_glyph (it
);
18330 else if (it
->what
== IT_IMAGE
)
18331 produce_image_glyph (it
);
18332 else if (it
->what
== IT_STRETCH
)
18333 produce_stretch_glyph (it
);
18335 /* Accumulate dimensions. Note: can't assume that it->descent > 0
18336 because this isn't true for images with `:ascent 100'. */
18337 xassert (it
->ascent
>= 0 && it
->descent
>= 0);
18338 if (it
->area
== TEXT_AREA
)
18339 it
->current_x
+= it
->pixel_width
;
18341 it
->descent
+= it
->extra_line_spacing
;
18343 it
->max_ascent
= max (it
->max_ascent
, it
->ascent
);
18344 it
->max_descent
= max (it
->max_descent
, it
->descent
);
18345 it
->max_phys_ascent
= max (it
->max_phys_ascent
, it
->phys_ascent
);
18346 it
->max_phys_descent
= max (it
->max_phys_descent
, it
->phys_descent
);
18350 Output LEN glyphs starting at START at the nominal cursor position.
18351 Advance the nominal cursor over the text. The global variable
18352 updated_window contains the window being updated, updated_row is
18353 the glyph row being updated, and updated_area is the area of that
18354 row being updated. */
18357 x_write_glyphs (start
, len
)
18358 struct glyph
*start
;
18363 xassert (updated_window
&& updated_row
);
18366 /* Write glyphs. */
18368 hpos
= start
- updated_row
->glyphs
[updated_area
];
18369 x
= draw_glyphs (updated_window
, output_cursor
.x
,
18370 updated_row
, updated_area
,
18372 DRAW_NORMAL_TEXT
, 0);
18374 /* Invalidate old phys cursor if the glyph at its hpos is redrawn. */
18375 if (updated_area
== TEXT_AREA
18376 && updated_window
->phys_cursor_on_p
18377 && updated_window
->phys_cursor
.vpos
== output_cursor
.vpos
18378 && updated_window
->phys_cursor
.hpos
>= hpos
18379 && updated_window
->phys_cursor
.hpos
< hpos
+ len
)
18380 updated_window
->phys_cursor_on_p
= 0;
18384 /* Advance the output cursor. */
18385 output_cursor
.hpos
+= len
;
18386 output_cursor
.x
= x
;
18391 Insert LEN glyphs from START at the nominal cursor position. */
18394 x_insert_glyphs (start
, len
)
18395 struct glyph
*start
;
18400 int line_height
, shift_by_width
, shifted_region_width
;
18401 struct glyph_row
*row
;
18402 struct glyph
*glyph
;
18403 int frame_x
, frame_y
, hpos
;
18405 xassert (updated_window
&& updated_row
);
18407 w
= updated_window
;
18408 f
= XFRAME (WINDOW_FRAME (w
));
18410 /* Get the height of the line we are in. */
18412 line_height
= row
->height
;
18414 /* Get the width of the glyphs to insert. */
18415 shift_by_width
= 0;
18416 for (glyph
= start
; glyph
< start
+ len
; ++glyph
)
18417 shift_by_width
+= glyph
->pixel_width
;
18419 /* Get the width of the region to shift right. */
18420 shifted_region_width
= (window_box_width (w
, updated_area
)
18425 frame_x
= window_box_left (w
, updated_area
) + output_cursor
.x
;
18426 frame_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, output_cursor
.y
);
18428 rif
->shift_glyphs_for_insert (f
, frame_x
, frame_y
, shifted_region_width
,
18429 line_height
, shift_by_width
);
18431 /* Write the glyphs. */
18432 hpos
= start
- row
->glyphs
[updated_area
];
18433 draw_glyphs (w
, output_cursor
.x
, row
, updated_area
,
18435 DRAW_NORMAL_TEXT
, 0);
18437 /* Advance the output cursor. */
18438 output_cursor
.hpos
+= len
;
18439 output_cursor
.x
+= shift_by_width
;
18445 Erase the current text line from the nominal cursor position
18446 (inclusive) to pixel column TO_X (exclusive). The idea is that
18447 everything from TO_X onward is already erased.
18449 TO_X is a pixel position relative to updated_area of
18450 updated_window. TO_X == -1 means clear to the end of this area. */
18453 x_clear_end_of_line (to_x
)
18457 struct window
*w
= updated_window
;
18458 int max_x
, min_y
, max_y
;
18459 int from_x
, from_y
, to_y
;
18461 xassert (updated_window
&& updated_row
);
18462 f
= XFRAME (w
->frame
);
18464 if (updated_row
->full_width_p
)
18465 max_x
= WINDOW_TOTAL_WIDTH (w
);
18467 max_x
= window_box_width (w
, updated_area
);
18468 max_y
= window_text_bottom_y (w
);
18470 /* TO_X == 0 means don't do anything. TO_X < 0 means clear to end
18471 of window. For TO_X > 0, truncate to end of drawing area. */
18477 to_x
= min (to_x
, max_x
);
18479 to_y
= min (max_y
, output_cursor
.y
+ updated_row
->height
);
18481 /* Notice if the cursor will be cleared by this operation. */
18482 if (!updated_row
->full_width_p
)
18483 notice_overwritten_cursor (w
, updated_area
,
18484 output_cursor
.x
, -1,
18486 MATRIX_ROW_BOTTOM_Y (updated_row
));
18488 from_x
= output_cursor
.x
;
18490 /* Translate to frame coordinates. */
18491 if (updated_row
->full_width_p
)
18493 from_x
= WINDOW_TO_FRAME_PIXEL_X (w
, from_x
);
18494 to_x
= WINDOW_TO_FRAME_PIXEL_X (w
, to_x
);
18498 int area_left
= window_box_left (w
, updated_area
);
18499 from_x
+= area_left
;
18503 min_y
= WINDOW_HEADER_LINE_HEIGHT (w
);
18504 from_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, max (min_y
, output_cursor
.y
));
18505 to_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, to_y
);
18507 /* Prevent inadvertently clearing to end of the X window. */
18508 if (to_x
> from_x
&& to_y
> from_y
)
18511 rif
->clear_frame_area (f
, from_x
, from_y
,
18512 to_x
- from_x
, to_y
- from_y
);
18517 #endif /* HAVE_WINDOW_SYSTEM */
18521 /***********************************************************************
18523 ***********************************************************************/
18525 /* Value is the internal representation of the specified cursor type
18526 ARG. If type is BAR_CURSOR, return in *WIDTH the specified width
18527 of the bar cursor. */
18529 enum text_cursor_kinds
18530 get_specified_cursor_type (arg
, width
)
18534 enum text_cursor_kinds type
;
18539 if (EQ (arg
, Qbox
))
18540 return FILLED_BOX_CURSOR
;
18542 if (EQ (arg
, Qhollow
))
18543 return HOLLOW_BOX_CURSOR
;
18545 if (EQ (arg
, Qbar
))
18552 && EQ (XCAR (arg
), Qbar
)
18553 && INTEGERP (XCDR (arg
))
18554 && XINT (XCDR (arg
)) >= 0)
18556 *width
= XINT (XCDR (arg
));
18560 if (EQ (arg
, Qhbar
))
18563 return HBAR_CURSOR
;
18567 && EQ (XCAR (arg
), Qhbar
)
18568 && INTEGERP (XCDR (arg
))
18569 && XINT (XCDR (arg
)) >= 0)
18571 *width
= XINT (XCDR (arg
));
18572 return HBAR_CURSOR
;
18575 /* Treat anything unknown as "hollow box cursor".
18576 It was bad to signal an error; people have trouble fixing
18577 .Xdefaults with Emacs, when it has something bad in it. */
18578 type
= HOLLOW_BOX_CURSOR
;
18583 /* Set the default cursor types for specified frame. */
18585 set_frame_cursor_types (f
, arg
)
18592 FRAME_DESIRED_CURSOR (f
) = get_specified_cursor_type (arg
, &width
);
18593 FRAME_CURSOR_WIDTH (f
) = width
;
18595 /* By default, set up the blink-off state depending on the on-state. */
18597 tem
= Fassoc (arg
, Vblink_cursor_alist
);
18600 FRAME_BLINK_OFF_CURSOR (f
)
18601 = get_specified_cursor_type (XCDR (tem
), &width
);
18602 FRAME_BLINK_OFF_CURSOR_WIDTH (f
) = width
;
18605 FRAME_BLINK_OFF_CURSOR (f
) = DEFAULT_CURSOR
;
18609 /* Return the cursor we want to be displayed in window W. Return
18610 width of bar/hbar cursor through WIDTH arg. Return with
18611 ACTIVE_CURSOR arg set to 1 if cursor in window W is `active'
18612 (i.e. if the `system caret' should track this cursor).
18614 In a mini-buffer window, we want the cursor only to appear if we
18615 are reading input from this window. For the selected window, we
18616 want the cursor type given by the frame parameter or buffer local
18617 setting of cursor-type. If explicitly marked off, draw no cursor.
18618 In all other cases, we want a hollow box cursor. */
18620 enum text_cursor_kinds
18621 get_window_cursor_type (w
, width
, active_cursor
)
18624 int *active_cursor
;
18626 struct frame
*f
= XFRAME (w
->frame
);
18627 struct buffer
*b
= XBUFFER (w
->buffer
);
18628 int cursor_type
= DEFAULT_CURSOR
;
18629 Lisp_Object alt_cursor
;
18630 int non_selected
= 0;
18632 *active_cursor
= 1;
18635 if (cursor_in_echo_area
18636 && FRAME_HAS_MINIBUF_P (f
)
18637 && EQ (FRAME_MINIBUF_WINDOW (f
), echo_area_window
))
18639 if (w
== XWINDOW (echo_area_window
))
18641 *width
= FRAME_CURSOR_WIDTH (f
);
18642 return FRAME_DESIRED_CURSOR (f
);
18645 *active_cursor
= 0;
18649 /* Nonselected window or nonselected frame. */
18650 else if (w
!= XWINDOW (f
->selected_window
)
18651 #ifdef HAVE_WINDOW_SYSTEM
18652 || f
!= FRAME_X_DISPLAY_INFO (f
)->x_highlight_frame
18656 *active_cursor
= 0;
18658 if (MINI_WINDOW_P (w
) && minibuf_level
== 0)
18664 /* Never display a cursor in a window in which cursor-type is nil. */
18665 if (NILP (b
->cursor_type
))
18668 /* Use cursor-in-non-selected-windows for non-selected window or frame. */
18671 alt_cursor
= Fbuffer_local_value (Qcursor_in_non_selected_windows
, w
->buffer
);
18672 return get_specified_cursor_type (alt_cursor
, width
);
18675 /* Get the normal cursor type for this window. */
18676 if (EQ (b
->cursor_type
, Qt
))
18678 cursor_type
= FRAME_DESIRED_CURSOR (f
);
18679 *width
= FRAME_CURSOR_WIDTH (f
);
18682 cursor_type
= get_specified_cursor_type (b
->cursor_type
, width
);
18684 /* Use normal cursor if not blinked off. */
18685 if (!w
->cursor_off_p
)
18686 return cursor_type
;
18688 /* Cursor is blinked off, so determine how to "toggle" it. */
18690 /* First look for an entry matching the buffer's cursor-type in blink-cursor-alist. */
18691 if ((alt_cursor
= Fassoc (b
->cursor_type
, Vblink_cursor_alist
), !NILP (alt_cursor
)))
18692 return get_specified_cursor_type (XCDR (alt_cursor
), width
);
18694 /* Then see if frame has specified a specific blink off cursor type. */
18695 if (FRAME_BLINK_OFF_CURSOR (f
) != DEFAULT_CURSOR
)
18697 *width
= FRAME_BLINK_OFF_CURSOR_WIDTH (f
);
18698 return FRAME_BLINK_OFF_CURSOR (f
);
18701 /* Finally perform built-in cursor blinking:
18702 filled box <-> hollow box
18703 wide [h]bar <-> narrow [h]bar
18704 narrow [h]bar <-> no cursor
18705 other type <-> no cursor */
18707 if (cursor_type
== FILLED_BOX_CURSOR
)
18708 return HOLLOW_BOX_CURSOR
;
18710 if ((cursor_type
== BAR_CURSOR
|| cursor_type
== HBAR_CURSOR
) && *width
> 1)
18713 return cursor_type
;
18720 #ifdef HAVE_WINDOW_SYSTEM
18722 /* Notice when the text cursor of window W has been completely
18723 overwritten by a drawing operation that outputs glyphs in AREA
18724 starting at X0 and ending at X1 in the line starting at Y0 and
18725 ending at Y1. X coordinates are area-relative. X1 < 0 means all
18726 the rest of the line after X0 has been written. Y coordinates
18727 are window-relative. */
18730 notice_overwritten_cursor (w
, area
, x0
, x1
, y0
, y1
)
18732 enum glyph_row_area area
;
18733 int x0
, y0
, x1
, y1
;
18735 if (area
== TEXT_AREA
&& w
->phys_cursor_on_p
)
18737 int cx0
= w
->phys_cursor
.x
;
18738 int cx1
= cx0
+ w
->phys_cursor_width
;
18739 int cy0
= w
->phys_cursor
.y
;
18740 int cy1
= cy0
+ w
->phys_cursor_height
;
18742 if (x0
<= cx0
&& (x1
< 0 || x1
>= cx1
))
18744 /* The cursor image will be completely removed from the
18745 screen if the output area intersects the cursor area in
18746 y-direction. When we draw in [y0 y1[, and some part of
18747 the cursor is at y < y0, that part must have been drawn
18748 before. When scrolling, the cursor is erased before
18749 actually scrolling, so we don't come here. When not
18750 scrolling, the rows above the old cursor row must have
18751 changed, and in this case these rows must have written
18752 over the cursor image.
18754 Likewise if part of the cursor is below y1, with the
18755 exception of the cursor being in the first blank row at
18756 the buffer and window end because update_text_area
18757 doesn't draw that row. (Except when it does, but
18758 that's handled in update_text_area.) */
18760 if (((y0
>= cy0
&& y0
< cy1
) || (y1
> cy0
&& y1
< cy1
))
18761 && w
->current_matrix
->rows
[w
->phys_cursor
.vpos
].displays_text_p
)
18762 w
->phys_cursor_on_p
= 0;
18767 #endif /* HAVE_WINDOW_SYSTEM */
18770 /************************************************************************
18772 ************************************************************************/
18774 #ifdef HAVE_WINDOW_SYSTEM
18777 Fix the display of area AREA of overlapping row ROW in window W. */
18780 x_fix_overlapping_area (w
, row
, area
)
18782 struct glyph_row
*row
;
18783 enum glyph_row_area area
;
18789 x
= window_box_left_offset (w
, area
);
18790 if (area
== TEXT_AREA
)
18793 for (i
= 0; i
< row
->used
[area
];)
18795 if (row
->glyphs
[area
][i
].overlaps_vertically_p
)
18797 int start
= i
, start_x
= x
;
18801 x
+= row
->glyphs
[area
][i
].pixel_width
;
18804 while (i
< row
->used
[area
]
18805 && row
->glyphs
[area
][i
].overlaps_vertically_p
);
18807 draw_glyphs (w
, start_x
, row
, area
,
18809 DRAW_NORMAL_TEXT
, 1);
18813 x
+= row
->glyphs
[area
][i
].pixel_width
;
18823 Draw the cursor glyph of window W in glyph row ROW. See the
18824 comment of draw_glyphs for the meaning of HL. */
18827 draw_phys_cursor_glyph (w
, row
, hl
)
18829 struct glyph_row
*row
;
18830 enum draw_glyphs_face hl
;
18832 /* If cursor hpos is out of bounds, don't draw garbage. This can
18833 happen in mini-buffer windows when switching between echo area
18834 glyphs and mini-buffer. */
18835 if (w
->phys_cursor
.hpos
< row
->used
[TEXT_AREA
])
18837 int on_p
= w
->phys_cursor_on_p
;
18839 x1
= draw_glyphs (w
, w
->phys_cursor
.x
, row
, TEXT_AREA
,
18840 w
->phys_cursor
.hpos
, w
->phys_cursor
.hpos
+ 1,
18842 w
->phys_cursor_on_p
= on_p
;
18844 if (hl
== DRAW_CURSOR
)
18845 w
->phys_cursor_width
= x1
- w
->phys_cursor
.x
;
18846 /* When we erase the cursor, and ROW is overlapped by other
18847 rows, make sure that these overlapping parts of other rows
18849 else if (hl
== DRAW_NORMAL_TEXT
&& row
->overlapped_p
)
18851 if (row
> w
->current_matrix
->rows
18852 && MATRIX_ROW_OVERLAPS_SUCC_P (row
- 1))
18853 x_fix_overlapping_area (w
, row
- 1, TEXT_AREA
);
18855 if (MATRIX_ROW_BOTTOM_Y (row
) < window_text_bottom_y (w
)
18856 && MATRIX_ROW_OVERLAPS_PRED_P (row
+ 1))
18857 x_fix_overlapping_area (w
, row
+ 1, TEXT_AREA
);
18864 Erase the image of a cursor of window W from the screen. */
18867 erase_phys_cursor (w
)
18870 struct frame
*f
= XFRAME (w
->frame
);
18871 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
18872 int hpos
= w
->phys_cursor
.hpos
;
18873 int vpos
= w
->phys_cursor
.vpos
;
18874 int mouse_face_here_p
= 0;
18875 struct glyph_matrix
*active_glyphs
= w
->current_matrix
;
18876 struct glyph_row
*cursor_row
;
18877 struct glyph
*cursor_glyph
;
18878 enum draw_glyphs_face hl
;
18880 /* No cursor displayed or row invalidated => nothing to do on the
18882 if (w
->phys_cursor_type
== NO_CURSOR
)
18883 goto mark_cursor_off
;
18885 /* VPOS >= active_glyphs->nrows means that window has been resized.
18886 Don't bother to erase the cursor. */
18887 if (vpos
>= active_glyphs
->nrows
)
18888 goto mark_cursor_off
;
18890 /* If row containing cursor is marked invalid, there is nothing we
18892 cursor_row
= MATRIX_ROW (active_glyphs
, vpos
);
18893 if (!cursor_row
->enabled_p
)
18894 goto mark_cursor_off
;
18896 /* If row is completely invisible, don't attempt to delete a cursor which
18897 isn't there. This can happen if cursor is at top of a window, and
18898 we switch to a buffer with a header line in that window. */
18899 if (cursor_row
->visible_height
<= 0)
18900 goto mark_cursor_off
;
18902 /* This can happen when the new row is shorter than the old one.
18903 In this case, either draw_glyphs or clear_end_of_line
18904 should have cleared the cursor. Note that we wouldn't be
18905 able to erase the cursor in this case because we don't have a
18906 cursor glyph at hand. */
18907 if (w
->phys_cursor
.hpos
>= cursor_row
->used
[TEXT_AREA
])
18908 goto mark_cursor_off
;
18910 /* If the cursor is in the mouse face area, redisplay that when
18911 we clear the cursor. */
18912 if (! NILP (dpyinfo
->mouse_face_window
)
18913 && w
== XWINDOW (dpyinfo
->mouse_face_window
)
18914 && (vpos
> dpyinfo
->mouse_face_beg_row
18915 || (vpos
== dpyinfo
->mouse_face_beg_row
18916 && hpos
>= dpyinfo
->mouse_face_beg_col
))
18917 && (vpos
< dpyinfo
->mouse_face_end_row
18918 || (vpos
== dpyinfo
->mouse_face_end_row
18919 && hpos
< dpyinfo
->mouse_face_end_col
))
18920 /* Don't redraw the cursor's spot in mouse face if it is at the
18921 end of a line (on a newline). The cursor appears there, but
18922 mouse highlighting does not. */
18923 && cursor_row
->used
[TEXT_AREA
] > hpos
)
18924 mouse_face_here_p
= 1;
18926 /* Maybe clear the display under the cursor. */
18927 if (w
->phys_cursor_type
== HOLLOW_BOX_CURSOR
)
18930 int header_line_height
= WINDOW_HEADER_LINE_HEIGHT (w
);
18932 cursor_glyph
= get_phys_cursor_glyph (w
);
18933 if (cursor_glyph
== NULL
)
18934 goto mark_cursor_off
;
18936 x
= WINDOW_TEXT_TO_FRAME_PIXEL_X (w
, w
->phys_cursor
.x
);
18937 y
= WINDOW_TO_FRAME_PIXEL_Y (w
, max (header_line_height
, cursor_row
->y
));
18939 rif
->clear_frame_area (f
, x
, y
,
18940 cursor_glyph
->pixel_width
, cursor_row
->visible_height
);
18943 /* Erase the cursor by redrawing the character underneath it. */
18944 if (mouse_face_here_p
)
18945 hl
= DRAW_MOUSE_FACE
;
18947 hl
= DRAW_NORMAL_TEXT
;
18948 draw_phys_cursor_glyph (w
, cursor_row
, hl
);
18951 w
->phys_cursor_on_p
= 0;
18952 w
->phys_cursor_type
= NO_CURSOR
;
18957 Display or clear cursor of window W. If ON is zero, clear the
18958 cursor. If it is non-zero, display the cursor. If ON is nonzero,
18959 where to put the cursor is specified by HPOS, VPOS, X and Y. */
18962 display_and_set_cursor (w
, on
, hpos
, vpos
, x
, y
)
18964 int on
, hpos
, vpos
, x
, y
;
18966 struct frame
*f
= XFRAME (w
->frame
);
18967 int new_cursor_type
;
18968 int new_cursor_width
;
18970 struct glyph_matrix
*current_glyphs
;
18971 struct glyph_row
*glyph_row
;
18972 struct glyph
*glyph
;
18974 /* This is pointless on invisible frames, and dangerous on garbaged
18975 windows and frames; in the latter case, the frame or window may
18976 be in the midst of changing its size, and x and y may be off the
18978 if (! FRAME_VISIBLE_P (f
)
18979 || FRAME_GARBAGED_P (f
)
18980 || vpos
>= w
->current_matrix
->nrows
18981 || hpos
>= w
->current_matrix
->matrix_w
)
18984 /* If cursor is off and we want it off, return quickly. */
18985 if (!on
&& !w
->phys_cursor_on_p
)
18988 current_glyphs
= w
->current_matrix
;
18989 glyph_row
= MATRIX_ROW (current_glyphs
, vpos
);
18990 glyph
= glyph_row
->glyphs
[TEXT_AREA
] + hpos
;
18992 /* If cursor row is not enabled, we don't really know where to
18993 display the cursor. */
18994 if (!glyph_row
->enabled_p
)
18996 w
->phys_cursor_on_p
= 0;
19000 xassert (interrupt_input_blocked
);
19002 /* Set new_cursor_type to the cursor we want to be displayed. */
19003 new_cursor_type
= get_window_cursor_type (w
, &new_cursor_width
, &active_cursor
);
19005 /* If cursor is currently being shown and we don't want it to be or
19006 it is in the wrong place, or the cursor type is not what we want,
19008 if (w
->phys_cursor_on_p
19010 || w
->phys_cursor
.x
!= x
19011 || w
->phys_cursor
.y
!= y
19012 || new_cursor_type
!= w
->phys_cursor_type
19013 || ((new_cursor_type
== BAR_CURSOR
|| new_cursor_type
== HBAR_CURSOR
)
19014 && new_cursor_width
!= w
->phys_cursor_width
)))
19015 erase_phys_cursor (w
);
19017 /* Don't check phys_cursor_on_p here because that flag is only set
19018 to zero in some cases where we know that the cursor has been
19019 completely erased, to avoid the extra work of erasing the cursor
19020 twice. In other words, phys_cursor_on_p can be 1 and the cursor
19021 still not be visible, or it has only been partly erased. */
19024 w
->phys_cursor_ascent
= glyph_row
->ascent
;
19025 w
->phys_cursor_height
= glyph_row
->height
;
19027 /* Set phys_cursor_.* before x_draw_.* is called because some
19028 of them may need the information. */
19029 w
->phys_cursor
.x
= x
;
19030 w
->phys_cursor
.y
= glyph_row
->y
;
19031 w
->phys_cursor
.hpos
= hpos
;
19032 w
->phys_cursor
.vpos
= vpos
;
19035 rif
->draw_window_cursor (w
, glyph_row
, x
, y
,
19036 new_cursor_type
, new_cursor_width
,
19037 on
, active_cursor
);
19041 /* Switch the display of W's cursor on or off, according to the value
19045 update_window_cursor (w
, on
)
19049 /* Don't update cursor in windows whose frame is in the process
19050 of being deleted. */
19051 if (w
->current_matrix
)
19054 display_and_set_cursor (w
, on
, w
->phys_cursor
.hpos
, w
->phys_cursor
.vpos
,
19055 w
->phys_cursor
.x
, w
->phys_cursor
.y
);
19061 /* Call update_window_cursor with parameter ON_P on all leaf windows
19062 in the window tree rooted at W. */
19065 update_cursor_in_window_tree (w
, on_p
)
19071 if (!NILP (w
->hchild
))
19072 update_cursor_in_window_tree (XWINDOW (w
->hchild
), on_p
);
19073 else if (!NILP (w
->vchild
))
19074 update_cursor_in_window_tree (XWINDOW (w
->vchild
), on_p
);
19076 update_window_cursor (w
, on_p
);
19078 w
= NILP (w
->next
) ? 0 : XWINDOW (w
->next
);
19084 Display the cursor on window W, or clear it, according to ON_P.
19085 Don't change the cursor's position. */
19088 x_update_cursor (f
, on_p
)
19092 update_cursor_in_window_tree (XWINDOW (f
->root_window
), on_p
);
19097 Clear the cursor of window W to background color, and mark the
19098 cursor as not shown. This is used when the text where the cursor
19099 is is about to be rewritten. */
19105 if (FRAME_VISIBLE_P (XFRAME (w
->frame
)) && w
->phys_cursor_on_p
)
19106 update_window_cursor (w
, 0);
19111 Display the active region described by mouse_face_* according to DRAW. */
19114 show_mouse_face (dpyinfo
, draw
)
19115 Display_Info
*dpyinfo
;
19116 enum draw_glyphs_face draw
;
19118 struct window
*w
= XWINDOW (dpyinfo
->mouse_face_window
);
19119 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
19121 if (/* If window is in the process of being destroyed, don't bother
19123 w
->current_matrix
!= NULL
19124 /* Don't update mouse highlight if hidden */
19125 && (draw
!= DRAW_MOUSE_FACE
|| !dpyinfo
->mouse_face_hidden
)
19126 /* Recognize when we are called to operate on rows that don't exist
19127 anymore. This can happen when a window is split. */
19128 && dpyinfo
->mouse_face_end_row
< w
->current_matrix
->nrows
)
19130 int phys_cursor_on_p
= w
->phys_cursor_on_p
;
19131 struct glyph_row
*row
, *first
, *last
;
19133 first
= MATRIX_ROW (w
->current_matrix
, dpyinfo
->mouse_face_beg_row
);
19134 last
= MATRIX_ROW (w
->current_matrix
, dpyinfo
->mouse_face_end_row
);
19136 for (row
= first
; row
<= last
&& row
->enabled_p
; ++row
)
19138 int start_hpos
, end_hpos
, start_x
;
19140 /* For all but the first row, the highlight starts at column 0. */
19143 start_hpos
= dpyinfo
->mouse_face_beg_col
;
19144 start_x
= dpyinfo
->mouse_face_beg_x
;
19153 end_hpos
= dpyinfo
->mouse_face_end_col
;
19155 end_hpos
= row
->used
[TEXT_AREA
];
19157 if (end_hpos
> start_hpos
)
19159 draw_glyphs (w
, start_x
, row
, TEXT_AREA
,
19160 start_hpos
, end_hpos
,
19164 = draw
== DRAW_MOUSE_FACE
|| draw
== DRAW_IMAGE_RAISED
;
19168 /* When we've written over the cursor, arrange for it to
19169 be displayed again. */
19170 if (phys_cursor_on_p
&& !w
->phys_cursor_on_p
)
19173 display_and_set_cursor (w
, 1,
19174 w
->phys_cursor
.hpos
, w
->phys_cursor
.vpos
,
19175 w
->phys_cursor
.x
, w
->phys_cursor
.y
);
19180 /* Change the mouse cursor. */
19181 if (draw
== DRAW_NORMAL_TEXT
)
19182 rif
->define_frame_cursor (f
, FRAME_X_OUTPUT (f
)->text_cursor
);
19183 else if (draw
== DRAW_MOUSE_FACE
)
19184 rif
->define_frame_cursor (f
, FRAME_X_OUTPUT (f
)->hand_cursor
);
19186 rif
->define_frame_cursor (f
, FRAME_X_OUTPUT (f
)->nontext_cursor
);
19190 Clear out the mouse-highlighted active region.
19191 Redraw it un-highlighted first. Value is non-zero if mouse
19192 face was actually drawn unhighlighted. */
19195 clear_mouse_face (dpyinfo
)
19196 Display_Info
*dpyinfo
;
19200 if (!NILP (dpyinfo
->mouse_face_window
))
19202 show_mouse_face (dpyinfo
, DRAW_NORMAL_TEXT
);
19206 dpyinfo
->mouse_face_beg_row
= dpyinfo
->mouse_face_beg_col
= -1;
19207 dpyinfo
->mouse_face_end_row
= dpyinfo
->mouse_face_end_col
= -1;
19208 dpyinfo
->mouse_face_window
= Qnil
;
19209 dpyinfo
->mouse_face_overlay
= Qnil
;
19215 Non-zero if physical cursor of window W is within mouse face. */
19218 cursor_in_mouse_face_p (w
)
19221 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (XFRAME (w
->frame
));
19222 int in_mouse_face
= 0;
19224 if (WINDOWP (dpyinfo
->mouse_face_window
)
19225 && XWINDOW (dpyinfo
->mouse_face_window
) == w
)
19227 int hpos
= w
->phys_cursor
.hpos
;
19228 int vpos
= w
->phys_cursor
.vpos
;
19230 if (vpos
>= dpyinfo
->mouse_face_beg_row
19231 && vpos
<= dpyinfo
->mouse_face_end_row
19232 && (vpos
> dpyinfo
->mouse_face_beg_row
19233 || hpos
>= dpyinfo
->mouse_face_beg_col
)
19234 && (vpos
< dpyinfo
->mouse_face_end_row
19235 || hpos
< dpyinfo
->mouse_face_end_col
19236 || dpyinfo
->mouse_face_past_end
))
19240 return in_mouse_face
;
19246 /* Find the glyph matrix position of buffer position CHARPOS in window
19247 *W. HPOS, *VPOS, *X, and *Y are set to the positions found. W's
19248 current glyphs must be up to date. If CHARPOS is above window
19249 start return (0, 0, 0, 0). If CHARPOS is after end of W, return end
19250 of last line in W. In the row containing CHARPOS, stop before glyphs
19251 having STOP as object. */
19253 #if 0 /* This is a version of fast_find_position that's more correct
19254 in the presence of hscrolling, for example. I didn't install
19255 it right away because the problem fixed is minor, it failed
19256 in 20.x as well, and I think it's too risky to install
19257 so near the release of 21.1. 2001-09-25 gerd. */
19260 fast_find_position (w
, charpos
, hpos
, vpos
, x
, y
, stop
)
19263 int *hpos
, *vpos
, *x
, *y
;
19266 struct glyph_row
*row
, *first
;
19267 struct glyph
*glyph
, *end
;
19268 int i
, past_end
= 0;
19270 first
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
19271 row
= row_containing_pos (w
, charpos
, first
, NULL
, 0);
19274 if (charpos
< MATRIX_ROW_START_CHARPOS (first
))
19276 *x
= *y
= *hpos
= *vpos
= 0;
19281 row
= MATRIX_ROW (w
->current_matrix
, XFASTINT (w
->window_end_vpos
));
19288 *vpos
= MATRIX_ROW_VPOS (row
, w
->current_matrix
);
19290 glyph
= row
->glyphs
[TEXT_AREA
];
19291 end
= glyph
+ row
->used
[TEXT_AREA
];
19293 /* Skip over glyphs not having an object at the start of the row.
19294 These are special glyphs like truncation marks on terminal
19296 if (row
->displays_text_p
)
19298 && INTEGERP (glyph
->object
)
19299 && !EQ (stop
, glyph
->object
)
19300 && glyph
->charpos
< 0)
19302 *x
+= glyph
->pixel_width
;
19307 && !INTEGERP (glyph
->object
)
19308 && !EQ (stop
, glyph
->object
)
19309 && (!BUFFERP (glyph
->object
)
19310 || glyph
->charpos
< charpos
))
19312 *x
+= glyph
->pixel_width
;
19316 *hpos
= glyph
- row
->glyphs
[TEXT_AREA
];
19323 fast_find_position (w
, pos
, hpos
, vpos
, x
, y
, stop
)
19326 int *hpos
, *vpos
, *x
, *y
;
19331 int maybe_next_line_p
= 0;
19332 int line_start_position
;
19333 int yb
= window_text_bottom_y (w
);
19334 struct glyph_row
*row
, *best_row
;
19335 int row_vpos
, best_row_vpos
;
19338 row
= best_row
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
19339 row_vpos
= best_row_vpos
= MATRIX_ROW_VPOS (row
, w
->current_matrix
);
19341 while (row
->y
< yb
)
19343 if (row
->used
[TEXT_AREA
])
19344 line_start_position
= row
->glyphs
[TEXT_AREA
]->charpos
;
19346 line_start_position
= 0;
19348 if (line_start_position
> pos
)
19350 /* If the position sought is the end of the buffer,
19351 don't include the blank lines at the bottom of the window. */
19352 else if (line_start_position
== pos
19353 && pos
== BUF_ZV (XBUFFER (w
->buffer
)))
19355 maybe_next_line_p
= 1;
19358 else if (line_start_position
> 0)
19361 best_row_vpos
= row_vpos
;
19364 if (row
->y
+ row
->height
>= yb
)
19371 /* Find the right column within BEST_ROW. */
19373 current_x
= best_row
->x
;
19374 for (i
= 0; i
< best_row
->used
[TEXT_AREA
]; i
++)
19376 struct glyph
*glyph
= best_row
->glyphs
[TEXT_AREA
] + i
;
19377 int charpos
= glyph
->charpos
;
19379 if (BUFFERP (glyph
->object
))
19381 if (charpos
== pos
)
19384 *vpos
= best_row_vpos
;
19389 else if (charpos
> pos
)
19392 else if (EQ (glyph
->object
, stop
))
19397 current_x
+= glyph
->pixel_width
;
19400 /* If we're looking for the end of the buffer,
19401 and we didn't find it in the line we scanned,
19402 use the start of the following line. */
19403 if (maybe_next_line_p
)
19408 current_x
= best_row
->x
;
19411 *vpos
= best_row_vpos
;
19412 *hpos
= lastcol
+ 1;
19421 /* Find the position of the glyph for position POS in OBJECT in
19422 window W's current matrix, and return in *X, *Y the pixel
19423 coordinates, and return in *HPOS, *VPOS the column/row of the glyph.
19425 RIGHT_P non-zero means return the position of the right edge of the
19426 glyph, RIGHT_P zero means return the left edge position.
19428 If no glyph for POS exists in the matrix, return the position of
19429 the glyph with the next smaller position that is in the matrix, if
19430 RIGHT_P is zero. If RIGHT_P is non-zero, and no glyph for POS
19431 exists in the matrix, return the position of the glyph with the
19432 next larger position in OBJECT.
19434 Value is non-zero if a glyph was found. */
19437 fast_find_string_pos (w
, pos
, object
, hpos
, vpos
, x
, y
, right_p
)
19440 Lisp_Object object
;
19441 int *hpos
, *vpos
, *x
, *y
;
19444 int yb
= window_text_bottom_y (w
);
19445 struct glyph_row
*r
;
19446 struct glyph
*best_glyph
= NULL
;
19447 struct glyph_row
*best_row
= NULL
;
19450 for (r
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
19451 r
->enabled_p
&& r
->y
< yb
;
19454 struct glyph
*g
= r
->glyphs
[TEXT_AREA
];
19455 struct glyph
*e
= g
+ r
->used
[TEXT_AREA
];
19458 for (gx
= r
->x
; g
< e
; gx
+= g
->pixel_width
, ++g
)
19459 if (EQ (g
->object
, object
))
19461 if (g
->charpos
== pos
)
19468 else if (best_glyph
== NULL
19469 || ((abs (g
->charpos
- pos
)
19470 < abs (best_glyph
->charpos
- pos
))
19473 : g
->charpos
> pos
)))
19487 *hpos
= best_glyph
- best_row
->glyphs
[TEXT_AREA
];
19491 *x
+= best_glyph
->pixel_width
;
19496 *vpos
= best_row
- w
->current_matrix
->rows
;
19499 return best_glyph
!= NULL
;
19503 /* Take proper action when mouse has moved to the mode or header line
19504 or marginal area AREA of window W, x-position X and y-position Y.
19505 X is relative to the start of the text display area of W, so the
19506 width of bitmap areas and scroll bars must be subtracted to get a
19507 position relative to the start of the mode line. */
19510 note_mode_line_or_margin_highlight (w
, x
, y
, area
)
19513 enum window_part area
;
19515 struct frame
*f
= XFRAME (w
->frame
);
19516 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
19517 Cursor cursor
= dpyinfo
->vertical_scroll_bar_cursor
;
19519 Lisp_Object string
, help
, map
, pos
;
19521 if (area
== ON_MODE_LINE
|| area
== ON_HEADER_LINE
)
19522 string
= mode_line_string (w
, x
, y
, area
, &charpos
);
19524 string
= marginal_area_string (w
, x
, y
, area
, &charpos
);
19526 if (STRINGP (string
))
19528 pos
= make_number (charpos
);
19530 /* If we're on a string with `help-echo' text property, arrange
19531 for the help to be displayed. This is done by setting the
19532 global variable help_echo_string to the help string. */
19533 help
= Fget_text_property (pos
, Qhelp_echo
, string
);
19536 help_echo_string
= help
;
19537 XSETWINDOW (help_echo_window
, w
);
19538 help_echo_object
= string
;
19539 help_echo_pos
= charpos
;
19542 /* Change the mouse pointer according to what is under X/Y. */
19543 map
= Fget_text_property (pos
, Qlocal_map
, string
);
19544 if (!KEYMAPP (map
))
19545 map
= Fget_text_property (pos
, Qkeymap
, string
);
19547 cursor
= FRAME_X_OUTPUT (f
)->nontext_cursor
;
19550 rif
->define_frame_cursor (f
, cursor
);
19555 Take proper action when the mouse has moved to position X, Y on
19556 frame F as regards highlighting characters that have mouse-face
19557 properties. Also de-highlighting chars where the mouse was before.
19558 X and Y can be negative or out of range. */
19561 note_mouse_highlight (f
, x
, y
)
19565 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
19566 enum window_part part
;
19567 Lisp_Object window
;
19569 Cursor cursor
= No_Cursor
;
19572 /* When a menu is active, don't highlight because this looks odd. */
19573 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NTGUI)
19574 if (popup_activated ())
19578 if (NILP (Vmouse_highlight
)
19579 || !f
->glyphs_initialized_p
)
19582 dpyinfo
->mouse_face_mouse_x
= x
;
19583 dpyinfo
->mouse_face_mouse_y
= y
;
19584 dpyinfo
->mouse_face_mouse_frame
= f
;
19586 if (dpyinfo
->mouse_face_defer
)
19589 if (gc_in_progress
)
19591 dpyinfo
->mouse_face_deferred_gc
= 1;
19595 /* Which window is that in? */
19596 window
= window_from_coordinates (f
, x
, y
, &part
, 0, 0, 1);
19598 /* If we were displaying active text in another window, clear that. */
19599 if (! EQ (window
, dpyinfo
->mouse_face_window
))
19600 clear_mouse_face (dpyinfo
);
19602 /* Not on a window -> return. */
19603 if (!WINDOWP (window
))
19606 /* Reset help_echo_string. It will get recomputed below. */
19607 /* ++KFS: X version didn't do this, but it looks harmless. */
19608 help_echo_string
= Qnil
;
19610 /* Convert to window-relative pixel coordinates. */
19611 w
= XWINDOW (window
);
19612 frame_to_window_pixel_xy (w
, &x
, &y
);
19614 /* Handle tool-bar window differently since it doesn't display a
19616 if (EQ (window
, f
->tool_bar_window
))
19618 note_tool_bar_highlight (f
, x
, y
);
19622 /* Mouse is on the mode, header line or margin? */
19623 if (part
== ON_MODE_LINE
|| part
== ON_HEADER_LINE
19624 || part
== ON_LEFT_MARGIN
|| part
== ON_RIGHT_MARGIN
)
19626 note_mode_line_or_margin_highlight (w
, x
, y
, part
);
19630 if (part
== ON_VERTICAL_BORDER
)
19631 cursor
= FRAME_X_OUTPUT (f
)->horizontal_drag_cursor
;
19633 cursor
= FRAME_X_OUTPUT (f
)->text_cursor
;
19635 /* Are we in a window whose display is up to date?
19636 And verify the buffer's text has not changed. */
19637 b
= XBUFFER (w
->buffer
);
19638 if (part
== ON_TEXT
19639 && EQ (w
->window_end_valid
, w
->buffer
)
19640 && XFASTINT (w
->last_modified
) == BUF_MODIFF (b
)
19641 && XFASTINT (w
->last_overlay_modified
) == BUF_OVERLAY_MODIFF (b
))
19643 int hpos
, vpos
, pos
, i
, area
;
19644 struct glyph
*glyph
;
19645 Lisp_Object object
;
19646 Lisp_Object mouse_face
= Qnil
, overlay
= Qnil
, position
;
19647 Lisp_Object
*overlay_vec
= NULL
;
19648 int len
, noverlays
;
19649 struct buffer
*obuf
;
19650 int obegv
, ozv
, same_region
;
19652 /* Find the glyph under X/Y. */
19653 glyph
= x_y_to_hpos_vpos (w
, x
, y
, &hpos
, &vpos
, &area
, 0);
19655 /* Clear mouse face if X/Y not over text. */
19657 || area
!= TEXT_AREA
19658 || !MATRIX_ROW (w
->current_matrix
, vpos
)->displays_text_p
)
19660 #if defined (HAVE_NTGUI)
19661 /* ++KFS: Why is this necessary on W32 ? */
19662 clear_mouse_face (dpyinfo
);
19663 cursor
= FRAME_X_OUTPUT (f
)->nontext_cursor
;
19665 if (clear_mouse_face (dpyinfo
))
19666 cursor
= No_Cursor
;
19671 pos
= glyph
->charpos
;
19672 object
= glyph
->object
;
19673 if (!STRINGP (object
) && !BUFFERP (object
))
19676 /* If we get an out-of-range value, return now; avoid an error. */
19677 if (BUFFERP (object
) && pos
> BUF_Z (b
))
19680 /* Make the window's buffer temporarily current for
19681 overlays_at and compute_char_face. */
19682 obuf
= current_buffer
;
19683 current_buffer
= b
;
19689 /* Is this char mouse-active or does it have help-echo? */
19690 position
= make_number (pos
);
19692 if (BUFFERP (object
))
19694 /* Put all the overlays we want in a vector in overlay_vec.
19695 Store the length in len. If there are more than 10, make
19696 enough space for all, and try again. */
19698 overlay_vec
= (Lisp_Object
*) alloca (len
* sizeof (Lisp_Object
));
19699 noverlays
= overlays_at (pos
, 0, &overlay_vec
, &len
, NULL
, NULL
, 0);
19700 if (noverlays
> len
)
19703 overlay_vec
= (Lisp_Object
*) alloca (len
* sizeof (Lisp_Object
));
19704 noverlays
= overlays_at (pos
, 0, &overlay_vec
, &len
, NULL
, NULL
,0);
19707 /* Sort overlays into increasing priority order. */
19708 noverlays
= sort_overlays (overlay_vec
, noverlays
, w
);
19713 same_region
= (EQ (window
, dpyinfo
->mouse_face_window
)
19714 && vpos
>= dpyinfo
->mouse_face_beg_row
19715 && vpos
<= dpyinfo
->mouse_face_end_row
19716 && (vpos
> dpyinfo
->mouse_face_beg_row
19717 || hpos
>= dpyinfo
->mouse_face_beg_col
)
19718 && (vpos
< dpyinfo
->mouse_face_end_row
19719 || hpos
< dpyinfo
->mouse_face_end_col
19720 || dpyinfo
->mouse_face_past_end
));
19723 cursor
= No_Cursor
;
19725 /* Check mouse-face highlighting. */
19727 /* If there exists an overlay with mouse-face overlapping
19728 the one we are currently highlighting, we have to
19729 check if we enter the overlapping overlay, and then
19730 highlight only that. */
19731 || (OVERLAYP (dpyinfo
->mouse_face_overlay
)
19732 && mouse_face_overlay_overlaps (dpyinfo
->mouse_face_overlay
)))
19734 /* Find the highest priority overlay that has a mouse-face
19737 for (i
= noverlays
- 1; i
>= 0 && NILP (overlay
); --i
)
19739 mouse_face
= Foverlay_get (overlay_vec
[i
], Qmouse_face
);
19740 if (!NILP (mouse_face
))
19741 overlay
= overlay_vec
[i
];
19744 /* If we're actually highlighting the same overlay as
19745 before, there's no need to do that again. */
19746 if (!NILP (overlay
)
19747 && EQ (overlay
, dpyinfo
->mouse_face_overlay
))
19748 goto check_help_echo
;
19750 dpyinfo
->mouse_face_overlay
= overlay
;
19752 /* Clear the display of the old active region, if any. */
19753 if (clear_mouse_face (dpyinfo
))
19754 cursor
= No_Cursor
;
19756 /* If no overlay applies, get a text property. */
19757 if (NILP (overlay
))
19758 mouse_face
= Fget_text_property (position
, Qmouse_face
, object
);
19760 /* Handle the overlay case. */
19761 if (!NILP (overlay
))
19763 /* Find the range of text around this char that
19764 should be active. */
19765 Lisp_Object before
, after
;
19768 before
= Foverlay_start (overlay
);
19769 after
= Foverlay_end (overlay
);
19770 /* Record this as the current active region. */
19771 fast_find_position (w
, XFASTINT (before
),
19772 &dpyinfo
->mouse_face_beg_col
,
19773 &dpyinfo
->mouse_face_beg_row
,
19774 &dpyinfo
->mouse_face_beg_x
,
19775 &dpyinfo
->mouse_face_beg_y
, Qnil
);
19777 dpyinfo
->mouse_face_past_end
19778 = !fast_find_position (w
, XFASTINT (after
),
19779 &dpyinfo
->mouse_face_end_col
,
19780 &dpyinfo
->mouse_face_end_row
,
19781 &dpyinfo
->mouse_face_end_x
,
19782 &dpyinfo
->mouse_face_end_y
, Qnil
);
19783 dpyinfo
->mouse_face_window
= window
;
19785 dpyinfo
->mouse_face_face_id
19786 = face_at_buffer_position (w
, pos
, 0, 0,
19788 !dpyinfo
->mouse_face_hidden
);
19790 /* Display it as active. */
19791 show_mouse_face (dpyinfo
, DRAW_MOUSE_FACE
);
19792 cursor
= No_Cursor
;
19794 /* Handle the text property case. */
19795 else if (!NILP (mouse_face
) && BUFFERP (object
))
19797 /* Find the range of text around this char that
19798 should be active. */
19799 Lisp_Object before
, after
, beginning
, end
;
19802 beginning
= Fmarker_position (w
->start
);
19803 end
= make_number (BUF_Z (XBUFFER (object
))
19804 - XFASTINT (w
->window_end_pos
));
19806 = Fprevious_single_property_change (make_number (pos
+ 1),
19808 object
, beginning
);
19810 = Fnext_single_property_change (position
, Qmouse_face
,
19813 /* Record this as the current active region. */
19814 fast_find_position (w
, XFASTINT (before
),
19815 &dpyinfo
->mouse_face_beg_col
,
19816 &dpyinfo
->mouse_face_beg_row
,
19817 &dpyinfo
->mouse_face_beg_x
,
19818 &dpyinfo
->mouse_face_beg_y
, Qnil
);
19819 dpyinfo
->mouse_face_past_end
19820 = !fast_find_position (w
, XFASTINT (after
),
19821 &dpyinfo
->mouse_face_end_col
,
19822 &dpyinfo
->mouse_face_end_row
,
19823 &dpyinfo
->mouse_face_end_x
,
19824 &dpyinfo
->mouse_face_end_y
, Qnil
);
19825 dpyinfo
->mouse_face_window
= window
;
19827 if (BUFFERP (object
))
19828 dpyinfo
->mouse_face_face_id
19829 = face_at_buffer_position (w
, pos
, 0, 0,
19831 !dpyinfo
->mouse_face_hidden
);
19833 /* Display it as active. */
19834 show_mouse_face (dpyinfo
, DRAW_MOUSE_FACE
);
19835 cursor
= No_Cursor
;
19837 else if (!NILP (mouse_face
) && STRINGP (object
))
19842 b
= Fprevious_single_property_change (make_number (pos
+ 1),
19845 e
= Fnext_single_property_change (position
, Qmouse_face
,
19848 b
= make_number (0);
19850 e
= make_number (SCHARS (object
) - 1);
19851 fast_find_string_pos (w
, XINT (b
), object
,
19852 &dpyinfo
->mouse_face_beg_col
,
19853 &dpyinfo
->mouse_face_beg_row
,
19854 &dpyinfo
->mouse_face_beg_x
,
19855 &dpyinfo
->mouse_face_beg_y
, 0);
19856 fast_find_string_pos (w
, XINT (e
), object
,
19857 &dpyinfo
->mouse_face_end_col
,
19858 &dpyinfo
->mouse_face_end_row
,
19859 &dpyinfo
->mouse_face_end_x
,
19860 &dpyinfo
->mouse_face_end_y
, 1);
19861 dpyinfo
->mouse_face_past_end
= 0;
19862 dpyinfo
->mouse_face_window
= window
;
19863 dpyinfo
->mouse_face_face_id
19864 = face_at_string_position (w
, object
, pos
, 0, 0, 0, &ignore
,
19865 glyph
->face_id
, 1);
19866 show_mouse_face (dpyinfo
, DRAW_MOUSE_FACE
);
19867 cursor
= No_Cursor
;
19869 else if (STRINGP (object
) && NILP (mouse_face
))
19871 /* A string which doesn't have mouse-face, but
19872 the text ``under'' it might have. */
19873 struct glyph_row
*r
= MATRIX_ROW (w
->current_matrix
, vpos
);
19874 int start
= MATRIX_ROW_START_CHARPOS (r
);
19876 pos
= string_buffer_position (w
, object
, start
);
19878 mouse_face
= get_char_property_and_overlay (make_number (pos
),
19882 if (!NILP (mouse_face
) && !NILP (overlay
))
19884 Lisp_Object before
= Foverlay_start (overlay
);
19885 Lisp_Object after
= Foverlay_end (overlay
);
19888 /* Note that we might not be able to find position
19889 BEFORE in the glyph matrix if the overlay is
19890 entirely covered by a `display' property. In
19891 this case, we overshoot. So let's stop in
19892 the glyph matrix before glyphs for OBJECT. */
19893 fast_find_position (w
, XFASTINT (before
),
19894 &dpyinfo
->mouse_face_beg_col
,
19895 &dpyinfo
->mouse_face_beg_row
,
19896 &dpyinfo
->mouse_face_beg_x
,
19897 &dpyinfo
->mouse_face_beg_y
,
19900 dpyinfo
->mouse_face_past_end
19901 = !fast_find_position (w
, XFASTINT (after
),
19902 &dpyinfo
->mouse_face_end_col
,
19903 &dpyinfo
->mouse_face_end_row
,
19904 &dpyinfo
->mouse_face_end_x
,
19905 &dpyinfo
->mouse_face_end_y
,
19907 dpyinfo
->mouse_face_window
= window
;
19908 dpyinfo
->mouse_face_face_id
19909 = face_at_buffer_position (w
, pos
, 0, 0,
19911 !dpyinfo
->mouse_face_hidden
);
19913 /* Display it as active. */
19914 show_mouse_face (dpyinfo
, DRAW_MOUSE_FACE
);
19915 cursor
= No_Cursor
;
19922 /* Look for a `help-echo' property. */
19924 Lisp_Object help
, overlay
;
19926 /* Check overlays first. */
19927 help
= overlay
= Qnil
;
19928 for (i
= noverlays
- 1; i
>= 0 && NILP (help
); --i
)
19930 overlay
= overlay_vec
[i
];
19931 help
= Foverlay_get (overlay
, Qhelp_echo
);
19936 help_echo_string
= help
;
19937 help_echo_window
= window
;
19938 help_echo_object
= overlay
;
19939 help_echo_pos
= pos
;
19943 Lisp_Object object
= glyph
->object
;
19944 int charpos
= glyph
->charpos
;
19946 /* Try text properties. */
19947 if (STRINGP (object
)
19949 && charpos
< SCHARS (object
))
19951 help
= Fget_text_property (make_number (charpos
),
19952 Qhelp_echo
, object
);
19955 /* If the string itself doesn't specify a help-echo,
19956 see if the buffer text ``under'' it does. */
19957 struct glyph_row
*r
19958 = MATRIX_ROW (w
->current_matrix
, vpos
);
19959 int start
= MATRIX_ROW_START_CHARPOS (r
);
19960 int pos
= string_buffer_position (w
, object
, start
);
19963 help
= Fget_char_property (make_number (pos
),
19964 Qhelp_echo
, w
->buffer
);
19968 object
= w
->buffer
;
19973 else if (BUFFERP (object
)
19976 help
= Fget_text_property (make_number (charpos
), Qhelp_echo
,
19981 help_echo_string
= help
;
19982 help_echo_window
= window
;
19983 help_echo_object
= object
;
19984 help_echo_pos
= charpos
;
19991 current_buffer
= obuf
;
19996 #ifndef HAVE_CARBON
19997 if (cursor
!= No_Cursor
)
19999 if (bcmp (&cursor
, &No_Cursor
, sizeof (Cursor
)))
20001 rif
->define_frame_cursor (f
, cursor
);
20006 Clear any mouse-face on window W. This function is part of the
20007 redisplay interface, and is called from try_window_id and similar
20008 functions to ensure the mouse-highlight is off. */
20011 x_clear_window_mouse_face (w
)
20014 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (XFRAME (w
->frame
));
20015 Lisp_Object window
;
20018 XSETWINDOW (window
, w
);
20019 if (EQ (window
, dpyinfo
->mouse_face_window
))
20020 clear_mouse_face (dpyinfo
);
20026 Just discard the mouse face information for frame F, if any.
20027 This is used when the size of F is changed. */
20030 cancel_mouse_face (f
)
20033 Lisp_Object window
;
20034 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
20036 window
= dpyinfo
->mouse_face_window
;
20037 if (! NILP (window
) && XFRAME (XWINDOW (window
)->frame
) == f
)
20039 dpyinfo
->mouse_face_beg_row
= dpyinfo
->mouse_face_beg_col
= -1;
20040 dpyinfo
->mouse_face_end_row
= dpyinfo
->mouse_face_end_col
= -1;
20041 dpyinfo
->mouse_face_window
= Qnil
;
20046 #endif /* HAVE_WINDOW_SYSTEM */
20049 /***********************************************************************
20051 ***********************************************************************/
20053 #ifdef HAVE_WINDOW_SYSTEM
20055 /* Redraw the part of glyph row area AREA of glyph row ROW on window W
20056 which intersects rectangle R. R is in window-relative coordinates. */
20059 expose_area (w
, row
, r
, area
)
20061 struct glyph_row
*row
;
20063 enum glyph_row_area area
;
20065 struct glyph
*first
= row
->glyphs
[area
];
20066 struct glyph
*end
= row
->glyphs
[area
] + row
->used
[area
];
20067 struct glyph
*last
;
20068 int first_x
, start_x
, x
;
20070 if (area
== TEXT_AREA
&& row
->fill_line_p
)
20071 /* If row extends face to end of line write the whole line. */
20072 draw_glyphs (w
, 0, row
, area
,
20073 0, row
->used
[area
],
20074 DRAW_NORMAL_TEXT
, 0);
20077 /* Set START_X to the window-relative start position for drawing glyphs of
20078 AREA. The first glyph of the text area can be partially visible.
20079 The first glyphs of other areas cannot. */
20080 start_x
= window_box_left_offset (w
, area
);
20081 if (area
== TEXT_AREA
)
20085 /* Find the first glyph that must be redrawn. */
20087 && x
+ first
->pixel_width
< r
->x
)
20089 x
+= first
->pixel_width
;
20093 /* Find the last one. */
20097 && x
< r
->x
+ r
->width
)
20099 x
+= last
->pixel_width
;
20105 draw_glyphs (w
, first_x
- start_x
, row
, area
,
20106 first
- row
->glyphs
[area
], last
- row
->glyphs
[area
],
20107 DRAW_NORMAL_TEXT
, 0);
20112 /* Redraw the parts of the glyph row ROW on window W intersecting
20113 rectangle R. R is in window-relative coordinates. Value is
20114 non-zero if mouse-face was overwritten. */
20117 expose_line (w
, row
, r
)
20119 struct glyph_row
*row
;
20122 xassert (row
->enabled_p
);
20124 if (row
->mode_line_p
|| w
->pseudo_window_p
)
20125 draw_glyphs (w
, 0, row
, TEXT_AREA
,
20126 0, row
->used
[TEXT_AREA
],
20127 DRAW_NORMAL_TEXT
, 0);
20130 if (row
->used
[LEFT_MARGIN_AREA
])
20131 expose_area (w
, row
, r
, LEFT_MARGIN_AREA
);
20132 if (row
->used
[TEXT_AREA
])
20133 expose_area (w
, row
, r
, TEXT_AREA
);
20134 if (row
->used
[RIGHT_MARGIN_AREA
])
20135 expose_area (w
, row
, r
, RIGHT_MARGIN_AREA
);
20136 draw_row_fringe_bitmaps (w
, row
);
20139 return row
->mouse_face_p
;
20143 /* Redraw those parts of glyphs rows during expose event handling that
20144 overlap other rows. Redrawing of an exposed line writes over parts
20145 of lines overlapping that exposed line; this function fixes that.
20147 W is the window being exposed. FIRST_OVERLAPPING_ROW is the first
20148 row in W's current matrix that is exposed and overlaps other rows.
20149 LAST_OVERLAPPING_ROW is the last such row. */
20152 expose_overlaps (w
, first_overlapping_row
, last_overlapping_row
)
20154 struct glyph_row
*first_overlapping_row
;
20155 struct glyph_row
*last_overlapping_row
;
20157 struct glyph_row
*row
;
20159 for (row
= first_overlapping_row
; row
<= last_overlapping_row
; ++row
)
20160 if (row
->overlapping_p
)
20162 xassert (row
->enabled_p
&& !row
->mode_line_p
);
20164 if (row
->used
[LEFT_MARGIN_AREA
])
20165 x_fix_overlapping_area (w
, row
, LEFT_MARGIN_AREA
);
20167 if (row
->used
[TEXT_AREA
])
20168 x_fix_overlapping_area (w
, row
, TEXT_AREA
);
20170 if (row
->used
[RIGHT_MARGIN_AREA
])
20171 x_fix_overlapping_area (w
, row
, RIGHT_MARGIN_AREA
);
20176 /* Return non-zero if W's cursor intersects rectangle R. */
20179 phys_cursor_in_rect_p (w
, r
)
20183 XRectangle cr
, result
;
20184 struct glyph
*cursor_glyph
;
20186 cursor_glyph
= get_phys_cursor_glyph (w
);
20189 cr
.x
= w
->phys_cursor
.x
;
20190 cr
.y
= w
->phys_cursor
.y
;
20191 cr
.width
= cursor_glyph
->pixel_width
;
20192 cr
.height
= w
->phys_cursor_height
;
20193 /* ++KFS: W32 version used W32-specific IntersectRect here, but
20194 I assume the effect is the same -- and this is portable. */
20195 return x_intersect_rectangles (&cr
, r
, &result
);
20203 Draw a vertical window border to the right of window W if W doesn't
20204 have vertical scroll bars. */
20207 x_draw_vertical_border (w
)
20210 /* We could do better, if we knew what type of scroll-bar the adjacent
20211 windows (on either side) have... But we don't :-(
20212 However, I think this works ok. ++KFS 2003-04-25 */
20214 /* Redraw borders between horizontally adjacent windows. Don't
20215 do it for frames with vertical scroll bars because either the
20216 right scroll bar of a window, or the left scroll bar of its
20217 neighbor will suffice as a border. */
20218 if (!WINDOW_RIGHTMOST_P (w
)
20219 && !WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w
))
20221 int x0
, x1
, y0
, y1
;
20223 window_box_edges (w
, -1, &x0
, &y0
, &x1
, &y1
);
20226 rif
->draw_vertical_window_border (w
, x1
, y0
, y1
);
20228 else if (!WINDOW_LEFTMOST_P (w
)
20229 && !WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w
))
20231 int x0
, x1
, y0
, y1
;
20233 window_box_edges (w
, -1, &x0
, &y0
, &x1
, &y1
);
20236 rif
->draw_vertical_window_border (w
, x0
, y0
, y1
);
20241 /* Redraw the part of window W intersection rectangle FR. Pixel
20242 coordinates in FR are frame-relative. Call this function with
20243 input blocked. Value is non-zero if the exposure overwrites
20247 expose_window (w
, fr
)
20251 struct frame
*f
= XFRAME (w
->frame
);
20253 int mouse_face_overwritten_p
= 0;
20255 /* If window is not yet fully initialized, do nothing. This can
20256 happen when toolkit scroll bars are used and a window is split.
20257 Reconfiguring the scroll bar will generate an expose for a newly
20259 if (w
->current_matrix
== NULL
)
20262 /* When we're currently updating the window, display and current
20263 matrix usually don't agree. Arrange for a thorough display
20265 if (w
== updated_window
)
20267 SET_FRAME_GARBAGED (f
);
20271 /* Frame-relative pixel rectangle of W. */
20272 wr
.x
= WINDOW_LEFT_EDGE_X (w
);
20273 wr
.y
= WINDOW_TOP_EDGE_Y (w
);
20274 wr
.width
= WINDOW_TOTAL_WIDTH (w
);
20275 wr
.height
= WINDOW_TOTAL_HEIGHT (w
);
20277 if (x_intersect_rectangles (fr
, &wr
, &r
))
20279 int yb
= window_text_bottom_y (w
);
20280 struct glyph_row
*row
;
20281 int cursor_cleared_p
;
20282 struct glyph_row
*first_overlapping_row
, *last_overlapping_row
;
20284 TRACE ((stderr
, "expose_window (%d, %d, %d, %d)\n",
20285 r
.x
, r
.y
, r
.width
, r
.height
));
20287 /* Convert to window coordinates. */
20288 r
.x
-= WINDOW_LEFT_EDGE_X (w
);
20289 r
.y
-= WINDOW_TOP_EDGE_Y (w
);
20291 /* Turn off the cursor. */
20292 if (!w
->pseudo_window_p
20293 && phys_cursor_in_rect_p (w
, &r
))
20295 x_clear_cursor (w
);
20296 cursor_cleared_p
= 1;
20299 cursor_cleared_p
= 0;
20301 /* Update lines intersecting rectangle R. */
20302 first_overlapping_row
= last_overlapping_row
= NULL
;
20303 for (row
= w
->current_matrix
->rows
;
20308 int y1
= MATRIX_ROW_BOTTOM_Y (row
);
20310 if ((y0
>= r
.y
&& y0
< r
.y
+ r
.height
)
20311 || (y1
> r
.y
&& y1
< r
.y
+ r
.height
)
20312 || (r
.y
>= y0
&& r
.y
< y1
)
20313 || (r
.y
+ r
.height
> y0
&& r
.y
+ r
.height
< y1
))
20315 if (row
->overlapping_p
)
20317 if (first_overlapping_row
== NULL
)
20318 first_overlapping_row
= row
;
20319 last_overlapping_row
= row
;
20322 if (expose_line (w
, row
, &r
))
20323 mouse_face_overwritten_p
= 1;
20330 /* Display the mode line if there is one. */
20331 if (WINDOW_WANTS_MODELINE_P (w
)
20332 && (row
= MATRIX_MODE_LINE_ROW (w
->current_matrix
),
20334 && row
->y
< r
.y
+ r
.height
)
20336 if (expose_line (w
, row
, &r
))
20337 mouse_face_overwritten_p
= 1;
20340 if (!w
->pseudo_window_p
)
20342 /* Fix the display of overlapping rows. */
20343 if (first_overlapping_row
)
20344 expose_overlaps (w
, first_overlapping_row
, last_overlapping_row
);
20346 /* Draw border between windows. */
20347 x_draw_vertical_border (w
);
20349 /* Turn the cursor on again. */
20350 if (cursor_cleared_p
)
20351 update_window_cursor (w
, 1);
20356 /* Display scroll bar for this window. */
20357 if (!NILP (w
->vertical_scroll_bar
))
20360 If this doesn't work here (maybe some header files are missing),
20361 make a function in macterm.c and call it to do the job! */
20363 = SCROLL_BAR_CONTROL_HANDLE (XSCROLL_BAR (w
->vertical_scroll_bar
));
20369 return mouse_face_overwritten_p
;
20374 /* Redraw (parts) of all windows in the window tree rooted at W that
20375 intersect R. R contains frame pixel coordinates. Value is
20376 non-zero if the exposure overwrites mouse-face. */
20379 expose_window_tree (w
, r
)
20383 struct frame
*f
= XFRAME (w
->frame
);
20384 int mouse_face_overwritten_p
= 0;
20386 while (w
&& !FRAME_GARBAGED_P (f
))
20388 if (!NILP (w
->hchild
))
20389 mouse_face_overwritten_p
20390 |= expose_window_tree (XWINDOW (w
->hchild
), r
);
20391 else if (!NILP (w
->vchild
))
20392 mouse_face_overwritten_p
20393 |= expose_window_tree (XWINDOW (w
->vchild
), r
);
20395 mouse_face_overwritten_p
|= expose_window (w
, r
);
20397 w
= NILP (w
->next
) ? NULL
: XWINDOW (w
->next
);
20400 return mouse_face_overwritten_p
;
20405 Redisplay an exposed area of frame F. X and Y are the upper-left
20406 corner of the exposed rectangle. W and H are width and height of
20407 the exposed area. All are pixel values. W or H zero means redraw
20408 the entire frame. */
20411 expose_frame (f
, x
, y
, w
, h
)
20416 int mouse_face_overwritten_p
= 0;
20418 TRACE ((stderr
, "expose_frame "));
20420 /* No need to redraw if frame will be redrawn soon. */
20421 if (FRAME_GARBAGED_P (f
))
20423 TRACE ((stderr
, " garbaged\n"));
20428 /* MAC_TODO: this is a kludge, but if scroll bars are not activated
20429 or deactivated here, for unknown reasons, activated scroll bars
20430 are shown in deactivated frames in some instances. */
20431 if (f
== FRAME_MAC_DISPLAY_INFO (f
)->x_focus_frame
)
20432 activate_scroll_bars (f
);
20434 deactivate_scroll_bars (f
);
20437 /* If basic faces haven't been realized yet, there is no point in
20438 trying to redraw anything. This can happen when we get an expose
20439 event while Emacs is starting, e.g. by moving another window. */
20440 if (FRAME_FACE_CACHE (f
) == NULL
20441 || FRAME_FACE_CACHE (f
)->used
< BASIC_FACE_ID_SENTINEL
)
20443 TRACE ((stderr
, " no faces\n"));
20447 if (w
== 0 || h
== 0)
20450 r
.width
= FRAME_COLUMN_WIDTH (f
) * FRAME_COLS (f
);
20451 r
.height
= FRAME_LINE_HEIGHT (f
) * FRAME_LINES (f
);
20461 TRACE ((stderr
, "(%d, %d, %d, %d)\n", r
.x
, r
.y
, r
.width
, r
.height
));
20462 mouse_face_overwritten_p
= expose_window_tree (XWINDOW (f
->root_window
), &r
);
20464 if (WINDOWP (f
->tool_bar_window
))
20465 mouse_face_overwritten_p
20466 |= expose_window (XWINDOW (f
->tool_bar_window
), &r
);
20468 #ifdef HAVE_X_WINDOWS
20470 #ifndef USE_X_TOOLKIT
20471 if (WINDOWP (f
->menu_bar_window
))
20472 mouse_face_overwritten_p
20473 |= expose_window (XWINDOW (f
->menu_bar_window
), &r
);
20474 #endif /* not USE_X_TOOLKIT */
20478 /* Some window managers support a focus-follows-mouse style with
20479 delayed raising of frames. Imagine a partially obscured frame,
20480 and moving the mouse into partially obscured mouse-face on that
20481 frame. The visible part of the mouse-face will be highlighted,
20482 then the WM raises the obscured frame. With at least one WM, KDE
20483 2.1, Emacs is not getting any event for the raising of the frame
20484 (even tried with SubstructureRedirectMask), only Expose events.
20485 These expose events will draw text normally, i.e. not
20486 highlighted. Which means we must redo the highlight here.
20487 Subsume it under ``we love X''. --gerd 2001-08-15 */
20488 /* Included in Windows version because Windows most likely does not
20489 do the right thing if any third party tool offers
20490 focus-follows-mouse with delayed raise. --jason 2001-10-12 */
20491 if (mouse_face_overwritten_p
&& !FRAME_GARBAGED_P (f
))
20493 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
20494 if (f
== dpyinfo
->mouse_face_mouse_frame
)
20496 int x
= dpyinfo
->mouse_face_mouse_x
;
20497 int y
= dpyinfo
->mouse_face_mouse_y
;
20498 clear_mouse_face (dpyinfo
);
20499 note_mouse_highlight (f
, x
, y
);
20506 Determine the intersection of two rectangles R1 and R2. Return
20507 the intersection in *RESULT. Value is non-zero if RESULT is not
20511 x_intersect_rectangles (r1
, r2
, result
)
20512 XRectangle
*r1
, *r2
, *result
;
20514 XRectangle
*left
, *right
;
20515 XRectangle
*upper
, *lower
;
20516 int intersection_p
= 0;
20518 /* Rearrange so that R1 is the left-most rectangle. */
20520 left
= r1
, right
= r2
;
20522 left
= r2
, right
= r1
;
20524 /* X0 of the intersection is right.x0, if this is inside R1,
20525 otherwise there is no intersection. */
20526 if (right
->x
<= left
->x
+ left
->width
)
20528 result
->x
= right
->x
;
20530 /* The right end of the intersection is the minimum of the
20531 the right ends of left and right. */
20532 result
->width
= (min (left
->x
+ left
->width
, right
->x
+ right
->width
)
20535 /* Same game for Y. */
20537 upper
= r1
, lower
= r2
;
20539 upper
= r2
, lower
= r1
;
20541 /* The upper end of the intersection is lower.y0, if this is inside
20542 of upper. Otherwise, there is no intersection. */
20543 if (lower
->y
<= upper
->y
+ upper
->height
)
20545 result
->y
= lower
->y
;
20547 /* The lower end of the intersection is the minimum of the lower
20548 ends of upper and lower. */
20549 result
->height
= (min (lower
->y
+ lower
->height
,
20550 upper
->y
+ upper
->height
)
20552 intersection_p
= 1;
20556 return intersection_p
;
20559 #endif /* HAVE_WINDOW_SYSTEM */
20562 /***********************************************************************
20564 ***********************************************************************/
20569 Vwith_echo_area_save_vector
= Qnil
;
20570 staticpro (&Vwith_echo_area_save_vector
);
20572 Vmessage_stack
= Qnil
;
20573 staticpro (&Vmessage_stack
);
20575 Qinhibit_redisplay
= intern ("inhibit-redisplay");
20576 staticpro (&Qinhibit_redisplay
);
20578 message_dolog_marker1
= Fmake_marker ();
20579 staticpro (&message_dolog_marker1
);
20580 message_dolog_marker2
= Fmake_marker ();
20581 staticpro (&message_dolog_marker2
);
20582 message_dolog_marker3
= Fmake_marker ();
20583 staticpro (&message_dolog_marker3
);
20586 defsubr (&Sdump_frame_glyph_matrix
);
20587 defsubr (&Sdump_glyph_matrix
);
20588 defsubr (&Sdump_glyph_row
);
20589 defsubr (&Sdump_tool_bar_row
);
20590 defsubr (&Strace_redisplay
);
20591 defsubr (&Strace_to_stderr
);
20593 #ifdef HAVE_WINDOW_SYSTEM
20594 defsubr (&Stool_bar_lines_needed
);
20596 defsubr (&Sformat_mode_line
);
20598 staticpro (&Qmenu_bar_update_hook
);
20599 Qmenu_bar_update_hook
= intern ("menu-bar-update-hook");
20601 staticpro (&Qoverriding_terminal_local_map
);
20602 Qoverriding_terminal_local_map
= intern ("overriding-terminal-local-map");
20604 staticpro (&Qoverriding_local_map
);
20605 Qoverriding_local_map
= intern ("overriding-local-map");
20607 staticpro (&Qwindow_scroll_functions
);
20608 Qwindow_scroll_functions
= intern ("window-scroll-functions");
20610 staticpro (&Qredisplay_end_trigger_functions
);
20611 Qredisplay_end_trigger_functions
= intern ("redisplay-end-trigger-functions");
20613 staticpro (&Qinhibit_point_motion_hooks
);
20614 Qinhibit_point_motion_hooks
= intern ("inhibit-point-motion-hooks");
20616 QCdata
= intern (":data");
20617 staticpro (&QCdata
);
20618 Qdisplay
= intern ("display");
20619 staticpro (&Qdisplay
);
20620 Qspace_width
= intern ("space-width");
20621 staticpro (&Qspace_width
);
20622 Qraise
= intern ("raise");
20623 staticpro (&Qraise
);
20624 Qspace
= intern ("space");
20625 staticpro (&Qspace
);
20626 Qmargin
= intern ("margin");
20627 staticpro (&Qmargin
);
20628 Qleft_margin
= intern ("left-margin");
20629 staticpro (&Qleft_margin
);
20630 Qright_margin
= intern ("right-margin");
20631 staticpro (&Qright_margin
);
20632 Qalign_to
= intern ("align-to");
20633 staticpro (&Qalign_to
);
20634 QCalign_to
= intern (":align-to");
20635 staticpro (&QCalign_to
);
20636 Qrelative_width
= intern ("relative-width");
20637 staticpro (&Qrelative_width
);
20638 QCrelative_width
= intern (":relative-width");
20639 staticpro (&QCrelative_width
);
20640 QCrelative_height
= intern (":relative-height");
20641 staticpro (&QCrelative_height
);
20642 QCeval
= intern (":eval");
20643 staticpro (&QCeval
);
20644 QCpropertize
= intern (":propertize");
20645 staticpro (&QCpropertize
);
20646 QCfile
= intern (":file");
20647 staticpro (&QCfile
);
20648 Qfontified
= intern ("fontified");
20649 staticpro (&Qfontified
);
20650 Qfontification_functions
= intern ("fontification-functions");
20651 staticpro (&Qfontification_functions
);
20652 Qtrailing_whitespace
= intern ("trailing-whitespace");
20653 staticpro (&Qtrailing_whitespace
);
20654 Qimage
= intern ("image");
20655 staticpro (&Qimage
);
20656 Qmessage_truncate_lines
= intern ("message-truncate-lines");
20657 staticpro (&Qmessage_truncate_lines
);
20658 Qcursor_in_non_selected_windows
= intern ("cursor-in-non-selected-windows");
20659 staticpro (&Qcursor_in_non_selected_windows
);
20660 Qgrow_only
= intern ("grow-only");
20661 staticpro (&Qgrow_only
);
20662 Qinhibit_menubar_update
= intern ("inhibit-menubar-update");
20663 staticpro (&Qinhibit_menubar_update
);
20664 Qinhibit_eval_during_redisplay
= intern ("inhibit-eval-during-redisplay");
20665 staticpro (&Qinhibit_eval_during_redisplay
);
20666 Qposition
= intern ("position");
20667 staticpro (&Qposition
);
20668 Qbuffer_position
= intern ("buffer-position");
20669 staticpro (&Qbuffer_position
);
20670 Qobject
= intern ("object");
20671 staticpro (&Qobject
);
20672 Qbar
= intern ("bar");
20674 Qhbar
= intern ("hbar");
20675 staticpro (&Qhbar
);
20676 Qbox
= intern ("box");
20678 Qhollow
= intern ("hollow");
20679 staticpro (&Qhollow
);
20680 Qrisky_local_variable
= intern ("risky-local-variable");
20681 staticpro (&Qrisky_local_variable
);
20682 Qinhibit_free_realized_faces
= intern ("inhibit-free-realized-faces");
20683 staticpro (&Qinhibit_free_realized_faces
);
20685 list_of_error
= Fcons (intern ("error"), Qnil
);
20686 staticpro (&list_of_error
);
20688 last_arrow_position
= Qnil
;
20689 last_arrow_string
= Qnil
;
20690 staticpro (&last_arrow_position
);
20691 staticpro (&last_arrow_string
);
20693 echo_buffer
[0] = echo_buffer
[1] = Qnil
;
20694 staticpro (&echo_buffer
[0]);
20695 staticpro (&echo_buffer
[1]);
20697 echo_area_buffer
[0] = echo_area_buffer
[1] = Qnil
;
20698 staticpro (&echo_area_buffer
[0]);
20699 staticpro (&echo_area_buffer
[1]);
20701 Vmessages_buffer_name
= build_string ("*Messages*");
20702 staticpro (&Vmessages_buffer_name
);
20704 mode_line_proptrans_alist
= Qnil
;
20705 staticpro (&mode_line_proptrans_alist
);
20707 mode_line_string_list
= Qnil
;
20708 staticpro (&mode_line_string_list
);
20710 help_echo_string
= Qnil
;
20711 staticpro (&help_echo_string
);
20712 help_echo_object
= Qnil
;
20713 staticpro (&help_echo_object
);
20714 help_echo_window
= Qnil
;
20715 staticpro (&help_echo_window
);
20716 previous_help_echo_string
= Qnil
;
20717 staticpro (&previous_help_echo_string
);
20718 help_echo_pos
= -1;
20720 #ifdef HAVE_WINDOW_SYSTEM
20721 DEFVAR_BOOL ("x-stretch-cursor", &x_stretch_cursor_p
,
20722 doc
: /* *Non-nil means draw block cursor as wide as the glyph under it.
20723 For example, if a block cursor is over a tab, it will be drawn as
20724 wide as that tab on the display. */);
20725 x_stretch_cursor_p
= 0;
20728 DEFVAR_LISP ("show-trailing-whitespace", &Vshow_trailing_whitespace
,
20729 doc
: /* Non-nil means highlight trailing whitespace.
20730 The face used for trailing whitespace is `trailing-whitespace'. */);
20731 Vshow_trailing_whitespace
= Qnil
;
20733 DEFVAR_LISP ("inhibit-redisplay", &Vinhibit_redisplay
,
20734 doc
: /* Non-nil means don't actually do any redisplay.
20735 This is used for internal purposes. */);
20736 Vinhibit_redisplay
= Qnil
;
20738 DEFVAR_LISP ("global-mode-string", &Vglobal_mode_string
,
20739 doc
: /* String (or mode line construct) included (normally) in `mode-line-format'. */);
20740 Vglobal_mode_string
= Qnil
;
20742 DEFVAR_LISP ("overlay-arrow-position", &Voverlay_arrow_position
,
20743 doc
: /* Marker for where to display an arrow on top of the buffer text.
20744 This must be the beginning of a line in order to work.
20745 See also `overlay-arrow-string'. */);
20746 Voverlay_arrow_position
= Qnil
;
20748 DEFVAR_LISP ("overlay-arrow-string", &Voverlay_arrow_string
,
20749 doc
: /* String to display as an arrow. See also `overlay-arrow-position'. */);
20750 Voverlay_arrow_string
= Qnil
;
20752 DEFVAR_INT ("scroll-step", &scroll_step
,
20753 doc
: /* *The number of lines to try scrolling a window by when point moves out.
20754 If that fails to bring point back on frame, point is centered instead.
20755 If this is zero, point is always centered after it moves off frame.
20756 If you want scrolling to always be a line at a time, you should set
20757 `scroll-conservatively' to a large value rather than set this to 1. */);
20759 DEFVAR_INT ("scroll-conservatively", &scroll_conservatively
,
20760 doc
: /* *Scroll up to this many lines, to bring point back on screen.
20761 A value of zero means to scroll the text to center point vertically
20762 in the window. */);
20763 scroll_conservatively
= 0;
20765 DEFVAR_INT ("scroll-margin", &scroll_margin
,
20766 doc
: /* *Number of lines of margin at the top and bottom of a window.
20767 Recenter the window whenever point gets within this many lines
20768 of the top or bottom of the window. */);
20772 DEFVAR_INT ("debug-end-pos", &debug_end_pos
, doc
: /* Don't ask. */);
20775 DEFVAR_BOOL ("truncate-partial-width-windows",
20776 &truncate_partial_width_windows
,
20777 doc
: /* *Non-nil means truncate lines in all windows less than full frame wide. */);
20778 truncate_partial_width_windows
= 1;
20780 DEFVAR_BOOL ("mode-line-inverse-video", &mode_line_inverse_video
,
20781 doc
: /* nil means display the mode-line/header-line/menu-bar in the default face.
20782 Any other value means to use the appropriate face, `mode-line',
20783 `header-line', or `menu' respectively. */);
20784 mode_line_inverse_video
= 1;
20786 DEFVAR_LISP ("line-number-display-limit", &Vline_number_display_limit
,
20787 doc
: /* *Maximum buffer size for which line number should be displayed.
20788 If the buffer is bigger than this, the line number does not appear
20789 in the mode line. A value of nil means no limit. */);
20790 Vline_number_display_limit
= Qnil
;
20792 DEFVAR_INT ("line-number-display-limit-width",
20793 &line_number_display_limit_width
,
20794 doc
: /* *Maximum line width (in characters) for line number display.
20795 If the average length of the lines near point is bigger than this, then the
20796 line number may be omitted from the mode line. */);
20797 line_number_display_limit_width
= 200;
20799 DEFVAR_BOOL ("highlight-nonselected-windows", &highlight_nonselected_windows
,
20800 doc
: /* *Non-nil means highlight region even in nonselected windows. */);
20801 highlight_nonselected_windows
= 0;
20803 DEFVAR_BOOL ("multiple-frames", &multiple_frames
,
20804 doc
: /* Non-nil if more than one frame is visible on this display.
20805 Minibuffer-only frames don't count, but iconified frames do.
20806 This variable is not guaranteed to be accurate except while processing
20807 `frame-title-format' and `icon-title-format'. */);
20809 DEFVAR_LISP ("frame-title-format", &Vframe_title_format
,
20810 doc
: /* Template for displaying the title bar of visible frames.
20811 \(Assuming the window manager supports this feature.)
20812 This variable has the same structure as `mode-line-format' (which see),
20813 and is used only on frames for which no explicit name has been set
20814 \(see `modify-frame-parameters'). */);
20815 DEFVAR_LISP ("icon-title-format", &Vicon_title_format
,
20816 doc
: /* Template for displaying the title bar of an iconified frame.
20817 \(Assuming the window manager supports this feature.)
20818 This variable has the same structure as `mode-line-format' (which see),
20819 and is used only on frames for which no explicit name has been set
20820 \(see `modify-frame-parameters'). */);
20822 = Vframe_title_format
20823 = Fcons (intern ("multiple-frames"),
20824 Fcons (build_string ("%b"),
20825 Fcons (Fcons (empty_string
,
20826 Fcons (intern ("invocation-name"),
20827 Fcons (build_string ("@"),
20828 Fcons (intern ("system-name"),
20832 DEFVAR_LISP ("message-log-max", &Vmessage_log_max
,
20833 doc
: /* Maximum number of lines to keep in the message log buffer.
20834 If nil, disable message logging. If t, log messages but don't truncate
20835 the buffer when it becomes large. */);
20836 Vmessage_log_max
= make_number (50);
20838 DEFVAR_LISP ("window-size-change-functions", &Vwindow_size_change_functions
,
20839 doc
: /* Functions called before redisplay, if window sizes have changed.
20840 The value should be a list of functions that take one argument.
20841 Just before redisplay, for each frame, if any of its windows have changed
20842 size since the last redisplay, or have been split or deleted,
20843 all the functions in the list are called, with the frame as argument. */);
20844 Vwindow_size_change_functions
= Qnil
;
20846 DEFVAR_LISP ("window-scroll-functions", &Vwindow_scroll_functions
,
20847 doc
: /* List of Functions to call before redisplaying a window with scrolling.
20848 Each function is called with two arguments, the window
20849 and its new display-start position. Note that the value of `window-end'
20850 is not valid when these functions are called. */);
20851 Vwindow_scroll_functions
= Qnil
;
20853 DEFVAR_BOOL ("mouse-autoselect-window", &mouse_autoselect_window
,
20854 doc
: /* *Non-nil means autoselect window with mouse pointer. */);
20855 mouse_autoselect_window
= 0;
20857 DEFVAR_BOOL ("auto-resize-tool-bars", &auto_resize_tool_bars_p
,
20858 doc
: /* *Non-nil means automatically resize tool-bars.
20859 This increases a tool-bar's height if not all tool-bar items are visible.
20860 It decreases a tool-bar's height when it would display blank lines
20862 auto_resize_tool_bars_p
= 1;
20864 DEFVAR_BOOL ("auto-raise-tool-bar-buttons", &auto_raise_tool_bar_buttons_p
,
20865 doc
: /* *Non-nil means raise tool-bar buttons when the mouse moves over them. */);
20866 auto_raise_tool_bar_buttons_p
= 1;
20868 DEFVAR_LISP ("tool-bar-button-margin", &Vtool_bar_button_margin
,
20869 doc
: /* *Margin around tool-bar buttons in pixels.
20870 If an integer, use that for both horizontal and vertical margins.
20871 Otherwise, value should be a pair of integers `(HORZ . VERT)' with
20872 HORZ specifying the horizontal margin, and VERT specifying the
20873 vertical margin. */);
20874 Vtool_bar_button_margin
= make_number (DEFAULT_TOOL_BAR_BUTTON_MARGIN
);
20876 DEFVAR_INT ("tool-bar-button-relief", &tool_bar_button_relief
,
20877 doc
: /* *Relief thickness of tool-bar buttons. */);
20878 tool_bar_button_relief
= DEFAULT_TOOL_BAR_BUTTON_RELIEF
;
20880 DEFVAR_LISP ("fontification-functions", &Vfontification_functions
,
20881 doc
: /* List of functions to call to fontify regions of text.
20882 Each function is called with one argument POS. Functions must
20883 fontify a region starting at POS in the current buffer, and give
20884 fontified regions the property `fontified'. */);
20885 Vfontification_functions
= Qnil
;
20886 Fmake_variable_buffer_local (Qfontification_functions
);
20888 DEFVAR_BOOL ("unibyte-display-via-language-environment",
20889 &unibyte_display_via_language_environment
,
20890 doc
: /* *Non-nil means display unibyte text according to language environment.
20891 Specifically this means that unibyte non-ASCII characters
20892 are displayed by converting them to the equivalent multibyte characters
20893 according to the current language environment. As a result, they are
20894 displayed according to the current fontset. */);
20895 unibyte_display_via_language_environment
= 0;
20897 DEFVAR_LISP ("max-mini-window-height", &Vmax_mini_window_height
,
20898 doc
: /* *Maximum height for resizing mini-windows.
20899 If a float, it specifies a fraction of the mini-window frame's height.
20900 If an integer, it specifies a number of lines. */);
20901 Vmax_mini_window_height
= make_float (0.25);
20903 DEFVAR_LISP ("resize-mini-windows", &Vresize_mini_windows
,
20904 doc
: /* *How to resize mini-windows.
20905 A value of nil means don't automatically resize mini-windows.
20906 A value of t means resize them to fit the text displayed in them.
20907 A value of `grow-only', the default, means let mini-windows grow
20908 only, until their display becomes empty, at which point the windows
20909 go back to their normal size. */);
20910 Vresize_mini_windows
= Qgrow_only
;
20912 DEFVAR_LISP ("cursor-in-non-selected-windows",
20913 &Vcursor_in_non_selected_windows
,
20914 doc
: /* *Cursor type to display in non-selected windows.
20915 t means to use hollow box cursor. See `cursor-type' for other values. */);
20916 Vcursor_in_non_selected_windows
= Qt
;
20918 DEFVAR_LISP ("blink-cursor-alist", &Vblink_cursor_alist
,
20919 doc
: /* Alist specifying how to blink the cursor off.
20920 Each element has the form (ON-STATE . OFF-STATE). Whenever the
20921 `cursor-type' frame-parameter or variable equals ON-STATE,
20922 comparing using `equal', Emacs uses OFF-STATE to specify
20923 how to blink it off. */);
20924 Vblink_cursor_alist
= Qnil
;
20926 DEFVAR_BOOL ("auto-hscroll-mode", &automatic_hscrolling_p
,
20927 doc
: /* *Non-nil means scroll the display automatically to make point visible. */);
20928 automatic_hscrolling_p
= 1;
20930 DEFVAR_INT ("hscroll-margin", &hscroll_margin
,
20931 doc
: /* *How many columns away from the window edge point is allowed to get
20932 before automatic hscrolling will horizontally scroll the window. */);
20933 hscroll_margin
= 5;
20935 DEFVAR_LISP ("hscroll-step", &Vhscroll_step
,
20936 doc
: /* *How many columns to scroll the window when point gets too close to the edge.
20937 When point is less than `automatic-hscroll-margin' columns from the window
20938 edge, automatic hscrolling will scroll the window by the amount of columns
20939 determined by this variable. If its value is a positive integer, scroll that
20940 many columns. If it's a positive floating-point number, it specifies the
20941 fraction of the window's width to scroll. If it's nil or zero, point will be
20942 centered horizontally after the scroll. Any other value, including negative
20943 numbers, are treated as if the value were zero.
20945 Automatic hscrolling always moves point outside the scroll margin, so if
20946 point was more than scroll step columns inside the margin, the window will
20947 scroll more than the value given by the scroll step.
20949 Note that the lower bound for automatic hscrolling specified by `scroll-left'
20950 and `scroll-right' overrides this variable's effect. */);
20951 Vhscroll_step
= make_number (0);
20953 DEFVAR_LISP ("image-types", &Vimage_types
,
20954 doc
: /* List of supported image types.
20955 Each element of the list is a symbol for a supported image type. */);
20956 Vimage_types
= Qnil
;
20958 DEFVAR_BOOL ("message-truncate-lines", &message_truncate_lines
,
20959 doc
: /* If non-nil, messages are truncated instead of resizing the echo area.
20960 Bind this around calls to `message' to let it take effect. */);
20961 message_truncate_lines
= 0;
20963 DEFVAR_LISP ("menu-bar-update-hook", &Vmenu_bar_update_hook
,
20964 doc
: /* Normal hook run for clicks on menu bar, before displaying a submenu.
20965 Can be used to update submenus whose contents should vary. */);
20966 Vmenu_bar_update_hook
= Qnil
;
20968 DEFVAR_BOOL ("inhibit-menubar-update", &inhibit_menubar_update
,
20969 doc
: /* Non-nil means don't update menu bars. Internal use only. */);
20970 inhibit_menubar_update
= 0;
20972 DEFVAR_BOOL ("inhibit-eval-during-redisplay", &inhibit_eval_during_redisplay
,
20973 doc
: /* Non-nil means don't eval Lisp during redisplay. */);
20974 inhibit_eval_during_redisplay
= 0;
20976 DEFVAR_BOOL ("inhibit-free-realized-faces", &inhibit_free_realized_faces
,
20977 doc
: /* Non-nil means don't free realized faces. Internal use only. */);
20978 inhibit_free_realized_faces
= 0;
20981 DEFVAR_BOOL ("inhibit-try-window-id", &inhibit_try_window_id
,
20982 doc
: /* Inhibit try_window_id display optimization. */);
20983 inhibit_try_window_id
= 0;
20985 DEFVAR_BOOL ("inhibit-try-window-reusing", &inhibit_try_window_reusing
,
20986 doc
: /* Inhibit try_window_reusing display optimization. */);
20987 inhibit_try_window_reusing
= 0;
20989 DEFVAR_BOOL ("inhibit-try-cursor-movement", &inhibit_try_cursor_movement
,
20990 doc
: /* Inhibit try_cursor_movement display optimization. */);
20991 inhibit_try_cursor_movement
= 0;
20992 #endif /* GLYPH_DEBUG */
20996 /* Initialize this module when Emacs starts. */
21001 Lisp_Object root_window
;
21002 struct window
*mini_w
;
21004 current_header_line_height
= current_mode_line_height
= -1;
21006 CHARPOS (this_line_start_pos
) = 0;
21008 mini_w
= XWINDOW (minibuf_window
);
21009 root_window
= FRAME_ROOT_WINDOW (XFRAME (WINDOW_FRAME (mini_w
)));
21011 if (!noninteractive
)
21013 struct frame
*f
= XFRAME (WINDOW_FRAME (XWINDOW (root_window
)));
21016 XWINDOW (root_window
)->top_line
= make_number (FRAME_TOP_MARGIN (f
));
21017 set_window_height (root_window
,
21018 FRAME_LINES (f
) - 1 - FRAME_TOP_MARGIN (f
),
21020 mini_w
->top_line
= make_number (FRAME_LINES (f
) - 1);
21021 set_window_height (minibuf_window
, 1, 0);
21023 XWINDOW (root_window
)->total_cols
= make_number (FRAME_COLS (f
));
21024 mini_w
->total_cols
= make_number (FRAME_COLS (f
));
21026 scratch_glyph_row
.glyphs
[TEXT_AREA
] = scratch_glyphs
;
21027 scratch_glyph_row
.glyphs
[TEXT_AREA
+ 1]
21028 = scratch_glyphs
+ MAX_SCRATCH_GLYPHS
;
21030 /* The default ellipsis glyphs `...'. */
21031 for (i
= 0; i
< 3; ++i
)
21032 default_invis_vector
[i
] = make_number ('.');
21036 /* Allocate the buffer for frame titles.
21037 Also used for `format-mode-line'. */
21039 frame_title_buf
= (char *) xmalloc (size
);
21040 frame_title_buf_end
= frame_title_buf
+ size
;
21041 frame_title_ptr
= NULL
;
21044 help_echo_showing_p
= 0;