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