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