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