annotate src/window.h @ 350:32a2ffafd729

Added tag r21-1-4 for changeset 8429d81ab209
author cvs
date Mon, 13 Aug 2007 10:54:29 +0200
parents 558f606b08ae
children 8626e4521993
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 /* If redisplay in this window goes beyond this buffer position,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 must run the redisplay-end-trigger-functions. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 Lisp_Object redisplay_end_trigger;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 /* Set by redisplay to the last position seen. This is used
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 to implement the redisplay-end-trigger-functions. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 Bufpos last_redisplay_pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
175 #define WINDOW_SLOT_DECLARATION
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
176 #define WINDOW_SLOT(slot, compare) Lisp_Object slot
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
177 #include "winslots.h"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 /* one-bit flags: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 /* marker used when restoring a window configuration */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 unsigned int config_mark :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 /* Non-zero means window was dead. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 unsigned int dead :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 /* Non-zero means next redisplay must use the value of start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 set up for it in advance. Set by scrolling commands. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 unsigned int force_start :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 /* Non-zero means must regenerate modeline of this window */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 unsigned int redo_modeline :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 /* Non-zero means current value of `start'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 was the beginning of a line when it was chosen. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 unsigned int start_at_line_beg :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 /* new redisplay flag */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 unsigned int windows_changed :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 unsigned int shadow_thickness_changed :1;
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
196 /* Vertical divider flag and validity of it */
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
197 unsigned int need_vertical_divider_p :1;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
198 unsigned int need_vertical_divider_valid_p :1;
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
199 };
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
201 #define CURRENT_DISP 0
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
202 #define DESIRED_DISP 1
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
203 #define CMOTION_DISP 2
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 struct window_mirror
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 /* Frame this mirror is on. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 struct frame *frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 /* Following child (to right or down) at same level of tree */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 struct window_mirror *next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 /* There is no prev field because we never traverse this structure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 backwards. Same goes for the parent field. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 /* First child of this window. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 /* vchild is used if this is a vertical combination,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 hchild if this is a horizontal combination. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 struct window_mirror *hchild, *vchild;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 /* Dynamic array of display lines */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 display_line_dynarr *current_display_lines;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 display_line_dynarr *desired_display_lines;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 /* Buffer current_display_lines represent. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 struct buffer *buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 #ifdef HAVE_SCROLLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 /* Scrollbars associated with window, if any. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 struct scrollbar_instance *scrollbar_vertical_instance;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 struct scrollbar_instance *scrollbar_horizontal_instance;
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
232 #endif /* HAVE_SCROLLBARS */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 /* Flag indicating whether a subwindow is currently being displayed. */
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
235 unsigned int subwindows_being_displayed :1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 /* Keep track of the truncation status in this window so we can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 detect when it has changed. #### Magic variables would be a huge
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 win here. */
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
240 unsigned int truncate_win :1;
0
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 #ifdef emacs /* some things other than emacs want the structs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 DECLARE_LRECORD (window, struct window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 #define XWINDOW(x) XRECORD (x, window, struct window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 #define XSETWINDOW(x, p) XSETRECORD (x, p, window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 #define WINDOWP(x) RECORDP (x, window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 #define GC_WINDOWP(x) GC_RECORDP (x, window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 #define CHECK_WINDOW(x) CHECK_RECORD (x, window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 #define CONCHECK_WINDOW(x) CONCHECK_RECORD (x, window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 #define WINDOW_LIVE_P(x) (!(x)->dead)
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
254 #define CHECK_LIVE_WINDOW(x) do { \
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
255 CHECK_WINDOW (x); \
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
256 if (!WINDOW_LIVE_P (XWINDOW (x))) \
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
257 dead_wrong_type_argument (Qwindow_live_p, (x)); \
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
258 } while (0)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
259 #define CONCHECK_LIVE_WINDOW(x) do { \
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
260 CONCHECK_WINDOW (x); \
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
261 if (!WINDOW_LIVE_P (XWINDOW (x))) \
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
262 x = wrong_type_argument (Qwindow_live_p, (x)); \
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
263 } while (0)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 /* 1 if W is a minibuffer window. */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
266 #define MINI_WINDOW_P(W) (!NILP ((W)->mini_p))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 /* 1 if we are dealing with a parentless window (this includes the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 root window on a frame and the minibuffer window; both of these
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 are siblings). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 #define TOP_LEVEL_WINDOW_P(w) NILP ((w)->parent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 /* Set all redisplay flags indicating a window has changed */
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
274 #define MARK_WINDOWS_CHANGED(w) do { \
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
275 (w)->windows_changed = 1; \
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
276 if (!NILP (w->frame)) \
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
277 { \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
278 struct frame *mwc_frame = XFRAME (w->frame); \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
279 MARK_FRAME_WINDOWS_CHANGED (mwc_frame); \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
280 } \
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
281 else \
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
282 windows_changed = 1; \
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
283 } while (0)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 #define WINDOW_TTY_P(w) FRAME_TTY_P (XFRAME ((w)->frame))
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
286 #define WINDOW_X_P(w) FRAME_X_P (XFRAME ((w)->frame))
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 110
diff changeset
287 #define WINDOW_NS_P(w) FRAME_NS_P (XFRAME ((w)->frame))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 #define WINDOW_WIN_P(w) FRAME_WIN_P (XFRAME ((w)->frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 DECLARE_LRECORD (window_configuration, struct window_config);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
292 EXFUN (Fget_buffer_window, 3);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
293 EXFUN (Fmove_to_window_line, 2);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
294 EXFUN (Frecenter, 2);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
295 EXFUN (Freplace_buffer_in_windows, 1);
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
296 EXFUN (Fselect_window, 2);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
297 EXFUN (Fselected_window, 1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
298 EXFUN (Fset_window_buffer, 2);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
299 EXFUN (Fset_window_hscroll, 2);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
300 EXFUN (Fset_window_point, 2);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
301 EXFUN (Fset_window_start, 3);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
302 EXFUN (Fwindow_buffer, 1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
303 EXFUN (Fwindow_highest_p, 1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
304 EXFUN (Fwindow_point, 1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
305 EXFUN (Fwindow_start, 1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
306
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 /* The minibuffer window of the selected frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 Note that you cannot test for minibufferness of an arbitrary window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 by comparing against this; but you can test for minibufferness of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 the selected window or of any window that is displayed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 extern Lisp_Object minibuf_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 /* Prompt to display in front of the minibuffer contents, or nil */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 extern Lisp_Object Vminibuf_prompt;
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 74
diff changeset
315 /* Prompt to display in front of the minibuffer prompt, or nil */
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 74
diff changeset
316 extern Lisp_Object Vminibuf_preprompt;
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 Lisp_Object allocate_window (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 int window_char_width (struct window *, int include_margins_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 int window_char_height (struct window *, int include_gutters_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 int window_displayed_height (struct window *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 int window_is_leftmost (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 int window_is_rightmost (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 int window_truncation_on (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 int window_needs_vertical_divider (struct window *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 int window_scrollbar_width (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 int window_scrollbar_height (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 int window_modeline_height (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 int window_left_margin_width (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 int window_right_margin_width (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 int window_top_gutter_height (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 int window_bottom_gutter_height (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 int window_left_gutter_width (struct window *w, int modeline);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 int window_right_gutter_width (struct window *w, int modeline);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 int window_bottom_toolbar_height (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 void delete_all_subwindows (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 void set_window_pixheight (Lisp_Object window, int pixheight,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 int nodelete);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 void set_window_pixwidth (Lisp_Object window, int pixwidth,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 int nodelete);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 void window_scroll (Lisp_Object window, Lisp_Object n, int direction,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 Error_behavior errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 int buffer_window_count (struct buffer *b, struct frame *f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 int buffer_window_mru (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 void check_frame_size (struct frame *frame, int *rows, int *cols);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 struct window *decode_window (Lisp_Object window);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 257
diff changeset
348 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
349
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 /* new functions to handle the window mirror */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 void free_window_mirror (struct window_mirror *mir);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 Lisp_Object real_window (struct window_mirror *mir, int no_abort);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 struct window_mirror *find_window_mirror (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 display_line_dynarr *window_display_lines (struct window *w, int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 struct buffer *window_display_buffer (struct window *w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 void set_window_display_buffer (struct window *w, struct buffer *b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 void update_frame_window_mirror (struct frame *f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
359 int map_windows (struct frame *f,
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
360 int (*mapfun) (struct window *w, void *closure),
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
361 void *closure);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 void some_window_value_changed (Lisp_Object specifier, struct window *w,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 Lisp_Object oldval);
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
364 int invalidate_vertical_divider_cache_in_window (struct window *w,
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
365 void *u_n_u_s_e_d);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
366 int window_divider_width (struct window *w);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 #define WINDOW_FRAME(w) ((w)->frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 #define WINDOW_BUFFER(w) ((w)->buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 #define WINDOW_DEVICE(w) FRAME_DEVICE (XFRAME (WINDOW_FRAME (w)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 #define WINDOW_CONSOLE(w) DEVICE_CONSOLE (XDEVICE (WINDOW_DEVICE (w)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 /* XEmacs window size and positioning macros. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 #define WINDOW_TOP(w) ((w)->pixel_top)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 #define WINDOW_TEXT_TOP(w) (WINDOW_TOP (w) + window_top_gutter_height (w))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 #define WINDOW_BOTTOM(w) ((w)->pixel_top + (w)->pixel_height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 #define WINDOW_TEXT_BOTTOM(w) (WINDOW_BOTTOM (w) - window_bottom_gutter_height (w))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 #define WINDOW_LEFT(w) ((w)->pixel_left)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 #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
380 #define WINDOW_MODELINE_LEFT(w) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 (WINDOW_LEFT (w) + window_left_gutter_width (w, 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 #define WINDOW_RIGHT(w) ((w)->pixel_left + (w)->pixel_width)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 #define WINDOW_TEXT_RIGHT(w) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 (WINDOW_RIGHT (w) - window_right_gutter_width (w, 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 #define WINDOW_MODELINE_RIGHT(w) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 (WINDOW_RIGHT (w) - window_right_gutter_width (w, 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 #define WINDOW_HEIGHT(w) ((w)->pixel_height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 #define WINDOW_TEXT_HEIGHT(w) (WINDOW_TEXT_BOTTOM (w) - WINDOW_TEXT_TOP (w))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 #define WINDOW_WIDTH(w) ((w)->pixel_width)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 #define WINDOW_TEXT_WIDTH(w) (WINDOW_TEXT_RIGHT (w) - WINDOW_TEXT_LEFT (w))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 #define WINDOW_HAS_MODELINE_P(w) (!NILP (w->has_modeline_p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 #define MODELINE_OFF_SHADOW_THICKNESS_ADJUSTED(win) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 abs ((!WINDOW_HAS_MODELINE_P (win) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 ? ((XINT (win->modeline_shadow_thickness) > 1) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 ? XINT (win->modeline_shadow_thickness) - 1 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 : ((XINT (win->modeline_shadow_thickness) < -1) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 ? XINT (win->modeline_shadow_thickness) + 1 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 : XINT (win->modeline_shadow_thickness))) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 : XINT (win->modeline_shadow_thickness)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 #define MODELINE_SHADOW_THICKNESS(win) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 (MODELINE_OFF_SHADOW_THICKNESS_ADJUSTED (win) > 10 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 ? 10 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 : MODELINE_OFF_SHADOW_THICKNESS_ADJUSTED (win))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 #endif /* emacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 #endif /* _XEMACS_WINDOW_H_ */