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