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