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