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