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