0
|
1 /* Window creation, deletion and examination for XEmacs.
|
|
2 Copyright (C) 1985-1987, 1992-1995 Free Software Foundation, Inc.
|
|
3 Copyright (C) 1994, 1995 Board of Trustees, University of Illinois.
|
|
4 Copyright (C) 1995, 1996 Ben Wing.
|
|
5 Copyright (C) 1996 Chuck Thompson.
|
|
6
|
|
7 This file is part of XEmacs.
|
|
8
|
|
9 XEmacs is free software; you can redistribute it and/or modify it
|
|
10 under the terms of the GNU General Public License as published by the
|
|
11 Free Software Foundation; either version 2, or (at your option) any
|
|
12 later version.
|
|
13
|
|
14 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
17 for more details.
|
|
18
|
|
19 You should have received a copy of the GNU General Public License
|
|
20 along with XEmacs; see the file COPYING. If not, write to
|
|
21 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
22 Boston, MA 02111-1307, USA. */
|
|
23
|
|
24 /* Synched up with: FSF 19.30. */
|
|
25 /* Beginning to diverge significantly. */
|
|
26
|
|
27 /* This file has been Mule-ized. */
|
|
28
|
|
29 #include <config.h>
|
|
30 #include "lisp.h"
|
|
31
|
|
32 #include "buffer.h"
|
|
33 #include "faces.h"
|
|
34 #include "frame.h"
|
|
35 #include "objects.h"
|
|
36 #include "glyphs.h"
|
|
37 #include "redisplay.h"
|
|
38 #include "window.h"
|
|
39 #include "commands.h"
|
|
40
|
272
|
41 Lisp_Object Qwindowp, Qwindow_live_p, Qwindow_configurationp;
|
|
42 Lisp_Object Qscroll_up, Qscroll_down, Qdisplay_buffer;
|
0
|
43
|
|
44 #ifdef MEMORY_USAGE_STATS
|
272
|
45 Lisp_Object Qface_cache, Qglyph_cache, Qline_start_cache, Qother_redisplay;
|
0
|
46 #ifdef HAVE_SCROLLBARS
|
|
47 Lisp_Object Qscrollbar_instances;
|
|
48 #endif
|
|
49 #endif
|
|
50
|
272
|
51 EXFUN (Fnext_window, 4);
|
|
52
|
0
|
53 static int window_pixel_width_to_char_width (struct window *w,
|
|
54 int pixel_width,
|
|
55 int include_margins_p);
|
|
56 static int window_char_width_to_pixel_width (struct window *w,
|
|
57 int char_width,
|
|
58 int include_margins_p);
|
|
59 static int window_pixel_height_to_char_height (struct window *w,
|
|
60 int pixel_height,
|
|
61 int include_gutters_p);
|
|
62 static int window_char_height_to_pixel_height (struct window *w,
|
|
63 int char_height,
|
|
64 int include_gutters_p);
|
263
|
65 static void change_window_height (struct window *w, int delta, int widthflag,
|
|
66 int inpixels);
|
|
67 static int window_displayed_pixel_height (struct window *);
|
0
|
68
|
|
69 /* Thickness of shadow border around 3d modelines. */
|
|
70 Lisp_Object Vmodeline_shadow_thickness;
|
|
71
|
|
72 /* Whether a modeline should be displayed. */
|
|
73 Lisp_Object Vhas_modeline_p;
|
|
74
|
|
75 /* Scroll if point lands on the bottom line and that line is partially
|
|
76 clipped. */
|
|
77 int scroll_on_clipped_lines;
|
|
78
|
|
79 /* The minibuffer window of the selected frame.
|
|
80 Note that you cannot test for minibufferness of an arbitrary window
|
|
81 by comparing against this; but you can test for minibufferness of
|
|
82 the selected window. */
|
|
83 Lisp_Object minibuf_window;
|
|
84
|
|
85 /* Non-nil means it is the window for C-M-v to scroll
|
|
86 when the minibuffer is selected. */
|
274
|
87 Lisp_Object Vminibuffer_scroll_window;
|
0
|
88
|
|
89 /* Non-nil means this is the buffer whose window C-M-v should scroll. */
|
|
90 Lisp_Object Vother_window_scroll_buffer;
|
|
91
|
102
|
92 /* Non-nil means it's the function to call to display temp buffers. */
|
0
|
93 Lisp_Object Vtemp_buffer_show_function;
|
|
94
|
|
95 Lisp_Object Vtemp_buffer_show_hook;
|
|
96
|
|
97 /* If a window gets smaller than either of these, it is removed. */
|
|
98 int window_min_height;
|
|
99 int window_min_width;
|
|
100
|
|
101 /* Hook run at end of temp_output_buffer_show. */
|
|
102 Lisp_Object Qtemp_buffer_show_hook;
|
|
103
|
|
104 /* Number of lines of continuity in scrolling by screenfuls. */
|
|
105 int next_screen_context_lines;
|
|
106
|
|
107 /* List of freed window configurations with 1 - 10 windows. */
|
|
108 Lisp_Object Vwindow_configuration_free_list[10];
|
|
109
|
|
110 #define SET_LAST_MODIFIED(w, cache_too) \
|
|
111 do { \
|
|
112 (w)->last_modified[CURRENT_DISP] = Qzero; \
|
|
113 (w)->last_modified[DESIRED_DISP] = Qzero; \
|
|
114 (w)->last_modified[CMOTION_DISP] = Qzero; \
|
|
115 if (cache_too) \
|
|
116 (w)->line_cache_last_updated = Qzero; \
|
|
117 } while (0)
|
|
118
|
|
119 #define SET_LAST_FACECHANGE(w) \
|
|
120 do { \
|
|
121 (w)->last_facechange[CURRENT_DISP] = Qzero; \
|
|
122 (w)->last_facechange[DESIRED_DISP] = Qzero; \
|
|
123 (w)->last_facechange[CMOTION_DISP] = Qzero; \
|
|
124 } while (0)
|
|
125
|
|
126
|
102
|
127 #define MARK_DISP_VARIABLE(field) \
|
|
128 ((markobj) (window->field[CURRENT_DISP])); \
|
|
129 ((markobj) (window->field[DESIRED_DISP])); \
|
0
|
130 ((markobj) (window->field[CMOTION_DISP]));
|
|
131
|
|
132 static Lisp_Object
|
|
133 mark_window (Lisp_Object obj, void (*markobj) (Lisp_Object))
|
|
134 {
|
|
135 struct window *window = XWINDOW (obj);
|
|
136 ((markobj) (window->frame));
|
|
137 ((markobj) (window->mini_p));
|
|
138 ((markobj) (window->next));
|
|
139 ((markobj) (window->prev));
|
|
140 ((markobj) (window->hchild));
|
|
141 ((markobj) (window->vchild));
|
|
142 ((markobj) (window->parent));
|
|
143 ((markobj) (window->buffer));
|
|
144 MARK_DISP_VARIABLE (start);
|
|
145 MARK_DISP_VARIABLE (pointm);
|
|
146 ((markobj) (window->sb_point)); /* #### move to scrollbar.c? */
|
|
147 ((markobj) (window->use_time));
|
|
148 MARK_DISP_VARIABLE (last_modified);
|
|
149 MARK_DISP_VARIABLE (last_point);
|
|
150 MARK_DISP_VARIABLE (last_start);
|
|
151 MARK_DISP_VARIABLE (last_facechange);
|
|
152 ((markobj) (window->line_cache_last_updated));
|
|
153 ((markobj) (window->redisplay_end_trigger));
|
|
154 /* Cached specifiers: */
|
|
155 ((markobj) (window->display_table));
|
|
156 ((markobj) (window->has_modeline_p));
|
|
157 ((markobj) (window->modeline_shadow_thickness));
|
|
158 #ifdef HAVE_SCROLLBARS
|
|
159 ((markobj) (window->scrollbar_width));
|
|
160 ((markobj) (window->scrollbar_height));
|
|
161 ((markobj) (window->scrollbar_pointer));
|
102
|
162 #endif /* HAVE_SCROLLBARS */
|
0
|
163 ((markobj) (window->left_margin_width));
|
|
164 ((markobj) (window->right_margin_width));
|
|
165 #ifdef HAVE_TOOLBARS
|
|
166 ((markobj) (window->toolbar[0]));
|
|
167 ((markobj) (window->toolbar[1]));
|
|
168 ((markobj) (window->toolbar[2]));
|
|
169 ((markobj) (window->toolbar[3]));
|
|
170 ((markobj) (window->toolbar_size[0]));
|
|
171 ((markobj) (window->toolbar_size[1]));
|
|
172 ((markobj) (window->toolbar_size[2]));
|
|
173 ((markobj) (window->toolbar_size[3]));
|
|
174 ((markobj) (window->toolbar_visible_p[0]));
|
|
175 ((markobj) (window->toolbar_visible_p[1]));
|
|
176 ((markobj) (window->toolbar_visible_p[2]));
|
|
177 ((markobj) (window->toolbar_visible_p[3]));
|
|
178 ((markobj) (window->toolbar_buttons_captioned_p));
|
|
179 ((markobj) (window->default_toolbar));
|
|
180 ((markobj) (window->default_toolbar_height));
|
|
181 ((markobj) (window->default_toolbar_width));
|
|
182 ((markobj) (window->default_toolbar_visible_p));
|
102
|
183 #endif /* HAVE_TOOLBARS */
|
0
|
184 ((markobj) (window->minimum_line_ascent));
|
|
185 ((markobj) (window->minimum_line_descent));
|
|
186 ((markobj) (window->use_left_overflow));
|
|
187 ((markobj) (window->use_right_overflow));
|
|
188 #ifdef HAVE_MENUBARS
|
|
189 ((markobj) (window->menubar_visible_p));
|
102
|
190 #endif /* HAVE_MENUBARS */
|
0
|
191 ((markobj) (window->text_cursor_visible_p));
|
|
192 /* End cached specifiers. */
|
|
193 ((markobj) (window->dedicated));
|
|
194 mark_face_cachels (window->face_cachels, markobj);
|
|
195 mark_glyph_cachels (window->glyph_cachels, markobj);
|
173
|
196 return Qnil;
|
0
|
197 }
|
|
198
|
|
199 static void
|
|
200 print_window (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
|
|
201 {
|
|
202 char buf[200];
|
|
203
|
|
204 if (print_readably)
|
|
205 error ("printing unreadable object #<window 0x%x>",
|
|
206 XWINDOW (obj)->header.uid);
|
185
|
207
|
0
|
208 write_c_string ("#<window", printcharfun);
|
|
209 if (!NILP (XWINDOW (obj)->buffer))
|
|
210 {
|
|
211 Lisp_Object name = XBUFFER (XWINDOW (obj)->buffer)->name;
|
|
212 write_c_string (" on ", printcharfun);
|
|
213 print_internal (name, printcharfun, 1);
|
|
214 }
|
|
215 sprintf (buf, " 0x%x>", XWINDOW (obj)->header.uid);
|
|
216 write_c_string (buf, printcharfun);
|
|
217 }
|
|
218
|
|
219 static void
|
|
220 finalize_window (void *header, int for_disksave)
|
|
221 {
|
|
222 struct window *w = (struct window *) header;
|
|
223
|
|
224 if (w->line_start_cache)
|
|
225 {
|
|
226 Dynarr_free (w->line_start_cache);
|
|
227 w->line_start_cache = 0;
|
|
228 }
|
|
229
|
|
230 if (w->face_cachels)
|
|
231 {
|
|
232 int i;
|
|
233
|
|
234 for (i = 0; i < Dynarr_length (w->face_cachels); i++)
|
|
235 {
|
|
236 struct face_cachel *cachel = Dynarr_atp (w->face_cachels, i);
|
|
237 if (cachel->merged_faces)
|
|
238 {
|
|
239 Dynarr_free (cachel->merged_faces);
|
|
240 cachel->merged_faces = 0;
|
|
241 }
|
|
242 }
|
|
243 Dynarr_free (w->face_cachels);
|
|
244 w->face_cachels = 0;
|
|
245 }
|
|
246
|
|
247 if (w->glyph_cachels)
|
|
248 {
|
|
249 Dynarr_free (w->glyph_cachels);
|
|
250 w->glyph_cachels = 0;
|
|
251 }
|
|
252 }
|
|
253
|
272
|
254 DEFINE_LRECORD_IMPLEMENTATION ("window", window,
|
|
255 mark_window, print_window, finalize_window,
|
|
256 0, 0, struct window);
|
|
257
|
|
258
|
0
|
259 #define INIT_DISP_VARIABLE(field, initialization) \
|
|
260 p->field[CURRENT_DISP] = initialization; \
|
|
261 p->field[DESIRED_DISP] = initialization; \
|
|
262 p->field[CMOTION_DISP] = initialization;
|
|
263
|
|
264 /* We have an implicit assertion that the first two elements (default
|
|
265 and modeline faces) are always present in the face_element_cache.
|
|
266 Normally redisplay ensures this. However, it is possible for a
|
|
267 window to get created and functions which reference these values
|
|
268 called before redisplay works with the window for the first time.
|
|
269 All callers of allocate_window should therefore call
|
|
270 reset_face_cachels on the created window. We can't do it
|
|
271 here because the window must have its frame pointer set or
|
|
272 reset_face_cachels will fail. */
|
|
273 Lisp_Object
|
|
274 allocate_window (void)
|
|
275 {
|
272
|
276 Lisp_Object val;
|
185
|
277 struct window *p = alloc_lcrecord_type (struct window, lrecord_window);
|
0
|
278
|
|
279 zero_lcrecord (p);
|
|
280 XSETWINDOW (val, p);
|
|
281
|
|
282 p->dead = 0;
|
|
283 p->frame = Qnil;
|
|
284 p->mini_p = Qnil;
|
|
285 p->next = Qnil;
|
|
286 p->prev = Qnil;
|
185
|
287 p->hchild = Qnil;
|
|
288 p->vchild = Qnil;
|
0
|
289 p->parent = Qnil;
|
|
290 p->buffer = Qnil;
|
|
291 INIT_DISP_VARIABLE (start, Fmake_marker ());
|
|
292 INIT_DISP_VARIABLE (pointm, Fmake_marker ());
|
|
293 p->sb_point = Fmake_marker ();
|
|
294 p->use_time = Qzero;
|
|
295 INIT_DISP_VARIABLE (last_modified, Qzero);
|
|
296 INIT_DISP_VARIABLE (last_point, Fmake_marker ());
|
|
297 INIT_DISP_VARIABLE (last_start, Fmake_marker ());
|
|
298 INIT_DISP_VARIABLE (last_facechange, Qzero);
|
185
|
299 p->face_cachels = Dynarr_new (face_cachel);
|
|
300 p->glyph_cachels = Dynarr_new (glyph_cachel);
|
|
301 p->line_start_cache = Dynarr_new (line_start_cache);
|
0
|
302 p->line_cache_last_updated = Qzero;
|
|
303 INIT_DISP_VARIABLE (last_point_x, 0);
|
|
304 INIT_DISP_VARIABLE (last_point_y, 0);
|
|
305 INIT_DISP_VARIABLE (window_end_pos, 0);
|
|
306 p->redisplay_end_trigger = Qnil;
|
|
307 /* cached specifier values: will get set properly later */
|
|
308 p->display_table = Qnil;
|
|
309 p->has_modeline_p = Qnil;
|
|
310 p->modeline_shadow_thickness = Qnil;
|
|
311 #ifdef HAVE_SCROLLBARS
|
|
312 p->scrollbar_width = Qnil;
|
|
313 p->scrollbar_height = Qnil;
|
|
314 #endif
|
|
315 p->left_margin_width = Qnil;
|
|
316 p->right_margin_width = Qnil;
|
|
317 #ifdef HAVE_TOOLBARS
|
|
318 p->toolbar_size[0] = Qnil;
|
|
319 p->toolbar_size[1] = Qnil;
|
|
320 p->toolbar_size[2] = Qnil;
|
|
321 p->toolbar_size[3] = Qnil;
|
272
|
322 p->toolbar_buttons_captioned_p = Qnil;
|
0
|
323 #endif
|
|
324 p->minimum_line_ascent = Qnil;
|
|
325 p->minimum_line_descent = Qnil;
|
|
326 p->use_left_overflow = Qnil;
|
|
327 p->use_right_overflow = Qnil;
|
|
328 #ifdef HAVE_MENUBARS
|
|
329 p->menubar_visible_p = Qnil;
|
|
330 #endif
|
|
331 p->text_cursor_visible_p = Qnil;
|
|
332 /* end cached specifier values. */
|
|
333
|
|
334 p->dedicated = Qnil;
|
|
335 p->windows_changed = 1;
|
|
336 p->shadow_thickness_changed = 1;
|
|
337
|
173
|
338 return val;
|
0
|
339 }
|
|
340 #undef INIT_DISP_VARIABLE
|
|
341
|
|
342 /*
|
|
343 * The redisplay structures used to be stored with each window. While
|
|
344 * they are logically something associated with frames they can't be
|
|
345 * stored there with a redisplay which handles variable height lines.
|
|
346 * Lines in horizontally split windows might not line up. So they get
|
|
347 * stored with the windows.
|
|
348 *
|
|
349 * The problem with this is window configurations. When restoring a
|
|
350 * window configuration it now becomes problematic to do an
|
|
351 * incremental redisplay. The solution is to store the redisplay
|
|
352 * structures with the frame as they should be but laid out in the
|
|
353 * same manner as the window structure. Thus is born the window
|
|
354 * mirror.
|
|
355 *
|
|
356 * It also becomes a convenient place to stick scrollbar instances
|
|
357 * since they extrapolate out to having the same problem described for
|
|
358 * the display structures.
|
|
359 */
|
|
360
|
102
|
361 /* Create a new window mirror structure and associated redisplay
|
0
|
362 structs. */
|
|
363 static struct window_mirror *
|
|
364 new_window_mirror (struct frame *f)
|
|
365 {
|
185
|
366 struct window_mirror *t = xnew_and_zero (struct window_mirror);
|
0
|
367
|
|
368 t->frame = f;
|
|
369
|
185
|
370 t->current_display_lines = Dynarr_new (display_line);
|
|
371 t->desired_display_lines = Dynarr_new (display_line);
|
0
|
372 t->buffer = NULL;
|
|
373
|
|
374 #ifdef HAVE_SCROLLBARS
|
|
375 t->scrollbar_vertical_instance = NULL;
|
|
376 t->scrollbar_horizontal_instance = NULL;
|
|
377 #endif
|
|
378
|
|
379 return t;
|
|
380 }
|
|
381
|
|
382 /* Synchronize the mirror structure with a given window structure.
|
|
383 This is normally called from update_frame_window_mirror with a
|
|
384 starting window of f->root_window. */
|
|
385 static struct window_mirror *
|
|
386 update_mirror_internal (Lisp_Object win, struct window_mirror *mir)
|
|
387 {
|
|
388 if (NILP (win))
|
|
389 {
|
|
390 if (mir)
|
|
391 {
|
|
392 free_window_mirror (mir);
|
272
|
393 mir = NULL;
|
0
|
394 }
|
|
395 return mir;
|
|
396 }
|
|
397 else
|
|
398 if (!mir)
|
|
399 mir = new_window_mirror (XFRAME (XWINDOW (win)->frame));
|
|
400
|
102
|
401 mir->next = update_mirror_internal (XWINDOW (win)->next, mir->next);
|
0
|
402 mir->hchild = update_mirror_internal (XWINDOW (win)->hchild, mir->hchild);
|
|
403 mir->vchild = update_mirror_internal (XWINDOW (win)->vchild, mir->vchild);
|
|
404
|
|
405 /*
|
|
406 * If the redisplay structs are not empty and the mirror has
|
|
407 * children, then this mirror structure was formerly being used for
|
|
408 * display but is no longer. Reset its current display structs so
|
|
409 * that redisplay doesn't accidentally think they are accurate if it
|
|
410 * is later used for display purposes once again. Also, mark the
|
|
411 * scrollbar instance as not active.
|
|
412 */
|
|
413 if (mir->vchild || mir->hchild)
|
|
414 {
|
|
415 /* The redisplay structures are big. Leaving them around in
|
|
416 non-leaf windows can add up to a lot of wasted space. So
|
|
417 don't do it. */
|
|
418 free_display_structs (mir);
|
185
|
419 mir->current_display_lines = Dynarr_new (display_line);
|
|
420 mir->desired_display_lines = Dynarr_new (display_line);
|
0
|
421
|
|
422 #ifdef HAVE_SCROLLBARS
|
|
423 update_window_scrollbars (XWINDOW (win), mir, 0, 0);
|
|
424 #endif
|
|
425 mir->buffer = NULL;
|
|
426 }
|
|
427
|
|
428 return mir;
|
|
429 }
|
|
430
|
|
431 /* Given a window mirror, determine which real window it contains the
|
|
432 redisplay structures for. */
|
|
433 static Lisp_Object
|
|
434 real_window_internal (Lisp_Object win, struct window_mirror *rmir,
|
|
435 struct window_mirror *mir)
|
|
436 {
|
|
437 Lisp_Object retval;
|
|
438
|
|
439 for (; !NILP (win) && rmir ; win = XWINDOW (win)->next, rmir = rmir->next)
|
|
440 {
|
|
441 if (mir == rmir)
|
|
442 return win;
|
|
443 if (!NILP (XWINDOW (win)->vchild))
|
|
444 {
|
|
445 retval = real_window_internal (XWINDOW (win)->vchild, rmir->vchild,
|
|
446 mir);
|
|
447 if (!NILP (retval))
|
|
448 return retval;
|
|
449 }
|
|
450 if (!NILP (XWINDOW (win)->hchild))
|
|
451 {
|
|
452 retval = real_window_internal (XWINDOW (win)->hchild, rmir->hchild,
|
|
453 mir);
|
|
454 if (!NILP (retval))
|
|
455 return retval;
|
|
456 }
|
|
457 }
|
|
458
|
|
459 return Qnil;
|
|
460 }
|
|
461
|
|
462 /* Given a real window, find the mirror structure which contains its
|
|
463 redisplay structures. */
|
|
464 static struct window_mirror *
|
|
465 find_window_mirror_internal (Lisp_Object win, struct window_mirror *rmir,
|
|
466 struct window *w)
|
|
467 {
|
|
468 for (; !NILP (win); win = XWINDOW (win)->next, rmir = rmir->next)
|
|
469 {
|
|
470 if (w == XWINDOW (win))
|
|
471 return rmir;
|
272
|
472
|
|
473 if (!NILP (XWINDOW (win)->vchild))
|
|
474 {
|
|
475 struct window_mirror *retval =
|
|
476 find_window_mirror_internal (XWINDOW (win)->vchild,
|
|
477 rmir->vchild, w);
|
|
478 if (retval) return retval;
|
|
479 }
|
|
480
|
|
481 if (!NILP (XWINDOW (win)->hchild))
|
|
482 {
|
|
483 struct window_mirror *retval =
|
|
484 find_window_mirror_internal (XWINDOW (win)->hchild,
|
|
485 rmir->hchild, w);
|
|
486 if (retval) return retval;
|
|
487 }
|
0
|
488 }
|
|
489
|
|
490 return 0;
|
|
491 }
|
|
492
|
|
493 /* Update the mirror structure for the given frame. */
|
|
494 void
|
|
495 update_frame_window_mirror (struct frame *f)
|
|
496 {
|
|
497 f->root_mirror = update_mirror_internal (f->root_window, f->root_mirror);
|
|
498 f->mirror_dirty = 0;
|
|
499 }
|
|
500
|
|
501 /* Free a given mirror structure along with all of its children as
|
|
502 well as their associated display structures. */
|
|
503 void
|
|
504 free_window_mirror (struct window_mirror *mir)
|
|
505 {
|
|
506 while (mir)
|
|
507 {
|
272
|
508 struct window_mirror *prev = mir;
|
0
|
509 if (mir->hchild) free_window_mirror (mir->hchild);
|
|
510 if (mir->vchild) free_window_mirror (mir->vchild);
|
|
511 #ifdef HAVE_SCROLLBARS
|
|
512 release_window_mirror_scrollbars (mir);
|
|
513 #endif
|
|
514 free_display_structs (mir);
|
|
515 mir = mir->next;
|
272
|
516 xfree (prev);
|
0
|
517 }
|
|
518 }
|
|
519
|
|
520 /* Given a mirror structure, return the window it mirrors. Calls
|
|
521 real_window_internal to do most of the work. */
|
|
522 Lisp_Object
|
|
523 real_window (struct window_mirror *mir, int no_abort)
|
|
524 {
|
272
|
525 Lisp_Object retval = real_window_internal (mir->frame->root_window,
|
|
526 mir->frame->root_mirror, mir);
|
0
|
527 if (NILP (retval) && !no_abort)
|
|
528 abort ();
|
|
529
|
|
530 return retval;
|
|
531 }
|
|
532
|
|
533 /* Given a real window, return its mirror structure. Calls
|
|
534 find_window_mirror_internal to do all of the work. */
|
|
535 struct window_mirror *
|
|
536 find_window_mirror (struct window *w)
|
|
537 {
|
|
538 struct frame *f = XFRAME (w->frame);
|
|
539 if (f->mirror_dirty)
|
|
540 update_frame_window_mirror (f);
|
|
541 return find_window_mirror_internal (f->root_window, f->root_mirror, w);
|
|
542 }
|
|
543
|
|
544 /*****************************************************************************
|
|
545 find_window_by_pixel_pos
|
|
546
|
|
547 Given a pixel position relative to a frame, find the window at that
|
|
548 position.
|
|
549 ****************************************************************************/
|
|
550 struct window *
|
272
|
551 find_window_by_pixel_pos (int pix_x, int pix_y, Lisp_Object win)
|
0
|
552 {
|
|
553 if (NILP (win))
|
|
554 return 0;
|
|
555
|
|
556 for (; !NILP (win); win = XWINDOW (win)->next)
|
|
557 {
|
272
|
558 struct window *w;
|
|
559
|
|
560 if (!NILP (XWINDOW (win)->vchild))
|
|
561 {
|
|
562 w = find_window_by_pixel_pos (pix_x, pix_y, XWINDOW (win)->vchild);
|
|
563 if (w) return w;
|
|
564 }
|
|
565 if (!NILP (XWINDOW (win)->hchild))
|
|
566 {
|
|
567 w = find_window_by_pixel_pos (pix_x, pix_y, XWINDOW (win)->hchild);
|
|
568 if (w) return w;
|
|
569 }
|
0
|
570 w = XWINDOW (win);
|
|
571 if (pix_x >= WINDOW_LEFT (w)
|
|
572 && pix_x <= WINDOW_RIGHT (w)
|
|
573 && pix_y >= WINDOW_TOP (w)
|
|
574 && pix_y <= WINDOW_BOTTOM (w))
|
|
575 return w;
|
|
576 }
|
272
|
577 return NULL;
|
0
|
578 }
|
|
579
|
|
580 /* Return a pointer to the display structures for the given window. */
|
|
581 display_line_dynarr *
|
|
582 window_display_lines (struct window *w, int which)
|
|
583 {
|
|
584 struct window_mirror *t;
|
|
585
|
|
586 if (XFRAME (w->frame)->mirror_dirty)
|
|
587 update_frame_window_mirror (XFRAME (w->frame));
|
|
588 t = find_window_mirror (w);
|
|
589 if (!t)
|
|
590 abort ();
|
|
591
|
|
592 if (which == CURRENT_DISP)
|
|
593 return t->current_display_lines;
|
|
594 else if (which == DESIRED_DISP)
|
|
595 return t->desired_display_lines;
|
|
596 else if (which == CMOTION_DISP)
|
|
597 /* The CMOTION_DISP display lines are global. */
|
|
598 return cmotion_display_lines;
|
|
599 else
|
|
600 abort ();
|
|
601
|
|
602 return 0; /* shut up compiler */
|
|
603 }
|
|
604
|
|
605 struct buffer *
|
|
606 window_display_buffer (struct window *w)
|
|
607 {
|
|
608 struct window_mirror *t;
|
|
609
|
|
610 if (XFRAME (w->frame)->mirror_dirty)
|
|
611 update_frame_window_mirror (XFRAME (w->frame));
|
|
612 t = find_window_mirror (w);
|
|
613 if (!t)
|
|
614 abort ();
|
|
615
|
|
616 return t->buffer;
|
|
617 }
|
|
618
|
|
619 void
|
|
620 set_window_display_buffer (struct window *w, struct buffer *b)
|
|
621 {
|
|
622 struct window_mirror *t;
|
|
623
|
|
624 if (XFRAME (w->frame)->mirror_dirty)
|
|
625 update_frame_window_mirror (XFRAME (w->frame));
|
|
626 t = find_window_mirror (w);
|
|
627 if (!t)
|
|
628 abort ();
|
|
629
|
|
630 t->buffer = b;
|
|
631 }
|
|
632
|
|
633
|
102
|
634 /* Determining a window's position based solely on its pixel
|
0
|
635 positioning doesn't work. Instead, we do it the intelligent way,
|
|
636 by checking its positioning in the window hierarchy. */
|
|
637 int
|
|
638 window_is_leftmost (struct window *w)
|
|
639 {
|
|
640 Lisp_Object parent, current_ancestor, window;
|
|
641
|
|
642 XSETWINDOW (window, w);
|
|
643
|
|
644 parent = XWINDOW (window)->parent;
|
|
645 current_ancestor = window;
|
|
646
|
|
647 while (!NILP (parent))
|
|
648 {
|
|
649 if (!NILP (XWINDOW (parent)->hchild) &&
|
|
650 !EQ (XWINDOW (parent)->hchild, current_ancestor))
|
|
651 return 0;
|
|
652
|
|
653 current_ancestor = parent;
|
|
654 parent = XWINDOW (parent)->parent;
|
|
655 }
|
|
656
|
|
657 return 1;
|
|
658 }
|
|
659
|
|
660 int
|
|
661 window_is_rightmost (struct window *w)
|
|
662 {
|
|
663 Lisp_Object parent, current_ancestor, window;
|
|
664
|
|
665 XSETWINDOW (window, w);
|
|
666
|
|
667 parent = XWINDOW (window)->parent;
|
|
668 current_ancestor = window;
|
|
669
|
|
670 while (!NILP (parent))
|
|
671 {
|
|
672 if (!NILP (XWINDOW (parent)->hchild)
|
|
673 && !NILP (XWINDOW (current_ancestor)->next))
|
|
674 return 0;
|
|
675
|
|
676 current_ancestor = parent;
|
|
677 parent = XWINDOW (parent)->parent;
|
|
678 }
|
|
679
|
|
680 return 1;
|
|
681 }
|
|
682
|
|
683 static int
|
|
684 window_full_width_p (struct window *w)
|
|
685 {
|
|
686 return window_is_leftmost (w) && window_is_rightmost (w);
|
|
687 }
|
|
688
|
|
689 static int
|
|
690 window_is_highest (struct window *w)
|
|
691 {
|
|
692 Lisp_Object parent, current_ancestor, window;
|
|
693
|
|
694 XSETWINDOW (window, w);
|
|
695
|
|
696 parent = XWINDOW (window)->parent;
|
|
697 current_ancestor = window;
|
|
698
|
|
699 while (!NILP (parent))
|
|
700 {
|
|
701 if (!NILP (XWINDOW (parent)->vchild) &&
|
|
702 !EQ (XWINDOW (parent)->vchild, current_ancestor))
|
|
703 return 0;
|
|
704
|
|
705 current_ancestor = parent;
|
|
706 parent = XWINDOW (parent)->parent;
|
|
707 }
|
|
708
|
|
709 /* This is really to catch the minibuffer but we make it generic in
|
|
710 case we ever change things around to let the minibuffer be on top. */
|
|
711 if (NILP (XWINDOW (current_ancestor)->prev))
|
|
712 return 1;
|
|
713 else
|
|
714 return 0;
|
|
715 }
|
|
716
|
|
717 static int
|
|
718 window_is_lowest (struct window *w)
|
|
719 {
|
|
720 Lisp_Object parent, current_ancestor, window;
|
|
721
|
|
722 XSETWINDOW (window, w);
|
|
723
|
|
724 parent = XWINDOW (window)->parent;
|
|
725 current_ancestor = window;
|
|
726
|
|
727 while (!NILP (parent))
|
|
728 {
|
|
729 if (!NILP (XWINDOW (parent)->vchild)
|
|
730 && !NILP (XWINDOW (current_ancestor)->next))
|
|
731 return 0;
|
|
732
|
|
733 current_ancestor = parent;
|
|
734 parent = XWINDOW (parent)->parent;
|
|
735 }
|
|
736
|
|
737 return 1;
|
|
738 }
|
|
739
|
|
740 #if 0 /* not currently used */
|
|
741
|
|
742 static int
|
|
743 window_full_height_p (struct window *w)
|
|
744 {
|
|
745 return window_is_highest (w) && window_is_lowest (w);
|
|
746 }
|
|
747
|
|
748 #endif
|
|
749
|
|
750 int
|
|
751 window_truncation_on (struct window *w)
|
|
752 {
|
|
753 /* Horizontally scrolled windows are truncated. */
|
|
754 if (w->hscroll)
|
|
755 return 1;
|
|
756
|
|
757 /* If truncate_partial_width_windows is true and the window is not
|
|
758 the full width of the frame it is truncated. */
|
|
759 if (truncate_partial_width_windows
|
|
760 && !(window_is_leftmost (w) && window_is_rightmost (w)))
|
|
761 return 1;
|
|
762
|
|
763 /* If the window's buffer's value of truncate_lines is non-nil, then
|
|
764 the window is truncated. */
|
|
765 if (!NILP (XBUFFER (w->buffer)->truncate_lines))
|
|
766 return 1;
|
|
767
|
|
768 return 0;
|
|
769 }
|
|
770
|
|
771 int
|
|
772 window_needs_vertical_divider (struct window *w)
|
|
773 {
|
|
774 #ifdef HAVE_SCROLLBARS
|
149
|
775 return (!window_scrollbar_width (w) &&
|
|
776 ((XFRAME (w->frame)->scrollbar_on_left) ?
|
|
777 !window_is_leftmost (w) :
|
|
778 !window_is_rightmost (w)));
|
0
|
779 #else
|
149
|
780 return !window_is_leftmost (w);
|
102
|
781 #endif /* HAVE_SCROLLBARS */
|
0
|
782 }
|
|
783
|
|
784 int
|
|
785 window_scrollbar_width (struct window *w)
|
|
786 {
|
|
787 #ifdef HAVE_SCROLLBARS
|
|
788 if (!WINDOW_WIN_P (w)
|
|
789 || MINI_WINDOW_P (w)
|
|
790 || NILP (w->buffer))
|
|
791 /* #### when does NILP (w->buffer) happen? */
|
|
792 return 0;
|
|
793
|
|
794 return XINT (w->scrollbar_width);
|
|
795 #else
|
|
796 return 0;
|
102
|
797 #endif /* HAVE_SCROLLBARS */
|
0
|
798 }
|
|
799
|
|
800 /* Horizontal scrollbars are only active on windows with truncation
|
|
801 turned on. */
|
|
802 int
|
|
803 window_scrollbar_height (struct window *w)
|
|
804 {
|
|
805 #ifdef HAVE_SCROLLBARS
|
|
806 if (!WINDOW_WIN_P (w)
|
|
807 || MINI_WINDOW_P (w)
|
|
808 || NILP (w->buffer)
|
|
809 || !window_truncation_on (w))
|
|
810 return 0;
|
|
811
|
|
812 return XINT (w->scrollbar_height);
|
|
813 #else
|
|
814 return 0;
|
102
|
815 #endif /* HAVE_SCROLLBARS */
|
0
|
816 }
|
|
817
|
|
818 int
|
|
819 window_modeline_height (struct window *w)
|
|
820 {
|
|
821 struct frame *f = XFRAME (w->frame);
|
|
822 int modeline_height;
|
|
823
|
|
824 if (MINI_WINDOW_P (w) || NILP (w->buffer))
|
|
825 {
|
|
826 modeline_height = 0;
|
|
827 }
|
|
828 else if (!WINDOW_HAS_MODELINE_P (w))
|
|
829 {
|
|
830 if (window_scrollbar_height (w))
|
|
831 modeline_height = 0;
|
|
832 else
|
|
833 {
|
|
834 modeline_height = FRAMEMETH (f, divider_height, ());
|
|
835
|
|
836 if (!EQ (Qzero, w->modeline_shadow_thickness) && FRAME_WIN_P (f))
|
|
837 modeline_height += (2 * MODELINE_SHADOW_THICKNESS (w));
|
|
838 }
|
|
839 }
|
|
840 else
|
|
841 {
|
|
842 if (noninteractive)
|
|
843 modeline_height = 0;
|
|
844 else
|
|
845 {
|
|
846 display_line_dynarr *dla;
|
|
847
|
|
848 /* We don't force a regeneration of the modeline here.
|
|
849 Instead it is now a precondition that any function calling
|
|
850 this should make sure that one of these structures is
|
|
851 up-to-date. In practice this only affects two internal
|
|
852 redisplay functions, regenerate_window and
|
|
853 regenerate_window_point_center. */
|
|
854 /* We check DESIRED_DISP because if it is valid it is more
|
|
855 up-to-date than CURRENT_DISP. For calls to this outside
|
|
856 of redisplay it doesn't matter which structure we check
|
|
857 since there is a redisplay condition that these
|
|
858 structures be identical outside of redisplay. */
|
|
859 dla = window_display_lines (w, DESIRED_DISP);
|
|
860 if (dla && Dynarr_length (dla) && Dynarr_atp (dla, 0)->modeline)
|
|
861 modeline_height = (Dynarr_atp (dla, 0)->ascent +
|
|
862 Dynarr_atp (dla, 0)->descent);
|
|
863 else
|
|
864 {
|
|
865 dla = window_display_lines (w, CURRENT_DISP);
|
|
866 if (dla && Dynarr_length (dla) && Dynarr_atp (dla, 0)->modeline)
|
|
867 modeline_height = (Dynarr_atp (dla, 0)->ascent +
|
|
868 Dynarr_atp (dla, 0)->descent);
|
|
869 else
|
|
870 /* This should be an abort except I'm not yet 100%
|
|
871 confident that it won't ever get hit (though I
|
|
872 haven't been able to trigger it). It is extremely
|
|
873 unlikely to cause any noticable problem and even if
|
|
874 it does it will be a minor display glitch. */
|
|
875 /* #### Bullshit alert. It does get hit and it causes
|
|
876 noticeable glitches. real_current_modeline_height
|
|
877 is a kludge to fix this for 19.14. */
|
|
878 modeline_height = real_current_modeline_height (w);
|
|
879 }
|
|
880
|
|
881 if (!EQ (Qzero, w->modeline_shadow_thickness) && FRAME_WIN_P (f))
|
|
882 modeline_height += (2 * MODELINE_SHADOW_THICKNESS (w));
|
|
883 }
|
|
884 }
|
|
885
|
|
886 return modeline_height;
|
|
887 }
|
|
888
|
|
889 /*****************************************************************************
|
|
890 margin_width_internal
|
|
891
|
|
892 For a given window, return the width in pixels of the specified margin.
|
|
893 ****************************************************************************/
|
|
894 static int
|
|
895 margin_width_internal (struct window *w, int left_margin)
|
|
896 {
|
|
897 struct buffer *b;
|
|
898 int window_cwidth = window_char_width (w, 1);
|
|
899 int margin_cwidth;
|
|
900 int font_width;
|
272
|
901 Lisp_Object window;
|
0
|
902
|
|
903 /* We might be getting called on a non-leaf. */
|
|
904 if (NILP (w->buffer))
|
|
905 return 0;
|
|
906
|
|
907 /* The minibuffer never has margins. */
|
|
908 if (MINI_WINDOW_P (w))
|
|
909 return 0;
|
|
910
|
|
911 XSETWINDOW (window, w);
|
|
912 b = XBUFFER (w->buffer);
|
|
913 margin_cwidth = (left_margin ? XINT (w->left_margin_width) :
|
|
914 XINT (w->right_margin_width));
|
|
915
|
|
916 default_face_height_and_width (window, 0, &font_width);
|
|
917
|
|
918 /* The left margin takes precedence over the right margin so we
|
|
919 subtract its width from the space available for the right
|
|
920 margin. */
|
|
921 if (!left_margin)
|
|
922 window_cwidth -= XINT (w->left_margin_width);
|
|
923
|
|
924 /* The margin cannot be wider than the window is. We allow the
|
|
925 value to be bigger since it is possible for the user to enlarge
|
|
926 the window such that the left margin value would no longer be too
|
|
927 big, but we won't return a value that is larger. */
|
|
928 if (margin_cwidth > window_cwidth)
|
|
929 margin_cwidth = window_cwidth;
|
|
930
|
|
931 /* At the user level the margin is always specified in characters.
|
|
932 Internally however it is manipulated in terms of pixels. */
|
173
|
933 return margin_cwidth * font_width;
|
0
|
934 }
|
|
935
|
|
936 int
|
|
937 window_left_margin_width (struct window *w)
|
|
938 {
|
|
939 return margin_width_internal (w, 1);
|
|
940 }
|
|
941
|
|
942 int
|
|
943 window_right_margin_width (struct window *w)
|
|
944 {
|
|
945 return margin_width_internal (w, 0);
|
|
946 }
|
|
947
|
|
948 static int
|
|
949 window_top_toolbar_height (struct window *w)
|
|
950 {
|
|
951 /* #### implement this shit. */
|
|
952 return 0;
|
|
953 }
|
|
954
|
|
955 /* #### Currently used in scrollbar.c. Does it actually need to be? */
|
|
956 int
|
|
957 window_bottom_toolbar_height (struct window *w)
|
|
958 {
|
|
959 return 0;
|
|
960 }
|
|
961
|
|
962 static int
|
|
963 window_left_toolbar_width (struct window *w)
|
|
964 {
|
|
965 return 0;
|
|
966 }
|
|
967
|
|
968 static int
|
|
969 window_right_toolbar_width (struct window *w)
|
|
970 {
|
|
971 return 0;
|
|
972 }
|
|
973
|
|
974 /*****************************************************************************
|
|
975 Window Gutters
|
|
976
|
|
977 The gutters of a window are those areas in the boundary defined by
|
|
978 w->pixel_top, w->pixel_left, w->pixel_height and w->pixel_width which
|
|
979 do not contain text. Items which may be in the gutters include
|
|
980 scrollbars, toolbars and modelines. The margin areas are not
|
|
981 included. This is an exception made because redisplay special cases
|
|
982 the handling of those areas in many places in such a way that
|
|
983 including them in the gutter area would make life difficult.
|
|
984
|
|
985 The size functions refer to height for the bottom and top gutters and
|
|
986 width for the left and right gutters. The starting position
|
|
987 functions refer to the Y coord for bottom and top gutters and the X
|
|
988 coord for left and right gutters. All starting positions are
|
|
989 relative to the frame, not the window.
|
|
990 ****************************************************************************/
|
|
991
|
|
992 int
|
|
993 window_top_gutter_height (struct window *w)
|
|
994 {
|
|
995 int toolbar_height = window_top_toolbar_height (w);
|
|
996
|
|
997 if (!NILP (w->hchild) || !NILP (w->vchild))
|
|
998 return 0;
|
|
999
|
|
1000 #ifdef HAVE_SCROLLBARS
|
|
1001 if (XFRAME (w->frame)->scrollbar_on_top)
|
|
1002 return window_scrollbar_height (w) + toolbar_height;
|
|
1003 else
|
|
1004 #endif
|
|
1005 return toolbar_height;
|
|
1006 }
|
|
1007
|
|
1008 int
|
|
1009 window_bottom_gutter_height (struct window *w)
|
|
1010 {
|
185
|
1011 int other_height;
|
0
|
1012
|
|
1013 if (!NILP (w->hchild) || !NILP (w->vchild))
|
|
1014 return 0;
|
|
1015 else
|
|
1016 other_height =
|
|
1017 window_modeline_height (w) + window_bottom_toolbar_height (w);
|
|
1018
|
|
1019 #ifdef HAVE_SCROLLBARS
|
|
1020 if (!XFRAME (w->frame)->scrollbar_on_top)
|
|
1021 return window_scrollbar_height (w) + other_height;
|
|
1022 else
|
|
1023 #endif
|
|
1024 return other_height;
|
|
1025 }
|
|
1026
|
|
1027 static int
|
|
1028 window_left_right_gutter_width_internal (struct window *w, int modeline)
|
|
1029 {
|
|
1030 struct frame *f = XFRAME (w->frame);
|
|
1031 int scrollbar_width = window_scrollbar_width (w);
|
|
1032
|
|
1033 if (!NILP (w->hchild) || !NILP (w->vchild))
|
|
1034 return 0;
|
|
1035
|
|
1036 if (!modeline)
|
|
1037 {
|
|
1038 if (scrollbar_width)
|
|
1039 return scrollbar_width;
|
|
1040 else if (window_needs_vertical_divider (w))
|
|
1041 return FRAMEMETH (f, divider_width, ());
|
|
1042 else
|
|
1043 return 0;
|
|
1044 }
|
|
1045 else
|
|
1046 {
|
|
1047 /* The shadows on the 3D modelines provide a visual break
|
|
1048 between the modelines of horizontally split windows. 2D
|
|
1049 modelines need some help, though. */
|
|
1050 if (!EQ (Qzero, w->modeline_shadow_thickness))
|
|
1051 return 0;
|
|
1052 else if (window_needs_vertical_divider (w))
|
|
1053 return FRAMEMETH (f, divider_width, ());
|
|
1054 else
|
|
1055 return 0;
|
|
1056 }
|
|
1057 }
|
|
1058
|
|
1059 int
|
|
1060 window_left_gutter_width (struct window *w, int modeline)
|
|
1061 {
|
|
1062 if (!NILP (w->hchild) || !NILP (w->vchild))
|
|
1063 return 0;
|
|
1064
|
|
1065 #ifdef HAVE_SCROLLBARS
|
|
1066 if (XFRAME (w->frame)->scrollbar_on_left)
|
|
1067 {
|
|
1068 #endif
|
|
1069 return (window_left_right_gutter_width_internal (w, modeline) +
|
|
1070 window_left_toolbar_width (w));
|
|
1071 #ifdef HAVE_SCROLLBARS
|
|
1072 }
|
|
1073 else
|
|
1074 return window_left_toolbar_width (w);
|
|
1075 #endif
|
|
1076 }
|
|
1077
|
|
1078 int
|
|
1079 window_right_gutter_width (struct window *w, int modeline)
|
|
1080 {
|
|
1081 if (!NILP (w->hchild) || !NILP (w->vchild))
|
|
1082 return 0;
|
|
1083
|
|
1084 #ifdef HAVE_SCROLLBARS
|
|
1085 if (!XFRAME (w->frame)->scrollbar_on_left)
|
|
1086 {
|
|
1087 return (window_left_right_gutter_width_internal (w, modeline) +
|
|
1088 window_right_toolbar_width (w));
|
|
1089 }
|
|
1090 else
|
|
1091 #endif
|
|
1092 return window_right_toolbar_width (w);
|
|
1093 }
|
|
1094
|
|
1095
|
20
|
1096 DEFUN ("windowp", Fwindowp, 1, 1, 0, /*
|
0
|
1097 Return t if OBJ is a window.
|
20
|
1098 */
|
|
1099 (obj))
|
0
|
1100 {
|
173
|
1101 return WINDOWP (obj) ? Qt : Qnil;
|
0
|
1102 }
|
|
1103
|
20
|
1104 DEFUN ("window-live-p", Fwindow_live_p, 1, 1, 0, /*
|
0
|
1105 Return t if OBJ is a window which is currently visible.
|
20
|
1106 */
|
|
1107 (obj))
|
0
|
1108 {
|
173
|
1109 return WINDOWP (obj) && WINDOW_LIVE_P (XWINDOW (obj)) ? Qt : Qnil;
|
0
|
1110 }
|
|
1111
|
20
|
1112 DEFUN ("selected-window", Fselected_window, 0, 1, 0, /*
|
0
|
1113 Return the window that the cursor now appears in and commands apply to.
|
|
1114 If the optional argument CON-DEV-OR-FRAME is specified and is a frame, return
|
|
1115 the selected window used by that frame. If CON-DEV-OR-FRAME is a device,
|
|
1116 then the selected frame on that device will be used. If CON-DEV-OR-FRAME
|
|
1117 is a console, the selected frame on that console's selected device will
|
|
1118 be used. Otherwise, the selected frame is used.
|
20
|
1119 */
|
|
1120 (con_dev_or_frame))
|
0
|
1121 {
|
|
1122 if (NILP (con_dev_or_frame) && NILP (Fselected_device (Qnil)))
|
|
1123 return Qnil; /* happens at startup */
|
|
1124
|
272
|
1125 {
|
|
1126 struct frame *f = decode_frame_or_selected (con_dev_or_frame);
|
|
1127 return FRAME_SELECTED_WINDOW (f);
|
|
1128 }
|
0
|
1129 }
|
|
1130
|
20
|
1131 DEFUN ("minibuffer-window", Fminibuffer_window, 0, 1, 0, /*
|
0
|
1132 Return the window used now for minibuffers.
|
|
1133 If the optional argument CON-DEV-OR-FRAME is specified and is a frame, return
|
|
1134 the minibuffer window used by that frame. If CON-DEV-OR-FRAME is a device,
|
|
1135 then the selected frame on that device will be used. If CON-DEV-OR-FRAME
|
|
1136 is a console, the selected frame on that console's selected device will
|
|
1137 be used. Otherwise, the selected frame is used.
|
20
|
1138 */
|
|
1139 (con_dev_or_frame))
|
0
|
1140 {
|
272
|
1141 return FRAME_MINIBUF_WINDOW (decode_frame_or_selected (con_dev_or_frame));
|
0
|
1142 }
|
|
1143
|
20
|
1144 DEFUN ("window-minibuffer-p", Fwindow_minibuffer_p, 1, 1, 0, /*
|
0
|
1145 Return non-nil if WINDOW is a minibuffer window.
|
20
|
1146 */
|
|
1147 (window))
|
0
|
1148 {
|
173
|
1149 return MINI_WINDOW_P (decode_window (window)) ? Qt : Qnil;
|
0
|
1150 }
|
|
1151
|
20
|
1152 DEFUN ("window-first-hchild", Fwindow_first_hchild, 1, 1, 0, /*
|
0
|
1153 Return the first horizontal child of WINDOW, or nil.
|
20
|
1154 */
|
|
1155 (window))
|
0
|
1156 {
|
102
|
1157 return decode_window (window)->hchild;
|
0
|
1158 }
|
|
1159
|
20
|
1160 DEFUN ("window-first-vchild", Fwindow_first_vchild, 1, 1, 0, /*
|
0
|
1161 Return the first vertical child of WINDOW, or nil.
|
20
|
1162 */
|
|
1163 (window))
|
0
|
1164 {
|
102
|
1165 return decode_window (window)->vchild;
|
0
|
1166 }
|
|
1167
|
20
|
1168 DEFUN ("window-next-child", Fwindow_next_child, 1, 1, 0, /*
|
0
|
1169 Return the next window on the same level as WINDOW, or nil.
|
20
|
1170 */
|
|
1171 (window))
|
0
|
1172 {
|
102
|
1173 return decode_window (window)->next;
|
0
|
1174 }
|
|
1175
|
20
|
1176 DEFUN ("window-previous-child", Fwindow_previous_child, 1, 1, 0, /*
|
0
|
1177 Return the previous window on the same level as WINDOW, or nil.
|
20
|
1178 */
|
|
1179 (window))
|
0
|
1180 {
|
102
|
1181 return decode_window (window)->prev;
|
0
|
1182 }
|
|
1183
|
20
|
1184 DEFUN ("window-parent", Fwindow_parent, 1, 1, 0, /*
|
0
|
1185 Return the parent of WINDOW, or nil.
|
20
|
1186 */
|
|
1187 (window))
|
0
|
1188 {
|
102
|
1189 return decode_window (window)->parent;
|
0
|
1190 }
|
|
1191
|
20
|
1192 DEFUN ("window-lowest-p", Fwindow_lowest_p, 1, 1, 0, /*
|
0
|
1193 Return non-nil if WINDOW is along the bottom of its frame.
|
20
|
1194 */
|
|
1195 (window))
|
0
|
1196 {
|
102
|
1197 return window_is_lowest (decode_window (window)) ? Qt : Qnil;
|
0
|
1198 }
|
|
1199
|
20
|
1200 DEFUN ("window-highest-p", Fwindow_highest_p, 1, 1, 0, /*
|
0
|
1201 Return non-nil if WINDOW is along the top of its frame.
|
20
|
1202 */
|
|
1203 (window))
|
0
|
1204 {
|
102
|
1205 return window_is_highest (decode_window (window)) ? Qt : Qnil;
|
0
|
1206 }
|
|
1207
|
20
|
1208 DEFUN ("window-leftmost-p", Fwindow_leftmost_p, 1, 1, 0, /*
|
0
|
1209 Return non-nil if WINDOW is along the left edge of its frame.
|
20
|
1210 */
|
|
1211 (window))
|
0
|
1212 {
|
102
|
1213 return window_is_leftmost (decode_window (window)) ? Qt : Qnil;
|
0
|
1214 }
|
|
1215
|
20
|
1216 DEFUN ("window-rightmost-p", Fwindow_rightmost_p, 1, 1, 0, /*
|
0
|
1217 Return non-nil if WINDOW is along the right edge of its frame.
|
20
|
1218 */
|
|
1219 (window))
|
0
|
1220 {
|
102
|
1221 return window_is_rightmost (decode_window (window)) ? Qt : Qnil;
|
0
|
1222 }
|
|
1223
|
20
|
1224 DEFUN ("pos-visible-in-window-p", Fpos_visible_in_window_p, 0, 2, 0, /*
|
0
|
1225 Return t if position POS is currently on the frame in WINDOW.
|
|
1226 Returns nil if that position is scrolled vertically out of view.
|
|
1227 POS defaults to point in WINDOW's buffer; WINDOW, to the selected window.
|
20
|
1228 */
|
|
1229 (pos, window))
|
0
|
1230 {
|
102
|
1231 struct window *w = decode_window (window);
|
272
|
1232 Bufpos top = marker_position (w->start[CURRENT_DISP]);
|
0
|
1233 Bufpos posint;
|
272
|
1234 struct buffer *buf = XBUFFER (w->buffer);
|
0
|
1235
|
|
1236 if (NILP (pos))
|
|
1237 posint = BUF_PT (buf);
|
|
1238 else
|
|
1239 {
|
|
1240 CHECK_INT_COERCE_MARKER (pos);
|
|
1241 posint = XINT (pos);
|
|
1242 }
|
|
1243
|
|
1244 if (posint < top || posint > BUF_ZV (buf))
|
|
1245 return Qnil;
|
|
1246
|
|
1247 /* w->start can be out of range. If it is, do something reasonable. */
|
|
1248 if (top < BUF_BEGV (buf) || top > BUF_ZV (buf))
|
|
1249 return Qnil;
|
|
1250
|
272
|
1251 return point_would_be_visible (w, top, posint) ? Qt : Qnil;
|
0
|
1252 }
|
|
1253
|
|
1254
|
|
1255 struct window *
|
|
1256 decode_window (Lisp_Object window)
|
|
1257 {
|
|
1258 if (NILP (window))
|
|
1259 return XWINDOW (Fselected_window (Qnil));
|
|
1260
|
|
1261 CHECK_LIVE_WINDOW (window);
|
|
1262 return XWINDOW (window);
|
|
1263 }
|
|
1264
|
20
|
1265 DEFUN ("window-buffer", Fwindow_buffer, 0, 1, 0, /*
|
0
|
1266 Return the buffer that WINDOW is displaying.
|
20
|
1267 */
|
|
1268 (window))
|
0
|
1269 {
|
|
1270 return decode_window (window)->buffer;
|
|
1271 }
|
|
1272
|
20
|
1273 DEFUN ("window-frame", Fwindow_frame, 0, 1, 0, /*
|
0
|
1274 Return the frame that window WINDOW is on.
|
20
|
1275 */
|
|
1276 (window))
|
0
|
1277 {
|
|
1278 return decode_window (window)->frame;
|
|
1279 }
|
|
1280
|
20
|
1281 DEFUN ("window-height", Fwindow_height, 0, 1, 0, /*
|
0
|
1282 Return the number of default lines in WINDOW.
|
|
1283 This actually works by dividing the window's pixel height (including
|
|
1284 the modeline and horizontal scrollbar, if any) by the height of the
|
|
1285 default font; therefore, the number of displayed lines will probably
|
|
1286 be different.
|
|
1287 Use `window-height' to get consistent results in geometry calculations.
|
|
1288 Use `window-displayed-height' to get the actual number of lines
|
|
1289 currently displayed in a window.
|
20
|
1290 */
|
|
1291 (window))
|
0
|
1292 {
|
|
1293 return make_int (window_char_height (decode_window (window), 1));
|
|
1294 }
|
|
1295
|
20
|
1296 DEFUN ("window-displayed-height", Fwindow_displayed_height, 0, 1, 0, /*
|
0
|
1297 Return the number of lines currently displayed in WINDOW.
|
|
1298 This counts the actual number of lines displayed in WINDOW
|
272
|
1299 \(as opposed to `window-height'). The modeline and horizontal
|
0
|
1300 scrollbar do not count as lines. If there is some blank space
|
|
1301 between the end of the buffer and the end of the window, this
|
|
1302 function pretends that there are lines of text in the default
|
|
1303 font there.
|
20
|
1304 */
|
70
|
1305 (window))
|
0
|
1306 {
|
|
1307 return make_int (window_displayed_height (decode_window (window)));
|
|
1308 }
|
|
1309
|
20
|
1310 DEFUN ("window-pixel-height", Fwindow_pixel_height, 0, 1, 0, /*
|
0
|
1311 Return the height of WINDOW in pixels. Defaults to current window.
|
|
1312 This includes the window's modeline and horizontal scrollbar (if any).
|
20
|
1313 */
|
|
1314 (window))
|
0
|
1315 {
|
173
|
1316 return make_int (decode_window (window)->pixel_height);
|
0
|
1317 }
|
|
1318
|
263
|
1319 DEFUN ("window-displayed-pixel-height", Fwindow_displayed_pixel_height, 0, 1, 0, /*
|
|
1320 Return the height in pixels of the buffer-displaying portion of WINDOW.
|
|
1321 Unlike `window-pixel-height', the space occupied by the gutters
|
272
|
1322 \(modeline, horizontal scrollbar, ...) is not counted.
|
263
|
1323 */
|
|
1324 (window))
|
|
1325 {
|
|
1326 return make_int (window_displayed_pixel_height (decode_window (window)));
|
|
1327 }
|
|
1328
|
20
|
1329 DEFUN ("window-width", Fwindow_width, 0, 1, 0, /*
|
0
|
1330 Return the number of display columns in WINDOW.
|
|
1331 This is the width that is usable columns available for text in WINDOW.
|
20
|
1332 */
|
|
1333 (window))
|
0
|
1334 {
|
173
|
1335 return make_int (window_char_width (decode_window (window), 0));
|
0
|
1336 }
|
|
1337
|
20
|
1338 DEFUN ("window-pixel-width", Fwindow_pixel_width, 0, 1, 0, /*
|
0
|
1339 Return the width of WINDOW in pixels. Defaults to current window.
|
20
|
1340 */
|
|
1341 (window))
|
0
|
1342 {
|
173
|
1343 return make_int (decode_window (window)->pixel_width);
|
0
|
1344 }
|
|
1345
|
20
|
1346 DEFUN ("window-hscroll", Fwindow_hscroll, 0, 1, 0, /*
|
0
|
1347 Return the number of columns by which WINDOW is scrolled from left margin.
|
20
|
1348 */
|
|
1349 (window))
|
0
|
1350 {
|
173
|
1351 return make_int (decode_window (window)->hscroll);
|
0
|
1352 }
|
|
1353
|
267
|
1354 #ifdef MODELINE_IS_SCROLLABLE
|
257
|
1355 DEFUN ("modeline-hscroll", Fmodeline_hscroll, 0, 1, 0, /*
|
272
|
1356 Return the number of columns by which WINDOW's modeline is scrolled from
|
257
|
1357 left margin. If the window has no modeline, return nil.
|
|
1358 */
|
|
1359 (window))
|
|
1360 {
|
|
1361 struct window *w;
|
272
|
1362
|
257
|
1363 w = decode_window (window);
|
|
1364 return (WINDOW_HAS_MODELINE_P (w)) ? make_int (w->modeline_hscroll) : Qnil;
|
|
1365 }
|
272
|
1366
|
257
|
1367 DEFUN ("set-modeline-hscroll", Fset_modeline_hscroll, 2, 2, 0, /*
|
|
1368 Set number of columns WINDOW's modeline is scrolled from left margin to NCOL.
|
|
1369 NCOL should be zero or positive. If NCOL is negative, it will be forced to 0.
|
|
1370 If the window has no modeline, do nothing and return nil.
|
|
1371 */
|
|
1372 (window, ncol))
|
|
1373 {
|
|
1374 struct window *w;
|
|
1375 int ncols;
|
|
1376
|
|
1377 w = decode_window (window);
|
|
1378 if (WINDOW_HAS_MODELINE_P (w))
|
|
1379 {
|
|
1380 CHECK_INT (ncol);
|
|
1381 ncols = XINT (ncol);
|
|
1382 if (ncols < 0) ncols = 0;
|
|
1383 if (w->modeline_hscroll != ncols)
|
|
1384 MARK_MODELINE_CHANGED;
|
|
1385 w->modeline_hscroll = ncols;
|
|
1386 return ncol;
|
|
1387 }
|
|
1388 return Qnil;
|
|
1389 }
|
272
|
1390 #endif /* MODELINE_IS_SCROLLABLE */
|
|
1391
|
|
1392 DEFUN ("set-window-hscroll", Fset_window_hscroll, 2, 2, 0, /*
|
|
1393 Set number of columns WINDOW is scrolled from left margin to NCOL.
|
|
1394 NCOL should be zero or positive.
|
|
1395 */
|
|
1396 (window, ncol))
|
|
1397 {
|
|
1398 struct window *w;
|
|
1399 int ncols;
|
|
1400
|
|
1401 CHECK_INT (ncol);
|
|
1402 ncols = XINT (ncol);
|
|
1403 if (ncols < 0) ncols = 0;
|
|
1404 w = decode_window (window);
|
|
1405 if (w->hscroll != ncols)
|
|
1406 MARK_CLIP_CHANGED; /* FSF marks differently but we aren't FSF. */
|
|
1407 w->hscroll = ncols;
|
|
1408 return ncol;
|
|
1409 }
|
257
|
1410
|
251
|
1411 #if 0 /* bogus crock */
|
0
|
1412
|
149
|
1413 xxDEFUN ("window-redisplay-end-trigger",
|
|
1414 Fwindow_redisplay_end_trigger, 0, 1, 0, /*
|
0
|
1415 Return WINDOW's redisplay end trigger value.
|
|
1416 See `set-window-redisplay-end-trigger' for more information.
|
102
|
1417 */
|
|
1418 (window))
|
0
|
1419 {
|
|
1420 return decode_window (window)->redisplay_end_trigger;
|
|
1421 }
|
|
1422
|
149
|
1423 xxDEFUN ("set-window-redisplay-end-trigger",
|
|
1424 Fset_window_redisplay_end_trigger, 2, 2, 0, /*
|
0
|
1425 Set WINDOW's redisplay end trigger value to VALUE.
|
|
1426 VALUE should be a buffer position (typically a marker) or nil.
|
|
1427 If it is a buffer position, then if redisplay in WINDOW reaches a position
|
|
1428 beyond VALUE, the functions in `redisplay-end-trigger-functions' are called
|
|
1429 with two arguments: WINDOW, and the end trigger value.
|
|
1430 Afterwards the end-trigger value is reset to nil.
|
185
|
1431 */
|
102
|
1432 (window, value))
|
0
|
1433 {
|
102
|
1434 return (decode_window (window)->redisplay_end_trigger = value);
|
0
|
1435 }
|
|
1436
|
|
1437 #endif /* 0 */
|
|
1438
|
20
|
1439 DEFUN ("window-pixel-edges", Fwindow_pixel_edges, 0, 1, 0, /*
|
0
|
1440 Return a list of the pixel edge coordinates of WINDOW.
|
|
1441 \(LEFT TOP RIGHT BOTTOM), all relative to 0, 0 at top left corner of frame.
|
|
1442 The frame toolbars and menubars are considered to be outside of this area.
|
20
|
1443 */
|
|
1444 (window))
|
0
|
1445 {
|
|
1446 struct window *w = decode_window (window);
|
|
1447 struct frame *f = XFRAME (w->frame);
|
149
|
1448
|
|
1449 int left = w->pixel_left - FRAME_LEFT_BORDER_END (f);
|
|
1450 int top = w->pixel_top - FRAME_TOP_BORDER_END (f);
|
0
|
1451
|
|
1452 return list4 (make_int (left),
|
|
1453 make_int (top),
|
|
1454 make_int (left + w->pixel_width),
|
|
1455 make_int (top + w->pixel_height));
|
|
1456 }
|
|
1457
|
20
|
1458 DEFUN ("window-point", Fwindow_point, 0, 1, 0, /*
|
0
|
1459 Return current value of point in WINDOW.
|
|
1460 For a nonselected window, this is the value point would have
|
|
1461 if that window were selected.
|
|
1462
|
|
1463 Note that, when WINDOW is the selected window and its buffer
|
|
1464 is also currently selected, the value returned is the same as (point).
|
|
1465 It would be more strictly correct to return the `top-level' value
|
|
1466 of point, outside of any save-excursion forms.
|
|
1467 But that is hard to define.
|
20
|
1468 */
|
|
1469 (window))
|
0
|
1470 {
|
|
1471 struct window *w = decode_window (window);
|
|
1472
|
|
1473 /* The special check for current buffer is necessary for this
|
|
1474 function to work as defined when called within an excursion. */
|
|
1475 if (w == XWINDOW (Fselected_window (XFRAME (w->frame)->device))
|
|
1476 && current_buffer == XBUFFER (w->buffer))
|
|
1477 return Fpoint (Qnil);
|
|
1478 return Fmarker_position (w->pointm[CURRENT_DISP]);
|
|
1479 }
|
|
1480
|
20
|
1481 DEFUN ("window-start", Fwindow_start, 0, 1, 0, /*
|
0
|
1482 Return position at which display currently starts in WINDOW.
|
|
1483 This is updated by redisplay or by calling `set-window-start'.
|
20
|
1484 */
|
|
1485 (window))
|
0
|
1486 {
|
|
1487 return Fmarker_position (decode_window (window)->start[CURRENT_DISP]);
|
|
1488 }
|
|
1489
|
20
|
1490 DEFUN ("window-end", Fwindow_end, 0, 2, 0, /*
|
0
|
1491 Return position at which display currently ends in WINDOW.
|
|
1492 This is updated by redisplay, when it runs to completion.
|
|
1493 Simply changing the buffer text or setting `window-start'
|
|
1494 does not update this value.
|
|
1495 If GUARANTEE is non-nil, then the return value is guaranteed to be
|
|
1496 the value of window-end at the end of the next full redisplay assuming
|
|
1497 nothing else changes in the meantime. This function is potentially much
|
|
1498 slower with this flag set.
|
20
|
1499 */
|
|
1500 (window, guarantee))
|
0
|
1501 {
|
|
1502 struct window *w = decode_window (window);
|
|
1503
|
|
1504 if (NILP (guarantee))
|
|
1505 {
|
272
|
1506 Lisp_Object buf = w->buffer;
|
0
|
1507 CHECK_BUFFER (buf);
|
272
|
1508 return make_int (BUF_Z (XBUFFER (buf)) - w->window_end_pos[CURRENT_DISP]);
|
0
|
1509 }
|
|
1510 else
|
|
1511 {
|
|
1512 Bufpos startp = marker_position (w->start[CURRENT_DISP]);
|
173
|
1513 return make_int (end_of_last_line (w, startp));
|
0
|
1514 }
|
|
1515 }
|
|
1516
|
20
|
1517 DEFUN ("set-window-point", Fset_window_point, 2, 2, 0, /*
|
0
|
1518 Make point value in WINDOW be at position POS in WINDOW's buffer.
|
20
|
1519 */
|
|
1520 (window, pos))
|
0
|
1521 {
|
|
1522 struct window *w = decode_window (window);
|
|
1523
|
|
1524 CHECK_INT_COERCE_MARKER (pos);
|
|
1525 if (w == XWINDOW (Fselected_window (Qnil)))
|
223
|
1526 Fgoto_char (pos, Qnil);
|
0
|
1527 else
|
|
1528 set_marker_restricted (w->pointm[CURRENT_DISP], pos, w->buffer);
|
|
1529
|
|
1530 MARK_POINT_CHANGED;
|
|
1531 return pos;
|
|
1532 }
|
|
1533
|
20
|
1534 DEFUN ("set-window-start", Fset_window_start, 2, 3, 0, /*
|
0
|
1535 Make display in WINDOW start at position POS in WINDOW's buffer.
|
|
1536 Optional third arg NOFORCE non-nil inhibits next redisplay
|
|
1537 from overriding motion of point in order to display at this exact start.
|
20
|
1538 */
|
|
1539 (window, pos, noforce))
|
0
|
1540 {
|
|
1541 struct window *w = decode_window (window);
|
|
1542
|
|
1543 CHECK_INT_COERCE_MARKER (pos);
|
|
1544 set_marker_restricted (w->start[CURRENT_DISP], pos, w->buffer);
|
|
1545 /* this is not right, but much easier than doing what is right. */
|
|
1546 w->start_at_line_beg = 0;
|
|
1547 if (NILP (noforce))
|
|
1548 w->force_start = 1;
|
|
1549 w->redo_modeline = 1;
|
|
1550 SET_LAST_MODIFIED (w, 0);
|
|
1551 SET_LAST_FACECHANGE (w);
|
|
1552
|
|
1553 MARK_WINDOWS_CHANGED (w);
|
|
1554
|
|
1555 return pos;
|
|
1556 }
|
|
1557
|
20
|
1558 DEFUN ("window-dedicated-p", Fwindow_dedicated_p, 1, 1, 0, /*
|
0
|
1559 Return WINDOW's dedicated object, usually t or nil.
|
|
1560 See also `set-window-dedicated-p'.
|
20
|
1561 */
|
|
1562 (window))
|
0
|
1563 {
|
|
1564 return decode_window (window)->dedicated;
|
|
1565 }
|
|
1566
|
20
|
1567 DEFUN ("set-window-dedicated-p", Fset_window_dedicated_p, 2, 2, 0, /*
|
0
|
1568 Control whether WINDOW is dedicated to the buffer it displays.
|
|
1569 If it is dedicated, Emacs will not automatically change
|
|
1570 which buffer appears in it.
|
|
1571 The second argument is the new value for the dedication flag;
|
|
1572 non-nil means yes.
|
20
|
1573 */
|
|
1574 (window, arg))
|
0
|
1575 {
|
272
|
1576 struct window *w = decode_window (window);
|
0
|
1577
|
149
|
1578 w->dedicated = NILP (arg) ? Qnil : Qt;
|
0
|
1579
|
|
1580 return w->dedicated;
|
|
1581 }
|
|
1582
|
|
1583 /* FSFmacs has window-display-table here. We have display table as a
|
|
1584 specifier. */
|
|
1585
|
|
1586
|
|
1587 /* Record info on buffer window w is displaying
|
|
1588 when it is about to cease to display that buffer. */
|
|
1589 static void
|
|
1590 unshow_buffer (struct window *w)
|
|
1591 {
|
|
1592 Lisp_Object buf = w->buffer;
|
|
1593
|
|
1594 if (XBUFFER (buf) != XMARKER (w->pointm[CURRENT_DISP])->buffer)
|
|
1595 abort ();
|
|
1596
|
|
1597 /* FSF disables this check, so I'll do it too. I hope it won't
|
|
1598 break things. --ben */
|
|
1599 #if 0
|
|
1600 if (w == XWINDOW (Fselected_window (Qnil))
|
|
1601 || ! EQ (buf, XWINDOW (Fselected_window (Qnil))->buffer))
|
|
1602 /* Do this except when the selected window's buffer
|
|
1603 is being removed from some other window. */
|
|
1604 #endif
|
|
1605 /* last_window_start records the start position that this buffer
|
|
1606 had in the last window to be disconnected from it.
|
|
1607 Now that this statement is unconditional,
|
|
1608 it is possible for the buffer to be displayed in the
|
|
1609 selected window, while last_window_start reflects another
|
|
1610 window which was recently showing the same buffer.
|
|
1611 Some people might say that might be a good thing. Let's see. */
|
|
1612 XBUFFER (buf)->last_window_start =
|
|
1613 marker_position (w->start[CURRENT_DISP]);
|
|
1614
|
|
1615 /* Point in the selected window's buffer
|
|
1616 is actually stored in that buffer, and the window's pointm isn't used.
|
|
1617 So don't clobber point in that buffer. */
|
|
1618 if (! EQ (buf, XWINDOW (Fselected_window (Qnil))->buffer))
|
|
1619 {
|
|
1620 struct buffer *b= XBUFFER (buf);
|
|
1621 BUF_SET_PT (b, bufpos_clip_to_bounds (BUF_BEGV (b),
|
|
1622 marker_position (w->pointm[CURRENT_DISP]),
|
|
1623 BUF_ZV (b)));
|
|
1624 }
|
|
1625 }
|
|
1626
|
|
1627 /* Put REPLACEMENT into the window structure in place of OLD. */
|
|
1628 static void
|
|
1629 replace_window (Lisp_Object old, Lisp_Object replacement)
|
|
1630 {
|
|
1631 Lisp_Object tem;
|
|
1632 struct window *o = XWINDOW (old), *p = XWINDOW (replacement);
|
|
1633
|
|
1634 /* If OLD is its frame's root_window, then replacement is the new
|
|
1635 root_window for that frame. */
|
|
1636
|
|
1637 if (EQ (old, FRAME_ROOT_WINDOW (XFRAME (o->frame))))
|
|
1638 FRAME_ROOT_WINDOW (XFRAME (o->frame)) = replacement;
|
|
1639
|
|
1640 WINDOW_LEFT (p) = WINDOW_LEFT (o);
|
|
1641 WINDOW_TOP (p) = WINDOW_TOP (o);
|
|
1642 WINDOW_WIDTH (p) = WINDOW_WIDTH (o);
|
|
1643 WINDOW_HEIGHT (p) = WINDOW_HEIGHT (o);
|
|
1644
|
|
1645 p->next = tem = o->next;
|
|
1646 if (!NILP (tem))
|
|
1647 XWINDOW (tem)->prev = replacement;
|
|
1648
|
|
1649 p->prev = tem = o->prev;
|
|
1650 if (!NILP (tem))
|
|
1651 XWINDOW (tem)->next = replacement;
|
|
1652
|
|
1653 p->parent = tem = o->parent;
|
|
1654 if (!NILP (tem))
|
|
1655 {
|
|
1656 if (EQ (XWINDOW (tem)->vchild, old))
|
|
1657 XWINDOW (tem)->vchild = replacement;
|
|
1658 if (EQ (XWINDOW (tem)->hchild, old))
|
|
1659 XWINDOW (tem)->hchild = replacement;
|
|
1660 }
|
|
1661
|
|
1662 /* #### Here, if replacement is a vertical combination
|
|
1663 and so is its new parent, we should make replacement's
|
|
1664 children be children of that parent instead. */
|
|
1665 }
|
|
1666
|
|
1667 /* we're deleting W; set the structure of W to indicate this. */
|
|
1668
|
|
1669 static void
|
|
1670 mark_window_as_deleted (struct window *w)
|
|
1671 {
|
|
1672 /* In the loop
|
|
1673 (while t (split-window) (delete-window))
|
|
1674 we end up with a tree of deleted windows which are all connected
|
|
1675 through the `next' slot. This might not seem so bad, as they're
|
|
1676 deleted, and will presumably be GCed - but if even *one* of those
|
|
1677 windows is still being pointed to, by the user, or by a window
|
|
1678 configuration, then *all* of those windows stick around.
|
|
1679
|
|
1680 Since the window-configuration code doesn't need any of the
|
|
1681 pointers to other windows (they are all recreated from the
|
|
1682 window-config data), we set them all to nil so that we
|
|
1683 are able to collect more actual garbage.
|
|
1684 */
|
|
1685 w->next = Qnil;
|
|
1686 w->prev = Qnil;
|
|
1687 w->hchild = Qnil;
|
|
1688 w->vchild = Qnil;
|
|
1689 w->parent = Qnil;
|
|
1690
|
|
1691 w->dead = 1;
|
|
1692
|
|
1693 /* Free the extra data structures attached to windows immediately so
|
|
1694 they don't sit around consuming excess space. They will be
|
|
1695 reinitialized by the window-configuration code as necessary. */
|
|
1696 finalize_window ((void *) w, 0);
|
|
1697 }
|
|
1698
|
20
|
1699 DEFUN ("delete-window", Fdelete_window, 0, 2, "", /*
|
0
|
1700 Remove WINDOW from the display. Default is selected window.
|
|
1701 If window is the only one on the frame, the frame is destroyed.
|
|
1702 Normally, you cannot delete the last non-minibuffer-only frame (you must
|
|
1703 use `save-buffers-kill-emacs' or `kill-emacs'). However, if optional
|
|
1704 second argument FORCE is non-nil, you can delete the last frame. (This
|
|
1705 will automatically call `save-buffers-kill-emacs'.)
|
20
|
1706 */
|
|
1707 (window, force))
|
0
|
1708 {
|
|
1709 /* This function can GC if this is the only window in the frame */
|
|
1710 struct window *w;
|
|
1711 Lisp_Object parent;
|
|
1712 struct window *par;
|
|
1713 Lisp_Object frame;
|
|
1714 struct frame *f;
|
|
1715 struct device *d;
|
|
1716
|
|
1717 /* Note: this function is called by other C code on non-leaf
|
|
1718 windows. */
|
|
1719
|
|
1720 /* Do the equivalent of decode_window() but don't error out on
|
|
1721 deleted window; it's OK to delete an already-deleted window. */
|
|
1722 if (NILP (window))
|
|
1723 window = Fselected_window (Qnil);
|
|
1724 else
|
|
1725 CHECK_WINDOW (window);
|
|
1726 w = XWINDOW (window);
|
|
1727
|
|
1728 /* It's okay to delete an already-deleted window. */
|
|
1729 if (! WINDOW_LIVE_P (w))
|
|
1730 return Qnil;
|
|
1731
|
|
1732 frame = WINDOW_FRAME (w);
|
|
1733 f = XFRAME (frame);
|
|
1734 d = XDEVICE (FRAME_DEVICE (f));
|
|
1735
|
|
1736 if (TOP_LEVEL_WINDOW_P (w))
|
|
1737 {
|
|
1738 if (NILP (memq_no_quit (frame, DEVICE_FRAME_LIST (d))))
|
|
1739 /* this frame isn't fully initialized yet; don't blow up. */
|
|
1740 return Qnil;
|
|
1741
|
|
1742 if (MINI_WINDOW_P (XWINDOW (window)))
|
|
1743 error ("Attempt to delete the minibuffer window");
|
|
1744
|
|
1745 /* It has been suggested that it's a good thing for C-x 0 to have this
|
|
1746 behavior, but not such a good idea for #'delete-window to have it.
|
|
1747 Maybe C-x 0 should be bound to something else, or maybe frame
|
|
1748 deletion should only happen when this is called interactively.
|
|
1749 */
|
|
1750 delete_frame_internal (f, !NILP (force), 0, 0);
|
|
1751 return Qnil;
|
|
1752 }
|
|
1753
|
|
1754 /* At this point, we know the window has a parent. */
|
|
1755 parent = w->parent;
|
|
1756 par = XWINDOW (parent);
|
|
1757
|
|
1758 MARK_FRAME_WINDOWS_STRUCTURE_CHANGED (f);
|
|
1759
|
|
1760 /* Are we trying to delete any frame's selected window?
|
|
1761 Note that we could be dealing with a non-leaf window
|
|
1762 where the selected window is one of our children.
|
|
1763 So, we check by scanning all the ancestors of the
|
|
1764 frame's selected window and comparing each one with
|
|
1765 WINDOW. */
|
|
1766 {
|
|
1767 Lisp_Object pwindow;
|
185
|
1768
|
0
|
1769 pwindow = FRAME_SELECTED_WINDOW (f);
|
185
|
1770
|
0
|
1771 while (!NILP (pwindow))
|
|
1772 {
|
|
1773 if (EQ (window, pwindow))
|
|
1774 break;
|
|
1775 pwindow = XWINDOW (pwindow)->parent;
|
|
1776 }
|
|
1777
|
|
1778 if (EQ (window, pwindow))
|
|
1779 {
|
|
1780 /* OK, we found it. */
|
|
1781 Lisp_Object alternative;
|
|
1782 alternative = Fnext_window (window, Qlambda, Qnil, Qnil);
|
185
|
1783
|
0
|
1784 /* If we're about to delete the selected window on the
|
|
1785 selected frame, then we should use Fselect_window to select
|
|
1786 the new window. On the other hand, if we're about to
|
|
1787 delete the selected window on any other frame, we shouldn't do
|
|
1788 anything but set the frame's selected_window slot. */
|
|
1789 if (EQ (frame, Fselected_frame (Qnil)))
|
|
1790 Fselect_window (alternative);
|
|
1791 else
|
|
1792 set_frame_selected_window (f, alternative);
|
|
1793 }
|
|
1794 }
|
|
1795
|
|
1796 /* w->buffer is nil in a non-leaf window; in this case,
|
|
1797 get rid of the markers we maintain that point into that buffer. */
|
|
1798 if (!NILP (w->buffer))
|
|
1799 {
|
|
1800 unshow_buffer (w);
|
|
1801 unchain_marker (w->pointm[CURRENT_DISP]);
|
|
1802 unchain_marker (w->pointm[DESIRED_DISP]);
|
|
1803 unchain_marker (w->pointm[CMOTION_DISP]);
|
|
1804 unchain_marker (w->start[CURRENT_DISP]);
|
|
1805 unchain_marker (w->start[DESIRED_DISP]);
|
|
1806 unchain_marker (w->start[CMOTION_DISP]);
|
|
1807 unchain_marker (w->sb_point);
|
|
1808 /* This breaks set-window-configuration if windows in the saved
|
|
1809 configuration get deleted and multiple frames are in use. */
|
|
1810 /* w->buffer = Qnil; */
|
|
1811 }
|
185
|
1812
|
0
|
1813 /* close up the hole in the sibling list */
|
|
1814 if (!NILP (w->next))
|
|
1815 XWINDOW (w->next)->prev = w->prev;
|
|
1816 if (!NILP (w->prev))
|
|
1817 XWINDOW (w->prev)->next = w->next;
|
|
1818 if (EQ (window, par->hchild))
|
|
1819 par->hchild = w->next;
|
|
1820 if (EQ (window, par->vchild))
|
|
1821 par->vchild = w->next;
|
|
1822
|
|
1823 /* Find one of our siblings to give our space to. */
|
|
1824 {
|
|
1825 Lisp_Object sib = w->prev;
|
|
1826 if (NILP (sib))
|
|
1827 {
|
|
1828 /* If w gives its space to its next sibling, that sibling needs
|
|
1829 to have its top/left side pulled back to where w's is.
|
|
1830 set_window_{height,width} will re-position the sibling's
|
|
1831 children. */
|
|
1832 sib = w->next;
|
|
1833 WINDOW_TOP (XWINDOW (sib)) = WINDOW_TOP (w);
|
|
1834 WINDOW_LEFT (XWINDOW (sib)) = WINDOW_LEFT (w);
|
|
1835 }
|
185
|
1836
|
0
|
1837 /* Stretch that sibling. */
|
|
1838 if (!NILP (par->vchild))
|
|
1839 set_window_pixheight
|
|
1840 (sib, (WINDOW_HEIGHT (XWINDOW (sib)) + WINDOW_HEIGHT (w)), 1);
|
|
1841 if (!NILP (par->hchild))
|
|
1842 set_window_pixwidth
|
|
1843 (sib, (WINDOW_WIDTH (XWINDOW (sib)) + WINDOW_WIDTH (w)), 1);
|
|
1844 }
|
|
1845
|
|
1846 /* If parent now has only one child,
|
|
1847 put the child into the parent's place. */
|
|
1848 {
|
|
1849 Lisp_Object parchild = par->hchild;
|
|
1850 if (NILP (parchild))
|
|
1851 parchild = par->vchild;
|
|
1852 if (NILP (XWINDOW (parchild)->next))
|
|
1853 {
|
|
1854 replace_window (parent, parchild);
|
|
1855 mark_window_as_deleted (XWINDOW (parent));
|
|
1856 }
|
|
1857 }
|
|
1858
|
|
1859 /* Since we may be deleting combination windows, we must make sure that
|
|
1860 not only W but all its children have been marked as deleted. */
|
|
1861 if (!NILP (w->hchild))
|
|
1862 delete_all_subwindows (XWINDOW (w->hchild));
|
|
1863 else if (!NILP (w->vchild))
|
|
1864 delete_all_subwindows (XWINDOW (w->vchild));
|
|
1865
|
|
1866 mark_window_as_deleted (w);
|
|
1867
|
|
1868 f->mirror_dirty = 1;
|
|
1869 return Qnil;
|
|
1870 }
|
|
1871
|
|
1872
|
20
|
1873 DEFUN ("next-window", Fnext_window, 0, 4, 0, /*
|
0
|
1874 Return next window after WINDOW in canonical ordering of windows.
|
|
1875 If omitted, WINDOW defaults to the selected window.
|
|
1876
|
|
1877 Optional second arg MINIBUF t means count the minibuffer window even
|
|
1878 if not active. MINIBUF nil or omitted means count the minibuffer iff
|
|
1879 it is active. MINIBUF neither t nor nil means not to count the
|
|
1880 minibuffer even if it is active.
|
|
1881
|
|
1882 Several frames may share a single minibuffer; if the minibuffer
|
|
1883 counts, all windows on all frames that share that minibuffer count
|
|
1884 too. Therefore, `next-window' can be used to iterate through the
|
|
1885 set of windows even when the minibuffer is on another frame. If the
|
|
1886 minibuffer does not count, only windows from WINDOW's frame count.
|
|
1887
|
|
1888 Optional third arg ALL-FRAMES t means include windows on all frames.
|
|
1889 ALL-FRAMES nil or omitted means cycle within the frames as specified
|
|
1890 above. ALL-FRAMES = `visible' means include windows on all visible frames.
|
|
1891 ALL-FRAMES = 0 means include windows on all visible and iconified frames.
|
|
1892 If ALL-FRAMES is a frame, restrict search to windows on that frame.
|
|
1893 Anything else means restrict to WINDOW's frame.
|
|
1894
|
|
1895 Optional fourth argument CONSOLE controls which consoles or devices the
|
|
1896 returned window may be on. If CONSOLE is a console, return windows only
|
|
1897 on that console. If CONSOLE is a device, return windows only on that
|
|
1898 device. If CONSOLE is a console type, return windows only on consoles
|
|
1899 of that type. If CONSOLE is 'window-system, return any windows on any
|
|
1900 window-system consoles. If CONSOLE is nil or omitted, return windows only
|
|
1901 on WINDOW's console. Otherwise, all windows are considered.
|
|
1902
|
|
1903 If you use consistent values for MINIBUF, ALL-FRAMES, and CONSOLE, you
|
|
1904 can use `next-window' to iterate through the entire cycle of acceptable
|
|
1905 windows, eventually ending up back at the window you started with.
|
|
1906 `previous-window' traverses the same cycle, in the reverse order.
|
20
|
1907 */
|
70
|
1908 (window, minibuf, all_frames, console))
|
0
|
1909 {
|
|
1910 Lisp_Object tem;
|
|
1911 Lisp_Object start_window;
|
|
1912
|
|
1913 if (NILP (window))
|
|
1914 window = Fselected_window (Qnil);
|
|
1915 else
|
|
1916 CHECK_LIVE_WINDOW (window);
|
|
1917
|
|
1918 start_window = window;
|
|
1919
|
|
1920 /* minibuf == nil may or may not include minibuffers.
|
|
1921 Decide if it does. */
|
|
1922 if (NILP (minibuf))
|
|
1923 minibuf = (minibuf_level ? minibuf_window : Qlambda);
|
|
1924 else if (! EQ (minibuf, Qt))
|
|
1925 minibuf = Qlambda;
|
|
1926 /* Now minibuf can be t => count all minibuffer windows,
|
|
1927 lambda => count none of them,
|
|
1928 or a specific minibuffer window (the active one) to count. */
|
|
1929
|
|
1930 /* all_frames == nil doesn't specify which frames to include. */
|
|
1931 if (NILP (all_frames))
|
|
1932 all_frames = (! EQ (minibuf, Qlambda)
|
|
1933 ? (FRAME_MINIBUF_WINDOW
|
|
1934 (XFRAME
|
|
1935 (WINDOW_FRAME
|
|
1936 (XWINDOW (window)))))
|
|
1937 : Qnil);
|
|
1938 else if (EQ (all_frames, Qvisible))
|
|
1939 ;
|
|
1940 else if (ZEROP (all_frames))
|
|
1941 ;
|
|
1942 else if (FRAMEP (all_frames) && ! EQ (all_frames, Fwindow_frame (window)))
|
|
1943 /* If all_frames is a frame and window arg isn't on that frame, just
|
|
1944 return the first window on the frame. */
|
|
1945 return frame_first_window (XFRAME (all_frames));
|
|
1946 else if (! EQ (all_frames, Qt))
|
|
1947 all_frames = Qnil;
|
|
1948 /* Now all_frames is t meaning search all frames,
|
|
1949 nil meaning search just current frame,
|
|
1950 visible meaning search just visible frames,
|
|
1951 0 meaning search visible and iconified frames,
|
|
1952 or a window, meaning search the frame that window belongs to. */
|
|
1953
|
|
1954 /* Do this loop at least once, to get the next window, and perhaps
|
|
1955 again, if we hit the minibuffer and that is not acceptable. */
|
|
1956 do
|
|
1957 {
|
|
1958 /* Find a window that actually has a next one. This loop
|
|
1959 climbs up the tree. */
|
|
1960 while (tem = XWINDOW (window)->next, NILP (tem))
|
|
1961 if (tem = XWINDOW (window)->parent, !NILP (tem))
|
|
1962 window = tem;
|
|
1963 else /* window must be minibuffer window now */
|
|
1964 {
|
|
1965 /* We've reached the end of this frame.
|
|
1966 Which other frames are acceptable? */
|
|
1967 tem = WINDOW_FRAME (XWINDOW (window));
|
|
1968
|
|
1969 if (! NILP (all_frames))
|
|
1970 {
|
|
1971 Lisp_Object tem1;
|
|
1972
|
|
1973 tem1 = tem;
|
|
1974 tem = next_frame (tem, all_frames, console);
|
|
1975 /* In the case where the minibuffer is active,
|
|
1976 and we include its frame as well as the selected one,
|
|
1977 next_frame may get stuck in that frame.
|
|
1978 If that happens, go back to the selected frame
|
|
1979 so we can complete the cycle. */
|
|
1980 if (EQ (tem, tem1))
|
|
1981 XSETFRAME (tem, selected_frame ());
|
|
1982 }
|
|
1983
|
|
1984 tem = FRAME_ROOT_WINDOW (XFRAME (tem));
|
|
1985 break;
|
|
1986 }
|
|
1987
|
|
1988 window = tem;
|
|
1989
|
|
1990 /* If we're in a combination window, find its first child and
|
|
1991 recurse on that. Otherwise, we've found the window we want. */
|
|
1992 while (1)
|
|
1993 {
|
|
1994 if (!NILP (XWINDOW (window)->hchild))
|
|
1995 window = XWINDOW (window)->hchild;
|
|
1996 else if (!NILP (XWINDOW (window)->vchild))
|
|
1997 window = XWINDOW (window)->vchild;
|
|
1998 else break;
|
|
1999 }
|
|
2000 }
|
|
2001 /* "acceptable" is the correct spelling. */
|
|
2002 /* Which windows are acceptable?
|
|
2003 Exit the loop and accept this window if
|
|
2004 this isn't a minibuffer window,
|
|
2005 or we're accepting all minibuffer windows,
|
|
2006 or this is the active minibuffer and we are accepting that one, or
|
|
2007 we've come all the way around and we're back at the original window. */
|
|
2008 while (MINI_WINDOW_P (XWINDOW (window))
|
|
2009 && ! EQ (minibuf, Qt)
|
|
2010 && ! EQ (minibuf, window)
|
|
2011 && ! EQ (window, start_window));
|
|
2012
|
|
2013 return window;
|
|
2014 }
|
|
2015
|
20
|
2016 DEFUN ("previous-window", Fprevious_window, 0, 4, 0, /*
|
110
|
2017 Return the window preceding WINDOW in canonical ordering of windows.
|
0
|
2018 If omitted, WINDOW defaults to the selected window.
|
|
2019
|
|
2020 Optional second arg MINIBUF t means count the minibuffer window even
|
|
2021 if not active. MINIBUF nil or omitted means count the minibuffer iff
|
|
2022 it is active. MINIBUF neither t nor nil means not to count the
|
|
2023 minibuffer even if it is active.
|
|
2024
|
|
2025 Several frames may share a single minibuffer; if the minibuffer
|
|
2026 counts, all windows on all frames that share that minibuffer count
|
|
2027 too. Therefore, `previous-window' can be used to iterate through
|
|
2028 the set of windows even when the minibuffer is on another frame. If
|
|
2029 the minibuffer does not count, only windows from WINDOW's frame count
|
|
2030
|
|
2031 If optional third arg ALL-FRAMES t means include windows on all frames.
|
|
2032 ALL-FRAMES nil or omitted means cycle within the frames as specified
|
|
2033 above. ALL-FRAMES = `visible' means include windows on all visible frames.
|
|
2034 ALL-FRAMES = 0 means include windows on all visible and iconified frames.
|
|
2035 If ALL-FRAMES is a frame, restrict search to windows on that frame.
|
|
2036 Anything else means restrict to WINDOW's frame.
|
|
2037
|
|
2038 Optional fourth argument CONSOLE controls which consoles or devices the
|
|
2039 returned window may be on. If CONSOLE is a console, return windows only
|
|
2040 on that console. If CONSOLE is a device, return windows only on that
|
|
2041 device. If CONSOLE is a console type, return windows only on consoles
|
|
2042 of that type. If CONSOLE is 'window-system, return any windows on any
|
|
2043 window-system consoles. If CONSOLE is nil or omitted, return windows only
|
|
2044 on WINDOW's console. Otherwise, all windows are considered.
|
|
2045
|
|
2046 If you use consistent values for MINIBUF, ALL-FRAMES, and CONSOLE, you
|
|
2047 can use `previous-window' to iterate through the entire cycle of acceptable
|
|
2048 windows, eventually ending up back at the window you started with.
|
|
2049 `next-window' traverses the same cycle, in the reverse order.
|
20
|
2050 */
|
70
|
2051 (window, minibuf, all_frames, console))
|
0
|
2052 {
|
|
2053 Lisp_Object tem;
|
|
2054 Lisp_Object start_window;
|
|
2055
|
|
2056 if (NILP (window))
|
|
2057 window = Fselected_window (Qnil);
|
|
2058 else
|
|
2059 CHECK_LIVE_WINDOW (window);
|
|
2060
|
|
2061 start_window = window;
|
|
2062
|
|
2063 /* minibuf == nil may or may not include minibuffers.
|
|
2064 Decide if it does. */
|
|
2065 if (NILP (minibuf))
|
|
2066 minibuf = (minibuf_level ? minibuf_window : Qlambda);
|
|
2067 else if (! EQ (minibuf, Qt))
|
|
2068 minibuf = Qlambda;
|
|
2069 /* Now minibuf can be t => count all minibuffer windows,
|
|
2070 lambda => count none of them,
|
|
2071 or a specific minibuffer window (the active one) to count. */
|
|
2072
|
|
2073 /* all_frames == nil doesn't specify which frames to include.
|
|
2074 Decide which frames it includes. */
|
|
2075 if (NILP (all_frames))
|
|
2076 all_frames = (! EQ (minibuf, Qlambda)
|
|
2077 ? (FRAME_MINIBUF_WINDOW
|
|
2078 (XFRAME
|
|
2079 (WINDOW_FRAME
|
|
2080 (XWINDOW (window)))))
|
|
2081 : Qnil);
|
|
2082 else if (EQ (all_frames, Qvisible))
|
|
2083 ;
|
|
2084 else if (ZEROP (all_frames))
|
|
2085 ;
|
|
2086 else if (FRAMEP (all_frames) && ! EQ (all_frames, Fwindow_frame (window)))
|
|
2087 /* If all_frames is a frame and window arg isn't on that frame, just
|
|
2088 return the first window on the frame. */
|
|
2089 return frame_first_window (XFRAME (all_frames));
|
|
2090 else if (! EQ (all_frames, Qt))
|
|
2091 all_frames = Qnil;
|
|
2092 /* Now all_frames is t meaning search all frames,
|
|
2093 nil meaning search just current frame,
|
|
2094 visible meaning search just visible frames,
|
|
2095 0 meaning search visible and iconified frames,
|
|
2096 or a window, meaning search the frame that window belongs to. */
|
|
2097
|
|
2098 /* Do this loop at least once, to get the next window, and perhaps
|
|
2099 again, if we hit the minibuffer and that is not acceptable. */
|
|
2100 do
|
|
2101 {
|
|
2102 /* Find a window that actually has a next one. This loop
|
|
2103 climbs up the tree. */
|
|
2104 while (tem = XWINDOW (window)->prev, NILP (tem))
|
|
2105 if (tem = XWINDOW (window)->parent, !NILP (tem))
|
|
2106 window = tem;
|
|
2107 else /* window must be minibuffer window now */
|
|
2108 {
|
|
2109 /* We have found the top window on the frame.
|
|
2110 Which frames are acceptable? */
|
|
2111 tem = WINDOW_FRAME (XWINDOW (window));
|
|
2112
|
|
2113 if (! NILP (all_frames))
|
|
2114 /* It's actually important that we use prev_frame here,
|
|
2115 rather than next_frame. All the windows acceptable
|
|
2116 according to the given parameters should form a ring;
|
|
2117 Fnext_window and Fprevious_window should go back and
|
|
2118 forth around the ring. If we use next_frame here,
|
|
2119 then Fnext_window and Fprevious_window take different
|
|
2120 paths through the set of acceptable windows.
|
|
2121 window_loop assumes that these `ring' requirement are
|
|
2122 met. */
|
|
2123 {
|
|
2124 Lisp_Object tem1;
|
|
2125
|
|
2126 tem1 = tem;
|
|
2127 tem = prev_frame (tem, all_frames, console);
|
|
2128 /* In the case where the minibuffer is active,
|
|
2129 and we include its frame as well as the selected one,
|
|
2130 next_frame may get stuck in that frame.
|
|
2131 If that happens, go back to the selected frame
|
|
2132 so we can complete the cycle. */
|
|
2133 if (EQ (tem, tem1))
|
|
2134 XSETFRAME (tem, selected_frame ());
|
|
2135 }
|
|
2136
|
|
2137 /* If this frame has a minibuffer, find that window first,
|
|
2138 because it is conceptually the last window in that frame. */
|
|
2139 if (FRAME_HAS_MINIBUF_P (XFRAME (tem)))
|
|
2140 tem = FRAME_MINIBUF_WINDOW (XFRAME (tem));
|
|
2141 else
|
|
2142 tem = FRAME_ROOT_WINDOW (XFRAME (tem));
|
|
2143
|
|
2144 break;
|
|
2145 }
|
|
2146
|
|
2147 window = tem;
|
|
2148
|
|
2149 /* If we're in a combination window, find its first child and
|
|
2150 recurse on that. Otherwise, we've found the window we want. */
|
|
2151 while (1)
|
|
2152 {
|
|
2153 if (!NILP (XWINDOW (window)->hchild))
|
|
2154 window = XWINDOW (window)->hchild;
|
|
2155 else if (!NILP (XWINDOW (window)->vchild))
|
|
2156 window = XWINDOW (window)->vchild;
|
|
2157 else break;
|
|
2158 while (tem = XWINDOW (window)->next, !NILP (tem))
|
|
2159 window = tem;
|
|
2160 }
|
|
2161 }
|
|
2162 /* Which windows are acceptable?
|
|
2163 Exit the loop and accept this window if
|
|
2164 this isn't a minibuffer window,
|
|
2165 or we're accepting all minibuffer windows,
|
|
2166 or this is the active minibuffer and we are accepting that one, or
|
|
2167 we've come all the way around and we're back at the original window. */
|
|
2168 while (MINI_WINDOW_P (XWINDOW (window))
|
|
2169 && ! EQ (minibuf, Qt)
|
|
2170 && ! EQ (minibuf, window)
|
|
2171 && ! EQ (window, start_window));
|
|
2172
|
|
2173 return window;
|
|
2174 }
|
|
2175
|
20
|
2176 DEFUN ("next-vertical-window", Fnext_vertical_window, 0, 1, 0, /*
|
0
|
2177 Return the next window which is vertically after WINDOW.
|
20
|
2178 */
|
|
2179 (window))
|
0
|
2180 {
|
|
2181 Lisp_Object root;
|
|
2182 struct window *w = decode_window (window);
|
|
2183 XSETWINDOW (window, w);
|
|
2184
|
|
2185 if (MINI_WINDOW_P (XWINDOW (window)))
|
|
2186 return Qnil;
|
|
2187
|
|
2188 root = FRAME_ROOT_WINDOW (XFRAME (WINDOW_FRAME (XWINDOW (window))));
|
|
2189
|
|
2190 if (EQ (window, root))
|
|
2191 {
|
|
2192 while (1)
|
|
2193 if (!NILP (XWINDOW (window)->hchild))
|
|
2194 window = XWINDOW (window)->hchild;
|
|
2195 else if (!NILP (XWINDOW (window)->vchild))
|
|
2196 window = XWINDOW (window)->vchild;
|
|
2197 else
|
|
2198 return window;
|
|
2199 }
|
|
2200
|
|
2201 do
|
|
2202 {
|
|
2203 if (!NILP (XWINDOW (window)->parent) &&
|
|
2204 !NILP (XWINDOW (XWINDOW (window)->parent)->vchild))
|
|
2205 {
|
|
2206 if (!NILP (XWINDOW (window)->next))
|
|
2207 return XWINDOW (window)->next;
|
|
2208 else
|
|
2209 window = XWINDOW (window)->parent;
|
|
2210 }
|
|
2211 else
|
|
2212 window = XWINDOW (window)->parent;
|
|
2213 }
|
|
2214 while (!EQ (window, root));
|
|
2215
|
|
2216 while (1)
|
|
2217 if (!NILP (XWINDOW (window)->hchild))
|
|
2218 window = XWINDOW (window)->hchild;
|
|
2219 else if (!NILP (XWINDOW (window)->vchild))
|
|
2220 window = XWINDOW (window)->vchild;
|
|
2221 else
|
|
2222 return window;
|
|
2223 }
|
|
2224
|
20
|
2225 DEFUN ("other-window", Fother_window, 1, 3, "p", /*
|
0
|
2226 Select the N'th different window on this frame.
|
|
2227 All windows on current frame are arranged in a cyclic order.
|
|
2228 This command selects the window N steps away in that order.
|
|
2229 A negative N moves in the opposite order.
|
|
2230
|
|
2231 If optional argument FRAME is `visible', search all visible frames.
|
|
2232 If FRAME is 0, search all visible and iconified frames.
|
|
2233 If FRAME is t, search all frames.
|
|
2234 If FRAME is nil, search only the selected frame.
|
|
2235 If FRAME is a frame, search only that frame.
|
|
2236
|
|
2237 Optional third argument CONSOLE controls which consoles or devices the
|
|
2238 returned window may be on. If CONSOLE is a console, return windows only
|
|
2239 on that console. If CONSOLE is a device, return windows only on that
|
|
2240 device. If CONSOLE is a console type, return windows only on consoles
|
|
2241 of that type. If CONSOLE is 'window-system, return any windows on any
|
|
2242 window-system consoles. If CONSOLE is nil or omitted, return windows only
|
|
2243 on FRAME'S console, or on the selected console if FRAME is not a frame.
|
|
2244 Otherwise, all windows are considered.
|
20
|
2245 */
|
|
2246 (n, frame, console))
|
0
|
2247 {
|
|
2248 int i;
|
|
2249 Lisp_Object w;
|
|
2250
|
|
2251 CHECK_INT (n);
|
|
2252 w = Fselected_window (Qnil);
|
|
2253 i = XINT (n);
|
|
2254
|
|
2255 while (i > 0)
|
|
2256 {
|
|
2257 w = Fnext_window (w, Qnil, frame, console);
|
|
2258 i--;
|
|
2259 }
|
|
2260 while (i < 0)
|
|
2261 {
|
|
2262 w = Fprevious_window (w, Qnil, frame, console);
|
|
2263 i++;
|
|
2264 }
|
|
2265 Fselect_window (w);
|
|
2266 return Qnil;
|
|
2267 }
|
|
2268
|
|
2269
|
|
2270 /* Look at all windows, performing an operation specified by TYPE
|
|
2271 with argument OBJ.
|
|
2272
|
|
2273 If FRAMES is Qt, look at all frames, if Qnil, look at just the selected
|
|
2274 frame. If FRAMES is a frame, just look at windows on that frame.
|
|
2275 If MINI is non-zero, perform the operation on minibuffer windows too.
|
|
2276 */
|
|
2277
|
|
2278 enum window_loop
|
|
2279 {
|
|
2280 WINDOW_LOOP_UNUSED,
|
|
2281 GET_BUFFER_WINDOW, /* Arg is buffer */
|
|
2282 GET_LRU_WINDOW, /* Arg is t for full-width windows only */
|
|
2283 DELETE_OTHER_WINDOWS, /* Arg is window not to delete */
|
|
2284 DELETE_BUFFER_WINDOWS, /* Arg is buffer */
|
|
2285 GET_LARGEST_WINDOW,
|
|
2286 UNSHOW_BUFFER, /* Arg is buffer */
|
|
2287 GET_BUFFER_WINDOW_COUNT, /* Arg is buffer */
|
|
2288 GET_BUFFER_MRU_WINDOW /* Arg is buffer */
|
|
2289 };
|
|
2290
|
|
2291 static Lisp_Object
|
|
2292 window_loop (enum window_loop type,
|
185
|
2293 Lisp_Object obj,
|
0
|
2294 int mini,
|
|
2295 Lisp_Object frames,
|
|
2296 int dedicated_too,
|
|
2297 Lisp_Object console)
|
|
2298 {
|
|
2299 /* This function can GC if type == DELETE_BUFFER_WINDOWS or UNSHOW_BUFFER */
|
|
2300 Lisp_Object w;
|
|
2301 Lisp_Object best_window = Qnil;
|
|
2302 Lisp_Object next_window;
|
|
2303 Lisp_Object last_window;
|
|
2304 struct frame *frame;
|
|
2305 Lisp_Object frame_arg = Qt;
|
|
2306 int count = 0; /* for GET_BUFFER_WINDOW_COUNT */
|
|
2307 /* #### I think the change of "precomputing" last_window and next_window
|
|
2308 * #### catch the lossage this is meant(?) to punt on...
|
|
2309 */
|
185
|
2310 int lose_lose = 0;
|
0
|
2311 Lisp_Object devcons, concons;
|
|
2312
|
|
2313 /* FRAME_ARG is Qlambda to stick to one frame,
|
|
2314 Qvisible to consider all visible frames,
|
|
2315 or Qt otherwise. */
|
|
2316
|
|
2317 /* If we're only looping through windows on a particular frame,
|
|
2318 FRAME points to that frame. If we're looping through windows
|
|
2319 on all frames, FRAME is 0. */
|
|
2320
|
|
2321 if (FRAMEP (frames))
|
|
2322 frame = XFRAME (frames);
|
|
2323 else if (NILP (frames))
|
|
2324 frame = selected_frame ();
|
|
2325 else
|
|
2326 frame = 0;
|
|
2327 if (frame)
|
|
2328 frame_arg = Qlambda;
|
|
2329 else if (ZEROP (frames))
|
|
2330 frame_arg = frames;
|
|
2331 else if (EQ (frames, Qvisible))
|
|
2332 frame_arg = frames;
|
185
|
2333
|
0
|
2334 DEVICE_LOOP_NO_BREAK (devcons, concons)
|
|
2335 {
|
|
2336 Lisp_Object device = XCAR (devcons);
|
272
|
2337 Lisp_Object the_frame;
|
0
|
2338
|
|
2339 if (frame)
|
|
2340 XSETFRAME (the_frame, frame);
|
|
2341 else
|
|
2342 the_frame = DEVICE_SELECTED_FRAME (XDEVICE (device));
|
|
2343
|
|
2344 if (NILP (the_frame))
|
|
2345 continue;
|
|
2346
|
|
2347 if (!device_matches_console_spec (the_frame, device, console))
|
|
2348 continue;
|
|
2349
|
|
2350 /* Pick a window to start with. */
|
|
2351 if (WINDOWP (obj))
|
|
2352 w = obj;
|
|
2353 else
|
|
2354 w = FRAME_SELECTED_WINDOW (XFRAME (the_frame));
|
|
2355
|
|
2356 /* Figure out the last window we're going to mess with. Since
|
|
2357 Fnext_window, given the same options, is guaranteed to go in a
|
|
2358 ring, we can just use Fprevious_window to find the last one.
|
|
2359
|
|
2360 We can't just wait until we hit the first window again,
|
|
2361 because it might be deleted. */
|
|
2362
|
|
2363 last_window = Fprevious_window (w, mini ? Qt : Qnil, frame_arg, Qt);
|
|
2364
|
|
2365 best_window = Qnil;
|
|
2366 for (;;)
|
|
2367 {
|
|
2368 struct window *p = XWINDOW (w);
|
|
2369 struct frame *w_frame = XFRAME (WINDOW_FRAME (p));
|
|
2370
|
|
2371 /* Pick the next window now, since some operations will delete
|
|
2372 the current window. */
|
|
2373 next_window = Fnext_window (w, mini ? Qt : Qnil, frame_arg, Qt);
|
|
2374
|
|
2375 /* #### Still needed ?? */
|
185
|
2376 /* Given the outstanding quality of the rest of this code,
|
0
|
2377 I feel no shame about putting this piece of shit in. */
|
|
2378 if (++lose_lose >= 500)
|
|
2379 return Qnil;
|
|
2380
|
|
2381 /* Note that we do not pay attention here to whether
|
|
2382 the frame is visible, since Fnext_window skips non-visible frames
|
|
2383 if that is desired, under the control of frame_arg. */
|
|
2384 if (! MINI_WINDOW_P (p)
|
|
2385 || (mini && minibuf_level > 0))
|
|
2386 switch (type)
|
|
2387 {
|
|
2388 case GET_BUFFER_WINDOW:
|
|
2389 {
|
|
2390 if (XBUFFER (p->buffer) == XBUFFER (obj))
|
|
2391 return w;
|
|
2392 break;
|
|
2393 }
|
|
2394
|
|
2395 case GET_BUFFER_WINDOW_COUNT:
|
|
2396 {
|
|
2397 if (XBUFFER (p->buffer) == XBUFFER (obj))
|
|
2398 count++;
|
|
2399 break;
|
|
2400 }
|
|
2401
|
|
2402 case GET_LRU_WINDOW:
|
|
2403 {
|
|
2404 /* t as arg means consider only full-width windows */
|
|
2405 if (!NILP (obj)
|
|
2406 && !window_full_width_p (p))
|
|
2407 break;
|
|
2408 /* Ignore dedicated windows and minibuffers. */
|
|
2409 if (MINI_WINDOW_P (p)
|
|
2410 || (dedicated_too ? 0 : !NILP (p->dedicated)))
|
|
2411 break;
|
|
2412 if (NILP (best_window)
|
|
2413 || (XINT (XWINDOW (best_window)->use_time)
|
|
2414 > XINT (p->use_time)))
|
|
2415 best_window = w;
|
|
2416 break;
|
|
2417 }
|
|
2418
|
|
2419 case GET_BUFFER_MRU_WINDOW:
|
|
2420 {
|
|
2421 /* #### what about the first check in GET_LRU_WINDOW? */
|
|
2422 /* Ignore dedicated windows and minibuffers. */
|
|
2423 if (MINI_WINDOW_P (p)
|
|
2424 || (dedicated_too ? 0 : !NILP (p->dedicated)))
|
|
2425 break;
|
|
2426
|
|
2427 if (XBUFFER (p->buffer) == XBUFFER (obj))
|
|
2428 {
|
|
2429 if (NILP (best_window)
|
|
2430 || (XINT (XWINDOW (best_window)->use_time)
|
|
2431 < XINT (p->use_time)))
|
|
2432 best_window = w;
|
|
2433 }
|
|
2434 break;
|
|
2435 }
|
|
2436
|
|
2437 case DELETE_OTHER_WINDOWS:
|
|
2438 {
|
|
2439 /* Don't delete the last window on a frame; this can
|
|
2440 happen when the minibuffer is selected, and would
|
|
2441 cause the frame to be deleted. */
|
|
2442 if (p != XWINDOW (obj) && !TOP_LEVEL_WINDOW_P (XWINDOW (w)))
|
|
2443 Fdelete_window (w, Qnil);
|
|
2444 break;
|
|
2445 }
|
|
2446
|
|
2447 case DELETE_BUFFER_WINDOWS:
|
|
2448 {
|
|
2449 if (EQ (p->buffer, obj))
|
|
2450 {
|
|
2451 struct frame *f = XFRAME (WINDOW_FRAME (p));
|
|
2452
|
|
2453 /* If this window is dedicated, and in a frame
|
|
2454 of its own, kill the frame. */
|
|
2455 if (EQ (w, FRAME_ROOT_WINDOW (f))
|
|
2456 && !NILP (p->dedicated)
|
|
2457 && other_visible_frames (f))
|
|
2458 {
|
|
2459 /* Skip the other windows on this frame.
|
|
2460 There might be one, the minibuffer! */
|
|
2461 if (! EQ (w, last_window))
|
|
2462 while (f == XFRAME (WINDOW_FRAME
|
|
2463 (XWINDOW (next_window))))
|
|
2464 {
|
|
2465 /* As we go, check for the end of the
|
|
2466 loop. We mustn't start going
|
|
2467 around a second time. */
|
|
2468 if (EQ (next_window, last_window))
|
|
2469 {
|
|
2470 last_window = w;
|
|
2471 break;
|
|
2472 }
|
|
2473 next_window = Fnext_window (next_window,
|
|
2474 mini ? Qt : Qnil,
|
|
2475 frame_arg, Qt);
|
|
2476 }
|
|
2477 /* Now we can safely delete the frame. */
|
|
2478 Fdelete_frame (WINDOW_FRAME (p), Qnil);
|
|
2479 }
|
|
2480 else
|
|
2481 /* If we're deleting the buffer displayed in
|
|
2482 the only window on the frame, find a new
|
|
2483 buffer to display there. */
|
|
2484 if (NILP (p->parent))
|
|
2485 {
|
|
2486 Lisp_Object new_buffer;
|
|
2487 new_buffer = Fother_buffer (obj, Qnil, Qnil);
|
|
2488 if (NILP (new_buffer))
|
|
2489 new_buffer = Fget_buffer_create (QSscratch);
|
|
2490 Fset_window_buffer (w, new_buffer);
|
|
2491 if (EQ (w, Fselected_window (Qnil)))
|
|
2492 Fset_buffer (p->buffer);
|
|
2493 }
|
|
2494 else
|
|
2495 Fdelete_window (w, Qnil);
|
|
2496 }
|
|
2497 break;
|
|
2498 }
|
|
2499
|
|
2500 case GET_LARGEST_WINDOW:
|
|
2501 {
|
|
2502 /* Ignore dedicated windows and minibuffers. */
|
|
2503 if (MINI_WINDOW_P (p)
|
|
2504 || (dedicated_too ? 0 : !NILP (p->dedicated)))
|
|
2505 break;
|
|
2506 {
|
|
2507 /* write the check as follows to avoid tripping
|
|
2508 error_check_window() --ben */
|
|
2509 struct window *b = NILP (best_window) ? 0 :
|
|
2510 XWINDOW (best_window);
|
|
2511 if (NILP (best_window)
|
|
2512 || ((WINDOW_HEIGHT (p) * WINDOW_WIDTH (p))
|
|
2513 > (WINDOW_HEIGHT (b) * WINDOW_WIDTH (b))))
|
|
2514 best_window = w;
|
|
2515 }
|
|
2516 break;
|
|
2517 }
|
|
2518
|
|
2519 case UNSHOW_BUFFER:
|
|
2520 {
|
|
2521 if (EQ (p->buffer, obj))
|
|
2522 {
|
|
2523 /* Find another buffer to show in this window. */
|
|
2524 Lisp_Object another_buffer =
|
|
2525 Fother_buffer (obj, Qnil, Qnil);
|
|
2526 if (NILP (another_buffer))
|
|
2527 another_buffer
|
|
2528 = Fget_buffer_create (QSscratch);
|
|
2529 /* If this window is dedicated, and in a frame
|
|
2530 of its own, kill the frame. */
|
|
2531 if (EQ (w, FRAME_ROOT_WINDOW (w_frame))
|
|
2532 && !NILP (p->dedicated)
|
|
2533 && other_visible_frames (w_frame))
|
|
2534 {
|
|
2535 /* Skip the other windows on this frame.
|
|
2536 There might be one, the minibuffer! */
|
|
2537 if (! EQ (w, last_window))
|
|
2538 while (w_frame == XFRAME (WINDOW_FRAME
|
|
2539 (XWINDOW (next_window))))
|
|
2540 {
|
|
2541 /* As we go, check for the end of the
|
|
2542 loop. We mustn't start going
|
|
2543 around a second time. */
|
|
2544 if (EQ (next_window, last_window))
|
|
2545 {
|
|
2546 last_window = w;
|
|
2547 break;
|
|
2548 }
|
|
2549 next_window = Fnext_window (next_window,
|
|
2550 mini ? Qt : Qnil,
|
|
2551 frame_arg, Qt);
|
|
2552 }
|
|
2553 /* Now we can safely delete the frame. */
|
|
2554 delete_frame_internal (XFRAME (WINDOW_FRAME (p)),
|
|
2555 0, 0, 0);
|
|
2556 }
|
|
2557 else
|
|
2558 {
|
|
2559 /* Otherwise show a different buffer in the
|
|
2560 window. */
|
|
2561 p->dedicated = Qnil;
|
|
2562 Fset_window_buffer (w, another_buffer);
|
|
2563 if (EQ (w, Fselected_window (Qnil)))
|
|
2564 Fset_buffer (p->buffer);
|
|
2565 }
|
|
2566 }
|
|
2567 break;
|
|
2568 }
|
|
2569
|
185
|
2570 default:
|
0
|
2571 abort ();
|
|
2572 }
|
|
2573
|
|
2574 if (EQ (w, last_window))
|
|
2575 break;
|
|
2576
|
|
2577 w = next_window;
|
|
2578 }
|
|
2579 }
|
|
2580
|
173
|
2581 return type == GET_BUFFER_WINDOW_COUNT ? make_int (count) : best_window;
|
0
|
2582 }
|
|
2583
|
|
2584 #if 0 /* not currently used */
|
|
2585
|
|
2586 int
|
|
2587 buffer_window_count (struct buffer *b, struct frame *f)
|
|
2588 {
|
|
2589 Lisp_Object buffer, frame;
|
|
2590
|
|
2591 XSETFRAME (frame, f);
|
|
2592 XSETBUFFER (buffer, b);
|
|
2593
|
|
2594 return XINT (window_loop (GET_BUFFER_WINDOW_COUNT, buffer, 0, frame, 1,
|
|
2595 Qnil));
|
|
2596 }
|
|
2597
|
|
2598 int
|
|
2599 buffer_window_mru (struct window *w)
|
|
2600 {
|
185
|
2601 Lisp_Object window =
|
0
|
2602 window_loop (GET_BUFFER_MRU_WINDOW, w->buffer, 0, w->frame, 1, Qnil);
|
|
2603
|
|
2604 if (NILP (window))
|
|
2605 return 0;
|
|
2606 else if (XWINDOW (window) == w)
|
|
2607 return 1;
|
|
2608 else
|
|
2609 return 0;
|
|
2610 }
|
|
2611
|
|
2612 #endif
|
|
2613
|
|
2614
|
20
|
2615 DEFUN ("get-lru-window", Fget_lru_window, 0, 2, 0, /*
|
0
|
2616 Return the window least recently selected or used for display.
|
|
2617 If optional argument FRAME is `visible', search all visible frames.
|
|
2618 If FRAME is 0, search all visible and iconified frames.
|
|
2619 If FRAME is t, search all frames.
|
|
2620 If FRAME is nil, search only the selected frame.
|
|
2621 If FRAME is a frame, search only that frame.
|
|
2622
|
|
2623 Optional second argument CONSOLE controls which consoles or devices the
|
|
2624 returned window may be on. If CONSOLE is a console, return windows only
|
|
2625 on that console. If CONSOLE is a device, return windows only on that
|
|
2626 device. If CONSOLE is a console type, return windows only on consoles
|
|
2627 of that type. If CONSOLE is 'window-system, return any windows on any
|
|
2628 window-system consoles. If CONSOLE is nil or omitted, return windows only
|
|
2629 on FRAME'S console, or on the selected console if FRAME is not a frame.
|
|
2630 Otherwise, all windows are considered.
|
20
|
2631 */
|
|
2632 (frame, console))
|
0
|
2633 {
|
|
2634 Lisp_Object w;
|
|
2635 /* First try for a non-dedicated window that is full-width */
|
|
2636 w = window_loop (GET_LRU_WINDOW, Qt, 0, frame, 0, console);
|
|
2637 if (!NILP (w) && !EQ (w, Fselected_window (Qnil)))
|
|
2638 return w;
|
|
2639
|
|
2640 /* Then try for any non-dedicated window */
|
|
2641 w = window_loop (GET_LRU_WINDOW, Qnil, 0, frame, 0, console);
|
|
2642 if (!NILP (w) && !EQ (w, Fselected_window (Qnil)))
|
|
2643 return w;
|
|
2644
|
|
2645 #if 0
|
|
2646 /* FSFmacs never returns a dedicated window here. If we do,
|
|
2647 it makes `display-buffer' not work right. #### All of this
|
|
2648 shit is so disgusting and awful that it needs to be rethought
|
|
2649 from scratch. */
|
|
2650 /* then try for a dedicated window that is full-width */
|
|
2651 w = window_loop (GET_LRU_WINDOW, Qt, 0, frame, 1, console);
|
|
2652 if (!NILP (w) && !EQ (w, Fselected_window (Qnil)))
|
|
2653 return w;
|
|
2654
|
|
2655 /* If none of them, then all windows, dedicated or not. */
|
|
2656 w = window_loop (GET_LRU_WINDOW, Qnil, 0, frame, 1, console);
|
|
2657
|
|
2658 /* At this point we damn well better have found something. */
|
|
2659 if (NILP (w)) abort ();
|
|
2660 #endif
|
|
2661
|
173
|
2662 return w;
|
0
|
2663 }
|
|
2664
|
20
|
2665 DEFUN ("get-largest-window", Fget_largest_window, 0, 2, 0, /*
|
0
|
2666 Return the window largest in area.
|
|
2667 If optional argument FRAME is `visible', search all visible frames.
|
|
2668 If FRAME is 0, search all visible and iconified frames.
|
|
2669 If FRAME is t, search all frames.
|
|
2670 If FRAME is nil, search only the selected frame.
|
|
2671 If FRAME is a frame, search only that frame.
|
|
2672
|
|
2673 Optional second argument CONSOLE controls which consoles or devices the
|
|
2674 returned window may be on. If CONSOLE is a console, return windows only
|
|
2675 on that console. If CONSOLE is a device, return windows only on that
|
|
2676 device. If CONSOLE is a console type, return windows only on consoles
|
|
2677 of that type. If CONSOLE is 'window-system, return any windows on any
|
|
2678 window-system consoles. If CONSOLE is nil or omitted, return windows only
|
|
2679 on FRAME'S console, or on the selected console if FRAME is not a frame.
|
|
2680 Otherwise, all windows are considered.
|
20
|
2681 */
|
|
2682 (frame, console))
|
0
|
2683 {
|
|
2684 /* Don't search dedicated windows because FSFmacs doesn't.
|
|
2685 This stuff is all black magic so don't try to apply common
|
|
2686 sense to it. */
|
|
2687 return window_loop (GET_LARGEST_WINDOW, Qnil, 0, frame, 0, console);
|
|
2688 }
|
|
2689
|
20
|
2690 DEFUN ("get-buffer-window", Fget_buffer_window, 1, 3, 0, /*
|
0
|
2691 Return a window currently displaying BUFFER, or nil if none.
|
|
2692 If optional argument FRAME is `visible', search all visible frames.
|
|
2693 If optional argument FRAME is 0, search all visible and iconified frames.
|
|
2694 If FRAME is t, search all frames.
|
|
2695 If FRAME is nil, search only the selected frame.
|
|
2696 If FRAME is a frame, search only that frame.
|
|
2697
|
|
2698 Optional third argument CONSOLE controls which consoles or devices the
|
|
2699 returned window may be on. If CONSOLE is a console, return windows only
|
|
2700 on that console. If CONSOLE is a device, return windows only on that
|
|
2701 device. If CONSOLE is a console type, return windows only on consoles
|
|
2702 of that type. If CONSOLE is 'window-system, return any windows on any
|
|
2703 window-system consoles. If CONSOLE is nil or omitted, return windows only
|
|
2704 on FRAME'S console, or on the selected console if FRAME is not a frame.
|
|
2705 Otherwise, all windows are considered.
|
20
|
2706 */
|
|
2707 (buffer, frame, console))
|
0
|
2708 {
|
|
2709 buffer = Fget_buffer (buffer);
|
|
2710 if (BUFFERP (buffer))
|
|
2711 /* Search dedicated windows too. (Doesn't matter here anyway.) */
|
|
2712 return window_loop (GET_BUFFER_WINDOW, buffer, 1, frame, 1, console);
|
|
2713 else
|
|
2714 return Qnil;
|
|
2715 }
|
|
2716
|
|
2717 /* These functions used to be `buffer-left-margin-pixel-width', etc.
|
|
2718 but there is no sensible way to implement those functions, since
|
|
2719 you can't in general derive a window from a buffer. */
|
|
2720
|
20
|
2721 DEFUN ("window-left-margin-pixel-width",
|
|
2722 Fwindow_left_margin_pixel_width, 0, 1, 0, /*
|
0
|
2723 Return the width in pixels of the left outside margin of window WINDOW.
|
|
2724 If WINDOW is nil, the selected window is assumed.
|
20
|
2725 */
|
|
2726 (window))
|
0
|
2727 {
|
149
|
2728 return make_int (window_left_margin_width (decode_window (window)));
|
0
|
2729 }
|
|
2730
|
20
|
2731 DEFUN ("window-right-margin-pixel-width",
|
|
2732 Fwindow_right_margin_pixel_width, 0, 1, 0, /*
|
0
|
2733 Return the width in pixels of the right outside margin of window WINDOW.
|
|
2734 If WINDOW is nil, the selected window is assumed.
|
20
|
2735 */
|
|
2736 (window))
|
0
|
2737 {
|
149
|
2738 return make_int (window_right_margin_width (decode_window (window)));
|
0
|
2739 }
|
|
2740
|
20
|
2741 DEFUN ("delete-other-windows", Fdelete_other_windows, 0, 1, "", /*
|
0
|
2742 Make WINDOW (or the selected window) fill its frame.
|
|
2743 Only the frame WINDOW is on is affected.
|
|
2744 This function tries to reduce display jumps
|
|
2745 by keeping the text previously visible in WINDOW
|
|
2746 in the same place on the frame. Doing this depends on
|
|
2747 the value of (window-start WINDOW), so if calling this function
|
|
2748 in a program gives strange scrolling, make sure the window-start
|
|
2749 value is reasonable when this function is called.
|
20
|
2750 */
|
|
2751 (window))
|
0
|
2752 {
|
|
2753 struct window *w = decode_window (window);
|
|
2754 struct buffer *b = XBUFFER (w->buffer);
|
|
2755 Bufpos start_pos;
|
|
2756 int old_top = WINDOW_TOP (w);
|
|
2757
|
|
2758 XSETWINDOW (window, w);
|
|
2759
|
|
2760 if (MINI_WINDOW_P (w) && old_top > 0)
|
|
2761 error ("Can't expand minibuffer to full frame");
|
|
2762
|
|
2763 /* Ignore dedicated windows. */
|
|
2764 window_loop (DELETE_OTHER_WINDOWS, window, 0, w->frame, 0, Qnil);
|
|
2765
|
|
2766 start_pos = marker_position (w->start[CURRENT_DISP]);
|
|
2767
|
|
2768 /* Try to minimize scrolling, by setting the window start to the
|
|
2769 point which will cause the text at the old window start to be at
|
|
2770 the same place on the frame. But don't try to do this if the
|
|
2771 window start is outside the visible portion (as might happen when
|
|
2772 the display is not current, due to typeahead). */
|
|
2773 if (start_pos >= BUF_BEGV (b) && start_pos <= BUF_ZV (b)
|
|
2774 && !MINI_WINDOW_P (w))
|
|
2775 {
|
|
2776 Bufpos new_start = start_with_line_at_pixpos (w, start_pos, old_top);
|
|
2777
|
|
2778 if (new_start >= BUF_BEGV (b) && new_start <= BUF_ZV (b))
|
|
2779 {
|
|
2780 Fset_marker (w->start[CURRENT_DISP], make_int (new_start),
|
|
2781 w->buffer);
|
|
2782 w->start_at_line_beg = beginning_of_line_p (b, new_start);
|
|
2783 }
|
|
2784 /* We need to do this, so that the window-scroll-functions
|
|
2785 get called. */
|
|
2786 w->force_start = 1;
|
|
2787 }
|
|
2788
|
|
2789 return Qnil;
|
|
2790 }
|
|
2791
|
20
|
2792 DEFUN ("delete-windows-on", Fdelete_windows_on, 1, 3,
|
|
2793 "bDelete windows on (buffer): ", /*
|
0
|
2794 Delete all windows showing BUFFER.
|
|
2795 Optional second argument FRAME controls which frames are affected.
|
|
2796 If nil or omitted, delete all windows showing BUFFER in any frame.
|
|
2797 If t, delete only windows showing BUFFER in the selected frame.
|
|
2798 If `visible', delete all windows showing BUFFER in any visible frame.
|
|
2799 If a frame, delete only windows showing BUFFER in that frame.
|
|
2800
|
|
2801 Optional third argument CONSOLE controls which consoles or devices the
|
|
2802 returned window may be on. If CONSOLE is a console, return windows only
|
|
2803 on that console. If CONSOLE is a device, return windows only on that
|
|
2804 device. If CONSOLE is a console type, return windows only on consoles
|
|
2805 of that type. If CONSOLE is 'window-system, return any windows on any
|
|
2806 window-system consoles. If CONSOLE is nil or omitted, return windows only
|
|
2807 on FRAME'S console, or on the selected console if FRAME is not a frame.
|
|
2808 Otherwise, all windows are considered.
|
20
|
2809 */
|
|
2810 (buffer, frame, console))
|
0
|
2811 {
|
|
2812 /* This function can GC */
|
|
2813 /* FRAME uses t and nil to mean the opposite of what window_loop
|
|
2814 expects. */
|
|
2815 if (!FRAMEP (frame))
|
|
2816 frame = NILP (frame) ? Qt : Qnil;
|
|
2817
|
|
2818 if (!NILP (buffer))
|
|
2819 {
|
|
2820 buffer = Fget_buffer (buffer);
|
|
2821 CHECK_BUFFER (buffer);
|
|
2822 /* Ignore dedicated windows. */
|
|
2823 window_loop (DELETE_BUFFER_WINDOWS, buffer, 0, frame, 0, console);
|
|
2824 }
|
|
2825 return Qnil;
|
|
2826 }
|
|
2827
|
20
|
2828 DEFUN ("replace-buffer-in-windows", Freplace_buffer_in_windows, 1, 1,
|
|
2829 "bReplace buffer in windows: ", /*
|
0
|
2830 Replace BUFFER with some other buffer in all windows showing it.
|
20
|
2831 */
|
|
2832 (buffer))
|
0
|
2833 {
|
|
2834 /* This function can GC */
|
|
2835 if (!NILP (buffer))
|
|
2836 {
|
|
2837 buffer = Fget_buffer (buffer);
|
|
2838 CHECK_BUFFER (buffer);
|
|
2839 /* Ignore dedicated windows. */
|
|
2840 window_loop (UNSHOW_BUFFER, buffer, 0, Qt, 0, Qnil);
|
|
2841 }
|
|
2842 return Qnil;
|
|
2843 }
|
|
2844
|
|
2845 /* The smallest acceptable dimensions for a window. Anything smaller
|
|
2846 might crash Emacs. */
|
|
2847 #define MIN_SAFE_WINDOW_WIDTH (2)
|
|
2848 #define MIN_SAFE_WINDOW_HEIGHT (2)
|
|
2849
|
|
2850 /* Make sure that window_min_height and window_min_width are
|
|
2851 not too small; if they are, set them to safe minima. */
|
|
2852
|
|
2853 static void
|
|
2854 check_min_window_sizes (void)
|
|
2855 {
|
|
2856 /* Smaller values might permit a crash. */
|
|
2857 if (window_min_width < MIN_SAFE_WINDOW_WIDTH)
|
|
2858 window_min_width = MIN_SAFE_WINDOW_WIDTH;
|
|
2859 if (window_min_height < MIN_SAFE_WINDOW_HEIGHT)
|
|
2860 window_min_height = MIN_SAFE_WINDOW_HEIGHT;
|
|
2861 }
|
|
2862
|
|
2863 /* If *ROWS or *COLS are too small a size for FRAME, set them to the
|
|
2864 minimum allowable size. */
|
|
2865 void
|
|
2866 check_frame_size (struct frame *frame, int *rows, int *cols)
|
|
2867 {
|
|
2868 /* For height, we have to see whether the frame has a minibuffer, and
|
|
2869 whether it wants a modeline. */
|
|
2870 int min_height =
|
|
2871 (FRAME_MINIBUF_ONLY_P (frame) ? MIN_SAFE_WINDOW_HEIGHT - 1
|
|
2872 : (! FRAME_HAS_MINIBUF_P (frame)) ? MIN_SAFE_WINDOW_HEIGHT
|
|
2873 : 2 * MIN_SAFE_WINDOW_HEIGHT - 1);
|
|
2874
|
|
2875 if (*rows < min_height)
|
|
2876 *rows = min_height;
|
|
2877 if (*cols < MIN_SAFE_WINDOW_WIDTH)
|
|
2878 *cols = MIN_SAFE_WINDOW_WIDTH;
|
|
2879 }
|
|
2880
|
|
2881 /* Normally the window is deleted if it gets too small.
|
|
2882 nodelete nonzero means do not do this.
|
|
2883 (The caller should check later and do so if appropriate) */
|
|
2884 static void
|
|
2885 set_window_pixsize (Lisp_Object window, int new_pixsize, int nodelete,
|
|
2886 int set_height)
|
|
2887 {
|
|
2888 struct window *w = XWINDOW (window);
|
|
2889 struct frame *f = XFRAME (w->frame);
|
|
2890 struct window *c;
|
|
2891 int old_pixsize = (set_height ? WINDOW_HEIGHT (w) : WINDOW_WIDTH (w));
|
|
2892 Lisp_Object child, minor_kid, major_kid;
|
|
2893 int minsize;
|
|
2894 int line_size;
|
|
2895 int defheight, defwidth;
|
|
2896
|
|
2897 /* #### This is very likely incorrect and instead the char_to_pixel_
|
|
2898 functions should be called. */
|
|
2899 default_face_height_and_width (window, &defheight, &defwidth);
|
|
2900 line_size = (set_height ? defheight : defwidth);
|
|
2901
|
272
|
2902 check_min_window_sizes ();
|
|
2903
|
0
|
2904 minsize = (set_height ? window_min_height : window_min_width);
|
|
2905 minsize *= line_size;
|
|
2906
|
|
2907 if (!nodelete
|
|
2908 && !TOP_LEVEL_WINDOW_P (w)
|
|
2909 && new_pixsize < minsize)
|
|
2910 {
|
|
2911 Fdelete_window (window, Qnil);
|
|
2912 return;
|
|
2913 }
|
|
2914
|
|
2915 SET_LAST_MODIFIED (w, 0);
|
|
2916 SET_LAST_FACECHANGE (w);
|
|
2917 MARK_FRAME_WINDOWS_STRUCTURE_CHANGED (f); /* multiple windows affected */
|
|
2918 if (set_height)
|
|
2919 {
|
|
2920 WINDOW_HEIGHT (w) = new_pixsize;
|
|
2921 major_kid = w->vchild;
|
|
2922 minor_kid = w->hchild;
|
|
2923 }
|
|
2924 else
|
|
2925 {
|
|
2926 WINDOW_WIDTH (w) = new_pixsize;
|
|
2927 major_kid = w->hchild;
|
|
2928 minor_kid = w->vchild;
|
|
2929 }
|
|
2930
|
|
2931 if (!NILP (minor_kid))
|
|
2932 {
|
|
2933 for (child = minor_kid; !NILP (child); child = XWINDOW (child)->next)
|
|
2934 {
|
|
2935 if (set_height)
|
|
2936 WINDOW_TOP (XWINDOW (child)) = WINDOW_TOP (w);
|
|
2937 else
|
|
2938 WINDOW_LEFT (XWINDOW (child)) = WINDOW_LEFT (w);
|
|
2939
|
|
2940 set_window_pixsize (child, new_pixsize, nodelete, set_height);
|
|
2941 }
|
|
2942 }
|
|
2943 else if (!NILP (major_kid))
|
|
2944 {
|
|
2945 int last_pos, last_old_pos, pos, old_pos, first;
|
215
|
2946 int pixel_adj_left = new_pixsize - old_pixsize;
|
0
|
2947 int div_val = old_pixsize << 1;
|
|
2948
|
209
|
2949 /*
|
|
2950 * Previously we bailed out here if there was no size change.
|
215
|
2951 * (pixel_adj_left == 0) But this broke toolbar updates. If a
|
|
2952 * toolbar appears or disappears, windows may not change size,
|
|
2953 * but their top and left coordinates need to be updated.
|
209
|
2954 *
|
215
|
2955 * So we don't bail until after the loop below.
|
209
|
2956 */
|
0
|
2957
|
|
2958 last_pos = first = (set_height ? WINDOW_TOP (w) : WINDOW_LEFT (w));
|
|
2959 last_old_pos = 0;
|
|
2960
|
|
2961 for (child = major_kid; !NILP (child); child = c->next)
|
|
2962 {
|
|
2963 c = XWINDOW (child);
|
|
2964
|
|
2965 if (set_height)
|
|
2966 {
|
|
2967 old_pos = last_old_pos + WINDOW_HEIGHT (c);
|
|
2968 WINDOW_TOP (c) = last_pos;
|
|
2969 }
|
|
2970 else
|
|
2971 {
|
|
2972 old_pos = last_old_pos + WINDOW_WIDTH (c);
|
|
2973 WINDOW_LEFT (c) = last_pos;
|
|
2974 }
|
|
2975
|
|
2976 pos = (((old_pos * new_pixsize) << 1) + old_pixsize) / div_val;
|
2
|
2977 /* All but the last window should have a height which is
|
0
|
2978 a multiple of the default line height. */
|
|
2979 if (!NILP (c->next))
|
|
2980 pos = (pos / line_size) * line_size;
|
|
2981
|
|
2982 /* Avoid confusion: don't delete child if it becomes too small */
|
|
2983 set_window_pixsize (child, pos + first - last_pos, 1, set_height);
|
|
2984
|
|
2985 last_pos = pos + first;
|
|
2986 last_old_pos = old_pos;
|
|
2987 }
|
|
2988
|
215
|
2989 /* Sometimes we may get called with our old size. In that case
|
|
2990 we don't need to do anything else. */
|
|
2991 if (!pixel_adj_left)
|
|
2992 return;
|
|
2993
|
0
|
2994 /* Now delete any children that became too small. */
|
|
2995 if (!nodelete)
|
|
2996 for (child = major_kid; !NILP (child); child = XWINDOW (child)->next)
|
|
2997 {
|
|
2998 if (set_height)
|
|
2999 set_window_pixheight (child, WINDOW_HEIGHT (XWINDOW (child)), 0);
|
|
3000 else
|
|
3001 set_window_pixwidth (child, WINDOW_WIDTH (XWINDOW (child)), 0);
|
|
3002 }
|
|
3003 }
|
|
3004 }
|
|
3005
|
|
3006 /* Set the height of WINDOW and all its inferiors. */
|
|
3007 void
|
|
3008 set_window_pixheight (Lisp_Object window, int new_pixheight, int nodelete)
|
|
3009 {
|
|
3010 set_window_pixsize (window, new_pixheight, nodelete, 1);
|
|
3011 }
|
|
3012
|
|
3013 /* Recursively set width of WINDOW and its inferiors. */
|
|
3014 void
|
|
3015 set_window_pixwidth (Lisp_Object window, int new_pixwidth, int nodelete)
|
|
3016 {
|
|
3017 set_window_pixsize (window, new_pixwidth, nodelete, 0);
|
|
3018 }
|
|
3019
|
|
3020
|
|
3021 static int window_select_count;
|
|
3022
|
20
|
3023 DEFUN ("set-window-buffer", Fset_window_buffer, 2, 2, 0, /*
|
0
|
3024 Make WINDOW display BUFFER as its contents.
|
|
3025 BUFFER can be a buffer or buffer name.
|
20
|
3026 */
|
|
3027 (window, buffer))
|
0
|
3028 {
|
|
3029 Lisp_Object tem;
|
|
3030 struct window *w = decode_window (window);
|
|
3031
|
|
3032 buffer = Fget_buffer (buffer);
|
|
3033 CHECK_BUFFER (buffer);
|
|
3034
|
|
3035 if (!BUFFER_LIVE_P (XBUFFER (buffer)))
|
|
3036 error ("Attempt to display deleted buffer");
|
|
3037
|
|
3038 tem = w->buffer;
|
|
3039 if (NILP (tem))
|
|
3040 error ("Window is deleted");
|
|
3041
|
|
3042 /* While this seems like a logical thing to do, it causes problems
|
|
3043 because of saved window configurations. It is possible for a
|
|
3044 buffer to get restored into a window in which it is already being
|
|
3045 displayed, but start and point are actually at completely
|
|
3046 different locations. So we let this function complete fully and
|
|
3047 it will then make sure redisplay correctly updates things.
|
|
3048
|
|
3049 #### This is a kludge. The correct approach is not to do this
|
|
3050 but to fix set-window-configuration. */
|
|
3051 #if 0
|
|
3052 else if (EQ (tem, buffer))
|
149
|
3053 return Qnil;
|
0
|
3054 #endif
|
|
3055 else if (! EQ (tem, Qt)) /* w->buffer is t when the window
|
|
3056 is first being set up. */
|
|
3057 {
|
|
3058 if (!NILP (w->dedicated) && !EQ (tem, buffer))
|
|
3059 error ("Window is dedicated to buffer %s",
|
16
|
3060 XSTRING_DATA (XBUFFER (tem)->name));
|
0
|
3061
|
|
3062 unshow_buffer (w);
|
|
3063 }
|
|
3064
|
|
3065 w->buffer = buffer;
|
|
3066 w->window_end_pos[CURRENT_DISP] = 0;
|
259
|
3067 w->hscroll = 0;
|
|
3068 w->modeline_hscroll = 0;
|
0
|
3069 Fset_marker (w->pointm[CURRENT_DISP],
|
|
3070 make_int (BUF_PT (XBUFFER (buffer))),
|
|
3071 buffer);
|
|
3072 set_marker_restricted (w->start[CURRENT_DISP],
|
|
3073 make_int (XBUFFER (buffer)->last_window_start),
|
|
3074 buffer);
|
|
3075 Fset_marker (w->sb_point, w->start[CURRENT_DISP], buffer);
|
|
3076 w->start_at_line_beg = 0;
|
|
3077 w->force_start = 0; /* Lucid fix */
|
|
3078 SET_LAST_MODIFIED (w, 1);
|
|
3079 SET_LAST_FACECHANGE (w);
|
|
3080 MARK_WINDOWS_CHANGED (w);
|
|
3081 recompute_all_cached_specifiers_in_window (w);
|
|
3082 if (EQ (window, Fselected_window (Qnil)))
|
|
3083 {
|
|
3084 Fset_buffer (buffer);
|
|
3085 }
|
|
3086 return Qnil;
|
|
3087 }
|
|
3088
|
20
|
3089 DEFUN ("select-window", Fselect_window, 1, 1, 0, /*
|
0
|
3090 Select WINDOW. Most editing will apply to WINDOW's buffer.
|
|
3091 The main editor command loop selects the buffer of the selected window
|
|
3092 before each command.
|
20
|
3093 */
|
|
3094 (window))
|
0
|
3095 {
|
|
3096 struct window *w;
|
|
3097 Lisp_Object old_selected_window = Fselected_window (Qnil);
|
185
|
3098
|
0
|
3099 CHECK_LIVE_WINDOW (window);
|
|
3100 w = XWINDOW (window);
|
|
3101
|
|
3102 /* we have already caught dead-window errors */
|
|
3103 if (!NILP (w->hchild) || !NILP (w->vchild))
|
|
3104 error ("Trying to select non-leaf window");
|
|
3105
|
|
3106 w->use_time = make_int (++window_select_count);
|
|
3107 if (EQ (window, old_selected_window))
|
|
3108 return window;
|
|
3109
|
|
3110 /* deselect the old window, if it exists (it might not exist if
|
|
3111 the selected device has no frames, which occurs at startup) */
|
|
3112 if (!NILP (old_selected_window))
|
|
3113 {
|
|
3114 struct window *ow = XWINDOW (old_selected_window);
|
|
3115
|
|
3116 Fset_marker (ow->pointm[CURRENT_DISP],
|
|
3117 make_int (BUF_PT (XBUFFER (ow->buffer))),
|
|
3118 ow->buffer);
|
|
3119
|
|
3120 MARK_WINDOWS_CHANGED (ow);
|
|
3121 }
|
|
3122
|
|
3123 /* now select the window's frame */
|
|
3124 set_frame_selected_window (XFRAME (WINDOW_FRAME (w)), window);
|
185
|
3125
|
0
|
3126 select_frame_1 (WINDOW_FRAME (w));
|
|
3127
|
|
3128 /* also select the window's buffer */
|
|
3129 Frecord_buffer (w->buffer);
|
|
3130 Fset_buffer (w->buffer);
|
|
3131
|
|
3132 /* Go to the point recorded in the window.
|
|
3133 This is important when the buffer is in more
|
|
3134 than one window. It also matters when
|
|
3135 redisplay_window has altered point after scrolling,
|
|
3136 because it makes the change only in the window. */
|
|
3137 {
|
|
3138 Bufpos new_point = marker_position (w->pointm[CURRENT_DISP]);
|
|
3139 if (new_point < BUF_BEGV (current_buffer))
|
|
3140 new_point = BUF_BEGV (current_buffer);
|
|
3141 else if (new_point > BUF_ZV (current_buffer))
|
|
3142 new_point = BUF_ZV (current_buffer);
|
|
3143
|
|
3144 BUF_SET_PT (current_buffer, new_point);
|
|
3145 }
|
|
3146
|
|
3147 MARK_WINDOWS_CHANGED (w);
|
|
3148
|
|
3149 return window;
|
|
3150 }
|
|
3151
|
|
3152 Lisp_Object
|
|
3153 display_buffer (Lisp_Object buffer, Lisp_Object not_this_window_p,
|
|
3154 Lisp_Object override_frame)
|
|
3155 {
|
|
3156 return call3 (Qdisplay_buffer, buffer, not_this_window_p, override_frame);
|
|
3157 }
|
|
3158
|
|
3159 void
|
|
3160 temp_output_buffer_show (Lisp_Object buf, Lisp_Object same_frame)
|
|
3161 {
|
|
3162 /* This function can GC */
|
|
3163 Lisp_Object window;
|
|
3164 struct window *w;
|
|
3165 struct buffer *b = XBUFFER (buf);
|
|
3166
|
|
3167 BUF_SAVE_MODIFF (XBUFFER (buf)) = BUF_MODIFF (b);
|
|
3168 widen_buffer (b, 0);
|
|
3169 BUF_SET_PT (b, BUF_BEG (b));
|
|
3170
|
272
|
3171 if (!NILP (Vtemp_buffer_show_function))
|
0
|
3172 call1 (Vtemp_buffer_show_function, buf);
|
|
3173 else
|
|
3174 {
|
|
3175 window = display_buffer (buf, Qnil, same_frame);
|
|
3176
|
|
3177 if (!EQ (XWINDOW (window)->frame, Fselected_frame (Qnil)))
|
|
3178 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (window)));
|
|
3179
|
274
|
3180 Vminibuffer_scroll_window = window;
|
0
|
3181 w = XWINDOW (window);
|
|
3182 w->hscroll = 0;
|
257
|
3183 w->modeline_hscroll = 0;
|
0
|
3184 set_marker_restricted (w->start[CURRENT_DISP], make_int (1), buf);
|
|
3185 set_marker_restricted (w->pointm[CURRENT_DISP], make_int (1), buf);
|
|
3186 set_marker_restricted (w->sb_point, make_int (1), buf);
|
|
3187
|
185
|
3188 /* Run temp-buffer-show-hook, with the chosen window selected. */
|
0
|
3189 if (!preparing_for_armageddon)
|
|
3190 {
|
|
3191 Lisp_Object tem;
|
|
3192 tem = Fboundp (Qtemp_buffer_show_hook);
|
|
3193 if (!NILP (tem))
|
|
3194 {
|
|
3195 tem = Fsymbol_value (Qtemp_buffer_show_hook);
|
|
3196 if (!NILP (tem))
|
|
3197 {
|
|
3198 int count = specpdl_depth ();
|
|
3199
|
|
3200 /* Select the window that was chosen, for running
|
|
3201 the hook. */
|
|
3202 record_unwind_protect (save_window_excursion_unwind,
|
|
3203 Fcurrent_window_configuration (Qnil));
|
|
3204
|
|
3205 Fselect_window (window);
|
|
3206 run_hook (Qtemp_buffer_show_hook);
|
|
3207 unbind_to (count, Qnil);
|
|
3208 }
|
|
3209 }
|
|
3210 }
|
|
3211 }
|
|
3212 }
|
|
3213
|
|
3214 static void
|
|
3215 make_dummy_parent (Lisp_Object window)
|
|
3216 {
|
272
|
3217 Lisp_Object new;
|
0
|
3218 struct window *o = XWINDOW (window);
|
185
|
3219 struct window *p = alloc_lcrecord_type (struct window, lrecord_window);
|
0
|
3220
|
|
3221 XSETWINDOW (new, p);
|
|
3222 copy_lcrecord (p, o);
|
|
3223
|
|
3224 /* Don't copy the pointers to the line start cache or the face
|
|
3225 instances. */
|
185
|
3226 p->line_start_cache = Dynarr_new (line_start_cache);
|
|
3227 p->face_cachels = Dynarr_new (face_cachel);
|
|
3228 p->glyph_cachels = Dynarr_new (glyph_cachel);
|
0
|
3229
|
|
3230 /* Put new into window structure in place of window */
|
|
3231 replace_window (window, new);
|
|
3232
|
|
3233 o->next = Qnil;
|
|
3234 o->prev = Qnil;
|
|
3235 o->vchild = Qnil;
|
|
3236 o->hchild = Qnil;
|
|
3237 o->parent = new;
|
|
3238
|
|
3239 p->start[CURRENT_DISP] = Qnil;
|
|
3240 p->start[DESIRED_DISP] = Qnil;
|
|
3241 p->start[CMOTION_DISP] = Qnil;
|
|
3242 p->pointm[CURRENT_DISP] = Qnil;
|
|
3243 p->pointm[DESIRED_DISP] = Qnil;
|
|
3244 p->pointm[CMOTION_DISP] = Qnil;
|
|
3245 p->sb_point = Qnil;
|
|
3246 p->buffer = Qnil;
|
|
3247 }
|
|
3248
|
20
|
3249 DEFUN ("split-window", Fsplit_window, 0, 3, "", /*
|
0
|
3250 Split WINDOW, putting SIZE lines in the first of the pair.
|
|
3251 WINDOW defaults to selected one and SIZE to half its size.
|
|
3252 If optional third arg HOR-FLAG is non-nil, split side by side
|
|
3253 and put SIZE columns in the first of the pair.
|
20
|
3254 */
|
|
3255 (window, chsize, horflag))
|
0
|
3256 {
|
|
3257 Lisp_Object new;
|
|
3258 struct window *o, *p;
|
|
3259 struct frame *f;
|
|
3260 int size;
|
|
3261 int psize;
|
|
3262
|
|
3263 if (NILP (window))
|
|
3264 window = Fselected_window (Qnil);
|
|
3265 else
|
|
3266 CHECK_WINDOW (window);
|
|
3267
|
|
3268 o = XWINDOW (window);
|
|
3269 f = XFRAME (WINDOW_FRAME (o));
|
|
3270
|
|
3271 if (NILP (chsize))
|
|
3272 {
|
|
3273 if (!NILP (horflag))
|
|
3274 /* In the new scheme, we are symmetric with respect to separators
|
|
3275 so there is no need to do weird things here. */
|
|
3276 {
|
|
3277 psize = WINDOW_WIDTH (o) >> 1;
|
|
3278 size = window_pixel_width_to_char_width (o, psize, 0);
|
|
3279 }
|
|
3280 else
|
|
3281 {
|
|
3282 psize = WINDOW_HEIGHT (o) >> 1;
|
|
3283 size = window_pixel_height_to_char_height (o, psize, 1);
|
|
3284 }
|
|
3285 }
|
|
3286 else
|
|
3287 {
|
|
3288 CHECK_INT (chsize);
|
|
3289 size = XINT (chsize);
|
|
3290 if (!NILP (horflag))
|
|
3291 psize = window_char_width_to_pixel_width (o, size, 0);
|
|
3292 else
|
|
3293 psize = window_char_height_to_pixel_height (o, size, 1);
|
|
3294 }
|
|
3295
|
|
3296 if (MINI_WINDOW_P (o))
|
|
3297 error ("Attempt to split minibuffer window");
|
|
3298 else if (FRAME_NO_SPLIT_P (XFRAME (WINDOW_FRAME (o))))
|
|
3299 error ("Attempt to split unsplittable frame");
|
|
3300
|
|
3301 check_min_window_sizes ();
|
|
3302
|
|
3303 if (NILP (horflag))
|
|
3304 {
|
|
3305 if (size < window_min_height)
|
|
3306 error ("Window height %d too small (after splitting)", size);
|
|
3307 if (size + window_min_height > window_char_height (o, 1))
|
185
|
3308 error ("Window height %d too small (after splitting)",
|
0
|
3309 window_char_height (o, 1) - size);
|
|
3310 if (NILP (o->parent)
|
|
3311 || NILP (XWINDOW (o->parent)->vchild))
|
|
3312 {
|
|
3313 make_dummy_parent (window);
|
|
3314 reset_face_cachels (XWINDOW (window));
|
|
3315 new = o->parent;
|
|
3316 XWINDOW (new)->vchild = window;
|
|
3317 XFRAME (o->frame)->mirror_dirty = 1;
|
|
3318 }
|
|
3319 }
|
|
3320 else
|
|
3321 {
|
|
3322 if (size < window_min_width)
|
|
3323 error ("Window width %d too small (after splitting)", size);
|
|
3324 if (size + window_min_width > window_char_width (o, 0))
|
185
|
3325 error ("Window width %d too small (after splitting)",
|
0
|
3326 window_char_width (o, 0) - size);
|
|
3327 if (NILP (o->parent)
|
|
3328 || NILP (XWINDOW (o->parent)->hchild))
|
|
3329 {
|
|
3330 make_dummy_parent (window);
|
|
3331 reset_face_cachels (XWINDOW (window));
|
|
3332 new = o->parent;
|
|
3333 XWINDOW (new)->hchild = window;
|
|
3334 XFRAME (o->frame)->mirror_dirty = 1;
|
|
3335 }
|
|
3336 }
|
|
3337
|
|
3338 /* Now we know that window's parent is a vertical combination
|
|
3339 if we are dividing vertically, or a horizontal combination
|
|
3340 if we are making side-by-side windows */
|
|
3341
|
|
3342 MARK_FRAME_WINDOWS_STRUCTURE_CHANGED (f);
|
|
3343 new = allocate_window ();
|
|
3344 p = XWINDOW (new);
|
|
3345
|
|
3346 p->frame = o->frame;
|
|
3347 p->next = o->next;
|
|
3348 if (!NILP (p->next))
|
|
3349 XWINDOW (p->next)->prev = new;
|
|
3350 p->prev = window;
|
|
3351 o->next = new;
|
|
3352 p->parent = o->parent;
|
|
3353 p->buffer = Qt;
|
|
3354
|
|
3355 reset_face_cachels (p);
|
|
3356 reset_glyph_cachels (p);
|
185
|
3357
|
0
|
3358
|
|
3359 /* Apportion the available frame space among the two new windows */
|
|
3360
|
|
3361 if (!NILP (horflag))
|
|
3362 {
|
|
3363 WINDOW_HEIGHT (p) = WINDOW_HEIGHT (o);
|
|
3364 WINDOW_TOP (p) = WINDOW_TOP (o);
|
|
3365 WINDOW_WIDTH (p) = WINDOW_WIDTH (o) - psize;
|
|
3366 WINDOW_WIDTH (o) = psize;
|
|
3367 WINDOW_LEFT (p) = WINDOW_LEFT (o) + psize;
|
|
3368 }
|
|
3369 else
|
|
3370 {
|
|
3371 WINDOW_LEFT (p) = WINDOW_LEFT (o);
|
|
3372 WINDOW_WIDTH (p) = WINDOW_WIDTH (o);
|
|
3373 WINDOW_HEIGHT (p) = WINDOW_HEIGHT (o) - psize;
|
|
3374 WINDOW_HEIGHT (o) = psize;
|
|
3375 WINDOW_TOP (p) = WINDOW_TOP (o) + psize;
|
|
3376 }
|
|
3377
|
|
3378 XFRAME (p->frame)->mirror_dirty = 1;
|
|
3379 /* do this last (after the window is completely initialized and
|
|
3380 the mirror-dirty flag is set) so that specifier recomputation
|
|
3381 caused as a result of this will work properly and not abort. */
|
|
3382 Fset_window_buffer (new, o->buffer);
|
|
3383 return new;
|
|
3384 }
|
|
3385
|
|
3386
|
20
|
3387 DEFUN ("enlarge-window", Fenlarge_window, 1, 3, "_p", /*
|
0
|
3388 Make the selected window ARG lines bigger.
|
|
3389 From program, optional second arg non-nil means grow sideways ARG columns,
|
|
3390 and optional third ARG specifies the window to change instead of the
|
|
3391 selected window.
|
20
|
3392 */
|
|
3393 (n, side, window))
|
0
|
3394 {
|
|
3395 struct window *w = decode_window (window);
|
|
3396 CHECK_INT (n);
|
263
|
3397 change_window_height (w, XINT (n), !NILP (side), /* inpixels */ 0);
|
|
3398 return Qnil;
|
|
3399 }
|
|
3400
|
|
3401 DEFUN ("enlarge-window-pixels", Fenlarge_window_pixels, 1, 3, "_p", /*
|
|
3402 Make the selected window ARG pixels bigger.
|
|
3403 From program, optional second arg non-nil means grow sideways ARG pixels,
|
|
3404 and optional third ARG specifies the window to change instead of the
|
|
3405 selected window.
|
|
3406 */
|
|
3407 (n, side, window))
|
|
3408 {
|
|
3409 struct window *w = decode_window (window);
|
|
3410 CHECK_INT (n);
|
|
3411 change_window_height (w, XINT (n), !NILP (side), /* inpixels */ 1);
|
0
|
3412 return Qnil;
|
|
3413 }
|
|
3414
|
20
|
3415 DEFUN ("shrink-window", Fshrink_window, 1, 3, "_p", /*
|
0
|
3416 Make the selected window ARG lines smaller.
|
|
3417 From program, optional second arg non-nil means shrink sideways ARG columns,
|
|
3418 and optional third ARG specifies the window to change instead of the
|
|
3419 selected window.
|
20
|
3420 */
|
|
3421 (n, side, window))
|
0
|
3422 {
|
|
3423 CHECK_INT (n);
|
263
|
3424 change_window_height (decode_window (window), -XINT (n), !NILP (side),
|
|
3425 /* inpixels */ 0);
|
|
3426 return Qnil;
|
|
3427 }
|
|
3428
|
|
3429 DEFUN ("shrink-window-pixels", Fshrink_window_pixels, 1, 3, "_p", /*
|
|
3430 Make the selected window ARG pixels smaller.
|
|
3431 From program, optional second arg non-nil means shrink sideways ARG pixels,
|
|
3432 and optional third ARG specifies the window to change instead of the
|
|
3433 selected window.
|
|
3434 */
|
|
3435 (n, side, window))
|
|
3436 {
|
|
3437 CHECK_INT (n);
|
|
3438 change_window_height (decode_window (window), -XINT (n), !NILP (side),
|
|
3439 /* inpixels */ 1);
|
0
|
3440 return Qnil;
|
|
3441 }
|
|
3442
|
|
3443 static int
|
|
3444 window_pixel_height (Lisp_Object window)
|
|
3445 {
|
149
|
3446 return WINDOW_HEIGHT (XWINDOW (window));
|
0
|
3447 }
|
|
3448
|
|
3449 static int
|
|
3450 window_pixel_height_to_char_height (struct window *w, int pixel_height,
|
|
3451 int include_gutters_p)
|
|
3452 {
|
|
3453 int avail_height;
|
|
3454 int defheight, defwidth;
|
|
3455 int char_height;
|
|
3456 Lisp_Object window;
|
185
|
3457
|
0
|
3458 XSETWINDOW (window, w);
|
185
|
3459
|
0
|
3460 avail_height = (pixel_height -
|
|
3461 (include_gutters_p ? 0 :
|
|
3462 window_top_gutter_height (w) +
|
|
3463 window_bottom_gutter_height (w)));
|
185
|
3464
|
0
|
3465 default_face_height_and_width (window, &defheight, &defwidth);
|
|
3466
|
|
3467 char_height = avail_height / defheight;
|
|
3468
|
|
3469 /* It's the calling function's responsibility to check these values
|
|
3470 and make sure they're not out of range.
|
|
3471
|
|
3472 #### We need to go through the calling functions and actually
|
|
3473 do this. */
|
272
|
3474 return max (0, char_height);
|
0
|
3475 }
|
|
3476
|
|
3477 static int
|
|
3478 window_char_height_to_pixel_height (struct window *w, int char_height,
|
|
3479 int include_gutters_p)
|
|
3480 {
|
|
3481 int avail_height;
|
|
3482 int defheight, defwidth;
|
|
3483 int pixel_height;
|
|
3484
|
|
3485 Lisp_Object window;
|
185
|
3486
|
0
|
3487 XSETWINDOW (window, w);
|
185
|
3488
|
0
|
3489 default_face_height_and_width (window, &defheight, &defwidth);
|
|
3490
|
|
3491 avail_height = char_height * defheight;
|
|
3492 pixel_height = (avail_height +
|
|
3493 (include_gutters_p ? 0 :
|
|
3494 window_top_gutter_height (w) +
|
|
3495 window_bottom_gutter_height (w)));
|
|
3496
|
|
3497 /* It's the calling function's responsibility to check these values
|
|
3498 and make sure they're not out of range.
|
|
3499
|
|
3500 #### We need to go through the calling functions and actually
|
|
3501 do this. */
|
272
|
3502 return max (0, pixel_height);
|
0
|
3503 }
|
|
3504
|
|
3505 /* Return number of default lines of text can fit in the window W.
|
|
3506 If INCLUDE_GUTTERS_P is 1, include "gutter" space (modeline plus
|
|
3507 horizontal scrollbar) in the space that is used for the calculation.
|
|
3508 */
|
|
3509 int
|
|
3510 window_char_height (struct window *w, int include_gutters_p)
|
|
3511 {
|
|
3512 return window_pixel_height_to_char_height (w, WINDOW_HEIGHT (w),
|
|
3513 include_gutters_p);
|
|
3514 }
|
|
3515
|
|
3516 /*
|
|
3517 * Return number of lines currently displayed in window w. If
|
|
3518 * end-of-buffer is displayed then the area below end-of-buffer is assume
|
|
3519 * to be blank lines of default height.
|
|
3520 * Does not include the modeline.
|
|
3521 */
|
|
3522 int
|
|
3523 window_displayed_height (struct window *w)
|
|
3524 {
|
|
3525 struct buffer *b = XBUFFER (w->buffer);
|
|
3526 display_line_dynarr *dla = window_display_lines (w, CURRENT_DISP);
|
|
3527 int num_lines;
|
|
3528 Charcount end_pos = (BUF_Z (b) - w->window_end_pos[CURRENT_DISP] > BUF_ZV (b)
|
|
3529 ? -1
|
|
3530 : w->window_end_pos[CURRENT_DISP]);
|
|
3531
|
|
3532 if (!Dynarr_length (dla))
|
|
3533 return window_char_height (w, 0);
|
|
3534
|
|
3535 num_lines = Dynarr_length (dla);
|
|
3536
|
|
3537 /* #### Document and assert somewhere that w->window_end_pos == -1
|
|
3538 indicates that end-of-buffer is being displayed. */
|
|
3539 if (end_pos == -1)
|
|
3540 {
|
|
3541 struct display_line *dl = Dynarr_atp (dla, 0);
|
|
3542 int ypos1 = dl->ypos + dl->descent;
|
|
3543 int ypos2 = WINDOW_TEXT_BOTTOM (w);
|
|
3544 Lisp_Object window;
|
|
3545 int defheight, defwidth;
|
|
3546
|
|
3547 XSETWINDOW (window, w);
|
|
3548
|
|
3549 if (dl->modeline)
|
|
3550 {
|
|
3551 num_lines--;
|
|
3552
|
|
3553 if (Dynarr_length (dla) == 1)
|
|
3554 ypos1 = WINDOW_TEXT_TOP (w);
|
|
3555 else
|
|
3556 {
|
|
3557 dl = Dynarr_atp (dla, Dynarr_length (dla) - 1);
|
|
3558 /* If this line is clipped then we know that there is no
|
|
3559 blank room between eob and the modeline. If we are
|
|
3560 scrolling on clipped lines just know off the clipped
|
|
3561 line and return .*/
|
|
3562 if (scroll_on_clipped_lines && dl->clip)
|
149
|
3563 return num_lines - 1;
|
0
|
3564 ypos1 = dl->ypos + dl->descent - dl->clip;
|
|
3565 }
|
|
3566 }
|
|
3567
|
|
3568 default_face_height_and_width (window, &defheight, &defwidth);
|
|
3569 /* #### This probably needs to know about the clipping area once a
|
|
3570 final definition is decided on. */
|
|
3571 num_lines += ((ypos2 - ypos1) / defheight);
|
|
3572 }
|
|
3573 else
|
|
3574 {
|
|
3575 if (num_lines > 1 && Dynarr_atp (dla, 0)->modeline)
|
|
3576 num_lines--;
|
|
3577
|
|
3578 if (scroll_on_clipped_lines
|
|
3579 && Dynarr_atp (dla, Dynarr_length (dla) - 1)->clip)
|
|
3580 num_lines--;
|
|
3581 }
|
|
3582
|
|
3583 return num_lines;
|
|
3584 }
|
|
3585
|
263
|
3586 /*
|
272
|
3587 * Return height in pixels of buffer-displaying portion of window w.
|
263
|
3588 * Does not include the gutters (modeline, scrollbars, ...)
|
|
3589 */
|
|
3590 int
|
|
3591 window_displayed_pixel_height (struct window *w)
|
|
3592 {
|
|
3593 return (WINDOW_HEIGHT (w)
|
|
3594 - window_top_gutter_height (w)
|
|
3595 - window_bottom_gutter_height (w));
|
|
3596 }
|
|
3597
|
0
|
3598 static int
|
|
3599 window_pixel_width (Lisp_Object window)
|
|
3600 {
|
149
|
3601 return WINDOW_WIDTH (XWINDOW (window));
|
0
|
3602 }
|
|
3603
|
|
3604 static int
|
|
3605 window_pixel_width_to_char_width (struct window *w, int pixel_width,
|
|
3606 int include_margins_p)
|
|
3607 {
|
|
3608 int avail_width;
|
|
3609 int char_width;
|
|
3610 int defheight, defwidth;
|
|
3611 Lisp_Object window;
|
185
|
3612
|
0
|
3613 XSETWINDOW (window, w);
|
185
|
3614
|
0
|
3615 avail_width = (pixel_width -
|
|
3616 window_left_gutter_width (w, 0) -
|
|
3617 window_right_gutter_width (w, 0) -
|
|
3618 (include_margins_p ? 0 : window_left_margin_width (w)) -
|
|
3619 (include_margins_p ? 0 : window_right_margin_width (w)));
|
185
|
3620
|
0
|
3621 default_face_height_and_width (window, &defheight, &defwidth);
|
185
|
3622
|
0
|
3623 char_width = (avail_width / defwidth);
|
|
3624
|
|
3625 /* It's the calling function's responsibility to check these values
|
|
3626 and make sure they're not out of range.
|
|
3627
|
|
3628 #### We need to go through the calling functions and actually
|
|
3629 do this. */
|
272
|
3630 return max (0, char_width);
|
0
|
3631 }
|
|
3632
|
|
3633 static int
|
|
3634 window_char_width_to_pixel_width (struct window *w, int char_width,
|
|
3635 int include_margins_p)
|
|
3636 {
|
|
3637 int avail_width;
|
|
3638 int pixel_width;
|
|
3639 int defheight, defwidth;
|
|
3640 Lisp_Object window;
|
|
3641
|
|
3642 XSETWINDOW (window, w);
|
|
3643
|
|
3644 default_face_height_and_width (window, &defheight, &defwidth);
|
|
3645
|
|
3646 avail_width = char_width * defwidth;
|
|
3647 pixel_width = (avail_width +
|
|
3648 window_left_gutter_width (w, 0) +
|
|
3649 window_right_gutter_width (w, 0) +
|
|
3650 (include_margins_p ? 0 : window_left_margin_width (w)) +
|
|
3651 (include_margins_p ? 0 : window_right_margin_width (w)));
|
|
3652
|
|
3653 /* It's the calling function's responsibility to check these values
|
|
3654 and make sure they're not out of range.
|
|
3655
|
|
3656 #### We need to go through the calling functions and actually
|
|
3657 do this. */
|
272
|
3658 return max (0, pixel_width);
|
0
|
3659 }
|
|
3660
|
|
3661 /* This returns the usable space which doesn't include space needed by
|
|
3662 scrollbars or divider lines. */
|
|
3663 int
|
|
3664 window_char_width (struct window *w, int include_margins_p)
|
|
3665 {
|
|
3666 return window_pixel_width_to_char_width (w, WINDOW_WIDTH (w),
|
|
3667 include_margins_p);
|
|
3668 }
|
|
3669
|
|
3670 #define MINSIZE(w) \
|
|
3671 (widthflag \
|
|
3672 ? window_min_width * defwidth \
|
|
3673 : (defheight * (MINI_WINDOW_P (XWINDOW (w)) ? 1 : window_min_height)))
|
|
3674
|
|
3675 #define CURBEG(w) \
|
|
3676 *(widthflag ? (int *) &WINDOW_LEFT (w) : (int *) &WINDOW_TOP (w))
|
|
3677
|
|
3678 #define CURSIZE(w) \
|
|
3679 *(widthflag ? (int *) &WINDOW_WIDTH (w) : (int *) &WINDOW_HEIGHT (w))
|
|
3680
|
|
3681 #define CURCHARSIZE(w) \
|
|
3682 (widthflag ? window_char_width (w, 0) : window_char_height (w, 1))
|
|
3683
|
|
3684 #define MINCHARSIZE(window) \
|
|
3685 (widthflag ? window_min_width : MINI_WINDOW_P (XWINDOW (window)) \
|
|
3686 ? 1 : window_min_height)
|
|
3687
|
|
3688 /* Unlike set_window_pixheight, this function
|
|
3689 also changes the heights of the siblings so as to
|
|
3690 keep everything consistent. */
|
|
3691
|
|
3692 static void
|
263
|
3693 change_window_height (struct window *win, int delta, int widthflag,
|
|
3694 int inpixels)
|
0
|
3695 {
|
|
3696 Lisp_Object parent;
|
272
|
3697 Lisp_Object window;
|
0
|
3698 struct window *w;
|
|
3699 struct frame *f;
|
|
3700 int *sizep;
|
|
3701 int (*sizefun) (Lisp_Object) = (widthflag
|
|
3702 ? window_pixel_width
|
|
3703 : window_pixel_height);
|
|
3704 void (*setsizefun) (Lisp_Object, int, int) = (widthflag
|
|
3705 ? set_window_pixwidth
|
|
3706 : set_window_pixheight);
|
|
3707 int dim;
|
|
3708 int defheight, defwidth;
|
|
3709
|
|
3710 if (delta == 0)
|
|
3711 return;
|
|
3712
|
|
3713 check_min_window_sizes ();
|
|
3714
|
|
3715 XSETWINDOW (window, win);
|
|
3716 f = XFRAME (win->frame);
|
|
3717 if (EQ (window, FRAME_ROOT_WINDOW (f)))
|
|
3718 error ("Won't change only window");
|
|
3719
|
|
3720 /* #### This is very likely incorrect and instead the char_to_pixel_
|
|
3721 functions should be called. */
|
|
3722 default_face_height_and_width (window, &defheight, &defwidth);
|
|
3723
|
|
3724 while (1)
|
|
3725 {
|
|
3726 w = XWINDOW (window);
|
|
3727 parent = w->parent;
|
|
3728 if (NILP (parent))
|
|
3729 {
|
|
3730 if (widthflag)
|
|
3731 error ("No other window to side of this one");
|
|
3732 break;
|
|
3733 }
|
|
3734 if (widthflag
|
|
3735 ? !NILP (XWINDOW (parent)->hchild)
|
|
3736 : !NILP (XWINDOW (parent)->vchild))
|
|
3737 break;
|
|
3738 window = parent;
|
|
3739 }
|
|
3740
|
|
3741 sizep = &CURSIZE (w);
|
|
3742 dim = CURCHARSIZE (w);
|
|
3743
|
263
|
3744 if ((inpixels && (*sizep + delta) < MINSIZE (window)) ||
|
|
3745 (!inpixels && (dim + delta) < MINCHARSIZE (window)))
|
0
|
3746 {
|
|
3747 if (MINI_WINDOW_P (XWINDOW (window)))
|
|
3748 return;
|
|
3749 else if (!NILP (parent))
|
|
3750 {
|
|
3751 Fdelete_window (window, Qnil);
|
|
3752 return;
|
|
3753 }
|
|
3754 }
|
|
3755
|
263
|
3756 if (!inpixels)
|
|
3757 delta *= (widthflag ? defwidth : defheight);
|
0
|
3758
|
|
3759 {
|
|
3760 int maxdelta;
|
|
3761
|
|
3762 maxdelta = ((!NILP (parent))
|
|
3763 ? (*sizefun) (parent) - *sizep
|
|
3764 : ((!NILP (w->next))
|
|
3765 ? (*sizefun) (w->next) - MINSIZE (w->next)
|
|
3766 : ((!NILP (w->prev))
|
|
3767 ? (*sizefun) (w->prev) - MINSIZE (w->prev)
|
185
|
3768 /* This is a frame with only one window,
|
0
|
3769 a minibuffer-only or a minibufferless frame. */
|
|
3770 : (delta = 0))));
|
|
3771
|
|
3772 if (delta > maxdelta)
|
|
3773 /* This case traps trying to make the minibuffer
|
|
3774 the full frame, or make the only window aside from the
|
|
3775 minibuffer the full frame. */
|
|
3776 delta = maxdelta;
|
|
3777
|
|
3778 if (delta == 0)
|
|
3779 return;
|
|
3780
|
|
3781 #if 0 /* FSFmacs */
|
|
3782 /* #### Chuck: is this correct? */
|
|
3783 if (*sizep + delta < MINSIZE (window))
|
|
3784 {
|
|
3785 Fdelete_window (window);
|
|
3786 return;
|
|
3787 }
|
|
3788 #endif
|
|
3789 }
|
|
3790
|
|
3791 if (!NILP (w->next) &&
|
|
3792 (*sizefun) (w->next) - delta >= (int) MINSIZE (w->next))
|
|
3793 {
|
|
3794 CURBEG (XWINDOW (w->next)) += delta;
|
|
3795 (*setsizefun) (w->next, (*sizefun) (w->next) - delta, 0);
|
|
3796 (*setsizefun) (window, *sizep + delta, 0);
|
|
3797 }
|
|
3798 else if (!NILP (w->prev) &&
|
|
3799 (*sizefun) (w->prev) - delta >= (int) MINSIZE (w->prev))
|
|
3800 {
|
|
3801 (*setsizefun) (w->prev, (*sizefun) (w->prev) - delta, 0);
|
|
3802 CURBEG (w) -= delta;
|
|
3803 (*setsizefun) (window, *sizep + delta, 0);
|
|
3804 }
|
|
3805 else
|
|
3806 {
|
|
3807 int delta1;
|
|
3808 int opht = (*sizefun) (parent);
|
|
3809
|
|
3810 /* If trying to grow this window to or beyond size of the parent,
|
|
3811 make delta1 so big that, on shrinking back down,
|
|
3812 all the siblings end up with less than one line and are deleted. */
|
|
3813 if (opht <= *sizep + delta)
|
|
3814 delta1 = opht * opht * 2;
|
|
3815 /* Otherwise, make delta1 just right so that if we add delta1
|
|
3816 lines to this window and to the parent, and then shrink
|
|
3817 the parent back to its original size, the new proportional
|
|
3818 size of this window will increase by delta. */
|
|
3819 else
|
|
3820 delta1 = (delta * opht * 100) / ((opht - *sizep - delta) * 100);
|
|
3821
|
|
3822 /* Add delta1 lines or columns to this window, and to the parent,
|
|
3823 keeping things consistent while not affecting siblings. */
|
|
3824 CURSIZE (XWINDOW (parent)) = opht + delta1;
|
|
3825 (*setsizefun) (window, *sizep + delta1, 0);
|
|
3826
|
|
3827 /* Squeeze out delta1 lines or columns from our parent,
|
|
3828 shriking this window and siblings proportionately.
|
|
3829 This brings parent back to correct size.
|
|
3830 Delta1 was calculated so this makes this window the desired size,
|
|
3831 taking it all out of the siblings. */
|
|
3832 (*setsizefun) (parent, opht, 0);
|
|
3833 }
|
|
3834
|
|
3835 SET_LAST_MODIFIED (w, 0);
|
|
3836 SET_LAST_FACECHANGE (w);
|
|
3837 MARK_FRAME_WINDOWS_STRUCTURE_CHANGED (f);
|
|
3838 }
|
|
3839 #undef MINSIZE
|
|
3840 #undef CURBEG
|
|
3841 #undef CURSIZE
|
|
3842 #undef CURCHARSIZE
|
|
3843 #undef MINCHARSIZE
|
|
3844
|
|
3845
|
|
3846
|
|
3847 /* Scroll contents of window WINDOW up N lines. */
|
|
3848 void
|
|
3849 window_scroll (Lisp_Object window, Lisp_Object n, int direction,
|
|
3850 Error_behavior errb)
|
|
3851 {
|
|
3852 struct window *w = XWINDOW (window);
|
|
3853 struct buffer *b = XBUFFER (w->buffer);
|
|
3854 int selected = EQ (window, Fselected_window (Qnil));
|
|
3855 int value = 0;
|
|
3856 Lisp_Object point, tem;
|
|
3857
|
|
3858 if (selected)
|
|
3859 point = make_int (BUF_PT (b));
|
|
3860 else
|
|
3861 {
|
|
3862 Bufpos pos = marker_position (w->pointm[CURRENT_DISP]);
|
|
3863
|
|
3864 if (pos < BUF_BEGV (b))
|
|
3865 pos = BUF_BEGV (b);
|
|
3866 else if (pos > BUF_ZV (b))
|
|
3867 pos = BUF_ZV (b);
|
|
3868
|
|
3869 point = make_int (pos);
|
|
3870 }
|
|
3871
|
|
3872 /* Always set force_start so that redisplay_window will run
|
|
3873 thw window-scroll-functions. */
|
|
3874 w->force_start = 1;
|
|
3875
|
|
3876 /* #### When the fuck does this happen? I'm so glad that history has
|
|
3877 completely documented the behavior of the scrolling functions under
|
|
3878 all circumstances. */
|
|
3879 tem = Fpos_visible_in_window_p (point, window);
|
|
3880 if (NILP (tem))
|
|
3881 {
|
|
3882 Fvertical_motion (make_int (-window_char_height (w, 0) / 2), window);
|
|
3883 Fset_marker (w->start[CURRENT_DISP], point, w->buffer);
|
|
3884 w->start_at_line_beg = beginning_of_line_p (b, XINT (point));
|
|
3885 MARK_WINDOWS_CHANGED (w);
|
|
3886 }
|
|
3887
|
|
3888 if (!NILP (n))
|
|
3889 {
|
|
3890 if (EQ (n, Qminus))
|
|
3891 direction *= -1;
|
|
3892 else
|
|
3893 {
|
|
3894 n = Fprefix_numeric_value (n);
|
|
3895 value = XINT (n) * direction;
|
|
3896
|
|
3897 if (!value)
|
|
3898 return; /* someone just made a pointless call */
|
|
3899 }
|
|
3900 }
|
|
3901
|
|
3902 /* If the user didn't specify how far to scroll then we have to figure it
|
|
3903 out by ourselves. */
|
|
3904 if (NILP (n) || EQ (n, Qminus))
|
|
3905 {
|
|
3906 /* Going forwards is easy. If that is what we are doing then just
|
|
3907 set value and the section which handles the user specifying a
|
|
3908 positive value will work. */
|
|
3909 if (direction == 1)
|
|
3910 {
|
|
3911 value = window_displayed_height (w) - next_screen_context_lines;
|
|
3912 value = (value < 1 ? 1 : value);
|
|
3913 }
|
|
3914
|
|
3915 /* Going backwards is hard. We can't use the same loop used if the
|
|
3916 user specified a negative value because we care about
|
|
3917 next_screen_context_lines. In a variable height world you don't
|
|
3918 know how many lines above you can actually be displayed and still
|
|
3919 have the context lines appear. So we leave value set to 0 and add
|
|
3920 a separate section to deal with this. */
|
|
3921
|
|
3922 }
|
|
3923
|
|
3924 if (direction == 1 && !value)
|
|
3925 {
|
|
3926 return;
|
|
3927 }
|
|
3928 else if (value > 0)
|
|
3929 {
|
|
3930 int vtarget;
|
|
3931 Bufpos startp, old_start;
|
|
3932
|
|
3933 old_start = marker_position (w->start[CURRENT_DISP]);
|
|
3934 startp = vmotion (w, old_start, value, &vtarget);
|
|
3935
|
|
3936 if (vtarget < value &&
|
|
3937 (w->window_end_pos[CURRENT_DISP] == -1
|
|
3938 || (BUF_Z (b) - w->window_end_pos[CURRENT_DISP] > BUF_ZV (b))))
|
|
3939 {
|
|
3940 maybe_signal_error (Qend_of_buffer, Qnil, Qwindow, errb);
|
|
3941 return;
|
|
3942 }
|
|
3943 else
|
|
3944 {
|
|
3945 set_marker_restricted (w->start[CURRENT_DISP], make_int (startp),
|
|
3946 w->buffer);
|
|
3947 w->force_start = 1;
|
|
3948 w->start_at_line_beg = beginning_of_line_p (b, startp);
|
|
3949 MARK_WINDOWS_CHANGED (w);
|
|
3950
|
|
3951 if (!point_would_be_visible (w, startp, XINT (point)))
|
|
3952 {
|
|
3953 if (selected)
|
|
3954 BUF_SET_PT (b, startp);
|
|
3955 else
|
|
3956 set_marker_restricted (w->pointm[CURRENT_DISP],
|
|
3957 make_int (startp),
|
|
3958 w->buffer);
|
|
3959 }
|
|
3960 }
|
|
3961 }
|
|
3962 else if (value < 0)
|
|
3963 {
|
|
3964 int vtarget;
|
|
3965 Bufpos startp, old_start;
|
|
3966
|
|
3967 old_start = marker_position (w->start[CURRENT_DISP]);
|
|
3968 startp = vmotion (w, old_start, value, &vtarget);
|
|
3969
|
|
3970 if (vtarget > value
|
|
3971 && marker_position (w->start[CURRENT_DISP]) == BUF_BEGV (b))
|
|
3972 {
|
|
3973 maybe_signal_error (Qbeginning_of_buffer, Qnil, Qwindow, errb);
|
|
3974 return;
|
|
3975 }
|
|
3976 else
|
|
3977 {
|
|
3978 set_marker_restricted (w->start[CURRENT_DISP], make_int (startp),
|
|
3979 w->buffer);
|
|
3980 w->force_start = 1;
|
|
3981 w->start_at_line_beg = beginning_of_line_p (b, startp);
|
|
3982 MARK_WINDOWS_CHANGED (w);
|
|
3983
|
|
3984 if (!point_would_be_visible (w, startp, XINT (point)))
|
|
3985 {
|
|
3986 Bufpos new_point;
|
|
3987
|
|
3988 if (MINI_WINDOW_P (w))
|
|
3989 new_point = startp;
|
|
3990 else
|
|
3991 new_point = start_of_last_line (w, startp);
|
|
3992
|
|
3993 if (selected)
|
|
3994 BUF_SET_PT (b, new_point);
|
|
3995 else
|
|
3996 set_marker_restricted (w->pointm[CURRENT_DISP],
|
|
3997 make_int (new_point),
|
|
3998 w->buffer);
|
|
3999 }
|
|
4000 }
|
|
4001 }
|
|
4002 else /* value == 0 && direction == -1 */
|
|
4003 {
|
|
4004 if (marker_position (w->start[CURRENT_DISP]) == BUF_BEGV (b))
|
|
4005 {
|
|
4006 maybe_signal_error (Qbeginning_of_buffer, Qnil, Qwindow, errb);
|
|
4007 return;
|
|
4008 }
|
|
4009 else
|
|
4010 {
|
|
4011 int vtarget;
|
|
4012 int movement = next_screen_context_lines - 1;
|
|
4013 Bufpos old_startp = marker_position (w->start[CURRENT_DISP]);
|
|
4014 Bufpos bottom = vmotion (w, old_startp, movement, &vtarget);
|
|
4015 Bufpos startp =
|
|
4016 start_with_point_on_display_line (w, bottom,
|
|
4017 -1 - (movement - vtarget));
|
|
4018
|
|
4019 if (startp >= old_startp)
|
|
4020 startp = vmotion (w, old_startp, -1, NULL);
|
|
4021
|
|
4022 set_marker_restricted (w->start[CURRENT_DISP], make_int (startp),
|
|
4023 w->buffer);
|
|
4024 w->force_start = 1;
|
|
4025 w->start_at_line_beg = beginning_of_line_p (b, startp);
|
|
4026 MARK_WINDOWS_CHANGED (w);
|
|
4027
|
|
4028 if (!point_would_be_visible (w, startp, XINT (point)))
|
|
4029 {
|
|
4030 Bufpos new_point = start_of_last_line (w, startp);
|
|
4031
|
|
4032 if (selected)
|
|
4033 BUF_SET_PT (b, new_point);
|
|
4034 else
|
|
4035 set_marker_restricted (w->pointm[CURRENT_DISP],
|
|
4036 make_int (new_point),
|
|
4037 w->buffer);
|
|
4038 }
|
|
4039 }
|
|
4040 }
|
|
4041
|
|
4042 }
|
|
4043
|
20
|
4044 DEFUN ("scroll-up", Fscroll_up, 0, 1, "_P", /*
|
0
|
4045 Scroll text of current window upward ARG lines; or near full screen if no ARG.
|
|
4046 A near full screen is `next-screen-context-lines' less than a full screen.
|
|
4047 Negative ARG means scroll downward.
|
|
4048 When calling from a program, supply a number as argument or nil.
|
265
|
4049 On attempt to scroll past end of buffer, `end-of-buffer' is signaled.
|
|
4050 On attempt to scroll past beginning of buffer, `beginning-of-buffer' is
|
|
4051 signaled.
|
20
|
4052 */
|
|
4053 (n))
|
0
|
4054 {
|
265
|
4055 window_scroll (Fselected_window (Qnil), n, 1, ERROR_ME);
|
0
|
4056 return Qnil;
|
|
4057 }
|
|
4058
|
20
|
4059 DEFUN ("scroll-down", Fscroll_down, 0, 1, "_P", /*
|
0
|
4060 Scroll text of current window downward ARG lines; or near full screen if no ARG.
|
|
4061 A near full screen is `next-screen-context-lines' less than a full screen.
|
|
4062 Negative ARG means scroll upward.
|
|
4063 When calling from a program, supply a number as argument or nil.
|
265
|
4064 On attempt to scroll past end of buffer, `end-of-buffer' is signaled.
|
|
4065 On attempt to scroll past beginning of buffer, `beginning-of-buffer' is
|
|
4066 signaled.
|
20
|
4067 */
|
|
4068 (n))
|
0
|
4069 {
|
265
|
4070 window_scroll (Fselected_window (Qnil), n, -1, ERROR_ME);
|
0
|
4071 return Qnil;
|
|
4072 }
|
|
4073
|
20
|
4074 DEFUN ("other-window-for-scrolling", Fother_window_for_scrolling, 0, 0, 0, /*
|
185
|
4075 Return the other window for "other window scroll" commands.
|
0
|
4076 If in the minibuffer, `minibuffer-scroll-window' if non-nil
|
|
4077 specifies the window.
|
|
4078 If `other-window-scroll-buffer' is non-nil, a window
|
|
4079 showing that buffer is used.
|
20
|
4080 */
|
|
4081 ())
|
0
|
4082 {
|
|
4083 Lisp_Object window;
|
|
4084 Lisp_Object selected_window = Fselected_window (Qnil);
|
|
4085
|
|
4086 if (MINI_WINDOW_P (XWINDOW (selected_window))
|
274
|
4087 && !NILP (Vminibuffer_scroll_window))
|
|
4088 window = Vminibuffer_scroll_window;
|
0
|
4089 /* If buffer is specified, scroll that buffer. */
|
|
4090 else if (!NILP (Vother_window_scroll_buffer))
|
|
4091 {
|
|
4092 window = Fget_buffer_window (Vother_window_scroll_buffer, Qnil, Qnil);
|
|
4093 if (NILP (window))
|
|
4094 window = display_buffer (Vother_window_scroll_buffer, Qt, Qnil);
|
|
4095 }
|
|
4096 else
|
|
4097 {
|
|
4098 /* Nothing specified; look for a neighboring window on the same
|
|
4099 frame. */
|
|
4100 window = Fnext_window (selected_window, Qnil, Qnil, Qnil);
|
|
4101
|
|
4102 if (EQ (window, selected_window))
|
|
4103 /* That didn't get us anywhere; look for a window on another
|
|
4104 visible frame. */
|
|
4105 do
|
|
4106 window = Fnext_window (window, Qnil, Qt, Qnil);
|
|
4107 while (! FRAME_VISIBLE_P (XFRAME (WINDOW_FRAME (XWINDOW (window))))
|
|
4108 && ! EQ (window, selected_window));
|
|
4109 }
|
|
4110
|
|
4111 CHECK_LIVE_WINDOW (window);
|
|
4112
|
|
4113 if (EQ (window, selected_window))
|
|
4114 error ("There is no other window");
|
|
4115
|
|
4116 return window;
|
|
4117 }
|
|
4118
|
20
|
4119 DEFUN ("scroll-other-window", Fscroll_other_window, 0, 1, "_P", /*
|
0
|
4120 Scroll next window upward ARG lines; or near full frame if no ARG.
|
|
4121 The next window is the one below the current one; or the one at the top
|
|
4122 if the current one is at the bottom. Negative ARG means scroll downward.
|
|
4123 When calling from a program, supply a number as argument or nil.
|
|
4124
|
274
|
4125 If in the minibuffer, `minibuffer-scroll-window' if non-nil
|
0
|
4126 specifies the window to scroll.
|
|
4127 If `other-window-scroll-buffer' is non-nil, scroll the window
|
|
4128 showing that buffer, popping the buffer up if necessary.
|
20
|
4129 */
|
|
4130 (n))
|
0
|
4131 {
|
|
4132 window_scroll (Fother_window_for_scrolling (), n, 1, ERROR_ME);
|
|
4133 return Qnil;
|
|
4134 }
|
|
4135
|
20
|
4136 DEFUN ("scroll-left", Fscroll_left, 0, 1, "_P", /*
|
0
|
4137 Scroll selected window display ARG columns left.
|
|
4138 Default for ARG is window width minus 2.
|
20
|
4139 */
|
|
4140 (arg))
|
0
|
4141 {
|
|
4142 Lisp_Object window = Fselected_window (Qnil);
|
|
4143 struct window *w = XWINDOW (window);
|
|
4144
|
|
4145 if (NILP (arg))
|
|
4146 arg = make_int (window_char_width (w, 0) - 2);
|
|
4147 else
|
|
4148 arg = Fprefix_numeric_value (arg);
|
|
4149
|
149
|
4150 return Fset_window_hscroll (window, make_int (w->hscroll + XINT (arg)));
|
0
|
4151 }
|
|
4152
|
20
|
4153 DEFUN ("scroll-right", Fscroll_right, 0, 1, "_P", /*
|
0
|
4154 Scroll selected window display ARG columns right.
|
|
4155 Default for ARG is window width minus 2.
|
20
|
4156 */
|
|
4157 (arg))
|
0
|
4158 {
|
|
4159 Lisp_Object window = Fselected_window (Qnil);
|
|
4160 struct window *w = XWINDOW (window);
|
|
4161
|
|
4162 if (NILP (arg))
|
|
4163 arg = make_int (window_char_width (w, 0) - 2);
|
|
4164 else
|
|
4165 arg = Fprefix_numeric_value (arg);
|
|
4166
|
149
|
4167 return Fset_window_hscroll (window, make_int (w->hscroll - XINT (arg)));
|
0
|
4168 }
|
|
4169
|
20
|
4170 DEFUN ("recenter", Frecenter, 0, 2, "_P", /*
|
201
|
4171 Center point in WINDOW and redisplay frame. With N, put point on line N.
|
0
|
4172 The desired position of point is always relative to the window.
|
|
4173 Just C-u as prefix means put point in the center of the window.
|
201
|
4174 No N (i.e., it is nil) erases the entire frame and then
|
0
|
4175 redraws with point in the center of the window.
|
|
4176 If WINDOW is nil, the selected window is used.
|
20
|
4177 */
|
|
4178 (n, window))
|
0
|
4179 {
|
|
4180 struct window *w;
|
|
4181 struct buffer *b;
|
|
4182 Bufpos startp;
|
|
4183 Bufpos opoint;
|
|
4184
|
|
4185 if (NILP (window))
|
|
4186 window = Fselected_window (Qnil);
|
|
4187 else
|
|
4188 CHECK_WINDOW (window);
|
|
4189 w = XWINDOW (window);
|
|
4190 b = XBUFFER (w->buffer);
|
|
4191
|
|
4192 opoint = BUF_PT (b);
|
|
4193
|
272
|
4194 if (LISTP (n))
|
0
|
4195 {
|
|
4196 struct frame *f = XFRAME (w->frame);
|
|
4197
|
|
4198 if (NILP (n))
|
|
4199 {
|
|
4200 MARK_FRAME_CHANGED (f);
|
|
4201 SET_FRAME_CLEAR (f);
|
|
4202 }
|
|
4203
|
|
4204 startp = start_with_line_at_pixpos (w, opoint, window_half_pixpos (w));
|
|
4205 }
|
|
4206 else
|
|
4207 {
|
|
4208 n = Fprefix_numeric_value (n);
|
|
4209 CHECK_INT (n);
|
|
4210
|
|
4211 startp = start_with_point_on_display_line (w, opoint, XINT (n));
|
|
4212 }
|
|
4213
|
|
4214 Fset_marker (w->start[CURRENT_DISP], make_int (startp), w->buffer);
|
185
|
4215
|
0
|
4216 w->start_at_line_beg = beginning_of_line_p (b, startp);
|
|
4217 w->force_start = 1;
|
|
4218 MARK_WINDOWS_CHANGED (w);
|
|
4219 return Qnil;
|
|
4220 }
|
|
4221
|
20
|
4222 DEFUN ("move-to-window-line", Fmove_to_window_line, 1, 2, "_P", /*
|
0
|
4223 Position point relative to WINDOW.
|
|
4224 With no argument, position text at center of window.
|
|
4225 An argument specifies window line; zero means top of window,
|
|
4226 negative means relative to bottom of window.
|
|
4227 If WINDOW is nil, the selected window is used.
|
20
|
4228 */
|
|
4229 (arg, window))
|
0
|
4230 {
|
|
4231 struct window *w;
|
|
4232 struct buffer *b;
|
|
4233 int height;
|
|
4234 Bufpos start, new_point;
|
|
4235 int selected;
|
|
4236
|
|
4237 if (NILP (window))
|
|
4238 window = Fselected_window (Qnil);
|
|
4239 else
|
|
4240 CHECK_WINDOW (window);
|
|
4241 w = XWINDOW (window);
|
|
4242 b = XBUFFER (w->buffer);
|
|
4243
|
|
4244 height = window_displayed_height (w);
|
|
4245 selected = EQ (window, Fselected_window (w->frame));
|
|
4246
|
|
4247 if (NILP (arg))
|
|
4248 {
|
|
4249 int retval;
|
|
4250
|
|
4251 if (XINT (w->last_modified[CURRENT_DISP]) >= BUF_MODIFF (b)
|
|
4252 && XINT (w->last_facechange[CURRENT_DISP]) >= BUF_FACECHANGE (b))
|
|
4253 {
|
|
4254 new_point = point_at_center (w, CURRENT_DISP, 0, 0);
|
|
4255
|
|
4256 if (selected)
|
|
4257 BUF_SET_PT (b, new_point);
|
|
4258 else
|
|
4259 Fset_window_point (window, make_int (new_point));
|
|
4260
|
|
4261 retval = line_at_center (w, CURRENT_DISP, 0, 0);
|
|
4262 }
|
|
4263 else
|
|
4264 {
|
|
4265 start = marker_position (w->start[CURRENT_DISP]);
|
|
4266 if (start < BUF_BEGV (b))
|
|
4267 start = BUF_BEGV (b);
|
|
4268 else if (start > BUF_ZV (b))
|
|
4269 start = BUF_ZV (b);
|
|
4270
|
|
4271 if (selected)
|
|
4272 new_point = BUF_PT (b);
|
|
4273 else
|
|
4274 new_point = marker_position (w->pointm[CURRENT_DISP]);
|
|
4275
|
|
4276 new_point = point_at_center (w, CMOTION_DISP, start, BUF_PT (b));
|
|
4277
|
|
4278 if (selected)
|
|
4279 BUF_SET_PT (b, new_point);
|
|
4280 else
|
|
4281 Fset_window_point (window, make_int (new_point));
|
|
4282
|
|
4283 retval = line_at_center (w, CMOTION_DISP, start, BUF_PT (b));
|
|
4284 }
|
|
4285
|
149
|
4286 return make_int (retval);
|
0
|
4287 }
|
|
4288 else
|
|
4289 {
|
|
4290 /* #### Is this going to work right when at eob? */
|
|
4291 arg = Fprefix_numeric_value (arg);
|
|
4292 if (XINT (arg) < 0)
|
|
4293 XSETINT (arg, XINT (arg) + height);
|
|
4294 }
|
|
4295
|
|
4296 start = marker_position (w->start[CURRENT_DISP]);
|
|
4297 if (start < BUF_BEGV (b) || start > BUF_ZV (b))
|
|
4298 {
|
|
4299 if (selected)
|
|
4300 new_point = BUF_PT (b);
|
|
4301 else
|
|
4302 new_point = marker_position (w->pointm[CURRENT_DISP]);
|
|
4303
|
|
4304 new_point = vmotion (XWINDOW (window), new_point, -height / 2, 0);
|
|
4305
|
|
4306 if (selected)
|
|
4307 BUF_SET_PT (b, new_point);
|
|
4308 else
|
|
4309 Fset_window_point (window, make_int (new_point));
|
|
4310
|
|
4311 Fset_marker (w->start[CURRENT_DISP], make_int (new_point),
|
|
4312 w->buffer);
|
|
4313 w->start_at_line_beg = beginning_of_line_p (b, new_point);
|
|
4314 w->force_start = 1;
|
|
4315 }
|
|
4316 else
|
|
4317 {
|
|
4318 if (selected)
|
|
4319 BUF_SET_PT (b, start);
|
|
4320 else
|
|
4321 Fset_window_point (window, make_int (start));
|
|
4322 }
|
|
4323
|
|
4324 if (selected)
|
|
4325 return Fvertical_motion (arg, window);
|
|
4326 else
|
|
4327 {
|
|
4328 int vpos;
|
|
4329 new_point = vmotion (XWINDOW (window),
|
|
4330 marker_position (w->pointm[CURRENT_DISP]),
|
|
4331 XINT (arg), &vpos);
|
|
4332 Fset_window_point (window, make_int (new_point));
|
|
4333 return make_int (vpos);
|
|
4334 }
|
|
4335 }
|
|
4336
|
|
4337
|
|
4338 static int
|
|
4339 map_windows_1 (Lisp_Object window,
|
|
4340 int (*mapfun) (struct window *w, void *closure),
|
|
4341 void *closure)
|
|
4342 {
|
|
4343 for (; !NILP (window); window = XWINDOW (window)->next)
|
|
4344 {
|
272
|
4345 int retval;
|
0
|
4346 struct window *w = XWINDOW (window);
|
251
|
4347
|
0
|
4348 if (!NILP (w->vchild))
|
|
4349 retval = map_windows_1 (w->vchild, mapfun, closure);
|
|
4350 else if (!NILP (w->hchild))
|
|
4351 retval = map_windows_1 (w->hchild, mapfun, closure);
|
|
4352 else
|
|
4353 retval = (mapfun) (w, closure);
|
272
|
4354
|
0
|
4355 if (retval)
|
|
4356 return retval;
|
|
4357 }
|
|
4358
|
272
|
4359 return 0;
|
0
|
4360 }
|
|
4361
|
|
4362 /* Map MAPFUN over the windows in F. CLOSURE is passed to each
|
251
|
4363 invocation of MAPFUN. If any invocation of MAPFUN returns
|
|
4364 non-zero, the mapping is halted. Otherwise, map_windows() maps
|
|
4365 over all windows in F.
|
|
4366
|
|
4367 If MAPFUN create or delete windows, the behaviour is undefined. */
|
|
4368
|
|
4369 void
|
0
|
4370 map_windows (struct frame *f, int (*mapfun) (struct window *w, void *closure),
|
|
4371 void *closure)
|
|
4372 {
|
251
|
4373 if (f)
|
|
4374 map_windows_1 (FRAME_ROOT_WINDOW (f), mapfun, closure);
|
|
4375 else
|
|
4376 {
|
|
4377 Lisp_Object frmcons, devcons, concons;
|
|
4378
|
|
4379 FRAME_LOOP_NO_BREAK(frmcons, devcons, concons)
|
|
4380 {
|
|
4381 if (map_windows_1 (FRAME_ROOT_WINDOW (XFRAME (XCAR (frmcons))),
|
|
4382 mapfun, closure))
|
|
4383 return;
|
|
4384 }
|
|
4385 }
|
0
|
4386 }
|
|
4387
|
|
4388
|
|
4389 static void
|
|
4390 modeline_shadow_thickness_changed (Lisp_Object specifier, struct window *w,
|
|
4391 Lisp_Object oldval)
|
|
4392 {
|
|
4393 w->shadow_thickness_changed = 1;
|
|
4394 MARK_WINDOWS_CHANGED (w);
|
|
4395 }
|
|
4396
|
|
4397 /* also used in scrollbar.c */
|
|
4398 void
|
|
4399 some_window_value_changed (Lisp_Object specifier, struct window *w,
|
|
4400 Lisp_Object oldval)
|
|
4401 {
|
|
4402 MARK_WINDOWS_CHANGED (w);
|
|
4403 }
|
|
4404
|
|
4405 #ifdef MEMORY_USAGE_STATS
|
|
4406
|
|
4407 struct window_stats
|
|
4408 {
|
|
4409 int face;
|
|
4410 int glyph;
|
|
4411 #ifdef HAVE_SCROLLBARS
|
|
4412 int scrollbar;
|
|
4413 #endif
|
|
4414 int line_start;
|
|
4415 int other_redisplay;
|
|
4416 int other;
|
|
4417 };
|
|
4418
|
|
4419 static void
|
|
4420 compute_window_mirror_usage (struct window_mirror *mir,
|
|
4421 struct window_stats *stats,
|
|
4422 struct overhead_stats *ovstats)
|
|
4423 {
|
|
4424 if (!mir)
|
|
4425 return;
|
|
4426 stats->other += malloced_storage_size (mir, sizeof (struct window_mirror),
|
|
4427 ovstats);
|
|
4428 #ifdef HAVE_SCROLLBARS
|
|
4429 {
|
|
4430 struct device *d = XDEVICE (FRAME_DEVICE (mir->frame));
|
|
4431
|
|
4432 stats->scrollbar +=
|
|
4433 compute_scrollbar_instance_usage (d, mir->scrollbar_vertical_instance,
|
|
4434 ovstats);
|
|
4435 stats->scrollbar +=
|
|
4436 compute_scrollbar_instance_usage (d, mir->scrollbar_horizontal_instance,
|
|
4437 ovstats);
|
|
4438 }
|
149
|
4439 #endif /* HAVE_SCROLLBARS */
|
0
|
4440 stats->other_redisplay +=
|
|
4441 compute_display_line_dynarr_usage (mir->current_display_lines, ovstats);
|
|
4442 stats->other_redisplay +=
|
|
4443 compute_display_line_dynarr_usage (mir->desired_display_lines, ovstats);
|
|
4444 }
|
|
4445
|
|
4446 static void
|
|
4447 compute_window_usage (struct window *w, struct window_stats *stats,
|
|
4448 struct overhead_stats *ovstats)
|
|
4449 {
|
272
|
4450 xzero (*stats);
|
0
|
4451 stats->other += malloced_storage_size (w, sizeof (struct window), ovstats);
|
|
4452 stats->face += compute_face_cachel_usage (w->face_cachels, ovstats);
|
|
4453 stats->glyph += compute_glyph_cachel_usage (w->glyph_cachels, ovstats);
|
|
4454 stats->line_start +=
|
|
4455 compute_line_start_cache_dynarr_usage (w->line_start_cache, ovstats);
|
|
4456 compute_window_mirror_usage (find_window_mirror (w), stats, ovstats);
|
|
4457 }
|
|
4458
|
20
|
4459 DEFUN ("window-memory-usage", Fwindow_memory_usage, 1, 1, 0, /*
|
0
|
4460 Return stats about the memory usage of window WINDOW.
|
272
|
4461 The values returned are in the form of an alist of usage types and byte
|
0
|
4462 counts. The byte counts attempt to encompass all the memory used
|
|
4463 by the window (separate from the memory logically associated with a
|
|
4464 buffer or frame), including internal structures and any malloc()
|
|
4465 overhead associated with them. In practice, the byte counts are
|
|
4466 underestimated because certain memory usage is very hard to determine
|
272
|
4467 \(e.g. the amount of memory used inside the Xt library or inside the
|
0
|
4468 X server) and because there is other stuff that might logically
|
|
4469 be associated with a window, buffer, or frame (e.g. window configurations,
|
|
4470 glyphs) but should not obviously be included in the usage counts.
|
|
4471
|
|
4472 Multiple slices of the total memory usage may be returned, separated
|
|
4473 by a nil. Each slice represents a particular view of the memory, a
|
|
4474 particular way of partitioning it into groups. Within a slice, there
|
|
4475 is no overlap between the groups of memory, and each slice collectively
|
|
4476 represents all the memory concerned.
|
20
|
4477 */
|
|
4478 (window))
|
0
|
4479 {
|
|
4480 struct window_stats stats;
|
|
4481 struct overhead_stats ovstats;
|
272
|
4482 Lisp_Object val = Qnil;
|
0
|
4483
|
|
4484 CHECK_WINDOW (window); /* dead windows should be allowed, no? */
|
272
|
4485 xzero (ovstats);
|
0
|
4486 compute_window_usage (XWINDOW (window), &stats, &ovstats);
|
|
4487
|
272
|
4488 val = acons (Qface_cache, make_int (stats.face), val);
|
|
4489 val = acons (Qglyph_cache, make_int (stats.glyph), val);
|
0
|
4490 #ifdef HAVE_SCROLLBARS
|
272
|
4491 val = acons (Qscrollbar_instances, make_int (stats.scrollbar), val);
|
0
|
4492 #endif
|
272
|
4493 val = acons (Qline_start_cache, make_int (stats.line_start), val);
|
|
4494 val = acons (Qother_redisplay, make_int (stats.other_redisplay), val);
|
|
4495 val = acons (Qother, make_int (stats.other), val);
|
|
4496 val = Fcons (Qnil, val);
|
|
4497 val = acons (Qactually_requested, make_int (ovstats.was_requested), val);
|
|
4498 val = acons (Qmalloc_overhead, make_int (ovstats.malloc_overhead), val);
|
|
4499 val = acons (Qdynarr_overhead, make_int (ovstats.dynarr_overhead), val);
|
|
4500
|
|
4501 return Fnreverse (val);
|
0
|
4502 }
|
|
4503
|
|
4504 #endif /* MEMORY_USAGE_STATS */
|
|
4505
|
|
4506
|
|
4507 /************************************************************************/
|
|
4508 /* Window configurations */
|
|
4509 /************************************************************************/
|
|
4510
|
|
4511 /* #### This window configuration stuff has had serious bugs lurking in it
|
|
4512 for years; it would be a -huge- win if this was reimplemented in lisp.
|
|
4513 */
|
|
4514
|
|
4515 /* If you add anything to this structure make sure saved_window_equal
|
|
4516 knows about it. */
|
|
4517 struct saved_window
|
|
4518 {
|
|
4519 Lisp_Object window; /* window */
|
|
4520 Lisp_Object buffer; /* buffer */
|
|
4521 Lisp_Object start; /* copied marker */
|
|
4522 Lisp_Object pointm; /* copied marker */
|
|
4523 Lisp_Object sb_point; /* copied marker */
|
|
4524 Lisp_Object mark; /* copied marker */
|
|
4525 int pixel_left;
|
|
4526 int pixel_top;
|
|
4527 int pixel_width;
|
|
4528 int pixel_height;
|
|
4529 int hscroll;
|
257
|
4530 int modeline_hscroll;
|
0
|
4531 int parent_index; /* index into saved_windows */
|
|
4532 int prev_index; /* index into saved_windows */
|
|
4533 Lisp_Object dedicated;
|
|
4534 char start_at_line_beg; /* boolean */
|
255
|
4535 Lisp_Object display_table;
|
|
4536 Lisp_Object modeline_shadow_thickness;
|
|
4537 Lisp_Object has_modeline_p;
|
|
4538 #ifdef HAVE_SCROLLBARS
|
|
4539 Lisp_Object scrollbar_width;
|
|
4540 Lisp_Object scrollbar_height;
|
|
4541 Lisp_Object scrollbar_pointer;
|
|
4542 #endif /* HAVE_SCROLLBARS */
|
|
4543 #ifdef HAVE_TOOLBARS
|
|
4544 Lisp_Object toolbar[4];
|
|
4545 Lisp_Object toolbar_size[4];
|
|
4546 Lisp_Object toolbar_border_width[4];
|
|
4547 Lisp_Object toolbar_visible_p[4];
|
|
4548 Lisp_Object toolbar_buttons_captioned_p;
|
|
4549 Lisp_Object default_toolbar;
|
|
4550 Lisp_Object default_toolbar_width, default_toolbar_height;
|
|
4551 Lisp_Object default_toolbar_visible_p;
|
|
4552 Lisp_Object default_toolbar_border_width;
|
|
4553 #endif /* HAVE_TOOLBARS */
|
|
4554 Lisp_Object left_margin_width, right_margin_width;
|
|
4555 Lisp_Object minimum_line_ascent, minimum_line_descent;
|
|
4556 Lisp_Object use_left_overflow, use_right_overflow;
|
|
4557 #ifdef HAVE_MENUBARS
|
|
4558 Lisp_Object menubar_visible_p;
|
|
4559 #endif /* HAVE_MENUBARS */
|
|
4560 Lisp_Object text_cursor_visible_p;
|
0
|
4561 };
|
|
4562
|
|
4563 /* If you add anything to this structure make sure window_config_equal
|
|
4564 knows about it. */
|
|
4565 struct window_config
|
|
4566 {
|
|
4567 struct lcrecord_header header;
|
|
4568 int frame_width;
|
|
4569 int frame_height;
|
|
4570 #if 0 /* FSFmacs */
|
|
4571 Lisp_Object selected_frame;
|
|
4572 #endif
|
|
4573 Lisp_Object current_window;
|
|
4574 Lisp_Object current_buffer;
|
274
|
4575 Lisp_Object minibuffer_scroll_window;
|
0
|
4576 Lisp_Object root_window;
|
|
4577 /* Record the values of window-min-width and window-min-height
|
|
4578 so that window sizes remain consistent with them. */
|
|
4579 int min_width, min_height;
|
|
4580 int saved_windows_count;
|
|
4581 /* Zero-sized arrays aren't ANSI C */
|
|
4582 struct saved_window saved_windows[1];
|
|
4583 };
|
272
|
4584
|
0
|
4585 #define SAVED_WINDOW_N(conf, n) (&((conf)->saved_windows[(n)]))
|
|
4586 #define XWINDOW_CONFIGURATION(x) XRECORD (x, window_configuration, struct window_config)
|
|
4587 #define XSETWINDOW_CONFIGURATION(x, p) XSETRECORD (x, p, window_configuration)
|
|
4588 #define WINDOW_CONFIGURATIONP(x) RECORDP (x, window_configuration)
|
|
4589 #define GC_WINDOW_CONFIGURATIONP(x) GC_RECORDP (x, window_configuration)
|
|
4590 #define CHECK_WINDOW_CONFIGURATION(x) CHECK_RECORD (x, window_configuration)
|
|
4591
|
|
4592 static Lisp_Object
|
|
4593 mark_window_config (Lisp_Object obj, void (*markobj) (Lisp_Object))
|
|
4594 {
|
|
4595 struct window_config *config = XWINDOW_CONFIGURATION (obj);
|
|
4596 int i;
|
|
4597 ((markobj) (config->current_window));
|
|
4598 ((markobj) (config->current_buffer));
|
274
|
4599 ((markobj) (config->minibuffer_scroll_window));
|
0
|
4600 ((markobj) (config->root_window));
|
217
|
4601
|
0
|
4602 for (i = 0; i < config->saved_windows_count; i++)
|
|
4603 {
|
|
4604 struct saved_window *s = SAVED_WINDOW_N (config, i);
|
|
4605 ((markobj) (s->window));
|
|
4606 ((markobj) (s->buffer));
|
|
4607 ((markobj) (s->start));
|
|
4608 ((markobj) (s->pointm));
|
|
4609 ((markobj) (s->sb_point));
|
|
4610 ((markobj) (s->mark));
|
|
4611 ((markobj) (s->dedicated));
|
|
4612 }
|
149
|
4613 return Qnil;
|
0
|
4614 }
|
|
4615
|
272
|
4616 static size_t
|
0
|
4617 sizeof_window_config_for_n_windows (int n)
|
|
4618 {
|
|
4619 return (sizeof (struct window_config) +
|
|
4620 /* n - 1 because zero-sized arrays aren't ANSI C */
|
|
4621 (n - 1) *sizeof (struct saved_window));
|
|
4622 }
|
|
4623
|
272
|
4624 static size_t
|
0
|
4625 sizeof_window_config (CONST void *h)
|
|
4626 {
|
185
|
4627 CONST struct window_config *c = (CONST struct window_config *) h;
|
0
|
4628 return sizeof_window_config_for_n_windows (c->saved_windows_count);
|
|
4629 }
|
|
4630
|
|
4631 static void
|
|
4632 print_window_config (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
|
|
4633 {
|
|
4634 struct window_config *config = XWINDOW_CONFIGURATION (obj);
|
|
4635 char buf[200];
|
|
4636 if (print_readably)
|
|
4637 error ("printing unreadable object #<window-configuration 0x%x>",
|
|
4638 config->header.uid);
|
|
4639 write_c_string ("#<window-configuration ", printcharfun);
|
|
4640 sprintf (buf, "0x%x>", config->header.uid);
|
|
4641 write_c_string (buf, printcharfun);
|
|
4642 }
|
|
4643
|
272
|
4644 DEFINE_LRECORD_SEQUENCE_IMPLEMENTATION ("window-configuration",
|
|
4645 window_configuration,
|
|
4646 mark_window_config,
|
|
4647 print_window_config,
|
|
4648 0, 0, 0, sizeof_window_config,
|
|
4649 struct window_config);
|
|
4650
|
|
4651
|
0
|
4652 /* Returns a boolean indicating whether the two saved windows are
|
|
4653 identical. */
|
|
4654 static int
|
|
4655 saved_window_equal (struct saved_window *win1, struct saved_window *win2)
|
|
4656 {
|
149
|
4657 return
|
|
4658 EQ (win1->window, win2->window) &&
|
|
4659 EQ (win1->buffer, win2->buffer) &&
|
195
|
4660 internal_equal (win1->start, win2->start, 0) &&
|
|
4661 internal_equal (win1->pointm, win2->pointm, 0) &&
|
|
4662 internal_equal (win1->sb_point, win2->sb_point, 0) &&
|
|
4663 internal_equal (win1->mark, win2->mark, 0) &&
|
149
|
4664 win1->pixel_left == win2->pixel_left &&
|
|
4665 win1->pixel_top == win2->pixel_top &&
|
|
4666 win1->pixel_width == win2->pixel_width &&
|
|
4667 win1->pixel_height == win2->pixel_height &&
|
|
4668 win1->hscroll == win2->hscroll &&
|
257
|
4669 win1->modeline_hscroll == win2->modeline_hscroll &&
|
149
|
4670 win1->parent_index == win2->parent_index &&
|
|
4671 win1->prev_index == win2->prev_index &&
|
|
4672 EQ (win1->dedicated, win2->dedicated) &&
|
255
|
4673 win1->start_at_line_beg == win2->start_at_line_beg &&
|
|
4674 internal_equal(win1->display_table, win2->display_table, 0) &&
|
|
4675 EQ(win1->modeline_shadow_thickness, win2->modeline_shadow_thickness) &&
|
|
4676 EQ(win1->has_modeline_p, win2->has_modeline_p) &&
|
|
4677 #ifdef HAVE_SCROLLBARS
|
|
4678 EQ(win1->scrollbar_width, win2->scrollbar_width) &&
|
|
4679 EQ(win1->scrollbar_height, win2->scrollbar_height) &&
|
|
4680 EQ(win1->scrollbar_pointer, win2->scrollbar_pointer) &&
|
|
4681 #endif /* HAVE_SCROLLBARS */
|
|
4682 #ifdef HAVE_TOOLBARS
|
|
4683 internal_equal(win1->toolbar[0], win2->toolbar[0], 0) &&
|
|
4684 internal_equal(win1->toolbar[1], win2->toolbar[1], 0) &&
|
|
4685 internal_equal(win1->toolbar[2], win2->toolbar[2], 0) &&
|
|
4686 internal_equal(win1->toolbar[3], win2->toolbar[3], 0) &&
|
|
4687 internal_equal(win1->toolbar_border_width[0], win2->toolbar_border_width[0], 0) &&
|
|
4688 internal_equal(win1->toolbar_border_width[1], win2->toolbar_border_width[1], 0) &&
|
|
4689 internal_equal(win1->toolbar_border_width[2], win2->toolbar_border_width[2], 0) &&
|
|
4690 internal_equal(win1->toolbar_border_width[3], win2->toolbar_border_width[3], 0) &&
|
|
4691 internal_equal(win1->toolbar_size[0], win2->toolbar_size[0], 0) &&
|
|
4692 internal_equal(win1->toolbar_size[1], win2->toolbar_size[1], 0) &&
|
|
4693 internal_equal(win1->toolbar_size[2], win2->toolbar_size[2], 0) &&
|
|
4694 internal_equal(win1->toolbar_size[3], win2->toolbar_size[3], 0) &&
|
|
4695 internal_equal(win1->toolbar_visible_p[0], win2->toolbar_visible_p[0], 0) &&
|
|
4696 internal_equal(win1->toolbar_visible_p[1], win2->toolbar_visible_p[1], 0) &&
|
|
4697 internal_equal(win1->toolbar_visible_p[2], win2->toolbar_visible_p[2], 0) &&
|
|
4698 internal_equal(win1->toolbar_visible_p[3], win2->toolbar_visible_p[3], 0) &&
|
|
4699 EQ(win1->toolbar_buttons_captioned_p, win2->toolbar_buttons_captioned_p) &&
|
|
4700 internal_equal(win1->default_toolbar, win2->default_toolbar, 0) &&
|
|
4701 EQ(win1->default_toolbar_width, win2->default_toolbar_width) &&
|
|
4702 EQ(win1->default_toolbar_height, win2->default_toolbar_height) &&
|
|
4703 EQ(win1->default_toolbar_visible_p, win2->default_toolbar_visible_p) &&
|
|
4704 EQ(win1->default_toolbar_border_width, win2->default_toolbar_border_width) &&
|
|
4705 #endif /* HAVE_TOOLBARS */
|
|
4706 EQ(win1->left_margin_width, win2->left_margin_width) &&
|
|
4707 EQ(win1->right_margin_width, win2->right_margin_width) &&
|
|
4708 EQ(win1->minimum_line_ascent, win2->minimum_line_ascent) &&
|
|
4709 EQ(win1->minimum_line_descent, win2->minimum_line_descent) &&
|
|
4710 EQ(win1->use_left_overflow, win2->use_left_overflow) &&
|
|
4711 EQ(win1->use_right_overflow, win2->use_right_overflow) &&
|
|
4712 #ifdef HAVE_MENUBARS
|
|
4713 EQ(win1->menubar_visible_p, win2->menubar_visible_p) &&
|
|
4714 #endif /* HAVE_MENUBARS */
|
|
4715 EQ(win1->text_cursor_visible_p, win2->text_cursor_visible_p);
|
0
|
4716 }
|
|
4717
|
|
4718 /* Returns a boolean indicating whether the two given configurations
|
|
4719 are identical. */
|
|
4720 static int
|
|
4721 window_config_equal (Lisp_Object conf1, Lisp_Object conf2)
|
|
4722 {
|
|
4723 struct window_config *fig1, *fig2;
|
|
4724 int i;
|
|
4725
|
|
4726 /* First check if they are truly the same. */
|
|
4727 if (EQ (conf1, conf2))
|
|
4728 return 1;
|
|
4729
|
|
4730 fig1 = XWINDOW_CONFIGURATION (conf1);
|
|
4731 fig2 = XWINDOW_CONFIGURATION (conf2);
|
|
4732
|
149
|
4733 if (!((fig1->saved_windows_count == fig2->saved_windows_count) &&
|
274
|
4734 EQ (fig1->current_window, fig2->current_window) &&
|
|
4735 EQ (fig1->current_buffer, fig2->current_buffer) &&
|
|
4736 EQ (fig1->root_window, fig2->root_window) &&
|
|
4737 EQ (fig1->minibuffer_scroll_window, fig2->minibuffer_scroll_window) &&
|
149
|
4738 fig1->frame_width == fig2->frame_width &&
|
|
4739 fig1->frame_height == fig2->frame_height))
|
0
|
4740 return 0;
|
|
4741
|
|
4742 for (i = 0; i < fig1->saved_windows_count; i++)
|
|
4743 {
|
|
4744 if (!saved_window_equal (SAVED_WINDOW_N (fig1, i),
|
|
4745 SAVED_WINDOW_N (fig2, i)))
|
|
4746 return 0;
|
|
4747 }
|
|
4748
|
|
4749 return 1;
|
|
4750 }
|
|
4751
|
20
|
4752 DEFUN ("window-configuration-p", Fwindow_configuration_p, 1, 1, 0, /*
|
272
|
4753 Return t if OBJECT is a window-configuration object.
|
20
|
4754 */
|
|
4755 (obj))
|
0
|
4756 {
|
149
|
4757 return WINDOW_CONFIGURATIONP (obj) ? Qt : Qnil;
|
0
|
4758 }
|
|
4759
|
251
|
4760 static int
|
|
4761 mark_windows_in_use_closure (struct window *w, void *closure)
|
0
|
4762 {
|
251
|
4763 int mark = *(int *)closure;
|
|
4764 w->config_mark = mark;
|
|
4765 return 0;
|
|
4766 }
|
|
4767
|
|
4768 static void
|
|
4769 mark_windows_in_use (struct frame *f, int mark)
|
|
4770 {
|
|
4771 map_windows (f, mark_windows_in_use_closure, &mark);
|
0
|
4772 }
|
|
4773
|
|
4774 /* Lisp_Object return value so it can be used in record_unwind_protect() */
|
|
4775 static Lisp_Object
|
|
4776 free_window_configuration (Lisp_Object window_config)
|
|
4777 {
|
|
4778 int i;
|
|
4779 struct window_config *config = XWINDOW_CONFIGURATION (window_config);
|
|
4780
|
|
4781 /* Free all the markers. It's not completely necessary that
|
|
4782 we do this (window configs sitting in a free list aren't
|
|
4783 marked normally so the markers wouldn't be marked anyway)
|
|
4784 but it's more efficient. */
|
|
4785 for (i = 0; i < config->saved_windows_count; i++)
|
|
4786 {
|
|
4787 struct saved_window *p = SAVED_WINDOW_N (config, i);
|
|
4788
|
|
4789 if (!NILP (p->pointm))
|
|
4790 {
|
|
4791 free_marker (XMARKER (p->pointm));
|
|
4792 p->pointm = Qnil;
|
|
4793 }
|
|
4794 if (!NILP (p->start))
|
|
4795 {
|
|
4796 free_marker (XMARKER (p->start));
|
|
4797 p->start = Qnil;
|
|
4798 }
|
|
4799 if (!NILP (p->sb_point))
|
|
4800 {
|
|
4801 free_marker (XMARKER (p->sb_point));
|
|
4802 p->sb_point = Qnil;
|
|
4803 }
|
|
4804 if (!NILP (p->mark))
|
|
4805 {
|
|
4806 free_marker (XMARKER (p->mark));
|
|
4807 p->mark = Qnil;
|
|
4808 }
|
|
4809 }
|
|
4810
|
|
4811 if (config->saved_windows_count <= countof (Vwindow_configuration_free_list))
|
|
4812 free_managed_lcrecord (Vwindow_configuration_free_list
|
|
4813 [config->saved_windows_count - 1],
|
|
4814 window_config);
|
|
4815
|
|
4816 return Qnil;
|
|
4817 }
|
|
4818
|
20
|
4819 DEFUN ("set-window-configuration", Fset_window_configuration, 1, 1, 0, /*
|
0
|
4820 Set the configuration of windows and buffers as specified by CONFIGURATION.
|
|
4821 CONFIGURATION must be a value previously returned
|
|
4822 by `current-window-configuration' (which see).
|
20
|
4823 */
|
|
4824 (configuration))
|
0
|
4825 {
|
|
4826 struct window *w;
|
|
4827 struct window_config *config;
|
|
4828 struct saved_window *p;
|
|
4829 Lisp_Object new_current_buffer;
|
|
4830 int k;
|
|
4831 Lisp_Object frame;
|
|
4832 struct frame *f;
|
|
4833 struct gcpro gcpro1;
|
|
4834 Lisp_Object old_window_config;
|
|
4835 int previous_frame_height;
|
|
4836 int previous_frame_width;
|
|
4837 int specpdl_count = specpdl_depth ();
|
|
4838
|
|
4839 GCPRO1 (configuration);
|
|
4840
|
|
4841 CHECK_WINDOW_CONFIGURATION (configuration);
|
|
4842 config = XWINDOW_CONFIGURATION (configuration);
|
|
4843
|
|
4844 frame = XWINDOW (SAVED_WINDOW_N (config, 0)->window)->frame;
|
|
4845 f = XFRAME (frame);
|
|
4846
|
|
4847 /* Do not signal an error here if the frame was deleted. There are
|
|
4848 reasonable cases where we could get here with a deleted frame and
|
|
4849 just want to do close to nothing instead. */
|
|
4850
|
|
4851 if (FRAME_LIVE_P (f))
|
|
4852 {
|
|
4853 /* restore the frame characteristics */
|
185
|
4854
|
0
|
4855 new_current_buffer = config->current_buffer;
|
|
4856 if (!BUFFER_LIVE_P (XBUFFER (new_current_buffer)))
|
|
4857 new_current_buffer = Qnil;
|
|
4858
|
|
4859 /*
|
|
4860 * Assumed precondition: w->config_mark = 0 for all w
|
|
4861 * This procedure should ensure this is true by the time it exits
|
|
4862 * to ensure the precondition for future calls.
|
|
4863 *
|
|
4864 * We use w->config_mark to know whether we're modifying a
|
|
4865 * window that is currently visible on the frame (#### we
|
|
4866 * should just be able to check whether the window is dead
|
|
4867 * or not, but this way is safer?). As we process each
|
|
4868 * window, we set its config_mark to 0. At the end, we
|
|
4869 * go through all the windows that used to be on the frame,
|
|
4870 * set each one's config_mark to 0 (to maintain the
|
|
4871 * assumed precondition) and delete each one that's no
|
|
4872 * longer in use.
|
|
4873 *
|
|
4874 * #### Using a window-configuration to keep track of
|
|
4875 * the current windows is wasteful. All we need is the
|
|
4876 * list of windows, so we could just use a dynarr.
|
|
4877 */
|
|
4878 old_window_config = Fcurrent_window_configuration (frame);
|
|
4879
|
|
4880 /* If the new configuration is already equal to the old, then stop
|
|
4881 right here. This saves the work below and it also saves
|
|
4882 triggering a full redisplay of this window. This is a huge win
|
|
4883 when using the mouse since the mode motion code uses
|
|
4884 save-window-excursion extensively but will rarely cause the
|
|
4885 configuration to actually change. */
|
|
4886 if (window_config_equal (configuration, old_window_config))
|
|
4887 {
|
|
4888 free_window_configuration (old_window_config);
|
|
4889 UNGCPRO;
|
|
4890 return Qnil;
|
|
4891 }
|
|
4892
|
|
4893 /* We can't quit or even check for quit because that may cause
|
|
4894 investigation of the frame state, which may crash if the frame is
|
|
4895 in an inconsistent state. */
|
|
4896 begin_dont_check_for_quit ();
|
|
4897 record_unwind_protect (free_window_configuration, old_window_config);
|
|
4898
|
251
|
4899 mark_windows_in_use (f, 1);
|
0
|
4900
|
|
4901 previous_frame_width = FRAME_WIDTH (f);
|
|
4902 previous_frame_height = FRAME_HEIGHT (f);
|
|
4903 /* If the frame has been resized since this window configuration was
|
|
4904 made, we change the frame to the size specified in the
|
|
4905 configuration, restore the configuration, and then resize it
|
|
4906 back. We keep track of the prevailing height in these variables. */
|
|
4907 if (config->frame_height != FRAME_HEIGHT (f)
|
|
4908 || config->frame_width != FRAME_WIDTH (f))
|
|
4909 change_frame_size (f, config->frame_height, config->frame_width, 0);
|
|
4910
|
|
4911 /* Temporarily avoid any problems with windows that are smaller
|
|
4912 than they are supposed to be. */
|
|
4913 window_min_height = 1;
|
|
4914 window_min_width = 1;
|
|
4915
|
|
4916 /* OK, now restore all the windows in the window config.
|
|
4917 This may involve "undeleting" windows, since the
|
|
4918 windows in the window config may be deleted.
|
|
4919 */
|
|
4920 for (k = 0; k < config->saved_windows_count; k++)
|
|
4921 {
|
|
4922 p = SAVED_WINDOW_N (config, k);
|
|
4923 w = XWINDOW (p->window);
|
|
4924 w->next = Qnil;
|
|
4925
|
|
4926 /* The window might be dead. In this case, its redisplay
|
|
4927 structures were freed, so we need to reallocate them. */
|
|
4928 if (!w->face_cachels)
|
|
4929 {
|
185
|
4930 w->face_cachels = Dynarr_new (face_cachel);
|
0
|
4931 reset_face_cachels (w);
|
|
4932 }
|
|
4933 if (!w->glyph_cachels)
|
185
|
4934 w->glyph_cachels = Dynarr_new (glyph_cachel);
|
0
|
4935 if (!w->line_start_cache)
|
185
|
4936 w->line_start_cache = Dynarr_new (line_start_cache);
|
0
|
4937 w->dead = 0;
|
|
4938
|
|
4939 if (p->parent_index >= 0)
|
|
4940 w->parent = SAVED_WINDOW_N (config, p->parent_index)->window;
|
|
4941 else
|
|
4942 w->parent = Qnil;
|
|
4943
|
|
4944 if (p->prev_index >= 0)
|
|
4945 {
|
|
4946 w->prev = SAVED_WINDOW_N (config, p->prev_index)->window;
|
|
4947
|
|
4948 /* This is true for a minibuffer-only frame. */
|
|
4949 if (!NILP (w->mini_p) && EQ (w->prev, p->window))
|
|
4950 w->next = Qnil;
|
|
4951 else
|
|
4952 XWINDOW (w->prev)->next = p->window;
|
|
4953 }
|
|
4954 else
|
|
4955 {
|
|
4956 w->prev = Qnil;
|
|
4957 if (!NILP (w->parent))
|
|
4958 {
|
|
4959 if (WINDOW_WIDTH (p) == WINDOW_WIDTH (XWINDOW (w->parent)))
|
|
4960 {
|
|
4961 XWINDOW (w->parent)->vchild = p->window;
|
|
4962 XWINDOW (w->parent)->hchild = Qnil;
|
|
4963 }
|
|
4964 else
|
|
4965 {
|
|
4966 XWINDOW (w->parent)->hchild = p->window;
|
|
4967 XWINDOW (w->parent)->vchild = Qnil;
|
|
4968 }
|
|
4969 }
|
|
4970 }
|
|
4971 if (!w->config_mark)
|
|
4972 {
|
|
4973 /* #### This should be equivalent to the window previously
|
|
4974 having been dead. If we're brave, we'll put in an
|
|
4975 assertion to this effect. */
|
|
4976 MARK_FRAME_WINDOWS_STRUCTURE_CHANGED (f);
|
|
4977 }
|
|
4978 else /* if (!EQ (w->buffer, p->buffer)) */
|
|
4979 {
|
|
4980 /* With the new redisplay we let it know that a change has
|
|
4981 been made and it will take care of the rest. If we don't
|
|
4982 tell it something has possibly changed it could lead to
|
|
4983 incorrect display. */
|
|
4984 MARK_WINDOWS_CHANGED (w);
|
|
4985 }
|
|
4986
|
|
4987 WINDOW_LEFT (w) = WINDOW_LEFT (p);
|
|
4988 WINDOW_TOP (w) = WINDOW_TOP (p);
|
|
4989 WINDOW_WIDTH (w) = WINDOW_WIDTH (p);
|
|
4990 WINDOW_HEIGHT (w) = WINDOW_HEIGHT (p);
|
|
4991 w->hscroll = p->hscroll;
|
257
|
4992 w->modeline_hscroll = p->modeline_hscroll;
|
255
|
4993 w->display_table = p->display_table;
|
|
4994 w->modeline_shadow_thickness = p->modeline_shadow_thickness;
|
|
4995 w->has_modeline_p = p->has_modeline_p;
|
|
4996 #ifdef HAVE_SCROLLBARS
|
|
4997 w->scrollbar_width = p->scrollbar_width;
|
|
4998 w->scrollbar_height = p->scrollbar_height;
|
|
4999 w->scrollbar_pointer = p->scrollbar_pointer;
|
|
5000 #endif /* HAVE_SCROLLBARS */
|
|
5001 #ifdef HAVE_TOOLBARS
|
|
5002 {
|
|
5003 int ix;
|
|
5004 for (ix = 0; ix < 4; ix++)
|
|
5005 {
|
|
5006 w->toolbar[ix] = p->toolbar[ix];
|
|
5007 w->toolbar_size[ix] = p->toolbar_size[ix];
|
|
5008 w->toolbar_border_width[ix] = p->toolbar_border_width[ix];
|
|
5009 w->toolbar_visible_p[ix] = p->toolbar_visible_p[ix];
|
|
5010 }
|
|
5011 }
|
|
5012 w->toolbar_buttons_captioned_p = p->toolbar_buttons_captioned_p;
|
|
5013 w->default_toolbar = p->default_toolbar;
|
|
5014 w->default_toolbar_width = p->default_toolbar_width;
|
263
|
5015 w->default_toolbar_height = p->default_toolbar_height;
|
255
|
5016 w->default_toolbar_visible_p = p->default_toolbar_visible_p;
|
|
5017 w->default_toolbar_border_width = p->default_toolbar_border_width;
|
|
5018 #endif /* HAVE_TOOLBARS */
|
|
5019 w->left_margin_width = p->left_margin_width;
|
|
5020 w->right_margin_width = p->right_margin_width;
|
|
5021 w->minimum_line_ascent = p->minimum_line_ascent;
|
|
5022 w->minimum_line_descent = p->minimum_line_descent;
|
|
5023 w->use_left_overflow = p->use_left_overflow;
|
|
5024 w->use_right_overflow = p->use_right_overflow;
|
|
5025 #ifdef HAVE_MENUBARS
|
|
5026 w->menubar_visible_p = p->menubar_visible_p;
|
|
5027 #endif /* HAVE_MENUBARS */
|
|
5028 w->text_cursor_visible_p = p->text_cursor_visible_p;
|
0
|
5029 w->dedicated = p->dedicated;
|
|
5030 w->line_cache_last_updated = Qzero;
|
|
5031 SET_LAST_MODIFIED (w, 1);
|
|
5032 SET_LAST_FACECHANGE (w);
|
|
5033 w->config_mark = 0;
|
|
5034
|
|
5035 /* Reinstall the saved buffer and pointers into it. */
|
|
5036 if (NILP (p->buffer))
|
|
5037 w->buffer = p->buffer;
|
|
5038 else
|
|
5039 {
|
|
5040 if (BUFFER_LIVE_P (XBUFFER (p->buffer)))
|
|
5041 /* If saved buffer is alive, install it. */
|
|
5042 {
|
|
5043 w->buffer = p->buffer;
|
|
5044 w->start_at_line_beg = p->start_at_line_beg;
|
|
5045 set_marker_restricted (w->start[CURRENT_DISP],
|
|
5046 Fmarker_position (p->start),
|
|
5047 w->buffer);
|
|
5048 set_marker_restricted (w->pointm[CURRENT_DISP],
|
|
5049 Fmarker_position (p->pointm),
|
|
5050 w->buffer);
|
|
5051 set_marker_restricted (w->sb_point,
|
|
5052 Fmarker_position (p->sb_point),
|
|
5053 w->buffer);
|
|
5054 Fset_marker (XBUFFER (w->buffer)->mark,
|
|
5055 Fmarker_position (p->mark), w->buffer);
|
|
5056
|
|
5057 /* As documented in Fcurrent_window_configuration, don't
|
|
5058 save the location of point in the buffer which was current
|
|
5059 when the window configuration was recorded. */
|
|
5060 if (!EQ (p->buffer, new_current_buffer) &&
|
|
5061 XBUFFER (p->buffer) == current_buffer)
|
223
|
5062 Fgoto_char (w->pointm[CURRENT_DISP], Qnil);
|
0
|
5063 }
|
|
5064 else if (NILP (w->buffer) ||
|
|
5065 !BUFFER_LIVE_P (XBUFFER (w->buffer)))
|
|
5066 /* Else if window's old buffer is dead too, get a live one. */
|
|
5067 {
|
|
5068 /* #### The following line makes me nervous... */
|
|
5069 /* w->buffer = Fcdr (Fcar (XFRAME (w->frame)->buffer_alist));*/
|
|
5070 w->buffer = Fget_buffer_create (QSscratch);
|
|
5071 /* w->buffer = Fother_buffer (Qnil, w->frame, Qnil); */
|
|
5072 /* This will set the markers to beginning of visible
|
|
5073 range. */
|
|
5074 set_marker_restricted (w->start[CURRENT_DISP], Qzero, w->buffer);
|
|
5075 set_marker_restricted (w->pointm[CURRENT_DISP], Qzero,
|
|
5076 w->buffer);
|
|
5077 set_marker_restricted (w->sb_point, Qzero, w->buffer);
|
|
5078 w->start_at_line_beg = 1;
|
|
5079 }
|
|
5080 else
|
|
5081 /* Keeping window's old buffer; make sure the markers
|
|
5082 are real. */
|
|
5083 {
|
|
5084 /* Set window markers at start of visible range. */
|
|
5085 if (XMARKER (w->start[CURRENT_DISP])->buffer == 0)
|
|
5086 set_marker_restricted (w->start[CURRENT_DISP], Qzero,
|
|
5087 w->buffer);
|
|
5088 if (XMARKER (w->sb_point)->buffer == 0)
|
|
5089 set_marker_restricted (w->sb_point, Qzero, w->buffer);
|
|
5090 if (XMARKER (w->pointm[CURRENT_DISP])->buffer == 0)
|
|
5091 set_marker_restricted (w->pointm[CURRENT_DISP],
|
|
5092 make_int
|
|
5093 (BUF_PT (XBUFFER (w->buffer))),
|
|
5094 w->buffer);
|
|
5095 w->start_at_line_beg = 1;
|
|
5096 }
|
|
5097 }
|
|
5098 }
|
|
5099
|
|
5100 FRAME_ROOT_WINDOW (f) = config->root_window;
|
|
5101 /* Note that FSFmacs unilaterally calls Fselect_window() here, and
|
|
5102 then calls do_switch_frame() below to select the frame that was
|
|
5103 recorded in the window config as being selected.
|
|
5104
|
|
5105 Instead, we don't ever change the selected frame, and either
|
|
5106 call Fselect_window() below if the window config's frame is
|
|
5107 currently selected, or just set the selected window of the
|
|
5108 window config's frame. */
|
|
5109
|
|
5110 /* Set the frame height to the value it had before this function. */
|
|
5111 if (previous_frame_height != FRAME_HEIGHT (f)
|
|
5112 || previous_frame_width != FRAME_WIDTH (f))
|
|
5113 change_frame_size (f, previous_frame_height, previous_frame_width, 0);
|
|
5114
|
|
5115 /* If restoring in the current frame make the window current,
|
|
5116 otherwise just update the frame selected_window slot to be
|
|
5117 the restored current_window. */
|
|
5118 if (f == selected_frame ())
|
|
5119 {
|
|
5120 /* When using `pop-window-configuration', often the minibuffer
|
|
5121 ends up as the selected window even though it's not active ...
|
|
5122 I really don't know the cause of this, but it should never
|
|
5123 happen. This kludge should fix it.
|
|
5124
|
|
5125 #### Find out why this is really going wrong. */
|
|
5126 if (!minibuf_level &&
|
|
5127 MINI_WINDOW_P (XWINDOW (config->current_window)))
|
|
5128 Fselect_window (Fnext_window (config->current_window,
|
|
5129 Qnil, Qnil, Qnil));
|
|
5130 else
|
|
5131 Fselect_window (config->current_window);
|
|
5132 if (!NILP (new_current_buffer))
|
|
5133 Fset_buffer (new_current_buffer);
|
|
5134 else
|
|
5135 Fset_buffer (XWINDOW (Fselected_window (Qnil))->buffer);
|
|
5136 }
|
|
5137 else
|
|
5138 set_frame_selected_window (f, config->current_window);
|
|
5139 }
|
173
|
5140 else
|
|
5141 old_window_config = Qnil; /* Warning suppression */
|
0
|
5142
|
|
5143 /* Restore the minimum heights recorded in the configuration. */
|
|
5144 window_min_height = config->min_height;
|
|
5145 window_min_width = config->min_width;
|
|
5146
|
|
5147 #if 0 /* FSFmacs */
|
|
5148 /* see above comment */
|
|
5149 /* Fselect_window will have made f the selected frame, so we
|
|
5150 reselect the proper frame here. Fhandle_switch_frame will change the
|
|
5151 selected window too, but that doesn't make the call to
|
|
5152 Fselect_window above totally superfluous; it still sets f's
|
|
5153 selected window. */
|
|
5154 if (FRAME_LIVE_P (XFRAME (config->selected_frame)))
|
|
5155 do_switch_frame (config->selected_frame, Qnil, 0);
|
|
5156 #endif
|
|
5157
|
274
|
5158 Vminibuffer_scroll_window = config->minibuffer_scroll_window;
|
0
|
5159
|
|
5160 if (FRAME_LIVE_P (f))
|
|
5161 {
|
|
5162 /* Do this before calling recompute_all_cached_specifiers_in_window()
|
|
5163 so that things like redisplay_redraw_cursor() won't abort due
|
|
5164 to no window mirror present. */
|
|
5165 f->mirror_dirty = 1;
|
|
5166
|
|
5167 config = XWINDOW_CONFIGURATION (old_window_config);
|
|
5168 for (k = 0; k < config->saved_windows_count; k++)
|
|
5169 {
|
|
5170 p = SAVED_WINDOW_N (config, k);
|
|
5171 w = XWINDOW (p->window);
|
|
5172 /* Remember, we set w->config_mark on all currently visible
|
|
5173 windows, and reset it on all newly visible windows.
|
|
5174 Any windows still marked need to be deleted. */
|
|
5175 if (w->config_mark)
|
|
5176 {
|
|
5177 mark_window_as_deleted (w);
|
|
5178 w->config_mark = 0;
|
|
5179 }
|
|
5180 else
|
|
5181 {
|
|
5182 /* We just potentially changed the window's buffer and
|
|
5183 potentially turned a dead window into a live one,
|
|
5184 so we need to recompute the cached specifier values. */
|
|
5185 recompute_all_cached_specifiers_in_window (w);
|
|
5186 }
|
|
5187 }
|
|
5188 }
|
|
5189
|
|
5190 /* Now restore things, when everything else if OK. */
|
|
5191
|
|
5192 unbind_to (specpdl_count, Qnil);
|
|
5193
|
|
5194 UNGCPRO;
|
|
5195
|
149
|
5196 return Qnil;
|
0
|
5197 }
|
|
5198
|
|
5199 /* Mark all subwindows of a window as deleted. The argument
|
|
5200 W is actually the subwindow tree of the window in question. */
|
|
5201
|
|
5202 void
|
|
5203 delete_all_subwindows (struct window *w)
|
|
5204 {
|
272
|
5205 if (!NILP (w->next)) delete_all_subwindows (XWINDOW (w->next));
|
|
5206 if (!NILP (w->vchild)) delete_all_subwindows (XWINDOW (w->vchild));
|
|
5207 if (!NILP (w->hchild)) delete_all_subwindows (XWINDOW (w->hchild));
|
0
|
5208
|
|
5209 mark_window_as_deleted (w);
|
|
5210 }
|
|
5211
|
|
5212
|
|
5213 static int
|
|
5214 count_windows (struct window *window)
|
|
5215 {
|
272
|
5216 return 1 +
|
|
5217 (!NILP (window->next) ? count_windows (XWINDOW (window->next)) : 0) +
|
|
5218 (!NILP (window->vchild) ? count_windows (XWINDOW (window->vchild)) : 0) +
|
|
5219 (!NILP (window->hchild) ? count_windows (XWINDOW (window->hchild)) : 0);
|
0
|
5220 }
|
|
5221
|
|
5222 static int
|
|
5223 saved_window_index (Lisp_Object window, struct window_config *config, int lim)
|
|
5224 {
|
|
5225 int j;
|
|
5226 for (j = 0; j < lim; j++)
|
|
5227 {
|
|
5228 if (EQ (SAVED_WINDOW_N (config, j)->window, window))
|
149
|
5229 return j;
|
272
|
5230 }
|
0
|
5231 abort ();
|
|
5232 return 0; /* suppress compiler warning */
|
|
5233 }
|
|
5234
|
|
5235 static int
|
|
5236 save_window_save (Lisp_Object window, struct window_config *config, int i)
|
|
5237 {
|
|
5238 struct window *w;
|
|
5239
|
|
5240 for (; !NILP (window); window = w->next)
|
|
5241 {
|
272
|
5242 struct saved_window *p = SAVED_WINDOW_N (config, i);
|
|
5243
|
0
|
5244 w = XWINDOW (window);
|
|
5245 i++;
|
|
5246 p->window = window;
|
|
5247 p->buffer = w->buffer;
|
|
5248 WINDOW_LEFT (p) = WINDOW_LEFT (w);
|
|
5249 WINDOW_TOP (p) = WINDOW_TOP (w);
|
|
5250 WINDOW_WIDTH (p) = WINDOW_WIDTH (w);
|
|
5251 WINDOW_HEIGHT (p) = WINDOW_HEIGHT (w);
|
|
5252 p->hscroll = w->hscroll;
|
257
|
5253 p->modeline_hscroll = w->modeline_hscroll;
|
255
|
5254 p->display_table = w->display_table;
|
|
5255 p->modeline_shadow_thickness = w->modeline_shadow_thickness;
|
|
5256 p->has_modeline_p = w->has_modeline_p;
|
|
5257 #ifdef HAVE_SCROLLBARS
|
|
5258 p->scrollbar_width = w->scrollbar_width;
|
|
5259 p->scrollbar_height = w->scrollbar_height;
|
|
5260 p->scrollbar_pointer = w->scrollbar_pointer;
|
|
5261 #endif /* HAVE_SCROLLBARS */
|
|
5262 #ifdef HAVE_TOOLBARS
|
|
5263 {
|
|
5264 int ix;
|
|
5265 for (ix = 0; ix < 4; ix++)
|
|
5266 {
|
|
5267 p->toolbar[ix] = w->toolbar[ix];
|
|
5268 p->toolbar_size[ix] = w->toolbar_size[ix];
|
|
5269 p->toolbar_border_width[ix] = w->toolbar_border_width[ix];
|
|
5270 p->toolbar_visible_p[ix] = w->toolbar_visible_p[ix];
|
|
5271 }
|
|
5272 }
|
|
5273 p->toolbar_buttons_captioned_p = w->toolbar_buttons_captioned_p;
|
|
5274 p->default_toolbar = w->default_toolbar;
|
|
5275 p->default_toolbar_width = w->default_toolbar_width;
|
263
|
5276 p->default_toolbar_height = w->default_toolbar_height;
|
255
|
5277 p->default_toolbar_visible_p = w->default_toolbar_visible_p;
|
|
5278 p->default_toolbar_border_width = w->default_toolbar_border_width;
|
|
5279 #endif /* HAVE_TOOLBARS */
|
|
5280 p->left_margin_width = w->left_margin_width;
|
|
5281 p->right_margin_width = w->right_margin_width;
|
|
5282 p->minimum_line_ascent = w->minimum_line_ascent;
|
|
5283 p->minimum_line_descent = w->minimum_line_descent;
|
|
5284 p->use_left_overflow = w->use_left_overflow;
|
|
5285 p->use_right_overflow = w->use_right_overflow;
|
|
5286 #ifdef HAVE_MENUBARS
|
|
5287 p->menubar_visible_p = w->menubar_visible_p;
|
|
5288 #endif /* HAVE_MENUBARS */
|
|
5289 p->text_cursor_visible_p = w->text_cursor_visible_p;
|
|
5290
|
0
|
5291 if (!NILP (w->buffer))
|
|
5292 {
|
|
5293 /* Save w's value of point in the window configuration.
|
|
5294 If w is the selected window, then get the value of point
|
|
5295 from the buffer; pointm is garbage in the selected window. */
|
|
5296 if (EQ (window, Fselected_window (Qnil)))
|
|
5297 {
|
|
5298 p->pointm = noseeum_make_marker ();
|
|
5299 Fset_marker (p->pointm,
|
|
5300 make_int (BUF_PT (XBUFFER (w->buffer))),
|
|
5301 w->buffer);
|
|
5302 }
|
|
5303 else
|
|
5304 p->pointm = noseeum_copy_marker (w->pointm[CURRENT_DISP], Qnil);
|
|
5305
|
|
5306 p->start = noseeum_copy_marker (w->start[CURRENT_DISP], Qnil);
|
|
5307 p->sb_point = noseeum_copy_marker (w->sb_point, Qnil);
|
|
5308 p->start_at_line_beg = w->start_at_line_beg;
|
|
5309
|
|
5310 p->mark = noseeum_copy_marker (XBUFFER (w->buffer)->mark, Qnil);
|
|
5311 }
|
|
5312 else
|
|
5313 {
|
|
5314 p->pointm = Qnil;
|
|
5315 p->start = Qnil;
|
|
5316 p->sb_point = Qnil;
|
|
5317 p->mark = Qnil;
|
|
5318 p->start_at_line_beg = 0;
|
|
5319 }
|
|
5320
|
|
5321 if (NILP (w->parent))
|
|
5322 p->parent_index = -1;
|
|
5323 else
|
|
5324 p->parent_index = saved_window_index (w->parent, config, i);
|
|
5325 if (NILP (w->prev))
|
|
5326 p->prev_index = -1;
|
|
5327 else
|
|
5328 p->prev_index = saved_window_index (w->prev, config, i);
|
|
5329 p->dedicated = w->dedicated;
|
|
5330 if (!NILP (w->vchild))
|
|
5331 i = save_window_save (w->vchild, config, i);
|
|
5332 if (!NILP (w->hchild))
|
|
5333 i = save_window_save (w->hchild, config, i);
|
|
5334 }
|
|
5335
|
|
5336 return i;
|
|
5337 }
|
|
5338
|
|
5339 #if 0 /* FSFmacs */
|
|
5340 /* Added to doc string:
|
|
5341
|
|
5342 This also records the currently selected frame, and FRAME's focus
|
|
5343 redirection (see `redirect-frame-focus').
|
|
5344
|
|
5345 */
|
|
5346 #endif
|
|
5347
|
20
|
5348 DEFUN ("current-window-configuration", Fcurrent_window_configuration, 0, 1, 0, /*
|
0
|
5349 Return an object representing the current window configuration of FRAME.
|
|
5350 If FRAME is nil or omitted, use the selected frame.
|
|
5351 This describes the number of windows, their sizes and current buffers,
|
|
5352 and for each displayed buffer, where display starts, and the positions of
|
|
5353 point and mark. An exception is made for point in the current buffer:
|
|
5354 its value is -not- saved.
|
20
|
5355 */
|
|
5356 (frame))
|
0
|
5357 {
|
272
|
5358 Lisp_Object result;
|
|
5359 struct frame *f = decode_frame (frame);
|
0
|
5360 struct window_config *config;
|
272
|
5361 int n_windows = count_windows (XWINDOW (FRAME_ROOT_WINDOW (f)));
|
|
5362
|
0
|
5363 if (n_windows <= countof (Vwindow_configuration_free_list))
|
272
|
5364 config = XWINDOW_CONFIGURATION (allocate_managed_lcrecord
|
|
5365 (Vwindow_configuration_free_list
|
|
5366 [n_windows - 1]));
|
0
|
5367 else
|
|
5368 /* More than ten windows; just allocate directly */
|
185
|
5369 config = (struct window_config *)
|
|
5370 alloc_lcrecord (sizeof_window_config_for_n_windows (n_windows),
|
|
5371 lrecord_window_configuration);
|
0
|
5372 XSETWINDOW_CONFIGURATION (result, config);
|
|
5373
|
|
5374 config->frame_width = FRAME_WIDTH (f);
|
|
5375 config->frame_height = FRAME_HEIGHT (f);
|
|
5376 config->current_window = FRAME_SELECTED_WINDOW (f);
|
|
5377 XSETBUFFER (config->current_buffer, current_buffer);
|
274
|
5378 config->minibuffer_scroll_window = Vminibuffer_scroll_window;
|
0
|
5379 config->root_window = FRAME_ROOT_WINDOW (f);
|
|
5380 config->min_height = window_min_height;
|
|
5381 config->min_width = window_min_width;
|
|
5382 config->saved_windows_count = n_windows;
|
|
5383 save_window_save (FRAME_ROOT_WINDOW (f), config, 0);
|
149
|
5384 return result;
|
0
|
5385 }
|
|
5386
|
|
5387 Lisp_Object
|
|
5388 save_window_excursion_unwind (Lisp_Object window_config)
|
|
5389 {
|
|
5390 Lisp_Object val = Fset_window_configuration (window_config);
|
|
5391 free_window_configuration (window_config);
|
|
5392 return val;
|
|
5393 }
|
|
5394
|
20
|
5395 DEFUN ("save-window-excursion", Fsave_window_excursion, 0, UNEVALLED, 0, /*
|
0
|
5396 Execute body, preserving window sizes and contents.
|
|
5397 Restores which buffer appears in which window, where display starts,
|
|
5398 as well as the current buffer.
|
|
5399 Does not restore the value of point in current buffer.
|
20
|
5400 */
|
|
5401 (args))
|
0
|
5402 {
|
|
5403 /* This function can GC */
|
|
5404 Lisp_Object val;
|
|
5405 int speccount = specpdl_depth ();
|
|
5406
|
|
5407 record_unwind_protect (save_window_excursion_unwind,
|
|
5408 Fcurrent_window_configuration (Qnil));
|
|
5409 val = Fprogn (args);
|
|
5410 return unbind_to (speccount, val);
|
|
5411 }
|
|
5412
|
|
5413
|
|
5414 #ifdef DEBUG_XEMACS
|
|
5415 /* This is short and simple in elisp, but... it was written to debug
|
|
5416 problems purely on the C side. That is where we need to call it so
|
|
5417 here it is. */
|
|
5418 static void
|
|
5419 debug_print_window (Lisp_Object window, int level)
|
|
5420 {
|
272
|
5421 int i;
|
|
5422 Lisp_Object child = Fwindow_first_vchild (window);
|
|
5423
|
0
|
5424 if (NILP (child))
|
|
5425 child = Fwindow_first_hchild (window);
|
|
5426
|
272
|
5427 for (i = level; i > 0; i--)
|
|
5428 putc ('\t', stderr);
|
|
5429
|
|
5430 fputs ("#<window", stderr);
|
|
5431 {
|
|
5432 Lisp_Object buffer = XWINDOW (window)->buffer;
|
|
5433 if (!NILP (buffer) && BUFFERP (buffer))
|
|
5434 fprintf (stderr, " on %s", XSTRING_DATA (XBUFFER (buffer)->name));
|
|
5435 }
|
0
|
5436 fprintf (stderr, " 0x%x>", XWINDOW (window)->header.uid);
|
|
5437
|
|
5438 while (!NILP (child))
|
|
5439 {
|
|
5440 debug_print_window (child, level + 1);
|
|
5441 child = Fwindow_next_child (child);
|
|
5442 }
|
|
5443 }
|
|
5444
|
|
5445 void debug_print_windows (struct frame *f);
|
|
5446 void
|
|
5447 debug_print_windows (struct frame *f)
|
|
5448 {
|
|
5449 debug_print_window (f->root_window, 0);
|
272
|
5450 putc ('\n', stderr);
|
0
|
5451 }
|
|
5452 #endif /* DEBUG_XEMACS */
|
|
5453
|
|
5454
|
|
5455 /************************************************************************/
|
|
5456 /* initialization */
|
|
5457 /************************************************************************/
|
|
5458
|
|
5459 void
|
|
5460 syms_of_window (void)
|
|
5461 {
|
|
5462 defsymbol (&Qwindowp, "windowp");
|
|
5463 defsymbol (&Qwindow_live_p, "window-live-p");
|
|
5464 defsymbol (&Qwindow_configurationp, "window-configuration-p");
|
|
5465 defsymbol (&Qscroll_up, "scroll-up");
|
|
5466 defsymbol (&Qscroll_down, "scroll-down");
|
|
5467 defsymbol (&Qtemp_buffer_show_hook, "temp-buffer-show-hook");
|
|
5468 defsymbol (&Qdisplay_buffer, "display-buffer");
|
|
5469
|
|
5470 #ifdef MEMORY_USAGE_STATS
|
|
5471 defsymbol (&Qface_cache, "face-cache");
|
|
5472 defsymbol (&Qglyph_cache, "glyph-cache");
|
|
5473 defsymbol (&Qline_start_cache, "line-start-cache");
|
|
5474 #ifdef HAVE_SCROLLBARS
|
|
5475 defsymbol (&Qscrollbar_instances, "scrollbar-instances");
|
|
5476 #endif
|
|
5477 defsymbol (&Qother_redisplay, "other-redisplay");
|
|
5478 /* Qother in general.c */
|
|
5479 #endif
|
|
5480
|
20
|
5481 DEFSUBR (Fselected_window);
|
|
5482 DEFSUBR (Fminibuffer_window);
|
|
5483 DEFSUBR (Fwindow_minibuffer_p);
|
|
5484 DEFSUBR (Fwindowp);
|
|
5485 DEFSUBR (Fwindow_live_p);
|
|
5486 DEFSUBR (Fwindow_first_hchild);
|
|
5487 DEFSUBR (Fwindow_first_vchild);
|
|
5488 DEFSUBR (Fwindow_next_child);
|
|
5489 DEFSUBR (Fwindow_previous_child);
|
|
5490 DEFSUBR (Fwindow_parent);
|
|
5491 DEFSUBR (Fwindow_lowest_p);
|
|
5492 DEFSUBR (Fwindow_highest_p);
|
|
5493 DEFSUBR (Fwindow_leftmost_p);
|
|
5494 DEFSUBR (Fwindow_rightmost_p);
|
|
5495 DEFSUBR (Fpos_visible_in_window_p);
|
|
5496 DEFSUBR (Fwindow_buffer);
|
|
5497 DEFSUBR (Fwindow_frame);
|
|
5498 DEFSUBR (Fwindow_height);
|
|
5499 DEFSUBR (Fwindow_displayed_height);
|
263
|
5500 DEFSUBR (Fwindow_displayed_pixel_height);
|
20
|
5501 DEFSUBR (Fwindow_width);
|
|
5502 DEFSUBR (Fwindow_pixel_height);
|
|
5503 DEFSUBR (Fwindow_pixel_width);
|
|
5504 DEFSUBR (Fwindow_hscroll);
|
265
|
5505 #ifdef MODELINE_IS_SCROLLABLE
|
257
|
5506 DEFSUBR (Fmodeline_hscroll);
|
272
|
5507 DEFSUBR (Fset_modeline_hscroll);
|
265
|
5508 #endif /* MODELINE_IS_SCROLLABLE */
|
251
|
5509 #if 0 /* bogus crock */
|
20
|
5510 DEFSUBR (Fwindow_redisplay_end_trigger);
|
|
5511 DEFSUBR (Fset_window_redisplay_end_trigger);
|
0
|
5512 #endif
|
20
|
5513 DEFSUBR (Fset_window_hscroll);
|
|
5514 DEFSUBR (Fwindow_pixel_edges);
|
|
5515 DEFSUBR (Fwindow_point);
|
|
5516 DEFSUBR (Fwindow_start);
|
|
5517 DEFSUBR (Fwindow_end);
|
|
5518 DEFSUBR (Fset_window_point);
|
|
5519 DEFSUBR (Fset_window_start);
|
|
5520 DEFSUBR (Fwindow_dedicated_p);
|
|
5521 DEFSUBR (Fset_window_dedicated_p);
|
|
5522 DEFSUBR (Fnext_window);
|
|
5523 DEFSUBR (Fprevious_window);
|
|
5524 DEFSUBR (Fnext_vertical_window);
|
|
5525 DEFSUBR (Fother_window);
|
|
5526 DEFSUBR (Fget_lru_window);
|
|
5527 DEFSUBR (Fget_largest_window);
|
|
5528 DEFSUBR (Fget_buffer_window);
|
|
5529 DEFSUBR (Fwindow_left_margin_pixel_width);
|
|
5530 DEFSUBR (Fwindow_right_margin_pixel_width);
|
|
5531 DEFSUBR (Fdelete_other_windows);
|
|
5532 DEFSUBR (Fdelete_windows_on);
|
|
5533 DEFSUBR (Freplace_buffer_in_windows);
|
|
5534 DEFSUBR (Fdelete_window);
|
|
5535 DEFSUBR (Fset_window_buffer);
|
|
5536 DEFSUBR (Fselect_window);
|
|
5537 DEFSUBR (Fsplit_window);
|
|
5538 DEFSUBR (Fenlarge_window);
|
263
|
5539 DEFSUBR (Fenlarge_window_pixels);
|
20
|
5540 DEFSUBR (Fshrink_window);
|
263
|
5541 DEFSUBR (Fshrink_window_pixels);
|
20
|
5542 DEFSUBR (Fscroll_up);
|
|
5543 DEFSUBR (Fscroll_down);
|
|
5544 DEFSUBR (Fscroll_left);
|
|
5545 DEFSUBR (Fscroll_right);
|
|
5546 DEFSUBR (Fother_window_for_scrolling);
|
|
5547 DEFSUBR (Fscroll_other_window);
|
|
5548 DEFSUBR (Frecenter);
|
|
5549 DEFSUBR (Fmove_to_window_line);
|
0
|
5550 #ifdef MEMORY_USAGE_STATS
|
20
|
5551 DEFSUBR (Fwindow_memory_usage);
|
0
|
5552 #endif
|
20
|
5553 DEFSUBR (Fwindow_configuration_p);
|
|
5554 DEFSUBR (Fset_window_configuration);
|
|
5555 DEFSUBR (Fcurrent_window_configuration);
|
|
5556 DEFSUBR (Fsave_window_excursion);
|
0
|
5557 }
|
|
5558
|
|
5559 void
|
|
5560 vars_of_window (void)
|
|
5561 {
|
|
5562 /* Make sure all windows get marked */
|
|
5563 minibuf_window = Qnil;
|
|
5564 staticpro (&minibuf_window);
|
|
5565
|
|
5566 DEFVAR_BOOL ("scroll-on-clipped-lines", &scroll_on_clipped_lines /*
|
|
5567 *Non-nil means to scroll if point lands on a line which is clipped.
|
|
5568 */ );
|
|
5569 scroll_on_clipped_lines = 1;
|
|
5570
|
|
5571 DEFVAR_LISP ("temp-buffer-show-hook", &Vtemp_buffer_show_hook /*
|
|
5572 See `temp-buffer-show-function'.
|
|
5573 */ );
|
|
5574 Vtemp_buffer_show_hook = Qnil;
|
|
5575
|
|
5576 DEFVAR_LISP ("temp-buffer-show-function", &Vtemp_buffer_show_function /*
|
|
5577 Non-nil means call as function to display a help buffer.
|
|
5578 The function is called with one argument, the buffer to be displayed.
|
|
5579 Used by `with-output-to-temp-buffer'.
|
|
5580 If this function is used, then it must do the entire job of showing
|
|
5581 the buffer; `temp-buffer-show-hook' is not run unless this function runs it.
|
|
5582 */ );
|
|
5583 Vtemp_buffer_show_function = Qnil;
|
|
5584
|
274
|
5585 DEFVAR_LISP ("minibuffer-scroll-window", &Vminibuffer_scroll_window /*
|
0
|
5586 Non-nil means it is the window that \\<minibuffer-local-map>\\[scroll-other-window] in minibuffer should scroll.
|
|
5587 */ );
|
274
|
5588 Vminibuffer_scroll_window = Qnil;
|
0
|
5589
|
|
5590 DEFVAR_LISP ("other-window-scroll-buffer", &Vother_window_scroll_buffer /*
|
|
5591 If non-nil, this is a buffer and \\[scroll-other-window] should scroll its window.
|
|
5592 */ );
|
|
5593 Vother_window_scroll_buffer = Qnil;
|
|
5594
|
|
5595 DEFVAR_INT ("next-screen-context-lines", &next_screen_context_lines /*
|
|
5596 *Number of lines of continuity when scrolling by screenfuls.
|
|
5597 */ );
|
|
5598 next_screen_context_lines = 2;
|
|
5599
|
|
5600 DEFVAR_INT ("window-min-height", &window_min_height /*
|
|
5601 *Delete any window less than this tall (including its modeline).
|
|
5602 */ );
|
|
5603 window_min_height = 4;
|
|
5604
|
|
5605 DEFVAR_INT ("window-min-width", &window_min_width /*
|
|
5606 *Delete any window less than this wide.
|
|
5607 */ );
|
|
5608 window_min_width = 10;
|
|
5609
|
|
5610 {
|
|
5611 int i;
|
|
5612
|
|
5613 for (i = 0; i < countof (Vwindow_configuration_free_list); i++)
|
|
5614 {
|
|
5615 Vwindow_configuration_free_list[i] =
|
|
5616 make_lcrecord_list (sizeof_window_config_for_n_windows (i + 1),
|
|
5617 lrecord_window_configuration);
|
|
5618 staticpro (&Vwindow_configuration_free_list[i]);
|
|
5619 }
|
|
5620 }
|
|
5621 }
|
|
5622
|
|
5623 void
|
|
5624 specifier_vars_of_window (void)
|
|
5625 {
|
|
5626 DEFVAR_SPECIFIER ("modeline-shadow-thickness", &Vmodeline_shadow_thickness /*
|
|
5627 *How thick to draw 3D shadows around modelines.
|
|
5628 If this is set to 0, modelines will be the traditional 2D. Sizes above
|
|
5629 10 will be accepted but the maximum thickness that will be drawn is 10.
|
|
5630 This is a specifier; use `set-specifier' to change it.
|
|
5631 */ );
|
|
5632 Vmodeline_shadow_thickness = Fmake_specifier (Qinteger);
|
|
5633 /* The initial value for modeline-shadow-thickness is 2, but if the
|
|
5634 user removes all specifications we provide a fallback value of 0,
|
|
5635 which is probably what was expected. */
|
|
5636 set_specifier_fallback (Vmodeline_shadow_thickness,
|
|
5637 list1 (Fcons (Qnil, Qzero)));
|
|
5638 Fadd_spec_to_specifier (Vmodeline_shadow_thickness, make_int (2),
|
|
5639 Qnil, Qnil, Qnil);
|
|
5640 set_specifier_caching (Vmodeline_shadow_thickness,
|
|
5641 slot_offset (struct window,
|
|
5642 modeline_shadow_thickness),
|
|
5643 modeline_shadow_thickness_changed,
|
|
5644 0, 0);
|
185
|
5645
|
0
|
5646 DEFVAR_SPECIFIER ("has-modeline-p", &Vhas_modeline_p /*
|
|
5647 *Whether the modeline should be displayed.
|
|
5648 This is a specifier; use `set-specifier' to change it.
|
|
5649 */ );
|
|
5650 Vhas_modeline_p = Fmake_specifier (Qboolean);
|
|
5651 set_specifier_fallback (Vhas_modeline_p,
|
|
5652 list1 (Fcons (Qnil, Qt)));
|
|
5653 set_specifier_caching (Vhas_modeline_p,
|
|
5654 slot_offset (struct window,
|
|
5655 has_modeline_p),
|
|
5656 /* #### It's strange that we need a special
|
|
5657 flag to indicate that the shadow-thickness
|
|
5658 has changed, but not one to indicate that
|
|
5659 the modeline has been turned off or on. */
|
|
5660 some_window_value_changed,
|
|
5661 0, 0);
|
|
5662 }
|