Mercurial > emacs
annotate src/window.c @ 976:cbdfc337ec8f
* xterm.c (x_wm_hints): New variable.
(x_wm_set_window_state, x_wm_set_icon_pixmap,
x_wm_set_icon_position): Use x_wm_hints.
(x_term_init): Set the `input' field of x_wm_hints, and its flag.
* xterm.c (x_text_icon): Call x_wm_set_icon_pixmap with a pixmap
of zero, to clear the pixmap.
(x_wm_set_icon_pixmap): Accept this protocol; if pixmap is zero,
specify no pixmap for the icon.
* xterm.c (x_set_window_size): Call check_frame_size to make sure
that the requested dimensions are within acceptable limits.
Store the new size information in the frame structure.
* xterm.c (x_wm_set_size_hint): Don't try to set the base_height
and base_width elements of size_hints if PBaseSize is not
#defined. Set the minimum frame size according to the information
returned by check_frame_size.
* xterm.c (XTread_socket, x_do_pending_expose): Call
change_frame_size with a DELAY of 1.
* xterm.c (in_display): Deleted this; it's never used in xterm.c,
and there is another variable by the same name in dispnew.c.
* xterm.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Renamed these to FRAME_TERMCAP_P, FRAME_X_P, and
FRAME_HAS_MINIBUF_P, for consistency with the rest of the
frame macros.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Wed, 12 Aug 1992 14:40:00 +0000 |
parents | f47d221cbfe6 |
children | eb19dfaec9c4 |
rev | line source |
---|---|
265 | 1 /* Window creation, deletion and examination for GNU Emacs. |
2 Does not include redisplay. | |
708 | 3 Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc. |
265 | 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 | |
708 | 9 the Free Software Foundation; either version 2, or (at your option) |
265 | 10 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; see the file COPYING. If not, write to | |
19 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
20 | |
21 #include "config.h" | |
22 #include "lisp.h" | |
23 #include "buffer.h" | |
769 | 24 #include "frame.h" |
265 | 25 #include "window.h" |
26 #include "commands.h" | |
27 #include "indent.h" | |
28 #include "termchar.h" | |
29 #include "disptab.h" | |
522 | 30 #include "keyboard.h" |
265 | 31 |
32 Lisp_Object Qwindowp; | |
33 | |
34 Lisp_Object Fnext_window (), Fdelete_window (), Fselect_window (); | |
35 Lisp_Object Fset_window_buffer (), Fsplit_window (), Frecenter (); | |
36 | |
37 static void delete_all_subwindows (); | |
38 static struct window *decode_window(); | |
39 | |
40 /* This is the window in which the terminal's cursor should | |
41 be left when nothing is being done with it. This must | |
42 always be a leaf window, and its buffer is selected by | |
43 the top level editing loop at the end of each command. | |
44 | |
45 This value is always the same as | |
769 | 46 FRAME_SELECTED_WINDOW (selected_frame). */ |
265 | 47 |
48 Lisp_Object selected_window; | |
49 | |
769 | 50 /* The minibuffer window of the selected frame. |
265 | 51 Note that you cannot test for minibufferness of an arbitrary window |
52 by comparing against this; but you can test for minibufferness of | |
53 the selected window. */ | |
54 Lisp_Object minibuf_window; | |
55 | |
56 /* Non-nil means it is the window for C-M-v to scroll | |
57 when the minibuffer is selected. */ | |
58 Lisp_Object Vminibuf_scroll_window; | |
59 | |
60 /* Non-nil means this is the buffer whose window C-M-v should scroll. */ | |
61 Lisp_Object Vother_window_scroll_buffer; | |
62 | |
63 /* Window that the mouse is over (nil if no mouse support). */ | |
64 Lisp_Object Vmouse_window; | |
65 | |
66 /* Last mouse click data structure (nil if no mouse support). */ | |
67 Lisp_Object Vmouse_event; | |
68 | |
69 /* Non-nil means it's function to call to display temp buffers. */ | |
70 Lisp_Object Vtemp_buffer_show_function; | |
71 | |
72 /* If a window gets smaller than either of these, it is removed. */ | |
73 int window_min_height; | |
74 int window_min_width; | |
75 | |
76 /* Nonzero implies Fdisplay_buffer should create windows. */ | |
77 int pop_up_windows; | |
78 | |
769 | 79 /* Nonzero implies make new frames for Fdisplay_buffer. */ |
80 int pop_up_frames; | |
265 | 81 |
82 /* Non-nil means use this function instead of default */ | |
769 | 83 Lisp_Object Vpop_up_frame_function; |
265 | 84 |
85 /* Function to call to handle Fdisplay_buffer. */ | |
86 Lisp_Object Vdisplay_buffer_function; | |
87 | |
88 /* Fdisplay_buffer always splits the largest window | |
89 if that window is more than this high. */ | |
90 int split_height_threshold; | |
91 | |
92 /* Number of lines of continuity in scrolling by screenfuls. */ | |
93 int next_screen_context_lines; | |
94 | |
95 /* Incremented for each window created. */ | |
96 static int sequence_number; | |
97 | |
98 #define min(a, b) ((a) < (b) ? (a) : (b)) | |
99 | |
100 DEFUN ("windowp", Fwindowp, Swindowp, 1, 1, 0, | |
101 "Returns t if OBJ is a window.") | |
102 (obj) | |
103 Lisp_Object obj; | |
104 { | |
105 return XTYPE (obj) == Lisp_Window ? Qt : Qnil; | |
106 } | |
107 | |
108 Lisp_Object | |
109 make_window () | |
110 { | |
111 register Lisp_Object val; | |
112 register struct window *p; | |
113 | |
114 /* Add sizeof (Lisp_Object) here because sizeof (struct Lisp_Vector) | |
115 includes the first element. */ | |
116 val = Fmake_vector ( | |
117 make_number ((sizeof (struct window) - sizeof (struct Lisp_Vector) | |
118 + sizeof (Lisp_Object)) | |
119 / sizeof (Lisp_Object)), | |
120 Qnil); | |
121 XSETTYPE (val, Lisp_Window); | |
122 p = XWINDOW (val); | |
123 XFASTINT (p->sequence_number) = ++sequence_number; | |
124 XFASTINT (p->left) = XFASTINT (p->top) | |
125 = XFASTINT (p->height) = XFASTINT (p->width) | |
126 = XFASTINT (p->hscroll) = 0; | |
127 XFASTINT (p->last_point_x) = XFASTINT (p->last_point_y) = 0; | |
128 p->start = Fmake_marker (); | |
129 p->pointm = Fmake_marker (); | |
130 XFASTINT (p->use_time) = 0; | |
769 | 131 p->frame = Qnil; |
265 | 132 p->display_table = Qnil; |
133 p->dedicated = Qnil; | |
134 return val; | |
135 } | |
136 | |
137 DEFUN ("selected-window", Fselected_window, Sselected_window, 0, 0, 0, | |
138 "Return the window that the cursor now appears in and commands apply to.") | |
139 () | |
140 { | |
141 return selected_window; | |
142 } | |
143 | |
144 DEFUN ("minibuffer-window", Fminibuffer_window, Sminibuffer_window, 0, 0, 0, | |
145 "Return the window used now for minibuffers.") | |
146 () | |
147 { | |
769 | 148 #ifdef MULTI_FRAME |
149 choose_minibuf_frame (); | |
150 #endif /* MULTI_FRAME */ | |
265 | 151 return minibuf_window; |
152 } | |
153 | |
154 DEFUN ("window-minibuffer-p", Fwindow_minibuffer_p, Swindow_minibuffer_p, 1, 1, 0, | |
155 "Returns non-nil if WINDOW is a minibuffer window.") | |
156 (window) | |
157 Lisp_Object window; | |
158 { | |
159 struct window *w = decode_window (window); | |
160 return (MINI_WINDOW_P (w) ? Qt : Qnil); | |
161 } | |
162 | |
163 DEFUN ("pos-visible-in-window-p", Fpos_visible_in_window_p, | |
164 Spos_visible_in_window_p, 0, 2, 0, | |
769 | 165 "Return t if position POS is currently on the frame in WINDOW.\n\ |
265 | 166 Returns nil if that position is scrolled vertically out of view.\n\ |
167 POS defaults to point; WINDOW, to the selected window.") | |
168 (pos, window) | |
169 Lisp_Object pos, window; | |
170 { | |
171 register struct window *w; | |
172 register int top; | |
173 register int height; | |
174 register int posint; | |
175 register struct buffer *buf; | |
176 struct position posval; | |
177 | |
485 | 178 if (NILP (pos)) |
265 | 179 posint = point; |
180 else | |
181 { | |
182 CHECK_NUMBER_COERCE_MARKER (pos, 0); | |
183 posint = XINT (pos); | |
184 } | |
185 | |
485 | 186 if (NILP (window)) |
265 | 187 window = selected_window; |
188 else | |
189 CHECK_WINDOW (window, 1); | |
190 w = XWINDOW (window); | |
191 top = marker_position (w->start); | |
192 | |
193 if (posint < top) | |
194 return Qnil; | |
195 | |
196 height = XFASTINT (w->height) - ! MINI_WINDOW_P (w); | |
197 | |
198 buf = XBUFFER (w->buffer); | |
199 if (XFASTINT (w->last_modified) >= BUF_MODIFF (buf)) | |
200 { | |
769 | 201 /* If frame is up to date, |
265 | 202 use the info recorded about how much text fit on it. */ |
203 if (posint < BUF_Z (buf) - XFASTINT (w->window_end_pos) | |
204 || (XFASTINT (w->window_end_vpos) < height)) | |
205 return Qt; | |
206 return Qnil; | |
207 } | |
208 else | |
209 { | |
210 if (posint > BUF_Z (buf)) | |
211 return Qnil; | |
212 | |
213 /* If that info is not correct, calculate afresh */ | |
214 posval = *compute_motion (top, 0, 0, posint, height, 0, | |
215 XFASTINT (w->width) - 1 | |
216 - (XFASTINT (w->width) + XFASTINT (w->left) | |
769 | 217 != FRAME_WIDTH (XFRAME (w->frame))), |
265 | 218 XINT (w->hscroll), 0); |
219 | |
220 return posval.vpos < height ? Qt : Qnil; | |
221 } | |
222 } | |
223 | |
224 static struct window * | |
225 decode_window (window) | |
226 register Lisp_Object window; | |
227 { | |
485 | 228 if (NILP (window)) |
265 | 229 return XWINDOW (selected_window); |
230 | |
231 CHECK_WINDOW (window, 0); | |
232 return XWINDOW (window); | |
233 } | |
234 | |
235 DEFUN ("window-buffer", Fwindow_buffer, Swindow_buffer, 0, 1, 0, | |
236 "Return the buffer that WINDOW is displaying.") | |
237 (window) | |
238 Lisp_Object window; | |
239 { | |
240 return decode_window (window)->buffer; | |
241 } | |
242 | |
243 DEFUN ("window-height", Fwindow_height, Swindow_height, 0, 1, 0, | |
244 "Return the number of lines in WINDOW (including its mode line).") | |
245 (window) | |
246 Lisp_Object window; | |
247 { | |
248 return decode_window (window)->height; | |
249 } | |
250 | |
251 DEFUN ("window-width", Fwindow_width, Swindow_width, 0, 1, 0, | |
252 "Return the number of columns in WINDOW.") | |
253 (window) | |
254 Lisp_Object window; | |
255 { | |
256 register struct window *w = decode_window (window); | |
257 register int width = w->width; | |
258 | |
259 /* If this window does not end at the right margin, | |
260 must deduct one column for the border */ | |
769 | 261 if ((width + w->left) == FRAME_WIDTH (XFRAME (WINDOW_FRAME (w)))) |
265 | 262 return width; |
263 return width - 1; | |
264 } | |
265 | |
266 DEFUN ("window-hscroll", Fwindow_hscroll, Swindow_hscroll, 0, 1, 0, | |
267 "Return the number of columns by which WINDOW is scrolled from left margin.") | |
268 (window) | |
269 Lisp_Object window; | |
270 { | |
271 return decode_window (window)->hscroll; | |
272 } | |
273 | |
274 DEFUN ("set-window-hscroll", Fset_window_hscroll, Sset_window_hscroll, 2, 2, 0, | |
275 "Set number of columns WINDOW is scrolled from left margin to NCOL.\n\ | |
276 NCOL should be zero or positive.") | |
277 (window, ncol) | |
278 register Lisp_Object window, ncol; | |
279 { | |
280 register struct window *w; | |
281 | |
282 CHECK_NUMBER (ncol, 1); | |
283 if (XINT (ncol) < 0) XFASTINT (ncol) = 0; | |
284 if (XFASTINT (ncol) >= (1 << (SHORTBITS - 1))) | |
285 args_out_of_range (ncol, Qnil); | |
286 w = decode_window (window); | |
287 if (w->hscroll != ncol) | |
288 clip_changed = 1; /* Prevent redisplay shortcuts */ | |
289 w->hscroll = ncol; | |
290 return ncol; | |
291 } | |
292 | |
293 DEFUN ("window-edges", Fwindow_edges, Swindow_edges, 0, 1, 0, | |
294 "Return a list of the edge coordinates of WINDOW.\n\ | |
769 | 295 \(LEFT TOP RIGHT BOTTOM), all relative to 0, 0 at top left corner of frame.\n\ |
265 | 296 RIGHT is one more than the rightmost column used by WINDOW,\n\ |
297 and BOTTOM is one more than the bottommost row used by WINDOW\n\ | |
298 and its mode-line.") | |
299 (window) | |
300 Lisp_Object window; | |
301 { | |
302 register struct window *w = decode_window (window); | |
303 | |
304 return Fcons (w->left, Fcons (w->top, | |
305 Fcons (make_number (XFASTINT (w->left) + XFASTINT (w->width)), | |
306 Fcons (make_number (XFASTINT (w->top) | |
307 + XFASTINT (w->height)), | |
308 Qnil)))); | |
309 } | |
310 | |
432 | 311 /* Test if the character at column *x, row *y is within window *w. |
312 If it is not, return 0; | |
313 if it is in the window's text area, | |
314 set *x and *y to its location relative to the upper left corner | |
315 of the window, and | |
316 return 1; | |
317 if it is on the window's modeline, return 2; | |
318 if it is on the border between the window and its right sibling, | |
319 return 3. */ | |
320 static int | |
321 coordinates_in_window (w, x, y) | |
322 register struct window *w; | |
323 register int *x, *y; | |
324 { | |
325 register int left = XINT (w->left); | |
326 register int width = XINT (w->width); | |
327 register int window_height = XINT (w->height); | |
328 register int top = XFASTINT (w->top); | |
329 | |
330 if ( *x < left || *x >= left + width | |
331 || *y < top || *y >= top + window_height) | |
332 return 0; | |
333 | |
334 /* Is the character is the mode line? */ | |
335 if (*y == top + window_height - 1 | |
336 && window_height > 1) /* 1 line => minibuffer */ | |
337 return 2; | |
338 | |
339 /* Is the character in the right border? */ | |
340 if (*x == left + width - 1 | |
769 | 341 && left + width != FRAME_WIDTH (XFRAME (w->frame))) |
432 | 342 return 3; |
343 | |
344 *x -= left; | |
345 *y -= top; | |
346 return 1; | |
347 } | |
348 | |
349 DEFUN ("coordinates-in-window-p", Fcoordinates_in_window_p, | |
350 Scoordinates_in_window_p, 2, 2, 0, | |
351 "Return non-nil if COORDINATES are in WINDOW.\n\ | |
708 | 352 COORDINATES is a cons of the form (X . Y), X and Y being distances\n\ |
769 | 353 measured in characters from the upper-left corner of the frame.\n\ |
708 | 354 (0 . 0) denotes the character in the upper left corner of the\n\ |
769 | 355 frame.\n\ |
432 | 356 If COORDINATES are in the text portion of WINDOW,\n\ |
357 the coordinates relative to the window are returned.\n\ | |
732 | 358 If they are in the mode line of WINDOW, `mode-line' is returned.\n\ |
432 | 359 If they are on the border between WINDOW and its right sibling,\n\ |
732 | 360 `vertical-line' is returned.") |
432 | 361 (coordinates, window) |
362 register Lisp_Object coordinates, window; | |
363 { | |
364 int x, y; | |
365 | |
366 CHECK_WINDOW (window, 0); | |
367 CHECK_CONS (coordinates, 1); | |
368 x = XINT (Fcar (coordinates)); | |
369 y = XINT (Fcdr (coordinates)); | |
370 | |
371 switch (coordinates_in_window (XWINDOW (window), &x, &y)) | |
372 { | |
373 case 0: /* NOT in window at all. */ | |
374 return Qnil; | |
375 | |
376 case 1: /* In text part of window. */ | |
377 return Fcons (x, y); | |
378 | |
379 case 2: /* In mode line of window. */ | |
380 return Qmode_line; | |
381 | |
382 case 3: /* On right border of window. */ | |
732 | 383 return Qvertical_line; |
432 | 384 |
385 default: | |
386 abort (); | |
387 } | |
388 } | |
389 | |
265 | 390 /* Find the window containing column x, row y, and return it as a |
432 | 391 Lisp_Object. If x, y is on the window's modeline, set *part |
392 to 1; if it is on the separating line between the window and its | |
393 right sibling, set it to 2; otherwise set it to 0. If there is no | |
394 window under x, y return nil and leave *part unmodified. */ | |
265 | 395 Lisp_Object |
769 | 396 window_from_coordinates (frame, x, y, part) |
397 FRAME_PTR frame; | |
265 | 398 int x, y; |
432 | 399 int *part; |
265 | 400 { |
401 register Lisp_Object tem, first; | |
402 | |
769 | 403 tem = first = FRAME_SELECTED_WINDOW (frame); |
265 | 404 |
432 | 405 do |
265 | 406 { |
407 int found = coordinates_in_window (XWINDOW (tem), &x, &y); | |
408 | |
409 if (found) | |
410 { | |
432 | 411 *part = found - 1; |
265 | 412 return tem; |
413 } | |
414 | |
432 | 415 tem = Fnext_window (tem, Qt, Qlambda); |
265 | 416 } |
432 | 417 while (! EQ (tem, first)); |
418 | |
419 return Qnil; | |
265 | 420 } |
421 | |
681
026f978690be
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
555
diff
changeset
|
422 DEFUN ("window-at", Fwindow_at, Swindow_at, 2, 3, 0, |
769 | 423 "Return window containing row ROW, column COLUMN on FRAME.\n\ |
424 If omitted, FRAME defaults to the currently selected frame.\n\ | |
425 The top left corner of the frame is considered to be row 0,\n\ | |
548 | 426 column 0.") |
769 | 427 (row, column, frame) |
428 Lisp_Object row, column, frame; | |
265 | 429 { |
430 int part; | |
431 | |
769 | 432 if (NILP (frame)) |
433 XSET (frame, Lisp_Frame, selected_frame); | |
432 | 434 else |
769 | 435 CHECK_LIVE_FRAME (frame, 2); |
548 | 436 CHECK_NUMBER (row, 0); |
437 CHECK_NUMBER (column, 1); | |
265 | 438 |
769 | 439 return window_from_coordinates (XFRAME (frame), |
548 | 440 XINT (row), XINT (column), |
265 | 441 &part); |
442 } | |
443 | |
444 DEFUN ("window-point", Fwindow_point, Swindow_point, 0, 1, 0, | |
445 "Return current value of point in WINDOW.\n\ | |
446 For a nonselected window, this is the value point would have\n\ | |
447 if that window were selected.\n\ | |
448 \n\ | |
449 Note that, when WINDOW is the selected window and its buffer\n\ | |
450 is also currently selected, the value returned is the same as (point).\n\ | |
451 It would be more strictly correct to return the `top-level' value\n\ | |
452 of point, outside of any save-excursion forms.\n\ | |
453 But that is hard to define.") | |
454 (window) | |
455 Lisp_Object window; | |
456 { | |
457 register struct window *w = decode_window (window); | |
458 | |
459 if (w == XWINDOW (selected_window) | |
460 && current_buffer == XBUFFER (w->buffer)) | |
461 return Fpoint (); | |
462 return Fmarker_position (w->pointm); | |
463 } | |
464 | |
465 DEFUN ("window-start", Fwindow_start, Swindow_start, 0, 1, 0, | |
466 "Return position at which display currently starts in WINDOW.") | |
467 (window) | |
468 Lisp_Object window; | |
469 { | |
470 return Fmarker_position (decode_window (window)->start); | |
471 } | |
472 | |
473 DEFUN ("window-end", Fwindow_end, Swindow_end, 0, 1, 0, | |
474 "Return position at which display currently ends in WINDOW.") | |
475 (window) | |
476 Lisp_Object window; | |
477 { | |
478 Lisp_Object value; | |
479 struct window *w = decode_window (window); | |
480 | |
481 XSET (value, Lisp_Int, | |
482 BUF_Z (current_buffer) - XFASTINT (w->window_end_pos)); | |
483 | |
484 return value; | |
485 } | |
486 | |
487 DEFUN ("set-window-point", Fset_window_point, Sset_window_point, 2, 2, 0, | |
488 "Make point value in WINDOW be at position POS in WINDOW's buffer.") | |
489 (window, pos) | |
490 Lisp_Object window, pos; | |
491 { | |
492 register struct window *w = decode_window (window); | |
493 | |
494 CHECK_NUMBER_COERCE_MARKER (pos, 1); | |
495 if (w == XWINDOW (selected_window)) | |
496 Fgoto_char (pos); | |
497 else | |
498 set_marker_restricted (w->pointm, pos, w->buffer); | |
499 | |
500 return pos; | |
501 } | |
502 | |
503 DEFUN ("set-window-start", Fset_window_start, Sset_window_start, 2, 3, 0, | |
504 "Make display in WINDOW start at position POS in WINDOW's buffer.\n\ | |
505 Optional third arg NOFORCE non-nil inhibits next redisplay\n\ | |
506 from overriding motion of point in order to display at this exact start.") | |
507 (window, pos, noforce) | |
508 Lisp_Object window, pos, noforce; | |
509 { | |
510 register struct window *w = decode_window (window); | |
511 | |
512 CHECK_NUMBER_COERCE_MARKER (pos, 1); | |
513 set_marker_restricted (w->start, pos, w->buffer); | |
514 /* this is not right, but much easier than doing what is right. */ | |
515 w->start_at_line_beg = Qnil; | |
485 | 516 if (NILP (noforce)) |
265 | 517 w->force_start = Qt; |
518 w->update_mode_line = Qt; | |
519 XFASTINT (w->last_modified) = 0; | |
338 | 520 if (!EQ (window, selected_window)) |
521 windows_or_buffers_changed++; | |
265 | 522 return pos; |
523 } | |
524 | |
525 DEFUN ("window-dedicated-p", Fwindow_dedicated_p, Swindow_dedicated_p, | |
526 1, 1, 0, | |
527 "Return WINDOW's dedicated object, usually t or nil.\n\ | |
528 See also `set-window-buffer-dedicated'.") | |
529 (window) | |
530 Lisp_Object window; | |
531 { | |
532 return decode_window (window)->dedicated; | |
533 } | |
534 | |
722
0a2391511b46
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
708
diff
changeset
|
535 DEFUN ("set-window-dedicated-p", Fset_window_dedicated_p, |
0a2391511b46
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
708
diff
changeset
|
536 Sset_window_dedicated_p, 2, 2, 0, |
0a2391511b46
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
708
diff
changeset
|
537 "Control whether WINDOW is dedicated to the buffer it displays.\n\ |
0a2391511b46
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
708
diff
changeset
|
538 If it is dedicated, Emacs will not automatically change\n\ |
0a2391511b46
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
708
diff
changeset
|
539 which buffer appears in it.\n\ |
0a2391511b46
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
708
diff
changeset
|
540 The second argument is the new value for the dedication flag;\n\ |
0a2391511b46
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
708
diff
changeset
|
541 non-nil means yes.") |
265 | 542 (window, arg) |
543 Lisp_Object window, arg; | |
544 { | |
545 register struct window *w = decode_window (window); | |
546 | |
485 | 547 if (NILP (arg)) |
265 | 548 w->dedicated = Qnil; |
549 else | |
722
0a2391511b46
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
708
diff
changeset
|
550 w->dedicated = Qt; |
265 | 551 |
552 return w->dedicated; | |
553 } | |
554 | |
555 DEFUN ("window-display-table", Fwindow_display_table, Swindow_display_table, | |
556 0, 1, 0, | |
557 "Return the display-table that WINDOW is using.") | |
558 (window) | |
559 Lisp_Object window; | |
560 { | |
561 return decode_window (window)->display_table; | |
562 } | |
563 | |
564 /* Get the display table for use currently on window W. | |
565 This is either W's display table or W's buffer's display table. | |
566 Ignore the specified tables if they are not valid; | |
567 if no valid table is specified, return 0. */ | |
568 | |
569 struct Lisp_Vector * | |
570 window_display_table (w) | |
571 struct window *w; | |
572 { | |
573 Lisp_Object tem; | |
574 tem = w->display_table; | |
575 if (XTYPE (tem) == Lisp_Vector && XVECTOR (tem)->size == DISP_TABLE_SIZE) | |
576 return XVECTOR (tem); | |
577 tem = XBUFFER (w->buffer)->display_table; | |
578 if (XTYPE (tem) == Lisp_Vector && XVECTOR (tem)->size == DISP_TABLE_SIZE) | |
579 return XVECTOR (tem); | |
580 tem = Vstandard_display_table; | |
581 if (XTYPE (tem) == Lisp_Vector && XVECTOR (tem)->size == DISP_TABLE_SIZE) | |
582 return XVECTOR (tem); | |
583 return 0; | |
584 } | |
585 | |
555 | 586 DEFUN ("set-window-display-table", Fset_window_display_table, Sset_window_display_table, 2, 2, 0, |
265 | 587 "Set WINDOW's display-table to TABLE.") |
588 (window, table) | |
589 register Lisp_Object window, table; | |
590 { | |
591 register struct window *w; | |
592 register Lisp_Object z; /* Return value. */ | |
593 | |
594 w = decode_window (window); | |
595 w->display_table = table; | |
596 return table; | |
597 } | |
598 | |
599 /* Record info on buffer window w is displaying | |
600 when it is about to cease to display that buffer. */ | |
601 static | |
602 unshow_buffer (w) | |
603 register struct window *w; | |
604 { | |
605 Lisp_Object buf = w->buffer; | |
606 | |
607 if (XBUFFER (buf) != XMARKER (w->pointm)->buffer) | |
608 abort (); | |
609 | |
610 if (w == XWINDOW (selected_window) | |
611 || ! EQ (buf, XWINDOW (selected_window)->buffer)) | |
612 /* Do this except when the selected window's buffer | |
613 is being removed from some other window. */ | |
614 XBUFFER (buf)->last_window_start = marker_position (w->start); | |
615 | |
616 /* Point in the selected window's buffer | |
617 is actually stored in that buffer, and the window's pointm isn't used. | |
618 So don't clobber point in that buffer. */ | |
619 if (! EQ (buf, XWINDOW (selected_window)->buffer)) | |
620 BUF_PT (XBUFFER (buf)) | |
621 = clip_to_bounds (BUF_BEGV (XBUFFER (buf)), | |
622 marker_position (w->pointm), | |
623 BUF_ZV (XBUFFER (buf))); | |
624 } | |
625 | |
626 /* Put replacement into the window structure in place of old. */ | |
627 static | |
628 replace_window (old, replacement) | |
629 Lisp_Object old, replacement; | |
630 { | |
631 register Lisp_Object tem; | |
632 register struct window *o = XWINDOW (old), *p = XWINDOW (replacement); | |
633 | |
769 | 634 /* If OLD is its frame's root_window, then replacement is the new |
635 root_window for that frame. */ | |
265 | 636 |
769 | 637 if (old == FRAME_ROOT_WINDOW (XFRAME (o->frame))) |
638 FRAME_ROOT_WINDOW (XFRAME (o->frame)) = replacement; | |
265 | 639 |
640 p->left = o->left; | |
641 p->top = o->top; | |
642 p->width = o->width; | |
643 p->height = o->height; | |
644 | |
645 p->next = tem = o->next; | |
485 | 646 if (!NILP (tem)) |
265 | 647 XWINDOW (tem)->prev = replacement; |
648 | |
649 p->prev = tem = o->prev; | |
485 | 650 if (!NILP (tem)) |
265 | 651 XWINDOW (tem)->next = replacement; |
652 | |
653 p->parent = tem = o->parent; | |
485 | 654 if (!NILP (tem)) |
265 | 655 { |
656 if (EQ (XWINDOW (tem)->vchild, old)) | |
657 XWINDOW (tem)->vchild = replacement; | |
658 if (EQ (XWINDOW (tem)->hchild, old)) | |
659 XWINDOW (tem)->hchild = replacement; | |
660 } | |
661 | |
662 /*** Here, if replacement is a vertical combination | |
663 and so is its new parent, we should make replacement's | |
664 children be children of that parent instead. ***/ | |
665 } | |
666 | |
667 DEFUN ("delete-window", Fdelete_window, Sdelete_window, 0, 1, "", | |
668 "Remove WINDOW from the display. Default is selected window.") | |
669 (window) | |
670 register Lisp_Object window; | |
671 { | |
672 register Lisp_Object tem, parent, sib; | |
673 register struct window *p; | |
674 register struct window *par; | |
675 | |
485 | 676 if (NILP (window)) |
265 | 677 window = selected_window; |
678 else | |
679 CHECK_WINDOW (window, 0); | |
680 | |
681 p = XWINDOW (window); | |
682 parent = p->parent; | |
485 | 683 if (NILP (parent)) |
265 | 684 error ("Attempt to delete minibuffer or sole ordinary window"); |
685 par = XWINDOW (parent); | |
686 | |
687 windows_or_buffers_changed++; | |
688 | |
689 if (EQ (window, selected_window)) | |
690 Fselect_window (Fnext_window (window, Qnil, Qnil)); | |
691 | |
692 tem = p->buffer; | |
693 /* tem is null for dummy parent windows | |
694 (which have inferiors but not any contents themselves) */ | |
485 | 695 if (!NILP (tem)) |
265 | 696 { |
697 unshow_buffer (p); | |
698 unchain_marker (p->pointm); | |
699 unchain_marker (p->start); | |
700 p->buffer = Qnil; | |
701 } | |
702 | |
703 tem = p->next; | |
485 | 704 if (!NILP (tem)) |
265 | 705 XWINDOW (tem)->prev = p->prev; |
706 | |
707 tem = p->prev; | |
485 | 708 if (!NILP (tem)) |
265 | 709 XWINDOW (tem)->next = p->next; |
710 | |
711 if (EQ (window, par->hchild)) | |
712 par->hchild = p->next; | |
713 if (EQ (window, par->vchild)) | |
714 par->vchild = p->next; | |
715 | |
716 /* Find one of our siblings to give our space to. */ | |
717 sib = p->prev; | |
485 | 718 if (NILP (sib)) |
265 | 719 { |
720 /* If p gives its space to its next sibling, that sibling needs | |
721 to have its top/left side pulled back to where p's is. | |
722 set_window_{height,width} will re-position the sibling's | |
723 children. */ | |
724 sib = p->next; | |
725 XFASTINT (XWINDOW (sib)->top) = p->top; | |
726 XFASTINT (XWINDOW (sib)->left) = p->left; | |
727 } | |
728 | |
729 /* Stretch that sibling. */ | |
485 | 730 if (!NILP (par->vchild)) |
265 | 731 set_window_height (sib, |
732 XFASTINT (XWINDOW (sib)->height) + XFASTINT (p->height), | |
733 1); | |
485 | 734 if (!NILP (par->hchild)) |
265 | 735 set_window_width (sib, |
736 XFASTINT (XWINDOW (sib)->width) + XFASTINT (p->width), | |
737 1); | |
738 | |
739 /* If parent now has only one child, | |
740 put the child into the parent's place. */ | |
741 | |
742 tem = par->hchild; | |
485 | 743 if (NILP (tem)) |
265 | 744 tem = par->vchild; |
485 | 745 if (NILP (XWINDOW (tem)->next)) |
265 | 746 replace_window (parent, tem); |
747 return Qnil; | |
748 } | |
749 | |
432 | 750 |
769 | 751 extern Lisp_Object next_frame (), prev_frame (); |
432 | 752 |
753 DEFUN ("next-window", Fnext_window, Snext_window, 0, 3, 0, | |
754 "Return next window after WINDOW in canonical ordering of windows.\n\ | |
755 If omitted, WINDOW defaults to the selected window.\n\ | |
756 \n\ | |
757 Optional second arg MINIBUF t means count the minibuffer window even\n\ | |
758 if not active. MINIBUF nil or omitted means count the minibuffer iff\n\ | |
759 it is active. MINIBUF neither t nor nil means not to count the\n\ | |
760 minibuffer even if it is active.\n\ | |
761 \n\ | |
769 | 762 Several frames may share a single minibuffer; if the minibuffer\n\ |
763 counts, all windows on all frames that share that minibuffer count\n\ | |
432 | 764 too. This means that next-window may be used to iterate through the\n\ |
769 | 765 set of windows even when the minibuffer is on another frame. If the\n\ |
766 minibuffer does not count, only windows from WINDOW's frame count.\n\ | |
432 | 767 \n\ |
769 | 768 Optional third arg ALL-FRAMES t means include windows on all frames.\n\ |
769 ALL-FRAMES nil or omitted means cycle within the frames as specified\n\ | |
770 above. If neither nil nor t, restrict to WINDOW's frame.") | |
771 (window, minibuf, all_frames) | |
772 register Lisp_Object window, minibuf, all_frames; | |
265 | 773 { |
432 | 774 register Lisp_Object tem; |
775 Lisp_Object start_window; | |
265 | 776 |
485 | 777 if (NILP (window)) |
432 | 778 window = selected_window; |
779 else | |
780 CHECK_WINDOW (window, 0); | |
781 | |
782 start_window = window; | |
783 | |
784 /* minibuf == nil may or may not include minibuffers. | |
785 Decide if it does. */ | |
485 | 786 if (NILP (minibuf)) |
432 | 787 minibuf = (minibuf_level ? Qt : Qlambda); |
788 | |
769 | 789 /* all_frames == nil doesn't specify which frames to include. |
790 Decide which frames it includes. */ | |
791 if (NILP (all_frames)) | |
792 all_frames = (EQ (minibuf, Qt) | |
793 ? (FRAME_MINIBUF_WINDOW | |
794 (XFRAME | |
795 (WINDOW_FRAME | |
432 | 796 (XWINDOW (window))))) |
797 : Qnil); | |
769 | 798 else if (! EQ (all_frames, Qt)) |
799 all_frames = Qnil; | |
432 | 800 |
265 | 801 /* Do this loop at least once, to get the next window, and perhaps |
802 again, if we hit the minibuffer and that is not acceptable. */ | |
803 do | |
804 { | |
805 /* Find a window that actually has a next one. This loop | |
806 climbs up the tree. */ | |
485 | 807 while (tem = XWINDOW (window)->next, NILP (tem)) |
808 if (tem = XWINDOW (window)->parent, !NILP (tem)) | |
265 | 809 window = tem; |
432 | 810 else |
265 | 811 { |
769 | 812 /* We've reached the end of this frame. |
813 Which other frames are acceptable? */ | |
814 tem = WINDOW_FRAME (XWINDOW (window)); | |
815 #ifdef MULTI_FRAME | |
816 if (! NILP (all_frames)) | |
817 tem = next_frame (tem, all_frames); | |
432 | 818 #endif |
769 | 819 tem = FRAME_ROOT_WINDOW (XFRAME (tem)); |
432 | 820 |
265 | 821 break; |
822 } | |
823 | |
824 window = tem; | |
432 | 825 |
265 | 826 /* If we're in a combination window, find its first child and |
827 recurse on that. Otherwise, we've found the window we want. */ | |
828 while (1) | |
829 { | |
485 | 830 if (!NILP (XWINDOW (window)->hchild)) |
265 | 831 window = XWINDOW (window)->hchild; |
485 | 832 else if (!NILP (XWINDOW (window)->vchild)) |
265 | 833 window = XWINDOW (window)->vchild; |
834 else break; | |
835 } | |
836 } | |
432 | 837 /* Which windows are acceptible? |
838 Exit the loop and accept this window if | |
265 | 839 this isn't a minibuffer window, or |
432 | 840 we're accepting minibuffer windows, or |
841 we've come all the way around and we're back at the original window. */ | |
265 | 842 while (MINI_WINDOW_P (XWINDOW (window)) |
432 | 843 && ! EQ (minibuf, Qt) |
844 && window != start_window); | |
265 | 845 |
846 return window; | |
847 } | |
848 | |
432 | 849 DEFUN ("previous-window", Fprevious_window, Sprevious_window, 0, 3, 0, |
850 "Return the window preceeding WINDOW in canonical ordering of windows.\n\ | |
851 If omitted, WINDOW defaults to the selected window.\n\ | |
852 \n\ | |
853 Optional second arg MINIBUF t means count the minibuffer window even\n\ | |
854 if not active. MINIBUF nil or omitted means count the minibuffer iff\n\ | |
855 it is active. MINIBUF neither t nor nil means not to count the\n\ | |
856 minibuffer even if it is active.\n\ | |
857 \n\ | |
769 | 858 Several frames may share a single minibuffer; if the minibuffer\n\ |
859 counts, all windows on all frames that share that minibuffer count\n\ | |
432 | 860 too. This means that previous-window may be used to iterate through\n\ |
769 | 861 the set of windows even when the minibuffer is on another frame. If\n\ |
862 the minibuffer does not count, only windows from WINDOW's frame\n\ | |
432 | 863 count.\n\ |
864 \n\ | |
769 | 865 Optional third arg ALL-FRAMES t means include windows on all frames.\n\ |
866 ALL-FRAMES nil or omitted means cycle within the frames as specified\n\ | |
867 above. If neither nil nor t, restrict to WINDOW's frame.") | |
868 (window, minibuf, all_frames) | |
869 register Lisp_Object window, minibuf, all_frames; | |
265 | 870 { |
871 register Lisp_Object tem; | |
432 | 872 Lisp_Object start_window; |
265 | 873 |
485 | 874 if (NILP (window)) |
265 | 875 window = selected_window; |
876 else | |
877 CHECK_WINDOW (window, 0); | |
878 | |
432 | 879 start_window = window; |
265 | 880 |
432 | 881 /* minibuf == nil may or may not include minibuffers. |
882 Decide if it does. */ | |
485 | 883 if (NILP (minibuf)) |
432 | 884 minibuf = (minibuf_level ? Qt : Qlambda); |
265 | 885 |
769 | 886 /* all_frames == nil doesn't specify which frames to include. |
887 Decide which frames it includes. */ | |
888 if (NILP (all_frames)) | |
889 all_frames = (EQ (minibuf, Qt) | |
890 ? (FRAME_MINIBUF_WINDOW | |
891 (XFRAME | |
892 (WINDOW_FRAME | |
432 | 893 (XWINDOW (window))))) |
894 : Qnil); | |
769 | 895 else if (! EQ (all_frames, Qt)) |
896 all_frames = Qnil; | |
265 | 897 |
898 /* Do this loop at least once, to get the previous window, and perhaps | |
899 again, if we hit the minibuffer and that is not acceptable. */ | |
900 do | |
901 { | |
902 /* Find a window that actually has a previous one. This loop | |
903 climbs up the tree. */ | |
485 | 904 while (tem = XWINDOW (window)->prev, NILP (tem)) |
905 if (tem = XWINDOW (window)->parent, !NILP (tem)) | |
265 | 906 window = tem; |
432 | 907 else |
265 | 908 { |
769 | 909 /* We have found the top window on the frame. |
910 Which frames are acceptable? */ | |
911 tem = WINDOW_FRAME (XWINDOW (window)); | |
912 #ifdef MULTI_FRAME | |
913 if (! NILP (all_frames)) | |
914 tem = next_frame (tem, all_frames); | |
265 | 915 #endif |
769 | 916 tem = FRAME_ROOT_WINDOW (XFRAME (tem)); |
432 | 917 |
265 | 918 break; |
919 } | |
920 | |
921 window = tem; | |
922 /* If we're in a combination window, find its last child and | |
923 recurse on that. Otherwise, we've found the window we want. */ | |
924 while (1) | |
925 { | |
485 | 926 if (!NILP (XWINDOW (window)->hchild)) |
265 | 927 window = XWINDOW (window)->hchild; |
485 | 928 else if (!NILP (XWINDOW (window)->vchild)) |
265 | 929 window = XWINDOW (window)->vchild; |
930 else break; | |
485 | 931 while (tem = XWINDOW (window)->next, !NILP (tem)) |
265 | 932 window = tem; |
933 } | |
934 } | |
432 | 935 /* Which windows are acceptable? |
936 Exit the loop and accept this window if | |
265 | 937 this isn't a minibuffer window, or |
432 | 938 we're accepting minibuffer windows, or |
939 we've come all the way around and we're back at the original window. */ | |
265 | 940 while (MINI_WINDOW_P (XWINDOW (window)) |
432 | 941 && !EQ (minibuf, Qt) |
942 && window != start_window); | |
265 | 943 |
944 return window; | |
945 } | |
946 | |
338 | 947 DEFUN ("other-window", Fother_window, Sother_window, 1, 2, "p", |
769 | 948 "Select the ARG'th different window on this frame.\n\ |
949 All windows on current frame are arranged in a cyclic order.\n\ | |
265 | 950 This command selects the window ARG steps away in that order.\n\ |
951 A negative ARG moves in the opposite order. If the optional second\n\ | |
769 | 952 argument ALL_FRAMES is non-nil, cycle through all frames.") |
953 (n, all_frames) | |
954 register Lisp_Object n, all_frames; | |
265 | 955 { |
956 register int i; | |
957 register Lisp_Object w; | |
958 | |
959 CHECK_NUMBER (n, 0); | |
960 w = selected_window; | |
961 i = XINT (n); | |
962 | |
963 while (i > 0) | |
964 { | |
769 | 965 w = Fnext_window (w, Qnil, all_frames); |
265 | 966 i--; |
967 } | |
968 while (i < 0) | |
969 { | |
769 | 970 w = Fprevious_window (w, Qnil, all_frames); |
265 | 971 i++; |
972 } | |
973 Fselect_window (w); | |
974 return Qnil; | |
975 } | |
976 | |
977 /* Look at all windows, performing an operation specified by TYPE | |
978 with argument OBJ. | |
769 | 979 If FRAMES is Qt, look at all frames, if Qnil, look at just the selected |
980 frame. If FRAMES is a frame, just look at windows on that frame. | |
265 | 981 If MINI is non-zero, perform the operation on minibuffer windows too. |
982 */ | |
983 | |
984 enum window_loop | |
985 { | |
986 WINDOW_LOOP_UNUSED, | |
987 GET_BUFFER_WINDOW, /* Arg is buffer */ | |
988 GET_LRU_WINDOW, /* Arg is t for full-width windows only */ | |
989 DELETE_OTHER_WINDOWS, /* Arg is window not to delete */ | |
990 DELETE_BUFFER_WINDOWS, /* Arg is buffer */ | |
991 GET_LARGEST_WINDOW, | |
992 UNSHOW_BUFFER, /* Arg is buffer */ | |
993 }; | |
994 | |
995 static Lisp_Object | |
769 | 996 window_loop (type, obj, mini, frames) |
265 | 997 enum window_loop type; |
769 | 998 register Lisp_Object obj, frames; |
265 | 999 int mini; |
1000 { | |
1001 register Lisp_Object w; | |
1002 register Lisp_Object best_window; | |
1003 register Lisp_Object next_window; | |
1004 register Lisp_Object first_window; | |
769 | 1005 FRAME_PTR frame; |
265 | 1006 |
769 | 1007 /* If we're only looping through windows on a particular frame, |
1008 frame points to that frame. If we're looping through windows | |
1009 on all frames, frame is 0. */ | |
1010 if (FRAMEP (frames)) | |
1011 frame = XFRAME (frames); | |
1012 else if (NILP (frames)) | |
1013 frame = selected_frame; | |
265 | 1014 else |
769 | 1015 frame = 0; |
265 | 1016 |
1017 /* Pick a window to start with. */ | |
1018 if (XTYPE (obj) == Lisp_Window) | |
1019 first_window = obj; | |
769 | 1020 else if (frame) |
1021 first_window = FRAME_SELECTED_WINDOW (frame); | |
265 | 1022 else |
769 | 1023 first_window = FRAME_SELECTED_WINDOW (selected_frame); |
265 | 1024 |
1025 w = first_window; | |
1026 best_window = Qnil; | |
1027 do | |
1028 { | |
1029 /* Pick the next window now, since some operations will delete | |
1030 the current window. */ | |
769 | 1031 #ifdef MULTI_FRAME |
1032 if (frame) | |
432 | 1033 next_window = Fnext_window (w, (mini ? Qt : Qnil), Qlambda); |
265 | 1034 else |
769 | 1035 #endif /* MULTI_FRAME */ |
1036 /* We know frame is 0, so we're looping through all frames. | |
1037 Or we know this isn't a MULTI_FRAME Emacs, so who cares? */ | |
265 | 1038 next_window = Fnext_window (w, mini ? Qt : Qnil, Qt); |
1039 | |
1040 if (!MINI_WINDOW_P (XWINDOW (w)) | |
1041 || (mini && minibuf_level > 0)) | |
1042 switch (type) | |
1043 { | |
1044 case GET_BUFFER_WINDOW: | |
1045 #if 0 | |
769 | 1046 /* Ignore invisible and iconified frames. */ |
1047 if (! FRAME_VISIBLE_P (XFRAME (WINDOW_FRAME (XWINDOW (w)))) | |
1048 || FRAME_ICONIFIED_P (XFRAME (WINDOW_FRAME (XWINDOW (w))))) | |
265 | 1049 break; |
1050 #endif | |
1051 if (XBUFFER (XWINDOW (w)->buffer) == XBUFFER (obj)) | |
1052 return w; | |
1053 break; | |
1054 | |
1055 case GET_LRU_WINDOW: | |
1056 /* t as arg means consider only full-width windows */ | |
732 | 1057 if (!NILP (obj) && XFASTINT (XWINDOW (w)->width) |
769 | 1058 != FRAME_WIDTH (frame)) |
265 | 1059 break; |
1060 #if 0 | |
769 | 1061 /* Ignore invisible and iconified frames. */ |
1062 if (! FRAME_VISIBLE_P (XFRAME (WINDOW_FRAME (XWINDOW (w)))) | |
1063 || FRAME_ICONIFIED_P (XFRAME (WINDOW_FRAME (XWINDOW (w))))) | |
265 | 1064 break; |
1065 #endif | |
1066 /* Ignore dedicated windows and minibuffers. */ | |
1067 if (MINI_WINDOW_P (XWINDOW (w)) | |
485 | 1068 || !NILP (XWINDOW (w)->dedicated)) |
265 | 1069 break; |
485 | 1070 if (NILP (best_window) |
265 | 1071 || (XFASTINT (XWINDOW (best_window)->use_time) |
1072 > XFASTINT (XWINDOW (w)->use_time))) | |
1073 best_window = w; | |
1074 break; | |
1075 | |
1076 case DELETE_OTHER_WINDOWS: | |
1077 if (XWINDOW (w) != XWINDOW (obj)) | |
1078 Fdelete_window (w); | |
1079 break; | |
1080 | |
1081 case DELETE_BUFFER_WINDOWS: | |
1082 if (EQ (XWINDOW (w)->buffer, obj)) | |
1083 { | |
1084 /* If we're deleting the buffer displayed in the only window | |
769 | 1085 on the frame, find a new buffer to display there. */ |
485 | 1086 if (NILP (XWINDOW (w)->parent)) |
265 | 1087 { |
1088 Lisp_Object new_buffer = Fother_buffer (obj); | |
485 | 1089 if (NILP (new_buffer)) |
265 | 1090 new_buffer |
1091 = Fget_buffer_create (build_string ("*scratch*")); | |
1092 Fset_window_buffer (w, new_buffer); | |
1093 Fset_buffer (XWINDOW (w)->buffer); | |
1094 } | |
1095 else | |
1096 Fdelete_window (w); | |
1097 } | |
1098 break; | |
1099 | |
1100 case GET_LARGEST_WINDOW: | |
1101 #if 0 | |
769 | 1102 /* Ignore invisible and iconified frames. */ |
1103 if (! FRAME_VISIBLE_P (XFRAME (WINDOW_FRAME (XWINDOW (w)))) | |
1104 || FRAME_ICONIFIED_P (XFRAME (WINDOW_FRAME (XWINDOW (w))))) | |
265 | 1105 break; |
1106 #endif | |
1107 /* Ignore dedicated windows and minibuffers. */ | |
1108 if (MINI_WINDOW_P (XWINDOW (w)) | |
485 | 1109 || !NILP (XWINDOW (w)->dedicated)) |
265 | 1110 break; |
1111 { | |
1112 struct window *best_window_ptr = XWINDOW (best_window); | |
1113 struct window *w_ptr = XWINDOW (w); | |
485 | 1114 if (NILP (best_window) || |
265 | 1115 (XFASTINT (w_ptr->height) * XFASTINT (w_ptr->width)) |
1116 > (XFASTINT (best_window_ptr->height) | |
1117 * XFASTINT (best_window_ptr->width))) | |
1118 best_window = w; | |
1119 } | |
1120 break; | |
1121 | |
1122 case UNSHOW_BUFFER: | |
1123 if (EQ (XWINDOW (w)->buffer, obj)) | |
1124 { | |
1125 /* Find another buffer to show in this window. */ | |
1126 Lisp_Object another_buffer = Fother_buffer (obj); | |
485 | 1127 if (NILP (another_buffer)) |
265 | 1128 another_buffer |
1129 = Fget_buffer_create (build_string ("*scratch*")); | |
1130 Fset_window_buffer (w, another_buffer); | |
1131 if (EQ (w, selected_window)) | |
1132 Fset_buffer (XWINDOW (w)->buffer); | |
1133 } | |
1134 break; | |
1135 } | |
1136 w = next_window; | |
1137 } | |
1138 while (! EQ (w, first_window)); | |
1139 | |
1140 return best_window; | |
1141 } | |
1142 | |
1143 DEFUN ("get-lru-window", Fget_lru_window, Sget_lru_window, 0, 1, 0, | |
1144 "Return the window least recently selected or used for display.\n\ | |
769 | 1145 If optional argument FRAMES is t, search all frames. If FRAME is a\n\ |
1146 frame, search only that frame.\n") | |
1147 (frames) | |
1148 Lisp_Object frames; | |
265 | 1149 { |
1150 register Lisp_Object w; | |
1151 /* First try for a window that is full-width */ | |
769 | 1152 w = window_loop (GET_LRU_WINDOW, Qt, 0, frames); |
485 | 1153 if (!NILP (w) && !EQ (w, selected_window)) |
265 | 1154 return w; |
1155 /* If none of them, try the rest */ | |
769 | 1156 return window_loop (GET_LRU_WINDOW, Qnil, 0, frames); |
265 | 1157 } |
1158 | |
1159 DEFUN ("get-largest-window", Fget_largest_window, Sget_largest_window, 0, 1, 0, | |
1160 "Return the largest window in area.\n\ | |
769 | 1161 If optional argument FRAMES is t, search all frames. If FRAME is a\n\ |
1162 frame, search only that frame.\n") | |
1163 (frame) | |
1164 Lisp_Object frame; | |
265 | 1165 { |
1166 return window_loop (GET_LARGEST_WINDOW, Qnil, 0, | |
769 | 1167 frame); |
265 | 1168 } |
1169 | |
1170 DEFUN ("get-buffer-window", Fget_buffer_window, Sget_buffer_window, 1, 2, 0, | |
1171 "Return a window currently displaying BUFFER, or nil if none.\n\ | |
769 | 1172 If optional argument FRAMES is t, search all frames. If FRAME is a\n\ |
1173 frame, search only that frame.\n") | |
1174 (buffer, frame) | |
1175 Lisp_Object buffer, frame; | |
265 | 1176 { |
1177 buffer = Fget_buffer (buffer); | |
1178 if (XTYPE (buffer) == Lisp_Buffer) | |
769 | 1179 return window_loop (GET_BUFFER_WINDOW, buffer, 1, frame); |
265 | 1180 else |
1181 return Qnil; | |
1182 } | |
1183 | |
1184 DEFUN ("delete-other-windows", Fdelete_other_windows, Sdelete_other_windows, | |
1185 0, 1, "", | |
769 | 1186 "Make WINDOW (or the selected window) fill its frame.\n\ |
1187 Only the frame WINDOW is on is affected.") | |
265 | 1188 (window) |
1189 Lisp_Object window; | |
1190 { | |
1191 struct window *w; | |
1192 int opoint = point; | |
1193 struct buffer *obuf = current_buffer; | |
1194 int top; | |
1195 | |
485 | 1196 if (NILP (window)) |
265 | 1197 window = selected_window; |
1198 else | |
1199 CHECK_WINDOW (window, 0); | |
1200 | |
1201 w = XWINDOW (window); | |
1202 top = XFASTINT (w->top); | |
1203 | |
769 | 1204 window_loop (DELETE_OTHER_WINDOWS, window, 0, WINDOW_FRAME(w)); |
265 | 1205 |
1206 Fset_buffer (w->buffer); | |
1207 SET_PT (marker_position (w->start)); | |
1208 Frecenter (make_number (top)); | |
1209 | |
1210 set_buffer_internal (obuf); | |
1211 SET_PT (opoint); | |
1212 return Qnil; | |
1213 } | |
1214 | |
1215 DEFUN ("delete-windows-on", Fdelete_windows_on, Sdelete_windows_on, | |
1216 1, 1, "bDelete windows on (buffer): ", | |
1217 "Delete all windows showing BUFFER.") | |
1218 (buffer) | |
1219 Lisp_Object buffer; | |
1220 { | |
485 | 1221 if (!NILP (buffer)) |
265 | 1222 { |
1223 buffer = Fget_buffer (buffer); | |
1224 CHECK_BUFFER (buffer, 0); | |
1225 window_loop (DELETE_BUFFER_WINDOWS, buffer, 0, Qt); | |
1226 } | |
1227 return Qnil; | |
1228 } | |
1229 | |
1230 DEFUN ("replace-buffer-in-windows", Freplace_buffer_in_windows, | |
1231 Sreplace_buffer_in_windows, | |
1232 1, 1, "bReplace buffer in windows: ", | |
1233 "Replace BUFFER with some other buffer in all windows showing it.") | |
1234 (buffer) | |
1235 Lisp_Object buffer; | |
1236 { | |
485 | 1237 if (!NILP (buffer)) |
265 | 1238 { |
1239 buffer = Fget_buffer (buffer); | |
1240 CHECK_BUFFER (buffer, 0); | |
1241 window_loop (UNSHOW_BUFFER, buffer, 0, Qt); | |
1242 } | |
1243 return Qnil; | |
1244 } | |
1245 | |
1246 /* Set the height of WINDOW and all its inferiors. */ | |
972
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1247 |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1248 /* The smallest acceptable dimensions for a window. Anything smaller |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1249 might crash Emacs. */ |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1250 #define MIN_SAFE_WINDOW_WIDTH (2) |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1251 #define MIN_SAFE_WINDOW_HEIGHT (2) |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1252 |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1253 /* Make sure that window_min_height and window_min_width are |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1254 not too small; if they are, set them to safe minima. */ |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1255 |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1256 static void |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1257 check_min_window_sizes () |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1258 { |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1259 /* Smaller values might permit a crash. */ |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1260 if (window_min_width < MIN_SAFE_WINDOW_WIDTH) |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1261 window_min_width = MIN_SAFE_WINDOW_WIDTH; |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1262 if (window_min_height < MIN_SAFE_WINDOW_HEIGHT) |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1263 window_min_height = MIN_SAFE_WINDOW_HEIGHT; |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1264 } |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1265 |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1266 /* If *ROWS or *COLS are too small a size for FRAME, set them to the |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1267 minimum allowable size. */ |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1268 extern void |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1269 check_frame_size (frame, rows, cols) |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1270 FRAME_PTR frame; |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1271 int *rows, *cols; |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1272 { |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1273 /* For height, we have to see whether the frame has a minibuffer, and |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1274 whether it wants a mode line. */ |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1275 int min_height = |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1276 ((FRAME_MINIBUF_ONLY_P (frame) |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1277 || ! FRAME_HAS_MINIBUF_P (frame)) |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1278 ? MIN_SAFE_WINDOW_HEIGHT |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1279 : 2 * MIN_SAFE_WINDOW_HEIGHT - 1); |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1280 |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1281 if (*rows < min_height) |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1282 *rows = min_height; |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1283 if (*cols < MIN_SAFE_WINDOW_WIDTH) |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1284 *cols = MIN_SAFE_WINDOW_WIDTH; |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1285 } |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1286 |
265 | 1287 /* Normally the window is deleted if it gets too small. |
1288 nodelete nonzero means do not do this. | |
1289 (The caller should check later and do so if appropriate) */ | |
1290 | |
1291 set_window_height (window, height, nodelete) | |
1292 Lisp_Object window; | |
1293 int height; | |
1294 int nodelete; | |
1295 { | |
1296 register struct window *w = XWINDOW (window); | |
1297 register struct window *c; | |
1298 int oheight = XFASTINT (w->height); | |
1299 int top, pos, lastbot, opos, lastobot; | |
1300 Lisp_Object child; | |
1301 | |
972
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1302 check_min_window_sizes (); |
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1303 |
265 | 1304 if (!nodelete |
485 | 1305 && ! NILP (w->parent) |
265 | 1306 && height < window_min_height) |
1307 { | |
1308 Fdelete_window (window); | |
1309 return; | |
1310 } | |
1311 | |
1312 XFASTINT (w->last_modified) = 0; | |
1313 windows_or_buffers_changed++; | |
1314 XFASTINT (w->height) = height; | |
485 | 1315 if (!NILP (w->hchild)) |
265 | 1316 { |
485 | 1317 for (child = w->hchild; !NILP (child); child = XWINDOW (child)->next) |
265 | 1318 { |
1319 XWINDOW (child)->top = w->top; | |
1320 set_window_height (child, height, nodelete); | |
1321 } | |
1322 } | |
485 | 1323 else if (!NILP (w->vchild)) |
265 | 1324 { |
1325 lastbot = top = XFASTINT (w->top); | |
1326 lastobot = 0; | |
485 | 1327 for (child = w->vchild; !NILP (child); child = c->next) |
265 | 1328 { |
1329 c = XWINDOW (child); | |
1330 | |
1331 opos = lastobot + XFASTINT (c->height); | |
1332 | |
1333 XFASTINT (c->top) = lastbot; | |
1334 | |
1335 pos = (((opos * height) << 1) + oheight) / (oheight << 1); | |
1336 | |
1337 /* Avoid confusion: inhibit deletion of child if becomes too small */ | |
1338 set_window_height (child, pos + top - lastbot, 1); | |
1339 | |
1340 /* Now advance child to next window, | |
1341 and set lastbot if child was not just deleted. */ | |
1342 lastbot = pos + top; | |
1343 lastobot = opos; | |
1344 } | |
1345 /* Now delete any children that became too small. */ | |
1346 if (!nodelete) | |
485 | 1347 for (child = w->vchild; !NILP (child); child = XWINDOW (child)->next) |
265 | 1348 { |
1349 set_window_height (child, XINT (XWINDOW (child)->height), 0); | |
1350 } | |
1351 } | |
1352 } | |
1353 | |
1354 /* Recursively set width of WINDOW and its inferiors. */ | |
1355 | |
1356 set_window_width (window, width, nodelete) | |
1357 Lisp_Object window; | |
1358 int width; | |
1359 int nodelete; | |
1360 { | |
1361 register struct window *w = XWINDOW (window); | |
1362 register struct window *c; | |
1363 int owidth = XFASTINT (w->width); | |
1364 int left, pos, lastright, opos, lastoright; | |
1365 Lisp_Object child; | |
1366 | |
1367 if (!nodelete && width < window_min_width) | |
1368 { | |
1369 Fdelete_window (window); | |
1370 return; | |
1371 } | |
1372 | |
1373 XFASTINT (w->last_modified) = 0; | |
1374 windows_or_buffers_changed++; | |
1375 XFASTINT (w->width) = width; | |
485 | 1376 if (!NILP (w->vchild)) |
265 | 1377 { |
485 | 1378 for (child = w->vchild; !NILP (child); child = XWINDOW (child)->next) |
265 | 1379 { |
1380 XWINDOW (child)->left = w->left; | |
1381 set_window_width (child, width, nodelete); | |
1382 } | |
1383 } | |
485 | 1384 else if (!NILP (w->hchild)) |
265 | 1385 { |
1386 lastright = left = XFASTINT (w->left); | |
1387 lastoright = 0; | |
485 | 1388 for (child = w->hchild; !NILP (child); child = c->next) |
265 | 1389 { |
1390 c = XWINDOW (child); | |
1391 | |
1392 opos = lastoright + XFASTINT (c->width); | |
1393 | |
1394 XFASTINT (c->left) = lastright; | |
1395 | |
1396 pos = (((opos * width) << 1) + owidth) / (owidth << 1); | |
1397 | |
1398 /* Inhibit deletion for becoming too small */ | |
1399 set_window_width (child, pos + left - lastright, 1); | |
1400 | |
1401 /* Now advance child to next window, | |
1402 and set lastright if child was not just deleted. */ | |
1403 lastright = pos + left, lastoright = opos; | |
1404 } | |
1405 /* Delete children that became too small */ | |
1406 if (!nodelete) | |
485 | 1407 for (child = w->hchild; !NILP (child); child = XWINDOW (child)->next) |
265 | 1408 { |
1409 set_window_width (child, XINT (XWINDOW (child)->width), 0); | |
1410 } | |
1411 } | |
1412 } | |
1413 | |
362 | 1414 int window_select_count; |
265 | 1415 |
1416 DEFUN ("set-window-buffer", Fset_window_buffer, Sset_window_buffer, 2, 2, 0, | |
1417 "Make WINDOW display BUFFER as its contents.\n\ | |
1418 BUFFER can be a buffer or buffer name.") | |
1419 (window, buffer) | |
1420 register Lisp_Object window, buffer; | |
1421 { | |
1422 register Lisp_Object tem; | |
1423 register struct window *w = decode_window (window); | |
1424 | |
1425 buffer = Fget_buffer (buffer); | |
1426 CHECK_BUFFER (buffer, 1); | |
1427 | |
485 | 1428 if (NILP (XBUFFER (buffer)->name)) |
265 | 1429 error ("Attempt to display deleted buffer"); |
1430 | |
1431 tem = w->buffer; | |
485 | 1432 if (NILP (tem)) |
265 | 1433 error ("Window is deleted"); |
1434 else if (! EQ (tem, Qt)) /* w->buffer is t when the window | |
1435 is first being set up. */ | |
1436 { | |
485 | 1437 if (!NILP (w->dedicated) && !EQ (tem, buffer)) |
265 | 1438 error ("Window is dedicated to %s\n", tem); |
1439 | |
1440 unshow_buffer (w); | |
1441 } | |
1442 | |
1443 w->buffer = buffer; | |
1444 Fset_marker (w->pointm, | |
1445 make_number (BUF_PT (XBUFFER (buffer))), | |
1446 buffer); | |
1447 set_marker_restricted (w->start, | |
1448 make_number (XBUFFER (buffer)->last_window_start), | |
1449 buffer); | |
1450 w->start_at_line_beg = Qnil; | |
1451 XFASTINT (w->last_modified) = 0; | |
1452 windows_or_buffers_changed++; | |
1453 if (EQ (window, selected_window)) | |
1454 Fset_buffer (buffer); | |
1455 | |
1456 return Qnil; | |
1457 } | |
1458 | |
1459 DEFUN ("select-window", Fselect_window, Sselect_window, 1, 1, 0, | |
1460 "Select WINDOW. Most editing will apply to WINDOW's buffer.\n\ | |
1461 The main editor command loop selects the buffer of the selected window\n\ | |
1462 before each command.") | |
1463 (window) | |
1464 register Lisp_Object window; | |
1465 { | |
1466 register struct window *w; | |
1467 register struct window *ow = XWINDOW (selected_window); | |
1468 | |
1469 CHECK_WINDOW (window, 0); | |
1470 | |
1471 w = XWINDOW (window); | |
1472 | |
485 | 1473 if (NILP (w->buffer)) |
265 | 1474 error ("Trying to select deleted window or non-leaf window"); |
1475 | |
1476 XFASTINT (w->use_time) = ++window_select_count; | |
1477 if (EQ (window, selected_window)) | |
1478 return window; | |
1479 | |
1480 Fset_marker (ow->pointm, make_number (BUF_PT (XBUFFER (ow->buffer))), | |
1481 ow->buffer); | |
1482 | |
1483 selected_window = window; | |
769 | 1484 #ifdef MULTI_FRAME |
1485 if (XFRAME (WINDOW_FRAME (w)) != selected_frame) | |
265 | 1486 { |
769 | 1487 XFRAME (WINDOW_FRAME (w))->selected_window = window; |
1488 Fselect_frame (WINDOW_FRAME (w), Qnil); | |
265 | 1489 } |
1490 else | |
769 | 1491 selected_frame->selected_window = window; |
265 | 1492 #endif |
1493 | |
1494 record_buffer (w->buffer); | |
1495 Fset_buffer (w->buffer); | |
1496 | |
1497 /* Go to the point recorded in the window. | |
1498 This is important when the buffer is in more | |
1499 than one window. It also matters when | |
1500 redisplay_window has altered point after scrolling, | |
1501 because it makes the change only in the window. */ | |
1502 { | |
1503 register int new_point = marker_position (w->pointm); | |
1504 if (new_point < BEGV) | |
1505 SET_PT (BEGV); | |
1506 if (new_point > ZV) | |
1507 SET_PT (ZV); | |
1508 else | |
1509 SET_PT (new_point); | |
1510 } | |
1511 | |
1512 windows_or_buffers_changed++; | |
1513 return window; | |
1514 } | |
1515 | |
735 | 1516 DEFUN ("display-buffer", Fdisplay_buffer, Sdisplay_buffer, 1, 2, |
1517 "BDisplay buffer:\nP", | |
265 | 1518 "Make BUFFER appear in some window but don't select it.\n\ |
1519 BUFFER can be a buffer or a buffer name.\n\ | |
1520 If BUFFER is shown already in some window, just use that one,\n\ | |
1521 unless the window is the selected window and the optional second\n\ | |
1522 argument NOT_THIS_WINDOW is non-nil.\n\ | |
1523 Returns the window displaying BUFFER.") | |
1524 (buffer, not_this_window) | |
1525 register Lisp_Object buffer, not_this_window; | |
1526 { | |
1527 register Lisp_Object window; | |
1528 | |
1529 buffer = Fget_buffer (buffer); | |
1530 CHECK_BUFFER (buffer, 0); | |
1531 | |
485 | 1532 if (!NILP (Vdisplay_buffer_function)) |
265 | 1533 return call2 (Vdisplay_buffer_function, buffer, not_this_window); |
1534 | |
485 | 1535 if (NILP (not_this_window) |
265 | 1536 && XBUFFER (XWINDOW (selected_window)->buffer) == XBUFFER (buffer)) |
1537 return selected_window; | |
1538 | |
1539 window = Fget_buffer_window (buffer, Qnil); | |
485 | 1540 if (!NILP (window) |
1541 && (NILP (not_this_window) || !EQ (window, selected_window))) | |
265 | 1542 return window; |
1543 | |
769 | 1544 #ifdef MULTI_FRAME |
1545 /* If there are no frames open that have more than a minibuffer, | |
1546 we need to create a new frame. */ | |
1547 if (pop_up_frames || last_nonminibuf_frame == 0) | |
265 | 1548 { |
1549 window | |
769 | 1550 = Fframe_selected_window (call0 (Vpop_up_frame_function)); |
265 | 1551 Fset_window_buffer (window, buffer); |
1552 #if 0 | |
769 | 1553 Fselect_frame (XWINDOW (window)->frame, Qnil); |
265 | 1554 #endif |
1555 return window; | |
1556 } | |
769 | 1557 #endif /* MULTI_FRAME */ |
265 | 1558 |
358 | 1559 if (pop_up_windows |
769 | 1560 #ifdef MULTI_FRAME |
1561 || FRAME_MINIBUF_ONLY_P (selected_frame) | |
358 | 1562 #endif |
1563 ) | |
1564 { | |
769 | 1565 Lisp_Object frames = Qnil; |
358 | 1566 |
769 | 1567 #ifdef MULTI_FRAME |
1568 if (FRAME_MINIBUF_ONLY_P (selected_frame)) | |
1569 XSET (frames, Lisp_Frame, last_nonminibuf_frame); | |
265 | 1570 #endif |
1571 /* Don't try to create a window if would get an error */ | |
1572 if (split_height_threshold < window_min_height << 1) | |
1573 split_height_threshold = window_min_height << 1; | |
1574 | |
769 | 1575 window = Fget_largest_window (frames); |
265 | 1576 |
485 | 1577 if (!NILP (window) |
265 | 1578 && window_height (window) >= split_height_threshold |
1579 && | |
1580 (XFASTINT (XWINDOW (window)->width) | |
769 | 1581 == FRAME_WIDTH (XFRAME (WINDOW_FRAME (XWINDOW (window)))))) |
265 | 1582 window = Fsplit_window (window, Qnil, Qnil); |
1583 else | |
1584 { | |
769 | 1585 window = Fget_lru_window (frames); |
265 | 1586 if ((EQ (window, selected_window) |
1587 || EQ (XWINDOW (window)->parent, Qnil)) | |
1588 && window_height (window) >= window_min_height << 1) | |
1589 window = Fsplit_window (window, Qnil, Qnil); | |
1590 } | |
1591 } | |
1592 else | |
1593 window = Fget_lru_window (Qnil); | |
1594 | |
1595 Fset_window_buffer (window, buffer); | |
1596 return window; | |
1597 } | |
1598 | |
1599 void | |
1600 temp_output_buffer_show (buf) | |
1601 register Lisp_Object buf; | |
1602 { | |
1603 register struct buffer *old = current_buffer; | |
1604 register Lisp_Object window; | |
1605 register struct window *w; | |
1606 | |
1607 Fset_buffer (buf); | |
1608 XBUFFER (buf)->save_modified = MODIFF; | |
1609 BEGV = BEG; | |
1610 ZV = Z; | |
1611 SET_PT (BEG); | |
1612 clip_changed = 1; | |
1613 set_buffer_internal (old); | |
1614 | |
1615 if (!EQ (Vtemp_buffer_show_function, Qnil)) | |
1616 call1 (Vtemp_buffer_show_function, buf); | |
1617 else | |
1618 { | |
1619 window = Fdisplay_buffer (buf, Qnil); | |
1620 | |
769 | 1621 #ifdef MULTI_FRAME |
1622 if (XFRAME (XWINDOW (window)->frame) != selected_frame) | |
1623 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (window))); | |
1624 #endif /* MULTI_FRAME */ | |
265 | 1625 Vminibuf_scroll_window = window; |
1626 w = XWINDOW (window); | |
1627 XFASTINT (w->hscroll) = 0; | |
1628 set_marker_restricted (w->start, make_number (1), buf); | |
1629 set_marker_restricted (w->pointm, make_number (1), buf); | |
1630 } | |
1631 } | |
1632 | |
1633 static | |
1634 make_dummy_parent (window) | |
1635 Lisp_Object window; | |
1636 { | |
1637 register Lisp_Object old, new; | |
1638 register struct window *o, *p; | |
1639 | |
1640 old = window; | |
1641 XSETTYPE (old, Lisp_Vector); | |
1642 new = Fcopy_sequence (old); | |
1643 XSETTYPE (new, Lisp_Window); | |
1644 | |
1645 o = XWINDOW (old); | |
1646 p = XWINDOW (new); | |
1647 XFASTINT (p->sequence_number) = ++sequence_number; | |
1648 | |
1649 /* Put new into window structure in place of window */ | |
1650 replace_window (window, new); | |
1651 | |
1652 o->next = Qnil; | |
1653 o->prev = Qnil; | |
1654 o->vchild = Qnil; | |
1655 o->hchild = Qnil; | |
1656 o->parent = new; | |
1657 | |
1658 p->start = Qnil; | |
1659 p->pointm = Qnil; | |
1660 p->buffer = Qnil; | |
1661 } | |
1662 | |
1663 DEFUN ("split-window", Fsplit_window, Ssplit_window, 0, 3, "", | |
1664 "Split WINDOW, putting SIZE lines in the first of the pair.\n\ | |
1665 WINDOW defaults to selected one and SIZE to half its size.\n\ | |
1666 If optional third arg HOR-FLAG is non-nil, split side by side\n\ | |
1667 and put SIZE columns in the first of the pair.") | |
1668 (window, chsize, horflag) | |
1669 Lisp_Object window, chsize, horflag; | |
1670 { | |
1671 register Lisp_Object new; | |
1672 register struct window *o, *p; | |
1673 register int size; | |
1674 | |
485 | 1675 if (NILP (window)) |
265 | 1676 window = selected_window; |
1677 else | |
1678 CHECK_WINDOW (window, 0); | |
1679 | |
1680 o = XWINDOW (window); | |
1681 | |
485 | 1682 if (NILP (chsize)) |
265 | 1683 { |
485 | 1684 if (!NILP (horflag)) |
265 | 1685 /* Round odd size up, since this is for the left-hand window, |
1686 and it will lose a column for the separators. */ | |
1687 size = ((XFASTINT (o->width) + 1) & -2) >> 1; | |
1688 else | |
1689 size = XFASTINT (o->height) >> 1; | |
1690 } | |
1691 else | |
1692 { | |
1693 CHECK_NUMBER (chsize, 1); | |
1694 size = XINT (chsize); | |
1695 } | |
1696 | |
1697 if (MINI_WINDOW_P (o)) | |
1698 error ("Attempt to split minibuffer window"); | |
769 | 1699 else if (FRAME_NO_SPLIT_P (XFRAME (WINDOW_FRAME (o)))) |
1700 error ("Attempt to split unsplittable frame"); | |
265 | 1701 |
972
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1702 check_min_window_sizes (); |
265 | 1703 |
485 | 1704 if (NILP (horflag)) |
265 | 1705 { |
1706 if (size < window_min_height | |
1707 || size + window_min_height > XFASTINT (o->height)) | |
1708 args_out_of_range_3 (window, chsize, horflag); | |
485 | 1709 if (NILP (o->parent) |
1710 || NILP (XWINDOW (o->parent)->vchild)) | |
265 | 1711 { |
1712 make_dummy_parent (window); | |
1713 new = o->parent; | |
1714 XWINDOW (new)->vchild = window; | |
1715 } | |
1716 } | |
1717 else | |
1718 { | |
1719 if (size < window_min_width | |
1720 || size + window_min_width > XFASTINT (o->width)) | |
1721 args_out_of_range_3 (window, chsize, horflag); | |
485 | 1722 if (NILP (o->parent) |
1723 || NILP (XWINDOW (o->parent)->hchild)) | |
265 | 1724 { |
1725 make_dummy_parent (window); | |
1726 new = o->parent; | |
1727 XWINDOW (new)->hchild = window; | |
1728 } | |
1729 } | |
1730 | |
1731 /* Now we know that window's parent is a vertical combination | |
1732 if we are dividing vertically, or a horizontal combination | |
1733 if we are making side-by-side windows */ | |
1734 | |
1735 windows_or_buffers_changed++; | |
1736 new = make_window (); | |
1737 p = XWINDOW (new); | |
1738 | |
769 | 1739 p->frame = o->frame; |
265 | 1740 p->next = o->next; |
485 | 1741 if (!NILP (p->next)) |
265 | 1742 XWINDOW (p->next)->prev = new; |
1743 p->prev = window; | |
1744 o->next = new; | |
1745 p->parent = o->parent; | |
1746 p->buffer = Qt; | |
1747 | |
1748 Fset_window_buffer (new, o->buffer); | |
1749 | |
769 | 1750 /* Apportion the available frame space among the two new windows */ |
265 | 1751 |
485 | 1752 if (!NILP (horflag)) |
265 | 1753 { |
1754 p->height = o->height; | |
1755 p->top = o->top; | |
1756 XFASTINT (p->width) = XFASTINT (o->width) - size; | |
1757 XFASTINT (o->width) = size; | |
1758 XFASTINT (p->left) = XFASTINT (o->left) + size; | |
1759 } | |
1760 else | |
1761 { | |
1762 p->left = o->left; | |
1763 p->width = o->width; | |
1764 XFASTINT (p->height) = XFASTINT (o->height) - size; | |
1765 XFASTINT (o->height) = size; | |
1766 XFASTINT (p->top) = XFASTINT (o->top) + size; | |
1767 } | |
1768 | |
1769 return new; | |
1770 } | |
1771 | |
1772 DEFUN ("enlarge-window", Fenlarge_window, Senlarge_window, 1, 2, "p", | |
1773 "Make current window ARG lines bigger.\n\ | |
1774 From program, optional second arg non-nil means grow sideways ARG columns.") | |
1775 (n, side) | |
1776 register Lisp_Object n, side; | |
1777 { | |
1778 CHECK_NUMBER (n, 0); | |
485 | 1779 change_window_height (XINT (n), !NILP (side)); |
265 | 1780 return Qnil; |
1781 } | |
1782 | |
1783 DEFUN ("shrink-window", Fshrink_window, Sshrink_window, 1, 2, "p", | |
1784 "Make current window ARG lines smaller.\n\ | |
1785 From program, optional second arg non-nil means shrink sideways ARG columns.") | |
1786 (n, side) | |
1787 register Lisp_Object n, side; | |
1788 { | |
1789 CHECK_NUMBER (n, 0); | |
485 | 1790 change_window_height (-XINT (n), !NILP (side)); |
265 | 1791 return Qnil; |
1792 } | |
1793 | |
1794 int | |
1795 window_height (window) | |
1796 Lisp_Object window; | |
1797 { | |
1798 register struct window *p = XWINDOW (window); | |
1799 return XFASTINT (p->height); | |
1800 } | |
1801 | |
1802 int | |
1803 window_width (window) | |
1804 Lisp_Object window; | |
1805 { | |
1806 register struct window *p = XWINDOW (window); | |
1807 return XFASTINT (p->width); | |
1808 } | |
1809 | |
1810 #define MINSIZE(w) \ | |
1811 (widthflag ? window_min_width : window_min_height) | |
1812 | |
1813 #define CURBEG(w) \ | |
1814 *(widthflag ? (int *) &(w)->left : (int *) &(w)->top) | |
1815 | |
1816 #define CURSIZE(w) \ | |
1817 *(widthflag ? (int *) &(w)->width : (int *) &(w)->height) | |
1818 | |
1819 /* Unlike set_window_height, this function | |
1820 also changes the heights of the siblings so as to | |
1821 keep everything consistent. */ | |
1822 | |
1823 change_window_height (delta, widthflag) | |
1824 register int delta; | |
1825 int widthflag; | |
1826 { | |
1827 register Lisp_Object parent; | |
1828 Lisp_Object window; | |
1829 register struct window *p; | |
1830 int *sizep; | |
1831 int (*sizefun) () = widthflag ? window_width : window_height; | |
1832 register int (*setsizefun) () = (widthflag | |
1833 ? set_window_width | |
1834 : set_window_height); | |
1835 | |
972
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
1836 check_min_window_sizes (); |
265 | 1837 |
1838 window = selected_window; | |
1839 while (1) | |
1840 { | |
1841 p = XWINDOW (window); | |
1842 parent = p->parent; | |
485 | 1843 if (NILP (parent)) |
265 | 1844 { |
1845 if (widthflag) | |
1846 error ("No other window to side of this one"); | |
1847 break; | |
1848 } | |
485 | 1849 if (widthflag ? !NILP (XWINDOW (parent)->hchild) |
1850 : !NILP (XWINDOW (parent)->vchild)) | |
265 | 1851 break; |
1852 window = parent; | |
1853 } | |
1854 | |
1855 sizep = &CURSIZE (p); | |
1856 | |
1857 if (*sizep + delta < MINSIZE (p) | |
485 | 1858 && !NILP (XWINDOW (window)->parent)) |
265 | 1859 { |
1860 Fdelete_window (window); | |
1861 return; | |
1862 } | |
1863 | |
1864 { | |
1865 register int maxdelta; | |
1866 | |
485 | 1867 maxdelta = (!NILP (parent) ? (*sizefun) (parent) - *sizep |
1868 : !NILP (p->next) ? (*sizefun) (p->next) - MINSIZE (p->next) | |
1869 : !NILP (p->prev) ? (*sizefun) (p->prev) - MINSIZE (p->prev) | |
769 | 1870 /* This is a frame with only one window, a minibuffer-only |
1871 or a minibufferless frame. */ | |
432 | 1872 : (delta = 0)); |
265 | 1873 |
1874 if (delta > maxdelta) | |
1875 /* This case traps trying to make the minibuffer | |
769 | 1876 the full frame, or make the only window aside from the |
1877 minibuffer the full frame. */ | |
265 | 1878 delta = maxdelta; |
432 | 1879 |
1880 if (delta == 0) | |
1881 return; | |
265 | 1882 } |
1883 | |
485 | 1884 if (!NILP (p->next) && |
265 | 1885 (*sizefun) (p->next) - delta >= MINSIZE (p->next)) |
1886 { | |
1887 (*setsizefun) (p->next, (*sizefun) (p->next) - delta, 0); | |
1888 (*setsizefun) (window, *sizep + delta, 0); | |
1889 CURBEG (XWINDOW (p->next)) += delta; | |
1890 /* This does not change size of p->next, | |
1891 but it propagates the new top edge to its children */ | |
1892 (*setsizefun) (p->next, (*sizefun) (p->next), 0); | |
1893 } | |
485 | 1894 else if (!NILP (p->prev) && |
265 | 1895 (*sizefun) (p->prev) - delta >= MINSIZE (p->prev)) |
1896 { | |
1897 (*setsizefun) (p->prev, (*sizefun) (p->prev) - delta, 0); | |
1898 CURBEG (p) -= delta; | |
1899 (*setsizefun) (window, *sizep + delta, 0); | |
1900 } | |
1901 else | |
1902 { | |
1903 register int delta1; | |
1904 register int opht = (*sizefun) (parent); | |
1905 | |
1906 /* If trying to grow this window to or beyond size of the parent, | |
1907 make delta1 so big that, on shrinking back down, | |
1908 all the siblings end up with less than one line and are deleted. */ | |
1909 if (opht <= *sizep + delta) | |
1910 delta1 = opht * opht * 2; | |
1911 /* Otherwise, make delta1 just right so that if we add delta1 | |
1912 lines to this window and to the parent, and then shrink | |
1913 the parent back to its original size, the new proportional | |
1914 size of this window will increase by delta. */ | |
1915 else | |
1916 delta1 = (delta * opht * 100) / ((opht - *sizep - delta) * 100); | |
1917 | |
1918 /* Add delta1 lines or columns to this window, and to the parent, | |
1919 keeping things consistent while not affecting siblings. */ | |
1920 CURSIZE (XWINDOW (parent)) = opht + delta1; | |
1921 (*setsizefun) (window, *sizep + delta1, 0); | |
1922 | |
1923 /* Squeeze out delta1 lines or columns from our parent, | |
1924 shriking this window and siblings proportionately. | |
1925 This brings parent back to correct size. | |
1926 Delta1 was calculated so this makes this window the desired size, | |
1927 taking it all out of the siblings. */ | |
1928 (*setsizefun) (parent, opht, 0); | |
1929 } | |
1930 | |
1931 XFASTINT (p->last_modified) = 0; | |
1932 } | |
1933 #undef MINSIZE | |
1934 #undef CURBEG | |
1935 #undef CURSIZE | |
1936 | |
1937 | |
1938 /* Return number of lines of text (not counting mode line) in W. */ | |
1939 | |
1940 int | |
1941 window_internal_height (w) | |
1942 struct window *w; | |
1943 { | |
1944 int ht = XFASTINT (w->height); | |
1945 | |
1946 if (MINI_WINDOW_P (w)) | |
1947 return ht; | |
1948 | |
485 | 1949 if (!NILP (w->parent) || !NILP (w->vchild) || !NILP (w->hchild) |
1950 || !NILP (w->next) || !NILP (w->prev) | |
769 | 1951 || FRAME_WANTS_MODELINE_P (XFRAME (WINDOW_FRAME (w)))) |
265 | 1952 return ht - 1; |
1953 | |
1954 return ht; | |
1955 } | |
1956 | |
1957 /* Scroll contents of window WINDOW up N lines. */ | |
1958 | |
1959 void | |
522 | 1960 window_scroll (window, n, noerror) |
265 | 1961 Lisp_Object window; |
1962 int n; | |
522 | 1963 int noerror; |
265 | 1964 { |
1965 register struct window *w = XWINDOW (window); | |
1966 register int opoint = point; | |
1967 register int pos; | |
1968 register int ht = window_internal_height (w); | |
1969 register Lisp_Object tem; | |
1970 int lose; | |
1971 Lisp_Object bolp, nmoved; | |
1972 | |
1973 XFASTINT (tem) = point; | |
1974 tem = Fpos_visible_in_window_p (tem, window); | |
1975 | |
485 | 1976 if (NILP (tem)) |
265 | 1977 { |
1978 Fvertical_motion (make_number (- ht / 2)); | |
1979 XFASTINT (tem) = point; | |
1980 Fset_marker (w->start, tem, w->buffer); | |
1981 w->force_start = Qt; | |
1982 } | |
1983 | |
1984 SET_PT (marker_position (w->start)); | |
1985 lose = n < 0 && point == BEGV; | |
1986 Fvertical_motion (make_number (n)); | |
1987 pos = point; | |
1988 bolp = Fbolp (); | |
1989 SET_PT (opoint); | |
1990 | |
1991 if (lose) | |
522 | 1992 { |
1993 if (noerror) | |
1994 return; | |
1995 else | |
1996 Fsignal (Qbeginning_of_buffer, Qnil); | |
1997 } | |
265 | 1998 |
1999 if (pos < ZV) | |
2000 { | |
2001 set_marker_restricted (w->start, make_number (pos), w->buffer); | |
2002 w->start_at_line_beg = bolp; | |
2003 w->update_mode_line = Qt; | |
2004 XFASTINT (w->last_modified) = 0; | |
2005 if (pos > opoint) | |
2006 SET_PT (pos); | |
2007 if (n < 0) | |
2008 { | |
2009 SET_PT (pos); | |
2010 tem = Fvertical_motion (make_number (ht)); | |
2011 if (point > opoint || XFASTINT (tem) < ht) | |
2012 SET_PT (opoint); | |
2013 else | |
2014 Fvertical_motion (make_number (-1)); | |
2015 } | |
2016 } | |
2017 else | |
522 | 2018 { |
2019 if (noerror) | |
2020 return; | |
2021 else | |
2022 Fsignal (Qend_of_buffer, Qnil); | |
2023 } | |
265 | 2024 } |
2025 | |
2026 /* This is the guts of Fscroll_up and Fscroll_down. */ | |
2027 | |
2028 static void | |
2029 scroll_command (n, direction) | |
2030 register Lisp_Object n; | |
2031 int direction; | |
2032 { | |
2033 register int defalt; | |
2034 int count = specpdl_ptr - specpdl; | |
2035 | |
548 | 2036 /* If selected window's buffer isn't current, make it current for the moment. |
2037 But don't screw up if window_scroll gets an error. */ | |
265 | 2038 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer) |
548 | 2039 { |
2040 record_unwind_protect (save_excursion_restore, save_excursion_save ()); | |
2041 Fset_buffer (XWINDOW (selected_window)->buffer); | |
2042 } | |
265 | 2043 |
2044 defalt = (window_internal_height (XWINDOW (selected_window)) | |
2045 - next_screen_context_lines); | |
2046 defalt = direction * (defalt < 1 ? 1 : defalt); | |
2047 | |
485 | 2048 if (NILP (n)) |
522 | 2049 window_scroll (selected_window, defalt, 0); |
265 | 2050 else if (EQ (n, Qminus)) |
522 | 2051 window_scroll (selected_window, - defalt, 0); |
265 | 2052 else |
2053 { | |
2054 n = Fprefix_numeric_value (n); | |
522 | 2055 window_scroll (selected_window, XINT (n) * direction, 0); |
265 | 2056 } |
548 | 2057 |
2058 unbind_to (count, Qnil); | |
265 | 2059 } |
2060 | |
2061 DEFUN ("scroll-up", Fscroll_up, Sscroll_up, 0, 1, "P", | |
2062 "Scroll text of current window upward ARG lines; or near full screen if no ARG.\n\ | |
2063 A near full screen is `next-screen-context-lines' less than a full screen.\n\ | |
2064 When calling from a program, supply a number as argument or nil.") | |
2065 (n) | |
2066 Lisp_Object n; | |
2067 { | |
2068 scroll_command (n, 1); | |
2069 return Qnil; | |
2070 } | |
2071 | |
2072 DEFUN ("scroll-down", Fscroll_down, Sscroll_down, 0, 1, "P", | |
2073 "Scroll text of current window downward ARG lines; or near full screen if no ARG.\n\ | |
2074 A near full screen is `next-screen-context-lines' less than a full screen.\n\ | |
2075 When calling from a program, supply a number as argument or nil.") | |
2076 (n) | |
2077 Lisp_Object n; | |
2078 { | |
2079 scroll_command (n, -1); | |
2080 return Qnil; | |
2081 } | |
2082 | |
2083 DEFUN ("scroll-other-window", Fscroll_other_window, Sscroll_other_window, 0, 1, "P", | |
2084 "Scroll text of next window upward ARG lines; or near full screen if no ARG.\n\ | |
2085 The next window is the one below the current one; or the one at the top\n\ | |
2086 if the current one is at the bottom.\n\ | |
2087 When calling from a program, supply a number as argument or nil.\n\ | |
2088 \n\ | |
2089 If in the minibuffer, `minibuf-scroll-window' if non-nil\n\ | |
2090 specifies the window to scroll.\n\ | |
2091 If `other-window-scroll-buffer' is non-nil, scroll the window\n\ | |
2092 showing that buffer, popping the buffer up if necessary.") | |
2093 (n) | |
2094 register Lisp_Object n; | |
2095 { | |
2096 register Lisp_Object window; | |
2097 register int ht; | |
2098 register struct window *w; | |
2099 register int count = specpdl_ptr - specpdl; | |
2100 | |
2101 if (MINI_WINDOW_P (XWINDOW (selected_window)) | |
485 | 2102 && !NILP (Vminibuf_scroll_window)) |
265 | 2103 window = Vminibuf_scroll_window; |
2104 /* If buffer is specified, scroll that buffer. */ | |
485 | 2105 else if (!NILP (Vother_window_scroll_buffer)) |
265 | 2106 { |
2107 window = Fget_buffer_window (Vother_window_scroll_buffer, Qnil); | |
485 | 2108 if (NILP (window)) |
265 | 2109 window = Fdisplay_buffer (Vother_window_scroll_buffer, Qt); |
2110 } | |
2111 else | |
2112 /* Nothing specified; pick a neighboring window. */ | |
2113 window = Fnext_window (selected_window, Qnil, Qt); | |
2114 CHECK_WINDOW (window, 0); | |
2115 | |
2116 if (EQ (window, selected_window)) | |
2117 error ("There is no other window"); | |
2118 | |
2119 w = XWINDOW (window); | |
2120 ht = window_internal_height (w); | |
2121 | |
2122 /* Don't screw up if window_scroll gets an error. */ | |
2123 record_unwind_protect (save_excursion_restore, save_excursion_save ()); | |
2124 | |
2125 Fset_buffer (w->buffer); | |
2126 SET_PT (marker_position (w->pointm)); | |
2127 | |
485 | 2128 if (NILP (n)) |
522 | 2129 window_scroll (window, ht - next_screen_context_lines, 1); |
265 | 2130 else if (EQ (n, Qminus)) |
522 | 2131 window_scroll (window, next_screen_context_lines - ht, 1); |
265 | 2132 else |
2133 { | |
2134 if (XTYPE (n) == Lisp_Cons) | |
2135 n = Fcar (n); | |
2136 CHECK_NUMBER (n, 0); | |
522 | 2137 window_scroll (window, XINT (n), 1); |
265 | 2138 } |
2139 | |
2140 Fset_marker (w->pointm, make_number (point), Qnil); | |
2141 unbind_to (count); | |
2142 | |
2143 return Qnil; | |
2144 } | |
2145 | |
2146 DEFUN ("scroll-left", Fscroll_left, Sscroll_left, 1, 1, "P", | |
2147 "Scroll selected window display ARG columns left.\n\ | |
2148 Default for ARG is window width minus 2.") | |
2149 (arg) | |
2150 register Lisp_Object arg; | |
2151 { | |
2152 | |
485 | 2153 if (NILP (arg)) |
265 | 2154 XFASTINT (arg) = XFASTINT (XWINDOW (selected_window)->width) - 2; |
2155 else | |
2156 arg = Fprefix_numeric_value (arg); | |
2157 | |
2158 return | |
2159 Fset_window_hscroll (selected_window, | |
2160 make_number (XINT (XWINDOW (selected_window)->hscroll) | |
2161 + XINT (arg))); | |
2162 } | |
2163 | |
2164 DEFUN ("scroll-right", Fscroll_right, Sscroll_right, 1, 1, "P", | |
2165 "Scroll selected window display ARG columns right.\n\ | |
2166 Default for ARG is window width minus 2.") | |
2167 (arg) | |
2168 register Lisp_Object arg; | |
2169 { | |
485 | 2170 if (NILP (arg)) |
265 | 2171 XFASTINT (arg) = XFASTINT (XWINDOW (selected_window)->width) - 2; |
2172 else | |
2173 arg = Fprefix_numeric_value (arg); | |
2174 | |
2175 return | |
2176 Fset_window_hscroll (selected_window, | |
2177 make_number (XINT (XWINDOW (selected_window)->hscroll) | |
2178 - XINT (arg))); | |
2179 } | |
2180 | |
2181 DEFUN ("recenter", Frecenter, Srecenter, 0, 1, "P", | |
769 | 2182 "Center point in window and redisplay frame. With ARG, put point on line ARG.\n\ |
265 | 2183 The desired position of point is always relative to the current window.\n\ |
769 | 2184 Just C-u as prefix means put point in the center of the window.\n\ |
2185 No arg (i.e., it is nil) erases the entire frame and then\n\ | |
2186 redraws with point in the center of the current window.") | |
265 | 2187 (n) |
2188 register Lisp_Object n; | |
2189 { | |
2190 register struct window *w = XWINDOW (selected_window); | |
2191 register int ht = window_internal_height (w); | |
2192 register int opoint = point; | |
2193 | |
485 | 2194 if (NILP (n)) |
265 | 2195 { |
769 | 2196 extern int frame_garbaged; |
265 | 2197 |
769 | 2198 SET_FRAME_GARBAGED (XFRAME (WINDOW_FRAME (w))); |
265 | 2199 XFASTINT (n) = ht / 2; |
2200 } | |
2201 else if (XTYPE (n) == Lisp_Cons) /* Just C-u. */ | |
2202 { | |
2203 XFASTINT (n) = ht / 2; | |
2204 } | |
2205 else | |
2206 { | |
2207 n = Fprefix_numeric_value (n); | |
2208 CHECK_NUMBER (n, 0); | |
2209 } | |
2210 | |
2211 if (XINT (n) < 0) | |
2212 XSETINT (n, XINT (n) + ht); | |
2213 | |
2214 XSETINT (n, - XINT (n)); | |
2215 | |
2216 Fvertical_motion (n); | |
2217 Fset_marker (w->start, make_number (point), w->buffer); | |
2218 w->start_at_line_beg = Fbolp (); | |
2219 | |
2220 SET_PT (opoint); | |
2221 w->force_start = Qt; | |
2222 | |
2223 return Qnil; | |
2224 } | |
2225 | |
2226 DEFUN ("move-to-window-line", Fmove_to_window_line, Smove_to_window_line, | |
2227 1, 1, "P", | |
2228 "Position point relative to window.\n\ | |
2229 With no argument, position text at center of window.\n\ | |
769 | 2230 An argument specifies frame line; zero means top of window,\n\ |
265 | 2231 negative means relative to bottom of window.") |
2232 (arg) | |
2233 register Lisp_Object arg; | |
2234 { | |
2235 register struct window *w = XWINDOW (selected_window); | |
2236 register int height = window_internal_height (w); | |
2237 register int start; | |
2238 | |
485 | 2239 if (NILP (arg)) |
265 | 2240 XFASTINT (arg) = height / 2; |
2241 else | |
2242 { | |
2243 arg = Fprefix_numeric_value (arg); | |
2244 if (XINT (arg) < 0) | |
2245 XSETINT (arg, XINT (arg) + height); | |
2246 } | |
2247 | |
2248 start = marker_position (w->start); | |
2249 if (start < BEGV || start > ZV) | |
2250 { | |
2251 Fvertical_motion (make_number (- height / 2)); | |
2252 Fset_marker (w->start, make_number (point), w->buffer); | |
2253 w->start_at_line_beg = Fbolp (); | |
2254 w->force_start = Qt; | |
2255 } | |
2256 else | |
2257 SET_PT (start); | |
2258 | |
2259 return Fvertical_motion (arg); | |
2260 } | |
2261 | |
2262 struct save_window_data | |
2263 { | |
2264 int size_from_Lisp_Vector_struct; | |
2265 struct Lisp_Vector *next_from_Lisp_Vector_struct; | |
769 | 2266 Lisp_Object frame_width, frame_height; |
265 | 2267 Lisp_Object current_window; |
2268 Lisp_Object current_buffer; | |
2269 Lisp_Object minibuf_scroll_window; | |
2270 Lisp_Object root_window; | |
2271 /* A vector, interpreted as a struct saved_window */ | |
2272 Lisp_Object saved_windows; | |
2273 }; | |
2274 #define SAVE_WINDOW_DATA_SIZE 7 /* Arg to Fmake_vector */ | |
2275 | |
2276 /* This is saved as a Lisp_Vector */ | |
2277 struct saved_window | |
2278 { | |
2279 /* these first two must agree with struct Lisp_Vector in lisp.h */ | |
2280 int size_from_Lisp_Vector_struct; | |
2281 struct Lisp_Vector *next_from_Lisp_Vector_struct; | |
2282 | |
2283 Lisp_Object window; | |
2284 Lisp_Object buffer, start, pointm, mark; | |
2285 Lisp_Object left, top, width, height, hscroll; | |
2286 Lisp_Object parent, prev; | |
2287 Lisp_Object start_at_line_beg; | |
2288 Lisp_Object display_table; | |
2289 }; | |
2290 #define SAVED_WINDOW_VECTOR_SIZE 14 /* Arg to Fmake_vector */ | |
2291 | |
2292 #define SAVED_WINDOW_N(swv,n) \ | |
2293 ((struct saved_window *) (XVECTOR ((swv)->contents[(n)]))) | |
2294 | |
2295 DEFUN ("window-configuration-p", Fwindow_configuration_p, Swindow_configuration_p, 1, 1, 0, | |
2296 "T if OBJECT is a window-configration object.") | |
2297 (obj) | |
2298 Lisp_Object obj; | |
2299 { | |
2300 if (XTYPE (obj) == Lisp_Window_Configuration) | |
2301 return Qt; | |
2302 return Qnil; | |
2303 } | |
2304 | |
2305 | |
2306 DEFUN ("set-window-configuration", | |
2307 Fset_window_configuration, Sset_window_configuration, | |
2308 1, 1, 0, | |
2309 "Set the configuration of windows and buffers as specified by CONFIGURATION.\n\ | |
2310 CONFIGURATION must be a value previously returned\n\ | |
2311 by `current-window-configuration' (which see).") | |
2312 (arg) | |
2313 Lisp_Object arg; | |
2314 { | |
2315 register struct window *w; | |
2316 register struct save_window_data *data; | |
2317 struct Lisp_Vector *saved_windows; | |
2318 register struct saved_window *p; | |
2319 register Lisp_Object tem; | |
2320 Lisp_Object new_current_buffer; | |
2321 int k; | |
769 | 2322 FRAME_PTR f; |
265 | 2323 |
2324 while (XTYPE (arg) != Lisp_Window_Configuration) | |
2325 { | |
2326 arg = wrong_type_argument (intern ("window-configuration-p"), arg); | |
2327 } | |
2328 | |
2329 data = (struct save_window_data *) XVECTOR (arg); | |
2330 saved_windows = XVECTOR (data->saved_windows); | |
2331 | |
769 | 2332 f = XFRAME (XWINDOW (SAVED_WINDOW_N (saved_windows, 0)->window)->frame); |
265 | 2333 |
769 | 2334 if (XFASTINT (data->frame_height) != FRAME_HEIGHT (f) |
2335 || XFASTINT (data->frame_width) != FRAME_WIDTH (f)) | |
265 | 2336 { |
2337 /* Presumably something clever could be done. | |
2338 However, it doesn't seem worth the effort */ | |
769 | 2339 error ("Frame size %dx%d in saved window configuration mismatches frame.", |
2340 XFASTINT (data->frame_height), | |
2341 XFASTINT (data->frame_width)); | |
265 | 2342 } |
2343 | |
2344 windows_or_buffers_changed++; | |
2345 new_current_buffer = data->current_buffer; | |
485 | 2346 if (NILP (XBUFFER (new_current_buffer)->name)) |
265 | 2347 new_current_buffer = Qnil; |
2348 | |
769 | 2349 /* Mark all windows now on frame as "deleted". |
265 | 2350 Restoring the new configuration "undeletes" any that are in it. */ |
2351 | |
769 | 2352 delete_all_subwindows (XWINDOW (FRAME_ROOT_WINDOW (f))); |
265 | 2353 #if 0 |
769 | 2354 /* This loses when the minibuf frame is not f. */ |
265 | 2355 delete_all_subwindows (XWINDOW (XWINDOW (minibuf_window)->prev)); |
2356 #endif | |
2357 | |
2358 for (k = 0; k < saved_windows->size; k++) | |
2359 { | |
2360 p = SAVED_WINDOW_N (saved_windows, k); | |
2361 w = XWINDOW (p->window); | |
2362 w->next = Qnil; | |
2363 | |
485 | 2364 if (!NILP (p->parent)) |
265 | 2365 w->parent = SAVED_WINDOW_N (saved_windows, XFASTINT (p->parent))->window; |
2366 else | |
2367 w->parent = Qnil; | |
2368 | |
485 | 2369 if (!NILP (p->prev)) |
265 | 2370 { |
2371 w->prev = SAVED_WINDOW_N (saved_windows, XFASTINT (p->prev))->window; | |
769 | 2372 #ifdef MULTI_FRAME |
2373 /* This is true for a minibuffer-only frame. */ | |
265 | 2374 if (w->mini_p && EQ (w->prev, p->window)) |
2375 w->next = Qnil; | |
2376 else | |
769 | 2377 #endif /* MULTI_FRAME */ |
265 | 2378 XWINDOW (w->prev)->next = p->window; |
2379 } | |
2380 else | |
2381 { | |
2382 w->prev = Qnil; | |
485 | 2383 if (!NILP (w->parent)) |
265 | 2384 { |
2385 if (EQ (p->width, XWINDOW (w->parent)->width)) | |
2386 { | |
2387 XWINDOW (w->parent)->vchild = p->window; | |
2388 XWINDOW (w->parent)->hchild = Qnil; | |
2389 } | |
2390 else | |
2391 { | |
2392 XWINDOW (w->parent)->hchild = p->window; | |
2393 XWINDOW (w->parent)->vchild = Qnil; | |
2394 } | |
2395 } | |
2396 } | |
2397 w->left = p->left; | |
2398 w->top = p->top; | |
2399 w->width = p->width; | |
2400 w->height = p->height; | |
2401 w->hscroll = p->hscroll; | |
2402 w->display_table = p->display_table; | |
2403 XFASTINT (w->last_modified) = 0; | |
2404 | |
2405 /* Reinstall the saved buffer and pointers into it. */ | |
485 | 2406 if (NILP (p->buffer)) |
265 | 2407 w->buffer = p->buffer; |
2408 else | |
2409 { | |
485 | 2410 if (!NILP (XBUFFER (p->buffer)->name)) |
265 | 2411 /* If saved buffer is alive, install it. */ |
2412 { | |
2413 w->buffer = p->buffer; | |
2414 w->start_at_line_beg = p->start_at_line_beg; | |
2415 set_marker_restricted (w->start, Fmarker_position (p->start), w->buffer); | |
2416 set_marker_restricted (w->pointm, Fmarker_position (p->pointm), w->buffer); | |
2417 Fset_marker (XBUFFER (w->buffer)->mark, | |
2418 Fmarker_position (p->mark), w->buffer); | |
2419 | |
2420 if (!EQ (p->buffer, new_current_buffer) && | |
2421 XBUFFER (p->buffer) == current_buffer) | |
2422 Fgoto_char (w->pointm); | |
2423 } | |
485 | 2424 else if (NILP (XBUFFER (w->buffer)->name)) |
265 | 2425 /* Else if window's old buffer is dead too, get a live one. */ |
2426 { | |
2427 w->buffer = Fcdr (Fcar (Vbuffer_alist)); | |
2428 /* This will set the markers to beginning of visible range. */ | |
2429 set_marker_restricted (w->start, make_number (0), w->buffer); | |
2430 set_marker_restricted (w->pointm, make_number (0), w->buffer); | |
2431 w->start_at_line_beg = Qt; | |
2432 } | |
2433 else | |
2434 /* Keeping window's old buffer; make sure the markers are real. */ | |
2435 /* Else if window's old buffer is dead too, get a live one. */ | |
2436 { | |
2437 /* Set window markers at start of visible range. */ | |
2438 if (XMARKER (w->start)->buffer == 0) | |
2439 set_marker_restricted (w->start, make_number (0), w->buffer); | |
2440 if (XMARKER (w->pointm)->buffer == 0) | |
2441 set_marker_restricted (w->pointm, | |
2442 make_number (BUF_PT (XBUFFER (w->buffer))), | |
2443 w->buffer); | |
2444 w->start_at_line_beg = Qt; | |
2445 } | |
2446 } | |
2447 } | |
2448 | |
769 | 2449 FRAME_ROOT_WINDOW (f) = data->root_window; |
265 | 2450 |
769 | 2451 #ifdef MULTI_FRAME |
972
f47d221cbfe6
* window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents:
780
diff
changeset
|
2452 if (f != selected_frame && ! FRAME_TERMCAP_P (f)) |
769 | 2453 Fselect_frame (WINDOW_FRAME (XWINDOW (data->root_window)), Qnil); |
265 | 2454 #endif |
2455 | |
769 | 2456 if (f == selected_frame) |
265 | 2457 { |
2458 Fselect_window (data->current_window); | |
485 | 2459 if (!NILP (new_current_buffer)) |
265 | 2460 Fset_buffer (new_current_buffer); |
2461 else | |
2462 Fset_buffer (XWINDOW (selected_window)->buffer); | |
2463 } | |
2464 | |
2465 Vminibuf_scroll_window = data->minibuf_scroll_window; | |
2466 return (Qnil); | |
2467 } | |
2468 | |
769 | 2469 /* Mark all windows now on frame as deleted |
265 | 2470 by setting their buffers to nil. */ |
2471 | |
2472 static void | |
2473 delete_all_subwindows (w) | |
2474 register struct window *w; | |
2475 { | |
2476 register int count = 1; | |
2477 w->buffer = Qnil; | |
485 | 2478 if (!NILP (w->next)) |
265 | 2479 delete_all_subwindows (XWINDOW (w->next)); |
485 | 2480 if (!NILP (w->vchild)) |
265 | 2481 delete_all_subwindows (XWINDOW (w->vchild)); |
485 | 2482 if (!NILP (w->hchild)) |
265 | 2483 delete_all_subwindows (XWINDOW (w->hchild)); |
2484 } | |
2485 | |
2486 static int | |
2487 count_windows (window) | |
2488 register struct window *window; | |
2489 { | |
2490 register int count = 1; | |
485 | 2491 if (!NILP (window->next)) |
265 | 2492 count += count_windows (XWINDOW (window->next)); |
485 | 2493 if (!NILP (window->vchild)) |
265 | 2494 count += count_windows (XWINDOW (window->vchild)); |
485 | 2495 if (!NILP (window->hchild)) |
265 | 2496 count += count_windows (XWINDOW (window->hchild)); |
2497 return count; | |
2498 } | |
2499 | |
2500 static int | |
2501 save_window_save (window, vector, i) | |
2502 Lisp_Object window; | |
2503 struct Lisp_Vector *vector; | |
2504 int i; | |
2505 { | |
2506 register struct saved_window *p; | |
2507 register struct window *w; | |
2508 register Lisp_Object tem; | |
2509 | |
485 | 2510 for (;!NILP (window); window = w->next) |
265 | 2511 { |
2512 p = SAVED_WINDOW_N (vector, i); | |
2513 w = XWINDOW (window); | |
2514 | |
2515 XFASTINT (w->temslot) = i++; | |
2516 p->window = window; | |
2517 p->buffer = w->buffer; | |
2518 p->left = w->left; | |
2519 p->top = w->top; | |
2520 p->width = w->width; | |
2521 p->height = w->height; | |
2522 p->hscroll = w->hscroll; | |
2523 p->display_table = w->display_table; | |
485 | 2524 if (!NILP (w->buffer)) |
265 | 2525 { |
2526 /* Save w's value of point in the window configuration. | |
2527 If w is the selected window, then get the value of point | |
2528 from the buffer; pointm is garbage in the selected window. */ | |
2529 if (EQ (window, selected_window)) | |
2530 { | |
2531 p->pointm = Fmake_marker (); | |
2532 Fset_marker (p->pointm, BUF_PT (XBUFFER (w->buffer)), | |
2533 w->buffer); | |
2534 } | |
2535 else | |
2536 p->pointm = Fcopy_marker (w->pointm); | |
2537 | |
2538 p->start = Fcopy_marker (w->start); | |
2539 p->start_at_line_beg = w->start_at_line_beg; | |
2540 | |
2541 tem = XBUFFER (w->buffer)->mark; | |
2542 p->mark = Fcopy_marker (tem); | |
2543 } | |
2544 else | |
2545 { | |
2546 p->pointm = Qnil; | |
2547 p->start = Qnil; | |
2548 p->mark = Qnil; | |
2549 p->start_at_line_beg = Qnil; | |
2550 } | |
2551 | |
485 | 2552 if (NILP (w->parent)) |
265 | 2553 p->parent = Qnil; |
2554 else | |
2555 p->parent = XWINDOW (w->parent)->temslot; | |
2556 | |
485 | 2557 if (NILP (w->prev)) |
265 | 2558 p->prev = Qnil; |
2559 else | |
2560 p->prev = XWINDOW (w->prev)->temslot; | |
2561 | |
485 | 2562 if (!NILP (w->vchild)) |
265 | 2563 i = save_window_save (w->vchild, vector, i); |
485 | 2564 if (!NILP (w->hchild)) |
265 | 2565 i = save_window_save (w->hchild, vector, i); |
2566 } | |
2567 | |
2568 return i; | |
2569 } | |
2570 | |
2571 DEFUN ("current-window-configuration", | |
358 | 2572 Fcurrent_window_configuration, Scurrent_window_configuration, 0, 1, 0, |
769 | 2573 "Return an object representing the current window configuration of FRAME.\n\ |
2574 If FRAME is nil or omitted, use the selected frame.\n\ | |
265 | 2575 This describes the number of windows, their sizes and current buffers,\n\ |
2576 and for each displayed buffer, where display starts, and the positions of\n\ | |
2577 point and mark. An exception is made for point in the current buffer:\n\ | |
2578 its value is -not- saved.") | |
769 | 2579 (frame) |
2580 Lisp_Object frame; | |
265 | 2581 { |
2582 register Lisp_Object tem; | |
2583 register int n_windows; | |
2584 register struct save_window_data *data; | |
2585 register int i; | |
769 | 2586 FRAME_PTR f; |
265 | 2587 |
769 | 2588 if (NILP (frame)) |
2589 f = selected_frame; | |
358 | 2590 else |
2591 { | |
769 | 2592 CHECK_LIVE_FRAME (frame, 0); |
2593 f = XFRAME (frame); | |
358 | 2594 } |
2595 | |
769 | 2596 n_windows = count_windows (XWINDOW (FRAME_ROOT_WINDOW (f))); |
265 | 2597 data = (struct save_window_data *) |
2598 XVECTOR (Fmake_vector (make_number (SAVE_WINDOW_DATA_SIZE), | |
2599 Qnil)); | |
769 | 2600 XFASTINT (data->frame_width) = FRAME_WIDTH (f); |
2601 XFASTINT (data->frame_height) = FRAME_HEIGHT (f); | |
2602 data->current_window = FRAME_SELECTED_WINDOW (f); | |
265 | 2603 XSET (data->current_buffer, Lisp_Buffer, current_buffer); |
2604 data->minibuf_scroll_window = Vminibuf_scroll_window; | |
769 | 2605 data->root_window = FRAME_ROOT_WINDOW (f); |
265 | 2606 tem = Fmake_vector (make_number (n_windows), Qnil); |
2607 data->saved_windows = tem; | |
2608 for (i = 0; i < n_windows; i++) | |
2609 XVECTOR (tem)->contents[i] | |
2610 = Fmake_vector (make_number (SAVED_WINDOW_VECTOR_SIZE), Qnil); | |
769 | 2611 save_window_save (FRAME_ROOT_WINDOW (f), |
265 | 2612 XVECTOR (tem), 0); |
2613 XSET (tem, Lisp_Window_Configuration, data); | |
2614 return (tem); | |
2615 } | |
2616 | |
2617 DEFUN ("save-window-excursion", Fsave_window_excursion, Ssave_window_excursion, | |
2618 0, UNEVALLED, 0, | |
2619 "Execute body, preserving window sizes and contents.\n\ | |
2620 Restores which buffer appears in which window, where display starts,\n\ | |
2621 as well as the current buffer.\n\ | |
2622 Does not restore the value of point in current buffer.") | |
2623 (args) | |
2624 Lisp_Object args; | |
2625 { | |
2626 register Lisp_Object val; | |
2627 register int count = specpdl_ptr - specpdl; | |
2628 | |
2629 record_unwind_protect (Fset_window_configuration, | |
358 | 2630 Fcurrent_window_configuration (Qnil)); |
265 | 2631 val = Fprogn (args); |
2632 return unbind_to (count, val); | |
2633 } | |
2634 | |
2635 init_window_once () | |
2636 { | |
769 | 2637 #ifdef MULTI_FRAME |
2638 selected_frame = make_terminal_frame (); | |
2639 minibuf_window = selected_frame->minibuffer_window; | |
2640 selected_window = selected_frame->selected_window; | |
2641 last_nonminibuf_frame = selected_frame; | |
2642 #else /* not MULTI_FRAME */ | |
265 | 2643 extern Lisp_Object get_minibuffer (); |
2644 | |
769 | 2645 FRAME_ROOT_WINDOW (selected_frame) = make_window (); |
548 | 2646 minibuf_window = make_window (); |
265 | 2647 |
769 | 2648 XWINDOW (FRAME_ROOT_WINDOW (selected_frame))->next = minibuf_window; |
2649 XWINDOW (minibuf_window)->prev = FRAME_ROOT_WINDOW (selected_frame); | |
265 | 2650 |
2651 /* These values 9 and 10 are arbitrary, | |
2652 just so that there is "something there." | |
2653 Correct values are put in in init_xdisp */ | |
2654 | |
769 | 2655 XFASTINT (XWINDOW (FRAME_ROOT_WINDOW (selected_frame))->width) = 10; |
265 | 2656 XFASTINT (XWINDOW (minibuf_window)->width) = 10; |
2657 | |
769 | 2658 XFASTINT (XWINDOW (FRAME_ROOT_WINDOW (selected_frame))->height) = 9; |
265 | 2659 XFASTINT (XWINDOW (minibuf_window)->top) = 9; |
2660 XFASTINT (XWINDOW (minibuf_window)->height) = 1; | |
2661 | |
2662 /* Prevent error in Fset_window_buffer. */ | |
769 | 2663 XWINDOW (FRAME_ROOT_WINDOW (selected_frame))->buffer = Qt; |
265 | 2664 XWINDOW (minibuf_window)->buffer = Qt; |
2665 | |
2666 /* Now set them up for real. */ | |
769 | 2667 Fset_window_buffer (FRAME_ROOT_WINDOW (selected_frame), |
732 | 2668 Fcurrent_buffer ()); |
265 | 2669 Fset_window_buffer (minibuf_window, get_minibuffer (0)); |
2670 | |
769 | 2671 selected_window = FRAME_ROOT_WINDOW (selected_frame); |
362 | 2672 /* Make sure this window seems more recently used than |
2673 a newly-created, never-selected window. Increment | |
2674 window_select_count so the first selection ever will get | |
2675 something newer than this. */ | |
2676 XFASTINT (XWINDOW (selected_window)->use_time) = ++window_select_count; | |
769 | 2677 #endif /* not MULTI_FRAME */ |
265 | 2678 } |
2679 | |
2680 syms_of_window () | |
2681 { | |
2682 Qwindowp = intern ("windowp"); | |
2683 staticpro (&Qwindowp); | |
2684 | |
2685 /* Make sure all windows get marked */ | |
2686 staticpro (&minibuf_window); | |
2687 | |
2688 DEFVAR_LISP ("temp-buffer-show-function", &Vtemp_buffer_show_function, | |
2689 "Non-nil means call as function to display a help buffer.\n\ | |
2690 Used by `with-output-to-temp-buffer'."); | |
2691 Vtemp_buffer_show_function = Qnil; | |
2692 | |
2693 DEFVAR_LISP ("display-buffer-function", &Vdisplay_buffer_function, | |
2694 "If non-nil, function to call to handle `display-buffer'.\n\ | |
2695 It will receive two args, the buffer and a flag which if non-nil means\n\ | |
2696 that the currently selected window is not acceptable.\n\ | |
2697 Commands such as `switch-to-buffer-other-window' and `find-file-other-window'\n\ | |
2698 work using this function."); | |
2699 Vdisplay_buffer_function = Qnil; | |
2700 | |
2701 DEFVAR_LISP ("mouse-window", &Vmouse_window, | |
2702 "Window that the last mouse click occurred on."); | |
2703 Vmouse_window = Qnil; | |
2704 | |
2705 DEFVAR_LISP ("mouse-event", &Vmouse_event, | |
2706 "The last mouse-event object. A list of four elements:\n\ | |
769 | 2707 ((X-POS Y-POS) WINDOW FRAME-PART KEYSEQ).\n\ |
265 | 2708 KEYSEQ is a string, the key sequence to be looked up in the mouse maps.\n\ |
2709 WINDOW is the window that the click applies do.\n\ | |
769 | 2710 If FRAME-PART is non-nil, the event was on a scrollbar;\n\ |
265 | 2711 then Y-POS is really the total length of the scrollbar, while X-POS is\n\ |
2712 the relative position of the scrollbar's value within that total length.\n\ | |
769 | 2713 FRAME-PART is one of the following symbols:\n\ |
265 | 2714 `vertical-scrollbar', `vertical-slider',\n\ |
2715 `vertical-thumbup', `vertical-thumbdown',\n\ | |
2716 `horizontal-scrollbar', `horizontal-slider',\n\ | |
2717 `horizontal-thumbleft', `horizontal-thumbright'"); | |
2718 Vmouse_event = Qnil; | |
2719 | |
2720 DEFVAR_LISP ("minibuffer-scroll-window", &Vminibuf_scroll_window, | |
2721 "Non-nil means it is the window that C-M-v in minibuffer should scroll."); | |
2722 Vminibuf_scroll_window = Qnil; | |
2723 | |
2724 DEFVAR_LISP ("other-window-scroll-buffer", &Vother_window_scroll_buffer, | |
2725 "If non-nil, this is a buffer and \\[scroll-other-window] should scroll its window."); | |
2726 Vother_window_scroll_buffer = Qnil; | |
2727 | |
769 | 2728 #ifdef MULTI_FRAME |
2729 DEFVAR_BOOL ("pop-up-frames", &pop_up_frames, | |
780 | 2730 "*Non-nil means `display-buffer' should make a separate frame."); |
769 | 2731 pop_up_frames = 0; |
265 | 2732 |
769 | 2733 DEFVAR_LISP ("pop-up-frame-function", &Vpop_up_frame_function, |
2734 "*If non-nil, function to call to handle automatic new frame creation.\n\ | |
2735 It is called with no arguments and should return a newly created frame.\n\ | |
265 | 2736 \n\ |
769 | 2737 A typical value might be `(lambda () (new-frame pop-up-frame-alist))'\n\ |
2738 where `pop-up-frame-alist' would hold the default frame parameters."); | |
2739 Vpop_up_frame_function = Qnil; | |
265 | 2740 #endif |
2741 | |
2742 DEFVAR_BOOL ("pop-up-windows", &pop_up_windows, | |
2743 "*Non-nil means display-buffer should make new windows."); | |
2744 pop_up_windows = 1; | |
2745 | |
2746 DEFVAR_INT ("next-screen-context-lines", &next_screen_context_lines, | |
2747 "*Number of lines of continuity when scrolling by screenfuls."); | |
2748 next_screen_context_lines = 2; | |
2749 | |
2750 DEFVAR_INT ("split-height-threshold", &split_height_threshold, | |
2751 "*display-buffer would prefer to split the largest window if this large.\n\ | |
2752 If there is only one window, it is split regardless of this value."); | |
2753 split_height_threshold = 500; | |
2754 | |
2755 DEFVAR_INT ("window-min-height", &window_min_height, | |
2756 "*Delete any window less than this tall (including its mode line)."); | |
2757 window_min_height = 4; | |
2758 | |
2759 DEFVAR_INT ("window-min-width", &window_min_width, | |
2760 "*Delete any window less than this wide."); | |
2761 window_min_width = 10; | |
2762 | |
2763 defsubr (&Sselected_window); | |
2764 defsubr (&Sminibuffer_window); | |
2765 defsubr (&Swindow_minibuffer_p); | |
2766 defsubr (&Swindowp); | |
2767 defsubr (&Spos_visible_in_window_p); | |
2768 defsubr (&Swindow_buffer); | |
2769 defsubr (&Swindow_height); | |
2770 defsubr (&Swindow_width); | |
2771 defsubr (&Swindow_hscroll); | |
2772 defsubr (&Sset_window_hscroll); | |
2773 defsubr (&Swindow_edges); | |
432 | 2774 defsubr (&Scoordinates_in_window_p); |
2775 defsubr (&Swindow_at); | |
265 | 2776 defsubr (&Swindow_point); |
2777 defsubr (&Swindow_start); | |
2778 defsubr (&Swindow_end); | |
2779 defsubr (&Sset_window_point); | |
2780 defsubr (&Sset_window_start); | |
2781 defsubr (&Swindow_dedicated_p); | |
722
0a2391511b46
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
708
diff
changeset
|
2782 defsubr (&Sset_window_dedicated_p); |
265 | 2783 defsubr (&Swindow_display_table); |
2784 defsubr (&Sset_window_display_table); | |
2785 defsubr (&Snext_window); | |
2786 defsubr (&Sprevious_window); | |
2787 defsubr (&Sother_window); | |
2788 defsubr (&Sget_lru_window); | |
2789 defsubr (&Sget_largest_window); | |
2790 defsubr (&Sget_buffer_window); | |
2791 defsubr (&Sdelete_other_windows); | |
2792 defsubr (&Sdelete_windows_on); | |
2793 defsubr (&Sreplace_buffer_in_windows); | |
2794 defsubr (&Sdelete_window); | |
2795 defsubr (&Sset_window_buffer); | |
2796 defsubr (&Sselect_window); | |
2797 defsubr (&Sdisplay_buffer); | |
2798 defsubr (&Ssplit_window); | |
2799 defsubr (&Senlarge_window); | |
2800 defsubr (&Sshrink_window); | |
2801 defsubr (&Sscroll_up); | |
2802 defsubr (&Sscroll_down); | |
2803 defsubr (&Sscroll_left); | |
2804 defsubr (&Sscroll_right); | |
2805 defsubr (&Sscroll_other_window); | |
2806 defsubr (&Srecenter); | |
2807 defsubr (&Smove_to_window_line); | |
2808 defsubr (&Swindow_configuration_p); | |
2809 defsubr (&Sset_window_configuration); | |
2810 defsubr (&Scurrent_window_configuration); | |
2811 defsubr (&Ssave_window_excursion); | |
2812 } | |
2813 | |
2814 keys_of_window () | |
2815 { | |
2816 initial_define_key (control_x_map, '1', "delete-other-windows"); | |
2817 initial_define_key (control_x_map, '2', "split-window"); | |
2818 initial_define_key (control_x_map, '0', "delete-window"); | |
2819 initial_define_key (control_x_map, 'o', "other-window"); | |
2820 initial_define_key (control_x_map, '^', "enlarge-window"); | |
2821 initial_define_key (control_x_map, '<', "scroll-left"); | |
2822 initial_define_key (control_x_map, '>', "scroll-right"); | |
2823 | |
2824 initial_define_key (global_map, Ctl ('V'), "scroll-up"); | |
2825 initial_define_key (meta_map, Ctl ('V'), "scroll-other-window"); | |
2826 initial_define_key (meta_map, 'v', "scroll-down"); | |
2827 | |
2828 initial_define_key (global_map, Ctl('L'), "recenter"); | |
2829 initial_define_key (meta_map, 'r', "move-to-window-line"); | |
2830 } |