auto upstream
[emacs.git] / src / dispextern.h
blob58338587cacce50b39f92dc51c7248533a0aed46
1 /* Interface definitions for display code.
3 Copyright (C) 1985, 1993-1994, 1997-2013 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 /* New redisplay written by Gerd Moellmann <gerd@gnu.org>. */
22 #ifndef DISPEXTERN_H_INCLUDED
23 #define DISPEXTERN_H_INCLUDED
25 #ifdef HAVE_X_WINDOWS
27 #include <X11/Xlib.h>
28 #ifdef USE_X_TOOLKIT
29 #include <X11/Intrinsic.h>
30 #endif /* USE_X_TOOLKIT */
32 #else /* !HAVE_X_WINDOWS */
34 /* X-related stuff used by non-X gui code. */
36 typedef struct {
37 unsigned long pixel;
38 unsigned short red, green, blue;
39 char flags;
40 char pad;
41 } XColor;
43 #endif /* HAVE_X_WINDOWS */
45 #ifdef MSDOS
46 #include "msdos.h"
47 #endif
49 INLINE_HEADER_BEGIN
50 #ifndef DISPEXTERN_INLINE
51 # define DISPEXTERN_INLINE INLINE
52 #endif
54 #include <c-strcase.h>
55 DISPEXTERN_INLINE int
56 xstrcasecmp (char const *a, char const *b)
58 return c_strcasecmp (a, b);
61 #ifdef HAVE_X_WINDOWS
62 typedef struct x_display_info Display_Info;
63 typedef XImage * XImagePtr;
64 typedef XImagePtr XImagePtr_or_DC;
65 #define NativeRectangle XRectangle
66 #endif
68 #ifdef HAVE_NTGUI
69 #include "w32gui.h"
70 typedef struct w32_display_info Display_Info;
71 typedef XImage *XImagePtr;
72 typedef HDC XImagePtr_or_DC;
73 #endif
75 #ifdef HAVE_NS
76 #include "nsgui.h"
77 /* Following typedef needed to accommodate the MSDOS port, believe it or not. */
78 typedef struct ns_display_info Display_Info;
79 typedef Pixmap XImagePtr;
80 typedef XImagePtr XImagePtr_or_DC;
81 #endif
83 #ifdef HAVE_WINDOW_SYSTEM
84 # include "systime.h"
85 #endif
87 #ifndef HAVE_WINDOW_SYSTEM
88 typedef int Cursor;
89 #define No_Cursor (0)
90 #endif
92 #ifndef NativeRectangle
93 #define NativeRectangle int
94 #endif
96 /* Structure forward declarations. Some are here because function
97 prototypes below reference structure types before their definition
98 in this file. Some are here because not every file including
99 dispextern.h also includes frame.h and windows.h. */
101 struct glyph;
102 struct glyph_row;
103 struct glyph_matrix;
104 struct glyph_pool;
105 struct frame;
106 struct window;
109 /* Values returned from coordinates_in_window. */
111 enum window_part
113 ON_NOTHING,
114 ON_TEXT,
115 ON_MODE_LINE,
116 ON_VERTICAL_BORDER,
117 ON_HEADER_LINE,
118 ON_LEFT_FRINGE,
119 ON_RIGHT_FRINGE,
120 ON_LEFT_MARGIN,
121 ON_RIGHT_MARGIN,
122 ON_SCROLL_BAR
125 /* Number of bits allocated to store fringe bitmap numbers. */
126 #define FRINGE_ID_BITS 16
128 /* Number of bits allocated to store fringe bitmap height. */
129 #define FRINGE_HEIGHT_BITS 8
132 /***********************************************************************
133 Debugging
134 ***********************************************************************/
136 /* If GLYPH_DEBUG is defined, additional checks are activated. */
138 /* Macros to include code only if GLYPH_DEBUG is defined. */
140 #ifdef GLYPH_DEBUG
141 #define IF_DEBUG(X) X
142 #else
143 #define IF_DEBUG(X) (void) 0
144 #endif
146 /* Macro for displaying traces of redisplay. If Emacs was compiled
147 with GLYPH_DEBUG defined, the variable trace_redisplay_p can be set to
148 a non-zero value in debugging sessions to activate traces. */
150 #ifdef GLYPH_DEBUG
152 extern int trace_redisplay_p EXTERNALLY_VISIBLE;
153 #include <stdio.h>
155 #define TRACE(X) \
156 if (trace_redisplay_p) \
157 fprintf X; \
158 else \
159 (void) 0
161 #else /* not GLYPH_DEBUG */
163 #define TRACE(X) (void) 0
165 #endif /* GLYPH_DEBUG */
169 /***********************************************************************
170 Text positions
171 ***********************************************************************/
173 /* Starting with Emacs 20.3, characters from strings and buffers have
174 both a character and a byte position associated with them. The
175 following structure holds such a pair of positions. */
177 struct text_pos
179 /* Character position. */
180 ptrdiff_t charpos;
182 /* Corresponding byte position. */
183 ptrdiff_t bytepos;
186 /* Access character and byte position of POS in a functional form. */
188 #define BYTEPOS(POS) (POS).bytepos
189 #define CHARPOS(POS) (POS).charpos
191 /* Set character position of POS to CHARPOS, byte position to BYTEPOS. */
193 #define SET_TEXT_POS(POS, CHARPOS, BYTEPOS) \
194 ((POS).charpos = (CHARPOS), (POS).bytepos = BYTEPOS)
196 /* Increment text position POS. */
198 #define INC_TEXT_POS(POS, MULTIBYTE_P) \
199 do \
201 ++(POS).charpos; \
202 if (MULTIBYTE_P) \
203 INC_POS ((POS).bytepos); \
204 else \
205 ++(POS).bytepos; \
207 while (0)
209 /* Decrement text position POS. */
211 #define DEC_TEXT_POS(POS, MULTIBYTE_P) \
212 do \
214 --(POS).charpos; \
215 if (MULTIBYTE_P) \
216 DEC_POS ((POS).bytepos); \
217 else \
218 --(POS).bytepos; \
220 while (0)
222 /* Set text position POS from marker MARKER. */
224 #define SET_TEXT_POS_FROM_MARKER(POS, MARKER) \
225 (CHARPOS (POS) = marker_position ((MARKER)), \
226 BYTEPOS (POS) = marker_byte_position ((MARKER)))
228 /* Set marker MARKER from text position POS. */
230 #define SET_MARKER_FROM_TEXT_POS(MARKER, POS) \
231 set_marker_both ((MARKER), Qnil, CHARPOS ((POS)), BYTEPOS ((POS)))
233 /* Value is non-zero if character and byte positions of POS1 and POS2
234 are equal. */
236 #define TEXT_POS_EQUAL_P(POS1, POS2) \
237 ((POS1).charpos == (POS2).charpos \
238 && (POS1).bytepos == (POS2).bytepos)
240 /* When rendering glyphs, redisplay scans string or buffer text,
241 overlay strings in that text, and does display table or control
242 character translations. The following structure captures a
243 position taking all this into account. */
245 struct display_pos
247 /* Buffer or string position. */
248 struct text_pos pos;
250 /* If this is a position in an overlay string, overlay_string_index
251 is the index of that overlay string in the sequence of overlay
252 strings at `pos' in the order redisplay processes them. A value
253 < 0 means that this is not a position in an overlay string. */
254 ptrdiff_t overlay_string_index;
256 /* If this is a position in an overlay string, string_pos is the
257 position within that string. */
258 struct text_pos string_pos;
260 /* If the character at the position above is a control character or
261 has a display table entry, dpvec_index is an index in the display
262 table or control character translation of that character. A
263 value < 0 means this is not a position in such a translation. */
264 int dpvec_index;
269 /***********************************************************************
270 Glyphs
271 ***********************************************************************/
273 /* Enumeration of glyph types. Glyph structures contain a type field
274 containing one of the enumerators defined here. */
276 enum glyph_type
278 /* Glyph describes a character. */
279 CHAR_GLYPH,
281 /* Glyph describes a static composition. */
282 COMPOSITE_GLYPH,
284 /* Glyph describes a glyphless character. */
285 GLYPHLESS_GLYPH,
287 /* Glyph describes an image. */
288 IMAGE_GLYPH,
290 /* Glyph is a space of fractional width and/or height. */
291 STRETCH_GLYPH,
292 #ifdef HAVE_XWIDGETS
293 /* Glyph is an external widget drawn by the GUI toolkit. */
294 XWIDGET_GLYPH
295 #endif
299 /* Structure describing how to use partial glyphs (images slicing) */
301 struct glyph_slice
303 unsigned x : 16;
304 unsigned y : 16;
305 unsigned width : 16;
306 unsigned height : 16;
310 /* Glyphs.
312 Be extra careful when changing this structure! Esp. make sure that
313 functions producing glyphs, like append_glyph, fill ALL of the
314 glyph structure, and that GLYPH_EQUAL_P compares all
315 display-relevant members of glyphs (not to imply that these are the
316 only things to check when you add a member). */
318 struct glyph
320 /* Position from which this glyph was drawn. If `object' below is a
321 Lisp string, this is a position in that string. If it is a
322 buffer, this is a position in that buffer. A value of -1
323 together with a null object means glyph is a truncation glyph at
324 the start of a row. Right truncation and continuation glyphs at
325 the right edge of a row have their position set to the next
326 buffer position that is not shown on this row. Glyphs inserted
327 by redisplay, such as the empty space after the end of a line on
328 TTYs, or the overlay-arrow on a TTY, have this set to -1. */
329 ptrdiff_t charpos;
331 /* Lisp object source of this glyph. Currently either a buffer or a
332 string, if the glyph was produced from characters which came from
333 a buffer or a string; or 0 if the glyph was inserted by redisplay
334 for its own purposes, such as padding or truncation/continuation
335 glyphs, or the overlay-arrow glyphs on TTYs. */
336 Lisp_Object object;
338 /* Width in pixels. */
339 short pixel_width;
341 /* Ascent and descent in pixels. */
342 short ascent, descent;
344 /* Vertical offset. If < 0, the glyph is displayed raised, if > 0
345 the glyph is displayed lowered. */
346 short voffset;
348 /* Which kind of glyph this is---character, image etc. Value
349 should be an enumerator of type enum glyph_type. */
350 unsigned type : 3;
352 /* 1 means this glyph was produced from multibyte text. Zero
353 means it was produced from unibyte text, i.e. charsets aren't
354 applicable, and encoding is not performed. */
355 unsigned multibyte_p : 1;
357 /* Non-zero means draw a box line at the left or right side of this
358 glyph. This is part of the implementation of the face attribute
359 `:box'. */
360 unsigned left_box_line_p : 1;
361 unsigned right_box_line_p : 1;
363 /* Non-zero means this glyph's physical ascent or descent is greater
364 than its logical ascent/descent, i.e. it may potentially overlap
365 glyphs above or below it. */
366 unsigned overlaps_vertically_p : 1;
368 /* For terminal frames, 1 means glyph is a padding glyph. Padding
369 glyphs are used for characters whose visual shape consists of
370 more than one glyph (e.g. Asian characters). All but the first
371 glyph of such a glyph sequence have the padding_p flag set. This
372 flag is used only to minimize code changes. A better way would
373 probably be to use the width field of glyphs to express padding.
375 For graphic frames, 1 means the pixel width of the glyph in a
376 font is 0, but 1-pixel is padded on displaying for correct cursor
377 displaying. The member `pixel_width' above is set to 1. */
378 unsigned padding_p : 1;
380 /* 1 means the actual glyph is not available, draw using `struct
381 glyphless' below instead. This can happen when a font couldn't
382 be loaded, or a character doesn't have a glyph in a font. */
383 unsigned glyph_not_available_p : 1;
385 /* Non-zero means don't display cursor here. */
386 unsigned avoid_cursor_p : 1;
388 /* Resolved bidirectional level of this character [0..63]. */
389 unsigned resolved_level : 5;
391 /* Resolved bidirectional type of this character, see enum
392 bidi_type_t below. Note that according to UAX#9, only some
393 values (STRONG_L, STRONG_R, WEAK_AN, WEAK_EN, WEAK_BN, and
394 NEUTRAL_B) can appear in the resolved type, so we only reserve
395 space for those that can. */
396 unsigned bidi_type : 3;
398 #define FACE_ID_BITS 20
400 /* Face of the glyph. This is a realized face ID,
401 an index in the face cache of the frame. */
402 unsigned face_id : FACE_ID_BITS;
404 /* Type of font used to display the character glyph. May be used to
405 determine which set of functions to use to obtain font metrics
406 for the glyph. On W32, value should be an enumerator of the type
407 w32_char_font_type. Otherwise it equals FONT_TYPE_UNKNOWN. */
408 unsigned font_type : 3;
410 /* A union of sub-structures for different glyph types. */
411 union
413 /* Metrics of a partial glyph of an image (type == IMAGE_GLYPH). */
414 struct glyph_slice img;
415 /* Start and end indices of glyphs of a grapheme cluster of a
416 composition (type == COMPOSITE_GLYPH). */
417 struct { int from, to; } cmp;
418 /* Pixel offsets for upper and lower part of the acronym. */
419 struct {
420 short upper_xoff, upper_yoff;
421 short lower_xoff, lower_yoff;
422 } glyphless;
423 } slice;
425 /* A union of sub-structures for different glyph types. */
426 union
428 /* Character code for character glyphs (type == CHAR_GLYPH). */
429 unsigned ch;
431 /* Sub-structures for type == COMPOSITE_GLYPH. */
432 struct
434 /* Flag to tell if the composition is automatic or not. */
435 unsigned automatic : 1;
436 /* ID of the composition. */
437 unsigned id : 31;
438 } cmp;
440 /* Image ID for image glyphs (type == IMAGE_GLYPH). */
441 int img_id;
443 #ifdef HAVE_XWIDGETS
444 struct xwidget* xwidget;
445 #endif
446 /* Sub-structure for type == STRETCH_GLYPH. */
447 struct
449 /* The height of the glyph. */
450 unsigned height : 16;
452 /* The ascent of the glyph. */
453 unsigned ascent : 16;
455 stretch;
457 /* Sub-stretch for type == GLYPHLESS_GLYPH. */
458 struct
460 /* Value is an enum of the type glyphless_display_method. */
461 unsigned method : 2;
462 /* 1 iff this glyph is for a character of no font. */
463 unsigned for_no_font : 1;
464 /* Length of acronym or hexadecimal code string (at most 8). */
465 unsigned len : 4;
466 /* Character to display. Actually we need only 22 bits. */
467 unsigned ch : 25;
468 } glyphless;
470 /* Used to compare all bit-fields above in one step. */
471 unsigned val;
472 } u;
476 /* Default value of the glyph font_type field. */
478 #define FONT_TYPE_UNKNOWN 0
480 /* Is GLYPH a space? */
482 #define CHAR_GLYPH_SPACE_P(GLYPH) \
483 ((GLYPH).u.ch == SPACEGLYPH && (GLYPH).face_id == DEFAULT_FACE_ID)
485 /* Are glyph slices of glyphs *X and *Y equal? It assumes that both
486 glyphs have the same type.
488 Note: for composition glyphs, we don't have to compare slice.cmp.to
489 because they should be the same if and only if slice.cmp.from are
490 the same. */
492 #define GLYPH_SLICE_EQUAL_P(X, Y) \
493 ((X)->type == IMAGE_GLYPH \
494 ? ((X)->slice.img.x == (Y)->slice.img.x \
495 && (X)->slice.img.y == (Y)->slice.img.y \
496 && (X)->slice.img.width == (Y)->slice.img.width \
497 && (X)->slice.img.height == (Y)->slice.img.height) \
498 : ((X)->type != COMPOSITE_GLYPH \
499 || (X)->slice.cmp.from == (Y)->slice.cmp.from))
501 /* Are glyphs *X and *Y displayed equal? */
503 #define GLYPH_EQUAL_P(X, Y) \
504 ((X)->type == (Y)->type \
505 && (X)->u.val == (Y)->u.val \
506 && GLYPH_SLICE_EQUAL_P (X, Y) \
507 && (X)->face_id == (Y)->face_id \
508 && (X)->padding_p == (Y)->padding_p \
509 && (X)->left_box_line_p == (Y)->left_box_line_p \
510 && (X)->right_box_line_p == (Y)->right_box_line_p \
511 && (X)->voffset == (Y)->voffset \
512 && (X)->pixel_width == (Y)->pixel_width)
514 /* Are character codes, faces, padding_ps of glyphs *X and *Y equal? */
516 #define GLYPH_CHAR_AND_FACE_EQUAL_P(X, Y) \
517 ((X)->u.ch == (Y)->u.ch \
518 && (X)->face_id == (Y)->face_id \
519 && (X)->padding_p == (Y)->padding_p)
521 /* Fill a character glyph GLYPH. CODE, FACE_ID, PADDING_P correspond
522 to the bits defined for the typedef `GLYPH' in lisp.h. */
524 #define SET_CHAR_GLYPH(GLYPH, CODE, FACE_ID, PADDING_P) \
525 do \
527 (GLYPH).u.ch = (CODE); \
528 (GLYPH).face_id = (FACE_ID); \
529 (GLYPH).padding_p = (PADDING_P); \
531 while (0)
533 /* Fill a character type glyph GLYPH from a glyph typedef FROM as
534 defined in lisp.h. */
536 #define SET_CHAR_GLYPH_FROM_GLYPH(GLYPH, FROM) \
537 SET_CHAR_GLYPH ((GLYPH), \
538 GLYPH_CHAR ((FROM)), \
539 GLYPH_FACE ((FROM)), \
542 /* Construct a glyph code from a character glyph GLYPH. If the
543 character is multibyte, return -1 as we can't use glyph table for a
544 multibyte character. */
546 #define SET_GLYPH_FROM_CHAR_GLYPH(G, GLYPH) \
547 do \
549 if ((GLYPH).u.ch < 256) \
550 SET_GLYPH ((G), (GLYPH).u.ch, ((GLYPH).face_id)); \
551 else \
552 SET_GLYPH ((G), -1, 0); \
554 while (0)
556 #define GLYPH_INVALID_P(GLYPH) (GLYPH_CHAR (GLYPH) < 0)
558 /* Is GLYPH a padding glyph? */
560 #define CHAR_GLYPH_PADDING_P(GLYPH) (GLYPH).padding_p
565 /***********************************************************************
566 Glyph Pools
567 ***********************************************************************/
569 /* Glyph Pool.
571 Glyph memory for frame-based redisplay is allocated from the heap
572 in one vector kept in a glyph pool structure which is stored with
573 the frame. The size of the vector is made large enough to cover
574 all windows on the frame.
576 Both frame and window glyph matrices reference memory from a glyph
577 pool in frame-based redisplay.
579 In window-based redisplay, no glyphs pools exist; windows allocate
580 and free their glyph memory themselves. */
582 struct glyph_pool
584 /* Vector of glyphs allocated from the heap. */
585 struct glyph *glyphs;
587 /* Allocated size of `glyphs'. */
588 ptrdiff_t nglyphs;
590 /* Number of rows and columns in a matrix. */
591 int nrows, ncolumns;
596 /***********************************************************************
597 Glyph Matrix
598 ***********************************************************************/
600 /* Glyph Matrix.
602 Three kinds of glyph matrices exist:
604 1. Frame glyph matrices. These are used for terminal frames whose
605 redisplay needs a view of the whole screen due to limited terminal
606 capabilities. Frame matrices are used only in the update phase
607 of redisplay. They are built in update_frame and not used after
608 the update has been performed.
610 2. Window glyph matrices on frames having frame glyph matrices.
611 Such matrices are sub-matrices of their corresponding frame matrix,
612 i.e. frame glyph matrices and window glyph matrices share the same
613 glyph memory which is allocated in form of a glyph_pool structure.
614 Glyph rows in such a window matrix are slices of frame matrix rows.
616 2. Free-standing window glyph matrices managing their own glyph
617 storage. This form is used in window-based redisplay which
618 includes variable width and height fonts etc.
620 The size of a window's row vector depends on the height of fonts
621 defined on its frame. It is chosen so that the vector is large
622 enough to describe all lines in a window when it is displayed in
623 the smallest possible character size. When new fonts are loaded,
624 or window sizes change, the row vector is adjusted accordingly. */
626 struct glyph_matrix
628 /* The pool from which glyph memory is allocated, if any. This is
629 null for frame matrices and for window matrices managing their
630 own storage. */
631 struct glyph_pool *pool;
633 /* Vector of glyph row structures. The row at nrows - 1 is reserved
634 for the mode line. */
635 struct glyph_row *rows;
637 /* Number of elements allocated for the vector rows above. */
638 ptrdiff_t rows_allocated;
640 /* The number of rows used by the window if all lines were displayed
641 with the smallest possible character height. */
642 int nrows;
644 /* Origin within the frame matrix if this is a window matrix on a
645 frame having a frame matrix. Both values are zero for
646 window-based redisplay. */
647 int matrix_x, matrix_y;
649 /* Width and height of the matrix in columns and rows. */
650 int matrix_w, matrix_h;
652 /* If this structure describes a window matrix of window W,
653 window_left_col is the value of W->left_col, window_top_line the
654 value of W->top_line, window_height and window_width are width and
655 height of W, as returned by window_box, and window_vscroll is the
656 value of W->vscroll at the time the matrix was last adjusted.
657 Only set for window-based redisplay. */
658 int window_left_col, window_top_line;
659 int window_height, window_width;
660 int window_vscroll;
662 /* Number of glyphs reserved for left and right marginal areas when
663 the matrix was last adjusted. */
664 int left_margin_glyphs, right_margin_glyphs;
666 /* Flag indicating that scrolling should not be tried in
667 update_window. This flag is set by functions like try_window_id
668 which do their own scrolling. */
669 unsigned no_scrolling_p : 1;
671 /* Non-zero means window displayed in this matrix has a top mode
672 line. */
673 unsigned header_line_p : 1;
675 #ifdef GLYPH_DEBUG
676 /* A string identifying the method used to display the matrix. */
677 char method[512];
678 #endif
680 /* The buffer this matrix displays. Set in
681 mark_window_display_accurate_1. */
682 struct buffer *buffer;
684 /* Values of BEGV and ZV as of last redisplay. Set in
685 mark_window_display_accurate_1. */
686 ptrdiff_t begv, zv;
690 /* Check that glyph pointers stored in glyph rows of MATRIX are okay.
691 This aborts if any pointer is found twice. */
693 #ifdef GLYPH_DEBUG
694 void check_matrix_pointer_lossage (struct glyph_matrix *);
695 #define CHECK_MATRIX(MATRIX) check_matrix_pointer_lossage ((MATRIX))
696 #else
697 #define CHECK_MATRIX(MATRIX) (void) 0
698 #endif
702 /***********************************************************************
703 Glyph Rows
704 ***********************************************************************/
706 /* Area in window glyph matrix. If values are added or removed, the
707 function mark_object in alloc.c has to be changed. */
709 enum glyph_row_area
711 LEFT_MARGIN_AREA,
712 TEXT_AREA,
713 RIGHT_MARGIN_AREA,
714 LAST_AREA
718 /* Rows of glyphs in a windows or frame glyph matrix.
720 Each row is partitioned into three areas. The start and end of
721 each area is recorded in a pointer as shown below.
723 +--------------------+-------------+---------------------+
724 | left margin area | text area | right margin area |
725 +--------------------+-------------+---------------------+
726 | | | |
727 glyphs[LEFT_MARGIN_AREA] glyphs[RIGHT_MARGIN_AREA]
729 glyphs[TEXT_AREA] |
730 glyphs[LAST_AREA]
732 Rows in frame matrices reference glyph memory allocated in a frame
733 glyph pool (see the description of struct glyph_pool). Rows in
734 window matrices on frames having frame matrices reference slices of
735 the glyphs of corresponding rows in the frame matrix.
737 Rows in window matrices on frames having no frame matrices point to
738 glyphs allocated from the heap via xmalloc;
739 glyphs[LEFT_MARGIN_AREA] is the start address of the allocated
740 glyph structure array. */
742 struct glyph_row
744 /* Pointers to beginnings of areas. The end of an area A is found at
745 A + 1 in the vector. The last element of the vector is the end
746 of the whole row.
748 Kludge alert: Even if used[TEXT_AREA] == 0, glyphs[TEXT_AREA][0]'s
749 position field is used. It is -1 if this row does not correspond
750 to any text; it is some buffer position if the row corresponds to
751 an empty display line that displays a line end. This is what old
752 redisplay used to do. (Except in code for terminal frames, this
753 kludge is no longer used, I believe. --gerd).
755 See also start, end, displays_text_p and ends_at_zv_p for cleaner
756 ways to do it. The special meaning of positions 0 and -1 will be
757 removed some day, so don't use it in new code. */
758 struct glyph *glyphs[1 + LAST_AREA];
760 /* Number of glyphs actually filled in areas. */
761 short used[LAST_AREA];
763 /* Window-relative x and y-position of the top-left corner of this
764 row. If y < 0, this means that eabs (y) pixels of the row are
765 invisible because it is partially visible at the top of a window.
766 If x < 0, this means that eabs (x) pixels of the first glyph of
767 the text area of the row are invisible because the glyph is
768 partially visible. */
769 int x, y;
771 /* Width of the row in pixels without taking face extension at the
772 end of the row into account, and without counting truncation
773 and continuation glyphs at the end of a row on ttys. */
774 int pixel_width;
776 /* Logical ascent/height of this line. The value of ascent is zero
777 and height is 1 on terminal frames. */
778 int ascent, height;
780 /* Physical ascent/height of this line. If max_ascent > ascent,
781 this line overlaps the line above it on the display. Otherwise,
782 if max_height > height, this line overlaps the line beneath it. */
783 int phys_ascent, phys_height;
785 /* Portion of row that is visible. Partially visible rows may be
786 found at the top and bottom of a window. This is 1 for tty
787 frames. It may be < 0 in case of completely invisible rows. */
788 int visible_height;
790 /* Extra line spacing added after this row. Do not consider this
791 in last row when checking if row is fully visible. */
792 int extra_line_spacing;
794 /* Hash code. This hash code is available as soon as the row
795 is constructed, i.e. after a call to display_line. */
796 unsigned hash;
798 /* First position in this row. This is the text position, including
799 overlay position information etc, where the display of this row
800 started, and can thus be less than the position of the first
801 glyph (e.g. due to invisible text or horizontal scrolling).
802 BIDI Note: In R2L rows, that have its reversed_p flag set, this
803 position is at or beyond the right edge of the row. */
804 struct display_pos start;
806 /* Text position at the end of this row. This is the position after
807 the last glyph on this row. It can be greater than the last
808 glyph position + 1, due to a newline that ends the line,
809 truncation, invisible text etc. In an up-to-date display, this
810 should always be equal to the start position of the next row.
811 BIDI Note: In R2L rows, this position is at or beyond the left
812 edge of the row. */
813 struct display_pos end;
815 /* The smallest and the largest buffer positions that contributed to
816 glyphs in this row. Note that due to bidi reordering, these are
817 in general different from the text positions stored in `start'
818 and `end' members above, and also different from the buffer
819 positions recorded in the glyphs displayed the leftmost and
820 rightmost on the screen. */
821 struct text_pos minpos, maxpos;
823 /* Non-zero means the overlay arrow bitmap is on this line.
824 -1 means use default overlay arrow bitmap, else
825 it specifies actual fringe bitmap number. */
826 int overlay_arrow_bitmap;
828 /* Left fringe bitmap number (enum fringe_bitmap_type). */
829 unsigned left_user_fringe_bitmap : FRINGE_ID_BITS;
831 /* Right fringe bitmap number (enum fringe_bitmap_type). */
832 unsigned right_user_fringe_bitmap : FRINGE_ID_BITS;
834 /* Left fringe bitmap number (enum fringe_bitmap_type). */
835 unsigned left_fringe_bitmap : FRINGE_ID_BITS;
837 /* Right fringe bitmap number (enum fringe_bitmap_type). */
838 unsigned right_fringe_bitmap : FRINGE_ID_BITS;
840 /* Face of the left fringe glyph. */
841 unsigned left_user_fringe_face_id : FACE_ID_BITS;
843 /* Face of the right fringe glyph. */
844 unsigned right_user_fringe_face_id : FACE_ID_BITS;
846 /* Face of the left fringe glyph. */
847 unsigned left_fringe_face_id : FACE_ID_BITS;
849 /* Face of the right fringe glyph. */
850 unsigned right_fringe_face_id : FACE_ID_BITS;
852 /* Vertical offset of the left fringe bitmap. */
853 signed left_fringe_offset : FRINGE_HEIGHT_BITS;
855 /* Vertical offset of the right fringe bitmap. */
856 signed right_fringe_offset : FRINGE_HEIGHT_BITS;
858 /* 1 means that at least one of the left and right fringe bitmaps is
859 periodic and thus depends on the y-position of the row. */
860 unsigned fringe_bitmap_periodic_p : 1;
862 /* 1 means that we must draw the bitmaps of this row. */
863 unsigned redraw_fringe_bitmaps_p : 1;
865 /* In a desired matrix, 1 means that this row must be updated. In a
866 current matrix, 0 means that the row has been invalidated, i.e.
867 the row's contents do not agree with what is visible on the
868 screen. */
869 unsigned enabled_p : 1;
871 /* 1 means row displays a text line that is truncated on the left or
872 right side. */
873 unsigned truncated_on_left_p : 1;
874 unsigned truncated_on_right_p : 1;
876 /* 1 means that this row displays a continued line, i.e. it has a
877 continuation mark at the right side. */
878 unsigned continued_p : 1;
880 /* 0 means that this row does not contain any text, i.e. it is
881 a blank line at the window and buffer end. */
882 unsigned displays_text_p : 1;
884 /* 1 means that this line ends at ZV. */
885 unsigned ends_at_zv_p : 1;
887 /* 1 means the face of the last glyph in the text area is drawn to
888 the right end of the window. This flag is used in
889 update_text_area to optimize clearing to the end of the area. */
890 unsigned fill_line_p : 1;
892 /* Non-zero means display a bitmap on X frames indicating that this
893 line contains no text and ends in ZV. */
894 unsigned indicate_empty_line_p : 1;
896 /* 1 means this row contains glyphs that overlap each other because
897 of lbearing or rbearing. */
898 unsigned contains_overlapping_glyphs_p : 1;
900 /* 1 means this row is as wide as the window it is displayed in, including
901 scroll bars, fringes, and internal borders. This also
902 implies that the row doesn't have marginal areas. */
903 unsigned full_width_p : 1;
905 /* Non-zero means row is a mode or header-line. */
906 unsigned mode_line_p : 1;
908 /* 1 in a current row means this row is overlapped by another row. */
909 unsigned overlapped_p : 1;
911 /* 1 means this line ends in the middle of a character consisting
912 of more than one glyph. Some glyphs have been put in this row,
913 the rest are put in rows below this one. */
914 unsigned ends_in_middle_of_char_p : 1;
916 /* 1 means this line starts in the middle of a character consisting
917 of more than one glyph. Some glyphs have been put in the
918 previous row, the rest are put in this row. */
919 unsigned starts_in_middle_of_char_p : 1;
921 /* 1 in a current row means this row overlaps others. */
922 unsigned overlapping_p : 1;
924 /* 1 means some glyphs in this row are displayed in mouse-face. */
925 unsigned mouse_face_p : 1;
927 /* 1 means this row was ended by a newline from a string. */
928 unsigned ends_in_newline_from_string_p : 1;
930 /* 1 means this row width is exactly the width of the window, and the
931 final newline character is hidden in the right fringe. */
932 unsigned exact_window_width_line_p : 1;
934 /* 1 means this row currently shows the cursor in the right fringe. */
935 unsigned cursor_in_fringe_p : 1;
937 /* 1 means the last glyph in the row is part of an ellipsis. */
938 unsigned ends_in_ellipsis_p : 1;
940 /* Non-zero means display a bitmap on X frames indicating that this
941 the first line of the buffer. */
942 unsigned indicate_bob_p : 1;
944 /* Non-zero means display a bitmap on X frames indicating that this
945 the top line of the window, but not start of the buffer. */
946 unsigned indicate_top_line_p : 1;
948 /* Non-zero means display a bitmap on X frames indicating that this
949 the last line of the buffer. */
950 unsigned indicate_eob_p : 1;
952 /* Non-zero means display a bitmap on X frames indicating that this
953 the bottom line of the window, but not end of the buffer. */
954 unsigned indicate_bottom_line_p : 1;
956 /* Non-zero means the row was reversed to display text in a
957 right-to-left paragraph. */
958 unsigned reversed_p : 1;
960 /* Continuation lines width at the start of the row. */
961 int continuation_lines_width;
963 #ifdef HAVE_WINDOW_SYSTEM
964 /* Non-NULL means the current clipping area. This is temporarily
965 set while exposing a region. Coordinates are frame-relative. */
966 XRectangle *clip;
967 #endif
971 /* Get a pointer to row number ROW in matrix MATRIX. If GLYPH_DEBUG
972 is defined, the function matrix_row checks that we don't try to
973 access rows that are out of bounds. */
975 #ifdef GLYPH_DEBUG
976 struct glyph_row *matrix_row (struct glyph_matrix *, int);
977 #define MATRIX_ROW(MATRIX, ROW) matrix_row ((MATRIX), (ROW))
978 #else
979 #define MATRIX_ROW(MATRIX, ROW) ((MATRIX)->rows + (ROW))
980 #endif
982 /* Return a pointer to the row reserved for the mode line in MATRIX.
983 Row MATRIX->nrows - 1 is always reserved for the mode line. */
985 #define MATRIX_MODE_LINE_ROW(MATRIX) \
986 ((MATRIX)->rows + (MATRIX)->nrows - 1)
988 /* Return a pointer to the row reserved for the header line in MATRIX.
989 This is always the first row in MATRIX because that's the only
990 way that works in frame-based redisplay. */
992 #define MATRIX_HEADER_LINE_ROW(MATRIX) (MATRIX)->rows
994 /* Return a pointer to first row in MATRIX used for text display. */
996 #define MATRIX_FIRST_TEXT_ROW(MATRIX) \
997 ((MATRIX)->rows->mode_line_p ? (MATRIX)->rows + 1 : (MATRIX)->rows)
999 /* Return a pointer to the first glyph in the text area of a row.
1000 MATRIX is the glyph matrix accessed, and ROW is the row index in
1001 MATRIX. */
1003 #define MATRIX_ROW_GLYPH_START(MATRIX, ROW) \
1004 (MATRIX_ROW ((MATRIX), (ROW))->glyphs[TEXT_AREA])
1006 /* Return the number of used glyphs in the text area of a row. */
1008 #define MATRIX_ROW_USED(MATRIX, ROW) \
1009 (MATRIX_ROW ((MATRIX), (ROW))->used[TEXT_AREA])
1011 /* Return the character/ byte position at which the display of ROW
1012 starts. BIDI Note: this is the smallest character/byte position
1013 among characters in ROW, i.e. the first logical-order character
1014 displayed by ROW, which is not necessarily the smallest horizontal
1015 position. */
1017 #define MATRIX_ROW_START_CHARPOS(ROW) ((ROW)->minpos.charpos)
1018 #define MATRIX_ROW_START_BYTEPOS(ROW) ((ROW)->minpos.bytepos)
1020 /* Return the character/ byte position at which ROW ends. BIDI Note:
1021 this is the largest character/byte position among characters in
1022 ROW, i.e. the last logical-order character displayed by ROW, which
1023 is not necessarily the largest horizontal position. */
1025 #define MATRIX_ROW_END_CHARPOS(ROW) ((ROW)->maxpos.charpos)
1026 #define MATRIX_ROW_END_BYTEPOS(ROW) ((ROW)->maxpos.bytepos)
1028 /* Return the vertical position of ROW in MATRIX. */
1030 #define MATRIX_ROW_VPOS(ROW, MATRIX) ((ROW) - (MATRIX)->rows)
1032 /* Return the last glyph row + 1 in MATRIX on window W reserved for
1033 text. If W has a mode line, the last row in the matrix is reserved
1034 for it. */
1036 #define MATRIX_BOTTOM_TEXT_ROW(MATRIX, W) \
1037 ((MATRIX)->rows \
1038 + (MATRIX)->nrows \
1039 - (WINDOW_WANTS_MODELINE_P ((W)) ? 1 : 0))
1041 /* Non-zero if the face of the last glyph in ROW's text area has
1042 to be drawn to the end of the text area. */
1044 #define MATRIX_ROW_EXTENDS_FACE_P(ROW) ((ROW)->fill_line_p)
1046 /* Set and query the enabled_p flag of glyph row ROW in MATRIX. */
1048 #define SET_MATRIX_ROW_ENABLED_P(MATRIX, ROW, VALUE) \
1049 (MATRIX_ROW ((MATRIX), (ROW))->enabled_p = (VALUE) != 0)
1051 #define MATRIX_ROW_ENABLED_P(MATRIX, ROW) \
1052 (MATRIX_ROW ((MATRIX), (ROW))->enabled_p)
1054 /* Non-zero if ROW displays text. Value is non-zero if the row is
1055 blank but displays a line end. */
1057 #define MATRIX_ROW_DISPLAYS_TEXT_P(ROW) ((ROW)->displays_text_p)
1060 /* Helper macros */
1062 #define MR_PARTIALLY_VISIBLE(ROW) \
1063 ((ROW)->height != (ROW)->visible_height)
1065 #define MR_PARTIALLY_VISIBLE_AT_TOP(W, ROW) \
1066 ((ROW)->y < WINDOW_HEADER_LINE_HEIGHT ((W)))
1068 #define MR_PARTIALLY_VISIBLE_AT_BOTTOM(W, ROW) \
1069 (((ROW)->y + (ROW)->height - (ROW)->extra_line_spacing) \
1070 > WINDOW_BOX_HEIGHT_NO_MODE_LINE ((W)))
1072 /* Non-zero if ROW is not completely visible in window W. */
1074 #define MATRIX_ROW_PARTIALLY_VISIBLE_P(W, ROW) \
1075 (MR_PARTIALLY_VISIBLE ((ROW)) \
1076 && (MR_PARTIALLY_VISIBLE_AT_TOP ((W), (ROW)) \
1077 || MR_PARTIALLY_VISIBLE_AT_BOTTOM ((W), (ROW))))
1081 /* Non-zero if ROW is partially visible at the top of window W. */
1083 #define MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P(W, ROW) \
1084 (MR_PARTIALLY_VISIBLE ((ROW)) \
1085 && MR_PARTIALLY_VISIBLE_AT_TOP ((W), (ROW)))
1087 /* Non-zero if ROW is partially visible at the bottom of window W. */
1089 #define MATRIX_ROW_PARTIALLY_VISIBLE_AT_BOTTOM_P(W, ROW) \
1090 (MR_PARTIALLY_VISIBLE ((ROW)) \
1091 && MR_PARTIALLY_VISIBLE_AT_BOTTOM ((W), (ROW)))
1093 /* Return the bottom Y + 1 of ROW. */
1095 #define MATRIX_ROW_BOTTOM_Y(ROW) ((ROW)->y + (ROW)->height)
1097 /* Is ROW the last visible one in the display described by the
1098 iterator structure pointed to by IT?. */
1100 #define MATRIX_ROW_LAST_VISIBLE_P(ROW, IT) \
1101 (MATRIX_ROW_BOTTOM_Y ((ROW)) >= (IT)->last_visible_y)
1103 /* Non-zero if ROW displays a continuation line. */
1105 #define MATRIX_ROW_CONTINUATION_LINE_P(ROW) \
1106 ((ROW)->continuation_lines_width > 0)
1108 /* Non-zero if ROW ends in the middle of a character. This is the
1109 case for continued lines showing only part of a display table entry
1110 or a control char, or an overlay string. */
1112 #define MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P(ROW) \
1113 ((ROW)->end.dpvec_index > 0 \
1114 || (ROW)->end.overlay_string_index >= 0 \
1115 || (ROW)->ends_in_middle_of_char_p)
1117 /* Non-zero if ROW ends in the middle of an overlay string. */
1119 #define MATRIX_ROW_ENDS_IN_OVERLAY_STRING_P(ROW) \
1120 ((ROW)->end.overlay_string_index >= 0)
1122 /* Non-zero if ROW starts in the middle of a character. See above. */
1124 #define MATRIX_ROW_STARTS_IN_MIDDLE_OF_CHAR_P(ROW) \
1125 ((ROW)->start.dpvec_index > 0 \
1126 || (ROW)->starts_in_middle_of_char_p \
1127 || ((ROW)->start.overlay_string_index >= 0 \
1128 && (ROW)->start.string_pos.charpos > 0))
1130 /* Non-zero means ROW overlaps its predecessor. */
1132 #define MATRIX_ROW_OVERLAPS_PRED_P(ROW) \
1133 ((ROW)->phys_ascent > (ROW)->ascent)
1135 /* Non-zero means ROW overlaps its successor. */
1137 #define MATRIX_ROW_OVERLAPS_SUCC_P(ROW) \
1138 ((ROW)->phys_height - (ROW)->phys_ascent \
1139 > (ROW)->height - (ROW)->ascent)
1141 /* True means that fonts have been loaded since the last glyph
1142 matrix adjustments. The function redisplay_internal adjusts glyph
1143 matrices when this flag is true. */
1145 extern bool fonts_changed_p;
1147 /* A glyph for a space. */
1149 extern struct glyph space_glyph;
1151 /* Window being updated by update_window. This is non-null as long as
1152 update_window has not finished, and null otherwise. */
1154 extern struct window *updated_window;
1156 /* Glyph row and area updated by update_window_line. */
1158 extern struct glyph_row *updated_row;
1159 extern int updated_area;
1161 /* Non-zero means last display completed. Zero means it was
1162 preempted. */
1164 extern bool display_completed;
1168 /************************************************************************
1169 Glyph Strings
1170 ************************************************************************/
1172 /* Enumeration for overriding/changing the face to use for drawing
1173 glyphs in draw_glyphs. */
1175 enum draw_glyphs_face
1177 DRAW_NORMAL_TEXT,
1178 DRAW_INVERSE_VIDEO,
1179 DRAW_CURSOR,
1180 DRAW_MOUSE_FACE,
1181 DRAW_IMAGE_RAISED,
1182 DRAW_IMAGE_SUNKEN
1185 #ifdef HAVE_WINDOW_SYSTEM
1187 /* A sequence of glyphs to be drawn in the same face. */
1189 struct glyph_string
1191 /* X-origin of the string. */
1192 int x;
1194 /* Y-origin and y-position of the base line of this string. */
1195 int y, ybase;
1197 /* The width of the string, not including a face extension. */
1198 int width;
1200 /* The width of the string, including a face extension. */
1201 int background_width;
1203 /* The height of this string. This is the height of the line this
1204 string is drawn in, and can be different from the height of the
1205 font the string is drawn in. */
1206 int height;
1208 /* Number of pixels this string overwrites in front of its x-origin.
1209 This number is zero if the string has an lbearing >= 0; it is
1210 -lbearing, if the string has an lbearing < 0. */
1211 int left_overhang;
1213 /* Number of pixels this string overwrites past its right-most
1214 nominal x-position, i.e. x + width. Zero if the string's
1215 rbearing is <= its nominal width, rbearing - width otherwise. */
1216 int right_overhang;
1218 /* The frame on which the glyph string is drawn. */
1219 struct frame *f;
1221 /* The window on which the glyph string is drawn. */
1222 struct window *w;
1224 /* X display and window for convenience. */
1225 Display *display;
1226 Window window;
1228 /* The glyph row for which this string was built. It determines the
1229 y-origin and height of the string. */
1230 struct glyph_row *row;
1232 /* The area within row. */
1233 enum glyph_row_area area;
1235 /* Characters to be drawn, and number of characters. */
1236 XChar2b *char2b;
1237 int nchars;
1239 /* A face-override for drawing cursors, mouse face and similar. */
1240 enum draw_glyphs_face hl;
1242 /* Face in which this string is to be drawn. */
1243 struct face *face;
1245 /* Font in which this string is to be drawn. */
1246 struct font *font;
1248 /* Non-null means this string describes (part of) a static
1249 composition. */
1250 struct composition *cmp;
1252 /* If not negative, this string describes a compos. */
1253 ptrdiff_t cmp_id;
1255 /* Start and end glyph indices in a glyph-string. */
1256 int cmp_from, cmp_to;
1258 /* 1 means this glyph strings face has to be drawn to the right end
1259 of the window's drawing area. */
1260 unsigned extends_to_end_of_line_p : 1;
1262 /* 1 means the background of this string has been drawn. */
1263 unsigned background_filled_p : 1;
1265 /* 1 means glyph string must be drawn with 16-bit functions. */
1266 unsigned two_byte_p : 1;
1268 /* 1 means that the original font determined for drawing this glyph
1269 string could not be loaded. The member `font' has been set to
1270 the frame's default font in this case. */
1271 unsigned font_not_found_p : 1;
1273 /* 1 means that the face in which this glyph string is drawn has a
1274 stipple pattern. */
1275 unsigned stippled_p : 1;
1277 #define OVERLAPS_PRED (1 << 0)
1278 #define OVERLAPS_SUCC (1 << 1)
1279 #define OVERLAPS_BOTH (OVERLAPS_PRED | OVERLAPS_SUCC)
1280 #define OVERLAPS_ERASED_CURSOR (1 << 2)
1281 /* Non-zero means only the foreground of this glyph string must be
1282 drawn, and we should use the physical height of the line this
1283 glyph string appears in as clip rect. If the value is
1284 OVERLAPS_ERASED_CURSOR, the clip rect is restricted to the rect
1285 of the erased cursor. OVERLAPS_PRED and OVERLAPS_SUCC mean we
1286 draw overlaps with the preceding and the succeeding rows,
1287 respectively. */
1288 unsigned for_overlaps : 3;
1290 /* 1 means that all glyphs in this glyph string has the flag
1291 padding_p set, and thus must be drawn one by one to have 1-pixel
1292 width even though the logical width in the font is zero. */
1293 unsigned padding_p : 1;
1295 /* The GC to use for drawing this glyph string. */
1296 #if defined (HAVE_X_WINDOWS)
1297 GC gc;
1298 #endif
1299 #if defined (HAVE_NTGUI)
1300 XGCValues *gc;
1301 HDC hdc;
1302 #endif
1304 /* A pointer to the first glyph in the string. This glyph
1305 corresponds to char2b[0]. Needed to draw rectangles if
1306 font_not_found_p is 1. */
1307 struct glyph *first_glyph;
1309 /* Image, if any. */
1310 struct image *img;
1312 #ifdef HAVE_XWIDGETS
1313 struct xwidget* xwidget;
1314 #endif
1315 /* Slice */
1316 struct glyph_slice slice;
1318 /* Non-null means the horizontal clipping region starts from the
1319 left edge of *clip_head, and ends with the right edge of
1320 *clip_tail, not including their overhangs. */
1321 struct glyph_string *clip_head, *clip_tail;
1323 /* The current clipping areas. */
1324 NativeRectangle clip[2];
1326 /* Number of clipping areas. */
1327 int num_clips;
1329 int underline_position;
1331 int underline_thickness;
1333 struct glyph_string *next, *prev;
1336 #endif /* HAVE_WINDOW_SYSTEM */
1339 /************************************************************************
1340 Display Dimensions
1341 ************************************************************************/
1343 /* Return the height of the mode line in glyph matrix MATRIX, or zero
1344 if not known. This macro is called under circumstances where
1345 MATRIX might not have been allocated yet. */
1347 #define MATRIX_MODE_LINE_HEIGHT(MATRIX) \
1348 ((MATRIX) && (MATRIX)->rows \
1349 ? MATRIX_MODE_LINE_ROW (MATRIX)->height \
1350 : 0)
1352 /* Return the height of the header line in glyph matrix MATRIX, or zero
1353 if not known. This macro is called under circumstances where
1354 MATRIX might not have been allocated yet. */
1356 #define MATRIX_HEADER_LINE_HEIGHT(MATRIX) \
1357 ((MATRIX) && (MATRIX)->rows \
1358 ? MATRIX_HEADER_LINE_ROW (MATRIX)->height \
1359 : 0)
1361 /* Return the desired face id for the mode line of a window, depending
1362 on whether the window is selected or not, or if the window is the
1363 scrolling window for the currently active minibuffer window.
1365 Due to the way display_mode_lines manipulates with the contents of
1366 selected_window, this macro needs three arguments: SELW which is
1367 compared against the current value of selected_window, MBW which is
1368 compared against minibuf_window (if SELW doesn't match), and SCRW
1369 which is compared against minibuf_selected_window (if MBW matches). */
1371 #define CURRENT_MODE_LINE_FACE_ID_3(SELW, MBW, SCRW) \
1372 ((!mode_line_in_non_selected_windows \
1373 || (SELW) == XWINDOW (selected_window) \
1374 || (minibuf_level > 0 \
1375 && !NILP (minibuf_selected_window) \
1376 && (MBW) == XWINDOW (minibuf_window) \
1377 && (SCRW) == XWINDOW (minibuf_selected_window))) \
1378 ? MODE_LINE_FACE_ID \
1379 : MODE_LINE_INACTIVE_FACE_ID)
1382 /* Return the desired face id for the mode line of window W. */
1384 #define CURRENT_MODE_LINE_FACE_ID(W) \
1385 (CURRENT_MODE_LINE_FACE_ID_3((W), XWINDOW (selected_window), (W)))
1387 /* Return the current height of the mode line of window W. If not
1388 known from current_mode_line_height, look at W's current glyph
1389 matrix, or return a default based on the height of the font of the
1390 face `mode-line'. */
1392 #define CURRENT_MODE_LINE_HEIGHT(W) \
1393 (current_mode_line_height >= 0 \
1394 ? current_mode_line_height \
1395 : (MATRIX_MODE_LINE_HEIGHT ((W)->current_matrix) \
1396 ? MATRIX_MODE_LINE_HEIGHT ((W)->current_matrix) \
1397 : estimate_mode_line_height (XFRAME (W->frame), \
1398 CURRENT_MODE_LINE_FACE_ID (W))))
1400 /* Return the current height of the header line of window W. If not
1401 known from current_header_line_height, look at W's current glyph
1402 matrix, or return an estimation based on the height of the font of
1403 the face `header-line'. */
1405 #define CURRENT_HEADER_LINE_HEIGHT(W) \
1406 (current_header_line_height >= 0 \
1407 ? current_header_line_height \
1408 : (MATRIX_HEADER_LINE_HEIGHT ((W)->current_matrix) \
1409 ? MATRIX_HEADER_LINE_HEIGHT ((W)->current_matrix) \
1410 : estimate_mode_line_height (XFRAME (W->frame),\
1411 HEADER_LINE_FACE_ID)))
1413 /* Return the height of the desired mode line of window W. */
1415 #define DESIRED_MODE_LINE_HEIGHT(W) \
1416 MATRIX_MODE_LINE_HEIGHT ((W)->desired_matrix)
1418 /* Return the height of the desired header line of window W. */
1420 #define DESIRED_HEADER_LINE_HEIGHT(W) \
1421 MATRIX_HEADER_LINE_HEIGHT ((W)->desired_matrix)
1423 /* Value is non-zero if window W wants a mode line. */
1425 #define WINDOW_WANTS_MODELINE_P(W) \
1426 (!MINI_WINDOW_P ((W)) \
1427 && !(W)->pseudo_window_p \
1428 && FRAME_WANTS_MODELINE_P (XFRAME (WINDOW_FRAME ((W)))) \
1429 && BUFFERP (W->buffer) \
1430 && !NILP (BVAR (XBUFFER (W->buffer), mode_line_format)) \
1431 && WINDOW_TOTAL_LINES (W) > 1)
1433 /* Value is true if window W wants a header line. */
1435 #define WINDOW_WANTS_HEADER_LINE_P(W) \
1436 (!MINI_WINDOW_P ((W)) \
1437 && !(W)->pseudo_window_p \
1438 && FRAME_WANTS_MODELINE_P (XFRAME (WINDOW_FRAME ((W)))) \
1439 && BUFFERP (W->buffer) \
1440 && !NILP (BVAR (XBUFFER (W->buffer), header_line_format)) \
1441 && WINDOW_TOTAL_LINES (W) > 1 \
1442 + !NILP (BVAR (XBUFFER (W->buffer), mode_line_format)))
1445 /* Return proper value to be used as baseline offset of font that has
1446 ASCENT and DESCENT to draw characters by the font at the vertical
1447 center of the line of frame F.
1449 Here, our task is to find the value of BOFF in the following figure;
1451 -------------------------+-----------+-
1452 -+-+---------+-+ | |
1453 | | | | | |
1454 | | | | F_ASCENT F_HEIGHT
1455 | | | ASCENT | |
1456 HEIGHT | | | | |
1457 | | |-|-+------+-----------|------- baseline
1458 | | | | BOFF | |
1459 | |---------|-+-+ | |
1460 | | | DESCENT | |
1461 -+-+---------+-+ F_DESCENT |
1462 -------------------------+-----------+-
1464 -BOFF + DESCENT + (F_HEIGHT - HEIGHT) / 2 = F_DESCENT
1465 BOFF = DESCENT + (F_HEIGHT - HEIGHT) / 2 - F_DESCENT
1466 DESCENT = FONT->descent
1467 HEIGHT = FONT_HEIGHT (FONT)
1468 F_DESCENT = (FRAME_FONT (F)->descent
1469 - F->terminal->output_data.x->baseline_offset)
1470 F_HEIGHT = FRAME_LINE_HEIGHT (F)
1473 #define VCENTER_BASELINE_OFFSET(FONT, F) \
1474 (FONT_DESCENT (FONT) \
1475 + (FRAME_LINE_HEIGHT ((F)) - FONT_HEIGHT ((FONT)) \
1476 + (FRAME_LINE_HEIGHT ((F)) > FONT_HEIGHT ((FONT)))) / 2 \
1477 - (FONT_DESCENT (FRAME_FONT (F)) - FRAME_BASELINE_OFFSET (F)))
1480 /***********************************************************************
1481 Faces
1482 ***********************************************************************/
1484 /* Indices of face attributes in Lisp face vectors. Slot zero is the
1485 symbol `face'. */
1487 enum lface_attribute_index
1489 LFACE_FAMILY_INDEX = 1,
1490 LFACE_FOUNDRY_INDEX,
1491 LFACE_SWIDTH_INDEX,
1492 LFACE_HEIGHT_INDEX,
1493 LFACE_WEIGHT_INDEX,
1494 LFACE_SLANT_INDEX,
1495 LFACE_UNDERLINE_INDEX,
1496 LFACE_INVERSE_INDEX,
1497 LFACE_FOREGROUND_INDEX,
1498 LFACE_BACKGROUND_INDEX,
1499 LFACE_STIPPLE_INDEX,
1500 LFACE_OVERLINE_INDEX,
1501 LFACE_STRIKE_THROUGH_INDEX,
1502 LFACE_BOX_INDEX,
1503 LFACE_FONT_INDEX,
1504 LFACE_INHERIT_INDEX,
1505 LFACE_FONTSET_INDEX,
1506 LFACE_VECTOR_SIZE
1510 /* Box types of faces. */
1512 enum face_box_type
1514 /* No box around text. */
1515 FACE_NO_BOX,
1517 /* Simple box of specified width and color. Default width is 1, and
1518 default color is the foreground color of the face. */
1519 FACE_SIMPLE_BOX,
1521 /* Boxes with 3D shadows. Color equals the background color of the
1522 face. Width is specified. */
1523 FACE_RAISED_BOX,
1524 FACE_SUNKEN_BOX
1527 /* Underline type. */
1529 enum face_underline_type
1531 FACE_UNDER_LINE,
1532 FACE_UNDER_WAVE
1535 /* Structure describing a realized face.
1537 For each Lisp face, 0..N realized faces can exist for different
1538 frames and different charsets. Realized faces are built from Lisp
1539 faces and text properties/overlays by merging faces and adding
1540 unspecified attributes from the `default' face. */
1542 struct face
1544 /* The id of this face. The id equals the index of this face in the
1545 vector faces_by_id of its face cache. */
1546 int id;
1548 #ifdef HAVE_WINDOW_SYSTEM
1550 /* If non-zero, this is a GC that we can use without modification for
1551 drawing the characters in this face. */
1552 GC gc;
1554 /* Background stipple or bitmap used for this face. This is
1555 an id as returned from load_pixmap. */
1556 ptrdiff_t stipple;
1558 #else /* not HAVE_WINDOW_SYSTEM */
1560 /* Dummy. */
1561 ptrdiff_t stipple;
1563 #endif /* not HAVE_WINDOW_SYSTEM */
1565 /* Pixel value of foreground color for X frames. Color index
1566 for tty frames. */
1567 unsigned long foreground;
1569 /* Pixel value or color index of background color. */
1570 unsigned long background;
1572 /* Pixel value or color index of underline color. */
1573 unsigned long underline_color;
1575 /* Pixel value or color index of overlined, strike-through, or box
1576 color. */
1577 unsigned long overline_color;
1578 unsigned long strike_through_color;
1579 unsigned long box_color;
1581 struct font *font;
1583 /* Fontset ID if for this face's fontset. Non-ASCII faces derived
1584 from the same ASCII face have the same fontset. */
1585 int fontset;
1587 /* Pixmap width and height. */
1588 unsigned int pixmap_w, pixmap_h;
1590 /* Non-zero means characters in this face have a box of that
1591 thickness around them. If this value is negative, its absolute
1592 value indicates the thickness, and the horizontal (top and
1593 bottom) borders of box are drawn inside of the character glyphs'
1594 area. The vertical (left and right) borders of the box are drawn
1595 in the same way as when this value is positive. */
1596 int box_line_width;
1598 /* Type of box drawn. A value of FACE_NO_BOX means no box is drawn
1599 around text in this face. A value of FACE_SIMPLE_BOX means a box
1600 of width box_line_width is drawn in color box_color. A value of
1601 FACE_RAISED_BOX or FACE_SUNKEN_BOX means a 3D box is drawn with
1602 shadow colors derived from the background color of the face. */
1603 enum face_box_type box;
1605 /* If `box' above specifies a 3D type, 1 means use box_color for
1606 drawing shadows. */
1607 unsigned use_box_color_for_shadows_p : 1;
1609 /* Style of underlining. */
1610 enum face_underline_type underline_type;
1612 /* Non-zero if text in this face should be underlined, overlined,
1613 strike-through or have a box drawn around it. */
1614 unsigned underline_p : 1;
1615 unsigned overline_p : 1;
1616 unsigned strike_through_p : 1;
1618 /* 1 means that the colors specified for this face could not be
1619 loaded, and were replaced by default colors, so they shouldn't be
1620 freed. */
1621 unsigned foreground_defaulted_p : 1;
1622 unsigned background_defaulted_p : 1;
1624 /* 1 means that either no color is specified for underlining or that
1625 the specified color couldn't be loaded. Use the foreground
1626 color when drawing in that case. */
1627 unsigned underline_defaulted_p : 1;
1629 /* 1 means that either no color is specified for the corresponding
1630 attribute or that the specified color couldn't be loaded.
1631 Use the foreground color when drawing in that case. */
1632 unsigned overline_color_defaulted_p : 1;
1633 unsigned strike_through_color_defaulted_p : 1;
1634 unsigned box_color_defaulted_p : 1;
1636 /* TTY appearances. Colors are found in `lface' with empty color
1637 string meaning the default color of the TTY. */
1638 unsigned tty_bold_p : 1;
1639 unsigned tty_italic_p : 1;
1640 unsigned tty_underline_p : 1;
1641 unsigned tty_reverse_p : 1;
1643 /* 1 means that colors of this face may not be freed because they
1644 have been copied bitwise from a base face (see
1645 realize_x_face). */
1646 unsigned colors_copied_bitwise_p : 1;
1648 /* If non-zero, use overstrike (to simulate bold-face). */
1649 unsigned overstrike : 1;
1651 /* NOTE: this is not used yet, but eventually this impl should be done
1652 similarly to overstrike */
1653 #ifdef HAVE_NS
1654 /* If non-zero, use geometric rotation (to simulate italic). */
1655 unsigned synth_ital : 1;
1656 #endif
1658 /* The Lisp face attributes this face realizes. All attributes
1659 in this vector are non-nil. */
1660 Lisp_Object lface[LFACE_VECTOR_SIZE];
1662 /* The hash value of this face. */
1663 unsigned hash;
1665 /* Next and previous face in hash collision list of face cache. */
1666 struct face *next, *prev;
1668 /* If this face is an ASCII face, this points to this face itself.
1669 Otherwise, this points to an ASCII face that has the same
1670 attributes except the font. */
1671 struct face *ascii_face;
1673 /* Extra member that a font-driver uses privately. */
1674 void *extra;
1678 /* Color index indicating that face uses a terminal's default color. */
1680 #define FACE_TTY_DEFAULT_COLOR ((unsigned long) -1)
1682 /* Color index indicating that face uses an unknown foreground color. */
1684 #define FACE_TTY_DEFAULT_FG_COLOR ((unsigned long) -2)
1686 /* Color index indicating that face uses an unknown background color. */
1688 #define FACE_TTY_DEFAULT_BG_COLOR ((unsigned long) -3)
1690 /* Non-zero if FACE was realized for unibyte use. */
1692 #define FACE_UNIBYTE_P(FACE) ((FACE)->charset < 0)
1695 /* IDs of important faces known by the C face code. These are the IDs
1696 of the faces for CHARSET_ASCII. */
1698 enum face_id
1700 DEFAULT_FACE_ID,
1701 MODE_LINE_FACE_ID,
1702 MODE_LINE_INACTIVE_FACE_ID,
1703 TOOL_BAR_FACE_ID,
1704 FRINGE_FACE_ID,
1705 HEADER_LINE_FACE_ID,
1706 SCROLL_BAR_FACE_ID,
1707 BORDER_FACE_ID,
1708 CURSOR_FACE_ID,
1709 MOUSE_FACE_ID,
1710 MENU_FACE_ID,
1711 VERTICAL_BORDER_FACE_ID,
1712 BASIC_FACE_ID_SENTINEL
1715 #define MAX_FACE_ID ((1 << FACE_ID_BITS) - 1)
1717 /* A cache of realized faces. Each frame has its own cache because
1718 Emacs allows different frame-local face definitions. */
1720 struct face_cache
1722 /* Hash table of cached realized faces. */
1723 struct face **buckets;
1725 /* Back-pointer to the frame this cache belongs to. */
1726 struct frame *f;
1728 /* A vector of faces so that faces can be referenced by an ID. */
1729 struct face **faces_by_id;
1731 /* The allocated size, and number of used slots of faces_by_id. */
1732 ptrdiff_t size;
1733 int used;
1735 /* Flag indicating that attributes of the `menu' face have been
1736 changed. */
1737 unsigned menu_face_changed_p : 1;
1741 /* Prepare face FACE for use on frame F. This must be called before
1742 using X resources of FACE. */
1744 #define PREPARE_FACE_FOR_DISPLAY(F, FACE) \
1745 if ((FACE)->gc == 0) \
1746 prepare_face_for_display ((F), (FACE)); \
1747 else \
1748 (void) 0
1750 /* Return a pointer to the face with ID on frame F, or null if such a
1751 face doesn't exist. */
1753 #define FACE_FROM_ID(F, ID) \
1754 (UNSIGNED_CMP (ID, <, FRAME_FACE_CACHE (F)->used) \
1755 ? FRAME_FACE_CACHE (F)->faces_by_id[ID] \
1756 : NULL)
1758 #ifdef HAVE_WINDOW_SYSTEM
1760 /* Non-zero if FACE is suitable for displaying character CHAR. */
1762 #define FACE_SUITABLE_FOR_ASCII_CHAR_P(FACE, CHAR) \
1763 ((FACE) == (FACE)->ascii_face)
1765 #define FACE_SUITABLE_FOR_CHAR_P(FACE, CHAR) \
1766 (ASCII_CHAR_P (CHAR) \
1767 ? FACE_SUITABLE_FOR_ASCII_CHAR_P(FACE) \
1768 : face_suitable_for_char_p ((FACE), (CHAR)))
1770 /* Return the id of the realized face on frame F that is like the face
1771 with id ID but is suitable for displaying character CHAR.
1772 This macro is only meaningful for multibyte character CHAR. */
1774 #define FACE_FOR_CHAR(F, FACE, CHAR, POS, OBJECT) \
1775 ((ASCII_CHAR_P (CHAR) || CHAR_BYTE8_P (CHAR)) \
1776 ? (FACE)->ascii_face->id \
1777 : face_for_char ((F), (FACE), (CHAR), (POS), (OBJECT)))
1779 #else /* not HAVE_WINDOW_SYSTEM */
1781 #define FACE_SUITABLE_FOR_ASCII_CHAR_P(FACE, CHAR) 1
1782 #define FACE_SUITABLE_FOR_CHAR_P(FACE, CHAR) 1
1783 #define FACE_FOR_CHAR(F, FACE, CHAR, POS, OBJECT) ((FACE)->id)
1785 #endif /* not HAVE_WINDOW_SYSTEM */
1787 /* Non-zero means face attributes have been changed since the last
1788 redisplay. Used in redisplay_internal. */
1790 extern int face_change_count;
1792 /* For reordering of bidirectional text. */
1793 #define BIDI_MAXLEVEL 64
1795 /* Data type for describing the bidirectional character types. The
1796 first 7 must be at the beginning, because they are the only values
1797 valid in the `bidi_type' member of `struct glyph'; we only reserve
1798 3 bits for it, so we cannot use there values larger than 7.
1800 The order of members must be in sync with the 8th element of the
1801 member of unidata-prop-alist (in admin/unidata/unidata-gen.el) for
1802 Unicode character property `bidi-class'. */
1803 typedef enum {
1804 UNKNOWN_BT = 0,
1805 STRONG_L, /* strong left-to-right */
1806 STRONG_R, /* strong right-to-left */
1807 WEAK_EN, /* european number */
1808 WEAK_AN, /* arabic number */
1809 WEAK_BN, /* boundary neutral */
1810 NEUTRAL_B, /* paragraph separator */
1811 STRONG_AL, /* arabic right-to-left letter */
1812 LRE, /* left-to-right embedding */
1813 LRO, /* left-to-right override */
1814 RLE, /* right-to-left embedding */
1815 RLO, /* right-to-left override */
1816 PDF, /* pop directional format */
1817 WEAK_ES, /* european number separator */
1818 WEAK_ET, /* european number terminator */
1819 WEAK_CS, /* common separator */
1820 WEAK_NSM, /* non-spacing mark */
1821 NEUTRAL_S, /* segment separator */
1822 NEUTRAL_WS, /* whitespace */
1823 NEUTRAL_ON /* other neutrals */
1824 } bidi_type_t;
1826 /* The basic directionality data type. */
1827 typedef enum { NEUTRAL_DIR, L2R, R2L } bidi_dir_t;
1829 /* Data type for storing information about characters we need to
1830 remember. */
1831 struct bidi_saved_info {
1832 ptrdiff_t bytepos, charpos; /* character's buffer position */
1833 bidi_type_t type; /* character's resolved bidi type */
1834 bidi_type_t type_after_w1; /* original type of the character, after W1 */
1835 bidi_type_t orig_type; /* type as we found it in the buffer */
1838 /* Data type for keeping track of saved embedding levels and override
1839 status information. */
1840 struct bidi_stack {
1841 int level;
1842 bidi_dir_t override;
1845 /* Data type for storing information about a string being iterated on. */
1846 struct bidi_string_data {
1847 Lisp_Object lstring; /* Lisp string to reorder, or nil */
1848 const unsigned char *s; /* string data, or NULL if reordering buffer */
1849 ptrdiff_t schars; /* the number of characters in the string,
1850 excluding the terminating null */
1851 ptrdiff_t bufpos; /* buffer position of lstring, or 0 if N/A */
1852 unsigned from_disp_str : 1; /* 1 means the string comes from a
1853 display property */
1854 unsigned unibyte : 1; /* 1 means the string is unibyte */
1857 /* Data type for reordering bidirectional text. */
1858 struct bidi_it {
1859 ptrdiff_t bytepos; /* iterator's position in buffer/string */
1860 ptrdiff_t charpos;
1861 int ch; /* character at that position, or u+FFFC
1862 ("object replacement character") for a run
1863 of characters covered by a display string */
1864 ptrdiff_t nchars; /* its "length", usually 1; it's > 1 for a run
1865 of characters covered by a display string */
1866 ptrdiff_t ch_len; /* its length in bytes */
1867 bidi_type_t type; /* bidi type of this character, after
1868 resolving weak and neutral types */
1869 bidi_type_t type_after_w1; /* original type, after overrides and W1 */
1870 bidi_type_t orig_type; /* original type, as found in the buffer */
1871 int resolved_level; /* final resolved level of this character */
1872 int invalid_levels; /* how many PDFs to ignore */
1873 int invalid_rl_levels; /* how many PDFs from RLE/RLO to ignore */
1874 struct bidi_saved_info prev; /* info about previous character */
1875 struct bidi_saved_info last_strong; /* last-seen strong directional char */
1876 struct bidi_saved_info next_for_neutral; /* surrounding characters for... */
1877 struct bidi_saved_info prev_for_neutral; /* ...resolving neutrals */
1878 struct bidi_saved_info next_for_ws; /* character after sequence of ws */
1879 ptrdiff_t next_en_pos; /* pos. of next char for determining ET type */
1880 bidi_type_t next_en_type; /* type of char at next_en_pos */
1881 ptrdiff_t ignore_bn_limit; /* position until which to ignore BNs */
1882 bidi_dir_t sor; /* direction of start-of-run in effect */
1883 int scan_dir; /* direction of text scan, 1: forw, -1: back */
1884 ptrdiff_t disp_pos; /* position of display string after ch */
1885 int disp_prop; /* if non-zero, there really is a
1886 `display' property/string at disp_pos;
1887 if 2, the property is a `space' spec */
1888 int stack_idx; /* index of current data on the stack */
1889 /* Note: Everything from here on is not copied/saved when the bidi
1890 iterator state is saved, pushed, or popped. So only put here
1891 stuff that is not part of the bidi iterator's state! */
1892 struct bidi_stack level_stack[BIDI_MAXLEVEL]; /* stack of embedding levels */
1893 struct bidi_string_data string; /* string to reorder */
1894 bidi_dir_t paragraph_dir; /* current paragraph direction */
1895 ptrdiff_t separator_limit; /* where paragraph separator should end */
1896 unsigned prev_was_pdf : 1; /* if non-zero, previous char was PDF */
1897 unsigned first_elt : 1; /* if non-zero, examine current char first */
1898 unsigned new_paragraph : 1; /* if non-zero, we expect a new paragraph */
1899 unsigned frame_window_p : 1; /* non-zero if displaying on a GUI frame */
1902 /* Value is non-zero when the bidi iterator is at base paragraph
1903 embedding level. */
1904 #define BIDI_AT_BASE_LEVEL(BIDI_IT) \
1905 ((BIDI_IT).resolved_level == (BIDI_IT).level_stack[0].level)
1908 /***********************************************************************
1909 Fringes
1910 ***********************************************************************/
1912 /* Structure used to describe where and how to draw a fringe bitmap.
1913 WHICH is the fringe bitmap to draw. WD and H is the (adjusted)
1914 width and height of the bitmap, DH is the height adjustment (if
1915 bitmap is periodic). X and Y are frame coordinates of the area to
1916 display the bitmap, DY is relative offset of the bitmap into that
1917 area. BX, NX, BY, NY specifies the area to clear if the bitmap
1918 does not fill the entire area. FACE is the fringe face. */
1920 struct draw_fringe_bitmap_params
1922 int which; /* enum fringe_bitmap_type */
1923 unsigned short *bits;
1924 int wd, h, dh;
1925 int x, y;
1926 int bx, nx, by, ny;
1927 unsigned cursor_p : 1;
1928 unsigned overlay_p : 1;
1929 struct face *face;
1932 #define MAX_FRINGE_BITMAPS (1<<FRINGE_ID_BITS)
1935 /***********************************************************************
1936 Display Iterator
1937 ***********************************************************************/
1939 /* Iteration over things to display in current_buffer or in a string.
1941 The iterator handles:
1943 1. Overlay strings (after-string, before-string).
1944 2. Face properties.
1945 3. Invisible text properties.
1946 4. Selective display.
1947 5. Translation of characters via display tables.
1948 6. Translation of control characters to the forms `\003' or `^C'.
1949 7. `glyph' and `space-width' properties.
1951 Iterators are initialized by calling init_iterator or one of the
1952 equivalent functions below. A call to get_next_display_element
1953 loads the iterator structure with information about what next to
1954 display. A call to set_iterator_to_next increments the iterator's
1955 position.
1957 Characters from overlay strings, display table entries or control
1958 character translations are returned one at a time. For example, if
1959 we have a text of `a\x01' where `a' has a display table definition
1960 of `cd' and the control character is displayed with a leading
1961 arrow, then the iterator will return:
1963 Call Return Source Call next
1964 -----------------------------------------------------------------
1965 next c display table move
1966 next d display table move
1967 next ^ control char move
1968 next A control char move
1970 The same mechanism is also used to return characters for ellipses
1971 displayed at the end of invisible text.
1973 CAVEAT: Under some circumstances, move_.* functions can be called
1974 asynchronously, e.g. when computing a buffer position from an x and
1975 y pixel position. This means that these functions and functions
1976 called from them SHOULD NOT USE xmalloc and alike. See also the
1977 comment at the start of xdisp.c. */
1979 /* Enumeration describing what kind of display element an iterator is
1980 loaded with after a call to get_next_display_element. */
1982 enum display_element_type
1984 /* A normal character. */
1985 IT_CHARACTER,
1987 /* A composition (static and automatic). */
1988 IT_COMPOSITION,
1990 /* A glyphless character (e.g. ZWNJ, LRE). */
1991 IT_GLYPHLESS,
1993 /* An image. */
1994 IT_IMAGE,
1996 /* A flexible width and height space. */
1997 IT_STRETCH,
1999 /* End of buffer or string. */
2000 IT_EOB,
2002 /* Truncation glyphs. Never returned by get_next_display_element.
2003 Used to get display information about truncation glyphs via
2004 produce_glyphs. */
2005 IT_TRUNCATION,
2007 /* Continuation glyphs. See the comment for IT_TRUNCATION. */
2008 IT_CONTINUATION,
2010 #ifdef HAVE_XWIDGETS
2011 IT_XWIDGET
2012 #endif
2016 /* An enumerator for each text property that has a meaning for display
2017 purposes. */
2019 enum prop_idx
2021 FONTIFIED_PROP_IDX,
2022 FACE_PROP_IDX,
2023 INVISIBLE_PROP_IDX,
2024 DISPLAY_PROP_IDX,
2025 COMPOSITION_PROP_IDX,
2027 /* Not a property. Used to indicate changes in overlays. */
2028 OVERLAY_PROP_IDX,
2030 /* Sentinel. */
2031 LAST_PROP_IDX
2034 /* An enumerator for the method of wrapping long lines. */
2036 enum line_wrap_method
2038 TRUNCATE,
2039 WORD_WRAP,
2040 WINDOW_WRAP
2043 /* An enumerator for the method of displaying glyphless characters. */
2045 enum glyphless_display_method
2047 /* Display a thin (1-pixel width) space. On a TTY, display a
2048 1-character width space. */
2049 GLYPHLESS_DISPLAY_THIN_SPACE,
2050 /* Display an empty box of proper width. */
2051 GLYPHLESS_DISPLAY_EMPTY_BOX,
2052 /* Display an acronym string in a box. */
2053 GLYPHLESS_DISPLAY_ACRONYM,
2054 /* Display the hexadecimal code of the character in a box. */
2055 GLYPHLESS_DISPLAY_HEX_CODE
2058 struct it_slice
2060 Lisp_Object x;
2061 Lisp_Object y;
2062 Lisp_Object width;
2063 Lisp_Object height;
2066 /* Input sources for fetching characters or data to display.
2067 The input source is found in the `method' field. */
2069 enum it_method {
2070 GET_FROM_BUFFER = 0,
2071 GET_FROM_DISPLAY_VECTOR,
2072 GET_FROM_STRING,
2073 GET_FROM_C_STRING,
2074 GET_FROM_IMAGE,
2075 GET_FROM_STRETCH,
2076 #ifdef HAVE_XWIDGETS
2077 GET_FROM_XWIDGET,
2078 #endif
2079 NUM_IT_METHODS
2082 /* FIXME: What is this? Why 5? */
2083 #define IT_STACK_SIZE 5
2085 /* Iterator for composition (both for static and automatic). */
2086 struct composition_it
2088 /* Next position at which to check the composition. */
2089 ptrdiff_t stop_pos;
2090 /* ID number of the composition or glyph-string. If negative, we
2091 are not iterating over a composition now. */
2092 ptrdiff_t id;
2093 /* If non-negative, character that triggers the automatic
2094 composition at `stop_pos', and this is an automatic composition.
2095 If negative, this is a static composition. This is set to -2
2096 temporarily if searching of composition reach a limit or a
2097 newline. */
2098 int ch;
2099 /* If this is an automatic composition, index of a rule for making
2100 the automatic composition. Provided that ELT is an element of
2101 Vcomposition_function_table for CH, (nth ELT RULE_IDX) is the
2102 rule for the composition. */
2103 int rule_idx;
2104 /* If this is an automatic composition, how many characters to look
2105 back from the position where a character triggering the
2106 composition exists. */
2107 ptrdiff_t lookback;
2108 /* If non-negative, number of glyphs of the glyph-string. */
2109 int nglyphs;
2110 /* True iff the composition is created while buffer is scanned in
2111 reverse order, and thus the grapheme clusters must be rendered
2112 from the last to the first. */
2113 bool reversed_p;
2115 /** The following members contain information about the current
2116 grapheme cluster. */
2117 /* Position of the first character of the current grapheme cluster. */
2118 ptrdiff_t charpos;
2119 /* Number of characters and bytes of the current grapheme cluster. */
2120 int nchars, nbytes;
2121 /* Indices of the glyphs for the current grapheme cluster. */
2122 int from, to;
2123 /* Width of the current grapheme cluster in units of pixels on a
2124 graphic display and in units of canonical characters on a
2125 terminal display. */
2126 int width;
2129 struct it
2131 /* The window in which we iterate over current_buffer (or a string). */
2132 Lisp_Object window;
2133 struct window *w;
2135 /* The window's frame. */
2136 struct frame *f;
2138 /* Method to use to load this structure with the next display element. */
2139 enum it_method method;
2141 /* The next position at which to check for face changes, invisible
2142 text, overlay strings, end of text etc., which see. */
2143 ptrdiff_t stop_charpos;
2145 /* Previous stop position, i.e. the last one before the current
2146 iterator position in `current'. */
2147 ptrdiff_t prev_stop;
2149 /* Last stop position iterated across whose bidi embedding level is
2150 equal to the current paragraph's base embedding level. */
2151 ptrdiff_t base_level_stop;
2153 /* Maximum string or buffer position + 1. ZV when iterating over
2154 current_buffer. */
2155 ptrdiff_t end_charpos;
2157 /* C string to iterate over. Non-null means get characters from
2158 this string, otherwise characters are read from current_buffer
2159 or it->string. */
2160 const unsigned char *s;
2162 /* Number of characters in the string (s, or it->string) we iterate
2163 over. Used only in display_string and its subroutines; never
2164 used for overlay strings and strings from display properties. */
2165 ptrdiff_t string_nchars;
2167 /* Start and end of a visible region; -1 if the region is not
2168 visible in the window. */
2169 ptrdiff_t region_beg_charpos, region_end_charpos;
2171 /* Position at which redisplay end trigger functions should be run. */
2172 ptrdiff_t redisplay_end_trigger_charpos;
2174 /* 1 means multibyte characters are enabled. */
2175 unsigned multibyte_p : 1;
2177 /* 1 means window has a mode line at its top. */
2178 unsigned header_line_p : 1;
2180 /* 1 means `string' is the value of a `display' property.
2181 Don't handle some `display' properties in these strings. */
2182 unsigned string_from_display_prop_p : 1;
2184 /* 1 means `string' comes from a `line-prefix' or `wrap-prefix'
2185 property. */
2186 unsigned string_from_prefix_prop_p : 1;
2188 /* 1 means we are iterating an object that came from a value of a
2189 `display' property. */
2190 unsigned from_disp_prop_p : 1;
2192 /* When METHOD == next_element_from_display_vector,
2193 this is 1 if we're doing an ellipsis. Otherwise meaningless. */
2194 unsigned ellipsis_p : 1;
2196 /* True means cursor shouldn't be displayed here. */
2197 unsigned avoid_cursor_p : 1;
2199 /* Display table in effect or null for none. */
2200 struct Lisp_Char_Table *dp;
2202 /* Current display table vector to return characters from and its
2203 end. dpvec null means we are not returning characters from a
2204 display table entry; current.dpvec_index gives the current index
2205 into dpvec. This same mechanism is also used to return
2206 characters from translated control characters, i.e. `\003' or
2207 `^C'. */
2208 Lisp_Object *dpvec, *dpend;
2210 /* Length in bytes of the char that filled dpvec. A value of zero
2211 means that no such character is involved. A negative value means
2212 the rest of the line from the current iterator position onwards
2213 is hidden by selective display or ellipsis. */
2214 int dpvec_char_len;
2216 /* Face id to use for all characters in display vector. -1 if unused. */
2217 int dpvec_face_id;
2219 /* Face id of the iterator saved in case a glyph from dpvec contains
2220 a face. The face is restored when all glyphs from dpvec have
2221 been delivered. */
2222 int saved_face_id;
2224 /* Vector of glyphs for control character translation. The pointer
2225 dpvec is set to ctl_chars when a control character is translated.
2226 This vector is also used for incomplete multibyte character
2227 translation (e.g \222\244). Such a character is at most 4 bytes,
2228 thus we need at most 16 bytes here. */
2229 Lisp_Object ctl_chars[16];
2231 /* Initial buffer or string position of the iterator, before skipping
2232 over display properties and invisible text. */
2233 struct display_pos start;
2235 /* Current buffer or string position of the iterator, including
2236 position in overlay strings etc. */
2237 struct display_pos current;
2239 /* Total number of overlay strings to process. This can be >
2240 OVERLAY_STRING_CHUNK_SIZE. Value is dependable only when
2241 current.overlay_string_index >= 0. Use the latter to determine
2242 whether an overlay string is being iterated over, because
2243 n_overlay_strings can be positive even when we are not rendering
2244 an overlay string. */
2245 ptrdiff_t n_overlay_strings;
2247 /* The charpos where n_overlay_strings was calculated. This should
2248 be set at the same time as n_overlay_strings. It is needed
2249 because we show before-strings at the start of invisible text;
2250 see handle_invisible_prop in xdisp.c. */
2251 ptrdiff_t overlay_strings_charpos;
2253 /* Vector of overlays to process. Overlay strings are processed
2254 OVERLAY_STRING_CHUNK_SIZE at a time. */
2255 #define OVERLAY_STRING_CHUNK_SIZE 16
2256 Lisp_Object overlay_strings[OVERLAY_STRING_CHUNK_SIZE];
2258 /* For each overlay string, the overlay it came from. */
2259 Lisp_Object string_overlays[OVERLAY_STRING_CHUNK_SIZE];
2261 /* If non-nil, a Lisp string being processed. If
2262 current.overlay_string_index >= 0, this is an overlay string from
2263 pos. Use STRINGP (it.string) to test whether we are rendering a
2264 string or something else; do NOT use BUFFERP (it.object). */
2265 Lisp_Object string;
2267 /* If non-nil, we are processing a string that came
2268 from a `display' property given by an overlay. */
2269 Lisp_Object from_overlay;
2271 /* Stack of saved values. New entries are pushed when we begin to
2272 process an overlay string or a string from a `glyph' property.
2273 Entries are popped when we return to deliver display elements
2274 from what we previously had. */
2275 struct iterator_stack_entry
2277 Lisp_Object string;
2278 int string_nchars;
2279 ptrdiff_t end_charpos;
2280 ptrdiff_t stop_charpos;
2281 ptrdiff_t prev_stop;
2282 ptrdiff_t base_level_stop;
2283 struct composition_it cmp_it;
2284 int face_id;
2286 /* Save values specific to a given method. */
2287 union {
2288 /* method == GET_FROM_IMAGE */
2289 struct {
2290 Lisp_Object object;
2291 struct it_slice slice;
2292 ptrdiff_t image_id;
2293 } image;
2294 /* method == GET_FROM_COMPOSITION */
2295 struct {
2296 Lisp_Object object;
2297 } comp;
2298 /* method == GET_FROM_STRETCH */
2299 struct {
2300 Lisp_Object object;
2301 } stretch;
2302 #ifdef HAVE_XWIDGETS
2303 /* method == GET_FROM_XWIDGET */
2304 struct {
2305 Lisp_Object object;
2306 struct xwidget* xwidget;
2307 } xwidget;
2308 #endif
2309 } u;
2311 /* current text and display positions. */
2312 struct text_pos position;
2313 struct display_pos current;
2314 Lisp_Object from_overlay;
2315 enum glyph_row_area area;
2316 enum it_method method;
2317 bidi_dir_t paragraph_embedding;
2318 unsigned multibyte_p : 1;
2319 unsigned string_from_display_prop_p : 1;
2320 unsigned string_from_prefix_prop_p : 1;
2321 unsigned display_ellipsis_p : 1;
2322 unsigned avoid_cursor_p : 1;
2323 unsigned bidi_p:1;
2324 unsigned from_disp_prop_p : 1;
2325 enum line_wrap_method line_wrap;
2327 /* properties from display property that are reset by another display property. */
2328 short voffset;
2329 Lisp_Object space_width;
2330 Lisp_Object font_height;
2332 stack[IT_STACK_SIZE];
2334 /* Stack pointer. */
2335 int sp;
2337 /* -1 means selective display hides everything between a \r and the
2338 next newline; > 0 means hide lines indented more than that value. */
2339 ptrdiff_t selective;
2341 /* An enumeration describing what the next display element is
2342 after a call to get_next_display_element. */
2343 enum display_element_type what;
2345 /* Face to use. */
2346 int face_id;
2348 /* Setting of buffer-local variable selective-display-ellipsis. */
2349 unsigned selective_display_ellipsis_p : 1;
2351 /* 1 means control characters are translated into the form `^C'
2352 where the `^' can be replaced by a display table entry. */
2353 unsigned ctl_arrow_p : 1;
2355 /* Non-zero means that the current face has a box. */
2356 unsigned face_box_p : 1;
2358 /* Non-null means that the current character is the first in a run
2359 of characters with box face. */
2360 unsigned start_of_box_run_p : 1;
2362 /* Non-zero means that the current character is the last in a run
2363 of characters with box face. */
2364 unsigned end_of_box_run_p : 1;
2366 /* 1 means overlay strings at end_charpos have been processed. */
2367 unsigned overlay_strings_at_end_processed_p : 1;
2369 /* 1 means to ignore overlay strings at current pos, as they have
2370 already been processed. */
2371 unsigned ignore_overlay_strings_at_pos_p : 1;
2373 /* 1 means the actual glyph is not available in the current
2374 system. */
2375 unsigned glyph_not_available_p : 1;
2377 /* 1 means the next line in display_line continues a character
2378 consisting of more than one glyph, and some glyphs of this
2379 character have been put on the previous line. */
2380 unsigned starts_in_middle_of_char_p : 1;
2382 /* If 1, saved_face_id contains the id of the face in front of text
2383 skipped due to selective display. */
2384 unsigned face_before_selective_p : 1;
2386 /* If 1, adjust current glyph so it does not increase current row
2387 descent/ascent (line-height property). Reset after this glyph. */
2388 unsigned constrain_row_ascent_descent_p : 1;
2390 enum line_wrap_method line_wrap;
2392 /* The ID of the default face to use. One of DEFAULT_FACE_ID,
2393 MODE_LINE_FACE_ID, etc, depending on what we are displaying. */
2394 int base_face_id;
2396 /* If `what' == IT_CHARACTER, the character and the length in bytes
2397 of its multibyte sequence. The character comes from a buffer or
2398 a string. It may be different from the character displayed in
2399 case that unibyte_display_via_language_environment is set.
2401 If `what' == IT_COMPOSITION, the first component of a composition
2402 and length in bytes of the composition.
2404 If `what' is anything else, these two are undefined (will
2405 probably hold values for the last IT_CHARACTER or IT_COMPOSITION
2406 traversed by the iterator.
2408 The values are updated by get_next_display_element, so they are
2409 out of sync with the value returned by IT_CHARPOS between the
2410 time set_iterator_to_next advances the position and the time
2411 get_next_display_element loads the new values into c and len. */
2412 int c, len;
2414 /* If what == IT_COMPOSITION, iterator substructure for the
2415 composition. */
2416 struct composition_it cmp_it;
2418 /* The character to display, possibly translated to multibyte if
2419 multibyte_p is zero or unibyte_display_via_language_environment
2420 is set. This is set after get_next_display_element has been
2421 called. If we are setting it->C directly before calling
2422 PRODUCE_GLYPHS, this should be set beforehand too. */
2423 int char_to_display;
2425 /* If what == IT_GLYPHLESS, the method to display such a
2426 character. */
2427 enum glyphless_display_method glyphless_method;
2429 /* If what == IT_IMAGE, the id of the image to display. */
2430 ptrdiff_t image_id;
2432 #ifdef HAVE_XWIDGETS
2433 /* If what == IT_XWIDGET*/
2434 struct xwidget* xwidget;
2435 #endif
2436 /* Values from `slice' property. */
2437 struct it_slice slice;
2439 /* Value of the `space-width' property, if any; nil if none. */
2440 Lisp_Object space_width;
2442 /* Computed from the value of the `raise' property. */
2443 short voffset;
2445 /* Number of columns per \t. */
2446 short tab_width;
2448 /* Value of the `height' property, if any; nil if none. */
2449 Lisp_Object font_height;
2451 /* Object and position where the current display element came from.
2452 Object is normally the buffer which is being rendered, but it can
2453 also be a Lisp string in case the current display element comes
2454 from an overlay string or from a display string (before- or
2455 after-string). It may also be nil when a C string is being
2456 rendered, e.g., during mode-line or header-line update. It can
2457 also be a cons cell of the form `(space ...)', when we produce a
2458 stretch glyph from a `display' specification. Finally, it can be
2459 a zero-valued Lisp integer, but only temporarily, when we are
2460 producing special glyphs for display purposes, like truncation
2461 and continuation glyphs, or blanks that extend each line to the
2462 edge of the window on a TTY.
2464 Do NOT use !BUFFERP (it.object) as a test whether we are
2465 iterating over a string; use STRINGP (it.string) instead.
2467 Position is the current iterator position in object. */
2468 Lisp_Object object;
2469 struct text_pos position;
2471 /* Width in pixels of truncation and continuation glyphs. */
2472 short truncation_pixel_width, continuation_pixel_width;
2474 /* First and last visible x-position in the display area. If window
2475 is hscrolled by n columns, first_visible_x == n * FRAME_COLUMN_WIDTH
2476 (f), and last_visible_x == pixel width of W + first_visible_x. */
2477 int first_visible_x, last_visible_x;
2479 /* Last visible y-position + 1 in the display area without a mode
2480 line, if the window has one. */
2481 int last_visible_y;
2483 /* Default amount of additional space in pixels between lines (for
2484 window systems only.) */
2485 int extra_line_spacing;
2487 /* Max extra line spacing added in this row. */
2488 int max_extra_line_spacing;
2490 /* Override font height information for this glyph.
2491 Used if override_ascent >= 0. Cleared after this glyph. */
2492 int override_ascent, override_descent, override_boff;
2494 /* If non-null, glyphs are produced in glyph_row with each call to
2495 produce_glyphs. */
2496 struct glyph_row *glyph_row;
2498 /* The area of glyph_row to which glyphs are added. */
2499 enum glyph_row_area area;
2501 /* Number of glyphs needed for the last character requested via
2502 produce_glyphs. This is 1 except for tabs. */
2503 int nglyphs;
2505 /* Width of the display element in pixels. Result of
2506 produce_glyphs. */
2507 int pixel_width;
2509 /* Current, maximum logical, and maximum physical line height
2510 information. Result of produce_glyphs. */
2511 int ascent, descent, max_ascent, max_descent;
2512 int phys_ascent, phys_descent, max_phys_ascent, max_phys_descent;
2514 /* Current x pixel position within the display line. This value
2515 does not include the width of continuation lines in front of the
2516 line. The value of current_x is automatically incremented by
2517 pixel_width with each call to produce_glyphs. */
2518 int current_x;
2520 /* Accumulated width of continuation lines. If > 0, this means we
2521 are currently in a continuation line. This is initially zero and
2522 incremented/reset by display_line, move_it_to etc. */
2523 int continuation_lines_width;
2525 /* Buffer position that ends the buffer text line being iterated.
2526 This is normally the position after the newline at EOL. If this
2527 is the last line of the buffer and it doesn't have a newline,
2528 value is ZV/ZV_BYTE. Set and used only if IT->bidi_p, for
2529 setting the end position of glyph rows produced for continuation
2530 lines, see display_line. */
2531 struct text_pos eol_pos;
2533 /* Current y-position. Automatically incremented by the height of
2534 glyph_row in move_it_to and display_line. */
2535 int current_y;
2537 /* Vertical matrix position of first text line in window. */
2538 int first_vpos;
2540 /* Current vertical matrix position, or line number. Automatically
2541 incremented by move_it_to and display_line. */
2542 int vpos;
2544 /* Horizontal matrix position reached in move_it_in_display_line.
2545 Only set there, not in display_line. */
2546 int hpos;
2548 /* Left fringe bitmap number (enum fringe_bitmap_type). */
2549 unsigned left_user_fringe_bitmap : FRINGE_ID_BITS;
2551 /* Right fringe bitmap number (enum fringe_bitmap_type). */
2552 unsigned right_user_fringe_bitmap : FRINGE_ID_BITS;
2554 /* Face of the left fringe glyph. */
2555 unsigned left_user_fringe_face_id : FACE_ID_BITS;
2557 /* Face of the right fringe glyph. */
2558 unsigned right_user_fringe_face_id : FACE_ID_BITS;
2560 /* Non-zero means we need to reorder bidirectional text for display
2561 in the visual order. */
2562 unsigned bidi_p : 1;
2564 /* For iterating over bidirectional text. */
2565 struct bidi_it bidi_it;
2566 bidi_dir_t paragraph_embedding;
2570 /* Access to positions of iterator IT. */
2572 #define IT_CHARPOS(IT) CHARPOS ((IT).current.pos)
2573 #define IT_BYTEPOS(IT) BYTEPOS ((IT).current.pos)
2574 #define IT_STRING_CHARPOS(IT) CHARPOS ((IT).current.string_pos)
2575 #define IT_STRING_BYTEPOS(IT) BYTEPOS ((IT).current.string_pos)
2577 /* Test if IT has reached the end of its buffer or string. This will
2578 only work after get_next_display_element has been called. */
2580 #define ITERATOR_AT_END_P(IT) ((IT)->what == IT_EOB)
2582 /* Non-zero means IT is at the end of a line. This is the case if it
2583 is either on a newline or on a carriage return and selective
2584 display hides the rest of the line. */
2586 #define ITERATOR_AT_END_OF_LINE_P(IT) \
2587 ((IT)->what == IT_CHARACTER \
2588 && ((IT)->c == '\n' \
2589 || ((IT)->c == '\r' && (IT)->selective)))
2591 /* Call produce_glyphs or FRAME_RIF->produce_glyphs, if set. Shortcut
2592 to avoid the function call overhead. */
2594 #define PRODUCE_GLYPHS(IT) \
2595 do { \
2596 if ((IT)->glyph_row != NULL && (IT)->bidi_p) \
2598 if ((IT)->bidi_it.paragraph_dir == R2L) \
2599 (IT)->glyph_row->reversed_p = 1; \
2600 else \
2601 (IT)->glyph_row->reversed_p = 0; \
2603 if (FRAME_RIF ((IT)->f) != NULL) \
2604 FRAME_RIF ((IT)->f)->produce_glyphs ((IT)); \
2605 else \
2606 produce_glyphs ((IT)); \
2607 if ((IT)->glyph_row != NULL) \
2608 inhibit_free_realized_faces = 1; \
2609 } while (0)
2611 /* Bit-flags indicating what operation move_it_to should perform. */
2613 enum move_operation_enum
2615 /* Stop if specified x-position is reached. */
2616 MOVE_TO_X = 0x01,
2618 /* Stop if specified y-position is reached. */
2619 MOVE_TO_Y = 0x02,
2621 /* Stop if specified vpos is reached. */
2622 MOVE_TO_VPOS = 0x04,
2624 /* Stop if specified buffer or string position is reached. */
2625 MOVE_TO_POS = 0x08
2630 /***********************************************************************
2631 Window-based redisplay interface
2632 ***********************************************************************/
2634 /* Structure used to describe runs of lines that must be scrolled. */
2636 struct run
2638 /* Source and destination y pixel position. */
2639 int desired_y, current_y;
2641 /* Source and destination vpos in matrix. */
2642 int desired_vpos, current_vpos;
2644 /* Height in pixels, number of glyph rows. */
2645 int height, nrows;
2649 /* Handlers for setting frame parameters. */
2651 typedef void (*frame_parm_handler) (struct frame *, Lisp_Object, Lisp_Object);
2654 /* Structure holding system-dependent interface functions needed
2655 for window-based redisplay. */
2657 struct redisplay_interface
2659 /* Handlers for setting frame parameters. */
2660 frame_parm_handler *frame_parm_handlers;
2662 /* Produce glyphs/get display metrics for the display element IT is
2663 loaded with. */
2664 void (*produce_glyphs) (struct it *it);
2666 /* Write or insert LEN glyphs from STRING at the nominal output
2667 position. */
2668 void (*write_glyphs) (struct glyph *string, int len);
2669 void (*insert_glyphs) (struct glyph *start, int len);
2671 /* Clear from nominal output position to X. X < 0 means clear
2672 to right end of display. */
2673 void (*clear_end_of_line) (int x);
2675 /* Function to call to scroll the display as described by RUN on
2676 window W. */
2677 void (*scroll_run_hook) (struct window *w, struct run *run);
2679 /* Function to call after a line in a display has been completely
2680 updated. Used to draw truncation marks and alike. DESIRED_ROW
2681 is the desired row which has been updated. */
2682 void (*after_update_window_line_hook) (struct glyph_row *desired_row);
2684 /* Function to call before beginning to update window W in
2685 window-based redisplay. */
2686 void (*update_window_begin_hook) (struct window *w);
2688 /* Function to call after window W has been updated in window-based
2689 redisplay. CURSOR_ON_P non-zero means switch cursor on.
2690 MOUSE_FACE_OVERWRITTEN_P non-zero means that some lines in W
2691 that contained glyphs in mouse-face were overwritten, so we
2692 have to update the mouse highlight. */
2693 void (*update_window_end_hook) (struct window *w, int cursor_on_p,
2694 int mouse_face_overwritten_p);
2696 /* Move cursor to row/column position VPOS/HPOS, pixel coordinates
2697 Y/X. HPOS/VPOS are window-relative row and column numbers and X/Y
2698 are window-relative pixel positions. */
2699 void (*cursor_to) (int vpos, int hpos, int y, int x);
2701 /* Flush the display of frame F. For X, this is XFlush. */
2702 void (*flush_display) (struct frame *f);
2704 /* Flush the display of frame F if non-NULL. This is called
2705 during redisplay, and should be NULL on systems which flush
2706 automatically before reading input. */
2707 void (*flush_display_optional) (struct frame *f);
2709 /* Clear the mouse highlight in window W, if there is any. */
2710 void (*clear_window_mouse_face) (struct window *w);
2712 /* Set *LEFT and *RIGHT to the left and right overhang of GLYPH on
2713 frame F. */
2714 void (*get_glyph_overhangs) (struct glyph *glyph, struct frame *f,
2715 int *left, int *right);
2717 /* Fix the display of AREA of ROW in window W for overlapping rows.
2718 This function is called from redraw_overlapping_rows after
2719 desired rows have been made current. */
2720 void (*fix_overlapping_area) (struct window *w, struct glyph_row *row,
2721 enum glyph_row_area area, int);
2723 #ifdef HAVE_WINDOW_SYSTEM
2725 /* Draw a fringe bitmap in window W of row ROW using parameters P. */
2726 void (*draw_fringe_bitmap) (struct window *w, struct glyph_row *row,
2727 struct draw_fringe_bitmap_params *p);
2729 /* Define and destroy fringe bitmap no. WHICH. */
2730 void (*define_fringe_bitmap) (int which, unsigned short *bits,
2731 int h, int wd);
2732 void (*destroy_fringe_bitmap) (int which);
2734 /* Compute left and right overhang of glyph string S.
2735 A NULL pointer if platform does not support this. */
2736 void (*compute_glyph_string_overhangs) (struct glyph_string *s);
2738 /* Draw a glyph string S. */
2739 void (*draw_glyph_string) (struct glyph_string *s);
2741 /* Define cursor CURSOR on frame F. */
2742 void (*define_frame_cursor) (struct frame *f, Cursor cursor);
2744 /* Clear the area at (X,Y,WIDTH,HEIGHT) of frame F. */
2745 void (*clear_frame_area) (struct frame *f, int x, int y,
2746 int width, int height);
2748 /* Draw specified cursor CURSOR_TYPE of width CURSOR_WIDTH
2749 at row GLYPH_ROW on window W if ON_P is 1. If ON_P is
2750 0, don't draw cursor. If ACTIVE_P is 1, system caret
2751 should track this cursor (when applicable). */
2752 void (*draw_window_cursor) (struct window *w,
2753 struct glyph_row *glyph_row,
2754 int x, int y,
2755 int cursor_type, int cursor_width,
2756 int on_p, int active_p);
2758 /* Draw vertical border for window W from (X,Y_0) to (X,Y_1). */
2759 void (*draw_vertical_window_border) (struct window *w,
2760 int x, int y_0, int y_1);
2762 /* Shift display of frame F to make room for inserted glyphs.
2763 The area at pixel (X,Y) of width WIDTH and height HEIGHT is
2764 shifted right by SHIFT_BY pixels. */
2765 void (*shift_glyphs_for_insert) (struct frame *f,
2766 int x, int y, int width,
2767 int height, int shift_by);
2769 #endif /* HAVE_WINDOW_SYSTEM */
2773 /***********************************************************************
2774 Images
2775 ***********************************************************************/
2777 #ifdef HAVE_WINDOW_SYSTEM
2779 /* Structure forward declarations. */
2781 struct image;
2784 /* Each image format (JPEG, TIFF, ...) supported is described by
2785 a structure of the type below. */
2787 struct image_type
2789 /* A symbol uniquely identifying the image type, .e.g `jpeg'. */
2790 Lisp_Object *type;
2792 /* Check that SPEC is a valid image specification for the given
2793 image type. Value is true if SPEC is valid. */
2794 bool (* valid_p) (Lisp_Object spec);
2796 /* Load IMG which is used on frame F from information contained in
2797 IMG->spec. Value is true if successful. */
2798 bool (* load) (struct frame *f, struct image *img);
2800 /* Free resources of image IMG which is used on frame F. */
2801 void (* free) (struct frame *f, struct image *img);
2803 /* Initialization function (used for dynamic loading of image
2804 libraries on Windows), or NULL if none. */
2805 bool (* init) (void);
2807 /* Next in list of all supported image types. */
2808 struct image_type *next;
2812 /* Structure describing an image. Specific image formats like XBM are
2813 converted into this form, so that display only has to deal with
2814 this type of image. */
2816 struct image
2818 /* The time in seconds at which the image was last displayed. Set
2819 in prepare_image_for_display. */
2820 EMACS_TIME timestamp;
2822 /* Pixmaps of the image. */
2823 Pixmap pixmap, mask;
2825 /* Colors allocated for this image, if any. Allocated via xmalloc. */
2826 unsigned long *colors;
2827 int ncolors;
2829 /* A single `background color' for this image, for the use of anyone that
2830 cares about such a thing. Only valid if the `background_valid' field
2831 is true. This should generally be accessed by calling the accessor
2832 macro `IMAGE_BACKGROUND', which will heuristically calculate a value
2833 if necessary. */
2834 unsigned long background;
2836 /* Foreground and background colors of the frame on which the image
2837 is created. */
2838 unsigned long frame_foreground, frame_background;
2840 /* True if this image has a `transparent' background -- that is, is
2841 uses an image mask. The accessor macro for this is
2842 `IMAGE_BACKGROUND_TRANSPARENT'. */
2843 unsigned background_transparent : 1;
2845 /* True if the `background' and `background_transparent' fields are
2846 valid, respectively. */
2847 unsigned background_valid : 1, background_transparent_valid : 1;
2849 /* Width and height of the image. */
2850 int width, height;
2852 /* These values are used for the rectangles displayed for images
2853 that can't be loaded. */
2854 #define DEFAULT_IMAGE_WIDTH 30
2855 #define DEFAULT_IMAGE_HEIGHT 30
2857 /* Top/left and bottom/right corner pixel of actual image data.
2858 Used by four_corners_best to consider the real image data,
2859 rather than looking at the optional image margin. */
2860 int corners[4];
2861 #define TOP_CORNER 0
2862 #define LEFT_CORNER 1
2863 #define BOT_CORNER 2
2864 #define RIGHT_CORNER 3
2866 /* Percent of image height used as ascent. A value of
2867 CENTERED_IMAGE_ASCENT means draw the image centered on the
2868 line. */
2869 int ascent;
2870 #define DEFAULT_IMAGE_ASCENT 50
2871 #define CENTERED_IMAGE_ASCENT -1
2873 /* Lisp specification of this image. */
2874 Lisp_Object spec;
2876 /* List of "references" followed to build the image.
2877 Typically will just contain the name of the image file.
2878 Used to allow fine-grained cache flushing. */
2879 Lisp_Object dependencies;
2881 /* Relief to draw around the image. */
2882 int relief;
2884 /* Optional margins around the image. This includes the relief. */
2885 int hmargin, vmargin;
2887 /* Reference to the type of the image. */
2888 struct image_type *type;
2890 /* 1 means that loading the image failed. Don't try again. */
2891 unsigned load_failed_p;
2893 /* A place for image types to store additional data. It is marked
2894 during GC. */
2895 Lisp_Object lisp_data;
2897 /* Hash value of image specification to speed up comparisons. */
2898 EMACS_UINT hash;
2900 /* Image id of this image. */
2901 ptrdiff_t id;
2903 /* Hash collision chain. */
2904 struct image *next, *prev;
2908 /* Cache of images. Each frame has a cache. X frames with the same
2909 x_display_info share their caches. */
2911 struct image_cache
2913 /* Hash table of images. */
2914 struct image **buckets;
2916 /* Vector mapping image ids to images. */
2917 struct image **images;
2919 /* Allocated size of `images'. */
2920 ptrdiff_t size;
2922 /* Number of images in the cache. */
2923 ptrdiff_t used;
2925 /* Reference count (number of frames sharing this cache). */
2926 ptrdiff_t refcount;
2930 /* Value is a pointer to the image with id ID on frame F, or null if
2931 no image with that id exists. */
2933 #define IMAGE_FROM_ID(F, ID) \
2934 (((ID) >= 0 && (ID) < (FRAME_IMAGE_CACHE (F)->used)) \
2935 ? FRAME_IMAGE_CACHE (F)->images[ID] \
2936 : NULL)
2938 /* Size of bucket vector of image caches. Should be prime. */
2940 #define IMAGE_CACHE_BUCKETS_SIZE 1001
2942 #endif /* HAVE_WINDOW_SYSTEM */
2946 /***********************************************************************
2947 Tool-bars
2948 ***********************************************************************/
2950 /* Enumeration defining where to find tool-bar item information in
2951 tool-bar items vectors stored with frames. Each tool-bar item
2952 occupies TOOL_BAR_ITEM_NSLOTS elements in such a vector. */
2954 enum tool_bar_item_idx
2956 /* The key of the tool-bar item. Used to remove items when a binding
2957 for `undefined' is found. */
2958 TOOL_BAR_ITEM_KEY,
2960 /* Non-nil if item is enabled. */
2961 TOOL_BAR_ITEM_ENABLED_P,
2963 /* Non-nil if item is selected (pressed). */
2964 TOOL_BAR_ITEM_SELECTED_P,
2966 /* Caption. */
2967 TOOL_BAR_ITEM_CAPTION,
2969 /* Image(s) to display. This is either a single image specification
2970 or a vector of specifications. */
2971 TOOL_BAR_ITEM_IMAGES,
2973 /* The binding. */
2974 TOOL_BAR_ITEM_BINDING,
2976 /* Button type. One of nil (default button), t (a separator),
2977 `:radio', or `:toggle'. The latter two currently do nothing. */
2978 TOOL_BAR_ITEM_TYPE,
2980 /* Help string. */
2981 TOOL_BAR_ITEM_HELP,
2983 /* Icon file name of right to left image when an RTL locale is used. */
2984 TOOL_BAR_ITEM_RTL_IMAGE,
2986 /* Label to show when text labels are enabled. */
2987 TOOL_BAR_ITEM_LABEL,
2989 /* If we shall show the label only below the icon and not beside it. */
2990 TOOL_BAR_ITEM_VERT_ONLY,
2992 /* Sentinel = number of slots in tool_bar_items occupied by one
2993 tool-bar item. */
2994 TOOL_BAR_ITEM_NSLOTS
2998 /* An enumeration for the different images that can be specified
2999 for a tool-bar item. */
3001 enum tool_bar_item_image
3003 TOOL_BAR_IMAGE_ENABLED_SELECTED,
3004 TOOL_BAR_IMAGE_ENABLED_DESELECTED,
3005 TOOL_BAR_IMAGE_DISABLED_SELECTED,
3006 TOOL_BAR_IMAGE_DISABLED_DESELECTED
3009 #define DEFAULT_TOOL_BAR_LABEL_SIZE 14
3011 /* Default values of the above variables. */
3013 #define DEFAULT_TOOL_BAR_BUTTON_MARGIN 4
3014 #define DEFAULT_TOOL_BAR_BUTTON_RELIEF 1
3016 /* The height in pixels of the default tool-bar images. */
3018 #define DEFAULT_TOOL_BAR_IMAGE_HEIGHT 24
3021 /***********************************************************************
3022 Terminal Capabilities
3023 ***********************************************************************/
3025 /* Each of these is a bit representing a terminal `capability' (bold,
3026 inverse, etc). They are or'd together to specify the set of
3027 capabilities being queried for when calling `tty_capable_p' (which
3028 returns true if the terminal supports all of them). */
3030 #define TTY_CAP_INVERSE 0x01
3031 #define TTY_CAP_UNDERLINE 0x02
3032 #define TTY_CAP_BOLD 0x04
3033 #define TTY_CAP_DIM 0x08
3034 #define TTY_CAP_ITALIC 0x10
3037 /***********************************************************************
3038 Function Prototypes
3039 ***********************************************************************/
3041 /* Defined in bidi.c */
3043 extern void bidi_init_it (ptrdiff_t, ptrdiff_t, bool, struct bidi_it *);
3044 extern void bidi_move_to_visually_next (struct bidi_it *);
3045 extern void bidi_paragraph_init (bidi_dir_t, struct bidi_it *, bool);
3046 extern int bidi_mirror_char (int);
3047 extern void bidi_push_it (struct bidi_it *);
3048 extern void bidi_pop_it (struct bidi_it *);
3049 extern void *bidi_shelve_cache (void);
3050 extern void bidi_unshelve_cache (void *, bool);
3052 /* Defined in xdisp.c */
3054 struct glyph_row *row_containing_pos (struct window *, ptrdiff_t,
3055 struct glyph_row *,
3056 struct glyph_row *, int);
3057 int line_bottom_y (struct it *);
3058 int display_prop_intangible_p (Lisp_Object, Lisp_Object, ptrdiff_t, ptrdiff_t);
3059 void resize_echo_area_exactly (void);
3060 int resize_mini_window (struct window *, int);
3061 #if defined USE_TOOLKIT_SCROLL_BARS && !defined USE_GTK
3062 void set_vertical_scroll_bar (struct window *);
3063 #endif
3064 int try_window (Lisp_Object, struct text_pos, int);
3065 void window_box (struct window *, int, int *, int *, int *, int *);
3066 int window_box_height (struct window *);
3067 int window_text_bottom_y (struct window *);
3068 int window_box_width (struct window *, int);
3069 int window_box_left (struct window *, int);
3070 int window_box_left_offset (struct window *, int);
3071 int window_box_right (struct window *, int);
3072 int window_box_right_offset (struct window *, int);
3073 int estimate_mode_line_height (struct frame *, enum face_id);
3074 void pixel_to_glyph_coords (struct frame *, int, int, int *, int *,
3075 NativeRectangle *, int);
3076 void remember_mouse_glyph (struct frame *, int, int, NativeRectangle *);
3078 void mark_window_display_accurate (Lisp_Object, int);
3079 void redisplay_preserve_echo_area (int);
3080 void init_iterator (struct it *, struct window *, ptrdiff_t,
3081 ptrdiff_t, struct glyph_row *, enum face_id);
3082 void init_iterator_to_row_start (struct it *, struct window *,
3083 struct glyph_row *);
3084 void start_display (struct it *, struct window *, struct text_pos);
3085 void move_it_to (struct it *, ptrdiff_t, int, int, int, int);
3086 void move_it_vertically (struct it *, int);
3087 void move_it_vertically_backward (struct it *, int);
3088 void move_it_by_lines (struct it *, ptrdiff_t);
3089 void move_it_past_eol (struct it *);
3090 void move_it_in_display_line (struct it *it,
3091 ptrdiff_t to_charpos, int to_x,
3092 enum move_operation_enum op);
3093 int in_display_vector_p (struct it *);
3094 int frame_mode_line_height (struct frame *);
3095 extern Lisp_Object Qtool_bar;
3096 extern bool redisplaying_p;
3097 extern int help_echo_showing_p;
3098 extern int current_mode_line_height, current_header_line_height;
3099 extern Lisp_Object help_echo_string, help_echo_window;
3100 extern Lisp_Object help_echo_object, previous_help_echo_string;
3101 extern ptrdiff_t help_echo_pos;
3102 extern struct frame *last_mouse_frame;
3103 extern int last_tool_bar_item;
3104 extern void reseat_at_previous_visible_line_start (struct it *);
3105 extern Lisp_Object lookup_glyphless_char_display (int, struct it *);
3106 extern ptrdiff_t compute_display_string_pos (struct text_pos *,
3107 struct bidi_string_data *,
3108 int, int *);
3109 extern ptrdiff_t compute_display_string_end (ptrdiff_t,
3110 struct bidi_string_data *);
3111 extern void produce_stretch_glyph (struct it *);
3113 #ifdef HAVE_WINDOW_SYSTEM
3115 #ifdef GLYPH_DEBUG
3116 extern void dump_glyph_string (struct glyph_string *) EXTERNALLY_VISIBLE;
3117 #endif
3119 extern void x_get_glyph_overhangs (struct glyph *, struct frame *,
3120 int *, int *);
3121 extern void x_produce_glyphs (struct it *);
3123 extern void x_write_glyphs (struct glyph *, int);
3124 extern void x_insert_glyphs (struct glyph *, int len);
3125 extern void x_clear_end_of_line (int);
3127 extern struct cursor_pos output_cursor;
3129 extern void x_fix_overlapping_area (struct window *, struct glyph_row *,
3130 enum glyph_row_area, int);
3131 extern void draw_phys_cursor_glyph (struct window *,
3132 struct glyph_row *,
3133 enum draw_glyphs_face);
3134 extern void get_phys_cursor_geometry (struct window *, struct glyph_row *,
3135 struct glyph *, int *, int *, int *);
3136 extern void erase_phys_cursor (struct window *);
3137 extern void display_and_set_cursor (struct window *,
3138 int, int, int, int, int);
3140 extern void set_output_cursor (struct cursor_pos *);
3141 extern void x_cursor_to (int, int, int, int);
3143 extern void x_update_cursor (struct frame *, int);
3144 extern void x_clear_cursor (struct window *);
3145 extern void x_draw_vertical_border (struct window *w);
3147 extern int get_glyph_string_clip_rects (struct glyph_string *,
3148 NativeRectangle *, int);
3149 extern void get_glyph_string_clip_rect (struct glyph_string *,
3150 NativeRectangle *nr);
3151 extern Lisp_Object find_hot_spot (Lisp_Object, int, int);
3153 extern void handle_tool_bar_click (struct frame *,
3154 int, int, int, int);
3156 extern void expose_frame (struct frame *, int, int, int, int);
3157 extern int x_intersect_rectangles (XRectangle *, XRectangle *,
3158 XRectangle *);
3159 #endif /* HAVE_WINDOW_SYSTEM */
3161 extern void note_mouse_highlight (struct frame *, int, int);
3162 extern void x_clear_window_mouse_face (struct window *);
3163 extern void cancel_mouse_face (struct frame *);
3164 extern int clear_mouse_face (Mouse_HLInfo *);
3165 extern int cursor_in_mouse_face_p (struct window *w);
3166 extern void tty_draw_row_with_mouse_face (struct window *, struct glyph_row *,
3167 int, int, enum draw_glyphs_face);
3169 /* Flags passed to try_window. */
3170 #define TRY_WINDOW_CHECK_MARGINS (1 << 0)
3171 #define TRY_WINDOW_IGNORE_FONTS_CHANGE (1 << 1)
3173 int lookup_fringe_bitmap (Lisp_Object);
3174 void draw_fringe_bitmap (struct window *, struct glyph_row *, int);
3175 void draw_row_fringe_bitmaps (struct window *, struct glyph_row *);
3176 int draw_window_fringes (struct window *, int);
3177 int update_window_fringes (struct window *, int);
3178 void compute_fringe_widths (struct frame *, int);
3180 #ifdef HAVE_NTGUI
3181 void w32_init_fringe (struct redisplay_interface *);
3182 void w32_reset_fringes (void);
3183 #endif
3185 extern unsigned row_hash (struct glyph_row *);
3187 /* Defined in image.c */
3189 #ifdef HAVE_WINDOW_SYSTEM
3191 extern int x_bitmap_height (struct frame *, ptrdiff_t);
3192 extern int x_bitmap_width (struct frame *, ptrdiff_t);
3193 extern ptrdiff_t x_bitmap_pixmap (struct frame *, ptrdiff_t);
3194 extern void x_reference_bitmap (struct frame *, ptrdiff_t);
3195 extern ptrdiff_t x_create_bitmap_from_data (struct frame *, char *,
3196 unsigned int, unsigned int);
3197 extern ptrdiff_t x_create_bitmap_from_file (struct frame *, Lisp_Object);
3198 #if defined HAVE_XPM && defined HAVE_X_WINDOWS && !defined USE_GTK
3199 extern ptrdiff_t x_create_bitmap_from_xpm_data (struct frame *, const char **);
3200 #endif
3201 #ifndef x_destroy_bitmap
3202 extern void x_destroy_bitmap (struct frame *, ptrdiff_t);
3203 #endif
3204 extern void x_destroy_all_bitmaps (Display_Info *);
3205 extern void x_create_bitmap_mask (struct frame *, ptrdiff_t);
3206 extern Lisp_Object x_find_image_file (Lisp_Object);
3208 void x_kill_gs_process (Pixmap, struct frame *);
3209 struct image_cache *make_image_cache (void);
3210 void free_image_cache (struct frame *);
3211 void clear_image_caches (Lisp_Object);
3212 void mark_image_cache (struct image_cache *);
3213 bool valid_image_p (Lisp_Object);
3214 void prepare_image_for_display (struct frame *, struct image *);
3215 ptrdiff_t lookup_image (struct frame *, Lisp_Object);
3217 unsigned long image_background (struct image *, struct frame *,
3218 XImagePtr_or_DC ximg);
3219 int image_background_transparent (struct image *, struct frame *,
3220 XImagePtr_or_DC mask);
3222 int image_ascent (struct image *, struct face *, struct glyph_slice *);
3224 #endif
3226 /* Defined in sysdep.c */
3228 void get_tty_size (int, int *, int *);
3229 void request_sigio (void);
3230 void unrequest_sigio (void);
3231 int tabs_safe_p (int);
3232 void init_baud_rate (int);
3233 void init_sigio (int);
3234 void ignore_sigio (void);
3236 /* Defined in xfaces.c */
3238 #ifdef HAVE_X_WINDOWS
3239 void x_free_colors (struct frame *, unsigned long *, int);
3240 #endif
3242 void update_face_from_frame_parameter (struct frame *, Lisp_Object,
3243 Lisp_Object);
3244 Lisp_Object tty_color_name (struct frame *, int);
3245 void clear_face_cache (int);
3246 unsigned long load_color (struct frame *, struct face *, Lisp_Object,
3247 enum lface_attribute_index);
3248 void unload_color (struct frame *, unsigned long);
3249 char *choose_face_font (struct frame *, Lisp_Object *, Lisp_Object,
3250 int *);
3251 void prepare_face_for_display (struct frame *, struct face *);
3252 int lookup_named_face (struct frame *, Lisp_Object, int);
3253 int lookup_basic_face (struct frame *, int);
3254 int smaller_face (struct frame *, int, int);
3255 int face_with_height (struct frame *, int, int);
3256 int lookup_derived_face (struct frame *, Lisp_Object, int, int);
3257 void init_frame_faces (struct frame *);
3258 void free_frame_faces (struct frame *);
3259 void recompute_basic_faces (struct frame *);
3260 int face_at_buffer_position (struct window *w, ptrdiff_t pos,
3261 ptrdiff_t region_beg, ptrdiff_t region_end,
3262 ptrdiff_t *endptr, ptrdiff_t limit,
3263 int mouse, int base_face_id);
3264 int face_for_overlay_string (struct window *w, ptrdiff_t pos,
3265 ptrdiff_t region_beg, ptrdiff_t region_end,
3266 ptrdiff_t *endptr, ptrdiff_t limit,
3267 int mouse, Lisp_Object overlay);
3268 int face_at_string_position (struct window *w, Lisp_Object string,
3269 ptrdiff_t pos, ptrdiff_t bufpos,
3270 ptrdiff_t region_beg, ptrdiff_t region_end,
3271 ptrdiff_t *endptr, enum face_id, int mouse);
3272 int merge_faces (struct frame *, Lisp_Object, int, int);
3273 int compute_char_face (struct frame *, int, Lisp_Object);
3274 void free_all_realized_faces (Lisp_Object);
3275 extern Lisp_Object Qforeground_color, Qbackground_color;
3276 extern char unspecified_fg[], unspecified_bg[];
3278 /* Defined in xfns.c */
3280 #ifdef HAVE_X_WINDOWS
3281 void gamma_correct (struct frame *, XColor *);
3282 #endif
3283 #ifdef HAVE_NTGUI
3284 void gamma_correct (struct frame *, COLORREF *);
3285 #endif
3287 #ifdef HAVE_WINDOW_SYSTEM
3289 void x_implicitly_set_name (struct frame *, Lisp_Object, Lisp_Object);
3291 extern Lisp_Object tip_frame;
3292 extern Window tip_window;
3293 extern frame_parm_handler x_frame_parm_handlers[];
3295 extern void start_hourglass (void);
3296 extern void cancel_hourglass (void);
3297 extern int hourglass_shown_p;
3299 struct atimer; /* Defined in atimer.h. */
3300 /* If non-null, an asynchronous timer that, when it expires, displays
3301 an hourglass cursor on all frames. */
3302 extern struct atimer *hourglass_atimer;
3304 /* Each GUI implements these. FIXME: move into RIF. */
3305 extern void show_hourglass (struct atimer *);
3306 extern void hide_hourglass (void);
3308 /* Returns the background color of IMG, calculating one heuristically if
3309 necessary. If non-zero, XIMG is an existing XImage object to use for
3310 the heuristic. */
3312 #define IMAGE_BACKGROUND(img, f, ximg) \
3313 ((img)->background_valid \
3314 ? (img)->background \
3315 : image_background (img, f, ximg))
3317 /* Returns true if IMG has a `transparent' background, using heuristics
3318 to decide if necessary. If non-zero, MASK is an existing XImage
3319 object to use for the heuristic. */
3321 #define IMAGE_BACKGROUND_TRANSPARENT(img, f, mask) \
3322 ((img)->background_transparent_valid \
3323 ? (img)->background_transparent \
3324 : image_background_transparent (img, f, mask))
3326 #endif /* HAVE_WINDOW_SYSTEM */
3329 /* Defined in xmenu.c */
3331 int popup_activated (void);
3333 extern Lisp_Object buffer_posn_from_coords (struct window *,
3334 int *, int *,
3335 struct display_pos *,
3336 Lisp_Object *,
3337 int *, int *, int *, int *);
3338 extern Lisp_Object mode_line_string (struct window *, enum window_part,
3339 int *, int *, ptrdiff_t *,
3340 Lisp_Object *,
3341 int *, int *, int *, int *);
3342 extern Lisp_Object marginal_area_string (struct window *, enum window_part,
3343 int *, int *, ptrdiff_t *,
3344 Lisp_Object *,
3345 int *, int *, int *, int *);
3346 extern void redraw_frame (struct frame *);
3347 extern void cancel_line (int, struct frame *);
3348 extern void init_desired_glyphs (struct frame *);
3349 extern bool update_frame (struct frame *, bool, bool);
3350 extern void bitch_at_user (void);
3351 void adjust_glyphs (struct frame *);
3352 void free_glyphs (struct frame *);
3353 void free_window_matrices (struct window *);
3354 void check_glyph_memory (void);
3355 void mirrored_line_dance (struct glyph_matrix *, int, int, int *, char *);
3356 void clear_glyph_matrix (struct glyph_matrix *);
3357 void clear_current_matrices (struct frame *f);
3358 void clear_desired_matrices (struct frame *);
3359 void shift_glyph_matrix (struct window *, struct glyph_matrix *,
3360 int, int, int);
3361 void rotate_matrix (struct glyph_matrix *, int, int, int);
3362 void increment_matrix_positions (struct glyph_matrix *,
3363 int, int, ptrdiff_t, ptrdiff_t);
3364 void blank_row (struct window *, struct glyph_row *, int);
3365 void clear_glyph_matrix_rows (struct glyph_matrix *, int, int);
3366 void clear_glyph_row (struct glyph_row *);
3367 void prepare_desired_row (struct glyph_row *);
3368 void set_window_update_flags (struct window *, bool);
3369 void update_single_window (struct window *, bool);
3370 void do_pending_window_change (bool);
3371 void change_frame_size (struct frame *, int, int, bool, bool, bool);
3372 void init_display (void);
3373 void syms_of_display (void);
3374 extern Lisp_Object Qredisplay_dont_pause;
3375 void spec_glyph_lookup_face (struct window *, GLYPH *);
3377 /* Defined in terminal.c */
3379 extern void ring_bell (struct frame *);
3380 extern void update_begin (struct frame *);
3381 extern void update_end (struct frame *);
3382 extern void set_terminal_window (struct frame *, int);
3383 extern void cursor_to (struct frame *, int, int);
3384 extern void raw_cursor_to (struct frame *, int, int);
3385 extern void clear_to_end (struct frame *);
3386 extern void clear_frame (struct frame *);
3387 extern void clear_end_of_line (struct frame *, int);
3388 extern void write_glyphs (struct frame *, struct glyph *, int);
3389 extern void insert_glyphs (struct frame *, struct glyph *, int);
3390 extern void delete_glyphs (struct frame *, int);
3391 extern void ins_del_lines (struct frame *, int, int);
3393 extern struct terminal *init_initial_terminal (void);
3396 /* Defined in term.c */
3398 extern void tty_turn_off_insert (struct tty_display_info *);
3399 extern int string_cost (const char *);
3400 extern int per_line_cost (const char *);
3401 extern void calculate_costs (struct frame *);
3402 extern void produce_glyphs (struct it *);
3403 extern int tty_capable_p (struct tty_display_info *, unsigned, unsigned long, unsigned long);
3404 extern void set_tty_color_mode (struct tty_display_info *, struct frame *);
3405 extern struct terminal *get_named_tty (const char *);
3406 extern void create_tty_output (struct frame *);
3407 extern struct terminal *init_tty (const char *, const char *, int);
3408 extern void tty_append_glyph (struct it *);
3411 /* Defined in scroll.c */
3413 extern int scrolling_max_lines_saved (int, int, int *, int *, int *);
3414 extern void do_line_insertion_deletion_costs (struct frame *, const char *,
3415 const char *, const char *,
3416 const char *, const char *,
3417 const char *, int);
3418 void scrolling_1 (struct frame *, int, int, int, int *, int *, int *,
3419 int *, int);
3421 /* Defined in frame.c */
3423 #ifdef HAVE_WINDOW_SYSTEM
3425 /* Types we might convert a resource string into. */
3426 enum resource_types
3428 RES_TYPE_NUMBER,
3429 RES_TYPE_FLOAT,
3430 RES_TYPE_BOOLEAN,
3431 RES_TYPE_STRING,
3432 RES_TYPE_SYMBOL,
3433 RES_TYPE_BOOLEAN_NUMBER
3436 extern Lisp_Object x_get_arg (Display_Info *, Lisp_Object,
3437 Lisp_Object, const char *, const char *class,
3438 enum resource_types);
3439 extern Lisp_Object x_frame_get_and_record_arg (struct frame *, Lisp_Object,
3440 Lisp_Object,
3441 const char *, const char *,
3442 enum resource_types);
3443 extern Lisp_Object x_default_parameter (struct frame *, Lisp_Object,
3444 Lisp_Object, Lisp_Object,
3445 const char *, const char *,
3446 enum resource_types);
3448 #endif /* HAVE_WINDOW_SYSTEM */
3450 INLINE_HEADER_END
3452 #endif /* not DISPEXTERN_H_INCLUDED */