Update copyright year to 2015
[emacs.git] / src / window.h
blob2ed0f3e9fbcd185708aa4dc28e2be4e00c14946f
1 /* Window definitions for GNU Emacs.
2 Copyright (C) 1985-1986, 1993, 1995, 1997-2015 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
10 (at 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 int use_time;
200 /* Unique number of window assigned when it was created. */
201 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 size of the window. */
218 int total_cols;
219 int total_lines;
221 /* Number of columns display within the window is scrolled to the left. */
222 ptrdiff_t hscroll;
224 /* Minimum hscroll for automatic hscrolling. This is the value
225 the user has set, by set-window-hscroll for example. */
226 ptrdiff_t min_hscroll;
228 /* Maximum line length in pixels within window bound by size of
229 window (set up by set_horizontal_scroll_bar). */
230 ptrdiff_t hscroll_whole;
232 /* Displayed buffer's text modification events counter as of last time
233 display completed. */
234 EMACS_INT last_modified;
236 /* Displayed buffer's overlays modification events counter as of last
237 complete update. */
238 EMACS_INT last_overlay_modified;
240 /* Value of point at that time. Since this is a position in a buffer,
241 it should be positive. */
242 ptrdiff_t last_point;
244 /* Line number and position of a line somewhere above the top of the
245 screen. If this field is zero, it means we don't have a base line. */
246 ptrdiff_t base_line_number;
248 /* If this field is zero, it means we don't have a base line.
249 If it is -1, it means don't display the line number as long
250 as the window shows its buffer. */
251 ptrdiff_t base_line_pos;
253 /* The column number currently displayed in this window's mode
254 line, or -1 if column numbers are not being displayed. */
255 ptrdiff_t column_number_displayed;
257 /* Scaling factor for the glyph_matrix size calculation in this window.
258 Used if window contains many small images or uses proportional fonts,
259 as the normal may yield a matrix which is too small. */
260 int nrows_scale_factor, ncols_scale_factor;
262 /* Intended cursor position. This is a position within the
263 glyph matrix. */
264 struct cursor_pos cursor;
266 /* Where the cursor actually is. */
267 struct cursor_pos phys_cursor;
269 /* Internally used for redisplay purposes. */
270 struct cursor_pos output_cursor;
272 /* Vertical cursor position as of last update that completed
273 without pause. This is the position of last_point. */
274 int last_cursor_vpos;
276 #ifdef HAVE_WINDOW_SYSTEM
278 /* Cursor type of last cursor drawn on the window. */
279 enum text_cursor_kinds phys_cursor_type;
281 /* Width of the cursor above. */
282 int phys_cursor_width;
284 /* This is handy for undrawing the cursor. */
285 int phys_cursor_ascent, phys_cursor_height;
287 #endif /* HAVE_WINDOW_SYSTEM */
289 /* Width of left and right fringes, in pixels.
290 A value of -1 means use frame values. */
291 int left_fringe_width;
292 int right_fringe_width;
294 /* Requested width of left and right marginal areas in columns. A
295 value of 0 means no margin. The actual values are recorded in
296 the window's glyph matrix, in the left_margin_glyphs and
297 right_margin_glyphs members. */
298 int left_margin_cols;
299 int right_margin_cols;
301 /* Pixel width of scroll bars.
302 A value of -1 means use frame values. */
303 int scroll_bar_width;
305 /* Pixel height of scroll bars.
306 A value of -1 means use frame values. */
307 int scroll_bar_height;
309 /* Effective height of the mode line, or -1 if not known. */
310 int mode_line_height;
312 /* Effective height of the header line, or -1 if not known. */
313 int header_line_height;
315 /* Z - the buffer position of the last glyph in the current
316 matrix of W. Only valid if window_end_valid is true. */
317 ptrdiff_t window_end_pos;
319 /* Glyph matrix row of the last glyph in the current matrix
320 of W. Only valid if window_end_valid is true. */
321 int window_end_vpos;
323 /* True if this window is a minibuffer window. */
324 bool_bf mini : 1;
326 /* Meaningful only if contents is a window, non-zero if this
327 internal window is used in horizontal combination. */
328 bool_bf horizontal : 1;
330 /* True means must regenerate mode line of this window. */
331 bool_bf update_mode_line : 1;
333 /* True if the buffer was "modified" when the window
334 was last updated. */
335 bool_bf last_had_star : 1;
337 /* True means current value of `start'
338 was the beginning of a line when it was chosen. */
339 bool_bf start_at_line_beg : 1;
341 /* True means next redisplay must use the value of start
342 set up for it in advance. Set by scrolling commands. */
343 bool_bf force_start : 1;
345 /* True means we have explicitly changed the value of start,
346 but that the next redisplay is not obliged to use the new value.
347 This is used in Fdelete_other_windows to force a call to
348 Vwindow_scroll_functions; also by Frecenter with argument. */
349 bool_bf optional_new_start : 1;
351 /* True means the cursor is currently displayed. This can be
352 set to zero by functions overpainting the cursor image. */
353 bool_bf phys_cursor_on_p : 1;
355 /* False means cursor is logically on, true means it's off. Used for
356 blinking cursor. */
357 bool_bf cursor_off_p : 1;
359 /* Value of cursor_off_p as of the last redisplay. */
360 bool_bf last_cursor_off_p : 1;
362 /* True means desired matrix has been build and window must be
363 updated in update_frame. */
364 bool_bf must_be_updated_p : 1;
366 /* Flag indicating that this window is not a real one.
367 Currently only used for menu bar windows of frames. */
368 bool_bf pseudo_window_p : 1;
370 /* True means fringes are drawn outside display margins.
371 Otherwise draw them between margin areas and text. */
372 bool_bf fringes_outside_margins : 1;
374 /* True if window_end_pos and window_end_vpos are truly valid.
375 This is false if nontrivial redisplay is preempted since in that case
376 the frame image that window_end_pos did not get onto the frame. */
377 bool_bf window_end_valid : 1;
379 /* True if it needs to be redisplayed. */
380 bool_bf redisplay : 1;
382 /* True if auto hscrolling is currently suspended in this
383 window. */
384 bool_bf suspend_auto_hscroll : 1;
386 /* Amount by which lines of this window are scrolled in
387 y-direction (smooth scrolling). */
388 int vscroll;
390 /* Z_BYTE - buffer position of the last glyph in the current matrix of W.
391 Should be nonnegative, and only valid if window_end_valid is true. */
392 ptrdiff_t window_end_bytepos;
395 /* Most code should use these functions to set Lisp fields in struct
396 window. */
397 INLINE void
398 wset_frame (struct window *w, Lisp_Object val)
400 w->frame = val;
403 INLINE void
404 wset_next (struct window *w, Lisp_Object val)
406 w->next = val;
409 INLINE void
410 wset_prev (struct window *w, Lisp_Object val)
412 w->prev = val;
415 INLINE void
416 wset_redisplay_end_trigger (struct window *w, Lisp_Object val)
418 w->redisplay_end_trigger = val;
421 INLINE void
422 wset_new_pixel (struct window *w, Lisp_Object val)
424 w->new_pixel = val;
427 INLINE void
428 wset_vertical_scroll_bar (struct window *w, Lisp_Object val)
430 w->vertical_scroll_bar = val;
433 INLINE void
434 wset_horizontal_scroll_bar (struct window *w, Lisp_Object val)
436 w->horizontal_scroll_bar = val;
439 INLINE void
440 wset_horizontal_scroll_bar_type (struct window *w, Lisp_Object val)
442 w->horizontal_scroll_bar_type = val;
445 INLINE void
446 wset_prev_buffers (struct window *w, Lisp_Object val)
448 w->prev_buffers = val;
451 INLINE void
452 wset_next_buffers (struct window *w, Lisp_Object val)
454 w->next_buffers = val;
457 /* True if W is a minibuffer window. */
458 #define MINI_WINDOW_P(W) ((W)->mini)
460 /* 1 if W is a non-only minibuffer window. */
461 /* The first check is redundant and the second overly complicated. */
462 #define MINI_NON_ONLY_WINDOW_P(W) \
463 (MINI_WINDOW_P (W) \
464 && (EQ (W->prev, FRAME_ROOT_WINDOW (WINDOW_XFRAME (W)))))
466 /* 1 if W is a minibuffer-only window. */
467 #define MINI_ONLY_WINDOW_P(W) \
468 (MINI_WINDOW_P (W) && NILP (W->prev))
470 /* General window layout:
472 LEFT_EDGE_COL RIGHT_EDGE_COL
475 | BOX_LEFT_EDGE_COL |
476 | | BOX_RIGHT_EDGE_COL |
477 | | | |
478 v v v v
479 <-><-><---><-----------><---><-><->
480 ^ ^ ^ ^ ^ ^ ^
481 | | | | | | |
482 | | | | | | +-- RIGHT_SCROLL_BAR_COLS
483 | | | | | +----- RIGHT_FRINGE_WIDTH
484 | | | | +--------- RIGHT_MARGIN_COLS
485 | | | |
486 | | | +------------------ TEXT_AREA_COLS
487 | | |
488 | | +--------------------------- LEFT_MARGIN_COLS
489 | +------------------------------- LEFT_FRINGE_WIDTH
490 +---------------------------------- LEFT_SCROLL_BAR_COLS
495 /* A handy macro. */
497 /* Non-nil if W is leaf (carry the buffer). */
499 #define WINDOW_LEAF_P(W) \
500 (BUFFERP ((W)->contents))
502 /* True if W is a member of horizontal combination. */
504 #define WINDOW_HORIZONTAL_COMBINATION_P(W) \
505 (WINDOWP ((W)->contents) && (W)->horizontal)
507 /* True if W is a member of vertical combination. */
509 #define WINDOW_VERTICAL_COMBINATION_P(W) \
510 (WINDOWP ((W)->contents) && !(W)->horizontal)
512 /* WINDOW's XFRAME. */
513 #define WINDOW_XFRAME(W) (XFRAME (WINDOW_FRAME ((W))))
515 /* Whether WINDOW is a pseudo window. */
516 #define WINDOW_PSEUDO_P(W) ((W)->pseudo_window_p)
518 /* Return the canonical column width of the frame of window W. */
519 #define WINDOW_FRAME_COLUMN_WIDTH(W) \
520 (FRAME_COLUMN_WIDTH (WINDOW_XFRAME ((W))))
522 /* Return the canonical line height of the frame of window W. */
523 #define WINDOW_FRAME_LINE_HEIGHT(W) \
524 (FRAME_LINE_HEIGHT (WINDOW_XFRAME ((W))))
526 /* Return the pixel width of window W.
527 This includes scroll bars and fringes. */
528 #define WINDOW_PIXEL_WIDTH(W) (W)->pixel_width
530 /* Return the pixel height of window W.
531 This includes header and mode lines, if any. */
532 #define WINDOW_PIXEL_HEIGHT(W) (W)->pixel_height
534 /* Return the width of window W in canonical column units.
535 This includes scroll bars and fringes.
536 This value is adjusted such that the sum of the widths of all child
537 windows equals the width of their parent window. */
538 #define WINDOW_TOTAL_COLS(W) (W)->total_cols
540 /* Return the height of window W in canonical line units.
541 This includes header and mode lines, if any.
542 This value is adjusted such that the sum of the heights of all child
543 windows equals the height of their parent window. */
544 #define WINDOW_TOTAL_LINES(W) (W)->total_lines
546 /* The smallest acceptable dimensions for a window. Anything smaller
547 might crash Emacs. */
548 #define MIN_SAFE_WINDOW_WIDTH (2)
550 #define MIN_SAFE_WINDOW_PIXEL_WIDTH(W) \
551 (2 * WINDOW_FRAME_COLUMN_WIDTH (W))
553 #define MIN_SAFE_WINDOW_HEIGHT (1)
555 #define MIN_SAFE_WINDOW_PIXEL_HEIGHT(W) \
556 (WINDOW_FRAME_LINE_HEIGHT (W))
558 /* Width of right divider of window W. */
559 #define WINDOW_RIGHT_DIVIDER_WIDTH(W) \
560 ((WINDOW_RIGHTMOST_P (W) || MINI_WINDOW_P (W)) \
561 ? 0 \
562 : FRAME_RIGHT_DIVIDER_WIDTH (WINDOW_XFRAME (W)))
564 /* Return the canonical frame column at which window W starts.
565 This includes a left-hand scroll bar, if any. */
567 #define WINDOW_LEFT_EDGE_COL(W) (W)->left_col
569 /* Return the canonical frame column before which window W ends.
570 This includes a right-hand scroll bar, if any. */
572 #define WINDOW_RIGHT_EDGE_COL(W) \
573 (WINDOW_LEFT_EDGE_COL (W) + WINDOW_TOTAL_COLS (W))
575 /* Return the canonical frame line at which window W starts.
576 This includes a header line, if any. */
578 #define WINDOW_TOP_EDGE_LINE(W) (W)->top_line
580 /* Return the canonical frame line before which window W ends.
581 This includes a mode line, if any. */
583 #define WINDOW_BOTTOM_EDGE_LINE(W) \
584 (WINDOW_TOP_EDGE_LINE (W) + WINDOW_TOTAL_LINES (W))
586 /* Return the left pixel edge at which window W starts.
587 This includes a left-hand scroll bar, if any. */
588 #define WINDOW_LEFT_PIXEL_EDGE(W) (W)->pixel_left
590 /* Return the right pixel edge before which window W ends.
591 This includes a right-hand scroll bar, if any. */
592 #define WINDOW_RIGHT_PIXEL_EDGE(W) \
593 (WINDOW_LEFT_PIXEL_EDGE (W) + WINDOW_PIXEL_WIDTH (W))
595 /* Return the top pixel edge at which window W starts.
596 This includes a header line, if any. */
597 #define WINDOW_TOP_PIXEL_EDGE(W) (W)->pixel_top
599 /* Return the bottom pixel edge before which window W ends.
600 This includes a mode line, if any. */
601 #define WINDOW_BOTTOM_PIXEL_EDGE(W) \
602 (WINDOW_TOP_PIXEL_EDGE (W) + WINDOW_PIXEL_HEIGHT (W))
604 /* Return the frame x-position at which window W starts.
605 This includes a left-hand scroll bar, if any. */
607 #define WINDOW_LEFT_EDGE_X(W) \
608 (FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W)) \
609 + WINDOW_LEFT_PIXEL_EDGE (W))
611 /* Return the frame x- position before which window W ends.
612 This includes a right-hand scroll bar, if any. */
614 #define WINDOW_RIGHT_EDGE_X(W) \
615 (FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W)) \
616 + WINDOW_RIGHT_PIXEL_EDGE (W))
618 /* True if W is a menu bar window. */
620 #if defined (HAVE_X_WINDOWS) && ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
621 #define WINDOW_MENU_BAR_P(W) \
622 (WINDOWP (WINDOW_XFRAME (W)->menu_bar_window) \
623 && (W) == XWINDOW (WINDOW_XFRAME (W)->menu_bar_window))
624 #else
625 /* No menu bar windows if X toolkit is in use. */
626 #define WINDOW_MENU_BAR_P(W) false
627 #endif
629 /* True if W is a tool bar window. */
630 #if defined (HAVE_WINDOW_SYSTEM) && ! defined (USE_GTK) && ! defined (HAVE_NS)
631 #define WINDOW_TOOL_BAR_P(W) \
632 (WINDOWP (WINDOW_XFRAME (W)->tool_bar_window) \
633 && (W) == XWINDOW (WINDOW_XFRAME (W)->tool_bar_window))
634 #else
635 #define WINDOW_TOOL_BAR_P(W) false
636 #endif
638 /* Return the frame y-position at which window W starts.
639 This includes a header line, if any.
641 PXW: With a menu or tool bar this is not symmetric to the _X values
642 since it _does_ include the internal border width. */
643 #define WINDOW_TOP_EDGE_Y(W) \
644 (((WINDOW_MENU_BAR_P (W) || WINDOW_TOOL_BAR_P (W)) \
645 ? 0 : FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W))) \
646 + WINDOW_TOP_PIXEL_EDGE (W))
648 /* Return the frame y-position before which window W ends.
649 This includes a mode line, if any. */
650 #define WINDOW_BOTTOM_EDGE_Y(W) \
651 (((WINDOW_MENU_BAR_P (W) || WINDOW_TOOL_BAR_P (W)) \
652 ? 0 : FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W))) \
653 + WINDOW_BOTTOM_PIXEL_EDGE (W))
655 /* True if window W takes up the full width of its frame. */
656 #define WINDOW_FULL_WIDTH_P(W) \
657 (WINDOW_PIXEL_WIDTH (W) \
658 == (WINDOW_PIXEL_WIDTH \
659 (XWINDOW (FRAME_ROOT_WINDOW (WINDOW_XFRAME (W)))))) \
661 /* True if window W's has no other windows to its left in its frame. */
663 #define WINDOW_LEFTMOST_P(W) \
664 (WINDOW_LEFT_PIXEL_EDGE (W) == 0)
666 /* True if window W's has no other windows above in its frame. */
667 #define WINDOW_TOPMOST_P(W) \
668 (WINDOW_TOP_PIXEL_EDGE (W) == 0)
670 /* True if window W's has no other windows to its right in its frame. */
671 #define WINDOW_RIGHTMOST_P(W) \
672 (WINDOW_RIGHT_PIXEL_EDGE (W) \
673 == (WINDOW_RIGHT_PIXEL_EDGE \
674 (XWINDOW (FRAME_ROOT_WINDOW (WINDOW_XFRAME (W)))))) \
676 /* True if window W's has no other windows below it in its frame
677 (the minibuffer window is not counted in this respect). */
678 #define WINDOW_BOTTOMMOST_P(W) \
679 (WINDOW_BOTTOM_PIXEL_EDGE (W) \
680 == (WINDOW_BOTTOM_PIXEL_EDGE \
681 (XWINDOW (FRAME_ROOT_WINDOW (WINDOW_XFRAME (W)))))) \
683 /* Return the frame column at which the text (or left fringe) in
684 window W starts. This is different from the `LEFT_EDGE' because it
685 does not include a left-hand scroll bar if any. */
686 #define WINDOW_BOX_LEFT_EDGE_COL(W) \
687 (WINDOW_LEFT_EDGE_COL (W) \
688 + WINDOW_LEFT_SCROLL_BAR_COLS (W))
690 /* Return the pixel value where the text (or left fringe) in
691 window W starts. This is different from the `LEFT_EDGE' because it
692 does not include a left-hand scroll bar if any. */
693 #define WINDOW_BOX_LEFT_PIXEL_EDGE(W) \
694 (WINDOW_LEFT_PIXEL_EDGE (W) \
695 + WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (W))
697 /* Return the window column before which the text in window W ends.
698 This is different from WINDOW_RIGHT_EDGE_COL because it does not
699 include a scroll bar or window-separating line on the right edge. */
700 #define WINDOW_BOX_RIGHT_EDGE_COL(W) \
701 (WINDOW_RIGHT_EDGE_COL (W) \
702 - WINDOW_RIGHT_SCROLL_BAR_COLS (W))
704 /* Return the pixel value before which the text in window W ends. This
705 is different from the `RIGHT_EDGE' because it does not include a
706 right-hand scroll bar or window-separating line on the right
707 edge. */
708 #define WINDOW_BOX_RIGHT_PIXEL_EDGE(W) \
709 (WINDOW_RIGHT_PIXEL_EDGE (W) \
710 - WINDOW_RIGHT_DIVIDER_WIDTH (W) \
711 - WINDOW_RIGHT_SCROLL_BAR_AREA_WIDTH (W))
713 /* Return the frame position at which the text (or left fringe) in
714 window W starts. This is different from the `LEFT_EDGE' because it
715 does not include a left-hand scroll bar if any. */
716 #define WINDOW_BOX_LEFT_EDGE_X(W) \
717 (FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W)) \
718 + WINDOW_BOX_LEFT_PIXEL_EDGE (W))
720 /* Return the window column before which the text in window W ends.
721 This is different from WINDOW_RIGHT_EDGE_COL because it does not
722 include a scroll bar or window-separating line on the right edge. */
723 #define WINDOW_BOX_RIGHT_EDGE_X(W) \
724 (FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W)) \
725 + WINDOW_BOX_RIGHT_PIXEL_EDGE (W))
727 /* Widths of marginal areas in columns. */
728 #define WINDOW_LEFT_MARGIN_COLS(W) (W->left_margin_cols)
730 #define WINDOW_RIGHT_MARGIN_COLS(W) (W->right_margin_cols)
732 #define WINDOW_MARGINS_COLS(W) \
733 (WINDOW_LEFT_MARGIN_COLS (W) \
734 + WINDOW_RIGHT_MARGIN_COLS (W))
736 /* Widths of marginal areas in pixels. */
737 #define WINDOW_LEFT_MARGIN_WIDTH(W) \
738 (W->left_margin_cols * WINDOW_FRAME_COLUMN_WIDTH (W))
740 #define WINDOW_RIGHT_MARGIN_WIDTH(W) \
741 (W->right_margin_cols * WINDOW_FRAME_COLUMN_WIDTH (W))
743 #define WINDOW_MARGINS_WIDTH(W) \
744 (WINDOW_LEFT_MARGIN_WIDTH (W) \
745 + WINDOW_RIGHT_MARGIN_WIDTH (W))
747 /* Pixel-widths of fringes. */
748 #define WINDOW_LEFT_FRINGE_WIDTH(W) \
749 (W->left_fringe_width >= 0 \
750 ? W->left_fringe_width \
751 : FRAME_LEFT_FRINGE_WIDTH (WINDOW_XFRAME (W)))
753 #define WINDOW_RIGHT_FRINGE_WIDTH(W) \
754 (W->right_fringe_width >= 0 \
755 ? W->right_fringe_width \
756 : FRAME_RIGHT_FRINGE_WIDTH (WINDOW_XFRAME (W)))
758 #define WINDOW_FRINGES_WIDTH(W) \
759 (WINDOW_LEFT_FRINGE_WIDTH (W) + WINDOW_RIGHT_FRINGE_WIDTH (W))
761 /* Are fringes outside display margins in window W. */
762 #define WINDOW_HAS_FRINGES_OUTSIDE_MARGINS(W) \
763 ((W)->fringes_outside_margins)
765 /* Say whether vertical scroll bars are currently enabled for window W,
766 and which side they are on. */
767 #define WINDOW_VERTICAL_SCROLL_BAR_TYPE(W) \
768 (WINDOW_PSEUDO_P (W) \
769 ? vertical_scroll_bar_none \
770 : EQ (W->vertical_scroll_bar_type, Qt) \
771 ? FRAME_VERTICAL_SCROLL_BAR_TYPE (WINDOW_XFRAME (W)) \
772 : EQ (W->vertical_scroll_bar_type, Qleft) \
773 ? vertical_scroll_bar_left \
774 : EQ (W->vertical_scroll_bar_type, Qright) \
775 ? vertical_scroll_bar_right \
776 : vertical_scroll_bar_none)
778 #define WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT(W) \
779 (WINDOW_VERTICAL_SCROLL_BAR_TYPE (W) == vertical_scroll_bar_left)
781 #define WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT(W) \
782 (WINDOW_VERTICAL_SCROLL_BAR_TYPE (W) == vertical_scroll_bar_right)
784 #define WINDOW_HAS_VERTICAL_SCROLL_BAR(W) \
785 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (W) \
786 || WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (W))
788 #if (defined (HAVE_WINDOW_SYSTEM) \
789 && ((defined (USE_TOOLKIT_SCROLL_BARS) && !defined (HAVE_NS)) \
790 || defined (HAVE_NTGUI)))
791 # define USE_HORIZONTAL_SCROLL_BARS true
792 #else
793 # define USE_HORIZONTAL_SCROLL_BARS false
794 #endif
796 /* Say whether horizontal scroll bars are currently enabled for window
797 W. Horizontal scrollbars exist for toolkit versions only. */
798 #if USE_HORIZONTAL_SCROLL_BARS
799 #define WINDOW_HAS_HORIZONTAL_SCROLL_BAR(W) \
800 ((WINDOW_PSEUDO_P (W) || MINI_NON_ONLY_WINDOW_P (W)) \
801 ? false \
802 : EQ (W->horizontal_scroll_bar_type, Qt) \
803 ? FRAME_HAS_HORIZONTAL_SCROLL_BARS (WINDOW_XFRAME (W)) \
804 : EQ (W->horizontal_scroll_bar_type, Qbottom) \
805 ? true \
806 : false)
807 #else
808 #define WINDOW_HAS_HORIZONTAL_SCROLL_BAR(W) false
809 #endif
811 /* Width that a scroll bar in window W should have, if there is one.
812 Measured in pixels. If scroll bars are turned off, this is still
813 nonzero. */
814 #define WINDOW_CONFIG_SCROLL_BAR_WIDTH(W) \
815 (W->scroll_bar_width >= 0 \
816 ? W->scroll_bar_width \
817 : FRAME_CONFIG_SCROLL_BAR_WIDTH (WINDOW_XFRAME (W)))
819 /* Width that a scroll bar in window W should have, if there is one.
820 Measured in columns (characters). If scroll bars are turned off,
821 this is still nonzero. */
822 #define WINDOW_CONFIG_SCROLL_BAR_COLS(W) \
823 (W->scroll_bar_width >= 0 \
824 ? ((W->scroll_bar_width \
825 + WINDOW_FRAME_COLUMN_WIDTH (W) - 1) \
826 / WINDOW_FRAME_COLUMN_WIDTH (W)) \
827 : FRAME_CONFIG_SCROLL_BAR_COLS (WINDOW_XFRAME (W)))
829 /* Width of left scroll bar in window W, measured in columns
830 (characters). If scroll bars are on the right in this frame, or
831 there are no scroll bars, value is 0. */
832 #define WINDOW_LEFT_SCROLL_BAR_COLS(W) \
833 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (W) \
834 ? (WINDOW_CONFIG_SCROLL_BAR_COLS (W)) \
835 : 0)
837 /* Width of right scroll bar in window W, measured in columns
838 (characters). If scroll bars are on the left in this frame, or there
839 are no scroll bars, value is 0. */
840 #define WINDOW_RIGHT_SCROLL_BAR_COLS(W) \
841 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (W) \
842 ? WINDOW_CONFIG_SCROLL_BAR_COLS (W) \
843 : 0)
845 /* Width of a scroll bar in window W, measured in columns. */
846 #define WINDOW_SCROLL_BAR_COLS(W) \
847 (WINDOW_HAS_VERTICAL_SCROLL_BAR (W) \
848 ? WINDOW_CONFIG_SCROLL_BAR_COLS (W) \
849 : 0)
851 /* Width of a left scroll bar area in window W, measured in pixels. */
852 #define WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH(W) \
853 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (W) \
854 ? WINDOW_CONFIG_SCROLL_BAR_WIDTH (W) \
855 : 0)
857 /* Width of a right scroll bar area in window W, measured in pixels. */
858 #define WINDOW_RIGHT_SCROLL_BAR_AREA_WIDTH(W) \
859 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (W) \
860 ? WINDOW_CONFIG_SCROLL_BAR_WIDTH (W) \
861 : 0)
863 /* Width of scroll bar area in window W, measured in pixels. */
864 #define WINDOW_SCROLL_BAR_AREA_WIDTH(W) \
865 (WINDOW_HAS_VERTICAL_SCROLL_BAR (W) \
866 ? WINDOW_CONFIG_SCROLL_BAR_WIDTH (W) \
867 : 0)
869 /* Return the frame position where the vertical scroll bar of window W
870 starts. */
871 #define WINDOW_SCROLL_BAR_AREA_X(W) \
872 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (W) \
873 ? WINDOW_BOX_RIGHT_EDGE_X (W) \
874 : WINDOW_LEFT_EDGE_X (W))
876 /* Width of bottom divider of window W. */
877 #define WINDOW_BOTTOM_DIVIDER_WIDTH(W) \
878 (((WINDOW_BOTTOMMOST_P (W) \
879 && NILP ((XWINDOW (FRAME_ROOT_WINDOW \
880 (WINDOW_XFRAME (W))))->next)) \
881 || EQ ((W)->prev, FRAME_ROOT_WINDOW (WINDOW_XFRAME (W))) \
882 || (W)->pseudo_window_p) \
883 ? 0 \
884 : FRAME_BOTTOM_DIVIDER_WIDTH (WINDOW_XFRAME (W)))
886 /* Height that a scroll bar in window W should have, if there is one.
887 Measured in pixels. If scroll bars are turned off, this is still
888 nonzero. */
889 #define WINDOW_CONFIG_SCROLL_BAR_HEIGHT(W) \
890 (W->scroll_bar_height >= 0 \
891 ? W->scroll_bar_height \
892 : FRAME_CONFIG_SCROLL_BAR_HEIGHT (WINDOW_XFRAME (W)))
894 /* Height that a scroll bar in window W should have, if there is one.
895 Measured in lines (characters). If scroll bars are turned off, this
896 is still nonzero. */
897 #define WINDOW_CONFIG_SCROLL_BAR_LINES(W) \
898 (W->scroll_bar_height >= 0 \
899 ? ((W->scroll_bar_height \
900 + WINDOW_FRAME_LINE_HEIGHT (W) - 1) \
901 / WINDOW_FRAME_LINE_HEIGHT (W)) \
902 : FRAME_CONFIG_SCROLL_BAR_LINES (WINDOW_XFRAME (W)))
904 /* Height of a scroll bar in window W, measured in columns. */
905 #define WINDOW_SCROLL_BAR_LINES(W) \
906 (WINDOW_HAS_HORIZONTAL_SCROLL_BAR (W) \
907 ? WINDOW_CONFIG_SCROLL_BAR_LINES (W) \
908 : 0)
910 /* Height of scroll bar area in window W, measured in pixels. */
911 #define WINDOW_SCROLL_BAR_AREA_HEIGHT(W) \
912 (WINDOW_HAS_HORIZONTAL_SCROLL_BAR (W) \
913 ? WINDOW_CONFIG_SCROLL_BAR_HEIGHT (W) \
914 : 0)
916 /* Height in pixels, and in lines, of the mode line.
917 May be zero if W doesn't have a mode line. */
918 #define WINDOW_MODE_LINE_HEIGHT(W) \
919 (WINDOW_WANTS_MODELINE_P ((W)) \
920 ? CURRENT_MODE_LINE_HEIGHT (W) \
921 : 0)
923 #define WINDOW_MODE_LINE_LINES(W) \
924 (!! WINDOW_WANTS_MODELINE_P (W))
926 /* Height in pixels, and in lines, of the header line.
927 Zero if W doesn't have a header line. */
928 #define WINDOW_HEADER_LINE_HEIGHT(W) \
929 (WINDOW_WANTS_HEADER_LINE_P (W) \
930 ? CURRENT_HEADER_LINE_HEIGHT (W) \
931 : 0)
933 #define WINDOW_HEADER_LINE_LINES(W) \
934 (!! WINDOW_WANTS_HEADER_LINE_P (W))
936 /* Pixel height of window W without mode line, bottom scroll bar and
937 bottom divider. */
938 #define WINDOW_BOX_HEIGHT_NO_MODE_LINE(W) \
939 (WINDOW_PIXEL_HEIGHT (W) \
940 - WINDOW_BOTTOM_DIVIDER_WIDTH (W) \
941 - WINDOW_SCROLL_BAR_AREA_HEIGHT (W) \
942 - WINDOW_MODE_LINE_HEIGHT (W))
944 /* Pixel height of window W without mode and header line and bottom
945 divider. */
946 #define WINDOW_BOX_TEXT_HEIGHT(W) \
947 (WINDOW_PIXEL_HEIGHT ((W)) \
948 - WINDOW_BOTTOM_DIVIDER_WIDTH (W) \
949 - WINDOW_SCROLL_BAR_AREA_HEIGHT (W) \
950 - WINDOW_MODE_LINE_HEIGHT (W) \
951 - WINDOW_HEADER_LINE_HEIGHT (W))
953 /* Return the frame position where the horizontal scroll bar of window W
954 starts. */
955 #define WINDOW_SCROLL_BAR_AREA_Y(W) \
956 (WINDOW_TOP_EDGE_Y (W) \
957 + (WINDOW_HAS_HORIZONTAL_SCROLL_BAR (W) \
958 ? WINDOW_BOX_HEIGHT_NO_MODE_LINE (W) : 0))
960 /* Convert window W relative pixel X to frame pixel coordinates. */
961 #define WINDOW_TO_FRAME_PIXEL_X(W, X) \
962 ((X) + WINDOW_BOX_LEFT_EDGE_X ((W)))
964 /* Convert window W relative pixel Y to frame pixel coordinates. */
965 #define WINDOW_TO_FRAME_PIXEL_Y(W, Y) \
966 ((Y) + WINDOW_TOP_EDGE_Y (W))
968 /* Convert frame relative pixel X to window relative pixel X. */
969 #define FRAME_TO_WINDOW_PIXEL_X(W, X) \
970 ((X) - WINDOW_BOX_LEFT_EDGE_X ((W)))
972 /* Convert frame relative pixel Y to window relative pixel Y. */
973 #define FRAME_TO_WINDOW_PIXEL_Y(W, Y) \
974 ((Y) - WINDOW_TOP_EDGE_Y (W))
976 /* Convert a text area relative x-position in window W to frame X
977 pixel coordinates. */
978 #define WINDOW_TEXT_TO_FRAME_PIXEL_X(W, X) \
979 (window_box_left ((W), TEXT_AREA) + (X))
981 /* This is the window in which the terminal's cursor should be left when
982 nothing is being done with it. This must always be a leaf window, and its
983 buffer is selected by the top level editing loop at the end of each command.
985 This value is always the same as FRAME_SELECTED_WINDOW (selected_frame). */
987 extern Lisp_Object selected_window;
989 /* This is a time stamp for window selection, so we can find the least
990 recently used window. Its only users are Fselect_window,
991 init_window_once, and make_frame. */
993 extern int window_select_count;
995 /* The minibuffer window of the selected frame.
996 Note that you cannot test for minibufferness of an arbitrary window
997 by comparing against this; use the MINI_WINDOW_P macro instead. */
999 extern Lisp_Object minibuf_window;
1001 /* Non-nil means it is the window whose mode line should be
1002 shown as the selected window when the minibuffer is selected. */
1004 extern Lisp_Object minibuf_selected_window;
1006 extern Lisp_Object make_window (void);
1007 extern Lisp_Object window_from_coordinates (struct frame *, int, int,
1008 enum window_part *, bool);
1009 extern void resize_frame_windows (struct frame *, int, bool, bool);
1010 extern void restore_window_configuration (Lisp_Object);
1011 extern void delete_all_child_windows (Lisp_Object);
1012 extern void grow_mini_window (struct window *, int, bool);
1013 extern void shrink_mini_window (struct window *, bool);
1014 extern int window_relative_x_coord (struct window *, enum window_part, int);
1016 void run_window_configuration_change_hook (struct frame *f);
1018 /* Make WINDOW display BUFFER. RUN_HOOKS_P non-zero means it's allowed
1019 to run hooks. See make_frame for a case where it's not allowed. */
1021 void set_window_buffer (Lisp_Object window, Lisp_Object buffer,
1022 bool run_hooks_p, bool keep_margins_p);
1024 /* This is the window where the echo area message was displayed. It
1025 is always a minibuffer window, but it may not be the same window
1026 currently active as a minibuffer. */
1028 extern Lisp_Object echo_area_window;
1030 /* Depth in recursive edits. */
1032 extern EMACS_INT command_loop_level;
1034 /* Depth in minibuffer invocations. */
1036 extern EMACS_INT minibuf_level;
1038 /* Non-zero if we should redraw the mode lines on the next redisplay.
1039 Usually set to a unique small integer so we can track the main causes of
1040 full redisplays in `redisplay--mode-lines-cause'. */
1042 extern int update_mode_lines;
1044 /* Nonzero if window sizes or contents have changed since last
1045 redisplay that finished. Usually set to a unique small integer so
1046 we can track the main causes of full redisplays in
1047 `redisplay--all-windows-cause'. */
1049 extern int windows_or_buffers_changed;
1051 /* The main redisplay routine usually only redisplays the selected-window,
1052 so when something's changed elsewhere, we call one of the functions below
1053 to indicate which other windows might also need to be redisplayed. */
1055 extern void wset_redisplay (struct window *w);
1056 extern void fset_redisplay (struct frame *f);
1057 extern void bset_redisplay (struct buffer *b);
1058 extern void bset_update_mode_line (struct buffer *b);
1059 /* Call this to tell redisplay to look for other windows than selected-window
1060 that need to be redisplayed. Calling one of the *set_redisplay functions
1061 above already does it, so it's only needed in unusual cases. */
1062 extern void redisplay_other_windows (void);
1064 /* Return a pointer to the glyph W's physical cursor is on. Value is
1065 null if W's current matrix is invalid, so that no meaningful glyph
1066 can be returned. */
1068 struct glyph *get_phys_cursor_glyph (struct window *w);
1070 /* Value is non-zero if WINDOW is a valid window. */
1071 #define WINDOW_VALID_P(WINDOW) \
1072 (WINDOWP (WINDOW) && !NILP (XWINDOW (WINDOW)->contents)) \
1074 /* A window of any sort, leaf or interior, is "valid" if its
1075 contents slot is non-nil. */
1076 #define CHECK_VALID_WINDOW(WINDOW) \
1077 CHECK_TYPE (WINDOW_VALID_P (WINDOW), Qwindow_valid_p, WINDOW)
1079 /* Value is non-zero if WINDOW is a live window. */
1080 #define WINDOW_LIVE_P(WINDOW) \
1081 (WINDOWP (WINDOW) && BUFFERP (XWINDOW (WINDOW)->contents))
1083 /* A window is "live" if and only if it shows a buffer. */
1084 #define CHECK_LIVE_WINDOW(WINDOW) \
1085 CHECK_TYPE (WINDOW_LIVE_P (WINDOW), Qwindow_live_p, WINDOW)
1087 /* These used to be in lisp.h. */
1088 extern Lisp_Object Qwindow_live_p;
1089 extern Lisp_Object Vwindow_list;
1091 extern Lisp_Object window_list (void);
1092 extern struct window *decode_live_window (Lisp_Object);
1093 extern struct window *decode_any_window (Lisp_Object);
1094 extern bool compare_window_configurations (Lisp_Object, Lisp_Object, bool);
1095 extern void mark_window_cursors_off (struct window *);
1096 extern int window_internal_height (struct window *);
1097 extern int window_body_width (struct window *w, bool);
1098 extern void temp_output_buffer_show (Lisp_Object);
1099 extern void replace_buffer_in_windows (Lisp_Object);
1100 extern void replace_buffer_in_windows_safely (Lisp_Object);
1101 extern Lisp_Object sanitize_window_sizes (Lisp_Object, Lisp_Object);
1102 /* This looks like a setter, but it is a bit special. */
1103 extern void wset_buffer (struct window *, Lisp_Object);
1104 extern bool window_outdated (struct window *);
1105 extern void init_window_once (void);
1106 extern void init_window (void);
1107 extern void syms_of_window (void);
1108 extern void keys_of_window (void);
1110 /* Move cursor to row/column position VPOS/HPOS, pixel coordinates
1111 Y/X. HPOS/VPOS are window-relative row and column numbers and X/Y
1112 are window-relative pixel positions. This is always done during
1113 window update, so the position is the future output cursor position
1114 for currently updated window W. */
1116 INLINE void
1117 output_cursor_to (struct window *w, int vpos, int hpos, int y, int x)
1119 eassert (w);
1120 w->output_cursor.hpos = hpos;
1121 w->output_cursor.vpos = vpos;
1122 w->output_cursor.x = x;
1123 w->output_cursor.y = y;
1126 INLINE_HEADER_END
1128 #endif /* not WINDOW_H_INCLUDED */