Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-483
[bpt/emacs.git] / src / window.h
CommitLineData
83b2229f 1/* Window definitions for GNU Emacs.
a0ecb2ac 2 Copyright (C) 1985,86,93,95,97,98,99, 2000,01,03,04
91523be9 3 Free Software Foundation, Inc.
83b2229f
JB
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
e5d77022 9the Free Software Foundation; either version 2, or (at your option)
83b2229f
JB
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
3b7ad313
EN
19the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */
83b2229f 21
f43dd834
GM
22#ifndef WINDOW_H_INCLUDED
23#define WINDOW_H_INCLUDED
24
25#include "dispextern.h"
83b2229f 26
6000501b
KS
27extern Lisp_Object Qleft, Qright;
28
83b2229f
JB
29/* Windows are allocated as if they were vectors, but then the
30Lisp data type is changed to Lisp_Window. They are garbage
31collected along with the vectors.
32
33All windows in use are arranged into a tree, with pointers up and down.
34
35Windows that are leaves of the tree are actually displayed
36and show the contents of buffers. Windows that are not leaves
37are used for representing the way groups of leaf windows are
44fa5b1e 38arranged on the frame. Leaf windows never become non-leaves.
83b2229f
JB
39They are deleted only by calling delete-window on them (but
40this can be done implicitly). Combination windows can be created
41and deleted at any time.
42
43A leaf window has a non-nil buffer field, and also
44 has markers in its start and pointm fields. Non-leaf windows
45 have nil in these fields.
46
47Non-leaf windows are either vertical or horizontal combinations.
48
44fa5b1e 49A vertical combination window has children that are arranged on the frame
83b2229f
JB
50one above the next. Its vchild field points to the uppermost child.
51The parent field of each of the children points to the vertical
52combination window. The next field of each child points to the
53child below it, or is nil for the lowest child. The prev field
54of each child points to the child above it, or is nil for the
55highest child.
56
57A horizontal combination window has children that are side by side.
58Its hchild field points to the leftmost child. In each child
59the next field points to the child to the right and the prev field
60points to the child to the left.
61
62The children of a vertical combination window may be leaf windows
63or horizontal combination windows. The children of a horizontal
64combination window may be leaf windows or vertical combination windows.
65
66At the top of the tree are two windows which have nil as parent.
67The second of these is minibuf_window. The first one manages all
44fa5b1e 68the frame area that is not minibuffer, and is called the root window.
83b2229f
JB
69Different windows can be the root at different times;
70initially the root window is a leaf window, but if more windows
71are created then that leaf window ceases to be root and a newly
72made combination window becomes root instead.
73
fbfed6f0
JB
74In any case, on screens which have an ordinary window and a
75minibuffer, prev of the minibuf window is the root window and next of
76the root window is the minibuf window. On minibufferless screens or
77minibuffer-only screens, the root window and the minibuffer window are
27daff1e 78one and the same, so its prev and next members are nil.
83b2229f 79
27daff1e 80A dead window has its buffer, hchild, and vchild windows all nil. */
83b2229f 81
f43dd834
GM
82struct cursor_pos
83{
84 /* Pixel position. These are always window relative. */
85 int x, y;
86
87 /* Glyph matrix position. */
88 int hpos, vpos;
89};
90
83b2229f
JB
91struct window
92 {
93 /* The first two fields are really the header of a vector */
94 /* The window code does not refer to them. */
dc83de2d 95 EMACS_INT size;
83b2229f 96 struct Lisp_Vector *vec_next;
44fa5b1e
JB
97 /* The frame this window is on. */
98 Lisp_Object frame;
83b2229f
JB
99 /* t if this window is a minibuffer window. */
100 Lisp_Object mini_p;
101 /* Following child (to right or down) at same level of tree */
102 Lisp_Object next;
103 /* Preceding child (to left or up) at same level of tree */
104 Lisp_Object prev;
105 /* First child of this window. */
106 /* vchild is used if this is a vertical combination,
107 hchild if this is a horizontal combination. */
108 Lisp_Object hchild, vchild;
109 /* The window this one is a child of. */
110 Lisp_Object parent;
111 /* The upper left corner coordinates of this window,
44fa5b1e 112 as integers relative to upper left corner of frame = 0, 0 */
6000501b
KS
113 Lisp_Object left_col;
114 Lisp_Object top_line;
83b2229f 115 /* The size of the window */
6000501b
KS
116 Lisp_Object total_lines;
117 Lisp_Object total_cols;
83b2229f
JB
118 /* The buffer displayed in this window */
119 /* Of the fields vchild, hchild and buffer, only one is non-nil. */
120 Lisp_Object buffer;
121 /* A marker pointing to where in the text to start displaying */
122 Lisp_Object start;
123 /* A marker pointing to where in the text point is in this window,
124 used only when the window is not selected.
125 This exists so that when multiple windows show one buffer
126 each one can have its own value of point. */
127 Lisp_Object pointm;
128 /* Non-nil means next redisplay must use the value of start
129 set up for it in advance. Set by scrolling commands. */
130 Lisp_Object force_start;
fbf44f72 131 /* Non-nil means we have explicitly changed the value of start,
65113618
GM
132 but that the next redisplay is not obliged to use the new value.
133 This is used in Fdelete_other_windows to force a call to
f47d4504 134 Vwindow_scroll_functions; also by Frecenter with argument. */
fbf44f72 135 Lisp_Object optional_new_start;
83b2229f
JB
136 /* Number of columns display within the window is scrolled to the left. */
137 Lisp_Object hscroll;
0248728d
GM
138 /* Minimum hscroll for automatic hscrolling. This is the value
139 the user has set, by set-window-hscroll for example. */
140 Lisp_Object min_hscroll;
83b2229f
JB
141 /* Number saying how recently window was selected */
142 Lisp_Object use_time;
143 /* Unique number of window assigned when it was created */
144 Lisp_Object sequence_number;
145 /* No permanent meaning; used by save-window-excursion's bookkeeping */
146 Lisp_Object temslot;
147 /* text.modified of displayed buffer as of last time display completed */
148 Lisp_Object last_modified;
cc885e42
RS
149 /* BUF_OVERLAY_MODIFIED of displayed buffer as of last complete update. */
150 Lisp_Object last_overlay_modified;
83b2229f
JB
151 /* Value of point at that time */
152 Lisp_Object last_point;
30308d5e
RS
153 /* Non-nil if the buffer was "modified" when the window
154 was last updated. */
155 Lisp_Object last_had_star;
a3c87d4e 156 /* This window's vertical scroll bar. This field is only for use
7c299e7a 157 by the window-system-dependent code which implements the
a3c87d4e
JB
158 scroll bars; it can store anything it likes here. If this
159 window is newly created and we haven't displayed a scroll bar in
160 it yet, or if the frame doesn't have any scroll bars, this is nil. */
161 Lisp_Object vertical_scroll_bar;
20a558dc 162
f43dd834
GM
163 /* Width of left and right marginal areas. A value of nil means
164 no margin. */
6000501b
KS
165 Lisp_Object left_margin_cols, right_margin_cols;
166
167 /* Width of left and right fringes.
168 A value of nil or t means use frame values. */
169 Lisp_Object left_fringe_width, right_fringe_width;
170
171 /* Non-nil means fringes are drawn outside display margins;
172 othersize draw them between margin areas and text. */
173 Lisp_Object fringes_outside_margins;
174
175 /* Pixel width of scroll bars.
176 A value of nil or t means use frame values. */
177 Lisp_Object scroll_bar_width;
178 /* Type of vertical scroll bar. A value of nil means
179 no scroll bar. A value of t means use frame value. */
180 Lisp_Object vertical_scroll_bar_type;
f43dd834 181
44fa5b1e
JB
182 /* Frame coords of mark as of last time display completed */
183 /* May be nil if mark does not exist or was not on frame */
83b2229f
JB
184 Lisp_Object last_mark_x;
185 Lisp_Object last_mark_y;
f43dd834
GM
186 /* Z - the buffer position of the last glyph in the current matrix
187 of W. Only valid if WINDOW_END_VALID is not nil. */
83b2229f 188 Lisp_Object window_end_pos;
f43dd834
GM
189 /* Glyph matrix row of the last glyph in the current matrix
190 of W. Only valid if WINDOW_END_VALID is not nil. */
191 Lisp_Object window_end_vpos;
83b2229f
JB
192 /* t if window_end_pos is truly valid.
193 This is nil if nontrivial redisplay is preempted
44fa5b1e
JB
194 since in that case the frame image that window_end_pos
195 did not get onto the frame. */
83b2229f 196 Lisp_Object window_end_valid;
83b2229f
JB
197 /* Non-nil means must regenerate mode line of this window */
198 Lisp_Object update_mode_line;
199 /* Non-nil means current value of `start'
200 was the beginning of a line when it was chosen. */
201 Lisp_Object start_at_line_beg;
202 /* Display-table to use for displaying chars in this window.
203 Nil means use the buffer's own display-table. */
204 Lisp_Object display_table;
205 /* Non-nil means window is marked as dedicated. */
206 Lisp_Object dedicated;
e024395e
RS
207 /* Line number and position of a line somewhere above the
208 top of the screen. */
209 /* If this field is nil, it means we don't have a base line. */
210 Lisp_Object base_line_number;
211 /* If this field is nil, it means we don't have a base line.
212 If it is a buffer, it means don't display the line number
213 as long as the window shows that buffer. */
214 Lisp_Object base_line_pos;
096855a6
RS
215 /* If we have highlighted the region (or any part of it),
216 this is the mark position that we used, as an integer. */
217 Lisp_Object region_showing;
1262267a
KH
218 /* The column number currently displayed in this window's mode line,
219 or nil if column numbers are not being displayed. */
220 Lisp_Object column_number_displayed;
a3bee872
RS
221 /* If redisplay in this window goes beyond this buffer position,
222 must run the redisplay-end-trigger-hook. */
223 Lisp_Object redisplay_end_trigger;
5f47720c
GM
224 /* Non-nil means don't delete this window for becoming "too small". */
225 Lisp_Object too_small_ok;
57209cba
GM
226
227 /* Original window height and top before mini-window was
228 enlarged. */
6000501b 229 Lisp_Object orig_total_lines, orig_top_line;
177c0ea7 230
f43dd834
GM
231 /* No Lisp data may follow below this point without changing
232 mark_object in alloc.c. The member current_matrix must be the
233 first non-Lisp member. */
234
235 /* Glyph matrices. */
236 struct glyph_matrix *current_matrix;
237 struct glyph_matrix *desired_matrix;
238
71a0ff9a
KS
239 /* Scaling factor for the glyph_matrix size calculation in this window.
240 Used if window contains many small images or uses proportional fonts,
241 as the normal may yield a matrix which is too small. */
242 int nrows_scale_factor, ncols_scale_factor;
243
f43dd834
GM
244 /* Cursor position as of last update that completed without
245 pause. This is the position of last_point. */
246 struct cursor_pos last_cursor;
247
248 /* Intended cursor position. This is a position within the
249 glyph matrix. */
250 struct cursor_pos cursor;
177c0ea7 251
f43dd834
GM
252 /* Where the cursor actually is. */
253 struct cursor_pos phys_cursor;
177c0ea7
JB
254
255 /* Cursor type and width of last cursor drawn on the window.
7e913f91
KS
256 Used for X and w32 frames; -1 initially. */
257 int phys_cursor_type, phys_cursor_width;
f43dd834
GM
258
259 /* This is handy for undrawing the cursor. */
260 int phys_cursor_ascent, phys_cursor_height;
177c0ea7 261
4789e691
KS
262 /* Alternate overlay-arrow-bitmap in this window. */
263 int overlay_arrow_bitmap;
264
f43dd834
GM
265 /* Non-zero means the cursor is currently displayed. This can be
266 set to zero by functions overpainting the cursor image. */
267 unsigned phys_cursor_on_p : 1;
268
269 /* 0 means cursor is logically on, 1 means it's off. Used for
270 blinking cursor. */
271 unsigned cursor_off_p : 1;
272
273 /* Value of cursor_off_p as of the last redisplay. */
274 unsigned last_cursor_off_p : 1;
275
276 /* 1 means desired matrix has been build and window must be
277 updated in update_frame. */
278 unsigned must_be_updated_p : 1;
279
280 /* Flag indicating that this window is not a real one.
281 Currently only used for menu bar windows of frames. */
282 unsigned pseudo_window_p : 1;
283
284 /* Amount by which lines of this window are scrolled in
285 y-direction (smooth scrolling). */
286 int vscroll;
177c0ea7 287
f43dd834
GM
288 /* Z_BYTE - the buffer position of the last glyph in the current matrix
289 of W. Only valid if WINDOW_END_VALID is not nil. */
290 int window_end_bytepos;
e9abf394
GM
291
292 /* 1 means the window start of this window is frozen and may not
293 be changed during redisplay. If point is not in the window,
294 accept that. */
295 unsigned frozen_window_start_p : 1;
a71eca92
GM
296
297 /* 1 means that this window's height is temporarily fixed. Used
298 in resize_mini_window to precent resizing selected_window, if
299 possible. */
300 unsigned height_fixed_p : 1;
f43dd834 301};
83b2229f
JB
302
303/* 1 if W is a minibuffer window. */
304
36d8561d 305#define MINI_WINDOW_P(W) (!NILP ((W)->mini_p))
83b2229f 306
6000501b
KS
307/* General window layout:
308
309 LEFT_EDGE_COL RIGHT_EDGE_COL
310 | |
311 | |
312 | BOX_LEFT_EDGE_COL |
313 | | BOX_RIGHT_EDGE_COL |
314 | | | |
315 v v v v
316 <-><-><---><-----------><---><-><->
317 ^ ^ ^ ^ ^ ^ ^
318 | | | | | | |
319 | | | | | | +-- RIGHT_SCROLL_BAR_COLS
320 | | | | | +----- RIGHT_FRINGE_WIDTH
321 | | | | +--------- RIGHT_MARGIN_COLS
322 | | | |
323 | | | +------------------ TEXT_AREA_COLS
324 | | |
325 | | +--------------------------- LEFT_MARGIN_COLS
326 | +------------------------------- LEFT_FRINGE_WIDTH
327 +---------------------------------- LEFT_SCROLL_BAR_COLS
754dc3d8 328
6000501b
KS
329*/
330
331
332/* A handy macro. */
333
334#define WINDOW_XFRAME(W) \
335 (XFRAME (WINDOW_FRAME ((W))))
336
337/* Return the canonical column width of the frame of window W. */
338
339#define WINDOW_FRAME_COLUMN_WIDTH(W) \
340 (FRAME_COLUMN_WIDTH (WINDOW_XFRAME ((W))))
341
342/* Return the canonical column width of the frame of window W. */
343
344#define WINDOW_FRAME_LINE_HEIGHT(W) \
345 (FRAME_LINE_HEIGHT (WINDOW_XFRAME ((W))))
346
177c0ea7 347
6000501b
KS
348/* Return the frame width in canonical column units.
349 This includes scroll bars and fringes. */
8516ba9a 350
6000501b
KS
351#define WINDOW_TOTAL_COLS(W) \
352 (XFASTINT ((W)->total_cols))
353
354/* Return the frame height in canonical line units.
355 This includes header and mode lines, if any. */
356
357#define WINDOW_TOTAL_LINES(W) \
358 (XFASTINT ((W)->total_lines))
359
360
361/* Return the total pixel width of window W. */
362
363#define WINDOW_TOTAL_WIDTH(W) \
364 (WINDOW_TOTAL_COLS (W) * WINDOW_FRAME_COLUMN_WIDTH (W))
365
366/* Return the total pixel height of window W. */
367
368#define WINDOW_TOTAL_HEIGHT(W) \
369 (WINDOW_TOTAL_LINES (W) * WINDOW_FRAME_LINE_HEIGHT (W))
370
371
372/* Return the canonical frame column at which window W starts.
373 This includes a left-hand scroll bar, if any. */
374
375#define WINDOW_LEFT_EDGE_COL(W) \
376 (XFASTINT ((W)->left_col))
377
378/* Return the canonical frame column before which window W ends.
8516ba9a
RS
379 This includes a right-hand scroll bar, if any. */
380
6000501b
KS
381#define WINDOW_RIGHT_EDGE_COL(W) \
382 (WINDOW_LEFT_EDGE_COL (W) + WINDOW_TOTAL_COLS (W))
8516ba9a 383
6000501b
KS
384/* Return the canonical frame line at which window W starts.
385 This includes a header line, if any. */
386
387#define WINDOW_TOP_EDGE_LINE(W) \
388 (XFASTINT ((W)->top_line))
389
390/* Return the canonical frame line before which window W ends.
391 This includes a mode line, if any. */
392
393#define WINDOW_BOTTOM_EDGE_LINE(W) \
394 (WINDOW_TOP_EDGE_LINE (W) + WINDOW_TOTAL_LINES (W))
395
396
397/* Return the frame x-position at which window W starts.
398 This includes a left-hand scroll bar, if any. */
399
400#define WINDOW_LEFT_EDGE_X(W) \
401 (FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W)) \
402 + WINDOW_LEFT_EDGE_COL (W) * WINDOW_FRAME_COLUMN_WIDTH (W))
403
404/* Return the frame x- position before which window W ends.
405 This includes a right-hand scroll bar, if any. */
406
407#define WINDOW_RIGHT_EDGE_X(W) \
408 (FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W)) \
409 + WINDOW_RIGHT_EDGE_COL (W) * WINDOW_FRAME_COLUMN_WIDTH (W))
410
411/* Return the frame y-position at which window W starts.
412 This includes a header line, if any. */
413
414#define WINDOW_TOP_EDGE_Y(W) \
415 (FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W)) \
416 + WINDOW_TOP_EDGE_LINE (W) * WINDOW_FRAME_LINE_HEIGHT (W))
417
418/* Return the frame y-position before which window W ends.
419 This includes a mode line, if any. */
420
421#define WINDOW_BOTTOM_EDGE_Y(W) \
422 (FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W)) \
423 + WINDOW_BOTTOM_EDGE_LINE (W) * WINDOW_FRAME_LINE_HEIGHT (W))
14a65ffe 424
8516ba9a 425
177c0ea7 426/* 1 if window W takes up the full width of its frame. */
8516ba9a
RS
427
428#define WINDOW_FULL_WIDTH_P(W) \
6000501b
KS
429 (WINDOW_TOTAL_COLS (W) == FRAME_TOTAL_COLS (WINDOW_XFRAME (W)))
430
431/* 1 if window W's has no other windows to its left in its frame. */
432
433#define WINDOW_LEFTMOST_P(W) \
434 (WINDOW_LEFT_EDGE_COL (W) == 0)
8516ba9a 435
177c0ea7 436/* 1 if window W's has no other windows to its right in its frame. */
8516ba9a
RS
437
438#define WINDOW_RIGHTMOST_P(W) \
6000501b
KS
439 (WINDOW_RIGHT_EDGE_COL (W) == FRAME_TOTAL_COLS (WINDOW_XFRAME (W)))
440
441
442/* Return the frame column at which the text (or left fringe) in
443 window W starts. This is different from the `LEFT_EDGE' because it
444 does not include a left-hand scroll bar if any. */
445
446#define WINDOW_BOX_LEFT_EDGE_COL(W) \
447 (WINDOW_LEFT_EDGE_COL (W) \
448 + WINDOW_LEFT_SCROLL_BAR_COLS (W))
449
450/* Return the window column before which the text in window W ends.
451 This is different from WINDOW_RIGHT_EDGE_COL because it does not
452 include a scroll bar or window-separating line on the right edge. */
453
454#define WINDOW_BOX_RIGHT_EDGE_COL(W) \
455 (WINDOW_RIGHT_EDGE_COL (W) \
456 - WINDOW_RIGHT_SCROLL_BAR_COLS (W))
457
458
459/* Return the frame position at which the text (or left fringe) in
460 window W starts. This is different from the `LEFT_EDGE' because it
461 does not include a left-hand scroll bar if any. */
462
463#define WINDOW_BOX_LEFT_EDGE_X(W) \
464 (FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W)) \
465 + WINDOW_BOX_LEFT_EDGE_COL (W) * WINDOW_FRAME_COLUMN_WIDTH (W))
466
467/* Return the window column before which the text in window W ends.
468 This is different from WINDOW_RIGHT_EDGE_COL because it does not
469 include a scroll bar or window-separating line on the right edge. */
470
471#define WINDOW_BOX_RIGHT_EDGE_X(W) \
472 (FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W)) \
473 + WINDOW_BOX_RIGHT_EDGE_COL (W) * WINDOW_FRAME_COLUMN_WIDTH (W))
474
475
476/* Width of left margin area in columns. */
477
478#define WINDOW_LEFT_MARGIN_COLS(W) \
479 (NILP ((W)->left_margin_cols) \
480 ? 0 \
481 : XINT ((W)->left_margin_cols))
482
483/* Width of right marginal area in columns. */
484
485#define WINDOW_RIGHT_MARGIN_COLS(W) \
486 (NILP ((W)->right_margin_cols) \
487 ? 0 \
488 : XINT ((W)->right_margin_cols))
489
490/* Width of left margin area in pixels. */
491
492#define WINDOW_LEFT_MARGIN_WIDTH(W) \
493 (NILP ((W)->left_margin_cols) \
494 ? 0 \
495 : (XINT ((W)->left_margin_cols) \
496 * WINDOW_FRAME_COLUMN_WIDTH (W)))
497
498/* Width of right marginal area in pixels. */
499
500#define WINDOW_RIGHT_MARGIN_WIDTH(W) \
501 (NILP ((W)->right_margin_cols) \
502 ? 0 \
503 : (XINT ((W)->right_margin_cols) \
504 * WINDOW_FRAME_COLUMN_WIDTH (W)))
505
506/* Total width of fringes reserved for drawing truncation bitmaps,
507 continuation bitmaps and alike. The width is in canonical char
508 units of the frame. This must currently be the case because window
509 sizes aren't pixel values. If it weren't the case, we wouldn't be
510 able to split windows horizontally nicely. */
511
512#define WINDOW_FRINGE_COLS(W) \
513 ((INTEGERP ((W)->left_fringe_width) \
514 || INTEGERP ((W)->right_fringe_width)) \
515 ? ((WINDOW_LEFT_FRINGE_WIDTH (W) \
516 + WINDOW_RIGHT_FRINGE_WIDTH (W) \
517 + WINDOW_FRAME_COLUMN_WIDTH (W) - 1) \
518 / WINDOW_FRAME_COLUMN_WIDTH (W)) \
519 : FRAME_FRINGE_COLS (WINDOW_XFRAME (W)))
520
01aa0b2e
RS
521/* Column-width of the left and right fringe. */
522
523#define WINDOW_LEFT_FRINGE_COLS(W) \
524 ((WINDOW_LEFT_FRINGE_WIDTH ((W)) \
525 + WINDOW_FRAME_COLUMN_WIDTH (W) - 1) \
526 / WINDOW_FRAME_COLUMN_WIDTH (W))
527
528#define WINDOW_RIGHT_FRINGE_COLS(W) \
529 ((WINDOW_RIGHT_FRINGE_WIDTH ((W)) \
530 + WINDOW_FRAME_COLUMN_WIDTH (W) - 1) \
531 / WINDOW_FRAME_COLUMN_WIDTH (W))
532
6000501b
KS
533/* Pixel-width of the left and right fringe. */
534
535#define WINDOW_LEFT_FRINGE_WIDTH(W) \
536 (INTEGERP ((W)->left_fringe_width) \
537 ? XFASTINT ((W)->left_fringe_width) \
538 : FRAME_LEFT_FRINGE_WIDTH (WINDOW_XFRAME (W)))
539
540#define WINDOW_RIGHT_FRINGE_WIDTH(W) \
541 (INTEGERP ((W)->right_fringe_width) \
542 ? XFASTINT ((W)->right_fringe_width) \
543 : FRAME_RIGHT_FRINGE_WIDTH (WINDOW_XFRAME (W)))
544
545/* Total width of fringes in pixels. */
546
547#define WINDOW_TOTAL_FRINGE_WIDTH(W) \
548 (WINDOW_LEFT_FRINGE_WIDTH (W) + WINDOW_RIGHT_FRINGE_WIDTH (W))
549
550/* Are fringes outside display margins in window W. */
551
552#define WINDOW_HAS_FRINGES_OUTSIDE_MARGINS(W) \
553 (!NILP ((W)->fringes_outside_margins))
554
555/* Say whether scroll bars are currently enabled for window W,
556 and which side they are on. */
557
558#define WINDOW_VERTICAL_SCROLL_BAR_TYPE(w) \
559 (EQ ((w)->vertical_scroll_bar_type, Qt) \
560 ? FRAME_VERTICAL_SCROLL_BAR_TYPE (WINDOW_XFRAME (w)) \
561 : EQ ((w)->vertical_scroll_bar_type, Qleft) \
562 ? vertical_scroll_bar_left \
563 : EQ ((w)->vertical_scroll_bar_type, Qright) \
564 ? vertical_scroll_bar_right \
565 : vertical_scroll_bar_none) \
566
567#define WINDOW_HAS_VERTICAL_SCROLL_BAR(w) \
568 (EQ ((w)->vertical_scroll_bar_type, Qt) \
569 ? FRAME_HAS_VERTICAL_SCROLL_BARS (WINDOW_XFRAME (w)) \
570 : !NILP ((w)->vertical_scroll_bar_type))
571
572#define WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT(w) \
573 (EQ ((w)->vertical_scroll_bar_type, Qt) \
574 ? FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (WINDOW_XFRAME (w)) \
575 : EQ ((w)->vertical_scroll_bar_type, Qleft))
576
577#define WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT(w) \
578 (EQ ((w)->vertical_scroll_bar_type, Qt) \
579 ? FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (WINDOW_XFRAME (w))\
580 : EQ ((w)->vertical_scroll_bar_type, Qright))
581
582/* Width that a scroll bar in window W should have, if there is one.
583 Measured in pixels. If scroll bars are turned off, this is still
584 nonzero. */
585
586#define WINDOW_CONFIG_SCROLL_BAR_WIDTH(w) \
587 (INTEGERP ((w)->scroll_bar_width) \
588 ? XFASTINT ((w)->scroll_bar_width) \
589 : FRAME_CONFIG_SCROLL_BAR_WIDTH (WINDOW_XFRAME (w)))
590
591/* Width that a scroll bar in window W should have, if there is one.
592 Measured in columns (characters). If scroll bars are turned off,
593 this is still nonzero. */
594
595#define WINDOW_CONFIG_SCROLL_BAR_COLS(w) \
596 (INTEGERP ((w)->scroll_bar_width) \
597 ? ((XFASTINT ((w)->scroll_bar_width) \
598 + WINDOW_FRAME_COLUMN_WIDTH (w) - 1) \
599 / WINDOW_FRAME_COLUMN_WIDTH (w)) \
600 : FRAME_CONFIG_SCROLL_BAR_COLS (WINDOW_XFRAME (w)))
601
602/* Width of a scroll bar in window W, measured in columns (characters),
603 but only if scroll bars are on the left. If scroll bars are on
604 the right in this frame, or there are no scroll bars, value is 0. */
605
606#define WINDOW_LEFT_SCROLL_BAR_COLS(w) \
607 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w) \
608 ? (WINDOW_CONFIG_SCROLL_BAR_COLS (w)) \
609 : 0)
610
611/* Width of a left scroll bar area in window W , measured in pixels. */
612
613#define WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH(w) \
614 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w) \
615 ? (WINDOW_CONFIG_SCROLL_BAR_COLS (w) * WINDOW_FRAME_COLUMN_WIDTH (w)) \
616 : 0)
617
618/* Width of a scroll bar in window W, measured in columns (characters),
619 but only if scroll bars are on the right. If scroll bars are on
620 the left in this frame, or there are no scroll bars, value is 0. */
621
622#define WINDOW_RIGHT_SCROLL_BAR_COLS(w) \
623 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w) \
624 ? WINDOW_CONFIG_SCROLL_BAR_COLS (w) \
625 : 0)
626
627/* Width of a left scroll bar area in window W , measured in pixels. */
628
629#define WINDOW_RIGHT_SCROLL_BAR_AREA_WIDTH(w) \
630 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w) \
631 ? (WINDOW_CONFIG_SCROLL_BAR_COLS (w) * WINDOW_FRAME_COLUMN_WIDTH (w)) \
632 : 0)
633
634
635/* Actual width of a scroll bar in window W, measured in columns. */
636
637#define WINDOW_SCROLL_BAR_COLS(w) \
638 (WINDOW_HAS_VERTICAL_SCROLL_BAR (w) \
639 ? WINDOW_CONFIG_SCROLL_BAR_COLS (w) \
640 : 0)
641
642/* Width of a left scroll bar area in window W , measured in pixels. */
643
644#define WINDOW_SCROLL_BAR_AREA_WIDTH(w) \
645 (WINDOW_HAS_VERTICAL_SCROLL_BAR (w) \
646 ? (WINDOW_CONFIG_SCROLL_BAR_COLS (w) * WINDOW_FRAME_COLUMN_WIDTH (w)) \
647 : 0)
648
649
650/* Return the frame position where the scroll bar of window W starts. */
651
652#define WINDOW_SCROLL_BAR_AREA_X(W) \
653 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (W) \
654 ? WINDOW_BOX_RIGHT_EDGE_X (W) \
655 : WINDOW_LEFT_EDGE_X (W))
656
657
01aa0b2e
RS
658/* Height in pixels, and in lines, of the mode line.
659 May be zero if W doesn't have a mode line. */
6000501b
KS
660
661#define WINDOW_MODE_LINE_HEIGHT(W) \
662 (WINDOW_WANTS_MODELINE_P ((W)) \
663 ? CURRENT_MODE_LINE_HEIGHT (W) \
664 : 0)
665
01aa0b2e
RS
666#define WINDOW_MODE_LINE_LINES(W) \
667 (!! WINDOW_WANTS_MODELINE_P ((W)))
668
669/* Height in pixels, and in lines, of the header line.
670 Zero if W doesn't have a header line. */
6000501b
KS
671
672#define WINDOW_HEADER_LINE_HEIGHT(W) \
673 (WINDOW_WANTS_HEADER_LINE_P ((W)) \
674 ? CURRENT_HEADER_LINE_HEIGHT (W) \
675 : 0)
676
01aa0b2e
RS
677#define WINDOW_HEADER_LINE_LINES(W) \
678 (!! WINDOW_WANTS_HEADER_LINE_P ((W)))
679
6000501b
KS
680/* Pixel height of window W without mode line. */
681
682#define WINDOW_BOX_HEIGHT_NO_MODE_LINE(W) \
683 (WINDOW_TOTAL_HEIGHT ((W)) \
684 - WINDOW_MODE_LINE_HEIGHT ((W)))
685
686/* Pixel height of window W without mode and header line. */
687
688#define WINDOW_BOX_TEXT_HEIGHT(W) \
689 (WINDOW_TOTAL_HEIGHT ((W)) \
690 - WINDOW_MODE_LINE_HEIGHT ((W)) \
691 - WINDOW_HEADER_LINE_HEIGHT ((W)))
692
693
694/* Convert window W relative pixel X to frame pixel coordinates. */
695
696#define WINDOW_TO_FRAME_PIXEL_X(W, X) \
697 ((X) + WINDOW_BOX_LEFT_EDGE_X ((W)))
698
699/* Convert window W relative pixel Y to frame pixel coordinates. */
700
701#define WINDOW_TO_FRAME_PIXEL_Y(W, Y) \
702 ((Y) + WINDOW_TOP_EDGE_Y ((W)))
703
704/* Convert frame relative pixel X to window relative pixel X. */
705
706#define FRAME_TO_WINDOW_PIXEL_X(W, X) \
707 ((X) - WINDOW_BOX_LEFT_EDGE_X ((W)))
708
709/* Convert frame relative pixel Y to window relative pixel Y. */
710
711#define FRAME_TO_WINDOW_PIXEL_Y(W, Y) \
712 ((Y) - WINDOW_TOP_EDGE_Y ((W)))
713
714/* Convert a text area relative x-position in window W to frame X
715 pixel coordinates. */
177c0ea7 716
6000501b
KS
717#define WINDOW_TEXT_TO_FRAME_PIXEL_X(W, X) \
718 (window_box_left ((W), TEXT_AREA) + (X))
f43dd834 719
83b2229f
JB
720/* This is the window in which the terminal's cursor should
721 be left when nothing is being done with it. This must
722 always be a leaf window, and its buffer is selected by
723 the top level editing loop at the end of each command.
724
725 This value is always the same as
44fa5b1e 726 FRAME_SELECTED_WINDOW (selected_frame). */
83b2229f
JB
727
728extern Lisp_Object selected_window;
729
730/* This is a time stamp for window selection, so we can find the least
731 recently used window. Its only users are Fselect_window,
44fa5b1e 732 init_window_once, and make_frame. */
83b2229f
JB
733
734extern int window_select_count;
735
44fa5b1e 736/* The minibuffer window of the selected frame.
83b2229f 737 Note that you cannot test for minibufferness of an arbitrary window
fbfed6f0 738 by comparing against this; use the MINI_WINDOW_P macro instead. */
83b2229f
JB
739
740extern Lisp_Object minibuf_window;
741
76e316e0
KS
742/* Non-nil means it is the window whose mode line should be
743 shown as the selected window when the minibuffer is selected. */
744
5705966b 745extern Lisp_Object minibuf_selected_window;
76e316e0 746
f43dd834
GM
747/* Non-nil => window to for C-M-v to scroll when the minibuffer is
748 selected. */
749
83b2229f
JB
750extern Lisp_Object Vminibuf_scroll_window;
751
f43dd834
GM
752/* Nil or a symbol naming the window system under which emacs is
753 running ('x is the only current possibility) */
754
83b2229f
JB
755extern Lisp_Object Vwindow_system;
756
757/* Version number of X windows: 10, 11 or nil. */
f43dd834 758
83b2229f
JB
759extern Lisp_Object Vwindow_system_version;
760
761/* Window that the mouse is over (nil if no mouse support). */
f43dd834 762
83b2229f
JB
763extern Lisp_Object Vmouse_window;
764
765/* Last mouse-click event (nil if no mouse support). */
f43dd834 766
83b2229f
JB
767extern Lisp_Object Vmouse_event;
768
4c571d09 769EXFUN (Fnext_window, 3);
f1321dc3 770EXFUN (Fselect_window, 2);
c2579332 771EXFUN (Fdisplay_buffer, 3);
6000501b 772EXFUN (Fset_window_buffer, 3);
f43dd834
GM
773EXFUN (Fset_window_hscroll, 2);
774EXFUN (Fwindow_hscroll, 1);
754dc3d8
KS
775EXFUN (Fset_window_vscroll, 3);
776EXFUN (Fwindow_vscroll, 2);
f43dd834 777EXFUN (Fset_window_margins, 3);
caf9deee 778EXFUN (Fwindow_live_p, 1);
30da6d95 779EXFUN (Fset_window_point, 2);
4c571d09
AS
780extern Lisp_Object make_window P_ ((void));
781extern void delete_window P_ ((Lisp_Object));
b74b8397 782extern Lisp_Object window_from_coordinates P_ ((struct frame *, int, int,
6000501b
KS
783 enum window_part *,
784 int *, int*, int));
4c571d09
AS
785EXFUN (Fwindow_dedicated_p, 1);
786extern int window_height P_ ((Lisp_Object));
787extern int window_width P_ ((Lisp_Object));
788extern void set_window_height P_ ((Lisp_Object, int, int));
789extern void set_window_width P_ ((Lisp_Object, int, int));
92a373e3 790extern void change_window_heights P_ ((Lisp_Object, int));
4c571d09 791extern void delete_all_subwindows P_ ((struct window *));
4dedbdd8 792extern void freeze_window_starts P_ ((struct frame *, int));
f5588a40
GM
793extern void foreach_window P_ ((struct frame *,
794 int (* fn) (struct window *, void *),
795 void *));
57209cba
GM
796extern void grow_mini_window P_ ((struct window *, int));
797extern void shrink_mini_window P_ ((struct window *));
798
83b2229f 799
f43dd834
GM
800/* Make WINDOW display BUFFER as its contents. RUN_HOOKS_P non-zero
801 means it's allowed to run hooks. See make_frame for a case where
802 it's not allowed. */
803
804void set_window_buffer P_ ((Lisp_Object window, Lisp_Object buffer,
6000501b 805 int run_hooks_p, int keep_margins_p));
f43dd834 806
83b2229f 807/* Prompt to display in front of the minibuffer contents. */
f43dd834 808
21826734 809extern Lisp_Object minibuf_prompt;
83b2229f 810
56a98455 811/* The visual width of the above. */
f43dd834 812
56a98455
JB
813extern int minibuf_prompt_width;
814
f43dd834
GM
815/* This is the window where the echo area message was displayed. It
816 is always a minibuffer window, but it may not be the same window
817 currently active as a minibuffer. */
818
c0acc112
RS
819extern Lisp_Object echo_area_window;
820
83b2229f 821/* Depth in recursive edits. */
f43dd834 822
83b2229f
JB
823extern int command_loop_level;
824
825/* Depth in minibuffer invocations. */
f43dd834 826
83b2229f
JB
827extern int minibuf_level;
828
829/* true iff we should redraw the mode lines on the next redisplay. */
f43dd834 830
83b2229f
JB
831extern int update_mode_lines;
832
f43dd834
GM
833/* Nonzero if BEGV - BEG or Z - ZV of current buffer has changed since
834 last redisplay that finished. */
835
83b2229f
JB
836extern int clip_changed;
837
f43dd834
GM
838/* Nonzero if window sizes or contents have changed since last
839 redisplay that finished */
840
83b2229f
JB
841extern int windows_or_buffers_changed;
842
d1a0ea0a
RS
843/* Nonzero means a frame's cursor type has been changed. */
844
845extern int cursor_type_changed;
846
f43dd834
GM
847/* Number of windows displaying the selected buffer. Normally this is
848 1, but it can be more. */
849
83b2229f 850extern int buffer_shared;
fbfed6f0
JB
851
852/* If *ROWS or *COLS are too small a size for FRAME, set them to the
853 minimum allowable size. */
f43dd834 854
4c571d09 855extern void check_frame_size P_ ((struct frame *frame, int *rows, int *cols));
f43dd834
GM
856
857/* Return a pointer to the glyph W's physical cursor is on. Value is
858 null if W's current matrix is invalid, so that no meaningfull glyph
859 can be returned. */
860
861struct glyph *get_phys_cursor_glyph P_ ((struct window *w));
862
91523be9
GM
863/* Value is non-zero if WINDOW is a live window. */
864
865#define WINDOW_LIVE_P(WINDOW) \
866 (WINDOWP ((WINDOW)) && !NILP (XWINDOW ((WINDOW))->buffer))
867
9a274fbd
SM
868
869/* These used to be in lisp.h. */
870
871extern Lisp_Object Qwindowp, Qwindow_live_p;
872extern Lisp_Object Vwindow_list;
873
874EXFUN (Fwindow_end, 2);
875EXFUN (Fselected_window, 0);
876EXFUN (Fdelete_window, 1);
877EXFUN (Fwindow_buffer, 1);
878EXFUN (Fget_buffer_window, 2);
879EXFUN (Fsave_window_excursion, UNEVALLED);
880EXFUN (Fsplit_window, 3);
881EXFUN (Fset_window_configuration, 1);
882EXFUN (Fcurrent_window_configuration, 1);
883extern int compare_window_configurations P_ ((Lisp_Object, Lisp_Object, int));
884EXFUN (Fcoordinates_in_window_p, 2);
885EXFUN (Fwindow_at, 3);
886EXFUN (Fpos_visible_in_window_p, 3);
887extern void mark_window_cursors_off P_ ((struct window *));
888extern int window_internal_height P_ ((struct window *));
889extern int window_internal_width P_ ((struct window *));
890EXFUN (Frecenter, 1);
891EXFUN (Fscroll_other_window, 1);
892EXFUN (Fset_window_start, 3);
893extern void temp_output_buffer_show P_ ((Lisp_Object));
894extern void replace_buffer_in_all_windows P_ ((Lisp_Object));
895extern void init_window_once P_ ((void));
896extern void init_window P_ ((void));
897extern void syms_of_window P_ ((void));
898extern void keys_of_window P_ ((void));
899
fccd208d 900extern int window_box_text_cols P_ ((struct window *w));
9a274fbd 901
f43dd834 902#endif /* not WINDOW_H_INCLUDED */
ab5796a9
MB
903
904/* arch-tag: d4a6942f-e433-4ffe-ac10-2c3574f28577
905 (do not change this comment) */