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