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