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