]> code.delx.au - gnu-emacs/blob - src/window.h
Merge from emacs-24; up to 2012-04-30T11:57:47Z!sdl.web@gmail.com
[gnu-emacs] / src / window.h
1 /* Window definitions for GNU Emacs.
2 Copyright (C) 1985-1986, 1993, 1995, 1997-2012
3 Free Software 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 extern Lisp_Object Qleft, Qright;
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 non-nil buffer field, and also
42 has markers in its start and pointm fields. Non-leaf windows
43 have nil in these fields.
44
45 Non-leaf windows are either vertical or horizontal combinations.
46
47 A vertical combination window has children that are arranged on the frame
48 one above the next. Its vchild field points to the uppermost child.
49 The parent field of each of the children points to the vertical
50 combination window. The next field of each child points to the
51 child below it, or is nil for the lowest child. The prev field
52 of each child points to the child above it, or is nil for the
53 highest child.
54
55 A horizontal combination window has children that are side by side.
56 Its hchild field points to the leftmost child. In each child
57 the next field points to the child to the right and the prev field
58 points to the child to the left.
59
60 The children of a vertical combination window may be leaf windows
61 or horizontal combination windows. The children of a horizontal
62 combination window may be leaf windows or vertical combination windows.
63
64 At the top of the tree are two windows which have nil as parent.
65 The second of these is minibuf_window. The first one manages all
66 the frame area that is not minibuffer, and is called the root window.
67 Different windows can be the root at different times;
68 initially the root window is a leaf window, but if more windows
69 are created then that leaf window ceases to be root and a newly
70 made combination window becomes root instead.
71
72 In any case, on screens which have an ordinary window and a
73 minibuffer, prev of the minibuf window is the root window and next of
74 the root window is the minibuf window. On minibufferless screens or
75 minibuffer-only screens, the root window and the minibuffer window are
76 one and the same, so its prev and next members are nil.
77
78 A dead window has its buffer, hchild, and vchild windows all nil. */
79
80 struct cursor_pos
81 {
82 /* Pixel position. These are always window relative. */
83 int x, y;
84
85 /* Glyph matrix position. */
86 int hpos, vpos;
87 };
88
89 struct window
90 {
91 /* This is for Lisp; the terminal code does not refer to it. */
92 struct vectorlike_header header;
93
94 /* The frame this window is on. */
95 Lisp_Object frame;
96
97 /* Following (to right or down) and preceding (to left or up) child
98 at same level of tree. */
99 Lisp_Object next, prev;
100
101 /* First child of this window: vchild is used if this is a vertical
102 combination, hchild if this is a horizontal combination. Of the
103 fields vchild, hchild and buffer, one and only one is non-nil
104 unless the window is dead. */
105 Lisp_Object hchild, vchild;
106
107 /* The window this one is a child of. */
108 Lisp_Object parent;
109
110 /* The upper left corner coordinates of this window, as integers
111 relative to upper left corner of frame = 0, 0. */
112 Lisp_Object left_col;
113 Lisp_Object top_line;
114
115 /* The size of the window. */
116 Lisp_Object total_lines;
117 Lisp_Object total_cols;
118
119 /* The normal size of the window. */
120 Lisp_Object normal_lines;
121 Lisp_Object normal_cols;
122
123 /* New sizes of the window. */
124 Lisp_Object new_total;
125 Lisp_Object new_normal;
126
127 /* The buffer displayed in this window. Of the fields vchild,
128 hchild and buffer, one and only one is non-nil unless the window
129 is dead. */
130 Lisp_Object buffer;
131
132 /* A marker pointing to where in the text to start displaying.
133 BIDI Note: This is the _logical-order_ start, i.e. the smallest
134 buffer position visible in the window, not necessarily the
135 character displayed in the top left corner of the window. */
136 Lisp_Object start;
137
138 /* A marker pointing to where in the text point is in this window,
139 used only when the window is not selected.
140 This exists so that when multiple windows show one buffer
141 each one can have its own value of point. */
142 Lisp_Object pointm;
143
144 /* No permanent meaning; used by save-window-excursion's
145 bookkeeping. */
146 Lisp_Object temslot;
147
148 /* This window's vertical scroll bar. This field is only for use
149 by the window-system-dependent code which implements the
150 scroll bars; it can store anything it likes here. If this
151 window is newly created and we haven't displayed a scroll bar in
152 it yet, or if the frame doesn't have any scroll bars, this is nil. */
153 Lisp_Object vertical_scroll_bar;
154
155 /* Width of left and right marginal areas. A value of nil means
156 no margin. */
157 Lisp_Object left_margin_cols, right_margin_cols;
158
159 /* Width of left and right fringes.
160 A value of nil or t means use frame values. */
161 Lisp_Object left_fringe_width, right_fringe_width;
162 /* Non-nil means fringes are drawn outside display margins;
163 othersize draw them between margin areas and text. */
164 Lisp_Object fringes_outside_margins;
165
166 /* Pixel width of scroll bars.
167 A value of nil or t means use frame values. */
168 Lisp_Object scroll_bar_width;
169
170 /* Type of vertical scroll bar. A value of nil means
171 no scroll bar. A value of t means use frame value. */
172 Lisp_Object vertical_scroll_bar_type;
173
174 /* Z - the buffer position of the last glyph in the current matrix
175 of W. Only valid if WINDOW_END_VALID is not nil. */
176 Lisp_Object window_end_pos;
177 /* Glyph matrix row of the last glyph in the current matrix
178 of W. Only valid if WINDOW_END_VALID is not nil. */
179 Lisp_Object window_end_vpos;
180 /* t if window_end_pos is truly valid.
181 This is nil if nontrivial redisplay is preempted
182 since in that case the frame image that window_end_pos
183 did not get onto the frame. */
184 Lisp_Object window_end_valid;
185
186 /* Display-table to use for displaying chars in this window.
187 Nil means use the buffer's own display-table. */
188 Lisp_Object display_table;
189
190 /* Non-nil usually means window is marked as dedicated.
191 Note Lisp code may set this to something beyond Qnil
192 and Qt, so bitfield can't be used here. */
193 Lisp_Object dedicated;
194
195 /* Line number and position of a line somewhere above the top of the
196 screen. If this field is nil, it means we don't have a base
197 line. */
198 Lisp_Object base_line_number;
199 /* If this field is nil, it means we don't have a base line.
200 If it is a buffer, it means don't display the line number
201 as long as the window shows that buffer. */
202 Lisp_Object base_line_pos;
203
204 /* If we have highlighted the region (or any part of it),
205 this is the mark position that we used, as an integer. */
206 Lisp_Object region_showing;
207
208 /* The column number currently displayed in this window's mode line,
209 or nil if column numbers are not being displayed. */
210 Lisp_Object column_number_displayed;
211
212 /* If redisplay in this window goes beyond this buffer position,
213 must run the redisplay-end-trigger-hook. */
214 Lisp_Object redisplay_end_trigger;
215
216 /* t means this window's child windows are not (re-)combined. */
217 Lisp_Object combination_limit;
218
219 /* Alist of <buffer, window-start, window-point> triples listing
220 buffers previously shown in this window. */
221 Lisp_Object prev_buffers;
222
223 /* List of buffers re-shown in this window. */
224 Lisp_Object next_buffers;
225
226 /* An alist with parameters. */
227 Lisp_Object window_parameters;
228
229 /* No Lisp data may follow below this point without changing
230 mark_object in alloc.c. The member current_matrix must be the
231 first non-Lisp member. */
232
233 /* Glyph matrices. */
234 struct glyph_matrix *current_matrix;
235 struct glyph_matrix *desired_matrix;
236
237 /* Number saying how recently window was selected. */
238 int use_time;
239
240 /* Unique number of window assigned when it was created. */
241 int sequence_number;
242
243 /* Number of columns display within the window is scrolled to the left. */
244 ptrdiff_t hscroll;
245
246 /* Minimum hscroll for automatic hscrolling. This is the value
247 the user has set, by set-window-hscroll for example. */
248 ptrdiff_t min_hscroll;
249
250 /* Displayed buffer's text modification events counter as of last time
251 display completed. */
252 EMACS_INT last_modified;
253
254 /* Displayed buffer's overlays modification events counter as of last
255 complete update. */
256 EMACS_INT last_overlay_modified;
257
258 /* Value of point at that time. Since this is a position in a buffer,
259 it should be positive. */
260 ptrdiff_t last_point;
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 /* Cursor position as of last update that completed without
268 pause. This is the position of last_point. */
269 struct cursor_pos last_cursor;
270
271 /* Intended cursor position. This is a position within the
272 glyph matrix. */
273 struct cursor_pos cursor;
274
275 /* Where the cursor actually is. */
276 struct cursor_pos phys_cursor;
277
278 /* Cursor type and width of last cursor drawn on the window.
279 Used for X and w32 frames; -1 initially. */
280 int phys_cursor_type, phys_cursor_width;
281
282 /* This is handy for undrawing the cursor. */
283 int phys_cursor_ascent, phys_cursor_height;
284
285 /* Non-zero if this window is a minibuffer window. */
286 unsigned mini : 1;
287
288 /* Non-zero means must regenerate mode line of this window */
289 unsigned update_mode_line : 1;
290
291 /* Non-nil if the buffer was "modified" when the window
292 was last updated. */
293 unsigned last_had_star : 1;
294
295 /* Non-zero means current value of `start'
296 was the beginning of a line when it was chosen. */
297 unsigned start_at_line_beg : 1;
298
299 /* Non-zero means next redisplay must use the value of start
300 set up for it in advance. Set by scrolling commands. */
301 unsigned force_start : 1;
302
303 /* Non-zero means we have explicitly changed the value of start,
304 but that the next redisplay is not obliged to use the new value.
305 This is used in Fdelete_other_windows to force a call to
306 Vwindow_scroll_functions; also by Frecenter with argument. */
307 unsigned optional_new_start : 1;
308
309 /* Non-zero means the cursor is currently displayed. This can be
310 set to zero by functions overpainting the cursor image. */
311 unsigned phys_cursor_on_p : 1;
312
313 /* 0 means cursor is logically on, 1 means it's off. Used for
314 blinking cursor. */
315 unsigned cursor_off_p : 1;
316
317 /* Value of cursor_off_p as of the last redisplay. */
318 unsigned last_cursor_off_p : 1;
319
320 /* 1 means desired matrix has been build and window must be
321 updated in update_frame. */
322 unsigned must_be_updated_p : 1;
323
324 /* Flag indicating that this window is not a real one.
325 Currently only used for menu bar windows of frames. */
326 unsigned pseudo_window_p : 1;
327
328 /* 1 means the window start of this window is frozen and may not
329 be changed during redisplay. If point is not in the window,
330 accept that. */
331 unsigned frozen_window_start_p : 1;
332
333 /* Amount by which lines of this window are scrolled in
334 y-direction (smooth scrolling). */
335 int vscroll;
336
337 /* Z_BYTE - the buffer position of the last glyph in the current matrix
338 of W. Only valid if WINDOW_END_VALID is not nil. */
339 int window_end_bytepos;
340 };
341
342 /* 1 if W is a minibuffer window. */
343
344 #define MINI_WINDOW_P(W) ((W)->mini)
345
346 /* General window layout:
347
348 LEFT_EDGE_COL RIGHT_EDGE_COL
349 | |
350 | |
351 | BOX_LEFT_EDGE_COL |
352 | | BOX_RIGHT_EDGE_COL |
353 | | | |
354 v v v v
355 <-><-><---><-----------><---><-><->
356 ^ ^ ^ ^ ^ ^ ^
357 | | | | | | |
358 | | | | | | +-- RIGHT_SCROLL_BAR_COLS
359 | | | | | +----- RIGHT_FRINGE_WIDTH
360 | | | | +--------- RIGHT_MARGIN_COLS
361 | | | |
362 | | | +------------------ TEXT_AREA_COLS
363 | | |
364 | | +--------------------------- LEFT_MARGIN_COLS
365 | +------------------------------- LEFT_FRINGE_WIDTH
366 +---------------------------------- LEFT_SCROLL_BAR_COLS
367
368 */
369
370
371 /* A handy macro. */
372
373 #define WINDOW_XFRAME(W) \
374 (XFRAME (WINDOW_FRAME ((W))))
375
376 /* Return the canonical column width of the frame of window W. */
377
378 #define WINDOW_FRAME_COLUMN_WIDTH(W) \
379 (FRAME_COLUMN_WIDTH (WINDOW_XFRAME ((W))))
380
381 /* Return the canonical column width of the frame of window W. */
382
383 #define WINDOW_FRAME_LINE_HEIGHT(W) \
384 (FRAME_LINE_HEIGHT (WINDOW_XFRAME ((W))))
385
386 /* Return the width of window W in canonical column units.
387 This includes scroll bars and fringes. */
388
389 #define WINDOW_TOTAL_COLS(W) \
390 (XFASTINT ((W)->total_cols))
391
392 /* Return the height of window W in canonical line units.
393 This includes header and mode lines, if any. */
394
395 #define WINDOW_TOTAL_LINES(W) \
396 (XFASTINT ((W)->total_lines))
397
398 /* Return the total pixel width of window W. */
399
400 #define WINDOW_TOTAL_WIDTH(W) \
401 (WINDOW_TOTAL_COLS (W) * WINDOW_FRAME_COLUMN_WIDTH (W))
402
403 /* Return the total pixel height of window W. */
404
405 #define WINDOW_TOTAL_HEIGHT(W) \
406 (WINDOW_TOTAL_LINES (W) * WINDOW_FRAME_LINE_HEIGHT (W))
407
408 /* For HORFLAG non-zero the total number of columns of window W. Otherwise
409 the total number of lines of W. */
410
411 #define WINDOW_TOTAL_SIZE(w, horflag) \
412 (horflag ? WINDOW_TOTAL_COLS (w) : WINDOW_TOTAL_LINES (w))
413
414 /* The smallest acceptable dimensions for a window. Anything smaller
415 might crash Emacs. */
416
417 #define MIN_SAFE_WINDOW_WIDTH (2)
418 #define MIN_SAFE_WINDOW_HEIGHT (1)
419
420 /* Return the canonical frame column at which window W starts.
421 This includes a left-hand scroll bar, if any. */
422
423 #define WINDOW_LEFT_EDGE_COL(W) \
424 (XFASTINT ((W)->left_col))
425
426 /* Return the canonical frame column before which window W ends.
427 This includes a right-hand scroll bar, if any. */
428
429 #define WINDOW_RIGHT_EDGE_COL(W) \
430 (WINDOW_LEFT_EDGE_COL (W) + WINDOW_TOTAL_COLS (W))
431
432 /* Return the canonical frame line at which window W starts.
433 This includes a header line, if any. */
434
435 #define WINDOW_TOP_EDGE_LINE(W) \
436 (XFASTINT ((W)->top_line))
437
438 /* Return the canonical frame line before which window W ends.
439 This includes a mode line, if any. */
440
441 #define WINDOW_BOTTOM_EDGE_LINE(W) \
442 (WINDOW_TOP_EDGE_LINE (W) + WINDOW_TOTAL_LINES (W))
443
444
445 /* Return the frame x-position at which window W starts.
446 This includes a left-hand scroll bar, if any. */
447
448 #define WINDOW_LEFT_EDGE_X(W) \
449 (FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W)) \
450 + WINDOW_LEFT_EDGE_COL (W) * WINDOW_FRAME_COLUMN_WIDTH (W))
451
452 /* Return the frame x- position before which window W ends.
453 This includes a right-hand scroll bar, if any. */
454
455 #define WINDOW_RIGHT_EDGE_X(W) \
456 (FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W)) \
457 + WINDOW_RIGHT_EDGE_COL (W) * WINDOW_FRAME_COLUMN_WIDTH (W))
458
459 /* 1 if W is a menu bar window. */
460
461 #define WINDOW_MENU_BAR_P(W) \
462 (WINDOWP (WINDOW_XFRAME (W)->menu_bar_window) \
463 && (W) == XWINDOW (WINDOW_XFRAME (W)->menu_bar_window))
464
465 /* 1 if W is a tool bar window. */
466
467 #define WINDOW_TOOL_BAR_P(W) \
468 (WINDOWP (WINDOW_XFRAME (W)->tool_bar_window) \
469 && (W) == XWINDOW (WINDOW_XFRAME (W)->tool_bar_window))
470
471 /* Return the frame y-position at which window W starts.
472 This includes a header line, if any. */
473
474 #define WINDOW_TOP_EDGE_Y(W) \
475 (((WINDOW_MENU_BAR_P (W) || WINDOW_TOOL_BAR_P (W)) \
476 ? 0 : FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W))) \
477 + WINDOW_TOP_EDGE_LINE (W) * WINDOW_FRAME_LINE_HEIGHT (W))
478
479 /* Return the frame y-position before which window W ends.
480 This includes a mode line, if any. */
481
482 #define WINDOW_BOTTOM_EDGE_Y(W) \
483 (((WINDOW_MENU_BAR_P (W) || WINDOW_TOOL_BAR_P (W)) \
484 ? 0 : FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W))) \
485 + WINDOW_BOTTOM_EDGE_LINE (W) * WINDOW_FRAME_LINE_HEIGHT (W))
486
487
488 /* 1 if window W takes up the full width of its frame. */
489
490 #define WINDOW_FULL_WIDTH_P(W) \
491 (WINDOW_TOTAL_COLS (W) == FRAME_TOTAL_COLS (WINDOW_XFRAME (W)))
492
493 /* 1 if window W's has no other windows to its left in its frame. */
494
495 #define WINDOW_LEFTMOST_P(W) \
496 (WINDOW_LEFT_EDGE_COL (W) == 0)
497
498 /* 1 if window W's has no other windows to its right in its frame. */
499
500 #define WINDOW_RIGHTMOST_P(W) \
501 (WINDOW_RIGHT_EDGE_COL (W) == FRAME_TOTAL_COLS (WINDOW_XFRAME (W)))
502
503
504 /* Return the frame column at which the text (or left fringe) in
505 window W starts. This is different from the `LEFT_EDGE' because it
506 does not include a left-hand scroll bar if any. */
507
508 #define WINDOW_BOX_LEFT_EDGE_COL(W) \
509 (WINDOW_LEFT_EDGE_COL (W) \
510 + WINDOW_LEFT_SCROLL_BAR_COLS (W))
511
512 /* Return the window column before which the text in window W ends.
513 This is different from WINDOW_RIGHT_EDGE_COL because it does not
514 include a scroll bar or window-separating line on the right edge. */
515
516 #define WINDOW_BOX_RIGHT_EDGE_COL(W) \
517 (WINDOW_RIGHT_EDGE_COL (W) \
518 - WINDOW_RIGHT_SCROLL_BAR_COLS (W))
519
520
521 /* Return the frame position at which the text (or left fringe) in
522 window W starts. This is different from the `LEFT_EDGE' because it
523 does not include a left-hand scroll bar if any. */
524
525 #define WINDOW_BOX_LEFT_EDGE_X(W) \
526 (FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W)) \
527 + WINDOW_BOX_LEFT_EDGE_COL (W) * WINDOW_FRAME_COLUMN_WIDTH (W))
528
529 /* Return the window column before which the text in window W ends.
530 This is different from WINDOW_RIGHT_EDGE_COL because it does not
531 include a scroll bar or window-separating line on the right edge. */
532
533 #define WINDOW_BOX_RIGHT_EDGE_X(W) \
534 (FRAME_INTERNAL_BORDER_WIDTH (WINDOW_XFRAME (W)) \
535 + WINDOW_BOX_RIGHT_EDGE_COL (W) * WINDOW_FRAME_COLUMN_WIDTH (W))
536
537
538 /* Width of left margin area in columns. */
539
540 #define WINDOW_LEFT_MARGIN_COLS(W) \
541 (NILP ((W)->left_margin_cols) \
542 ? 0 \
543 : XINT ((W)->left_margin_cols))
544
545 /* Width of right marginal area in columns. */
546
547 #define WINDOW_RIGHT_MARGIN_COLS(W) \
548 (NILP ((W)->right_margin_cols) \
549 ? 0 \
550 : XINT ((W)->right_margin_cols))
551
552 /* Width of left margin area in pixels. */
553
554 #define WINDOW_LEFT_MARGIN_WIDTH(W) \
555 (NILP ((W)->left_margin_cols) \
556 ? 0 \
557 : (XINT ((W)->left_margin_cols) \
558 * WINDOW_FRAME_COLUMN_WIDTH (W)))
559
560 /* Width of right marginal area in pixels. */
561
562 #define WINDOW_RIGHT_MARGIN_WIDTH(W) \
563 (NILP ((W)->right_margin_cols) \
564 ? 0 \
565 : (XINT ((W)->right_margin_cols) \
566 * WINDOW_FRAME_COLUMN_WIDTH (W)))
567
568 /* Total width of fringes reserved for drawing truncation bitmaps,
569 continuation bitmaps and alike. The width is in canonical char
570 units of the frame. This must currently be the case because window
571 sizes aren't pixel values. If it weren't the case, we wouldn't be
572 able to split windows horizontally nicely. */
573
574 #define WINDOW_FRINGE_COLS(W) \
575 ((INTEGERP ((W)->left_fringe_width) \
576 || INTEGERP ((W)->right_fringe_width)) \
577 ? ((WINDOW_LEFT_FRINGE_WIDTH (W) \
578 + WINDOW_RIGHT_FRINGE_WIDTH (W) \
579 + WINDOW_FRAME_COLUMN_WIDTH (W) - 1) \
580 / WINDOW_FRAME_COLUMN_WIDTH (W)) \
581 : FRAME_FRINGE_COLS (WINDOW_XFRAME (W)))
582
583 /* Column-width of the left and right fringe. */
584
585 #define WINDOW_LEFT_FRINGE_COLS(W) \
586 ((WINDOW_LEFT_FRINGE_WIDTH ((W)) \
587 + WINDOW_FRAME_COLUMN_WIDTH (W) - 1) \
588 / WINDOW_FRAME_COLUMN_WIDTH (W))
589
590 #define WINDOW_RIGHT_FRINGE_COLS(W) \
591 ((WINDOW_RIGHT_FRINGE_WIDTH ((W)) \
592 + WINDOW_FRAME_COLUMN_WIDTH (W) - 1) \
593 / WINDOW_FRAME_COLUMN_WIDTH (W))
594
595 /* Pixel-width of the left and right fringe. */
596
597 #define WINDOW_LEFT_FRINGE_WIDTH(W) \
598 (INTEGERP ((W)->left_fringe_width) \
599 ? XFASTINT ((W)->left_fringe_width) \
600 : FRAME_LEFT_FRINGE_WIDTH (WINDOW_XFRAME (W)))
601
602 #define WINDOW_RIGHT_FRINGE_WIDTH(W) \
603 (INTEGERP ((W)->right_fringe_width) \
604 ? XFASTINT ((W)->right_fringe_width) \
605 : FRAME_RIGHT_FRINGE_WIDTH (WINDOW_XFRAME (W)))
606
607 /* Total width of fringes in pixels. */
608
609 #define WINDOW_TOTAL_FRINGE_WIDTH(W) \
610 (WINDOW_LEFT_FRINGE_WIDTH (W) + WINDOW_RIGHT_FRINGE_WIDTH (W))
611
612 /* Are fringes outside display margins in window W. */
613
614 #define WINDOW_HAS_FRINGES_OUTSIDE_MARGINS(W) \
615 (!NILP ((W)->fringes_outside_margins))
616
617 /* Say whether scroll bars are currently enabled for window W,
618 and which side they are on. */
619
620 #define WINDOW_VERTICAL_SCROLL_BAR_TYPE(w) \
621 (EQ ((w)->vertical_scroll_bar_type, Qt) \
622 ? FRAME_VERTICAL_SCROLL_BAR_TYPE (WINDOW_XFRAME (w)) \
623 : EQ ((w)->vertical_scroll_bar_type, Qleft) \
624 ? vertical_scroll_bar_left \
625 : EQ ((w)->vertical_scroll_bar_type, Qright) \
626 ? vertical_scroll_bar_right \
627 : vertical_scroll_bar_none) \
628
629 #define WINDOW_HAS_VERTICAL_SCROLL_BAR(w) \
630 (EQ ((w)->vertical_scroll_bar_type, Qt) \
631 ? FRAME_HAS_VERTICAL_SCROLL_BARS (WINDOW_XFRAME (w)) \
632 : !NILP ((w)->vertical_scroll_bar_type))
633
634 #define WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT(w) \
635 (EQ ((w)->vertical_scroll_bar_type, Qt) \
636 ? FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (WINDOW_XFRAME (w)) \
637 : EQ ((w)->vertical_scroll_bar_type, Qleft))
638
639 #define WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT(w) \
640 (EQ ((w)->vertical_scroll_bar_type, Qt) \
641 ? FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (WINDOW_XFRAME (w))\
642 : EQ ((w)->vertical_scroll_bar_type, Qright))
643
644 /* Width that a scroll bar in window W should have, if there is one.
645 Measured in pixels. If scroll bars are turned off, this is still
646 nonzero. */
647
648 #define WINDOW_CONFIG_SCROLL_BAR_WIDTH(w) \
649 (INTEGERP ((w)->scroll_bar_width) \
650 ? XFASTINT ((w)->scroll_bar_width) \
651 : FRAME_CONFIG_SCROLL_BAR_WIDTH (WINDOW_XFRAME (w)))
652
653 /* Width that a scroll bar in window W should have, if there is one.
654 Measured in columns (characters). If scroll bars are turned off,
655 this is still nonzero. */
656
657 #define WINDOW_CONFIG_SCROLL_BAR_COLS(w) \
658 (INTEGERP ((w)->scroll_bar_width) \
659 ? ((XFASTINT ((w)->scroll_bar_width) \
660 + WINDOW_FRAME_COLUMN_WIDTH (w) - 1) \
661 / WINDOW_FRAME_COLUMN_WIDTH (w)) \
662 : FRAME_CONFIG_SCROLL_BAR_COLS (WINDOW_XFRAME (w)))
663
664 /* Width of a scroll bar in window W, measured in columns (characters),
665 but only if scroll bars are on the left. If scroll bars are on
666 the right in this frame, or there are no scroll bars, value is 0. */
667
668 #define WINDOW_LEFT_SCROLL_BAR_COLS(w) \
669 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w) \
670 ? (WINDOW_CONFIG_SCROLL_BAR_COLS (w)) \
671 : 0)
672
673 /* Width of a left scroll bar area in window W , measured in pixels. */
674
675 #define WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH(w) \
676 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w) \
677 ? (WINDOW_CONFIG_SCROLL_BAR_COLS (w) * WINDOW_FRAME_COLUMN_WIDTH (w)) \
678 : 0)
679
680 /* Width of a scroll bar in window W, measured in columns (characters),
681 but only if scroll bars are on the right. If scroll bars are on
682 the left in this frame, or there are no scroll bars, value is 0. */
683
684 #define WINDOW_RIGHT_SCROLL_BAR_COLS(w) \
685 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w) \
686 ? WINDOW_CONFIG_SCROLL_BAR_COLS (w) \
687 : 0)
688
689 /* Width of a left scroll bar area in window W , measured in pixels. */
690
691 #define WINDOW_RIGHT_SCROLL_BAR_AREA_WIDTH(w) \
692 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w) \
693 ? (WINDOW_CONFIG_SCROLL_BAR_COLS (w) * WINDOW_FRAME_COLUMN_WIDTH (w)) \
694 : 0)
695
696
697 /* Actual width of a scroll bar in window W, measured in columns. */
698
699 #define WINDOW_SCROLL_BAR_COLS(w) \
700 (WINDOW_HAS_VERTICAL_SCROLL_BAR (w) \
701 ? WINDOW_CONFIG_SCROLL_BAR_COLS (w) \
702 : 0)
703
704 /* Width of a left scroll bar area in window W , measured in pixels. */
705
706 #define WINDOW_SCROLL_BAR_AREA_WIDTH(w) \
707 (WINDOW_HAS_VERTICAL_SCROLL_BAR (w) \
708 ? (WINDOW_CONFIG_SCROLL_BAR_COLS (w) * WINDOW_FRAME_COLUMN_WIDTH (w)) \
709 : 0)
710
711
712 /* Return the frame position where the scroll bar of window W starts. */
713
714 #define WINDOW_SCROLL_BAR_AREA_X(W) \
715 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (W) \
716 ? WINDOW_BOX_RIGHT_EDGE_X (W) \
717 : WINDOW_LEFT_EDGE_X (W))
718
719
720 /* Height in pixels, and in lines, of the mode line.
721 May be zero if W doesn't have a mode line. */
722
723 #define WINDOW_MODE_LINE_HEIGHT(W) \
724 (WINDOW_WANTS_MODELINE_P ((W)) \
725 ? CURRENT_MODE_LINE_HEIGHT (W) \
726 : 0)
727
728 #define WINDOW_MODE_LINE_LINES(W) \
729 (!! WINDOW_WANTS_MODELINE_P ((W)))
730
731 /* Height in pixels, and in lines, of the header line.
732 Zero if W doesn't have a header line. */
733
734 #define WINDOW_HEADER_LINE_HEIGHT(W) \
735 (WINDOW_WANTS_HEADER_LINE_P ((W)) \
736 ? CURRENT_HEADER_LINE_HEIGHT (W) \
737 : 0)
738
739 #define WINDOW_HEADER_LINE_LINES(W) \
740 (!! WINDOW_WANTS_HEADER_LINE_P ((W)))
741
742 /* Pixel height of window W without mode line. */
743
744 #define WINDOW_BOX_HEIGHT_NO_MODE_LINE(W) \
745 (WINDOW_TOTAL_HEIGHT ((W)) \
746 - WINDOW_MODE_LINE_HEIGHT ((W)))
747
748 /* Pixel height of window W without mode and header line. */
749
750 #define WINDOW_BOX_TEXT_HEIGHT(W) \
751 (WINDOW_TOTAL_HEIGHT ((W)) \
752 - WINDOW_MODE_LINE_HEIGHT ((W)) \
753 - WINDOW_HEADER_LINE_HEIGHT ((W)))
754
755
756 /* Convert window W relative pixel X to frame pixel coordinates. */
757
758 #define WINDOW_TO_FRAME_PIXEL_X(W, X) \
759 ((X) + WINDOW_BOX_LEFT_EDGE_X ((W)))
760
761 /* Convert window W relative pixel Y to frame pixel coordinates. */
762
763 #define WINDOW_TO_FRAME_PIXEL_Y(W, Y) \
764 ((Y) + WINDOW_TOP_EDGE_Y ((W)))
765
766 /* Convert frame relative pixel X to window relative pixel X. */
767
768 #define FRAME_TO_WINDOW_PIXEL_X(W, X) \
769 ((X) - WINDOW_BOX_LEFT_EDGE_X ((W)))
770
771 /* Convert frame relative pixel Y to window relative pixel Y. */
772
773 #define FRAME_TO_WINDOW_PIXEL_Y(W, Y) \
774 ((Y) - WINDOW_TOP_EDGE_Y ((W)))
775
776 /* Convert a text area relative x-position in window W to frame X
777 pixel coordinates. */
778
779 #define WINDOW_TEXT_TO_FRAME_PIXEL_X(W, X) \
780 (window_box_left ((W), TEXT_AREA) + (X))
781
782 /* This is the window in which the terminal's cursor should
783 be left when nothing is being done with it. This must
784 always be a leaf window, and its buffer is selected by
785 the top level editing loop at the end of each command.
786
787 This value is always the same as
788 FRAME_SELECTED_WINDOW (selected_frame). */
789
790 extern Lisp_Object selected_window;
791
792 /* This is a time stamp for window selection, so we can find the least
793 recently used window. Its only users are Fselect_window,
794 init_window_once, and make_frame. */
795
796 extern int window_select_count;
797
798 /* The minibuffer window of the selected frame.
799 Note that you cannot test for minibufferness of an arbitrary window
800 by comparing against this; use the MINI_WINDOW_P macro instead. */
801
802 extern Lisp_Object minibuf_window;
803
804 /* Non-nil means it is the window whose mode line should be
805 shown as the selected window when the minibuffer is selected. */
806
807 extern Lisp_Object minibuf_selected_window;
808
809 /* Window that the mouse is over (nil if no mouse support). */
810
811 extern Lisp_Object Vmouse_window;
812
813 /* Last mouse-click event (nil if no mouse support). */
814
815 extern Lisp_Object Vmouse_event;
816
817 EXFUN (Fnext_window, 3);
818 EXFUN (Fselect_window, 2);
819 EXFUN (Fset_window_buffer, 3);
820 EXFUN (Fset_window_point, 2);
821 extern Lisp_Object make_window (void);
822 extern Lisp_Object window_from_coordinates (struct frame *, int, int,
823 enum window_part *, int);
824 EXFUN (Fwindow_dedicated_p, 1);
825 extern void resize_frame_windows (struct frame *, int, int);
826 extern void delete_all_child_windows (Lisp_Object);
827 extern void freeze_window_starts (struct frame *, int);
828 extern void grow_mini_window (struct window *, int);
829 extern void shrink_mini_window (struct window *);
830 extern int window_relative_x_coord (struct window *, enum window_part, int);
831
832 void run_window_configuration_change_hook (struct frame *f);
833
834 /* Make WINDOW display BUFFER as its contents. RUN_HOOKS_P non-zero
835 means it's allowed to run hooks. See make_frame for a case where
836 it's not allowed. */
837
838 void set_window_buffer (Lisp_Object window, Lisp_Object buffer,
839 int run_hooks_p, int keep_margins_p);
840
841 /* This is the window where the echo area message was displayed. It
842 is always a minibuffer window, but it may not be the same window
843 currently active as a minibuffer. */
844
845 extern Lisp_Object echo_area_window;
846
847 /* Depth in recursive edits. */
848
849 extern EMACS_INT command_loop_level;
850
851 /* Depth in minibuffer invocations. */
852
853 extern EMACS_INT minibuf_level;
854
855 /* true if we should redraw the mode lines on the next redisplay. */
856
857 extern int update_mode_lines;
858
859 /* Nonzero if window sizes or contents have changed since last
860 redisplay that finished */
861
862 extern int windows_or_buffers_changed;
863
864 /* Nonzero means a frame's cursor type has been changed. */
865
866 extern int cursor_type_changed;
867
868 /* Number of windows displaying the selected buffer. Normally this is
869 1, but it can be more. */
870
871 extern int buffer_shared;
872
873 /* If *ROWS or *COLS are too small a size for FRAME, set them to the
874 minimum allowable size. */
875
876 extern void check_frame_size (struct frame *frame, int *rows, int *cols);
877
878 /* Return a pointer to the glyph W's physical cursor is on. Value is
879 null if W's current matrix is invalid, so that no meaningful glyph
880 can be returned. */
881
882 struct glyph *get_phys_cursor_glyph (struct window *w);
883
884 /* Value is non-zero if WINDOW is a live window. */
885
886 #define WINDOW_LIVE_P(WINDOW) \
887 (WINDOWP ((WINDOW)) && !NILP (XWINDOW ((WINDOW))->buffer))
888
889
890 /* These used to be in lisp.h. */
891
892 extern Lisp_Object Qwindowp, Qwindow_live_p;
893 extern Lisp_Object Vwindow_list;
894
895 EXFUN (Fwindow_buffer, 1);
896 EXFUN (Fget_buffer_window, 2);
897 EXFUN (Fwindow_minibuffer_p, 1);
898 EXFUN (Fselected_window, 0);
899 EXFUN (Fframe_root_window, 1);
900 EXFUN (Fframe_first_window, 1);
901 EXFUN (Fset_frame_selected_window, 3);
902 EXFUN (Fset_window_configuration, 1);
903 EXFUN (Fcurrent_window_configuration, 1);
904 extern int compare_window_configurations (Lisp_Object, Lisp_Object, int);
905 EXFUN (Fpos_visible_in_window_p, 3);
906 extern void mark_window_cursors_off (struct window *);
907 extern int window_internal_height (struct window *);
908 extern int window_body_cols (struct window *w);
909 EXFUN (Frecenter, 1);
910 extern void temp_output_buffer_show (Lisp_Object);
911 extern void replace_buffer_in_windows (Lisp_Object);
912 extern void replace_buffer_in_windows_safely (Lisp_Object);
913 extern void init_window_once (void);
914 extern void init_window (void);
915 extern void syms_of_window (void);
916 extern void keys_of_window (void);
917
918 #endif /* not WINDOW_H_INCLUDED */