]> code.delx.au - gnu-emacs/blob - src/window.h
Don't ignore .gitattributes
[gnu-emacs] / src / window.h
1 /* Window definitions for GNU Emacs.
2 Copyright (C) 1985-1986, 1993, 1995, 1997-2014 Free Software
3 Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
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.
11
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.
16
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/>. */
19
20 #ifndef WINDOW_H_INCLUDED
21 #define WINDOW_H_INCLUDED
22
23 #include "dispextern.h"
24
25 INLINE_HEADER_BEGIN
26
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.
30
31 All windows in use are arranged into a tree, with pointers up and down.
32
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.
40
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.
43
44 Non-leaf windows are either vertical or horizontal combinations.
45
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.
53
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.
58
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.
62
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.
70
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.
76
77 A dead window has its contents field set to nil. */
78
79 struct cursor_pos
80 {
81 /* Pixel position. These are always window relative. */
82 int x, y;
83
84 /* Glyph matrix position. */
85 int hpos, vpos;
86 };
87
88 struct window
89 {
90 /* This is for Lisp; the terminal code does not refer to it. */
91 struct vectorlike_header header;
92
93 /* The frame this window is on. */
94 Lisp_Object frame;
95
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;
100
101 /* The window this one is a child of. */
102 Lisp_Object parent;
103
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;
109
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;
115
116 /* May be buffer, window, or nil. */
117 Lisp_Object contents;
118
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;
124
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;
130
131 /* No permanent meaning; used by save-window-excursion's
132 bookkeeping. */
133 Lisp_Object temslot;
134
135 /* This window's vertical scroll bar. This field is only for use
136 by the window-system-dependent code which implements the
137 scroll bars; it can store anything it likes here. If this
138 window is newly created and we haven't displayed a scroll bar in
139 it yet, or if the frame doesn't have any scroll bars, this is nil. */
140 Lisp_Object vertical_scroll_bar;
141
142 /* Type of vertical scroll bar. A value of nil means
143 no scroll bar. A value of t means use frame value. */
144 Lisp_Object vertical_scroll_bar_type;
145
146 /* Display-table to use for displaying chars in this window.
147 Nil means use the buffer's own display-table. */
148 Lisp_Object display_table;
149
150 /* Non-nil usually means window is marked as dedicated.
151 Note Lisp code may set this to something beyond Qnil
152 and Qt, so bitfield can't be used here. */
153 Lisp_Object dedicated;
154
155 /* If redisplay in this window goes beyond this buffer position,
156 must run the redisplay-end-trigger-hook. */
157 Lisp_Object redisplay_end_trigger;
158
159 /* t means this window's child windows are not (re-)combined. */
160 Lisp_Object combination_limit;
161
162 /* An alist with parameters. */
163 Lisp_Object window_parameters;
164
165 /* No Lisp data may follow below this point without changing
166 mark_object in alloc.c. The member current_matrix must be the
167 first non-Lisp member. */
168
169 /* Glyph matrices. */
170 struct glyph_matrix *current_matrix;
171 struct glyph_matrix *desired_matrix;
172
173 /* The two Lisp_Object fields below are marked in a special way,
174 which is why they're placed after `current_matrix'. */
175 /* Alist of <buffer, window-start, window-point> triples listing
176 buffers previously shown in this window. */
177 Lisp_Object prev_buffers;
178 /* List of buffers re-shown in this window. */
179 Lisp_Object next_buffers;
180
181 /* Number saying how recently window was selected. */
182 int use_time;
183
184 /* Unique number of window assigned when it was created. */
185 int sequence_number;
186
187 /* The upper left corner pixel coordinates of this window, as
188 integers relative to upper left corner of frame = 0, 0. */
189 int pixel_left;
190 int pixel_top;
191
192 /* The upper left corner coordinates of this window,
193 relative to upper left corner of frame = 0, 0. */
194 int left_col;
195 int top_line;
196
197 /* The pixel size of the window. */
198 int pixel_width;
199 int pixel_height;
200
201 /* The size of the window. */
202 int total_cols;
203 int total_lines;
204
205 /* Number of columns display within the window is scrolled to the left. */
206 ptrdiff_t hscroll;
207
208 /* Minimum hscroll for automatic hscrolling. This is the value
209 the user has set, by set-window-hscroll for example. */
210 ptrdiff_t min_hscroll;
211
212 /* Displayed buffer's text modification events counter as of last time
213 display completed. */
214 EMACS_INT last_modified;
215
216 /* Displayed buffer's overlays modification events counter as of last
217 complete update. */
218 EMACS_INT last_overlay_modified;
219
220 /* Value of point at that time. Since this is a position in a buffer,
221 it should be positive. */
222 ptrdiff_t last_point;
223
224 /* Line number and position of a line somewhere above the top of the
225 screen. If this field is zero, it means we don't have a base line. */
226 ptrdiff_t base_line_number;
227
228 /* If this field is zero, it means we don't have a base line.
229 If it is -1, it means don't display the line number as long
230 as the window shows its buffer. */
231 ptrdiff_t base_line_pos;
232
233 /* The column number currently displayed in this window's mode
234 line, or -1 if column numbers are not being displayed. */
235 ptrdiff_t column_number_displayed;
236
237 /* Scaling factor for the glyph_matrix size calculation in this window.
238 Used if window contains many small images or uses proportional fonts,
239 as the normal may yield a matrix which is too small. */
240 int nrows_scale_factor, ncols_scale_factor;
241
242 /* Intended cursor position. This is a position within the
243 glyph matrix. */
244 struct cursor_pos cursor;
245
246 /* Where the cursor actually is. */
247 struct cursor_pos phys_cursor;
248
249 /* Internally used for redisplay purposes. */
250 struct cursor_pos output_cursor;
251
252 /* Vertical cursor position as of last update that completed
253 without pause. This is the position of last_point. */
254 int last_cursor_vpos;
255
256 #ifdef HAVE_WINDOW_SYSTEM
257
258 /* Cursor type of last cursor drawn on the window. */
259 enum text_cursor_kinds phys_cursor_type;
260
261 /* Width of the cursor above. */
262 int phys_cursor_width;
263
264 /* This is handy for undrawing the cursor. */
265 int phys_cursor_ascent, phys_cursor_height;
266
267 #endif /* HAVE_WINDOW_SYSTEM */
268
269 /* Width of left and right fringes, in pixels.
270 A value of -1 means use frame values. */
271 int left_fringe_width;
272 int right_fringe_width;
273
274 /* Requested width of left and right marginal areas in columns. A
275 value of 0 means no margin. The actual values are recorded in
276 the window's glyph matrix, in the left_margin_glyphs and
277 right_margin_glyphs members. */
278 int left_margin_cols;
279 int right_margin_cols;
280
281 /* Pixel width of scroll bars.
282 A value of -1 means use frame values. */
283 int scroll_bar_width;
284
285 /* Effective height of the mode line, or -1 if not known. */
286 int mode_line_height;
287
288 /* Effective height of the header line, or -1 if not known. */
289 int header_line_height;
290
291 /* Z - the buffer position of the last glyph in the current
292 matrix of W. Only valid if window_end_valid is true. */
293 ptrdiff_t window_end_pos;
294
295 /* Glyph matrix row of the last glyph in the current matrix
296 of W. Only valid if window_end_valid is true. */
297 int window_end_vpos;
298
299 /* True if this window is a minibuffer window. */
300 bool_bf mini : 1;
301
302 /* Meaningful only if contents is a window, non-zero if this
303 internal window is used in horizontal combination. */
304 bool_bf horizontal : 1;
305
306 /* True means must regenerate mode line of this window. */
307 bool_bf update_mode_line : 1;
308
309 /* True if the buffer was "modified" when the window
310 was last updated. */
311 bool_bf last_had_star : 1;
312
313 /* True means current value of `start'
314 was the beginning of a line when it was chosen. */
315 bool_bf start_at_line_beg : 1;
316
317 /* True means next redisplay must use the value of start
318 set up for it in advance. Set by scrolling commands. */
319 bool_bf force_start : 1;
320
321 /* True means we have explicitly changed the value of start,
322 but that the next redisplay is not obliged to use the new value.
323 This is used in Fdelete_other_windows to force a call to
324 Vwindow_scroll_functions; also by Frecenter with argument. */
325 bool_bf optional_new_start : 1;
326
327 /* True means the cursor is currently displayed. This can be
328 set to zero by functions overpainting the cursor image. */
329 bool_bf phys_cursor_on_p : 1;
330
331 /* False means cursor is logically on, true means it's off. Used for
332 blinking cursor. */
333 bool_bf cursor_off_p : 1;
334
335 /* Value of cursor_off_p as of the last redisplay. */
336 bool_bf last_cursor_off_p : 1;
337
338 /* True means desired matrix has been build and window must be
339 updated in update_frame. */
340 bool_bf must_be_updated_p : 1;
341
342 /* Flag indicating that this window is not a real one.
343 Currently only used for menu bar windows of frames. */
344 bool_bf pseudo_window_p : 1;
345
346 /* True means fringes are drawn outside display margins.
347 Otherwise draw them between margin areas and text. */
348 bool_bf fringes_outside_margins : 1;
349
350 /* True if window_end_pos and window_end_vpos are truly valid.
351 This is false if nontrivial redisplay is preempted since in that case
352 the frame image that window_end_pos did not get onto the frame. */
353 bool_bf window_end_valid : 1;
354
355 /* True if it needs to be redisplayed. */
356 bool_bf redisplay : 1;
357
358 /* Amount by which lines of this window are scrolled in
359 y-direction (smooth scrolling). */
360 int vscroll;
361
362 /* Z_BYTE - buffer position of the last glyph in the current matrix of W.
363 Should be nonnegative, and only valid if window_end_valid is true. */
364 ptrdiff_t window_end_bytepos;
365 };
366
367 /* Most code should use these functions to set Lisp fields in struct
368 window. */
369 INLINE void
370 wset_frame (struct window *w, Lisp_Object val)
371 {
372 w->frame = val;
373 }
374
375 INLINE void
376 wset_next (struct window *w, Lisp_Object val)
377 {
378 w->next = val;
379 }
380
381 INLINE void
382 wset_prev (struct window *w, Lisp_Object val)
383 {
384 w->prev = val;
385 }
386
387 INLINE void
388 wset_redisplay_end_trigger (struct window *w, Lisp_Object val)
389 {
390 w->redisplay_end_trigger = val;
391 }
392
393 INLINE void
394 wset_new_pixel (struct window *w, Lisp_Object val)
395 {
396 w->new_pixel = val;
397 }
398
399 INLINE void
400 wset_vertical_scroll_bar (struct window *w, Lisp_Object val)
401 {
402 w->vertical_scroll_bar = val;
403 }
404
405 INLINE void
406 wset_prev_buffers (struct window *w, Lisp_Object val)
407 {
408 w->prev_buffers = val;
409 }
410
411 INLINE void
412 wset_next_buffers (struct window *w, Lisp_Object val)
413 {
414 w->next_buffers = val;
415 }
416
417 /* True if W is a minibuffer window. */
418
419 #define MINI_WINDOW_P(W) ((W)->mini)
420
421 /* General window layout:
422
423 LEFT_EDGE_COL RIGHT_EDGE_COL
424 | |
425 | |
426 | BOX_LEFT_EDGE_COL |
427 | | BOX_RIGHT_EDGE_COL |
428 | | | |
429 v v v v
430 <-><-><---><-----------><---><-><->
431 ^ ^ ^ ^ ^ ^ ^
432 | | | | | | |
433 | | | | | | +-- RIGHT_SCROLL_BAR_COLS
434 | | | | | +----- RIGHT_FRINGE_WIDTH
435 | | | | +--------- RIGHT_MARGIN_COLS
436 | | | |
437 | | | +------------------ TEXT_AREA_COLS
438 | | |
439 | | +--------------------------- LEFT_MARGIN_COLS
440 | +------------------------------- LEFT_FRINGE_WIDTH
441 +---------------------------------- LEFT_SCROLL_BAR_COLS
442
443 */
444
445
446 /* A handy macro. */
447
448 /* Non-nil if W is leaf (carry the buffer). */
449
450 #define WINDOW_LEAF_P(W) \
451 (BUFFERP ((W)->contents))
452
453 /* True if W is a member of horizontal combination. */
454
455 #define WINDOW_HORIZONTAL_COMBINATION_P(W) \
456 (WINDOWP ((W)->contents) && (W)->horizontal)
457
458 /* True if W is a member of vertical combination. */
459
460 #define WINDOW_VERTICAL_COMBINATION_P(W) \
461 (WINDOWP ((W)->contents) && !(W)->horizontal)
462
463 #define WINDOW_XFRAME(W) \
464 (XFRAME (WINDOW_FRAME ((W))))
465
466 /* Return the canonical column width of the frame of window W. */
467
468 #define WINDOW_FRAME_COLUMN_WIDTH(W) \
469 (FRAME_COLUMN_WIDTH (WINDOW_XFRAME ((W))))
470
471 /* Return the canonical line height of the frame of window W. */
472
473 #define WINDOW_FRAME_LINE_HEIGHT(W) \
474 (FRAME_LINE_HEIGHT (WINDOW_XFRAME ((W))))
475
476 /* Return the pixel width of window W.
477 This includes scroll bars and fringes. */
478 #define WINDOW_PIXEL_WIDTH(W) (W)->pixel_width
479
480 /* Return the pixel height of window W.
481 This includes header and mode lines, if any. */
482 #define WINDOW_PIXEL_HEIGHT(W) (W)->pixel_height
483
484 /* Return the width of window W in canonical column units.
485 This includes scroll bars and fringes.
486 This value is adjusted such that the sum of the widths of all child
487 windows equals the width of their parent window. */
488 #define WINDOW_TOTAL_COLS(W) (W)->total_cols
489
490 /* Return the height of window W in canonical line units.
491 This includes header and mode lines, if any.
492 This value is adjusted such that the sum of the heights of all child
493 windows equals the height of their parent window. */
494 #define WINDOW_TOTAL_LINES(W) (W)->total_lines
495
496 /* The smallest acceptable dimensions for a window. Anything smaller
497 might crash Emacs. */
498 #define MIN_SAFE_WINDOW_WIDTH (2)
499
500 #define MIN_SAFE_WINDOW_PIXEL_WIDTH(W) \
501 (2 * WINDOW_FRAME_COLUMN_WIDTH (W))
502
503 #define MIN_SAFE_WINDOW_HEIGHT (1)
504
505 #define MIN_SAFE_WINDOW_PIXEL_HEIGHT(W) \
506 (WINDOW_FRAME_LINE_HEIGHT (W))
507
508 /* Width of right divider of window W. */
509 #define WINDOW_RIGHT_DIVIDER_WIDTH(W) \
510 ((WINDOW_RIGHTMOST_P (W) || MINI_WINDOW_P (W)) \
511 ? 0 \
512 : FRAME_RIGHT_DIVIDER_WIDTH (WINDOW_XFRAME (W)))
513
514 /* Return the canonical frame column at which window W starts.
515 This includes a left-hand scroll bar, if any. */
516
517 #define WINDOW_LEFT_EDGE_COL(W) (W)->left_col
518
519 /* Return the canonical frame column before which window W ends.
520 This includes a right-hand scroll bar, if any. */
521
522 #define WINDOW_RIGHT_EDGE_COL(W) \
523 (WINDOW_LEFT_EDGE_COL (W) + WINDOW_TOTAL_COLS (W))
524
525 /* Return the canonical frame line at which window W starts.
526 This includes a header line, if any. */
527
528 #define WINDOW_TOP_EDGE_LINE(W) (W)->top_line
529
530 /* Return the canonical frame line before which window W ends.
531 This includes a mode line, if any. */
532
533 #define WINDOW_BOTTOM_EDGE_LINE(W) \
534 (WINDOW_TOP_EDGE_LINE (W) + WINDOW_TOTAL_LINES (W))
535
536 /* Return the left pixel edge at which window W starts.
537 This includes a left-hand scroll bar, if any. */
538 #define WINDOW_LEFT_PIXEL_EDGE(W) (W)->pixel_left
539
540 /* Return the right pixel edge before which window W ends.
541 This includes a right-hand scroll bar, if any. */
542 #define WINDOW_RIGHT_PIXEL_EDGE(W) \
543 (WINDOW_LEFT_PIXEL_EDGE (W) + WINDOW_PIXEL_WIDTH (W))
544
545 /* Return the top pixel edge at which window W starts.
546 This includes a header line, if any. */
547 #define WINDOW_TOP_PIXEL_EDGE(W) (W)->pixel_top
548
549 /* Return the bottom pixel edge before which window W ends.
550 This includes a mode line, if any. */
551 #define WINDOW_BOTTOM_PIXEL_EDGE(W) \
552 (WINDOW_TOP_PIXEL_EDGE (W) + WINDOW_PIXEL_HEIGHT (W))
553
554 /* Return the frame x-position at which window W starts.
555 This includes a left-hand scroll bar, if any. */
556
557 #define WINDOW_LEFT_EDGE_X(W) \
558 (FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W)) \
559 + WINDOW_LEFT_PIXEL_EDGE (W))
560
561 /* Return the frame x- position before which window W ends.
562 This includes a right-hand scroll bar, if any. */
563
564 #define WINDOW_RIGHT_EDGE_X(W) \
565 (FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W)) \
566 + WINDOW_RIGHT_PIXEL_EDGE (W))
567
568 /* True if W is a menu bar window. */
569
570 #if defined (HAVE_X_WINDOWS) && ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
571 #define WINDOW_MENU_BAR_P(W) \
572 (WINDOWP (WINDOW_XFRAME (W)->menu_bar_window) \
573 && (W) == XWINDOW (WINDOW_XFRAME (W)->menu_bar_window))
574 #else
575 /* No menu bar windows if X toolkit is in use. */
576 #define WINDOW_MENU_BAR_P(W) false
577 #endif
578
579 /* True if W is a tool bar window. */
580 #if defined (HAVE_WINDOW_SYSTEM) && ! defined (USE_GTK) && ! defined (HAVE_NS)
581 #define WINDOW_TOOL_BAR_P(W) \
582 (WINDOWP (WINDOW_XFRAME (W)->tool_bar_window) \
583 && (W) == XWINDOW (WINDOW_XFRAME (W)->tool_bar_window))
584 #else
585 #define WINDOW_TOOL_BAR_P(W) false
586 #endif
587
588 /* Return the frame y-position at which window W starts.
589 This includes a header line, if any.
590
591 PXW: With a menu or tool bar this is not symmetric to the _X values
592 since it _does_ include the internal border width. */
593 #define WINDOW_TOP_EDGE_Y(W) \
594 (((WINDOW_MENU_BAR_P (W) || WINDOW_TOOL_BAR_P (W)) \
595 ? 0 : FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W))) \
596 + WINDOW_TOP_PIXEL_EDGE (W))
597
598 /* Return the frame y-position before which window W ends.
599 This includes a mode line, if any. */
600 #define WINDOW_BOTTOM_EDGE_Y(W) \
601 (((WINDOW_MENU_BAR_P (W) || WINDOW_TOOL_BAR_P (W)) \
602 ? 0 : FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W))) \
603 + WINDOW_BOTTOM_PIXEL_EDGE (W))
604
605 /* True if window W takes up the full width of its frame. */
606 #define WINDOW_FULL_WIDTH_P(W) \
607 (WINDOW_PIXEL_WIDTH (W) \
608 == (WINDOW_PIXEL_WIDTH \
609 (XWINDOW (FRAME_ROOT_WINDOW (WINDOW_XFRAME (W)))))) \
610
611 /* True if window W's has no other windows to its left in its frame. */
612
613 #define WINDOW_LEFTMOST_P(W) \
614 (WINDOW_LEFT_PIXEL_EDGE (W) == 0)
615
616 /* True if window W's has no other windows to its right in its frame. */
617 #define WINDOW_RIGHTMOST_P(W) \
618 (WINDOW_RIGHT_PIXEL_EDGE (W) \
619 == (WINDOW_RIGHT_PIXEL_EDGE \
620 (XWINDOW (FRAME_ROOT_WINDOW (WINDOW_XFRAME (W)))))) \
621
622 /* True if window W's has no other windows below it in its frame
623 (the minibuffer window is not counted in this respect). */
624 #define WINDOW_BOTTOMMOST_P(W) \
625 (WINDOW_BOTTOM_PIXEL_EDGE (W) \
626 == (WINDOW_BOTTOM_PIXEL_EDGE \
627 (XWINDOW (FRAME_ROOT_WINDOW (WINDOW_XFRAME (W)))))) \
628
629 /* Return the frame column at which the text (or left fringe) in
630 window W starts. This is different from the `LEFT_EDGE' because it
631 does not include a left-hand scroll bar if any. */
632
633 #define WINDOW_BOX_LEFT_EDGE_COL(W) \
634 (WINDOW_LEFT_EDGE_COL (W) \
635 + WINDOW_LEFT_SCROLL_BAR_COLS (W))
636
637 /* Return the pixel value where the text (or left fringe) in
638 window W starts. This is different from the `LEFT_EDGE' because it
639 does not include a left-hand scroll bar if any. */
640 #define WINDOW_BOX_LEFT_PIXEL_EDGE(W) \
641 (WINDOW_LEFT_PIXEL_EDGE (W) \
642 + WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (W))
643
644 /* Return the window column before which the text in window W ends.
645 This is different from WINDOW_RIGHT_EDGE_COL because it does not
646 include a scroll bar or window-separating line on the right edge. */
647
648 #define WINDOW_BOX_RIGHT_EDGE_COL(W) \
649 (WINDOW_RIGHT_EDGE_COL (W) \
650 - WINDOW_RIGHT_SCROLL_BAR_COLS (W))
651
652 /* Return the pixel value before which the text in window W ends. This
653 is different from the `RIGHT_EDGE' because it does not include a
654 right-hand scroll bar or window-separating line on the right
655 edge. */
656 #define WINDOW_BOX_RIGHT_PIXEL_EDGE(W) \
657 (WINDOW_RIGHT_PIXEL_EDGE (W) \
658 - WINDOW_RIGHT_DIVIDER_WIDTH (W) \
659 - WINDOW_RIGHT_SCROLL_BAR_AREA_WIDTH (W))
660
661 /* Return the frame position at which the text (or left fringe) in
662 window W starts. This is different from the `LEFT_EDGE' because it
663 does not include a left-hand scroll bar if any. */
664 #define WINDOW_BOX_LEFT_EDGE_X(W) \
665 (FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W)) \
666 + WINDOW_BOX_LEFT_PIXEL_EDGE (W))
667
668 /* Return the window column before which the text in window W ends.
669 This is different from WINDOW_RIGHT_EDGE_COL because it does not
670 include a scroll bar or window-separating line on the right edge. */
671 #define WINDOW_BOX_RIGHT_EDGE_X(W) \
672 (FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W)) \
673 + WINDOW_BOX_RIGHT_PIXEL_EDGE (W))
674
675 /* Widths of marginal areas in columns. */
676 #define WINDOW_LEFT_MARGIN_COLS(W) (W->left_margin_cols)
677
678 #define WINDOW_RIGHT_MARGIN_COLS(W) (W->right_margin_cols)
679
680 #define WINDOW_MARGINS_COLS(W) \
681 (WINDOW_LEFT_MARGIN_COLS (W) \
682 + WINDOW_RIGHT_MARGIN_COLS (W))
683
684 /* Widths of marginal areas in pixels. */
685 #define WINDOW_LEFT_MARGIN_WIDTH(W) \
686 (W->left_margin_cols * WINDOW_FRAME_COLUMN_WIDTH (W))
687
688 #define WINDOW_RIGHT_MARGIN_WIDTH(W) \
689 (W->right_margin_cols * WINDOW_FRAME_COLUMN_WIDTH (W))
690
691 #define WINDOW_MARGINS_WIDTH(W) \
692 (WINDOW_LEFT_MARGIN_WIDTH (W) \
693 + WINDOW_RIGHT_MARGIN_WIDTH (W))
694
695 /* Pixel-widths of fringes. */
696 #define WINDOW_LEFT_FRINGE_WIDTH(W) \
697 (W->left_fringe_width >= 0 \
698 ? W->left_fringe_width \
699 : FRAME_LEFT_FRINGE_WIDTH (WINDOW_XFRAME (W)))
700
701 #define WINDOW_RIGHT_FRINGE_WIDTH(W) \
702 (W->right_fringe_width >= 0 \
703 ? W->right_fringe_width \
704 : FRAME_RIGHT_FRINGE_WIDTH (WINDOW_XFRAME (W)))
705
706 #define WINDOW_FRINGES_WIDTH(W) \
707 (WINDOW_LEFT_FRINGE_WIDTH (W) + WINDOW_RIGHT_FRINGE_WIDTH (W))
708
709 /* Widths of fringes in columns. */
710 #define WINDOW_FRINGE_COLS(W) \
711 ((W->left_fringe_width >= 0 \
712 && W->right_fringe_width >= 0) \
713 ? ((WINDOW_FRINGES_WIDTH (W) \
714 + WINDOW_FRAME_COLUMN_WIDTH (W) - 1) \
715 / WINDOW_FRAME_COLUMN_WIDTH (W)) \
716 : FRAME_FRINGE_COLS (WINDOW_XFRAME (W)))
717
718 #define WINDOW_LEFT_FRINGE_COLS(W) \
719 ((WINDOW_LEFT_FRINGE_WIDTH ((W)) \
720 + WINDOW_FRAME_COLUMN_WIDTH (W) - 1) \
721 / WINDOW_FRAME_COLUMN_WIDTH (W))
722
723 #define WINDOW_RIGHT_FRINGE_COLS(W) \
724 ((WINDOW_RIGHT_FRINGE_WIDTH ((W)) \
725 + WINDOW_FRAME_COLUMN_WIDTH (W) - 1) \
726 / WINDOW_FRAME_COLUMN_WIDTH (W))
727
728 /* Are fringes outside display margins in window W. */
729 #define WINDOW_HAS_FRINGES_OUTSIDE_MARGINS(W) \
730 ((W)->fringes_outside_margins)
731
732 /* Say whether scroll bars are currently enabled for window W,
733 and which side they are on. */
734 #define WINDOW_VERTICAL_SCROLL_BAR_TYPE(w) \
735 (EQ (w->vertical_scroll_bar_type, Qt) \
736 ? FRAME_VERTICAL_SCROLL_BAR_TYPE (WINDOW_XFRAME (w)) \
737 : EQ (w->vertical_scroll_bar_type, Qleft) \
738 ? vertical_scroll_bar_left \
739 : EQ (w->vertical_scroll_bar_type, Qright) \
740 ? vertical_scroll_bar_right \
741 : vertical_scroll_bar_none) \
742
743 #define WINDOW_HAS_VERTICAL_SCROLL_BAR(w) \
744 (EQ (w->vertical_scroll_bar_type, Qt) \
745 ? FRAME_HAS_VERTICAL_SCROLL_BARS (WINDOW_XFRAME (w)) \
746 : !NILP (w->vertical_scroll_bar_type))
747
748 #define WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT(w) \
749 (EQ (w->vertical_scroll_bar_type, Qt) \
750 ? FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (WINDOW_XFRAME (w)) \
751 : EQ (w->vertical_scroll_bar_type, Qleft))
752
753 #define WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT(w) \
754 (EQ (w->vertical_scroll_bar_type, Qt) \
755 ? FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (WINDOW_XFRAME (w)) \
756 : EQ (w->vertical_scroll_bar_type, Qright))
757
758 /* Width that a scroll bar in window W should have, if there is one.
759 Measured in pixels. If scroll bars are turned off, this is still
760 nonzero. */
761 #define WINDOW_CONFIG_SCROLL_BAR_WIDTH(w) \
762 (w->scroll_bar_width >= 0 \
763 ? w->scroll_bar_width \
764 : FRAME_CONFIG_SCROLL_BAR_WIDTH (WINDOW_XFRAME (w)))
765
766 /* Width that a scroll bar in window W should have, if there is one.
767 Measured in columns (characters). If scroll bars are turned off,
768 this is still nonzero. */
769 #define WINDOW_CONFIG_SCROLL_BAR_COLS(w) \
770 (w->scroll_bar_width >= 0 \
771 ? ((w->scroll_bar_width \
772 + WINDOW_FRAME_COLUMN_WIDTH (w) - 1) \
773 / WINDOW_FRAME_COLUMN_WIDTH (w)) \
774 : FRAME_CONFIG_SCROLL_BAR_COLS (WINDOW_XFRAME (w)))
775
776 /* Width of left scroll bar in window W, measured in columns
777 (characters). If scroll bars are on the right in this frame, or
778 there are no scroll bars, value is 0. */
779 #define WINDOW_LEFT_SCROLL_BAR_COLS(w) \
780 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w) \
781 ? (WINDOW_CONFIG_SCROLL_BAR_COLS (w)) \
782 : 0)
783
784 /* Width of right scroll bar in window W, measured in columns
785 (characters). If scroll bars are on the left in this frame, or there
786 are no scroll bars, value is 0. */
787 #define WINDOW_RIGHT_SCROLL_BAR_COLS(w) \
788 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w) \
789 ? WINDOW_CONFIG_SCROLL_BAR_COLS (w) \
790 : 0)
791
792 /* Width of a scroll bar in window W, measured in columns. */
793 #define WINDOW_SCROLL_BAR_COLS(w) \
794 (WINDOW_HAS_VERTICAL_SCROLL_BAR (w) \
795 ? WINDOW_CONFIG_SCROLL_BAR_COLS (w) \
796 : 0)
797
798 /* Width of a left scroll bar area in window W, measured in pixels. */
799 #define WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH(w) \
800 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w) \
801 ? WINDOW_CONFIG_SCROLL_BAR_WIDTH (w) \
802 : 0)
803
804 /* Width of a right scroll bar area in window W, measured in pixels. */
805 #define WINDOW_RIGHT_SCROLL_BAR_AREA_WIDTH(w) \
806 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w) \
807 ? WINDOW_CONFIG_SCROLL_BAR_WIDTH (w) \
808 : 0)
809
810 /* Width of scroll bar area in window W, measured in pixels. */
811 #define WINDOW_SCROLL_BAR_AREA_WIDTH(w) \
812 (WINDOW_HAS_VERTICAL_SCROLL_BAR (w) \
813 ? WINDOW_CONFIG_SCROLL_BAR_WIDTH (w) \
814 : 0)
815
816 /* Return the frame position where the scroll bar of window W starts. */
817 #define WINDOW_SCROLL_BAR_AREA_X(W) \
818 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (W) \
819 ? WINDOW_BOX_RIGHT_EDGE_X (W) \
820 : WINDOW_LEFT_EDGE_X (W))
821
822 /* Width of bottom divider of window W. */
823 #define WINDOW_BOTTOM_DIVIDER_WIDTH(W) \
824 (((WINDOW_BOTTOMMOST_P (W) \
825 && NILP ((XWINDOW (FRAME_ROOT_WINDOW \
826 (WINDOW_XFRAME (W))))->next)) \
827 || EQ ((W)->prev, FRAME_ROOT_WINDOW (WINDOW_XFRAME (W))) \
828 || (W)->pseudo_window_p) \
829 ? 0 \
830 : FRAME_BOTTOM_DIVIDER_WIDTH (WINDOW_XFRAME (W)))
831
832 /* Height in pixels, and in lines, of the mode line.
833 May be zero if W doesn't have a mode line. */
834 #define WINDOW_MODE_LINE_HEIGHT(W) \
835 (WINDOW_WANTS_MODELINE_P ((W)) \
836 ? CURRENT_MODE_LINE_HEIGHT (W) \
837 : 0)
838
839 #define WINDOW_MODE_LINE_LINES(W) \
840 (!! WINDOW_WANTS_MODELINE_P ((W)))
841
842 /* Height in pixels, and in lines, of the header line.
843 Zero if W doesn't have a header line. */
844 #define WINDOW_HEADER_LINE_HEIGHT(W) \
845 (WINDOW_WANTS_HEADER_LINE_P ((W)) \
846 ? CURRENT_HEADER_LINE_HEIGHT (W) \
847 : 0)
848
849 #define WINDOW_HEADER_LINE_LINES(W) \
850 (!! WINDOW_WANTS_HEADER_LINE_P ((W)))
851
852 /* Pixel height of window W without mode line and bottom divider. */
853 #define WINDOW_BOX_HEIGHT_NO_MODE_LINE(W) \
854 (WINDOW_PIXEL_HEIGHT ((W)) \
855 - WINDOW_BOTTOM_DIVIDER_WIDTH (W) \
856 - WINDOW_MODE_LINE_HEIGHT ((W)))
857
858 /* Pixel height of window W without mode and header line and bottom
859 divider. */
860 #define WINDOW_BOX_TEXT_HEIGHT(W) \
861 (WINDOW_PIXEL_HEIGHT ((W)) \
862 - WINDOW_BOTTOM_DIVIDER_WIDTH (W) \
863 - WINDOW_MODE_LINE_HEIGHT ((W)) \
864 - WINDOW_HEADER_LINE_HEIGHT ((W)))
865
866 /* Convert window W relative pixel X to frame pixel coordinates. */
867 #define WINDOW_TO_FRAME_PIXEL_X(W, X) \
868 ((X) + WINDOW_BOX_LEFT_EDGE_X ((W)))
869
870 /* Convert window W relative pixel Y to frame pixel coordinates. */
871 #define WINDOW_TO_FRAME_PIXEL_Y(W, Y) \
872 ((Y) + WINDOW_TOP_EDGE_Y ((W)))
873
874 /* Convert frame relative pixel X to window relative pixel X. */
875 #define FRAME_TO_WINDOW_PIXEL_X(W, X) \
876 ((X) - WINDOW_BOX_LEFT_EDGE_X ((W)))
877
878 /* Convert frame relative pixel Y to window relative pixel Y. */
879 #define FRAME_TO_WINDOW_PIXEL_Y(W, Y) \
880 ((Y) - WINDOW_TOP_EDGE_Y ((W)))
881
882 /* Convert a text area relative x-position in window W to frame X
883 pixel coordinates. */
884 #define WINDOW_TEXT_TO_FRAME_PIXEL_X(W, X) \
885 (window_box_left ((W), TEXT_AREA) + (X))
886
887 /* True if the background of the window W's fringe that is adjacent to
888 a scroll bar is extended to the gap between the fringe and the bar. */
889
890 #define WINDOW_FRINGE_EXTENDED_P(w) \
891 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w) \
892 ? (WINDOW_LEFTMOST_P (w) \
893 && WINDOW_LEFT_FRINGE_WIDTH (w) \
894 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w) \
895 || WINDOW_LEFT_MARGIN_COLS (w) == 0)) \
896 : (WINDOW_RIGHTMOST_P (w) \
897 && WINDOW_RIGHT_FRINGE_WIDTH (w) \
898 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w) \
899 || WINDOW_RIGHT_MARGIN_COLS (w) == 0)))
900
901 /* This is the window in which the terminal's cursor should be left when
902 nothing is being done with it. This must always be a leaf window, and its
903 buffer is selected by the top level editing loop at the end of each command.
904
905 This value is always the same as FRAME_SELECTED_WINDOW (selected_frame). */
906
907 extern Lisp_Object selected_window;
908
909 /* This is a time stamp for window selection, so we can find the least
910 recently used window. Its only users are Fselect_window,
911 init_window_once, and make_frame. */
912
913 extern int window_select_count;
914
915 /* The minibuffer window of the selected frame.
916 Note that you cannot test for minibufferness of an arbitrary window
917 by comparing against this; use the MINI_WINDOW_P macro instead. */
918
919 extern Lisp_Object minibuf_window;
920
921 /* Non-nil means it is the window whose mode line should be
922 shown as the selected window when the minibuffer is selected. */
923
924 extern Lisp_Object minibuf_selected_window;
925
926 extern Lisp_Object make_window (void);
927 extern Lisp_Object window_from_coordinates (struct frame *, int, int,
928 enum window_part *, bool);
929 extern void resize_frame_windows (struct frame *, int, bool, bool);
930 extern void restore_window_configuration (Lisp_Object);
931 extern void delete_all_child_windows (Lisp_Object);
932 extern void grow_mini_window (struct window *, int, bool);
933 extern void shrink_mini_window (struct window *, bool);
934 extern int window_relative_x_coord (struct window *, enum window_part, int);
935
936 void run_window_configuration_change_hook (struct frame *f);
937
938 /* Make WINDOW display BUFFER. RUN_HOOKS_P non-zero means it's allowed
939 to run hooks. See make_frame for a case where it's not allowed. */
940
941 void set_window_buffer (Lisp_Object window, Lisp_Object buffer,
942 bool run_hooks_p, bool keep_margins_p);
943
944 /* This is the window where the echo area message was displayed. It
945 is always a minibuffer window, but it may not be the same window
946 currently active as a minibuffer. */
947
948 extern Lisp_Object echo_area_window;
949
950 /* Depth in recursive edits. */
951
952 extern EMACS_INT command_loop_level;
953
954 /* Depth in minibuffer invocations. */
955
956 extern EMACS_INT minibuf_level;
957
958 /* Non-zero if we should redraw the mode lines on the next redisplay.
959 Usually set to a unique small integer so we can track the main causes of
960 full redisplays in `redisplay--mode-lines-cause'. */
961
962 extern int update_mode_lines;
963
964 /* Nonzero if window sizes or contents have changed since last
965 redisplay that finished. Usually set to a unique small integer so
966 we can track the main causes of full redisplays in
967 `redisplay--all-windows-cause'. */
968
969 extern int windows_or_buffers_changed;
970
971 /* The main redisplay routine usually only redisplays the selected-window,
972 so when something's changed elsewhere, we call one of the functions below
973 to indicate which other windows might also need to be redisplayed. */
974
975 extern void wset_redisplay (struct window *w);
976 extern void fset_redisplay (struct frame *f);
977 extern void bset_redisplay (struct buffer *b);
978 extern void bset_update_mode_line (struct buffer *b);
979 /* Call this to tell redisplay to look for other windows than selected-window
980 that need to be redisplayed. Calling one of the *set_redisplay functions
981 above already does it, so it's only needed in unusual cases. */
982 extern void redisplay_other_windows (void);
983
984 /* If *ROWS or *COLS are too small a size for FRAME, set them to the
985 minimum allowable size. */
986
987 extern void check_frame_size (struct frame *frame, int *width, int *height, bool pixelwise);
988
989 /* Return a pointer to the glyph W's physical cursor is on. Value is
990 null if W's current matrix is invalid, so that no meaningful glyph
991 can be returned. */
992
993 struct glyph *get_phys_cursor_glyph (struct window *w);
994
995 /* Value is non-zero if WINDOW is a valid window. */
996 #define WINDOW_VALID_P(WINDOW) \
997 (WINDOWP (WINDOW) && !NILP (XWINDOW (WINDOW)->contents)) \
998
999 /* A window of any sort, leaf or interior, is "valid" if its
1000 contents slot is non-nil. */
1001 #define CHECK_VALID_WINDOW(WINDOW) \
1002 CHECK_TYPE (WINDOW_VALID_P (WINDOW), Qwindow_valid_p, WINDOW)
1003
1004 /* Value is non-zero if WINDOW is a live window. */
1005 #define WINDOW_LIVE_P(WINDOW) \
1006 (WINDOWP (WINDOW) && BUFFERP (XWINDOW (WINDOW)->contents))
1007
1008 /* A window is "live" if and only if it shows a buffer. */
1009 #define CHECK_LIVE_WINDOW(WINDOW) \
1010 CHECK_TYPE (WINDOW_LIVE_P (WINDOW), Qwindow_live_p, WINDOW)
1011
1012 /* These used to be in lisp.h. */
1013
1014 extern Lisp_Object Qwindow_live_p;
1015 extern Lisp_Object Vwindow_list;
1016
1017 extern Lisp_Object window_list (void);
1018 extern struct window *decode_live_window (Lisp_Object);
1019 extern struct window *decode_any_window (Lisp_Object);
1020 extern bool compare_window_configurations (Lisp_Object, Lisp_Object, bool);
1021 extern void mark_window_cursors_off (struct window *);
1022 extern int window_internal_height (struct window *);
1023 extern int window_body_width (struct window *w, bool);
1024 extern void temp_output_buffer_show (Lisp_Object);
1025 extern void replace_buffer_in_windows (Lisp_Object);
1026 extern void replace_buffer_in_windows_safely (Lisp_Object);
1027 /* This looks like a setter, but it is a bit special. */
1028 extern void wset_buffer (struct window *, Lisp_Object);
1029 extern bool window_outdated (struct window *);
1030 extern void init_window_once (void);
1031 extern void init_window (void);
1032 extern void syms_of_window (void);
1033 extern void keys_of_window (void);
1034
1035 /* Move cursor to row/column position VPOS/HPOS, pixel coordinates
1036 Y/X. HPOS/VPOS are window-relative row and column numbers and X/Y
1037 are window-relative pixel positions. This is always done during
1038 window update, so the position is the future output cursor position
1039 for currently updated window W. */
1040
1041 INLINE void
1042 output_cursor_to (struct window *w, int vpos, int hpos, int y, int x)
1043 {
1044 eassert (w);
1045 w->output_cursor.hpos = hpos;
1046 w->output_cursor.vpos = vpos;
1047 w->output_cursor.x = x;
1048 w->output_cursor.y = y;
1049 }
1050
1051 INLINE_HEADER_END
1052
1053 #endif /* not WINDOW_H_INCLUDED */