annotate src/window.h @ 282:c42ec1d1cded r21-0b39

Import from CVS: tag r21-0b39
author cvs
date Mon, 13 Aug 2007 10:33:18 +0200
parents c5d627a313b1
children 558f606b08ae
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;
257
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 251
diff changeset
129 /* Idem for the window's modeline */
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 251
diff changeset
130 int modeline_hscroll;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 /* Number saying how recently window was selected */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 Lisp_Object use_time;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 /* text.modified of displayed buffer as of last time display completed */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 Lisp_Object last_modified[3];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 /* Value of point at that time */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 Lisp_Object last_point[3];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 /* Value of start at that time */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 Lisp_Object last_start[3];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 /* buf.face_change as of last time display completed */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 Lisp_Object last_facechange[3];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 /* face cache elements correct for this window and its current buffer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 face_cachel_dynarr *face_cachels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 /* glyph cache elements correct for this window and its current buffer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 glyph_cachel_dynarr *glyph_cachels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 /* List of starting positions for display lines. Only valid if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 buffer has not changed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 line_start_cache_dynarr *line_start_cache;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 Lisp_Object line_cache_last_updated;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 int line_cache_validation_override;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 /* Length of longest line currently displayed. Used to control the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 width of the horizontal scrollbars. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 int max_line_len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 /* Frame coords of point at that time */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 int last_point_x[3];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 int last_point_y[3];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 /* Number of characters in buffer past bottom of window,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 as of last redisplay that finished. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 /* need one for each set of display structures */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 int window_end_pos[3];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 /* Non-nil means window is marked as dedicated. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 Lisp_Object dedicated;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 /* The column number currently displayed in this window's mode line,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 or nil if column numbers are not being displayed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 Lisp_Object column_number_displayed;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 /* If redisplay in this window goes beyond this buffer position,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 must run the redisplay-end-trigger-functions. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 Lisp_Object redisplay_end_trigger;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 /* Set by redisplay to the last position seen. This is used
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 to implement the redisplay-end-trigger-functions. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 Bufpos last_redisplay_pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 /* specifier values cached in the struct window: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 /* Display-table to use for displaying chars in this window. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 Lisp_Object display_table;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 /* Thickness of modeline shadow, in pixels. If negative, draw
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 as recessed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 Lisp_Object modeline_shadow_thickness;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 /* Non-nil means to display a modeline for the buffer. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 Lisp_Object has_modeline_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 #ifdef HAVE_SCROLLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 /* Width of vertical scrollbars. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 Lisp_Object scrollbar_width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 /* Height of horizontal scrollbars. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 Lisp_Object scrollbar_height;
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
197 /* Whether the scrollbars are visible */
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
198 Lisp_Object horizontal_scrollbar_visible_p;
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
199 Lisp_Object vertical_scrollbar_visible_p;
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
200 /* Scrollbar positions */
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
201 Lisp_Object scrollbar_on_left_p;
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
202 Lisp_Object scrollbar_on_top_p;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 /* Pointer to use for vertical and horizontal scrollbars. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 Lisp_Object scrollbar_pointer;
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
205 #endif /* HAVE_SCROLLBARS */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 #ifdef HAVE_TOOLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 /* Toolbar specification for each of the four positions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 This is not a size hog because the value here is not copied,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 and will be shared with the specs in the specifier. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 Lisp_Object toolbar[4];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 /* Toolbar size for each of the four positions. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 Lisp_Object toolbar_size[4];
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 187
diff changeset
213 /* Toolbar border width for each of the four positions. */
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 187
diff changeset
214 Lisp_Object toolbar_border_width[4];
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 /* Toolbar visibility status for each of the four positions. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 Lisp_Object toolbar_visible_p[4];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 /* Caption status of toolbar. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 Lisp_Object toolbar_buttons_captioned_p;
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 187
diff changeset
219 /* The following five don't really need to be cached except
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 that we need to know when they've changed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 Lisp_Object default_toolbar;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 Lisp_Object default_toolbar_width, default_toolbar_height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 Lisp_Object default_toolbar_visible_p;
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 187
diff changeset
224 Lisp_Object default_toolbar_border_width;
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
225 #endif /* HAVE_TOOLBARS */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 Lisp_Object left_margin_width, right_margin_width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 Lisp_Object minimum_line_ascent, minimum_line_descent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 Lisp_Object use_left_overflow, use_right_overflow;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 #ifdef HAVE_MENUBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 /* Visibility of menubar. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 Lisp_Object menubar_visible_p;
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
232 #endif /* HAVE_MENUBARS */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 Lisp_Object text_cursor_visible_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 /* one-bit flags: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 /* marker used when restoring a window configuration */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 unsigned int config_mark :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 /* Non-zero means window was dead. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 unsigned int dead :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 /* Non-zero means next redisplay must use the value of start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 set up for it in advance. Set by scrolling commands. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 unsigned int force_start :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 /* Non-zero means must regenerate modeline of this window */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 unsigned int redo_modeline :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 /* Non-zero means current value of `start'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 was the beginning of a line when it was chosen. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 unsigned int start_at_line_beg :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 /* new redisplay flag */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 unsigned int windows_changed :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 unsigned int shadow_thickness_changed :1;
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
252 };
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
254 #define CURRENT_DISP 0
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
255 #define DESIRED_DISP 1
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
256 #define CMOTION_DISP 2
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 struct window_mirror
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 /* Frame this mirror is on. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 struct frame *frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 /* Following child (to right or down) at same level of tree */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 struct window_mirror *next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 /* There is no prev field because we never traverse this structure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 backwards. Same goes for the parent field. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 /* First child of this window. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 /* vchild is used if this is a vertical combination,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 hchild if this is a horizontal combination. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 struct window_mirror *hchild, *vchild;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 /* Dynamic array of display lines */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 display_line_dynarr *current_display_lines;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 display_line_dynarr *desired_display_lines;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 /* Buffer current_display_lines represent. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 struct buffer *buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 #ifdef HAVE_SCROLLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 /* Scrollbars associated with window, if any. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 struct scrollbar_instance *scrollbar_vertical_instance;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 struct scrollbar_instance *scrollbar_horizontal_instance;
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
285 #endif /* HAVE_SCROLLBARS */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 /* Flag indicating whether a subwindow is currently being displayed. */
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
288 unsigned int subwindows_being_displayed :1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 /* Keep track of the truncation status in this window so we can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 detect when it has changed. #### Magic variables would be a huge
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 win here. */
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
293 unsigned int truncate_win :1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 #ifdef emacs /* some things other than emacs want the structs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 DECLARE_LRECORD (window, struct window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 #define XWINDOW(x) XRECORD (x, window, struct window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 #define XSETWINDOW(x, p) XSETRECORD (x, p, window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 #define WINDOWP(x) RECORDP (x, window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 #define GC_WINDOWP(x) GC_RECORDP (x, window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 #define CHECK_WINDOW(x) CHECK_RECORD (x, window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 #define CONCHECK_WINDOW(x) CONCHECK_RECORD (x, window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 #define WINDOW_LIVE_P(x) (!(x)->dead)
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
307 #define CHECK_LIVE_WINDOW(x) do { \
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
308 CHECK_WINDOW (x); \
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
309 if (!WINDOW_LIVE_P (XWINDOW (x))) \
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
310 dead_wrong_type_argument (Qwindow_live_p, (x)); \
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
311 } while (0)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
312 #define CONCHECK_LIVE_WINDOW(x) do { \
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
313 CONCHECK_WINDOW (x); \
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
314 if (!WINDOW_LIVE_P (XWINDOW (x))) \
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
315 x = wrong_type_argument (Qwindow_live_p, (x)); \
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
316 } while (0)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 /* 1 if W is a minibuffer window. */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
319 #define MINI_WINDOW_P(W) (!NILP ((W)->mini_p))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 /* 1 if we are dealing with a parentless window (this includes the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 root window on a frame and the minibuffer window; both of these
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 are siblings). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 #define TOP_LEVEL_WINDOW_P(w) NILP ((w)->parent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 /* Set all redisplay flags indicating a window has changed */
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
327 #define MARK_WINDOWS_CHANGED(w) do { \
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
328 (w)->windows_changed = 1; \
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
329 if (!NILP (w->frame)) \
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
330 { \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
331 struct frame *mwc_frame = XFRAME (w->frame); \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
332 MARK_FRAME_WINDOWS_CHANGED (mwc_frame); \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
333 } \
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
334 else \
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
335 windows_changed = 1; \
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
336 } while (0)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 #define WINDOW_TTY_P(w) FRAME_TTY_P (XFRAME ((w)->frame))
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
339 #define WINDOW_X_P(w) FRAME_X_P (XFRAME ((w)->frame))
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
340 #define WINDOW_NS_P(w) FRAME_NS_P (XFRAME ((w)->frame))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 #define WINDOW_WIN_P(w) FRAME_WIN_P (XFRAME ((w)->frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 DECLARE_LRECORD (window_configuration, struct window_config);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
345 EXFUN (Fget_buffer_window, 3);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
346 EXFUN (Fmove_to_window_line, 2);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
347 EXFUN (Frecenter, 2);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
348 EXFUN (Freplace_buffer_in_windows, 1);
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
349 EXFUN (Fselect_window, 2);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
350 EXFUN (Fselected_window, 1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
351 EXFUN (Fset_window_buffer, 2);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
352 EXFUN (Fset_window_hscroll, 2);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
353 EXFUN (Fset_window_point, 2);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
354 EXFUN (Fset_window_start, 3);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
355 EXFUN (Fwindow_buffer, 1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
356 EXFUN (Fwindow_highest_p, 1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
357 EXFUN (Fwindow_point, 1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
358 EXFUN (Fwindow_start, 1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
359
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 /* The minibuffer window of the selected frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 Note that you cannot test for minibufferness of an arbitrary window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 by comparing against this; but you can test for minibufferness of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 the selected window or of any window that is displayed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 extern Lisp_Object minibuf_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 /* Prompt to display in front of the minibuffer contents, or nil */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 extern Lisp_Object Vminibuf_prompt;
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 74
diff changeset
368 /* Prompt to display in front of the minibuffer prompt, or nil */
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 74
diff changeset
369 extern Lisp_Object Vminibuf_preprompt;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 Lisp_Object allocate_window (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 int window_char_width (struct window *, int include_margins_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 int window_char_height (struct window *, int include_gutters_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 int window_displayed_height (struct window *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 int window_is_leftmost (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 int window_is_rightmost (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 int window_truncation_on (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 int window_needs_vertical_divider (struct window *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 int window_scrollbar_width (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 int window_scrollbar_height (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 int window_modeline_height (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 int window_left_margin_width (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 int window_right_margin_width (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 int window_top_gutter_height (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 int window_bottom_gutter_height (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 int window_left_gutter_width (struct window *w, int modeline);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 int window_right_gutter_width (struct window *w, int modeline);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 int window_bottom_toolbar_height (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 void delete_all_subwindows (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 void set_window_pixheight (Lisp_Object window, int pixheight,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 int nodelete);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 void set_window_pixwidth (Lisp_Object window, int pixwidth,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 int nodelete);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 void window_scroll (Lisp_Object window, Lisp_Object n, int direction,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 Error_behavior errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 int buffer_window_count (struct buffer *b, struct frame *f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 int buffer_window_mru (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 void check_frame_size (struct frame *frame, int *rows, int *cols);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 struct window *decode_window (Lisp_Object window);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
401 struct window *find_window_by_pixel_pos (int pix_x, int pix_y, Lisp_Object win);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 /* new functions to handle the window mirror */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 void free_window_mirror (struct window_mirror *mir);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 Lisp_Object real_window (struct window_mirror *mir, int no_abort);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 struct window_mirror *find_window_mirror (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 display_line_dynarr *window_display_lines (struct window *w, int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 struct buffer *window_display_buffer (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 void set_window_display_buffer (struct window *w, struct buffer *b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 void update_frame_window_mirror (struct frame *f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 215
diff changeset
412 void map_windows (struct frame *f,
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 215
diff changeset
413 int (*mapfun) (struct window *w, void *closure),
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 215
diff changeset
414 void *closure);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 void some_window_value_changed (Lisp_Object specifier, struct window *w,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 Lisp_Object oldval);
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_FRAME(w) ((w)->frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 #define WINDOW_BUFFER(w) ((w)->buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 #define WINDOW_DEVICE(w) FRAME_DEVICE (XFRAME (WINDOW_FRAME (w)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 #define WINDOW_CONSOLE(w) DEVICE_CONSOLE (XDEVICE (WINDOW_DEVICE (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 /* XEmacs window size and positioning macros. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 #define WINDOW_TOP(w) ((w)->pixel_top)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 #define WINDOW_TEXT_TOP(w) (WINDOW_TOP (w) + window_top_gutter_height (w))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 #define WINDOW_BOTTOM(w) ((w)->pixel_top + (w)->pixel_height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 #define WINDOW_TEXT_BOTTOM(w) (WINDOW_BOTTOM (w) - window_bottom_gutter_height (w))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 #define WINDOW_LEFT(w) ((w)->pixel_left)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 #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
430 #define WINDOW_MODELINE_LEFT(w) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 (WINDOW_LEFT (w) + window_left_gutter_width (w, 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 #define WINDOW_RIGHT(w) ((w)->pixel_left + (w)->pixel_width)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 #define WINDOW_TEXT_RIGHT(w) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 (WINDOW_RIGHT (w) - window_right_gutter_width (w, 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 #define WINDOW_MODELINE_RIGHT(w) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 (WINDOW_RIGHT (w) - window_right_gutter_width (w, 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 #define WINDOW_HEIGHT(w) ((w)->pixel_height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 #define WINDOW_TEXT_HEIGHT(w) (WINDOW_TEXT_BOTTOM (w) - WINDOW_TEXT_TOP (w))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 #define WINDOW_WIDTH(w) ((w)->pixel_width)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 #define WINDOW_TEXT_WIDTH(w) (WINDOW_TEXT_RIGHT (w) - WINDOW_TEXT_LEFT (w))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 #define WINDOW_HAS_MODELINE_P(w) (!NILP (w->has_modeline_p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 #define MODELINE_OFF_SHADOW_THICKNESS_ADJUSTED(win) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 abs ((!WINDOW_HAS_MODELINE_P (win) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 ? ((XINT (win->modeline_shadow_thickness) > 1) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 ? XINT (win->modeline_shadow_thickness) - 1 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 : ((XINT (win->modeline_shadow_thickness) < -1) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 ? XINT (win->modeline_shadow_thickness) + 1 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 : XINT (win->modeline_shadow_thickness))) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 : XINT (win->modeline_shadow_thickness)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 #define MODELINE_SHADOW_THICKNESS(win) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 (MODELINE_OFF_SHADOW_THICKNESS_ADJUSTED (win) > 10 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 ? 10 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 : MODELINE_OFF_SHADOW_THICKNESS_ADJUSTED (win))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 #endif /* emacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 #endif /* _XEMACS_WINDOW_H_ */