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