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