Don't call the same hook twice due to obsolete aliases
[emacs.git] / src / window.h
blobe9040f816df6e31826faeed908bfb8d016f03864
1 /* Window definitions for GNU Emacs.
2 Copyright (C) 1985-1986, 1993, 1995, 1997-2017 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 <http://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 struct 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 of frames. */
374 bool_bf pseudo_window_p : 1;
376 /* True means fringes are drawn outside display margins.
377 Otherwise draw them between margin areas and text. */
378 bool_bf fringes_outside_margins : 1;
380 /* True if window_end_pos and window_end_vpos are truly valid.
381 This is false if nontrivial redisplay is preempted since in that case
382 the frame image that window_end_pos did not get onto the frame. */
383 bool_bf window_end_valid : 1;
385 /* True if it needs to be redisplayed. */
386 bool_bf redisplay : 1;
388 /* True if auto hscrolling is currently suspended in this
389 window. */
390 bool_bf suspend_auto_hscroll : 1;
392 /* Amount by which lines of this window are scrolled in
393 y-direction (smooth scrolling). */
394 int vscroll;
396 /* Z_BYTE - buffer position of the last glyph in the current matrix of W.
397 Should be nonnegative, and only valid if window_end_valid is true. */
398 ptrdiff_t window_end_bytepos;
401 INLINE bool
402 WINDOWP (Lisp_Object a)
404 return PSEUDOVECTORP (a, PVEC_WINDOW);
407 INLINE void
408 CHECK_WINDOW (Lisp_Object x)
410 CHECK_TYPE (WINDOWP (x), Qwindowp, x);
413 INLINE struct window *
414 XWINDOW (Lisp_Object a)
416 eassert (WINDOWP (a));
417 return XUNTAG (a, Lisp_Vectorlike);
420 /* Most code should use these functions to set Lisp fields in struct
421 window. */
422 INLINE void
423 wset_frame (struct window *w, Lisp_Object val)
425 w->frame = val;
428 INLINE void
429 wset_next (struct window *w, Lisp_Object val)
431 w->next = val;
434 INLINE void
435 wset_prev (struct window *w, Lisp_Object val)
437 w->prev = val;
440 INLINE void
441 wset_redisplay_end_trigger (struct window *w, Lisp_Object val)
443 w->redisplay_end_trigger = val;
446 INLINE void
447 wset_new_pixel (struct window *w, Lisp_Object val)
449 w->new_pixel = val;
452 INLINE void
453 wset_vertical_scroll_bar (struct window *w, Lisp_Object val)
455 w->vertical_scroll_bar = val;
458 INLINE void
459 wset_horizontal_scroll_bar (struct window *w, Lisp_Object val)
461 w->horizontal_scroll_bar = val;
464 INLINE void
465 wset_horizontal_scroll_bar_type (struct window *w, Lisp_Object val)
467 w->horizontal_scroll_bar_type = val;
470 INLINE void
471 wset_prev_buffers (struct window *w, Lisp_Object val)
473 w->prev_buffers = val;
476 INLINE void
477 wset_next_buffers (struct window *w, Lisp_Object val)
479 w->next_buffers = val;
482 /* True if W is a minibuffer window. */
483 #define MINI_WINDOW_P(W) ((W)->mini)
485 /* True if W is a minibuffer window on a frame that contains at least
486 one other window. */
487 #define MINI_NON_ONLY_WINDOW_P(W) \
488 (MINI_WINDOW_P (W) && !NILP ((W)->prev))
490 /* True if W is a minibuffer window that is alone on its frame. */
491 #define MINI_ONLY_WINDOW_P(W) \
492 (MINI_WINDOW_P (W) && NILP ((W)->prev))
494 /* General window layout:
496 LEFT_EDGE_COL RIGHT_EDGE_COL
499 | BOX_LEFT_EDGE_COL |
500 | | BOX_RIGHT_EDGE_COL |
501 | | | |
502 v v v v
503 <-><-><---><-----------><---><-><->
504 ^ ^ ^ ^ ^ ^ ^
505 | | | | | | |
506 | | | | | | +-- RIGHT_SCROLL_BAR_COLS
507 | | | | | +----- RIGHT_FRINGE_WIDTH
508 | | | | +--------- RIGHT_MARGIN_COLS
509 | | | |
510 | | | +------------------ TEXT_AREA_COLS
511 | | |
512 | | +--------------------------- LEFT_MARGIN_COLS
513 | +------------------------------- LEFT_FRINGE_WIDTH
514 +---------------------------------- LEFT_SCROLL_BAR_COLS
519 /* A handy macro. */
521 /* Non-nil if window W is leaf window (has a buffer). */
522 #define WINDOW_LEAF_P(W) \
523 (BUFFERP ((W)->contents))
525 /* Non-nil if window W is internal (is a parent window). */
526 #define WINDOW_INTERNAL_P(W) \
527 (WINDOWP ((W)->contents))
529 /* True if window W is a horizontal combination of windows. */
530 #define WINDOW_HORIZONTAL_COMBINATION_P(W) \
531 (WINDOW_INTERNAL_P (W) && (W)->horizontal)
533 /* True if window W is a vertical combination of windows. */
534 #define WINDOW_VERTICAL_COMBINATION_P(W) \
535 (WINDOW_INTERNAL_P (W) && !(W)->horizontal)
537 /* Window W's XFRAME. */
538 #define WINDOW_XFRAME(W) (XFRAME (WINDOW_FRAME ((W))))
540 /* Whether window W is a pseudo window. */
541 #define WINDOW_PSEUDO_P(W) ((W)->pseudo_window_p)
543 /* Window W's buffer. */
544 #define WINDOW_BUFFER(W) \
545 (WINDOW_LEAF_P(W) \
546 ? (W)->contents \
547 : Qnil) \
549 /* Return the canonical column width of the frame of window W. */
550 #define WINDOW_FRAME_COLUMN_WIDTH(W) \
551 (FRAME_COLUMN_WIDTH (WINDOW_XFRAME ((W))))
553 /* Return the canonical line height of the frame of window W. */
554 #define WINDOW_FRAME_LINE_HEIGHT(W) \
555 (FRAME_LINE_HEIGHT (WINDOW_XFRAME ((W))))
557 /* Return the pixel width of window W. This includes dividers, scroll
558 bars, fringes and margins, if any. */
559 #define WINDOW_PIXEL_WIDTH(W) (W)->pixel_width
561 /* Return the pixel height of window W. This includes dividers, scroll
562 bars, header and mode lines, if any. */
563 #define WINDOW_PIXEL_HEIGHT(W) (W)->pixel_height
565 /* Return the width of window W in canonical column units. This
566 includes dividers, scroll bars, fringes and margins, if any. The
567 value is adjusted such that the sum of the widths of all child
568 windows equals the width of their parent window. */
569 #define WINDOW_TOTAL_COLS(W) (W)->total_cols
571 /* Return the height of window W in canonical line units. This includes
572 dividers, scroll bars, header and mode lines, if any. The value is
573 adjusted such that the sum of the heights of all child windows equals
574 the height of their parent window. */
575 #define WINDOW_TOTAL_LINES(W) (W)->total_lines
577 /* The smallest acceptable dimensions for a window. Anything smaller
578 might crash Emacs. */
579 #define MIN_SAFE_WINDOW_WIDTH (2)
581 #define MIN_SAFE_WINDOW_PIXEL_WIDTH(W) \
582 (2 * WINDOW_FRAME_COLUMN_WIDTH (W))
584 #define MIN_SAFE_WINDOW_HEIGHT (1)
586 #define MIN_SAFE_WINDOW_PIXEL_HEIGHT(W) \
587 (WINDOW_FRAME_LINE_HEIGHT (W))
589 /* True if window W has no other windows to its left on its frame. */
590 #define WINDOW_LEFTMOST_P(W) \
591 (WINDOW_LEFT_PIXEL_EDGE (W) == 0)
593 /* True if window W has no other windows above it on its frame. */
594 #define WINDOW_TOPMOST_P(W) \
595 (WINDOW_TOP_PIXEL_EDGE (W) == 0)
597 /* True if window W has no other windows to its right on its frame. */
598 #define WINDOW_RIGHTMOST_P(W) \
599 (WINDOW_RIGHT_PIXEL_EDGE (W) \
600 == (WINDOW_RIGHT_PIXEL_EDGE \
601 (XWINDOW (FRAME_ROOT_WINDOW (WINDOW_XFRAME (W)))))) \
603 /* True if window W has no other windows below it on its frame (the
604 minibuffer window is not counted in this respect unless W itself is a
605 minibuffer window). */
606 #define WINDOW_BOTTOMMOST_P(W) \
607 (WINDOW_BOTTOM_PIXEL_EDGE (W) \
608 == (WINDOW_BOTTOM_PIXEL_EDGE \
609 (XWINDOW (FRAME_ROOT_WINDOW (WINDOW_XFRAME (W)))))) \
611 /* True if window W takes up the full width of its frame. */
612 #define WINDOW_FULL_WIDTH_P(W) \
613 (WINDOW_PIXEL_WIDTH (W) \
614 == (WINDOW_PIXEL_WIDTH \
615 (XWINDOW (FRAME_ROOT_WINDOW (WINDOW_XFRAME (W)))))) \
617 /* Width of right divider of window W. */
618 #define WINDOW_RIGHT_DIVIDER_WIDTH(W) \
619 (WINDOW_RIGHTMOST_P (W) \
620 ? 0 : FRAME_RIGHT_DIVIDER_WIDTH (WINDOW_XFRAME (W)))
622 /* Width of bottom divider of window W. */
623 #define WINDOW_BOTTOM_DIVIDER_WIDTH(W) \
624 (((WINDOW_BOTTOMMOST_P (W) \
625 && NILP ((XWINDOW (FRAME_ROOT_WINDOW \
626 (WINDOW_XFRAME (W))))->next)) \
627 || EQ ((W)->prev, FRAME_ROOT_WINDOW (WINDOW_XFRAME (W))) \
628 || (W)->pseudo_window_p) \
629 ? 0 : FRAME_BOTTOM_DIVIDER_WIDTH (WINDOW_XFRAME (W)))
631 /* Return the canonical frame column at which window W starts.
632 This includes a left-hand scroll bar, if any. */
633 #define WINDOW_LEFT_EDGE_COL(W) (W)->left_col
635 /* Return the canonical frame column before which window W ends.
636 This includes a right-hand scroll bar, if any. */
637 #define WINDOW_RIGHT_EDGE_COL(W) \
638 (WINDOW_LEFT_EDGE_COL (W) + WINDOW_TOTAL_COLS (W))
640 /* Return the canonical frame line at which window W starts.
641 This includes a header line, if any. */
642 #define WINDOW_TOP_EDGE_LINE(W) (W)->top_line
644 /* Return the canonical frame line before which window W ends.
645 This includes a mode line, if any. */
646 #define WINDOW_BOTTOM_EDGE_LINE(W) \
647 (WINDOW_TOP_EDGE_LINE (W) + WINDOW_TOTAL_LINES (W))
649 /* Return the left pixel edge at which window W starts.
650 This includes a left-hand scroll bar, if any. */
651 #define WINDOW_LEFT_PIXEL_EDGE(W) (W)->pixel_left
653 /* Return the right pixel edge before which window W ends.
654 This includes a right-hand scroll bar, if any. */
655 #define WINDOW_RIGHT_PIXEL_EDGE(W) \
656 (WINDOW_LEFT_PIXEL_EDGE (W) + WINDOW_PIXEL_WIDTH (W))
658 /* Return the top pixel edge at which window W starts.
659 This includes a header line, if any. */
660 #define WINDOW_TOP_PIXEL_EDGE(W) (W)->pixel_top
662 /* Return the bottom pixel edge before which window W ends.
663 This includes a mode line, if any. */
664 #define WINDOW_BOTTOM_PIXEL_EDGE(W) \
665 (WINDOW_TOP_PIXEL_EDGE (W) + WINDOW_PIXEL_HEIGHT (W))
667 /* Return the frame x-position at which window W starts.
668 This includes a left-hand scroll bar, if any. */
669 #define WINDOW_LEFT_EDGE_X(W) \
670 (FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W)) \
671 + WINDOW_LEFT_PIXEL_EDGE (W))
673 /* Return the frame x- position before which window W ends.
674 This includes a right-hand scroll bar, if any. */
675 #define WINDOW_RIGHT_EDGE_X(W) \
676 (FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W)) \
677 + WINDOW_RIGHT_PIXEL_EDGE (W))
679 /* True if W is a menu bar window. */
680 #if defined (HAVE_X_WINDOWS) && ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
681 #define WINDOW_MENU_BAR_P(W) \
682 (WINDOWP (WINDOW_XFRAME (W)->menu_bar_window) \
683 && (W) == XWINDOW (WINDOW_XFRAME (W)->menu_bar_window))
684 #else
685 /* No menu bar windows if X toolkit is in use. */
686 #define WINDOW_MENU_BAR_P(W) false
687 #endif
689 /* True if W is a tool bar window. */
690 #if defined (HAVE_WINDOW_SYSTEM) && ! defined (USE_GTK) && ! defined (HAVE_NS)
691 #define WINDOW_TOOL_BAR_P(W) \
692 (WINDOWP (WINDOW_XFRAME (W)->tool_bar_window) \
693 && (W) == XWINDOW (WINDOW_XFRAME (W)->tool_bar_window))
694 #else
695 #define WINDOW_TOOL_BAR_P(W) false
696 #endif
698 /* Return the frame y-position at which window W starts. */
699 #define WINDOW_TOP_EDGE_Y(W) \
700 (((WINDOW_MENU_BAR_P (W) || WINDOW_TOOL_BAR_P (W)) \
701 ? 0 : FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W))) \
702 + WINDOW_TOP_PIXEL_EDGE (W))
704 /* Return the frame y-position before which window W ends. */
705 #define WINDOW_BOTTOM_EDGE_Y(W) \
706 (((WINDOW_MENU_BAR_P (W) || WINDOW_TOOL_BAR_P (W)) \
707 ? 0 : FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W))) \
708 + WINDOW_BOTTOM_PIXEL_EDGE (W))
710 /* Return the pixel value where the text (or left fringe) in window W
711 starts. */
712 #define WINDOW_BOX_LEFT_PIXEL_EDGE(W) \
713 (WINDOW_LEFT_PIXEL_EDGE (W) \
714 + WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (W))
716 /* Return the pixel value before which the text in window W ends. This
717 is different from the `RIGHT_EDGE' because it does not include a
718 right-hand scroll bar or window-separating line on the right
719 edge. */
720 #define WINDOW_BOX_RIGHT_PIXEL_EDGE(W) \
721 (WINDOW_RIGHT_PIXEL_EDGE (W) \
722 - WINDOW_RIGHT_DIVIDER_WIDTH (W) \
723 - WINDOW_RIGHT_SCROLL_BAR_AREA_WIDTH (W))
725 /* Return the frame x-position at which the text (or left fringe) in
726 window W starts. This does not include a left-hand scroll bar if
727 any. */
728 #define WINDOW_BOX_LEFT_EDGE_X(W) \
729 (FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W)) \
730 + WINDOW_BOX_LEFT_PIXEL_EDGE (W))
732 /* Return the frame x-position before which the text in window W ends.
733 This does not include a scroll bar, divider or window-separating line
734 on the right edge. */
735 #define WINDOW_BOX_RIGHT_EDGE_X(W) \
736 (FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W)) \
737 + WINDOW_BOX_RIGHT_PIXEL_EDGE (W))
739 /* Widths of marginal areas in columns. */
740 #define WINDOW_LEFT_MARGIN_COLS(W) (W->left_margin_cols)
742 #define WINDOW_RIGHT_MARGIN_COLS(W) (W->right_margin_cols)
744 #define WINDOW_MARGINS_COLS(W) \
745 (WINDOW_LEFT_MARGIN_COLS (W) \
746 + WINDOW_RIGHT_MARGIN_COLS (W))
748 /* Widths of marginal areas in pixels. */
749 #define WINDOW_LEFT_MARGIN_WIDTH(W) \
750 (W->left_margin_cols * WINDOW_FRAME_COLUMN_WIDTH (W))
752 #define WINDOW_RIGHT_MARGIN_WIDTH(W) \
753 (W->right_margin_cols * WINDOW_FRAME_COLUMN_WIDTH (W))
755 #define WINDOW_MARGINS_WIDTH(W) \
756 (WINDOW_LEFT_MARGIN_WIDTH (W) \
757 + WINDOW_RIGHT_MARGIN_WIDTH (W))
759 /* Pixel-widths of fringes. */
760 #define WINDOW_LEFT_FRINGE_WIDTH(W) \
761 (W->left_fringe_width >= 0 \
762 ? W->left_fringe_width \
763 : FRAME_LEFT_FRINGE_WIDTH (WINDOW_XFRAME (W)))
765 #define WINDOW_RIGHT_FRINGE_WIDTH(W) \
766 (W->right_fringe_width >= 0 \
767 ? W->right_fringe_width \
768 : FRAME_RIGHT_FRINGE_WIDTH (WINDOW_XFRAME (W)))
770 #define WINDOW_FRINGES_WIDTH(W) \
771 (WINDOW_LEFT_FRINGE_WIDTH (W) + WINDOW_RIGHT_FRINGE_WIDTH (W))
773 /* Are fringes outside display margins in window W. */
774 #define WINDOW_HAS_FRINGES_OUTSIDE_MARGINS(W) \
775 ((W)->fringes_outside_margins)
777 /* Say whether vertical scroll bars are currently enabled for window W,
778 and which side they are on. */
779 #define WINDOW_VERTICAL_SCROLL_BAR_TYPE(W) \
780 (WINDOW_PSEUDO_P (W) \
781 ? vertical_scroll_bar_none \
782 : EQ (W->vertical_scroll_bar_type, Qt) \
783 ? FRAME_VERTICAL_SCROLL_BAR_TYPE (WINDOW_XFRAME (W)) \
784 : EQ (W->vertical_scroll_bar_type, Qleft) \
785 ? vertical_scroll_bar_left \
786 : EQ (W->vertical_scroll_bar_type, Qright) \
787 ? vertical_scroll_bar_right \
788 : vertical_scroll_bar_none)
790 #define WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT(W) \
791 (WINDOW_VERTICAL_SCROLL_BAR_TYPE (W) == vertical_scroll_bar_left)
793 #define WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT(W) \
794 (WINDOW_VERTICAL_SCROLL_BAR_TYPE (W) == vertical_scroll_bar_right)
796 #define WINDOW_HAS_VERTICAL_SCROLL_BAR(W) \
797 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (W) \
798 || WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (W))
800 #if (defined (HAVE_WINDOW_SYSTEM) \
801 && ((defined (USE_TOOLKIT_SCROLL_BARS)) \
802 || defined (HAVE_NTGUI)))
803 # define USE_HORIZONTAL_SCROLL_BARS true
804 #else
805 # define USE_HORIZONTAL_SCROLL_BARS false
806 #endif
808 /* Say whether horizontal scroll bars are currently enabled for window
809 W. Horizontal scrollbars exist for toolkit versions only. */
810 #if USE_HORIZONTAL_SCROLL_BARS
811 #define WINDOW_HAS_HORIZONTAL_SCROLL_BAR(W) \
812 ((WINDOW_PSEUDO_P (W) || MINI_NON_ONLY_WINDOW_P (W)) \
813 ? false \
814 : EQ (W->horizontal_scroll_bar_type, Qt) \
815 ? FRAME_HAS_HORIZONTAL_SCROLL_BARS (WINDOW_XFRAME (W)) \
816 : EQ (W->horizontal_scroll_bar_type, Qbottom) \
817 ? true \
818 : false)
819 #else
820 #define WINDOW_HAS_HORIZONTAL_SCROLL_BAR(W) false
821 #endif
823 /* Width that a scroll bar in window W should have, if there is one.
824 Measured in pixels. If scroll bars are turned off, this is still
825 nonzero. */
826 #define WINDOW_CONFIG_SCROLL_BAR_WIDTH(W) \
827 (W->scroll_bar_width >= 0 \
828 ? W->scroll_bar_width \
829 : FRAME_CONFIG_SCROLL_BAR_WIDTH (WINDOW_XFRAME (W)))
831 /* Width that a scroll bar in window W should have, if there is one.
832 Measured in columns (characters). If scroll bars are turned off,
833 this is still nonzero. */
834 #define WINDOW_CONFIG_SCROLL_BAR_COLS(W) \
835 (W->scroll_bar_width >= 0 \
836 ? ((W->scroll_bar_width \
837 + WINDOW_FRAME_COLUMN_WIDTH (W) - 1) \
838 / WINDOW_FRAME_COLUMN_WIDTH (W)) \
839 : FRAME_CONFIG_SCROLL_BAR_COLS (WINDOW_XFRAME (W)))
841 /* Width of left scroll bar in window W, measured in columns
842 (characters). If scroll bars are on the right in this frame, or
843 there are no scroll bars, value is 0. */
844 #define WINDOW_LEFT_SCROLL_BAR_COLS(W) \
845 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (W) \
846 ? (WINDOW_CONFIG_SCROLL_BAR_COLS (W)) \
847 : 0)
849 /* Width of right scroll bar in window W, measured in columns
850 (characters). If scroll bars are on the left in this frame, or there
851 are no scroll bars, value is 0. */
852 #define WINDOW_RIGHT_SCROLL_BAR_COLS(W) \
853 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (W) \
854 ? WINDOW_CONFIG_SCROLL_BAR_COLS (W) \
855 : 0)
857 /* Width of a scroll bar in window W, measured in columns. */
858 #define WINDOW_SCROLL_BAR_COLS(W) \
859 (WINDOW_HAS_VERTICAL_SCROLL_BAR (W) \
860 ? WINDOW_CONFIG_SCROLL_BAR_COLS (W) \
861 : 0)
863 /* Width of a left scroll bar area in window W, measured in pixels. */
864 #define WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH(W) \
865 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (W) \
866 ? WINDOW_CONFIG_SCROLL_BAR_WIDTH (W) \
867 : 0)
869 /* Width of a right scroll bar area in window W, measured in pixels. */
870 #define WINDOW_RIGHT_SCROLL_BAR_AREA_WIDTH(W) \
871 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (W) \
872 ? WINDOW_CONFIG_SCROLL_BAR_WIDTH (W) \
873 : 0)
875 /* Width of scroll bar area in window W, measured in pixels. */
876 #define WINDOW_SCROLL_BAR_AREA_WIDTH(W) \
877 (WINDOW_HAS_VERTICAL_SCROLL_BAR (W) \
878 ? WINDOW_CONFIG_SCROLL_BAR_WIDTH (W) \
879 : 0)
881 /* Return the frame position where the vertical scroll bar of window W
882 starts. */
883 #define WINDOW_SCROLL_BAR_AREA_X(W) \
884 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (W) \
885 ? WINDOW_BOX_RIGHT_EDGE_X (W) \
886 : WINDOW_LEFT_EDGE_X (W))
888 /* Height that a scroll bar in window W should have, if there is one.
889 Measured in pixels. If scroll bars are turned off, this is still
890 nonzero. */
891 #define WINDOW_CONFIG_SCROLL_BAR_HEIGHT(W) \
892 (W->scroll_bar_height >= 0 \
893 ? W->scroll_bar_height \
894 : FRAME_CONFIG_SCROLL_BAR_HEIGHT (WINDOW_XFRAME (W)))
896 /* Height that a scroll bar in window W should have, if there is one.
897 Measured in lines (characters). If scroll bars are turned off, this
898 is still nonzero. */
899 #define WINDOW_CONFIG_SCROLL_BAR_LINES(W) \
900 (W->scroll_bar_height >= 0 \
901 ? ((W->scroll_bar_height \
902 + WINDOW_FRAME_LINE_HEIGHT (W) - 1) \
903 / WINDOW_FRAME_LINE_HEIGHT (W)) \
904 : FRAME_CONFIG_SCROLL_BAR_LINES (WINDOW_XFRAME (W)))
906 /* Height of a scroll bar in window W, measured in columns. */
907 #define WINDOW_SCROLL_BAR_LINES(W) \
908 (WINDOW_HAS_HORIZONTAL_SCROLL_BAR (W) \
909 ? WINDOW_CONFIG_SCROLL_BAR_LINES (W) \
910 : 0)
912 /* Height of scroll bar area in window W, measured in pixels. */
913 #define WINDOW_SCROLL_BAR_AREA_HEIGHT(W) \
914 (WINDOW_HAS_HORIZONTAL_SCROLL_BAR (W) \
915 ? WINDOW_CONFIG_SCROLL_BAR_HEIGHT (W) \
916 : 0)
918 /* Height in pixels of the mode line.
919 May be zero if W doesn't have a mode line. */
920 #define WINDOW_MODE_LINE_HEIGHT(W) \
921 (window_wants_mode_line ((W)) \
922 ? CURRENT_MODE_LINE_HEIGHT (W) \
923 : 0)
925 #define WINDOW_MODE_LINE_LINES(W) \
926 window_wants_mode_line (W)
928 /* Height in pixels of the header line.
929 Zero if W doesn't have a header line. */
930 #define WINDOW_HEADER_LINE_HEIGHT(W) \
931 (window_wants_header_line (W) \
932 ? CURRENT_HEADER_LINE_HEIGHT (W) \
933 : 0)
935 #define WINDOW_HEADER_LINE_LINES(W) \
936 window_wants_header_line (W)
938 /* Pixel height of window W without mode line, bottom scroll bar and
939 bottom divider. */
940 #define WINDOW_BOX_HEIGHT_NO_MODE_LINE(W) \
941 (WINDOW_PIXEL_HEIGHT (W) \
942 - WINDOW_BOTTOM_DIVIDER_WIDTH (W) \
943 - WINDOW_SCROLL_BAR_AREA_HEIGHT (W) \
944 - WINDOW_MODE_LINE_HEIGHT (W))
946 /* Pixel height of window W without mode and header line and bottom
947 divider. */
948 #define WINDOW_BOX_TEXT_HEIGHT(W) \
949 (WINDOW_PIXEL_HEIGHT ((W)) \
950 - WINDOW_BOTTOM_DIVIDER_WIDTH (W) \
951 - WINDOW_SCROLL_BAR_AREA_HEIGHT (W) \
952 - WINDOW_MODE_LINE_HEIGHT (W) \
953 - WINDOW_HEADER_LINE_HEIGHT (W))
955 /* Return the frame position where the horizontal scroll bar of window W
956 starts. */
957 #define WINDOW_SCROLL_BAR_AREA_Y(W) \
958 (WINDOW_TOP_EDGE_Y (W) \
959 + (WINDOW_HAS_HORIZONTAL_SCROLL_BAR (W) \
960 ? WINDOW_BOX_HEIGHT_NO_MODE_LINE (W) : 0))
962 /* Convert window W relative pixel X to frame pixel coordinates. */
963 #define WINDOW_TO_FRAME_PIXEL_X(W, X) \
964 ((X) + WINDOW_BOX_LEFT_EDGE_X ((W)))
966 /* Convert window W relative pixel Y to frame pixel coordinates. */
967 #define WINDOW_TO_FRAME_PIXEL_Y(W, Y) \
968 ((Y) + WINDOW_TOP_EDGE_Y (W))
970 /* Convert frame relative pixel X to window relative pixel X. */
971 #define FRAME_TO_WINDOW_PIXEL_X(W, X) \
972 ((X) - WINDOW_BOX_LEFT_EDGE_X ((W)))
974 /* Convert frame relative pixel Y to window relative pixel Y. */
975 #define FRAME_TO_WINDOW_PIXEL_Y(W, Y) \
976 ((Y) - WINDOW_TOP_EDGE_Y (W))
978 /* Convert a text area relative x-position in window W to frame X
979 pixel coordinates. */
980 #define WINDOW_TEXT_TO_FRAME_PIXEL_X(W, X) \
981 (window_box_left ((W), TEXT_AREA) + (X))
983 /* This is the window in which the terminal's cursor should be left when
984 nothing is being done with it. This must always be a leaf window, and its
985 buffer is selected by the top level editing loop at the end of each command.
987 This value is always the same as FRAME_SELECTED_WINDOW (selected_frame). */
989 extern Lisp_Object selected_window;
991 /* This is a time stamp for window selection, so we can find the least
992 recently used window. Its only users are Fselect_window,
993 init_window_once, and make_frame. */
995 extern EMACS_INT window_select_count;
997 /* The minibuffer window of the selected frame.
998 Note that you cannot test for minibufferness of an arbitrary window
999 by comparing against this; use the MINI_WINDOW_P macro instead. */
1001 extern Lisp_Object minibuf_window;
1003 /* Non-nil means it is the window whose mode line should be
1004 shown as the selected window when the minibuffer is selected. */
1006 extern Lisp_Object minibuf_selected_window;
1008 extern Lisp_Object make_window (void);
1009 extern Lisp_Object window_from_coordinates (struct frame *, int, int,
1010 enum window_part *, bool);
1011 extern void resize_frame_windows (struct frame *, int, bool, bool);
1012 extern void restore_window_configuration (Lisp_Object);
1013 extern void delete_all_child_windows (Lisp_Object);
1014 extern void grow_mini_window (struct window *, int, bool);
1015 extern void shrink_mini_window (struct window *, bool);
1016 extern int window_relative_x_coord (struct window *, enum window_part, int);
1018 void run_window_size_change_functions (Lisp_Object);
1020 /* Make WINDOW display BUFFER. RUN_HOOKS_P means it's allowed
1021 to run hooks. See make_frame for a case where it's not allowed. */
1023 void set_window_buffer (Lisp_Object window, Lisp_Object buffer,
1024 bool run_hooks_p, bool keep_margins_p);
1026 /* This is the window where the echo area message was displayed. It
1027 is always a minibuffer window, but it may not be the same window
1028 currently active as a minibuffer. */
1030 extern Lisp_Object echo_area_window;
1032 /* Depth in recursive edits. */
1034 extern EMACS_INT command_loop_level;
1036 /* Depth in minibuffer invocations. */
1038 extern EMACS_INT minibuf_level;
1040 /* Non-zero if we should redraw the mode lines on the next redisplay.
1041 Usually set to a unique small integer so we can track the main causes of
1042 full redisplays in `redisplay--mode-lines-cause'. */
1044 extern int update_mode_lines;
1046 /* Nonzero if window sizes or contents have changed since last
1047 redisplay that finished. Usually set to a unique small integer so
1048 we can track the main causes of full redisplays in
1049 `redisplay--all-windows-cause'. */
1051 extern int windows_or_buffers_changed;
1053 /* The main redisplay routine usually only redisplays the selected-window,
1054 so when something's changed elsewhere, we call one of the functions below
1055 to indicate which other windows might also need to be redisplayed. */
1057 extern void wset_redisplay (struct window *w);
1058 extern void fset_redisplay (struct frame *f);
1059 extern void bset_redisplay (struct buffer *b);
1060 extern void bset_update_mode_line (struct buffer *b);
1061 /* Call this to tell redisplay to look for other windows than selected-window
1062 that need to be redisplayed. Calling one of the *set_redisplay functions
1063 above already does it, so it's only needed in unusual cases. */
1064 extern void redisplay_other_windows (void);
1066 /* Return a pointer to the glyph W's physical cursor is on. Value is
1067 null if W's current matrix is invalid, so that no meaningful glyph
1068 can be returned. */
1070 struct glyph *get_phys_cursor_glyph (struct window *w);
1072 /* True if WINDOW is a valid window. */
1073 #define WINDOW_VALID_P(WINDOW) \
1074 (WINDOWP (WINDOW) && !NILP (XWINDOW (WINDOW)->contents)) \
1076 /* A window of any sort, leaf or interior, is "valid" if its
1077 contents slot is non-nil. */
1078 #define CHECK_VALID_WINDOW(WINDOW) \
1079 CHECK_TYPE (WINDOW_VALID_P (WINDOW), Qwindow_valid_p, WINDOW)
1081 /* True if WINDOW is a live window. */
1082 #define WINDOW_LIVE_P(WINDOW) \
1083 (WINDOWP (WINDOW) && BUFFERP (XWINDOW (WINDOW)->contents))
1085 /* A window is "live" if and only if it shows a buffer. */
1086 #define CHECK_LIVE_WINDOW(WINDOW) \
1087 CHECK_TYPE (WINDOW_LIVE_P (WINDOW), Qwindow_live_p, WINDOW)
1089 /* These used to be in lisp.h. */
1090 extern Lisp_Object Vwindow_list;
1092 extern Lisp_Object window_list (void);
1093 extern Lisp_Object window_parameter (struct window *, Lisp_Object parameter);
1094 extern struct window *decode_live_window (Lisp_Object);
1095 extern struct window *decode_any_window (Lisp_Object);
1096 extern bool compare_window_configurations (Lisp_Object, Lisp_Object, bool);
1097 extern void mark_window_cursors_off (struct window *);
1098 extern bool window_wants_mode_line (struct window *);
1099 extern bool window_wants_header_line (struct window *);
1100 extern int window_internal_height (struct window *);
1101 extern int window_body_width (struct window *w, bool);
1102 enum margin_unit { MARGIN_IN_LINES, MARGIN_IN_PIXELS };
1103 extern int window_scroll_margin (struct window *, enum margin_unit);
1104 extern void temp_output_buffer_show (Lisp_Object);
1105 extern void replace_buffer_in_windows (Lisp_Object);
1106 extern void replace_buffer_in_windows_safely (Lisp_Object);
1107 extern void sanitize_window_sizes (Lisp_Object horizontal);
1108 /* This looks like a setter, but it is a bit special. */
1109 extern void wset_buffer (struct window *, Lisp_Object);
1110 extern bool window_outdated (struct window *);
1111 extern void init_window_once (void);
1112 extern void init_window (void);
1113 extern void syms_of_window (void);
1114 extern void keys_of_window (void);
1115 /* Move cursor to row/column position VPOS/HPOS, pixel coordinates
1116 Y/X. HPOS/VPOS are window-relative row and column numbers and X/Y
1117 are window-relative pixel positions. This is always done during
1118 window update, so the position is the future output cursor position
1119 for currently updated window W. */
1121 INLINE void
1122 output_cursor_to (struct window *w, int vpos, int hpos, int y, int x)
1124 eassert (w);
1125 w->output_cursor.hpos = hpos;
1126 w->output_cursor.vpos = vpos;
1127 w->output_cursor.x = x;
1128 w->output_cursor.y = y;
1131 INLINE_HEADER_END
1133 #endif /* not WINDOW_H_INCLUDED */