Document reserved keys
[emacs.git] / src / window.h
blob629283ac40cb18b9d560d9a1751c241c1a1a7cf9
1 /* Window definitions for GNU Emacs.
2 Copyright (C) 1985-1986, 1993, 1995, 1997-2018 Free Software
3 Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or (at
10 your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
20 #ifndef WINDOW_H_INCLUDED
21 #define WINDOW_H_INCLUDED
23 #include "dispextern.h"
25 INLINE_HEADER_BEGIN
27 /* Windows are allocated as if they were vectors, but then the
28 Lisp data type is changed to Lisp_Window. They are garbage
29 collected along with the vectors.
31 All windows in use are arranged into a tree, with pointers up and down.
33 Windows that are leaves of the tree are actually displayed
34 and show the contents of buffers. Windows that are not leaves
35 are used for representing the way groups of leaf windows are
36 arranged on the frame. Leaf windows never become non-leaves.
37 They are deleted only by calling delete-window on them (but
38 this can be done implicitly). Combination windows can be created
39 and deleted at any time.
41 A leaf window has a buffer stored in contents field and markers in its start
42 and pointm fields. Non-leaf windows have nil in the latter two fields.
44 Non-leaf windows are either vertical or horizontal combinations.
46 A vertical combination window has children that are arranged on the frame
47 one above the next. Its contents field points to the uppermost child.
48 The parent field of each of the children points to the vertical
49 combination window. The next field of each child points to the
50 child below it, or is nil for the lowest child. The prev field
51 of each child points to the child above it, or is nil for the
52 highest child.
54 A horizontal combination window has children that are side by side.
55 Its contents field points to the leftmost child. In each child
56 the next field points to the child to the right and the prev field
57 points to the child to the left.
59 The children of a vertical combination window may be leaf windows
60 or horizontal combination windows. The children of a horizontal
61 combination window may be leaf windows or vertical combination windows.
63 At the top of the tree are two windows which have nil as parent.
64 The second of these is minibuf_window. The first one manages all
65 the frame area that is not minibuffer, and is called the root window.
66 Different windows can be the root at different times;
67 initially the root window is a leaf window, but if more windows
68 are created then that leaf window ceases to be root and a newly
69 made combination window becomes root instead.
71 In any case, on screens which have an ordinary window and a
72 minibuffer, prev of the minibuf window is the root window and next of
73 the root window is the minibuf window. On minibufferless screens or
74 minibuffer-only screens, the root window and the minibuffer window are
75 one and the same, so its prev and next members are nil.
77 A dead window has its contents field set to nil. */
79 struct cursor_pos
81 /* Pixel position. These are always window relative. */
82 int x, y;
84 /* Glyph matrix position. */
85 int hpos, vpos;
88 struct window
90 /* This is for Lisp; the terminal code does not refer to it. */
91 union vectorlike_header header;
93 /* The frame this window is on. */
94 Lisp_Object frame;
96 /* Following (to right or down) and preceding (to left or up) child
97 at same level of tree. */
98 Lisp_Object next;
99 Lisp_Object prev;
101 /* The window this one is a child of. */
102 Lisp_Object parent;
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. */
107 Lisp_Object normal_lines;
108 Lisp_Object normal_cols;
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. */
112 Lisp_Object new_total;
113 Lisp_Object new_normal;
114 Lisp_Object new_pixel;
116 /* May be buffer, window, or nil. */
117 Lisp_Object contents;
119 /* A marker pointing to where in the text to start displaying.
120 BIDI Note: This is the _logical-order_ start, i.e. the smallest
121 buffer position visible in the window, not necessarily the
122 character displayed in the top left corner of the window. */
123 Lisp_Object start;
125 /* A marker pointing to where in the text point is in this window,
126 used only when the window is not selected.
127 This exists so that when multiple windows show one buffer
128 each one can have its own value of point. */
129 Lisp_Object pointm;
131 /* A marker pointing to where in the text point was in this window
132 at the time of last redisplay. The value is saved for the
133 selected window too. */
134 Lisp_Object old_pointm;
136 /* No permanent meaning; used by save-window-excursion's
137 bookkeeping. */
138 Lisp_Object temslot;
140 /* This window's vertical scroll bar. This field is only for use by
141 the window-system-dependent code which implements the scroll
142 bars; it can store anything it likes here. If this window is
143 newly created and we haven't displayed a scroll bar in it yet, or
144 if the frame doesn't have any scroll bars, this is nil. */
145 Lisp_Object vertical_scroll_bar;
147 /* Type of vertical scroll bar. A value of nil means
148 no scroll bar. A value of t means use frame value. */
149 Lisp_Object vertical_scroll_bar_type;
151 /* This window's horizontal scroll bar. This field is only for use
152 by the window-system-dependent code which implements the scroll
153 bars; it can store anything it likes here. If this window is
154 newly created and we haven't displayed a scroll bar in it yet, or
155 if the frame doesn't have any scroll bars, this is nil. */
156 Lisp_Object horizontal_scroll_bar;
158 /* Type of horizontal scroll bar. A value of nil means
159 no scroll bar. A value of t means use frame value. */
160 Lisp_Object horizontal_scroll_bar_type;
162 /* Display-table to use for displaying chars in this window.
163 Nil means use the buffer's own display-table. */
164 Lisp_Object display_table;
166 /* Non-nil usually means window is marked as dedicated.
167 Note Lisp code may set this to something beyond Qnil
168 and Qt, so bitfield can't be used here. */
169 Lisp_Object dedicated;
171 /* If redisplay in this window goes beyond this buffer position,
172 must run the redisplay-end-trigger-hook. */
173 Lisp_Object redisplay_end_trigger;
175 /* t means this window's child windows are not (re-)combined. */
176 Lisp_Object combination_limit;
178 /* An alist with parameters. */
179 Lisp_Object window_parameters;
181 /* No Lisp data may follow below this point without changing
182 mark_object in alloc.c. The member current_matrix must be the
183 first non-Lisp member. */
185 /* Glyph matrices. */
186 struct glyph_matrix *current_matrix;
187 struct glyph_matrix *desired_matrix;
189 /* The two Lisp_Object fields below are marked in a special way,
190 which is why they're placed after `current_matrix'. */
191 /* Alist of <buffer, window-start, window-point> triples listing
192 buffers previously shown in this window. */
193 Lisp_Object prev_buffers;
194 /* List of buffers re-shown in this window. */
195 Lisp_Object next_buffers;
197 /* Number saying how recently window was selected. */
198 EMACS_INT use_time;
200 /* Unique number of window assigned when it was created. */
201 EMACS_INT sequence_number;
203 /* The upper left corner pixel coordinates of this window, as
204 integers relative to upper left corner of frame = 0, 0. */
205 int pixel_left;
206 int pixel_top;
208 /* The upper left corner coordinates of this window,
209 relative to upper left corner of frame = 0, 0. */
210 int left_col;
211 int top_line;
213 /* The pixel size of the window. */
214 int pixel_width;
215 int pixel_height;
217 /* The pixel sizes of the window at the last time
218 `window-size-change-functions' was run. */
219 int pixel_width_before_size_change;
220 int pixel_height_before_size_change;
222 /* The size of the window. */
223 int total_cols;
224 int total_lines;
226 /* Number of columns display within the window is scrolled to the left. */
227 ptrdiff_t hscroll;
229 /* Minimum hscroll for automatic hscrolling. This is the value
230 the user has set, by set-window-hscroll for example. */
231 ptrdiff_t min_hscroll;
233 /* Maximum line length in pixels within window bound by size of
234 window (set up by set_horizontal_scroll_bar). */
235 ptrdiff_t hscroll_whole;
237 /* Displayed buffer's text modification events counter as of last time
238 display completed. */
239 EMACS_INT last_modified;
241 /* Displayed buffer's overlays modification events counter as of last
242 complete update. */
243 EMACS_INT last_overlay_modified;
245 /* Value of point at that time. Since this is a position in a buffer,
246 it should be positive. */
247 ptrdiff_t last_point;
249 /* Line number and position of a line somewhere above the top of the
250 screen. If this field is zero, it means we don't have a base line. */
251 ptrdiff_t base_line_number;
253 /* If this field is zero, it means we don't have a base line.
254 If it is -1, it means don't display the line number as long
255 as the window shows its buffer. */
256 ptrdiff_t base_line_pos;
258 /* The column number currently displayed in this window's mode
259 line, or -1 if column numbers are not being displayed. */
260 ptrdiff_t column_number_displayed;
262 /* Scaling factor for the glyph_matrix size calculation in this window.
263 Used if window contains many small images or uses proportional fonts,
264 as the normal may yield a matrix which is too small. */
265 int nrows_scale_factor, ncols_scale_factor;
267 /* Intended cursor position. This is a position within the
268 glyph matrix. */
269 struct cursor_pos cursor;
271 /* Where the cursor actually is. */
272 struct cursor_pos phys_cursor;
274 /* Internally used for redisplay purposes. */
275 struct cursor_pos output_cursor;
277 /* Vertical cursor position as of last update that completed
278 without pause. This is the position of last_point. */
279 int last_cursor_vpos;
281 #ifdef HAVE_WINDOW_SYSTEM
283 /* Cursor type of last cursor drawn on the window. */
284 enum text_cursor_kinds phys_cursor_type;
286 /* Width of the cursor above. */
287 int phys_cursor_width;
289 /* This is handy for undrawing the cursor. */
290 int phys_cursor_ascent, phys_cursor_height;
292 #endif /* HAVE_WINDOW_SYSTEM */
294 /* Width of left and right fringes, in pixels.
295 A value of -1 means use frame values. */
296 int left_fringe_width;
297 int right_fringe_width;
299 /* Requested width of left and right marginal areas in columns. A
300 value of 0 means no margin. The actual values are recorded in
301 the window's glyph matrix, in the left_margin_glyphs and
302 right_margin_glyphs members. */
303 int left_margin_cols;
304 int right_margin_cols;
306 /* Pixel width of scroll bars.
307 A value of -1 means use frame values. */
308 int scroll_bar_width;
310 /* Pixel height of scroll bars.
311 A value of -1 means use frame values. */
312 int scroll_bar_height;
314 /* Effective height of the mode line, or -1 if not known. */
315 int mode_line_height;
317 /* Effective height of the header line, or -1 if not known. */
318 int header_line_height;
320 /* Z - the buffer position of the last glyph in the current
321 matrix of W. Only valid if window_end_valid is true. */
322 ptrdiff_t window_end_pos;
324 /* Glyph matrix row of the last glyph in the current matrix
325 of W. Only valid if window_end_valid is true. */
326 int window_end_vpos;
328 /* True if this window is a minibuffer window. */
329 bool_bf mini : 1;
331 /* Meaningful for internal windows only: true if this window is a
332 horizontal combination, false if it is a vertical
333 combination. */
334 bool_bf horizontal : 1;
336 /* True means must regenerate mode line of this window. */
337 bool_bf update_mode_line : 1;
339 /* True if the buffer was "modified" when the window
340 was last updated. */
341 bool_bf last_had_star : 1;
343 /* True means current value of `start'
344 was the beginning of a line when it was chosen. */
345 bool_bf start_at_line_beg : 1;
347 /* True means next redisplay must use the value of start
348 set up for it in advance. Set by scrolling commands. */
349 bool_bf force_start : 1;
351 /* True means we have explicitly changed the value of start,
352 but that the next redisplay is not obliged to use the new value.
353 This is used in Fdelete_other_windows to force a call to
354 Vwindow_scroll_functions; also by Frecenter with argument. */
355 bool_bf optional_new_start : 1;
357 /* True means the cursor is currently displayed. This can be
358 set to zero by functions overpainting the cursor image. */
359 bool_bf phys_cursor_on_p : 1;
361 /* False means cursor is logically on, true means it's off. Used for
362 blinking cursor. */
363 bool_bf cursor_off_p : 1;
365 /* Value of cursor_off_p as of the last redisplay. */
366 bool_bf last_cursor_off_p : 1;
368 /* True means desired matrix has been build and window must be
369 updated in update_frame. */
370 bool_bf must_be_updated_p : 1;
372 /* Flag indicating that this window is not a real one.
373 Currently only used for menu bar windows, for tool bar windows,
374 and for tooltips. */
375 bool_bf pseudo_window_p : 1;
377 /* True means fringes are drawn outside display margins.
378 Otherwise draw them between margin areas and text. */
379 bool_bf fringes_outside_margins : 1;
381 /* True if window_end_pos and window_end_vpos are truly valid.
382 This is false if nontrivial redisplay is preempted since in that case
383 the frame image that window_end_pos did not get onto the frame. */
384 bool_bf window_end_valid : 1;
386 /* True if it needs to be redisplayed. */
387 bool_bf redisplay : 1;
389 /* True if auto hscrolling is currently suspended in this
390 window. */
391 bool_bf suspend_auto_hscroll : 1;
393 /* Amount by which lines of this window are scrolled in
394 y-direction (smooth scrolling). */
395 int vscroll;
397 /* Z_BYTE - buffer position of the last glyph in the current matrix of W.
398 Should be nonnegative, and only valid if window_end_valid is true. */
399 ptrdiff_t window_end_bytepos;
402 INLINE bool
403 WINDOWP (Lisp_Object a)
405 return PSEUDOVECTORP (a, PVEC_WINDOW);
408 INLINE void
409 CHECK_WINDOW (Lisp_Object x)
411 CHECK_TYPE (WINDOWP (x), Qwindowp, x);
414 INLINE struct window *
415 XWINDOW (Lisp_Object a)
417 eassert (WINDOWP (a));
418 return XUNTAG (a, Lisp_Vectorlike);
421 /* Most code should use these functions to set Lisp fields in struct
422 window. */
423 INLINE void
424 wset_frame (struct window *w, Lisp_Object val)
426 w->frame = val;
429 INLINE void
430 wset_next (struct window *w, Lisp_Object val)
432 w->next = val;
435 INLINE void
436 wset_prev (struct window *w, Lisp_Object val)
438 w->prev = val;
441 INLINE void
442 wset_redisplay_end_trigger (struct window *w, Lisp_Object val)
444 w->redisplay_end_trigger = val;
447 INLINE void
448 wset_new_pixel (struct window *w, Lisp_Object val)
450 w->new_pixel = val;
453 INLINE void
454 wset_vertical_scroll_bar (struct window *w, Lisp_Object val)
456 w->vertical_scroll_bar = val;
459 INLINE void
460 wset_horizontal_scroll_bar (struct window *w, Lisp_Object val)
462 w->horizontal_scroll_bar = val;
465 INLINE void
466 wset_horizontal_scroll_bar_type (struct window *w, Lisp_Object val)
468 w->horizontal_scroll_bar_type = val;
471 INLINE void
472 wset_prev_buffers (struct window *w, Lisp_Object val)
474 w->prev_buffers = val;
477 INLINE void
478 wset_next_buffers (struct window *w, Lisp_Object val)
480 w->next_buffers = val;
483 /* True if W is a minibuffer window. */
484 #define MINI_WINDOW_P(W) ((W)->mini)
486 /* True if W is a minibuffer window on a frame that contains at least
487 one other window. */
488 #define MINI_NON_ONLY_WINDOW_P(W) \
489 (MINI_WINDOW_P (W) && !NILP ((W)->prev))
491 /* True if W is a minibuffer window that is alone on its frame. */
492 #define MINI_ONLY_WINDOW_P(W) \
493 (MINI_WINDOW_P (W) && NILP ((W)->prev))
495 /* General window layout:
497 LEFT_EDGE_COL RIGHT_EDGE_COL
500 | BOX_LEFT_EDGE_COL |
501 | | BOX_RIGHT_EDGE_COL |
502 | | | |
503 v v v v
504 <-><-><---><-----------><---><-><->
505 ^ ^ ^ ^ ^ ^ ^
506 | | | | | | |
507 | | | | | | +-- RIGHT_SCROLL_BAR_COLS
508 | | | | | +----- RIGHT_FRINGE_WIDTH
509 | | | | +--------- RIGHT_MARGIN_COLS
510 | | | |
511 | | | +------------------ TEXT_AREA_COLS
512 | | |
513 | | +--------------------------- LEFT_MARGIN_COLS
514 | +------------------------------- LEFT_FRINGE_WIDTH
515 +---------------------------------- LEFT_SCROLL_BAR_COLS
520 /* A handy macro. */
522 /* Non-nil if window W is leaf window (has a buffer). */
523 #define WINDOW_LEAF_P(W) \
524 (BUFFERP ((W)->contents))
526 /* Non-nil if window W is internal (is a parent window). */
527 #define WINDOW_INTERNAL_P(W) \
528 (WINDOWP ((W)->contents))
530 /* True if window W is a horizontal combination of windows. */
531 #define WINDOW_HORIZONTAL_COMBINATION_P(W) \
532 (WINDOW_INTERNAL_P (W) && (W)->horizontal)
534 /* True if window W is a vertical combination of windows. */
535 #define WINDOW_VERTICAL_COMBINATION_P(W) \
536 (WINDOW_INTERNAL_P (W) && !(W)->horizontal)
538 /* Window W's XFRAME. */
539 #define WINDOW_XFRAME(W) (XFRAME (WINDOW_FRAME ((W))))
541 /* Whether window W is a pseudo window. */
542 #define WINDOW_PSEUDO_P(W) ((W)->pseudo_window_p)
544 /* Window W's buffer. */
545 #define WINDOW_BUFFER(W) \
546 (WINDOW_LEAF_P(W) \
547 ? (W)->contents \
548 : Qnil) \
550 /* Return the canonical column width of the frame of window W. */
551 #define WINDOW_FRAME_COLUMN_WIDTH(W) \
552 (FRAME_COLUMN_WIDTH (WINDOW_XFRAME ((W))))
554 /* Return the canonical line height of the frame of window W. */
555 #define WINDOW_FRAME_LINE_HEIGHT(W) \
556 (FRAME_LINE_HEIGHT (WINDOW_XFRAME ((W))))
558 /* Return the pixel width of window W. This includes dividers, scroll
559 bars, fringes and margins, if any. */
560 #define WINDOW_PIXEL_WIDTH(W) (W)->pixel_width
562 /* Return the pixel height of window W. This includes dividers, scroll
563 bars, header and mode lines, if any. */
564 #define WINDOW_PIXEL_HEIGHT(W) (W)->pixel_height
566 /* Return the width of window W in canonical column units. This
567 includes dividers, scroll bars, fringes and margins, if any. The
568 value is adjusted such that the sum of the widths of all child
569 windows equals the width of their parent window. */
570 #define WINDOW_TOTAL_COLS(W) (W)->total_cols
572 /* Return the height of window W in canonical line units. This includes
573 dividers, scroll bars, header and mode lines, if any. The value is
574 adjusted such that the sum of the heights of all child windows equals
575 the height of their parent window. */
576 #define WINDOW_TOTAL_LINES(W) (W)->total_lines
578 /* The smallest acceptable dimensions for a window. Anything smaller
579 might crash Emacs. */
580 #define MIN_SAFE_WINDOW_WIDTH (2)
582 #define MIN_SAFE_WINDOW_PIXEL_WIDTH(W) \
583 (2 * WINDOW_FRAME_COLUMN_WIDTH (W))
585 #define MIN_SAFE_WINDOW_HEIGHT (1)
587 #define MIN_SAFE_WINDOW_PIXEL_HEIGHT(W) \
588 (WINDOW_FRAME_LINE_HEIGHT (W))
590 /* True if window W has no other windows to its left on its frame. */
591 #define WINDOW_LEFTMOST_P(W) \
592 (WINDOW_LEFT_PIXEL_EDGE (W) == 0)
594 /* True if window W has no other windows above it on its frame. */
595 #define WINDOW_TOPMOST_P(W) \
596 (WINDOW_TOP_PIXEL_EDGE (W) == 0)
598 /* True if window W has no other windows to its right on its frame. */
599 #define WINDOW_RIGHTMOST_P(W) \
600 (WINDOW_RIGHT_PIXEL_EDGE (W) \
601 == (WINDOW_RIGHT_PIXEL_EDGE \
602 (XWINDOW (FRAME_ROOT_WINDOW (WINDOW_XFRAME (W)))))) \
604 /* True if window W has no other windows below it on its frame (the
605 minibuffer window is not counted in this respect unless W itself is a
606 minibuffer window). */
607 #define WINDOW_BOTTOMMOST_P(W) \
608 (WINDOW_BOTTOM_PIXEL_EDGE (W) \
609 == (WINDOW_BOTTOM_PIXEL_EDGE \
610 (XWINDOW (FRAME_ROOT_WINDOW (WINDOW_XFRAME (W)))))) \
612 /* True if window W takes up the full width of its frame. */
613 #define WINDOW_FULL_WIDTH_P(W) \
614 (WINDOW_PIXEL_WIDTH (W) \
615 == (WINDOW_PIXEL_WIDTH \
616 (XWINDOW (FRAME_ROOT_WINDOW (WINDOW_XFRAME (W)))))) \
618 /* Width of right divider of window W. */
619 #define WINDOW_RIGHT_DIVIDER_WIDTH(W) \
620 (WINDOW_RIGHTMOST_P (W) \
621 ? 0 : FRAME_RIGHT_DIVIDER_WIDTH (WINDOW_XFRAME (W)))
623 /* Width of bottom divider of window W. */
624 #define WINDOW_BOTTOM_DIVIDER_WIDTH(W) \
625 (((WINDOW_BOTTOMMOST_P (W) \
626 && NILP ((XWINDOW (FRAME_ROOT_WINDOW \
627 (WINDOW_XFRAME (W))))->next)) \
628 || EQ ((W)->prev, FRAME_ROOT_WINDOW (WINDOW_XFRAME (W))) \
629 || (W)->pseudo_window_p) \
630 ? 0 : FRAME_BOTTOM_DIVIDER_WIDTH (WINDOW_XFRAME (W)))
632 /* Return the canonical frame column at which window W starts.
633 This includes a left-hand scroll bar, if any. */
634 #define WINDOW_LEFT_EDGE_COL(W) (W)->left_col
636 /* Return the canonical frame column before which window W ends.
637 This includes a right-hand scroll bar, if any. */
638 #define WINDOW_RIGHT_EDGE_COL(W) \
639 (WINDOW_LEFT_EDGE_COL (W) + WINDOW_TOTAL_COLS (W))
641 /* Return the canonical frame line at which window W starts.
642 This includes a header line, if any. */
643 #define WINDOW_TOP_EDGE_LINE(W) (W)->top_line
645 /* Return the canonical frame line before which window W ends.
646 This includes a mode line, if any. */
647 #define WINDOW_BOTTOM_EDGE_LINE(W) \
648 (WINDOW_TOP_EDGE_LINE (W) + WINDOW_TOTAL_LINES (W))
650 /* Return the left pixel edge at which window W starts.
651 This includes a left-hand scroll bar, if any. */
652 #define WINDOW_LEFT_PIXEL_EDGE(W) (W)->pixel_left
654 /* Return the right pixel edge before which window W ends.
655 This includes a right-hand scroll bar, if any. */
656 #define WINDOW_RIGHT_PIXEL_EDGE(W) \
657 (WINDOW_LEFT_PIXEL_EDGE (W) + WINDOW_PIXEL_WIDTH (W))
659 /* Return the top pixel edge at which window W starts.
660 This includes a header line, if any. */
661 #define WINDOW_TOP_PIXEL_EDGE(W) (W)->pixel_top
663 /* Return the bottom pixel edge before which window W ends.
664 This includes a mode line, if any. */
665 #define WINDOW_BOTTOM_PIXEL_EDGE(W) \
666 (WINDOW_TOP_PIXEL_EDGE (W) + WINDOW_PIXEL_HEIGHT (W))
668 /* Return the frame x-position at which window W starts.
669 This includes a left-hand scroll bar, if any. */
670 #define WINDOW_LEFT_EDGE_X(W) \
671 (FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W)) \
672 + WINDOW_LEFT_PIXEL_EDGE (W))
674 /* Return the frame x- position before which window W ends.
675 This includes a right-hand scroll bar, if any. */
676 #define WINDOW_RIGHT_EDGE_X(W) \
677 (FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W)) \
678 + WINDOW_RIGHT_PIXEL_EDGE (W))
680 /* True if W is a menu bar window. */
681 #if defined (HAVE_X_WINDOWS) && ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
682 #define WINDOW_MENU_BAR_P(W) \
683 (WINDOWP (WINDOW_XFRAME (W)->menu_bar_window) \
684 && (W) == XWINDOW (WINDOW_XFRAME (W)->menu_bar_window))
685 #else
686 /* No menu bar windows if X toolkit is in use. */
687 #define WINDOW_MENU_BAR_P(W) false
688 #endif
690 /* True if W is a tool bar window. */
691 #if defined (HAVE_WINDOW_SYSTEM) && ! defined (USE_GTK) && ! defined (HAVE_NS)
692 #define WINDOW_TOOL_BAR_P(W) \
693 (WINDOWP (WINDOW_XFRAME (W)->tool_bar_window) \
694 && (W) == XWINDOW (WINDOW_XFRAME (W)->tool_bar_window))
695 #else
696 #define WINDOW_TOOL_BAR_P(W) false
697 #endif
699 /* Return the frame y-position at which window W starts. */
700 #define WINDOW_TOP_EDGE_Y(W) \
701 (((WINDOW_MENU_BAR_P (W) || WINDOW_TOOL_BAR_P (W)) \
702 ? 0 : FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W))) \
703 + WINDOW_TOP_PIXEL_EDGE (W))
705 /* Return the frame y-position before which window W ends. */
706 #define WINDOW_BOTTOM_EDGE_Y(W) \
707 (((WINDOW_MENU_BAR_P (W) || WINDOW_TOOL_BAR_P (W)) \
708 ? 0 : FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W))) \
709 + WINDOW_BOTTOM_PIXEL_EDGE (W))
711 /* Return the pixel value where the text (or left fringe) in window W
712 starts. */
713 #define WINDOW_BOX_LEFT_PIXEL_EDGE(W) \
714 (WINDOW_LEFT_PIXEL_EDGE (W) \
715 + WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (W))
717 /* Return the pixel value before which the text in window W ends. This
718 is different from the `RIGHT_EDGE' because it does not include a
719 right-hand scroll bar or window-separating line on the right
720 edge. */
721 #define WINDOW_BOX_RIGHT_PIXEL_EDGE(W) \
722 (WINDOW_RIGHT_PIXEL_EDGE (W) \
723 - WINDOW_RIGHT_DIVIDER_WIDTH (W) \
724 - WINDOW_RIGHT_SCROLL_BAR_AREA_WIDTH (W))
726 /* Return the frame x-position at which the text (or left fringe) in
727 window W starts. This does not include a left-hand scroll bar if
728 any. */
729 #define WINDOW_BOX_LEFT_EDGE_X(W) \
730 (FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W)) \
731 + WINDOW_BOX_LEFT_PIXEL_EDGE (W))
733 /* Return the frame x-position before which the text in window W ends.
734 This does not include a scroll bar, divider or window-separating line
735 on the right edge. */
736 #define WINDOW_BOX_RIGHT_EDGE_X(W) \
737 (FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W)) \
738 + WINDOW_BOX_RIGHT_PIXEL_EDGE (W))
740 /* Widths of marginal areas in columns. */
741 #define WINDOW_LEFT_MARGIN_COLS(W) (W->left_margin_cols)
743 #define WINDOW_RIGHT_MARGIN_COLS(W) (W->right_margin_cols)
745 #define WINDOW_MARGINS_COLS(W) \
746 (WINDOW_LEFT_MARGIN_COLS (W) \
747 + WINDOW_RIGHT_MARGIN_COLS (W))
749 /* Widths of marginal areas in pixels. */
750 #define WINDOW_LEFT_MARGIN_WIDTH(W) \
751 (W->left_margin_cols * WINDOW_FRAME_COLUMN_WIDTH (W))
753 #define WINDOW_RIGHT_MARGIN_WIDTH(W) \
754 (W->right_margin_cols * WINDOW_FRAME_COLUMN_WIDTH (W))
756 #define WINDOW_MARGINS_WIDTH(W) \
757 (WINDOW_LEFT_MARGIN_WIDTH (W) \
758 + WINDOW_RIGHT_MARGIN_WIDTH (W))
760 /* Pixel-widths of fringes. */
761 #define WINDOW_LEFT_FRINGE_WIDTH(W) \
762 (W->left_fringe_width >= 0 \
763 ? W->left_fringe_width \
764 : FRAME_LEFT_FRINGE_WIDTH (WINDOW_XFRAME (W)))
766 #define WINDOW_RIGHT_FRINGE_WIDTH(W) \
767 (W->right_fringe_width >= 0 \
768 ? W->right_fringe_width \
769 : FRAME_RIGHT_FRINGE_WIDTH (WINDOW_XFRAME (W)))
771 #define WINDOW_FRINGES_WIDTH(W) \
772 (WINDOW_LEFT_FRINGE_WIDTH (W) + WINDOW_RIGHT_FRINGE_WIDTH (W))
774 /* Are fringes outside display margins in window W. */
775 #define WINDOW_HAS_FRINGES_OUTSIDE_MARGINS(W) \
776 ((W)->fringes_outside_margins)
778 /* Say whether vertical scroll bars are currently enabled for window W,
779 and which side they are on. */
780 #define WINDOW_VERTICAL_SCROLL_BAR_TYPE(W) \
781 (WINDOW_PSEUDO_P (W) \
782 ? vertical_scroll_bar_none \
783 : EQ (W->vertical_scroll_bar_type, Qt) \
784 ? FRAME_VERTICAL_SCROLL_BAR_TYPE (WINDOW_XFRAME (W)) \
785 : EQ (W->vertical_scroll_bar_type, Qleft) \
786 ? vertical_scroll_bar_left \
787 : EQ (W->vertical_scroll_bar_type, Qright) \
788 ? vertical_scroll_bar_right \
789 : vertical_scroll_bar_none)
791 #define WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT(W) \
792 (WINDOW_VERTICAL_SCROLL_BAR_TYPE (W) == vertical_scroll_bar_left)
794 #define WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT(W) \
795 (WINDOW_VERTICAL_SCROLL_BAR_TYPE (W) == vertical_scroll_bar_right)
797 #define WINDOW_HAS_VERTICAL_SCROLL_BAR(W) \
798 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (W) \
799 || WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (W))
801 #if (defined (HAVE_WINDOW_SYSTEM) \
802 && ((defined (USE_TOOLKIT_SCROLL_BARS)) \
803 || defined (HAVE_NTGUI)))
804 # define USE_HORIZONTAL_SCROLL_BARS true
805 #else
806 # define USE_HORIZONTAL_SCROLL_BARS false
807 #endif
809 /* Say whether horizontal scroll bars are currently enabled for window
810 W. Horizontal scrollbars exist for toolkit versions only. */
811 #if USE_HORIZONTAL_SCROLL_BARS
812 #define WINDOW_HAS_HORIZONTAL_SCROLL_BAR(W) \
813 ((WINDOW_PSEUDO_P (W) || MINI_NON_ONLY_WINDOW_P (W)) \
814 ? false \
815 : EQ (W->horizontal_scroll_bar_type, Qt) \
816 ? FRAME_HAS_HORIZONTAL_SCROLL_BARS (WINDOW_XFRAME (W)) \
817 : EQ (W->horizontal_scroll_bar_type, Qbottom) \
818 ? true \
819 : false)
820 #else
821 #define WINDOW_HAS_HORIZONTAL_SCROLL_BAR(W) false
822 #endif
824 /* Width that a scroll bar in window W should have, if there is one.
825 Measured in pixels. If scroll bars are turned off, this is still
826 nonzero. */
827 #define WINDOW_CONFIG_SCROLL_BAR_WIDTH(W) \
828 (W->scroll_bar_width >= 0 \
829 ? W->scroll_bar_width \
830 : FRAME_CONFIG_SCROLL_BAR_WIDTH (WINDOW_XFRAME (W)))
832 /* Width that a scroll bar in window W should have, if there is one.
833 Measured in columns (characters). If scroll bars are turned off,
834 this is still nonzero. */
835 #define WINDOW_CONFIG_SCROLL_BAR_COLS(W) \
836 (W->scroll_bar_width >= 0 \
837 ? ((W->scroll_bar_width \
838 + WINDOW_FRAME_COLUMN_WIDTH (W) - 1) \
839 / WINDOW_FRAME_COLUMN_WIDTH (W)) \
840 : FRAME_CONFIG_SCROLL_BAR_COLS (WINDOW_XFRAME (W)))
842 /* Width of left scroll bar in window W, measured in columns
843 (characters). If scroll bars are on the right in this frame, or
844 there are no scroll bars, value is 0. */
845 #define WINDOW_LEFT_SCROLL_BAR_COLS(W) \
846 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (W) \
847 ? (WINDOW_CONFIG_SCROLL_BAR_COLS (W)) \
848 : 0)
850 /* Width of right scroll bar in window W, measured in columns
851 (characters). If scroll bars are on the left in this frame, or there
852 are no scroll bars, value is 0. */
853 #define WINDOW_RIGHT_SCROLL_BAR_COLS(W) \
854 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (W) \
855 ? WINDOW_CONFIG_SCROLL_BAR_COLS (W) \
856 : 0)
858 /* Width of a scroll bar in window W, measured in columns. */
859 #define WINDOW_SCROLL_BAR_COLS(W) \
860 (WINDOW_HAS_VERTICAL_SCROLL_BAR (W) \
861 ? WINDOW_CONFIG_SCROLL_BAR_COLS (W) \
862 : 0)
864 /* Width of a left scroll bar area in window W, measured in pixels. */
865 #define WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH(W) \
866 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (W) \
867 ? WINDOW_CONFIG_SCROLL_BAR_WIDTH (W) \
868 : 0)
870 /* Width of a right scroll bar area in window W, measured in pixels. */
871 #define WINDOW_RIGHT_SCROLL_BAR_AREA_WIDTH(W) \
872 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (W) \
873 ? WINDOW_CONFIG_SCROLL_BAR_WIDTH (W) \
874 : 0)
876 /* Width of scroll bar area in window W, measured in pixels. */
877 #define WINDOW_SCROLL_BAR_AREA_WIDTH(W) \
878 (WINDOW_HAS_VERTICAL_SCROLL_BAR (W) \
879 ? WINDOW_CONFIG_SCROLL_BAR_WIDTH (W) \
880 : 0)
882 /* Return the frame position where the vertical scroll bar of window W
883 starts. */
884 #define WINDOW_SCROLL_BAR_AREA_X(W) \
885 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (W) \
886 ? WINDOW_BOX_RIGHT_EDGE_X (W) \
887 : WINDOW_LEFT_EDGE_X (W))
889 /* Height that a scroll bar in window W should have, if there is one.
890 Measured in pixels. If scroll bars are turned off, this is still
891 nonzero. */
892 #define WINDOW_CONFIG_SCROLL_BAR_HEIGHT(W) \
893 (W->scroll_bar_height >= 0 \
894 ? W->scroll_bar_height \
895 : FRAME_CONFIG_SCROLL_BAR_HEIGHT (WINDOW_XFRAME (W)))
897 /* Height that a scroll bar in window W should have, if there is one.
898 Measured in lines (characters). If scroll bars are turned off, this
899 is still nonzero. */
900 #define WINDOW_CONFIG_SCROLL_BAR_LINES(W) \
901 (W->scroll_bar_height >= 0 \
902 ? ((W->scroll_bar_height \
903 + WINDOW_FRAME_LINE_HEIGHT (W) - 1) \
904 / WINDOW_FRAME_LINE_HEIGHT (W)) \
905 : FRAME_CONFIG_SCROLL_BAR_LINES (WINDOW_XFRAME (W)))
907 /* Height of a scroll bar in window W, measured in columns. */
908 #define WINDOW_SCROLL_BAR_LINES(W) \
909 (WINDOW_HAS_HORIZONTAL_SCROLL_BAR (W) \
910 ? WINDOW_CONFIG_SCROLL_BAR_LINES (W) \
911 : 0)
913 /* Height of scroll bar area in window W, measured in pixels. */
914 #define WINDOW_SCROLL_BAR_AREA_HEIGHT(W) \
915 (WINDOW_HAS_HORIZONTAL_SCROLL_BAR (W) \
916 ? WINDOW_CONFIG_SCROLL_BAR_HEIGHT (W) \
917 : 0)
919 /* Height in pixels of the mode line.
920 May be zero if W doesn't have a mode line. */
921 #define WINDOW_MODE_LINE_HEIGHT(W) \
922 (window_wants_mode_line ((W)) \
923 ? CURRENT_MODE_LINE_HEIGHT (W) \
924 : 0)
926 #define WINDOW_MODE_LINE_LINES(W) \
927 window_wants_mode_line (W)
929 /* Height in pixels of the header line.
930 Zero if W doesn't have a header line. */
931 #define WINDOW_HEADER_LINE_HEIGHT(W) \
932 (window_wants_header_line (W) \
933 ? CURRENT_HEADER_LINE_HEIGHT (W) \
934 : 0)
936 #define WINDOW_HEADER_LINE_LINES(W) \
937 window_wants_header_line (W)
939 /* Pixel height of window W without mode line, bottom scroll bar and
940 bottom divider. */
941 #define WINDOW_BOX_HEIGHT_NO_MODE_LINE(W) \
942 (WINDOW_PIXEL_HEIGHT (W) \
943 - WINDOW_BOTTOM_DIVIDER_WIDTH (W) \
944 - WINDOW_SCROLL_BAR_AREA_HEIGHT (W) \
945 - WINDOW_MODE_LINE_HEIGHT (W))
947 /* Pixel height of window W without mode and header line and bottom
948 divider. */
949 #define WINDOW_BOX_TEXT_HEIGHT(W) \
950 (WINDOW_PIXEL_HEIGHT ((W)) \
951 - WINDOW_BOTTOM_DIVIDER_WIDTH (W) \
952 - WINDOW_SCROLL_BAR_AREA_HEIGHT (W) \
953 - WINDOW_MODE_LINE_HEIGHT (W) \
954 - WINDOW_HEADER_LINE_HEIGHT (W))
956 /* Return the frame position where the horizontal scroll bar of window W
957 starts. */
958 #define WINDOW_SCROLL_BAR_AREA_Y(W) \
959 (WINDOW_TOP_EDGE_Y (W) \
960 + (WINDOW_HAS_HORIZONTAL_SCROLL_BAR (W) \
961 ? WINDOW_BOX_HEIGHT_NO_MODE_LINE (W) : 0))
963 /* Convert window W relative pixel X to frame pixel coordinates. */
964 #define WINDOW_TO_FRAME_PIXEL_X(W, X) \
965 ((X) + WINDOW_BOX_LEFT_EDGE_X ((W)))
967 /* Convert window W relative pixel Y to frame pixel coordinates. */
968 #define WINDOW_TO_FRAME_PIXEL_Y(W, Y) \
969 ((Y) + WINDOW_TOP_EDGE_Y (W))
971 /* Convert frame relative pixel X to window relative pixel X. */
972 #define FRAME_TO_WINDOW_PIXEL_X(W, X) \
973 ((X) - WINDOW_BOX_LEFT_EDGE_X ((W)))
975 /* Convert frame relative pixel Y to window relative pixel Y. */
976 #define FRAME_TO_WINDOW_PIXEL_Y(W, Y) \
977 ((Y) - WINDOW_TOP_EDGE_Y (W))
979 /* Convert a text area relative x-position in window W to frame X
980 pixel coordinates. */
981 #define WINDOW_TEXT_TO_FRAME_PIXEL_X(W, X) \
982 (window_box_left ((W), TEXT_AREA) + (X))
984 /* This is the window in which the terminal's cursor should be left when
985 nothing is being done with it. This must always be a leaf window, and its
986 buffer is selected by the top level editing loop at the end of each command.
988 This value is always the same as FRAME_SELECTED_WINDOW (selected_frame). */
990 extern Lisp_Object selected_window;
992 /* This is a time stamp for window selection, so we can find the least
993 recently used window. Its only users are Fselect_window,
994 init_window_once, and make_frame. */
996 extern EMACS_INT window_select_count;
998 /* The minibuffer window of the selected frame.
999 Note that you cannot test for minibufferness of an arbitrary window
1000 by comparing against this; use the MINI_WINDOW_P macro instead. */
1002 extern Lisp_Object minibuf_window;
1004 /* Non-nil means it is the window whose mode line should be
1005 shown as the selected window when the minibuffer is selected. */
1007 extern Lisp_Object minibuf_selected_window;
1009 extern Lisp_Object make_window (void);
1010 extern Lisp_Object window_from_coordinates (struct frame *, int, int,
1011 enum window_part *, bool);
1012 extern void resize_frame_windows (struct frame *, int, bool, bool);
1013 extern void restore_window_configuration (Lisp_Object);
1014 extern void delete_all_child_windows (Lisp_Object);
1015 extern void grow_mini_window (struct window *, int, bool);
1016 extern void shrink_mini_window (struct window *, bool);
1017 extern int window_relative_x_coord (struct window *, enum window_part, int);
1019 void run_window_size_change_functions (Lisp_Object);
1021 /* Make WINDOW display BUFFER. RUN_HOOKS_P means it's allowed
1022 to run hooks. See make_frame for a case where it's not allowed. */
1024 void set_window_buffer (Lisp_Object window, Lisp_Object buffer,
1025 bool run_hooks_p, bool keep_margins_p);
1027 /* This is the window where the echo area message was displayed. It
1028 is always a minibuffer window, but it may not be the same window
1029 currently active as a minibuffer. */
1031 extern Lisp_Object echo_area_window;
1033 /* Depth in recursive edits. */
1035 extern EMACS_INT command_loop_level;
1037 /* Depth in minibuffer invocations. */
1039 extern EMACS_INT minibuf_level;
1041 /* Non-zero if we should redraw the mode lines on the next redisplay.
1042 Usually set to a unique small integer so we can track the main causes of
1043 full redisplays in `redisplay--mode-lines-cause'. */
1045 extern int update_mode_lines;
1047 /* Nonzero if window sizes or contents have changed since last
1048 redisplay that finished. Usually set to a unique small integer so
1049 we can track the main causes of full redisplays in
1050 `redisplay--all-windows-cause'. */
1052 extern int windows_or_buffers_changed;
1054 /* The main redisplay routine usually only redisplays the selected-window,
1055 so when something's changed elsewhere, we call one of the functions below
1056 to indicate which other windows might also need to be redisplayed. */
1058 extern void wset_redisplay (struct window *w);
1059 extern void fset_redisplay (struct frame *f);
1060 extern void bset_redisplay (struct buffer *b);
1061 extern void bset_update_mode_line (struct buffer *b);
1062 /* Call this to tell redisplay to look for other windows than selected-window
1063 that need to be redisplayed. Calling one of the *set_redisplay functions
1064 above already does it, so it's only needed in unusual cases. */
1065 extern void redisplay_other_windows (void);
1067 /* Return a pointer to the glyph W's physical cursor is on. Value is
1068 null if W's current matrix is invalid, so that no meaningful glyph
1069 can be returned. */
1071 struct glyph *get_phys_cursor_glyph (struct window *w);
1073 /* True if WINDOW is a valid window. */
1074 #define WINDOW_VALID_P(WINDOW) \
1075 (WINDOWP (WINDOW) && !NILP (XWINDOW (WINDOW)->contents)) \
1077 /* A window of any sort, leaf or interior, is "valid" if its
1078 contents slot is non-nil. */
1079 #define CHECK_VALID_WINDOW(WINDOW) \
1080 CHECK_TYPE (WINDOW_VALID_P (WINDOW), Qwindow_valid_p, WINDOW)
1082 /* True if WINDOW is a live window. */
1083 #define WINDOW_LIVE_P(WINDOW) \
1084 (WINDOWP (WINDOW) && BUFFERP (XWINDOW (WINDOW)->contents))
1086 /* A window is "live" if and only if it shows a buffer. */
1087 #define CHECK_LIVE_WINDOW(WINDOW) \
1088 CHECK_TYPE (WINDOW_LIVE_P (WINDOW), Qwindow_live_p, WINDOW)
1090 /* These used to be in lisp.h. */
1091 extern Lisp_Object Vwindow_list;
1093 extern Lisp_Object window_list (void);
1094 extern Lisp_Object window_parameter (struct window *, Lisp_Object parameter);
1095 extern struct window *decode_live_window (Lisp_Object);
1096 extern struct window *decode_any_window (Lisp_Object);
1097 extern bool compare_window_configurations (Lisp_Object, Lisp_Object, bool);
1098 extern void mark_window_cursors_off (struct window *);
1099 extern bool window_wants_mode_line (struct window *);
1100 extern bool window_wants_header_line (struct window *);
1101 extern int window_internal_height (struct window *);
1102 extern int window_body_width (struct window *w, bool);
1103 enum margin_unit { MARGIN_IN_LINES, MARGIN_IN_PIXELS };
1104 extern int window_scroll_margin (struct window *, enum margin_unit);
1105 extern void temp_output_buffer_show (Lisp_Object);
1106 extern void replace_buffer_in_windows (Lisp_Object);
1107 extern void replace_buffer_in_windows_safely (Lisp_Object);
1108 extern void sanitize_window_sizes (Lisp_Object horizontal);
1109 /* This looks like a setter, but it is a bit special. */
1110 extern void wset_buffer (struct window *, Lisp_Object);
1111 extern bool window_outdated (struct window *);
1112 extern void init_window_once (void);
1113 extern void init_window (void);
1114 extern void syms_of_window (void);
1115 extern void keys_of_window (void);
1116 /* Move cursor to row/column position VPOS/HPOS, pixel coordinates
1117 Y/X. HPOS/VPOS are window-relative row and column numbers and X/Y
1118 are window-relative pixel positions. This is always done during
1119 window update, so the position is the future output cursor position
1120 for currently updated window W. */
1122 INLINE void
1123 output_cursor_to (struct window *w, int vpos, int hpos, int y, int x)
1125 eassert (w);
1126 w->output_cursor.hpos = hpos;
1127 w->output_cursor.vpos = vpos;
1128 w->output_cursor.x = x;
1129 w->output_cursor.y = y;
1132 INLINE_HEADER_END
1134 #endif /* not WINDOW_H_INCLUDED */