annotate src/window.h @ 54:05472e90ae02 r19-16-pre2

Import from CVS: tag r19-16-pre2
author cvs
date Mon, 13 Aug 2007 08:57:55 +0200
parents 0293115a14e9
children 131b0175ea99
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Window definitions for XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1985, 1986, 1992, 1993, 1994, 1995
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 Copyright (C) 1994, 1995 Board of Trustees, University of Illinois.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 Copyright (C) 1995, 1996 Ben Wing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 Copyright (C) 1996 Chuck Thompson.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 /* Synched up with: FSF 19.30. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 #ifndef _XEMACS_WINDOW_H_
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #define _XEMACS_WINDOW_H_
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #include "redisplay.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #include "scrollbar.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 /* All windows in use are arranged into a tree, with pointers up and down.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 Windows that are leaves of the tree are actually displayed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 and show the contents of buffers. Windows that are not leaves
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 are used for representing the way groups of leaf windows are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 arranged on the frame. Leaf windows never become non-leaves.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 They are deleted only by calling delete-window on them (but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 this can be done implicitly). Combination windows can be created
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 and deleted at any time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 A leaf window has a non-nil buffer field, and also
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 has markers in its start and pointm fields. Non-leaf windows
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 have nil in these fields.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 Non-leaf windows are either vertical or horizontal combinations.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 A vertical combination window has children that are arranged on the frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 one above the next. Its vchild field points to the uppermost child.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 The parent field of each of the children points to the vertical
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 combination window. The next field of each child points to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 child below it, or is nil for the lowest child. The prev field
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 of each child points to the child above it, or is nil for the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 highest child.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 A horizontal combination window has children that are side by side.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 Its hchild field points to the leftmost child. In each child
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 the next field points to the child to the right and the prev field
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 points to the child to the left.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 The children of a vertical combination window may be leaf windows
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 or horizontal combination windows. The children of a horizontal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 combination window may be leaf windows or vertical combination windows.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 At the top of the tree are two windows which have nil as parent.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 The second of these is minibuf_window. The first one manages all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 the frame area that is not minibuffer, and is called the root window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 Different windows can be the root at different times;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 initially the root window is a leaf window, but if more windows
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 are created then that leaf window ceases to be root and a newly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 made combination window becomes root instead.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 In any case, on screens which have an ordinary window and a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 minibuffer, prev of the minibuf window is the root window and next of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 the root window is the minibuf window. On minibufferless screens or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 minibuffer-only screens, the root window and the minibuffer window are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 one and the same, so its prev and next members are nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 A dead window has the `dead' flag set on it. Note that unlike other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 dead objects, dead windows can be made live again through restoring a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 window configuration. This means that the values in a dead window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 need to be preserved, except for those that are reconstructed by from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 the window configuration. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 struct window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 struct lcrecord_header header;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 /* The frame this window is on. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 Lisp_Object frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 /* t if this window is a minibuffer window. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 Lisp_Object mini_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 /* Following child (to right or down) at same level of tree */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 Lisp_Object next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 /* Preceding child (to left or up) at same level of tree */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 Lisp_Object prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 /* First child of this window. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 /* vchild is used if this is a vertical combination,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 hchild if this is a horizontal combination. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 Lisp_Object hchild, vchild;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 /* The window this one is a child of. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 Lisp_Object parent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 /* The upper left corner coordinates of this window,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 as integers (pixels) relative to upper left corner of frame = 0, 0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 int pixel_left;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 int pixel_top;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 /* The size of the window (in pixels) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 int pixel_height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 int pixel_width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 /* The buffer displayed in this window */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 /* Of the fields vchild, hchild and buffer, only one is non-nil. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 Lisp_Object buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 /* A marker pointing to where in the text to start displaying */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 /* need one for each set of display structures */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 Lisp_Object start[3];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 /* A marker pointing to where in the text point is in this window,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 used only when the window is not selected.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 This exists so that when multiple windows show one buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 each one can have its own value of point. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 /* need one for each set of display structures */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 Lisp_Object pointm[3];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 /* A marker pointing to where in the text the scrollbar is pointing */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 Lisp_Object sb_point;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 /* Number of columns display within the window is scrolled to the left. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 int hscroll;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 /* Number saying how recently window was selected */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 Lisp_Object use_time;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 /* text.modified of displayed buffer as of last time display completed */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 Lisp_Object last_modified[3];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 /* Value of point at that time */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 Lisp_Object last_point[3];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 /* Value of start at that time */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 Lisp_Object last_start[3];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 /* buf.face_change as of last time display completed */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 Lisp_Object last_facechange[3];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 /* face cache elements correct for this window and its current buffer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 face_cachel_dynarr *face_cachels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 /* glyph cache elements correct for this window and its current buffer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 glyph_cachel_dynarr *glyph_cachels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 /* List of starting positions for display lines. Only valid if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 buffer has not changed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 line_start_cache_dynarr *line_start_cache;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 Lisp_Object line_cache_last_updated;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 int line_cache_validation_override;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 /* Length of longest line currently displayed. Used to control the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 width of the horizontal scrollbars. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 int max_line_len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 /* Frame coords of point at that time */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 int last_point_x[3];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 int last_point_y[3];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 /* Number of characters in buffer past bottom of window,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 as of last redisplay that finished. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 /* need one for each set of display structures */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 int window_end_pos[3];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 /* Non-nil means window is marked as dedicated. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 Lisp_Object dedicated;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 /* The column number currently displayed in this window's mode line,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 or nil if column numbers are not being displayed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 Lisp_Object column_number_displayed;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 /* If redisplay in this window goes beyond this buffer position,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 must run the redisplay-end-trigger-functions. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 Lisp_Object redisplay_end_trigger;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 /* Set by redisplay to the last position seen. This is used
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 to implement the redisplay-end-trigger-functions. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 Bufpos last_redisplay_pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 /* specifier values cached in the struct window: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 /* Display-table to use for displaying chars in this window. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 Lisp_Object display_table;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 /* Thickness of modeline shadow, in pixels. If negative, draw
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 as recessed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 Lisp_Object modeline_shadow_thickness;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 /* Non-nil means to display a modeline for the buffer. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 Lisp_Object has_modeline_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 #ifdef HAVE_SCROLLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 /* Width of vertical scrollbars. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 Lisp_Object scrollbar_width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 /* Height of horizontal scrollbars. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 Lisp_Object scrollbar_height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 /* Pointer to use for vertical and horizontal scrollbars. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 Lisp_Object scrollbar_pointer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 #ifdef HAVE_TOOLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 /* Toolbar specification for each of the four positions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 This is not a size hog because the value here is not copied,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 and will be shared with the specs in the specifier. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 Lisp_Object toolbar[4];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 /* Toolbar size for each of the four positions. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 Lisp_Object toolbar_size[4];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 /* Toolbar visibility status for each of the four positions. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 Lisp_Object toolbar_visible_p[4];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 /* Caption status of toolbar. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 Lisp_Object toolbar_buttons_captioned_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 /* The following four don't really need to be cached except
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 that we need to know when they've changed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 Lisp_Object default_toolbar;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 Lisp_Object default_toolbar_width, default_toolbar_height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 Lisp_Object default_toolbar_visible_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 Lisp_Object left_margin_width, right_margin_width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 Lisp_Object minimum_line_ascent, minimum_line_descent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 Lisp_Object use_left_overflow, use_right_overflow;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 #ifdef HAVE_MENUBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 /* Visibility of menubar. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 Lisp_Object menubar_visible_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 Lisp_Object text_cursor_visible_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 /* one-bit flags: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 /* marker used when restoring a window configuration */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 unsigned int config_mark :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 /* Non-zero means window was dead. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 unsigned int dead :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 /* Non-zero means next redisplay must use the value of start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 set up for it in advance. Set by scrolling commands. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 unsigned int force_start :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 /* Non-zero means must regenerate modeline of this window */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 unsigned int redo_modeline :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 /* Non-zero means current value of `start'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 was the beginning of a line when it was chosen. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 unsigned int start_at_line_beg :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 /* new redisplay flag */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 unsigned int windows_changed :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 unsigned int shadow_thickness_changed :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 #define CURRENT_DISP 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 #define DESIRED_DISP 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 #define CMOTION_DISP 2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 struct window_mirror
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 /* Frame this mirror is on. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 struct frame *frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 /* Following child (to right or down) at same level of tree */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 struct window_mirror *next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 /* There is no prev field because we never traverse this structure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 backwards. Same goes for the parent field. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 /* First child of this window. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 /* vchild is used if this is a vertical combination,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 hchild if this is a horizontal combination. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 struct window_mirror *hchild, *vchild;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 /* Dynamic array of display lines */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 display_line_dynarr *current_display_lines;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 display_line_dynarr *desired_display_lines;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 /* Buffer current_display_lines represent. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 struct buffer *buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 #ifdef HAVE_SCROLLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 /* Scrollbars associated with window, if any. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 struct scrollbar_instance *scrollbar_vertical_instance;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 struct scrollbar_instance *scrollbar_horizontal_instance;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 /* Flag indicating whether a subwindow is currently being displayed. */
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
277 unsigned int subwindows_being_displayed :1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 /* Keep track of the truncation status in this window so we can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 detect when it has changed. #### Magic variables would be a huge
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 win here. */
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
282 unsigned int truncate_win :1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 #ifdef emacs /* some things other than emacs want the structs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 DECLARE_LRECORD (window, struct window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 #define XWINDOW(x) XRECORD (x, window, struct window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 #define XSETWINDOW(x, p) XSETRECORD (x, p, window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 #define WINDOWP(x) RECORDP (x, window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 #define GC_WINDOWP(x) GC_RECORDP (x, window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 #define CHECK_WINDOW(x) CHECK_RECORD (x, window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 #define CONCHECK_WINDOW(x) CONCHECK_RECORD (x, window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 extern Lisp_Object Qwindow_live_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 #define WINDOW_LIVE_P(x) (!(x)->dead)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 #define CHECK_LIVE_WINDOW(x) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 do { CHECK_WINDOW (x); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 if (!WINDOW_LIVE_P (XWINDOW (x))) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 dead_wrong_type_argument (Qwindow_live_p, (x)); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 #define CONCHECK_LIVE_WINDOW(x) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 do { CONCHECK_WINDOW (x); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 if (!WINDOW_LIVE_P (XWINDOW (x))) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 x = wrong_type_argument (Qwindow_live_p, (x)); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 /* 1 if W is a minibuffer window. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 #define MINI_WINDOW_P(W) (!EQ ((W)->mini_p, Qnil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 /* 1 if we are dealing with a parentless window (this includes the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 root window on a frame and the minibuffer window; both of these
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 are siblings). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 #define TOP_LEVEL_WINDOW_P(w) NILP ((w)->parent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 /* Set all redisplay flags indicating a window has changed */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 #define MARK_WINDOWS_CHANGED(w) do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 (w)->windows_changed = 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 if (!NILP (w->frame)) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 MARK_FRAME_WINDOWS_CHANGED (XFRAME (w->frame)); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 else \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 windows_changed = 1; } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 #define WINDOW_TTY_P(w) FRAME_TTY_P (XFRAME ((w)->frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 #define WINDOW_X_P(w) FRAME_X_P (XFRAME ((w)->frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 #define WINDOW_NS_P(w) FRAME_NS_P (XFRAME ((w)->frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 #define WINDOW_WIN_P(w) FRAME_WIN_P (XFRAME ((w)->frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 DECLARE_LRECORD (window_configuration, struct window_config);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 /* The minibuffer window of the selected frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 Note that you cannot test for minibufferness of an arbitrary window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 by comparing against this; but you can test for minibufferness of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 the selected window or of any window that is displayed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 extern Lisp_Object minibuf_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 /* Non-nil => window to for C-M-v to scroll
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 when the minibuffer is selected. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 extern Lisp_Object Vminibuf_scroll_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 /* Prompt to display in front of the minibuffer contents, or nil */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 extern Lisp_Object Vminibuf_prompt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 /* Depth in minibuffer invocations */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 extern int minibuf_level;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 Lisp_Object allocate_window (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 int window_char_width (struct window *, int include_margins_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 int window_char_height (struct window *, int include_gutters_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 int window_displayed_height (struct window *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 int window_is_leftmost (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 int window_is_rightmost (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 int window_truncation_on (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 int window_needs_vertical_divider (struct window *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 int window_scrollbar_width (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 int window_scrollbar_height (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 int window_modeline_height (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 int window_left_margin_width (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 int window_right_margin_width (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 int window_top_gutter_height (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 int window_bottom_gutter_height (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 int window_left_gutter_width (struct window *w, int modeline);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 int window_right_gutter_width (struct window *w, int modeline);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 int window_bottom_toolbar_height (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 void delete_all_subwindows (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 void set_window_pixheight (Lisp_Object window, int pixheight,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 int nodelete);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 void set_window_pixwidth (Lisp_Object window, int pixwidth,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 int nodelete);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 void window_scroll (Lisp_Object window, Lisp_Object n, int direction,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 Error_behavior errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 int buffer_window_count (struct buffer *b, struct frame *f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 int buffer_window_mru (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 void check_frame_size (struct frame *frame, int *rows, int *cols);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 void mark_windows_in_use (Lisp_Object window, int mark);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 struct window *decode_window (Lisp_Object window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 struct window *find_window_by_pixel_pos (unsigned int pix_x,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 unsigned int pix_y,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 Lisp_Object win);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 /* new functions to handle the window mirror */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 void free_window_mirror (struct window_mirror *mir);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 Lisp_Object real_window (struct window_mirror *mir, int no_abort);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 struct window_mirror *find_window_mirror (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 display_line_dynarr *window_display_lines (struct window *w, int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 struct buffer *window_display_buffer (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 void set_window_display_buffer (struct window *w, struct buffer *b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 void update_frame_window_mirror (struct frame *f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 int map_windows (struct frame *f,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 int (*mapfun) (struct window *w, void *closure),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 void *closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 void some_window_value_changed (Lisp_Object specifier, struct window *w,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 Lisp_Object oldval);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 #define WINDOW_FRAME(w) ((w)->frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 #define WINDOW_BUFFER(w) ((w)->buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 #define WINDOW_DEVICE(w) FRAME_DEVICE (XFRAME (WINDOW_FRAME (w)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 #define WINDOW_CONSOLE(w) DEVICE_CONSOLE (XDEVICE (WINDOW_DEVICE (w)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 /* XEmacs window size and positioning macros. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 #define WINDOW_TOP(w) ((w)->pixel_top)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 #define WINDOW_TEXT_TOP(w) (WINDOW_TOP (w) + window_top_gutter_height (w))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 #define WINDOW_BOTTOM(w) ((w)->pixel_top + (w)->pixel_height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 #define WINDOW_TEXT_BOTTOM(w) (WINDOW_BOTTOM (w) - window_bottom_gutter_height (w))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 #define WINDOW_LEFT(w) ((w)->pixel_left)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 #define WINDOW_TEXT_LEFT(w) (WINDOW_LEFT (w) + window_left_gutter_width (w, 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 #define WINDOW_MODELINE_LEFT(w) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 (WINDOW_LEFT (w) + window_left_gutter_width (w, 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 #define WINDOW_RIGHT(w) ((w)->pixel_left + (w)->pixel_width)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 #define WINDOW_TEXT_RIGHT(w) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 (WINDOW_RIGHT (w) - window_right_gutter_width (w, 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 #define WINDOW_MODELINE_RIGHT(w) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 (WINDOW_RIGHT (w) - window_right_gutter_width (w, 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 #define WINDOW_HEIGHT(w) ((w)->pixel_height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 #define WINDOW_TEXT_HEIGHT(w) (WINDOW_TEXT_BOTTOM (w) - WINDOW_TEXT_TOP (w))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 #define WINDOW_WIDTH(w) ((w)->pixel_width)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 #define WINDOW_TEXT_WIDTH(w) (WINDOW_TEXT_RIGHT (w) - WINDOW_TEXT_LEFT (w))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 #define WINDOW_HAS_MODELINE_P(w) (!NILP (w->has_modeline_p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 #define MODELINE_OFF_SHADOW_THICKNESS_ADJUSTED(win) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 abs ((!WINDOW_HAS_MODELINE_P (win) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 ? ((XINT (win->modeline_shadow_thickness) > 1) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 ? XINT (win->modeline_shadow_thickness) - 1 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 : ((XINT (win->modeline_shadow_thickness) < -1) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 ? XINT (win->modeline_shadow_thickness) + 1 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 : XINT (win->modeline_shadow_thickness))) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 : XINT (win->modeline_shadow_thickness)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 #define MODELINE_SHADOW_THICKNESS(win) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 (MODELINE_OFF_SHADOW_THICKNESS_ADJUSTED (win) > 10 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 ? 10 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 : MODELINE_OFF_SHADOW_THICKNESS_ADJUSTED (win))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 #endif /* emacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 #endif /* _XEMACS_WINDOW_H_ */