1 /* Interface definitions for display code.
2 Copyright (C) 1985, 1992 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
20 /* Nonzero means last display completed and cursor is really at
21 cursX, cursY. Zero means it was preempted. */
22 extern int display_completed
;
29 /* If this is non-zero, it is a GC we can use without modification
30 to represent this face. */
33 /* Pixel value for foreground color. */
36 /* Pixel value for background color. */
39 /* Font used for this face. */
42 /* Background stipple or bitmap used for this face. */
46 unsigned int pixmap_w
, pixmap_h
;
48 /* Whether or not to underline text in this face. */
52 /* Let's stop using this and get rid of it. */
53 typedef struct face
*FACE
;
55 #define NORMAL_FACE ((struct face *) 0)
57 #define FACE_HAS_GC(f) ((f)->gc)
58 #define FACE_GC(f) ((f)->gc)
59 #define FACE_FOREGROUND(f) ((f)->foreground)
60 #define FACE_BACKGROUND(f) ((f)->background)
61 #define FACE_FONT(f) ((f)->font)
62 #define FACE_STIPPLE(f) ((f)->stipple)
63 #define FACE_UNDERLINE_P(f) ((f)->underline)
69 #define NORMAL_FACE 0x0
70 #define HIGHLIGHT_FACE 0x1
71 #define UNDERLINE_FACE 0x2
72 #define HIGHLIGHT_UNDERLINE_FACE 0x3
74 #define FACE_HIGHLIGHT(f) ((f) & 0x1)
75 #define FACE_UNDERLINE(f) ((f) & 0x2)
79 /* This structure is used for the actual display of text on a frame.
81 There are two instantiations of it: the glyphs currently displayed,
82 and the glyphs we desire to display. The latter object is generated
83 from buffers being displayed. */
88 struct frame
*frame
; /* Frame these glyphs belong to. */
89 #endif /* MULTI_FRAME */
93 /* Contents of the frame.
94 glyphs[V][H] is the glyph at position V, H.
95 Note that glyphs[V][-1],
97 and glyphs[V][frame_width] are always '\0'. */
99 /* long vector from which the strings in `glyphs' are taken. */
100 GLYPH
*total_contents
;
102 /* When representing a desired frame,
103 enable[n] == 0 means that line n is same as current frame.
104 Between updates, all lines should be disabled.
105 When representing current frame contents,
106 enable[n] == 0 means that line n is blank. */
109 /* Everything on line n after column used[n] is considered blank. */
112 /* highlight[n] != 0 iff line n is highlighted. */
115 /* Buffer offset of this line's first char. */
118 #ifdef HAVE_X_WINDOWS
119 /* Pixel position of top left corner of line. */
123 /* Pixel width of line. */
126 /* Pixel height of line. */
129 /* Largest font ascent on this line. */
131 #endif /* HAVE_X_WINDOWS */
134 extern void get_display_line ();
135 extern Lisp_Object
sit_for ();