annotate src/window.c @ 422:95016f13131a r21-2-19

Import from CVS: tag r21-2-19
author cvs
date Mon, 13 Aug 2007 11:25:01 +0200
parents 41dbb7a9d5f2
children 11054d720c21
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Window creation, deletion and examination for XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1985-1987, 1992-1995 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1994, 1995 Board of Trustees, University of Illinois.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 Copyright (C) 1995, 1996 Ben Wing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 Copyright (C) 1996 Chuck Thompson.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 /* Synched up with: FSF 19.30. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 /* Beginning to diverge significantly. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 /* This file has been Mule-ized. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #include "buffer.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #include "faces.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #include "frame.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #include "objects.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #include "glyphs.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 #include "redisplay.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 #include "window.h"
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
39 #include "elhash.h"
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
40 #include "commands.h"
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
41 #include "gutter.h"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
43 Lisp_Object Qwindowp, Qwindow_live_p, Qwindow_configurationp;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
44 Lisp_Object Qscroll_up, Qscroll_down, Qdisplay_buffer;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 #ifdef MEMORY_USAGE_STATS
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
47 Lisp_Object Qface_cache, Qglyph_cache, Qline_start_cache, Qother_redisplay;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 #ifdef HAVE_SCROLLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 Lisp_Object Qscrollbar_instances;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
53 EXFUN (Fnext_window, 4);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
54
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 static int window_pixel_width_to_char_width (struct window *w,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 int pixel_width,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 int include_margins_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 static int window_char_width_to_pixel_width (struct window *w,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 int char_width,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 int include_margins_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 static int window_pixel_height_to_char_height (struct window *w,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 int pixel_height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 int include_gutters_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 static int window_char_height_to_pixel_height (struct window *w,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 int char_height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 int include_gutters_p);
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
67 static void change_window_height (struct window *w, int delta, int widthflag,
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
68 int inpixels);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 /* Thickness of shadow border around 3d modelines. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 Lisp_Object Vmodeline_shadow_thickness;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
73 /* Whether vertical dividers are draggable and displayed */
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 288
diff changeset
74 Lisp_Object Vvertical_divider_always_visible_p;
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
75
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 /* Whether a modeline should be displayed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 Lisp_Object Vhas_modeline_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
79 /* Thickness of shadow border around vertical dividers. */
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
80 Lisp_Object Vvertical_divider_shadow_thickness;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
81
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
82 /* Divider surface width (not counting 3-d borders) */
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
83 Lisp_Object Vvertical_divider_line_width;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
84
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
85 /* Spacing between outer egde of divider border and window edge */
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
86 Lisp_Object Vvertical_divider_spacing;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
87
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 /* Scroll if point lands on the bottom line and that line is partially
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 clipped. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 int scroll_on_clipped_lines;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 /* The minibuffer window of the selected frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 Note that you cannot test for minibufferness of an arbitrary window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 by comparing against this; but you can test for minibufferness of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 the selected window. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 Lisp_Object minibuf_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 /* Non-nil means it is the window for C-M-v to scroll
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 when the minibuffer is selected. */
274
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
100 Lisp_Object Vminibuffer_scroll_window;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 /* Non-nil means this is the buffer whose window C-M-v should scroll. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 Lisp_Object Vother_window_scroll_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 98
diff changeset
105 /* Non-nil means it's the function to call to display temp buffers. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 Lisp_Object Vtemp_buffer_show_function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 Lisp_Object Vtemp_buffer_show_hook;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 /* If a window gets smaller than either of these, it is removed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 int window_min_height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 int window_min_width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 /* Hook run at end of temp_output_buffer_show. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 Lisp_Object Qtemp_buffer_show_hook;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 /* Number of lines of continuity in scrolling by screenfuls. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 int next_screen_context_lines;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 /* List of freed window configurations with 1 - 10 windows. */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
121 Lisp_Object Vwindow_configuration_free_list[10];
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 #define SET_LAST_MODIFIED(w, cache_too) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 (w)->last_modified[CURRENT_DISP] = Qzero; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 (w)->last_modified[DESIRED_DISP] = Qzero; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 (w)->last_modified[CMOTION_DISP] = Qzero; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 if (cache_too) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 (w)->line_cache_last_updated = Qzero; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 #define SET_LAST_FACECHANGE(w) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 (w)->last_facechange[CURRENT_DISP] = Qzero; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 (w)->last_facechange[DESIRED_DISP] = Qzero; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 (w)->last_facechange[CMOTION_DISP] = Qzero; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 98
diff changeset
140 #define MARK_DISP_VARIABLE(field) \
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
141 markobj (window->field[CURRENT_DISP]); \
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
142 markobj (window->field[DESIRED_DISP]); \
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
143 markobj (window->field[CMOTION_DISP]);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 static Lisp_Object
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
146 mark_window (Lisp_Object obj, void (*markobj) (Lisp_Object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 struct window *window = XWINDOW (obj);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
149 markobj (window->frame);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
150 markobj (window->mini_p);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
151 markobj (window->next);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
152 markobj (window->prev);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
153 markobj (window->hchild);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
154 markobj (window->vchild);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
155 markobj (window->parent);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
156 markobj (window->buffer);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 MARK_DISP_VARIABLE (start);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 MARK_DISP_VARIABLE (pointm);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
159 markobj (window->sb_point); /* #### move to scrollbar.c? */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
160 markobj (window->use_time);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 MARK_DISP_VARIABLE (last_modified);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 MARK_DISP_VARIABLE (last_point);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 MARK_DISP_VARIABLE (last_start);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 MARK_DISP_VARIABLE (last_facechange);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
165 markobj (window->line_cache_last_updated);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
166 markobj (window->redisplay_end_trigger);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
167 markobj (window->subwindow_instance_cache);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
168
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
169 mark_face_cachels (window->face_cachels, markobj);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
170 mark_glyph_cachels (window->glyph_cachels, markobj);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
171
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
172 #define WINDOW_SLOT(slot, compare) ((void) (markobj (window->slot)))
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
173 #include "winslots.h"
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
174
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 149
diff changeset
175 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 print_window (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 char buf[200];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 if (print_readably)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 error ("printing unreadable object #<window 0x%x>",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 XWINDOW (obj)->header.uid);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
186
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 write_c_string ("#<window", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 if (!NILP (XWINDOW (obj)->buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 Lisp_Object name = XBUFFER (XWINDOW (obj)->buffer)->name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 write_c_string (" on ", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 print_internal (name, printcharfun, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 sprintf (buf, " 0x%x>", XWINDOW (obj)->header.uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 finalize_window (void *header, int for_disksave)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 struct window *w = (struct window *) header;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 if (w->line_start_cache)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 Dynarr_free (w->line_start_cache);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 w->line_start_cache = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 if (w->face_cachels)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 for (i = 0; i < Dynarr_length (w->face_cachels); i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 struct face_cachel *cachel = Dynarr_atp (w->face_cachels, i);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 if (cachel->merged_faces)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 Dynarr_free (cachel->merged_faces);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 cachel->merged_faces = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 Dynarr_free (w->face_cachels);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 w->face_cachels = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 if (w->glyph_cachels)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 Dynarr_free (w->glyph_cachels);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 w->glyph_cachels = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
233 DEFINE_LRECORD_IMPLEMENTATION ("window", window,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
234 mark_window, print_window, finalize_window,
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 414
diff changeset
235 0, 0, 0, struct window);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
236
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
237
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 #define INIT_DISP_VARIABLE(field, initialization) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 p->field[CURRENT_DISP] = initialization; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 p->field[DESIRED_DISP] = initialization; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 p->field[CMOTION_DISP] = initialization;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 /* We have an implicit assertion that the first two elements (default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 and modeline faces) are always present in the face_element_cache.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 Normally redisplay ensures this. However, it is possible for a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 window to get created and functions which reference these values
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 called before redisplay works with the window for the first time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 All callers of allocate_window should therefore call
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 reset_face_cachels on the created window. We can't do it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 here because the window must have its frame pointer set or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 reset_face_cachels will fail. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 allocate_window (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
255 Lisp_Object val;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
256 struct window *p = alloc_lcrecord_type (struct window, &lrecord_window);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 zero_lcrecord (p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 XSETWINDOW (val, p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 p->dead = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 p->frame = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 p->mini_p = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 p->next = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 p->prev = Qnil;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
266 p->hchild = Qnil;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
267 p->vchild = Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 p->parent = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 p->buffer = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 INIT_DISP_VARIABLE (start, Fmake_marker ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 INIT_DISP_VARIABLE (pointm, Fmake_marker ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 p->sb_point = Fmake_marker ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 p->use_time = Qzero;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 INIT_DISP_VARIABLE (last_modified, Qzero);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 INIT_DISP_VARIABLE (last_point, Fmake_marker ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 INIT_DISP_VARIABLE (last_start, Fmake_marker ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 INIT_DISP_VARIABLE (last_facechange, Qzero);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
278 p->face_cachels = Dynarr_new (face_cachel);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
279 p->glyph_cachels = Dynarr_new (glyph_cachel);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
280 p->line_start_cache = Dynarr_new (line_start_cache);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
281 p->subwindow_instance_cache = make_lisp_hash_table (10,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
282 HASH_TABLE_KEY_WEAK,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
283 HASH_TABLE_EQ);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 p->line_cache_last_updated = Qzero;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 INIT_DISP_VARIABLE (last_point_x, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 INIT_DISP_VARIABLE (last_point_y, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 INIT_DISP_VARIABLE (window_end_pos, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 p->redisplay_end_trigger = Qnil;
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
289
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
290 #define WINDOW_SLOT(slot, compare) p->slot = Qnil
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
291 #include "winslots.h"
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
292
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 p->windows_changed = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 p->shadow_thickness_changed = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 149
diff changeset
296 return val;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 #undef INIT_DISP_VARIABLE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 * The redisplay structures used to be stored with each window. While
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 * they are logically something associated with frames they can't be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 * stored there with a redisplay which handles variable height lines.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 * Lines in horizontally split windows might not line up. So they get
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 * stored with the windows.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 * The problem with this is window configurations. When restoring a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 * window configuration it now becomes problematic to do an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 * incremental redisplay. The solution is to store the redisplay
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 * structures with the frame as they should be but laid out in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 * same manner as the window structure. Thus is born the window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 * mirror.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 * It also becomes a convenient place to stick scrollbar instances
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 * since they extrapolate out to having the same problem described for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 * the display structures.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 98
diff changeset
319 /* Create a new window mirror structure and associated redisplay
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 structs. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 static struct window_mirror *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 new_window_mirror (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
324 struct window_mirror *t = xnew_and_zero (struct window_mirror);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 t->frame = f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
328 t->current_display_lines = Dynarr_new (display_line);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
329 t->desired_display_lines = Dynarr_new (display_line);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 t->buffer = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 #ifdef HAVE_SCROLLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 t->scrollbar_vertical_instance = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 t->scrollbar_horizontal_instance = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 return t;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 /* Synchronize the mirror structure with a given window structure.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 This is normally called from update_frame_window_mirror with a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 starting window of f->root_window. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 static struct window_mirror *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 update_mirror_internal (Lisp_Object win, struct window_mirror *mir)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 if (NILP (win))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 if (mir)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 free_window_mirror (mir);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
351 mir = NULL;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 return mir;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 if (!mir)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 mir = new_window_mirror (XFRAME (XWINDOW (win)->frame));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 98
diff changeset
359 mir->next = update_mirror_internal (XWINDOW (win)->next, mir->next);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 mir->hchild = update_mirror_internal (XWINDOW (win)->hchild, mir->hchild);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 mir->vchild = update_mirror_internal (XWINDOW (win)->vchild, mir->vchild);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 * If the redisplay structs are not empty and the mirror has
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 * children, then this mirror structure was formerly being used for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 * display but is no longer. Reset its current display structs so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 * that redisplay doesn't accidentally think they are accurate if it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 * is later used for display purposes once again. Also, mark the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 * scrollbar instance as not active.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 if (mir->vchild || mir->hchild)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 /* The redisplay structures are big. Leaving them around in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 non-leaf windows can add up to a lot of wasted space. So
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 don't do it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 free_display_structs (mir);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
377 mir->current_display_lines = Dynarr_new (display_line);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
378 mir->desired_display_lines = Dynarr_new (display_line);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 #ifdef HAVE_SCROLLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 update_window_scrollbars (XWINDOW (win), mir, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 mir->buffer = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 return mir;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 /* Given a window mirror, determine which real window it contains the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 redisplay structures for. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 real_window_internal (Lisp_Object win, struct window_mirror *rmir,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 struct window_mirror *mir)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 for (; !NILP (win) && rmir ; win = XWINDOW (win)->next, rmir = rmir->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 if (mir == rmir)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 return win;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 if (!NILP (XWINDOW (win)->vchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
401 Lisp_Object retval =
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
402 real_window_internal (XWINDOW (win)->vchild, rmir->vchild, mir);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 if (!NILP (retval))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 return retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 if (!NILP (XWINDOW (win)->hchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
408 Lisp_Object retval =
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
409 real_window_internal (XWINDOW (win)->hchild, rmir->hchild, mir);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 if (!NILP (retval))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 return retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 /* Given a real window, find the mirror structure which contains its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 redisplay structures. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 static struct window_mirror *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 find_window_mirror_internal (Lisp_Object win, struct window_mirror *rmir,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 struct window *w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 for (; !NILP (win); win = XWINDOW (win)->next, rmir = rmir->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 if (w == XWINDOW (win))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 return rmir;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
428
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
429 if (!NILP (XWINDOW (win)->vchild))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
430 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
431 struct window_mirror *retval =
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
432 find_window_mirror_internal (XWINDOW (win)->vchild,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
433 rmir->vchild, w);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
434 if (retval) return retval;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
435 }
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
436
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
437 if (!NILP (XWINDOW (win)->hchild))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
438 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
439 struct window_mirror *retval =
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
440 find_window_mirror_internal (XWINDOW (win)->hchild,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
441 rmir->hchild, w);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
442 if (retval) return retval;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
443 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 /* Update the mirror structure for the given frame. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 update_frame_window_mirror (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 f->root_mirror = update_mirror_internal (f->root_window, f->root_mirror);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 f->mirror_dirty = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 /* Free a given mirror structure along with all of its children as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 well as their associated display structures. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 free_window_mirror (struct window_mirror *mir)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 while (mir)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
464 struct window_mirror *prev = mir;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 if (mir->hchild) free_window_mirror (mir->hchild);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 if (mir->vchild) free_window_mirror (mir->vchild);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 #ifdef HAVE_SCROLLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 release_window_mirror_scrollbars (mir);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 free_display_structs (mir);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 mir = mir->next;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
472 xfree (prev);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 /* Given a mirror structure, return the window it mirrors. Calls
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 real_window_internal to do most of the work. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 real_window (struct window_mirror *mir, int no_abort)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
481 Lisp_Object retval = real_window_internal (mir->frame->root_window,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
482 mir->frame->root_mirror, mir);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 if (NILP (retval) && !no_abort)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 return retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 /* Given a real window, return its mirror structure. Calls
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 find_window_mirror_internal to do all of the work. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 struct window_mirror *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 find_window_mirror (struct window *w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 struct frame *f = XFRAME (w->frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 if (f->mirror_dirty)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 update_frame_window_mirror (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 return find_window_mirror_internal (f->root_window, f->root_mirror, w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 /*****************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 find_window_by_pixel_pos
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 Given a pixel position relative to a frame, find the window at that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 position.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 ****************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 struct window *
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
507 find_window_by_pixel_pos (int pix_x, int pix_y, Lisp_Object win)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 if (NILP (win))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 for (; !NILP (win); win = XWINDOW (win)->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
514 struct window *w;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
515
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
516 if (!NILP (XWINDOW (win)->vchild))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
517 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
518 w = find_window_by_pixel_pos (pix_x, pix_y, XWINDOW (win)->vchild);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
519 if (w) return w;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
520 }
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
521 if (!NILP (XWINDOW (win)->hchild))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
522 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
523 w = find_window_by_pixel_pos (pix_x, pix_y, XWINDOW (win)->hchild);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
524 if (w) return w;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
525 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 w = XWINDOW (win);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 if (pix_x >= WINDOW_LEFT (w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 && pix_x <= WINDOW_RIGHT (w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 && pix_y >= WINDOW_TOP (w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 && pix_y <= WINDOW_BOTTOM (w))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 return w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 }
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
533 return NULL;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 /* Return a pointer to the display structures for the given window. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 display_line_dynarr *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 window_display_lines (struct window *w, int which)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 struct window_mirror *t;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 if (XFRAME (w->frame)->mirror_dirty)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 update_frame_window_mirror (XFRAME (w->frame));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 t = find_window_mirror (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 if (!t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 if (which == CURRENT_DISP)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 return t->current_display_lines;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 else if (which == DESIRED_DISP)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 return t->desired_display_lines;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 else if (which == CMOTION_DISP)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 /* The CMOTION_DISP display lines are global. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 return cmotion_display_lines;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 return 0; /* shut up compiler */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 struct buffer *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 window_display_buffer (struct window *w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 struct window_mirror *t;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 if (XFRAME (w->frame)->mirror_dirty)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 update_frame_window_mirror (XFRAME (w->frame));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 t = find_window_mirror (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 if (!t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 return t->buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 set_window_display_buffer (struct window *w, struct buffer *b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 struct window_mirror *t;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 if (XFRAME (w->frame)->mirror_dirty)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 update_frame_window_mirror (XFRAME (w->frame));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 t = find_window_mirror (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 if (!t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 t->buffer = b;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 98
diff changeset
590 /* Determining a window's position based solely on its pixel
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 positioning doesn't work. Instead, we do it the intelligent way,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 by checking its positioning in the window hierarchy. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 window_is_leftmost (struct window *w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 Lisp_Object parent, current_ancestor, window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 XSETWINDOW (window, w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 parent = XWINDOW (window)->parent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 current_ancestor = window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 while (!NILP (parent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 if (!NILP (XWINDOW (parent)->hchild) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 !EQ (XWINDOW (parent)->hchild, current_ancestor))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 current_ancestor = parent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 parent = XWINDOW (parent)->parent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 window_is_rightmost (struct window *w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 Lisp_Object parent, current_ancestor, window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 XSETWINDOW (window, w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 parent = XWINDOW (window)->parent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 current_ancestor = window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 while (!NILP (parent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 if (!NILP (XWINDOW (parent)->hchild)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 && !NILP (XWINDOW (current_ancestor)->next))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 current_ancestor = parent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 parent = XWINDOW (parent)->parent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 window_full_width_p (struct window *w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 return window_is_leftmost (w) && window_is_rightmost (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
645 int
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 window_is_highest (struct window *w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 Lisp_Object parent, current_ancestor, window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 XSETWINDOW (window, w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 parent = XWINDOW (window)->parent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 current_ancestor = window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 while (!NILP (parent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 if (!NILP (XWINDOW (parent)->vchild) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 !EQ (XWINDOW (parent)->vchild, current_ancestor))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 current_ancestor = parent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 parent = XWINDOW (parent)->parent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 /* This is really to catch the minibuffer but we make it generic in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 case we ever change things around to let the minibuffer be on top. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 if (NILP (XWINDOW (current_ancestor)->prev))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
673 int
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 window_is_lowest (struct window *w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 Lisp_Object parent, current_ancestor, window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 XSETWINDOW (window, w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 parent = XWINDOW (window)->parent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 current_ancestor = window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 while (!NILP (parent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 if (!NILP (XWINDOW (parent)->vchild)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 && !NILP (XWINDOW (current_ancestor)->next))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 current_ancestor = parent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 parent = XWINDOW (parent)->parent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 #if 0 /* not currently used */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 window_full_height_p (struct window *w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 return window_is_highest (w) && window_is_lowest (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 window_truncation_on (struct window *w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 /* Horizontally scrolled windows are truncated. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 if (w->hscroll)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 /* If truncate_partial_width_windows is true and the window is not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 the full width of the frame it is truncated. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 if (truncate_partial_width_windows
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 && !(window_is_leftmost (w) && window_is_rightmost (w)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 /* If the window's buffer's value of truncate_lines is non-nil, then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 the window is truncated. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 if (!NILP (XBUFFER (w->buffer)->truncate_lines))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726
286
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
727 static int
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
728 have_undivided_common_edge (struct window *w_right, void *closure)
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
729 {
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
730 struct window *w_left = (struct window *) closure;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
731 return (WINDOW_RIGHT (w_left) == WINDOW_LEFT (w_right)
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
732 && WINDOW_TOP (w_left) < WINDOW_BOTTOM (w_right)
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
733 && WINDOW_TOP (w_right) < WINDOW_BOTTOM (w_left)
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
734 #ifdef HAVE_SCROLLBARS
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
735 && (NILP (w_right->scrollbar_on_left_p)
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
736 || NILP (w_right->vertical_scrollbar_visible_p)
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
737 || ZEROP (w_right->scrollbar_width))
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
738 #endif
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
739 );
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
740 }
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
741
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
742 static int
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
743 window_needs_vertical_divider_1 (struct window *w)
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
744 {
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
745 /* Never if we're on the right */
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
746 if (window_is_rightmost (w))
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
747 return 0;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
748
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
749 /* Always if draggable */
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 288
diff changeset
750 if (!NILP (w->vertical_divider_always_visible_p))
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
751 return 1;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
752
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
753 #ifdef HAVE_SCROLLBARS
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
754 /* Our right scrollbar is enough to separate us at the right */
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
755 if (NILP (w->scrollbar_on_left_p)
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
756 && !NILP (w->vertical_scrollbar_visible_p)
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
757 && !ZEROP (w->scrollbar_width))
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
758 return 0;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
759 #endif
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
760
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
761 /* Ok. to determine whether we need a divider on the left, we must
286
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
762 check that our right neighbor windows have scrollbars on their
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
763 left sides. We must check all such windows which have common
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
764 left edge with our window's right edge. */
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
765 return map_windows (XFRAME (WINDOW_FRAME (w)),
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
766 have_undivided_common_edge, (void*)w);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
767 }
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
768
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
769 int
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 window_needs_vertical_divider (struct window *w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 {
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
772 if (!w->need_vertical_divider_valid_p)
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
773 {
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
774 w->need_vertical_divider_p =
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
775 window_needs_vertical_divider_1 (w);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
776 w->need_vertical_divider_valid_p = 1;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
777 }
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
778 return w->need_vertical_divider_p;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
779 }
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
780
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
781 /* Called from invalidate_vertical_divider_cache_in_frame */
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
782 int
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
783 invalidate_vertical_divider_cache_in_window (struct window *w,
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
784 void *u_n_u_s_e_d)
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
785 {
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
786 w->need_vertical_divider_valid_p = 0;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
787 return 0;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
788 }
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
789
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
790 /* Calculate width of vertical divider, including its shadows
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
791 and spacing. The returned value is effectively the distance
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
792 between adjacent window edges. This function does not check
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
793 whether a window needs a vertical divider, so the returned
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
794 value is a "theoretical" one */
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
795 int
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
796 window_divider_width (struct window *w)
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
797 {
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
798 /* the shadow thickness can be negative. This means that the divider
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
799 will have a depressed look */
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
800
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
801 if (FRAME_WIN_P (XFRAME (WINDOW_FRAME (w))))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
802 return
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
803 XINT (w->vertical_divider_line_width)
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
804 + 2 * XINT (w->vertical_divider_spacing)
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
805 + 2 * abs (XINT (w->vertical_divider_shadow_thickness));
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
806 else
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
807 return XINT (w->vertical_divider_line_width) == 0 ? 0 : 1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 window_scrollbar_width (struct window *w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 #ifdef HAVE_SCROLLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 if (!WINDOW_WIN_P (w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 || MINI_WINDOW_P (w)
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
816 || NILP (w->buffer)
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
817 || NILP (w->vertical_scrollbar_visible_p))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 /* #### when does NILP (w->buffer) happen? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 return XINT (w->scrollbar_width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 return 0;
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 98
diff changeset
824 #endif /* HAVE_SCROLLBARS */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 /* Horizontal scrollbars are only active on windows with truncation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 turned on. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 window_scrollbar_height (struct window *w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 #ifdef HAVE_SCROLLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 if (!WINDOW_WIN_P (w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 || MINI_WINDOW_P (w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 || NILP (w->buffer)
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
836 || NILP (w->horizontal_scrollbar_visible_p)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 || !window_truncation_on (w))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 return XINT (w->scrollbar_height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 return 0;
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 98
diff changeset
843 #endif /* HAVE_SCROLLBARS */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 window_modeline_height (struct window *w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 struct frame *f = XFRAME (w->frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 int modeline_height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 if (MINI_WINDOW_P (w) || NILP (w->buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 modeline_height = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 else if (!WINDOW_HAS_MODELINE_P (w))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 if (window_scrollbar_height (w))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 modeline_height = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 modeline_height = FRAMEMETH (f, divider_height, ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 if (!EQ (Qzero, w->modeline_shadow_thickness) && FRAME_WIN_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 modeline_height += (2 * MODELINE_SHADOW_THICKNESS (w));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 if (noninteractive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 modeline_height = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 display_line_dynarr *dla;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 /* We don't force a regeneration of the modeline here.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 Instead it is now a precondition that any function calling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 this should make sure that one of these structures is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 up-to-date. In practice this only affects two internal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 redisplay functions, regenerate_window and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 regenerate_window_point_center. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 /* We check DESIRED_DISP because if it is valid it is more
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 up-to-date than CURRENT_DISP. For calls to this outside
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 of redisplay it doesn't matter which structure we check
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 since there is a redisplay condition that these
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 structures be identical outside of redisplay. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 dla = window_display_lines (w, DESIRED_DISP);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 if (dla && Dynarr_length (dla) && Dynarr_atp (dla, 0)->modeline)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 modeline_height = (Dynarr_atp (dla, 0)->ascent +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 Dynarr_atp (dla, 0)->descent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 dla = window_display_lines (w, CURRENT_DISP);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 if (dla && Dynarr_length (dla) && Dynarr_atp (dla, 0)->modeline)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 modeline_height = (Dynarr_atp (dla, 0)->ascent +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 Dynarr_atp (dla, 0)->descent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 /* This should be an abort except I'm not yet 100%
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 confident that it won't ever get hit (though I
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 haven't been able to trigger it). It is extremely
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
901 unlikely to cause any noticeable problem and even if
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 it does it will be a minor display glitch. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 /* #### Bullshit alert. It does get hit and it causes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 noticeable glitches. real_current_modeline_height
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 is a kludge to fix this for 19.14. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 modeline_height = real_current_modeline_height (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 if (!EQ (Qzero, w->modeline_shadow_thickness) && FRAME_WIN_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 modeline_height += (2 * MODELINE_SHADOW_THICKNESS (w));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 return modeline_height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 /*****************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 margin_width_internal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 For a given window, return the width in pixels of the specified margin.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 ****************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 margin_width_internal (struct window *w, int left_margin)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 struct buffer *b;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 int window_cwidth = window_char_width (w, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 int margin_cwidth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 int font_width;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
929 Lisp_Object window;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 /* We might be getting called on a non-leaf. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 if (NILP (w->buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 /* The minibuffer never has margins. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 if (MINI_WINDOW_P (w))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 XSETWINDOW (window, w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 b = XBUFFER (w->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 margin_cwidth = (left_margin ? XINT (w->left_margin_width) :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 XINT (w->right_margin_width));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 default_face_height_and_width (window, 0, &font_width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 /* The left margin takes precedence over the right margin so we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 subtract its width from the space available for the right
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 margin. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 if (!left_margin)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 window_cwidth -= XINT (w->left_margin_width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 /* The margin cannot be wider than the window is. We allow the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 value to be bigger since it is possible for the user to enlarge
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 the window such that the left margin value would no longer be too
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 big, but we won't return a value that is larger. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 if (margin_cwidth > window_cwidth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 margin_cwidth = window_cwidth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 /* At the user level the margin is always specified in characters.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 Internally however it is manipulated in terms of pixels. */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 149
diff changeset
961 return margin_cwidth * font_width;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 window_left_margin_width (struct window *w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 return margin_width_internal (w, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 window_right_margin_width (struct window *w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 return margin_width_internal (w, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 /*****************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 Window Gutters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 The gutters of a window are those areas in the boundary defined by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 w->pixel_top, w->pixel_left, w->pixel_height and w->pixel_width which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 do not contain text. Items which may be in the gutters include
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 scrollbars, toolbars and modelines. The margin areas are not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 included. This is an exception made because redisplay special cases
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 the handling of those areas in many places in such a way that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 including them in the gutter area would make life difficult.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 The size functions refer to height for the bottom and top gutters and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 width for the left and right gutters. The starting position
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 functions refer to the Y coord for bottom and top gutters and the X
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 coord for left and right gutters. All starting positions are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 relative to the frame, not the window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 ****************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 window_top_gutter_height (struct window *w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 {
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
997 int gutter = WINDOW_REAL_TOP_GUTTER_BOUNDS (w);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 if (!NILP (w->hchild) || !NILP (w->vchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 #ifdef HAVE_SCROLLBARS
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1003 if (!NILP (w->scrollbar_on_top_p))
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
1004 return window_scrollbar_height (w) + gutter;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 #endif
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
1007 return gutter;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 int
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
1011 window_bottom_gutter_height (struct window *w)
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
1012 {
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
1013 int gutter = WINDOW_REAL_BOTTOM_GUTTER_BOUNDS (w);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1014
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 if (!NILP (w->hchild) || !NILP (w->vchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 return 0;
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
1017
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
1018 gutter += window_modeline_height (w);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 #ifdef HAVE_SCROLLBARS
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1021 if (NILP (w->scrollbar_on_top_p))
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
1022 return window_scrollbar_height (w) + gutter;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1023 else
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 #endif
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
1025 return gutter;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 int
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
1029 window_left_gutter_width (struct window *w, int modeline)
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
1030 {
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
1031 int gutter = WINDOW_REAL_LEFT_GUTTER_BOUNDS (w);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1032
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1033 if (!NILP (w->hchild) || !NILP (w->vchild))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1034 return 0;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1035
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1036 #ifdef HAVE_SCROLLBARS
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1037 if (!modeline && !NILP (w->scrollbar_on_left_p))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1038 gutter += window_scrollbar_width (w);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1039 #endif
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1040
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1041 return gutter;
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
1042 }
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
1043
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1044 int
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1045 window_right_gutter_width (struct window *w, int modeline)
404
2f8bb876ab1d Import from CVS: tag r21-2-32
cvs
parents: 400
diff changeset
1046 {
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
1047 int gutter = WINDOW_REAL_RIGHT_GUTTER_BOUNDS (w);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
1048
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 if (!NILP (w->hchild) || !NILP (w->vchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 #ifdef HAVE_SCROLLBARS
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1053 if (!modeline && NILP (w->scrollbar_on_left_p))
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1054 gutter += window_scrollbar_width (w);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 #endif
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1056
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1057 if (window_needs_vertical_divider (w))
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1058 gutter += window_divider_width (w);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1059
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1060 return gutter;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1064 DEFUN ("windowp", Fwindowp, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 Return t if OBJ is a window.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1066 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1067 (obj))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 149
diff changeset
1069 return WINDOWP (obj) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1072 DEFUN ("window-live-p", Fwindow_live_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 Return t if OBJ is a window which is currently visible.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1074 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1075 (obj))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 149
diff changeset
1077 return WINDOWP (obj) && WINDOW_LIVE_P (XWINDOW (obj)) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1080 DEFUN ("selected-window", Fselected_window, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 Return the window that the cursor now appears in and commands apply to.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 If the optional argument CON-DEV-OR-FRAME is specified and is a frame, return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 the selected window used by that frame. If CON-DEV-OR-FRAME is a device,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 then the selected frame on that device will be used. If CON-DEV-OR-FRAME
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 is a console, the selected frame on that console's selected device will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 be used. Otherwise, the selected frame is used.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1087 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1088 (con_dev_or_frame))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 if (NILP (con_dev_or_frame) && NILP (Fselected_device (Qnil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 return Qnil; /* happens at startup */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1093 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1094 struct frame *f = decode_frame_or_selected (con_dev_or_frame);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1095 return FRAME_SELECTED_WINDOW (f);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1096 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1099 DEFUN ("minibuffer-window", Fminibuffer_window, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 Return the window used now for minibuffers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 If the optional argument CON-DEV-OR-FRAME is specified and is a frame, return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 the minibuffer window used by that frame. If CON-DEV-OR-FRAME is a device,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 then the selected frame on that device will be used. If CON-DEV-OR-FRAME
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 is a console, the selected frame on that console's selected device will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 be used. Otherwise, the selected frame is used.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1106 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1107 (con_dev_or_frame))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1109 return FRAME_MINIBUF_WINDOW (decode_frame_or_selected (con_dev_or_frame));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1112 DEFUN ("window-minibuffer-p", Fwindow_minibuffer_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 Return non-nil if WINDOW is a minibuffer window.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1114 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1115 (window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 149
diff changeset
1117 return MINI_WINDOW_P (decode_window (window)) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1120 DEFUN ("window-first-hchild", Fwindow_first_hchild, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 Return the first horizontal child of WINDOW, or nil.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1122 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1123 (window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 {
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 98
diff changeset
1125 return decode_window (window)->hchild;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1128 DEFUN ("window-first-vchild", Fwindow_first_vchild, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 Return the first vertical child of WINDOW, or nil.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1130 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1131 (window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 {
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 98
diff changeset
1133 return decode_window (window)->vchild;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1136 DEFUN ("window-next-child", Fwindow_next_child, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 Return the next window on the same level as WINDOW, or nil.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1138 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1139 (window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 {
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 98
diff changeset
1141 return decode_window (window)->next;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1144 DEFUN ("window-previous-child", Fwindow_previous_child, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 Return the previous window on the same level as WINDOW, or nil.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1146 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1147 (window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 {
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 98
diff changeset
1149 return decode_window (window)->prev;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1152 DEFUN ("window-parent", Fwindow_parent, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 Return the parent of WINDOW, or nil.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1154 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1155 (window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 {
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 98
diff changeset
1157 return decode_window (window)->parent;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1160 DEFUN ("window-lowest-p", Fwindow_lowest_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 Return non-nil if WINDOW is along the bottom of its frame.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1162 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1163 (window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 {
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 98
diff changeset
1165 return window_is_lowest (decode_window (window)) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1168 DEFUN ("window-highest-p", Fwindow_highest_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 Return non-nil if WINDOW is along the top of its frame.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1170 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1171 (window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 {
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 98
diff changeset
1173 return window_is_highest (decode_window (window)) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1176 DEFUN ("window-leftmost-p", Fwindow_leftmost_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 Return non-nil if WINDOW is along the left edge of its frame.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1178 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1179 (window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 {
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 98
diff changeset
1181 return window_is_leftmost (decode_window (window)) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1184 DEFUN ("window-rightmost-p", Fwindow_rightmost_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 Return non-nil if WINDOW is along the right edge of its frame.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1186 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1187 (window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 {
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 98
diff changeset
1189 return window_is_rightmost (decode_window (window)) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1192 DEFUN ("pos-visible-in-window-p", Fpos_visible_in_window_p, 0, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 Return t if position POS is currently on the frame in WINDOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 Returns nil if that position is scrolled vertically out of view.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 POS defaults to point in WINDOW's buffer; WINDOW, to the selected window.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1196 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1197 (pos, window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 {
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 98
diff changeset
1199 struct window *w = decode_window (window);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1200 Bufpos top = marker_position (w->start[CURRENT_DISP]);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 Bufpos posint;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1202 struct buffer *buf = XBUFFER (w->buffer);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 if (NILP (pos))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 posint = BUF_PT (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 CHECK_INT_COERCE_MARKER (pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 posint = XINT (pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 if (posint < top || posint > BUF_ZV (buf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 /* w->start can be out of range. If it is, do something reasonable. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 if (top < BUF_BEGV (buf) || top > BUF_ZV (buf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1219 return point_would_be_visible (w, top, posint) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 struct window *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 decode_window (Lisp_Object window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 if (NILP (window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 return XWINDOW (Fselected_window (Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 CHECK_LIVE_WINDOW (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 return XWINDOW (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1233 DEFUN ("window-buffer", Fwindow_buffer, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 Return the buffer that WINDOW is displaying.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1235 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1236 (window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 return decode_window (window)->buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1241 DEFUN ("window-frame", Fwindow_frame, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 Return the frame that window WINDOW is on.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1243 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1244 (window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 return decode_window (window)->frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1249 DEFUN ("window-height", Fwindow_height, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 Return the number of default lines in WINDOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 This actually works by dividing the window's pixel height (including
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 the modeline and horizontal scrollbar, if any) by the height of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 default font; therefore, the number of displayed lines will probably
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 be different.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 Use `window-height' to get consistent results in geometry calculations.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 Use `window-displayed-height' to get the actual number of lines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 currently displayed in a window.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1258 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1259 (window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 return make_int (window_char_height (decode_window (window), 1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1264 DEFUN ("window-displayed-height", Fwindow_displayed_height, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 Return the number of lines currently displayed in WINDOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 This counts the actual number of lines displayed in WINDOW
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1267 \(as opposed to `window-height'). The modeline and horizontal
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268 scrollbar do not count as lines. If there is some blank space
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 between the end of the buffer and the end of the window, this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 function pretends that there are lines of text in the default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 font there.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1272 */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
1273 (window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 return make_int (window_displayed_height (decode_window (window)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1278 DEFUN ("window-pixel-height", Fwindow_pixel_height, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 Return the height of WINDOW in pixels. Defaults to current window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 This includes the window's modeline and horizontal scrollbar (if any).
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1281 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1282 (window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1284 return make_int (decode_window (window)->pixel_height);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1287 DEFUN ("window-text-area-pixel-height",
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1288 Fwindow_text_area_pixel_height, 0, 1, 0, /*
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1289 Return the height in pixels of the text-displaying portion of WINDOW.
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1290 Unlike `window-pixel-height', the space occupied by the modeline and
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1291 horizontal scrollbar, if any, is not counted.
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
1292 */
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
1293 (window))
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
1294 {
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1295 struct window *w = decode_window (window);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1296
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1297 return make_int (WINDOW_TEXT_HEIGHT (w));
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
1298 }
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
1299
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1300 DEFUN ("window-displayed-text-pixel-height",
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1301 Fwindow_displayed_text_pixel_height, 0, 2, 0, /*
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1302 Return the height in pixels of the text displayed in WINDOW.
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1303 Unlike `window-text-area-pixel-height', any blank space below the
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1304 end of the buffer is not included. If optional argument NOCLIPPED
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1305 is non-nil, do not include space occupied by clipped lines.
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1306 */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1307 (window, noclipped))
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1308 {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1309 struct window *w;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1310 Bufpos start, eobuf;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1311 int defheight;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1312 int hlimit, height, prev_height = -1;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1313 int line;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1314 int elt, nelt, i;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1315 int needed;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1316 line_start_cache_dynarr *cache;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1317
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1318 if (NILP (window))
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1319 window = Fselected_window (Qnil);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1320
414
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
1321 CHECK_LIVE_WINDOW (window);
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1322 w = XWINDOW (window);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1323
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1324 start = marker_position (w->start[CURRENT_DISP]);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1325 hlimit = WINDOW_TEXT_HEIGHT (w);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1326 eobuf = BUF_ZV (XBUFFER (w->buffer));
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1327
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1328 default_face_height_and_width (window, &defheight, NULL);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1329
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1330 /* guess lines needed in line start cache + a few extra */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1331 needed = (hlimit + defheight-1) / defheight + 3;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1332
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1333 while (1) {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1334 elt = point_in_line_start_cache (w, start, needed);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1335 assert (elt >= 0); /* in the cache */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1336
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1337 cache = w->line_start_cache;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1338 nelt = Dynarr_length (cache);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1339
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1340 height = 0;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1341 for (i = elt; i < nelt; i++) {
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1342 line = Dynarr_atp (cache, i)->height;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1343
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1344 if (height + line > hlimit)
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1345 return make_int (!NILP (noclipped) ? height : hlimit);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1346
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1347 height += line;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1348
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1349 if (height == hlimit || Dynarr_atp (cache, i)->end >= eobuf)
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1350 return make_int (height);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1351 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1352
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1353 /* get here => need more cache lines. try again. */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1354 assert(height > prev_height); /* progress? */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1355 prev_height = height;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1356
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1357 needed += ((hlimit - height)*(nelt - elt) + height-1)/height + 3;
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1358 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1359
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1360 RETURN_NOT_REACHED(make_int (0)) /* shut up compiler */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1361 }
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1362
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1363 DEFUN ("window-width", Fwindow_width, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 Return the number of display columns in WINDOW.
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1365 This is the width that is usable columns available for text in WINDOW.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1366 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1367 (window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 149
diff changeset
1369 return make_int (window_char_width (decode_window (window), 0));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1372 DEFUN ("window-pixel-width", Fwindow_pixel_width, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 Return the width of WINDOW in pixels. Defaults to current window.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1374 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1375 (window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 149
diff changeset
1377 return make_int (decode_window (window)->pixel_width);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1380 DEFUN ("window-text-area-pixel-width",
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1381 Fwindow_text_area_pixel_width, 0, 1, 0, /*
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1382 Return the width in pixels of the text-displaying portion of WINDOW.
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1383 Unlike `window-pixel-width', the space occupied by the vertical
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
1384 scrollbar or divider, if any, is not counted.
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1385 */
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1386 (window))
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1387 {
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1388 struct window *w = decode_window (window);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1389
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1390 return make_int (WINDOW_TEXT_WIDTH (w));
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1391 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1392
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1393 DEFUN ("window-hscroll", Fwindow_hscroll, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 Return the number of columns by which WINDOW is scrolled from left margin.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1395 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1396 (window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 149
diff changeset
1398 return make_int (decode_window (window)->hscroll);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1401 #ifdef MODELINE_IS_SCROLLABLE
257
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
1402 DEFUN ("modeline-hscroll", Fmodeline_hscroll, 0, 1, 0, /*
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1403 Return the number of columns by which WINDOW's modeline is scrolled from
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1404 left margin. If the window has no modeline, return nil.
257
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
1405 */
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
1406 (window))
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
1407 {
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1408 struct window *w = decode_window (window);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1409
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1410 return (WINDOW_HAS_MODELINE_P (w)) ? make_int (w->modeline_hscroll) : Qnil;
257
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
1411 }
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1412
257
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
1413 DEFUN ("set-modeline-hscroll", Fset_modeline_hscroll, 2, 2, 0, /*
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1414 Set number of columns WINDOW's modeline is scrolled from left margin to NCOL.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1415 NCOL should be zero or positive. If NCOL is negative, it will be forced to 0.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1416 If the window has no modeline, do nothing and return nil.
257
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
1417 */
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
1418 (window, ncol))
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
1419 {
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1420 struct window *w = decode_window (window);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1421
257
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
1422 if (WINDOW_HAS_MODELINE_P (w))
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
1423 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1424 int ncols;
257
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
1425 CHECK_INT (ncol);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1426 ncols = XINT (ncol);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1427 if (ncols < 0) ncols = 0;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1428 if (w->modeline_hscroll != ncols)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1429 MARK_MODELINE_CHANGED;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1430 w->modeline_hscroll = ncols;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1431 return ncol;
257
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
1432 }
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
1433 return Qnil;
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
1434 }
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1435 #endif /* MODELINE_IS_SCROLLABLE */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1436
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1437 DEFUN ("set-window-hscroll", Fset_window_hscroll, 2, 2, 0, /*
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1438 Set number of columns WINDOW is scrolled from left margin to NCOL.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1439 NCOL should be zero or positive.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1440 */
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1441 (window, ncol))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1442 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1443 struct window *w;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1444 int ncols;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1445
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1446 CHECK_INT (ncol);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1447 ncols = XINT (ncol);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1448 if (ncols < 0) ncols = 0;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1449 w = decode_window (window);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1450 if (w->hscroll != ncols)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1451 MARK_CLIP_CHANGED; /* FSF marks differently but we aren't FSF. */
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1452 w->hscroll = ncols;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1453 return ncol;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1454 }
257
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
1455
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1456 #if 0 /* bogus FSF crock */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 110
diff changeset
1458 xxDEFUN ("window-redisplay-end-trigger",
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 110
diff changeset
1459 Fwindow_redisplay_end_trigger, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 Return WINDOW's redisplay end trigger value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 See `set-window-redisplay-end-trigger' for more information.
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 98
diff changeset
1462 */
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 98
diff changeset
1463 (window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 return decode_window (window)->redisplay_end_trigger;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 110
diff changeset
1468 xxDEFUN ("set-window-redisplay-end-trigger",
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 110
diff changeset
1469 Fset_window_redisplay_end_trigger, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 Set WINDOW's redisplay end trigger value to VALUE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 VALUE should be a buffer position (typically a marker) or nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 If it is a buffer position, then if redisplay in WINDOW reaches a position
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 beyond VALUE, the functions in `redisplay-end-trigger-functions' are called
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 with two arguments: WINDOW, and the end trigger value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 Afterwards the end-trigger value is reset to nil.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1476 */
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 98
diff changeset
1477 (window, value))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 {
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 98
diff changeset
1479 return (decode_window (window)->redisplay_end_trigger = value);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 #endif /* 0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1484 DEFUN ("window-pixel-edges", Fwindow_pixel_edges, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485 Return a list of the pixel edge coordinates of WINDOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 \(LEFT TOP RIGHT BOTTOM), all relative to 0, 0 at top left corner of frame.
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1487 The frame toolbars and menubars are considered to be outside of this area.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1488 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1489 (window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 struct window *w = decode_window (window);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1492 struct frame *f = XFRAME (w->frame);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1493
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1494 int left = w->pixel_left - FRAME_LEFT_BORDER_END (f);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1495 int top = w->pixel_top - FRAME_TOP_BORDER_END (f);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 return list4 (make_int (left),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 make_int (top),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499 make_int (left + w->pixel_width),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 make_int (top + w->pixel_height));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1503 DEFUN ("window-text-area-pixel-edges",
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1504 Fwindow_text_area_pixel_edges, 0, 1, 0, /*
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1505 Return a list of the pixel edge coordinates of the text area of WINDOW.
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1506 Returns the list \(LEFT TOP RIGHT BOTTOM), all relative to 0, 0 at the
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1507 top left corner of the window.
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1508 */
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1509 (window))
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1510 {
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1511 struct window *w = decode_window (window);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1512
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1513 int left = window_left_gutter_width (w, /* modeline = */ 0);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1514 int top = window_top_gutter_height (w);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1515 int right = WINDOW_WIDTH (w) - window_right_gutter_width (w, 0);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1516 int bottom = WINDOW_HEIGHT (w) - window_bottom_gutter_height (w);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1517
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1518 return list4 (make_int (left),
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1519 make_int (top),
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1520 make_int (right),
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1521 make_int (bottom));
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1522 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
1523
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1524 DEFUN ("window-point", Fwindow_point, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525 Return current value of point in WINDOW.
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
1526 For a nonselected window, this is the value point would have
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527 if that window were selected.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 Note that, when WINDOW is the selected window and its buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 is also currently selected, the value returned is the same as (point).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531 It would be more strictly correct to return the `top-level' value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 of point, outside of any save-excursion forms.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 But that is hard to define.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1534 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1535 (window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 struct window *w = decode_window (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 /* The special check for current buffer is necessary for this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 function to work as defined when called within an excursion. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 if (w == XWINDOW (Fselected_window (XFRAME (w->frame)->device))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 && current_buffer == XBUFFER (w->buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 return Fpoint (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 return Fmarker_position (w->pointm[CURRENT_DISP]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1547 DEFUN ("window-start", Fwindow_start, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 Return position at which display currently starts in WINDOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 This is updated by redisplay or by calling `set-window-start'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1550 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1551 (window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 return Fmarker_position (decode_window (window)->start[CURRENT_DISP]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1556 DEFUN ("window-end", Fwindow_end, 0, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 Return position at which display currently ends in WINDOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 This is updated by redisplay, when it runs to completion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 Simply changing the buffer text or setting `window-start'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 does not update this value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 If GUARANTEE is non-nil, then the return value is guaranteed to be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562 the value of window-end at the end of the next full redisplay assuming
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 nothing else changes in the meantime. This function is potentially much
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 slower with this flag set.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1565 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1566 (window, guarantee))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 struct window *w = decode_window (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 if (NILP (guarantee))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571 {
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1572 Lisp_Object buf;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1573 buf = w->buffer;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574 CHECK_BUFFER (buf);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1575 return make_int (BUF_Z (XBUFFER (buf)) - w->window_end_pos[CURRENT_DISP]);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 Bufpos startp = marker_position (w->start[CURRENT_DISP]);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 149
diff changeset
1580 return make_int (end_of_last_line (w, startp));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1584 DEFUN ("set-window-point", Fset_window_point, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 Make point value in WINDOW be at position POS in WINDOW's buffer.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1586 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1587 (window, pos))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589 struct window *w = decode_window (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 CHECK_INT_COERCE_MARKER (pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592 if (w == XWINDOW (Fselected_window (Qnil)))
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
1593 Fgoto_char (pos, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 set_marker_restricted (w->pointm[CURRENT_DISP], pos, w->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597 MARK_POINT_CHANGED;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598 return pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1601 DEFUN ("set-window-start", Fset_window_start, 2, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602 Make display in WINDOW start at position POS in WINDOW's buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 Optional third arg NOFORCE non-nil inhibits next redisplay
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604 from overriding motion of point in order to display at this exact start.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1605 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1606 (window, pos, noforce))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1607 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1608 struct window *w = decode_window (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1609
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 CHECK_INT_COERCE_MARKER (pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611 set_marker_restricted (w->start[CURRENT_DISP], pos, w->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612 /* this is not right, but much easier than doing what is right. */
373
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
1613 /* w->start_at_line_beg = 0; */
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
1614 /* WTF is the above supposed to mean? GE */
375
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 373
diff changeset
1615 w->start_at_line_beg = beginning_of_line_p (XBUFFER (w->buffer),
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 373
diff changeset
1616 marker_position (w->start[CURRENT_DISP]));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 if (NILP (noforce))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 w->force_start = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 w->redo_modeline = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 SET_LAST_MODIFIED (w, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 SET_LAST_FACECHANGE (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 MARK_WINDOWS_CHANGED (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 return pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1628 DEFUN ("window-dedicated-p", Fwindow_dedicated_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 Return WINDOW's dedicated object, usually t or nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 See also `set-window-dedicated-p'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1631 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1632 (window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 return decode_window (window)->dedicated;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1637 DEFUN ("set-window-dedicated-p", Fset_window_dedicated_p, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 Control whether WINDOW is dedicated to the buffer it displays.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 If it is dedicated, Emacs will not automatically change
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 which buffer appears in it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 The second argument is the new value for the dedication flag;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642 non-nil means yes.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1643 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1644 (window, arg))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1646 struct window *w = decode_window (window);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 110
diff changeset
1648 w->dedicated = NILP (arg) ? Qnil : Qt;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 return w->dedicated;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 /* FSFmacs has window-display-table here. We have display table as a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 specifier. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657 /* Record info on buffer window w is displaying
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658 when it is about to cease to display that buffer. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660 unshow_buffer (struct window *w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 Lisp_Object buf = w->buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 if (XBUFFER (buf) != XMARKER (w->pointm[CURRENT_DISP])->buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 /* FSF disables this check, so I'll do it too. I hope it won't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668 break things. --ben */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670 if (w == XWINDOW (Fselected_window (Qnil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 || ! EQ (buf, XWINDOW (Fselected_window (Qnil))->buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 /* Do this except when the selected window's buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673 is being removed from some other window. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675 /* last_window_start records the start position that this buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676 had in the last window to be disconnected from it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677 Now that this statement is unconditional,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678 it is possible for the buffer to be displayed in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 selected window, while last_window_start reflects another
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680 window which was recently showing the same buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681 Some people might say that might be a good thing. Let's see. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682 XBUFFER (buf)->last_window_start =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683 marker_position (w->start[CURRENT_DISP]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685 /* Point in the selected window's buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686 is actually stored in that buffer, and the window's pointm isn't used.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 So don't clobber point in that buffer. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 if (! EQ (buf, XWINDOW (Fselected_window (Qnil))->buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690 struct buffer *b= XBUFFER (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 BUF_SET_PT (b, bufpos_clip_to_bounds (BUF_BEGV (b),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692 marker_position (w->pointm[CURRENT_DISP]),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1693 BUF_ZV (b)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1696
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697 /* Put REPLACEMENT into the window structure in place of OLD. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 replace_window (Lisp_Object old, Lisp_Object replacement)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702 struct window *o = XWINDOW (old), *p = XWINDOW (replacement);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704 /* If OLD is its frame's root_window, then replacement is the new
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 root_window for that frame. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707 if (EQ (old, FRAME_ROOT_WINDOW (XFRAME (o->frame))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708 FRAME_ROOT_WINDOW (XFRAME (o->frame)) = replacement;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710 WINDOW_LEFT (p) = WINDOW_LEFT (o);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 WINDOW_TOP (p) = WINDOW_TOP (o);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712 WINDOW_WIDTH (p) = WINDOW_WIDTH (o);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713 WINDOW_HEIGHT (p) = WINDOW_HEIGHT (o);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715 p->next = tem = o->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1716 if (!NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717 XWINDOW (tem)->prev = replacement;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719 p->prev = tem = o->prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1720 if (!NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1721 XWINDOW (tem)->next = replacement;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1723 p->parent = tem = o->parent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1724 if (!NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1725 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1726 if (EQ (XWINDOW (tem)->vchild, old))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1727 XWINDOW (tem)->vchild = replacement;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1728 if (EQ (XWINDOW (tem)->hchild, old))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1729 XWINDOW (tem)->hchild = replacement;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1730 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1732 /* #### Here, if replacement is a vertical combination
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733 and so is its new parent, we should make replacement's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734 children be children of that parent instead. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1735 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737 /* we're deleting W; set the structure of W to indicate this. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1738
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740 mark_window_as_deleted (struct window *w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742 /* In the loop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743 (while t (split-window) (delete-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744 we end up with a tree of deleted windows which are all connected
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745 through the `next' slot. This might not seem so bad, as they're
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 deleted, and will presumably be GCed - but if even *one* of those
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747 windows is still being pointed to, by the user, or by a window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748 configuration, then *all* of those windows stick around.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750 Since the window-configuration code doesn't need any of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751 pointers to other windows (they are all recreated from the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752 window-config data), we set them all to nil so that we
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1753 are able to collect more actual garbage.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1754 */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1755 w->next = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756 w->prev = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757 w->hchild = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1758 w->vchild = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1759 w->parent = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1760
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1761 w->dead = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1762
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1763 /* Free the extra data structures attached to windows immediately so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764 they don't sit around consuming excess space. They will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1765 reinitialized by the window-configuration code as necessary. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766 finalize_window ((void *) w, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1767 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1769 DEFUN ("delete-window", Fdelete_window, 0, 2, "", /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1770 Remove WINDOW from the display. Default is selected window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1771 If window is the only one on the frame, the frame is destroyed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1772 Normally, you cannot delete the last non-minibuffer-only frame (you must
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1773 use `save-buffers-kill-emacs' or `kill-emacs'). However, if optional
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1774 second argument FORCE is non-nil, you can delete the last frame. (This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775 will automatically call `save-buffers-kill-emacs'.)
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1776 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1777 (window, force))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1778 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1779 /* This function can GC if this is the only window in the frame */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780 struct window *w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1781 Lisp_Object parent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782 struct window *par;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1783 Lisp_Object frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784 struct frame *f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785 struct device *d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1787 /* Note: this function is called by other C code on non-leaf
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1788 windows. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1789
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1790 /* Do the equivalent of decode_window() but don't error out on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1791 deleted window; it's OK to delete an already-deleted window. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792 if (NILP (window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1793 window = Fselected_window (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795 CHECK_WINDOW (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1796 w = XWINDOW (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798 /* It's okay to delete an already-deleted window. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1799 if (! WINDOW_LIVE_P (w))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1800 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802 frame = WINDOW_FRAME (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803 f = XFRAME (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1804 d = XDEVICE (FRAME_DEVICE (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806 if (TOP_LEVEL_WINDOW_P (w))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1808 if (NILP (memq_no_quit (frame, DEVICE_FRAME_LIST (d))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1809 /* this frame isn't fully initialized yet; don't blow up. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1811
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1812 if (MINI_WINDOW_P (XWINDOW (window)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1813 error ("Attempt to delete the minibuffer window");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1815 /* It has been suggested that it's a good thing for C-x 0 to have this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 behavior, but not such a good idea for #'delete-window to have it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817 Maybe C-x 0 should be bound to something else, or maybe frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1818 deletion should only happen when this is called interactively.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820 delete_frame_internal (f, !NILP (force), 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824 /* At this point, we know the window has a parent. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825 parent = w->parent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826 par = XWINDOW (parent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828 MARK_FRAME_WINDOWS_STRUCTURE_CHANGED (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830 /* Are we trying to delete any frame's selected window?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831 Note that we could be dealing with a non-leaf window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832 where the selected window is one of our children.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 So, we check by scanning all the ancestors of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 frame's selected window and comparing each one with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835 WINDOW. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837 Lisp_Object pwindow;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1838
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839 pwindow = FRAME_SELECTED_WINDOW (f);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1840
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841 while (!NILP (pwindow))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843 if (EQ (window, pwindow))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1845 pwindow = XWINDOW (pwindow)->parent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848 if (EQ (window, pwindow))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1849 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850 /* OK, we found it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851 Lisp_Object alternative;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852 alternative = Fnext_window (window, Qlambda, Qnil, Qnil);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1853
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854 /* If we're about to delete the selected window on the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1855 selected frame, then we should use Fselect_window to select
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856 the new window. On the other hand, if we're about to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1857 delete the selected window on any other frame, we shouldn't do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858 anything but set the frame's selected_window slot. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859 if (EQ (frame, Fselected_frame (Qnil)))
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
1860 Fselect_window (alternative, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1862 set_frame_selected_window (f, alternative);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866 /* w->buffer is nil in a non-leaf window; in this case,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867 get rid of the markers we maintain that point into that buffer. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868 if (!NILP (w->buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1869 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870 unshow_buffer (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871 unchain_marker (w->pointm[CURRENT_DISP]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1872 unchain_marker (w->pointm[DESIRED_DISP]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873 unchain_marker (w->pointm[CMOTION_DISP]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1874 unchain_marker (w->start[CURRENT_DISP]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875 unchain_marker (w->start[DESIRED_DISP]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1876 unchain_marker (w->start[CMOTION_DISP]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1877 unchain_marker (w->sb_point);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1878 /* This breaks set-window-configuration if windows in the saved
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1879 configuration get deleted and multiple frames are in use. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880 /* w->buffer = Qnil; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1881 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1882
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1883 /* close up the hole in the sibling list */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1884 if (!NILP (w->next))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1885 XWINDOW (w->next)->prev = w->prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886 if (!NILP (w->prev))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1887 XWINDOW (w->prev)->next = w->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888 if (EQ (window, par->hchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889 par->hchild = w->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890 if (EQ (window, par->vchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891 par->vchild = w->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1892
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1893 /* Find one of our siblings to give our space to. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1894 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1895 Lisp_Object sib = w->prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1896 if (NILP (sib))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898 /* If w gives its space to its next sibling, that sibling needs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899 to have its top/left side pulled back to where w's is.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1900 set_window_{height,width} will re-position the sibling's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901 children. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902 sib = w->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903 WINDOW_TOP (XWINDOW (sib)) = WINDOW_TOP (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1904 WINDOW_LEFT (XWINDOW (sib)) = WINDOW_LEFT (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1905 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1906
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1907 /* Stretch that sibling. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1908 if (!NILP (par->vchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1909 set_window_pixheight
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1910 (sib, (WINDOW_HEIGHT (XWINDOW (sib)) + WINDOW_HEIGHT (w)), 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911 if (!NILP (par->hchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1912 set_window_pixwidth
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1913 (sib, (WINDOW_WIDTH (XWINDOW (sib)) + WINDOW_WIDTH (w)), 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1914 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1915
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916 /* If parent now has only one child,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1917 put the child into the parent's place. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1918 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919 Lisp_Object parchild = par->hchild;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920 if (NILP (parchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 parchild = par->vchild;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1922 if (NILP (XWINDOW (parchild)->next))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1924 replace_window (parent, parchild);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1925 mark_window_as_deleted (XWINDOW (parent));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929 /* Since we may be deleting combination windows, we must make sure that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1930 not only W but all its children have been marked as deleted. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1931 if (!NILP (w->hchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1932 delete_all_subwindows (XWINDOW (w->hchild));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1933 else if (!NILP (w->vchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1934 delete_all_subwindows (XWINDOW (w->vchild));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1935
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1936 mark_window_as_deleted (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1937
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1938 f->mirror_dirty = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1942
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1943 DEFUN ("next-window", Fnext_window, 0, 4, 0, /*
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
1944 Return next window after WINDOW in canonical ordering of windows.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1945 If omitted, WINDOW defaults to the selected window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1946
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1947 Optional second arg MINIBUF t means count the minibuffer window even
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1948 if not active. MINIBUF nil or omitted means count the minibuffer iff
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1949 it is active. MINIBUF neither t nor nil means not to count the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1950 minibuffer even if it is active.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1951
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1952 Several frames may share a single minibuffer; if the minibuffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1953 counts, all windows on all frames that share that minibuffer count
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1954 too. Therefore, `next-window' can be used to iterate through the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1955 set of windows even when the minibuffer is on another frame. If the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1956 minibuffer does not count, only windows from WINDOW's frame count.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958 Optional third arg ALL-FRAMES t means include windows on all frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1959 ALL-FRAMES nil or omitted means cycle within the frames as specified
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1960 above. ALL-FRAMES = `visible' means include windows on all visible frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1961 ALL-FRAMES = 0 means include windows on all visible and iconified frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1962 If ALL-FRAMES is a frame, restrict search to windows on that frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1963 Anything else means restrict to WINDOW's frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1964
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
1965 Optional fourth argument CONSOLE controls which consoles or devices the
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1966 returned window may be on. If CONSOLE is a console, return windows only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1967 on that console. If CONSOLE is a device, return windows only on that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1968 device. If CONSOLE is a console type, return windows only on consoles
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1969 of that type. If CONSOLE is 'window-system, return any windows on any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1970 window-system consoles. If CONSOLE is nil or omitted, return windows only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1971 on WINDOW's console. Otherwise, all windows are considered.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1972
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1973 If you use consistent values for MINIBUF, ALL-FRAMES, and CONSOLE, you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1974 can use `next-window' to iterate through the entire cycle of acceptable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1975 windows, eventually ending up back at the window you started with.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1976 `previous-window' traverses the same cycle, in the reverse order.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1977 */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
1978 (window, minibuf, all_frames, console))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1979 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1980 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1981 Lisp_Object start_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1982
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1983 if (NILP (window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1984 window = Fselected_window (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1985 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1986 CHECK_LIVE_WINDOW (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1987
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1988 start_window = window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1989
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1990 /* minibuf == nil may or may not include minibuffers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1991 Decide if it does. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1992 if (NILP (minibuf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1993 minibuf = (minibuf_level ? minibuf_window : Qlambda);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1994 else if (! EQ (minibuf, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1995 minibuf = Qlambda;
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
1996 /* Now minibuf can be t => count all minibuffer windows,
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
1997 lambda => count none of them,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1998 or a specific minibuffer window (the active one) to count. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1999
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2000 /* all_frames == nil doesn't specify which frames to include. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2001 if (NILP (all_frames))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2002 all_frames = (! EQ (minibuf, Qlambda)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2003 ? (FRAME_MINIBUF_WINDOW
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2004 (XFRAME
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2005 (WINDOW_FRAME
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2006 (XWINDOW (window)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2007 : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2008 else if (EQ (all_frames, Qvisible))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2009 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2010 else if (ZEROP (all_frames))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2011 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2012 else if (FRAMEP (all_frames) && ! EQ (all_frames, Fwindow_frame (window)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2013 /* If all_frames is a frame and window arg isn't on that frame, just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2014 return the first window on the frame. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2015 return frame_first_window (XFRAME (all_frames));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2016 else if (! EQ (all_frames, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2017 all_frames = Qnil;
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2018 /* Now all_frames is t meaning search all frames,
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2019 nil meaning search just current frame,
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2020 visible meaning search just visible frames,
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2021 0 meaning search visible and iconified frames,
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2022 or a window, meaning search the frame that window belongs to. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2023
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2024 /* Do this loop at least once, to get the next window, and perhaps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2025 again, if we hit the minibuffer and that is not acceptable. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2026 do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2027 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2028 /* Find a window that actually has a next one. This loop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2029 climbs up the tree. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2030 while (tem = XWINDOW (window)->next, NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2031 if (tem = XWINDOW (window)->parent, !NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2032 window = tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2033 else /* window must be minibuffer window now */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2034 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2035 /* We've reached the end of this frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2036 Which other frames are acceptable? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2037 tem = WINDOW_FRAME (XWINDOW (window));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2038
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2039 if (! NILP (all_frames))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2040 {
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2041 Lisp_Object tem1;
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2042
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2043 tem1 = tem;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2044 tem = next_frame (tem, all_frames, console);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2045 /* In the case where the minibuffer is active,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2046 and we include its frame as well as the selected one,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2047 next_frame may get stuck in that frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2048 If that happens, go back to the selected frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2049 so we can complete the cycle. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2050 if (EQ (tem, tem1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2051 XSETFRAME (tem, selected_frame ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2052 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2053
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2054 tem = FRAME_ROOT_WINDOW (XFRAME (tem));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2055 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2056 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2057
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2058 window = tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2059
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2060 /* If we're in a combination window, find its first child and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2061 recurse on that. Otherwise, we've found the window we want. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2062 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2063 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2064 if (!NILP (XWINDOW (window)->hchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2065 window = XWINDOW (window)->hchild;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2066 else if (!NILP (XWINDOW (window)->vchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2067 window = XWINDOW (window)->vchild;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2068 else break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2069 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2070 }
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2071 /* "acceptable" is the correct spelling. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2072 /* Which windows are acceptable?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2073 Exit the loop and accept this window if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074 this isn't a minibuffer window,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075 or we're accepting all minibuffer windows,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2076 or this is the active minibuffer and we are accepting that one, or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077 we've come all the way around and we're back at the original window. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2078 while (MINI_WINDOW_P (XWINDOW (window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2079 && ! EQ (minibuf, Qt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2080 && ! EQ (minibuf, window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2081 && ! EQ (window, start_window));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2082
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2083 return window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2084 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2085
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2086 DEFUN ("previous-window", Fprevious_window, 0, 4, 0, /*
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2087 Return the window preceding WINDOW in canonical ordering of windows.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2088 If omitted, WINDOW defaults to the selected window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2089
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2090 Optional second arg MINIBUF t means count the minibuffer window even
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2091 if not active. MINIBUF nil or omitted means count the minibuffer iff
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2092 it is active. MINIBUF neither t nor nil means not to count the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2093 minibuffer even if it is active.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2094
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2095 Several frames may share a single minibuffer; if the minibuffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2096 counts, all windows on all frames that share that minibuffer count
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2097 too. Therefore, `previous-window' can be used to iterate through
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2098 the set of windows even when the minibuffer is on another frame. If
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2099 the minibuffer does not count, only windows from WINDOW's frame count
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2100
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2101 If optional third arg ALL-FRAMES t means include windows on all frames.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2102 ALL-FRAMES nil or omitted means cycle within the frames as specified
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2103 above. ALL-FRAMES = `visible' means include windows on all visible frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2104 ALL-FRAMES = 0 means include windows on all visible and iconified frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2105 If ALL-FRAMES is a frame, restrict search to windows on that frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2106 Anything else means restrict to WINDOW's frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2107
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2108 Optional fourth argument CONSOLE controls which consoles or devices the
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2109 returned window may be on. If CONSOLE is a console, return windows only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2110 on that console. If CONSOLE is a device, return windows only on that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2111 device. If CONSOLE is a console type, return windows only on consoles
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2112 of that type. If CONSOLE is 'window-system, return any windows on any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2113 window-system consoles. If CONSOLE is nil or omitted, return windows only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2114 on WINDOW's console. Otherwise, all windows are considered.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2115
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2116 If you use consistent values for MINIBUF, ALL-FRAMES, and CONSOLE, you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2117 can use `previous-window' to iterate through the entire cycle of acceptable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2118 windows, eventually ending up back at the window you started with.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2119 `next-window' traverses the same cycle, in the reverse order.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2120 */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
2121 (window, minibuf, all_frames, console))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2122 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2123 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2124 Lisp_Object start_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2125
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2126 if (NILP (window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2127 window = Fselected_window (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2128 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2129 CHECK_LIVE_WINDOW (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2131 start_window = window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2133 /* minibuf == nil may or may not include minibuffers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2134 Decide if it does. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2135 if (NILP (minibuf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2136 minibuf = (minibuf_level ? minibuf_window : Qlambda);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2137 else if (! EQ (minibuf, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2138 minibuf = Qlambda;
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2139 /* Now minibuf can be t => count all minibuffer windows,
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2140 lambda => count none of them,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2141 or a specific minibuffer window (the active one) to count. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2142
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2143 /* all_frames == nil doesn't specify which frames to include.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2144 Decide which frames it includes. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2145 if (NILP (all_frames))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2146 all_frames = (! EQ (minibuf, Qlambda)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2147 ? (FRAME_MINIBUF_WINDOW
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2148 (XFRAME
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2149 (WINDOW_FRAME
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2150 (XWINDOW (window)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2151 : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2152 else if (EQ (all_frames, Qvisible))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2153 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154 else if (ZEROP (all_frames))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2156 else if (FRAMEP (all_frames) && ! EQ (all_frames, Fwindow_frame (window)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2157 /* If all_frames is a frame and window arg isn't on that frame, just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2158 return the first window on the frame. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2159 return frame_first_window (XFRAME (all_frames));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2160 else if (! EQ (all_frames, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2161 all_frames = Qnil;
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2162 /* Now all_frames is t meaning search all frames,
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2163 nil meaning search just current frame,
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2164 visible meaning search just visible frames,
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2165 0 meaning search visible and iconified frames,
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2166 or a window, meaning search the frame that window belongs to. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2167
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2168 /* Do this loop at least once, to get the next window, and perhaps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2169 again, if we hit the minibuffer and that is not acceptable. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170 do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2171 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2172 /* Find a window that actually has a next one. This loop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2173 climbs up the tree. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2174 while (tem = XWINDOW (window)->prev, NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2175 if (tem = XWINDOW (window)->parent, !NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2176 window = tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2177 else /* window must be minibuffer window now */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2179 /* We have found the top window on the frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2180 Which frames are acceptable? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2181 tem = WINDOW_FRAME (XWINDOW (window));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2182
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2183 if (! NILP (all_frames))
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2184 /* It's actually important that we use prev_frame here,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2185 rather than next_frame. All the windows acceptable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2186 according to the given parameters should form a ring;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2187 Fnext_window and Fprevious_window should go back and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2188 forth around the ring. If we use next_frame here,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2189 then Fnext_window and Fprevious_window take different
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2190 paths through the set of acceptable windows.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2191 window_loop assumes that these `ring' requirement are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2192 met. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2193 {
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2194 Lisp_Object tem1;
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2195
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2196 tem1 = tem;
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2197 tem = prev_frame (tem, all_frames, console);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2198 /* In the case where the minibuffer is active,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2199 and we include its frame as well as the selected one,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2200 next_frame may get stuck in that frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2201 If that happens, go back to the selected frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2202 so we can complete the cycle. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2203 if (EQ (tem, tem1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2204 XSETFRAME (tem, selected_frame ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2205 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2207 /* If this frame has a minibuffer, find that window first,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2208 because it is conceptually the last window in that frame. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2209 if (FRAME_HAS_MINIBUF_P (XFRAME (tem)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2210 tem = FRAME_MINIBUF_WINDOW (XFRAME (tem));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2211 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2212 tem = FRAME_ROOT_WINDOW (XFRAME (tem));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2213
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2214 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2215 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2216
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2217 window = tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2218
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2219 /* If we're in a combination window, find its first child and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2220 recurse on that. Otherwise, we've found the window we want. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2221 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2222 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2223 if (!NILP (XWINDOW (window)->hchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2224 window = XWINDOW (window)->hchild;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2225 else if (!NILP (XWINDOW (window)->vchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2226 window = XWINDOW (window)->vchild;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2227 else break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2228 while (tem = XWINDOW (window)->next, !NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2229 window = tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2230 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2231 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2232 /* Which windows are acceptable?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2233 Exit the loop and accept this window if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2234 this isn't a minibuffer window,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2235 or we're accepting all minibuffer windows,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2236 or this is the active minibuffer and we are accepting that one, or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2237 we've come all the way around and we're back at the original window. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2238 while (MINI_WINDOW_P (XWINDOW (window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2239 && ! EQ (minibuf, Qt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2240 && ! EQ (minibuf, window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2241 && ! EQ (window, start_window));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2242
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2243 return window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2244 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2245
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2246 DEFUN ("next-vertical-window", Fnext_vertical_window, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2247 Return the next window which is vertically after WINDOW.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2248 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2249 (window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2250 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2251 Lisp_Object root;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2252 struct window *w = decode_window (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2253 XSETWINDOW (window, w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2254
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2255 if (MINI_WINDOW_P (XWINDOW (window)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2256 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2257
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2258 root = FRAME_ROOT_WINDOW (XFRAME (WINDOW_FRAME (XWINDOW (window))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2259
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2260 if (EQ (window, root))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2261 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2262 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2263 if (!NILP (XWINDOW (window)->hchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2264 window = XWINDOW (window)->hchild;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2265 else if (!NILP (XWINDOW (window)->vchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2266 window = XWINDOW (window)->vchild;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2267 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2268 return window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2269 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2270
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2271 do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2272 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2273 if (!NILP (XWINDOW (window)->parent) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2274 !NILP (XWINDOW (XWINDOW (window)->parent)->vchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2275 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2276 if (!NILP (XWINDOW (window)->next))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2277 return XWINDOW (window)->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2278 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2279 window = XWINDOW (window)->parent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2280 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2281 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2282 window = XWINDOW (window)->parent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2283 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2284 while (!EQ (window, root));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2285
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2286 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2287 if (!NILP (XWINDOW (window)->hchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2288 window = XWINDOW (window)->hchild;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2289 else if (!NILP (XWINDOW (window)->vchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2290 window = XWINDOW (window)->vchild;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2291 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2292 return window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2293 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2294
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2295 DEFUN ("other-window", Fother_window, 1, 3, "p", /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2296 Select the N'th different window on this frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2297 All windows on current frame are arranged in a cyclic order.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2298 This command selects the window N steps away in that order.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2299 A negative N moves in the opposite order.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2300
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2301 If optional argument FRAME is `visible', search all visible frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2302 If FRAME is 0, search all visible and iconified frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2303 If FRAME is t, search all frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2304 If FRAME is nil, search only the selected frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2305 If FRAME is a frame, search only that frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2306
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2307 Optional third argument CONSOLE controls which consoles or devices the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2308 returned window may be on. If CONSOLE is a console, return windows only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2309 on that console. If CONSOLE is a device, return windows only on that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2310 device. If CONSOLE is a console type, return windows only on consoles
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2311 of that type. If CONSOLE is 'window-system, return any windows on any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2312 window-system consoles. If CONSOLE is nil or omitted, return windows only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2313 on FRAME'S console, or on the selected console if FRAME is not a frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2314 Otherwise, all windows are considered.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2315 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2316 (n, frame, console))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2317 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2318 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2319 Lisp_Object w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2320
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2321 CHECK_INT (n);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2322 w = Fselected_window (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2323 i = XINT (n);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2324
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2325 while (i > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2326 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2327 w = Fnext_window (w, Qnil, frame, console);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2328 i--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2329 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2330 while (i < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2331 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2332 w = Fprevious_window (w, Qnil, frame, console);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2333 i++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2334 }
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
2335 Fselect_window (w, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2336 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2337 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2338
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2339
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2340 /* Look at all windows, performing an operation specified by TYPE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2341 with argument OBJ.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2342
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2343 If FRAMES is Qt, look at all frames, if Qnil, look at just the selected
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2344 frame. If FRAMES is a frame, just look at windows on that frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2345 If MINI is non-zero, perform the operation on minibuffer windows too.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2346 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2348 enum window_loop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2349 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2350 WINDOW_LOOP_UNUSED,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2351 GET_BUFFER_WINDOW, /* Arg is buffer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2352 GET_LRU_WINDOW, /* Arg is t for full-width windows only */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2353 DELETE_OTHER_WINDOWS, /* Arg is window not to delete */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2354 DELETE_BUFFER_WINDOWS, /* Arg is buffer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2355 GET_LARGEST_WINDOW,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2356 UNSHOW_BUFFER, /* Arg is buffer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2357 GET_BUFFER_WINDOW_COUNT, /* Arg is buffer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2358 GET_BUFFER_MRU_WINDOW /* Arg is buffer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2359 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2360
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2361 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2362 window_loop (enum window_loop type,
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
2363 Lisp_Object obj,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2364 int mini,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2365 Lisp_Object frames,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2366 int dedicated_too,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2367 Lisp_Object console)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2368 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2369 /* This function can GC if type == DELETE_BUFFER_WINDOWS or UNSHOW_BUFFER */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2370 Lisp_Object w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2371 Lisp_Object best_window = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2372 Lisp_Object next_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2373 Lisp_Object last_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2374 struct frame *frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2375 Lisp_Object frame_arg = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2376 int count = 0; /* for GET_BUFFER_WINDOW_COUNT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2377 /* #### I think the change of "precomputing" last_window and next_window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2378 * #### catch the lossage this is meant(?) to punt on...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2379 */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
2380 int lose_lose = 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2381 Lisp_Object devcons, concons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2382
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2383 /* FRAME_ARG is Qlambda to stick to one frame,
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2384 Qvisible to consider all visible frames,
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2385 or Qt otherwise. */
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2386
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2387 /* If we're only looping through windows on a particular frame,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2388 FRAME points to that frame. If we're looping through windows
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2389 on all frames, FRAME is 0. */
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2390
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2391 if (FRAMEP (frames))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2392 frame = XFRAME (frames);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2393 else if (NILP (frames))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2394 frame = selected_frame ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2395 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2396 frame = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2397 if (frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2398 frame_arg = Qlambda;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2399 else if (ZEROP (frames))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2400 frame_arg = frames;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2401 else if (EQ (frames, Qvisible))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2402 frame_arg = frames;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
2403
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2404 DEVICE_LOOP_NO_BREAK (devcons, concons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2405 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2406 Lisp_Object device = XCAR (devcons);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
2407 Lisp_Object the_frame;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2408
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2409 if (frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2410 XSETFRAME (the_frame, frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2411 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2412 the_frame = DEVICE_SELECTED_FRAME (XDEVICE (device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2413
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2414 if (NILP (the_frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2415 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2416
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2417 if (!device_matches_console_spec (the_frame, device, console))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2418 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2419
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2420 /* Pick a window to start with. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2421 if (WINDOWP (obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2422 w = obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2423 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2424 w = FRAME_SELECTED_WINDOW (XFRAME (the_frame));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2425
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2426 /* Figure out the last window we're going to mess with. Since
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2427 Fnext_window, given the same options, is guaranteed to go in a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2428 ring, we can just use Fprevious_window to find the last one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2429
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2430 We can't just wait until we hit the first window again,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2431 because it might be deleted. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2432
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2433 last_window = Fprevious_window (w, mini ? Qt : Qnil, frame_arg, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2434
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2435 best_window = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2436 for (;;)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2437 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2438 struct window *p = XWINDOW (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2439 struct frame *w_frame = XFRAME (WINDOW_FRAME (p));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2440
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2441 /* Pick the next window now, since some operations will delete
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2442 the current window. */
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
2443 next_window = Fnext_window (w, mini ? Qt : Qnil, frame_arg, Qt);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2444
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2445 /* #### Still needed ?? */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
2446 /* Given the outstanding quality of the rest of this code,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2447 I feel no shame about putting this piece of shit in. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2448 if (++lose_lose >= 500)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2449 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2450
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2451 /* Note that we do not pay attention here to whether
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2452 the frame is visible, since Fnext_window skips non-visible frames
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2453 if that is desired, under the control of frame_arg. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2454 if (! MINI_WINDOW_P (p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2455 || (mini && minibuf_level > 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2456 switch (type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2457 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2458 case GET_BUFFER_WINDOW:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2459 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2460 if (XBUFFER (p->buffer) == XBUFFER (obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2461 return w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2462 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2463 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2464
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2465 case GET_BUFFER_WINDOW_COUNT:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2466 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2467 if (XBUFFER (p->buffer) == XBUFFER (obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2468 count++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2469 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2470 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2471
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2472 case GET_LRU_WINDOW:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2473 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2474 /* t as arg means consider only full-width windows */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2475 if (!NILP (obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2476 && !window_full_width_p (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2477 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2478 /* Ignore dedicated windows and minibuffers. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2479 if (MINI_WINDOW_P (p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2480 || (dedicated_too ? 0 : !NILP (p->dedicated)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2481 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2482 if (NILP (best_window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2483 || (XINT (XWINDOW (best_window)->use_time)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2484 > XINT (p->use_time)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2485 best_window = w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2486 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2487 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2488
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2489 case GET_BUFFER_MRU_WINDOW:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2490 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2491 /* #### what about the first check in GET_LRU_WINDOW? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2492 /* Ignore dedicated windows and minibuffers. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2493 if (MINI_WINDOW_P (p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2494 || (dedicated_too ? 0 : !NILP (p->dedicated)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2495 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2496
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2497 if (XBUFFER (p->buffer) == XBUFFER (obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2498 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2499 if (NILP (best_window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2500 || (XINT (XWINDOW (best_window)->use_time)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2501 < XINT (p->use_time)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2502 best_window = w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2503 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2504 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2505 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2506
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2507 case DELETE_OTHER_WINDOWS:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2508 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2509 /* Don't delete the last window on a frame; this can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2510 happen when the minibuffer is selected, and would
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2511 cause the frame to be deleted. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2512 if (p != XWINDOW (obj) && !TOP_LEVEL_WINDOW_P (XWINDOW (w)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2513 Fdelete_window (w, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2514 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2515 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2516
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2517 case DELETE_BUFFER_WINDOWS:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2518 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2519 if (EQ (p->buffer, obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2520 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2521 struct frame *f = XFRAME (WINDOW_FRAME (p));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2522
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2523 /* If this window is dedicated, and in a frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2524 of its own, kill the frame. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2525 if (EQ (w, FRAME_ROOT_WINDOW (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2526 && !NILP (p->dedicated)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2527 && other_visible_frames (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2528 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2529 /* Skip the other windows on this frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2530 There might be one, the minibuffer! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2531 if (! EQ (w, last_window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2532 while (f == XFRAME (WINDOW_FRAME
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2533 (XWINDOW (next_window))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2534 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2535 /* As we go, check for the end of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2536 loop. We mustn't start going
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2537 around a second time. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2538 if (EQ (next_window, last_window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2539 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2540 last_window = w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2541 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2542 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2543 next_window = Fnext_window (next_window,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2544 mini ? Qt : Qnil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2545 frame_arg, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2546 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2547 /* Now we can safely delete the frame. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2548 Fdelete_frame (WINDOW_FRAME (p), Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2549 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2550 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2551 /* If we're deleting the buffer displayed in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2552 the only window on the frame, find a new
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2553 buffer to display there. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2554 if (NILP (p->parent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2555 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2556 Lisp_Object new_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2557 new_buffer = Fother_buffer (obj, Qnil, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2558 if (NILP (new_buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2559 new_buffer = Fget_buffer_create (QSscratch);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2560 Fset_window_buffer (w, new_buffer);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2561 if (EQ (w, Fselected_window (Qnil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2562 Fset_buffer (p->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2563 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2564 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2565 Fdelete_window (w, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2566 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2567 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2568 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2569
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2570 case GET_LARGEST_WINDOW:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2571 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2572 /* Ignore dedicated windows and minibuffers. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2573 if (MINI_WINDOW_P (p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2574 || (dedicated_too ? 0 : !NILP (p->dedicated)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2575 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2576 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2577 /* write the check as follows to avoid tripping
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2578 error_check_window() --ben */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2579 struct window *b = NILP (best_window) ? 0 :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2580 XWINDOW (best_window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2581 if (NILP (best_window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2582 || ((WINDOW_HEIGHT (p) * WINDOW_WIDTH (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2583 > (WINDOW_HEIGHT (b) * WINDOW_WIDTH (b))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2584 best_window = w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2585 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2586 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2587 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2588
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2589 case UNSHOW_BUFFER:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2590 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2591 if (EQ (p->buffer, obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2592 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2593 /* Find another buffer to show in this window. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2594 Lisp_Object another_buffer =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2595 Fother_buffer (obj, Qnil, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2596 if (NILP (another_buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2597 another_buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2598 = Fget_buffer_create (QSscratch);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2599 /* If this window is dedicated, and in a frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2600 of its own, kill the frame. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2601 if (EQ (w, FRAME_ROOT_WINDOW (w_frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2602 && !NILP (p->dedicated)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2603 && other_visible_frames (w_frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2604 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2605 /* Skip the other windows on this frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2606 There might be one, the minibuffer! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2607 if (! EQ (w, last_window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2608 while (w_frame == XFRAME (WINDOW_FRAME
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2609 (XWINDOW (next_window))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2610 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2611 /* As we go, check for the end of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2612 loop. We mustn't start going
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2613 around a second time. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2614 if (EQ (next_window, last_window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2615 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2616 last_window = w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2617 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2618 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2619 next_window = Fnext_window (next_window,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2620 mini ? Qt : Qnil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2621 frame_arg, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2622 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2623 /* Now we can safely delete the frame. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2624 delete_frame_internal (XFRAME (WINDOW_FRAME (p)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2625 0, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2626 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2627 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2628 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2629 /* Otherwise show a different buffer in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2630 window. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2631 p->dedicated = Qnil;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2632 Fset_window_buffer (w, another_buffer);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2633 if (EQ (w, Fselected_window (Qnil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2634 Fset_buffer (p->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2635 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2636 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2637 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2638 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2639
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
2640 default:
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2641 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2642 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2643
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2644 if (EQ (w, last_window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2645 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2646
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2647 w = next_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2648 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2649 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2650
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 149
diff changeset
2651 return type == GET_BUFFER_WINDOW_COUNT ? make_int (count) : best_window;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2652 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2653
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2654 #if 0 /* not currently used */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2655
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2656 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2657 buffer_window_count (struct buffer *b, struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2658 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2659 Lisp_Object buffer, frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2660
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2661 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2662 XSETBUFFER (buffer, b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2663
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2664 return XINT (window_loop (GET_BUFFER_WINDOW_COUNT, buffer, 0, frame, 1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2665 Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2666 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2667
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2668 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2669 buffer_window_mru (struct window *w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2670 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
2671 Lisp_Object window =
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2672 window_loop (GET_BUFFER_MRU_WINDOW, w->buffer, 0, w->frame, 1, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2673
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2674 if (NILP (window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2675 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2676 else if (XWINDOW (window) == w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2677 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2678 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2679 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2680 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2681
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2682 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2683
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2684
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2685 DEFUN ("get-lru-window", Fget_lru_window, 0, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2686 Return the window least recently selected or used for display.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2687 If optional argument FRAME is `visible', search all visible frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2688 If FRAME is 0, search all visible and iconified frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2689 If FRAME is t, search all frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2690 If FRAME is nil, search only the selected frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2691 If FRAME is a frame, search only that frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2692
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2693 Optional second argument CONSOLE controls which consoles or devices the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2694 returned window may be on. If CONSOLE is a console, return windows only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2695 on that console. If CONSOLE is a device, return windows only on that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2696 device. If CONSOLE is a console type, return windows only on consoles
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2697 of that type. If CONSOLE is 'window-system, return any windows on any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2698 window-system consoles. If CONSOLE is nil or omitted, return windows only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2699 on FRAME'S console, or on the selected console if FRAME is not a frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2700 Otherwise, all windows are considered.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2701 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2702 (frame, console))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2703 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2704 Lisp_Object w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2705 /* First try for a non-dedicated window that is full-width */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2706 w = window_loop (GET_LRU_WINDOW, Qt, 0, frame, 0, console);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2707 if (!NILP (w) && !EQ (w, Fselected_window (Qnil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2708 return w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2709
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2710 /* Then try for any non-dedicated window */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2711 w = window_loop (GET_LRU_WINDOW, Qnil, 0, frame, 0, console);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2712 if (!NILP (w) && !EQ (w, Fselected_window (Qnil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2713 return w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2714
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2715 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2716 /* FSFmacs never returns a dedicated window here. If we do,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2717 it makes `display-buffer' not work right. #### All of this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2718 shit is so disgusting and awful that it needs to be rethought
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2719 from scratch. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2720 /* then try for a dedicated window that is full-width */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2721 w = window_loop (GET_LRU_WINDOW, Qt, 0, frame, 1, console);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2722 if (!NILP (w) && !EQ (w, Fselected_window (Qnil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2723 return w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2724
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2725 /* If none of them, then all windows, dedicated or not. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2726 w = window_loop (GET_LRU_WINDOW, Qnil, 0, frame, 1, console);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2727
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2728 /* At this point we damn well better have found something. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2729 if (NILP (w)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2730 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2731
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 149
diff changeset
2732 return w;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2733 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2734
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2735 DEFUN ("get-largest-window", Fget_largest_window, 0, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2736 Return the window largest in area.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2737 If optional argument FRAME is `visible', search all visible frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2738 If FRAME is 0, search all visible and iconified frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2739 If FRAME is t, search all frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2740 If FRAME is nil, search only the selected frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2741 If FRAME is a frame, search only that frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2742
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2743 Optional second argument CONSOLE controls which consoles or devices the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2744 returned window may be on. If CONSOLE is a console, return windows only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2745 on that console. If CONSOLE is a device, return windows only on that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2746 device. If CONSOLE is a console type, return windows only on consoles
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2747 of that type. If CONSOLE is 'window-system, return any windows on any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2748 window-system consoles. If CONSOLE is nil or omitted, return windows only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2749 on FRAME'S console, or on the selected console if FRAME is not a frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2750 Otherwise, all windows are considered.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2751 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2752 (frame, console))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2753 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2754 /* Don't search dedicated windows because FSFmacs doesn't.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2755 This stuff is all black magic so don't try to apply common
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2756 sense to it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2757 return window_loop (GET_LARGEST_WINDOW, Qnil, 0, frame, 0, console);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2758 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2759
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2760 DEFUN ("get-buffer-window", Fget_buffer_window, 1, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2761 Return a window currently displaying BUFFER, or nil if none.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2762 If optional argument FRAME is `visible', search all visible frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2763 If optional argument FRAME is 0, search all visible and iconified frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2764 If FRAME is t, search all frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2765 If FRAME is nil, search only the selected frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2766 If FRAME is a frame, search only that frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2767
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2768 Optional third argument CONSOLE controls which consoles or devices the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2769 returned window may be on. If CONSOLE is a console, return windows only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2770 on that console. If CONSOLE is a device, return windows only on that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2771 device. If CONSOLE is a console type, return windows only on consoles
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2772 of that type. If CONSOLE is 'window-system, return any windows on any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2773 window-system consoles. If CONSOLE is nil or omitted, return windows only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2774 on FRAME'S console, or on the selected console if FRAME is not a frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2775 Otherwise, all windows are considered.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2776 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2777 (buffer, frame, console))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2778 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2779 buffer = Fget_buffer (buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2780 if (BUFFERP (buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2781 /* Search dedicated windows too. (Doesn't matter here anyway.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2782 return window_loop (GET_BUFFER_WINDOW, buffer, 1, frame, 1, console);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2783 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2784 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2785 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2786
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2787 /* These functions used to be `buffer-left-margin-pixel-width', etc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2788 but there is no sensible way to implement those functions, since
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2789 you can't in general derive a window from a buffer. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2790
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2791 DEFUN ("window-left-margin-pixel-width", Fwindow_left_margin_pixel_width,
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2792 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2793 Return the width in pixels of the left outside margin of window WINDOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2794 If WINDOW is nil, the selected window is assumed.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2795 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2796 (window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2797 {
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 110
diff changeset
2798 return make_int (window_left_margin_width (decode_window (window)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2799 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2800
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2801 DEFUN ("window-right-margin-pixel-width", Fwindow_right_margin_pixel_width,
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2802 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2803 Return the width in pixels of the right outside margin of window WINDOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2804 If WINDOW is nil, the selected window is assumed.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2805 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2806 (window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2807 {
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 110
diff changeset
2808 return make_int (window_right_margin_width (decode_window (window)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2809 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2810
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2811 DEFUN ("delete-other-windows", Fdelete_other_windows, 0, 1, "", /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2812 Make WINDOW (or the selected window) fill its frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2813 Only the frame WINDOW is on is affected.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2814 This function tries to reduce display jumps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2815 by keeping the text previously visible in WINDOW
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2816 in the same place on the frame. Doing this depends on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2817 the value of (window-start WINDOW), so if calling this function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2818 in a program gives strange scrolling, make sure the window-start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2819 value is reasonable when this function is called.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2820 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2821 (window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2822 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2823 struct window *w = decode_window (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2824 struct buffer *b = XBUFFER (w->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2825 Bufpos start_pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2826 int old_top = WINDOW_TOP (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2827
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2828 XSETWINDOW (window, w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2829
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2830 if (MINI_WINDOW_P (w) && old_top > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2831 error ("Can't expand minibuffer to full frame");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2832
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2833 /* Ignore dedicated windows. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2834 window_loop (DELETE_OTHER_WINDOWS, window, 0, w->frame, 0, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2835
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2836 start_pos = marker_position (w->start[CURRENT_DISP]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2837
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2838 /* Try to minimize scrolling, by setting the window start to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2839 point which will cause the text at the old window start to be at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2840 the same place on the frame. But don't try to do this if the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2841 window start is outside the visible portion (as might happen when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2842 the display is not current, due to typeahead). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2843 if (start_pos >= BUF_BEGV (b) && start_pos <= BUF_ZV (b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2844 && !MINI_WINDOW_P (w))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2845 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2846 Bufpos new_start = start_with_line_at_pixpos (w, start_pos, old_top);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2847
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2848 if (new_start >= BUF_BEGV (b) && new_start <= BUF_ZV (b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2849 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2850 Fset_marker (w->start[CURRENT_DISP], make_int (new_start),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2851 w->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2852 w->start_at_line_beg = beginning_of_line_p (b, new_start);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2853 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2854 /* We need to do this, so that the window-scroll-functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2855 get called. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2856 w->force_start = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2857 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2858
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2859 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2860 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2861
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2862 DEFUN ("delete-windows-on", Fdelete_windows_on, 1, 3,
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2863 "bDelete windows on (buffer): ", /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2864 Delete all windows showing BUFFER.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2865 Optional second argument FRAME controls which frames are affected.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2866 If nil or omitted, delete all windows showing BUFFER in any frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2867 If t, delete only windows showing BUFFER in the selected frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2868 If `visible', delete all windows showing BUFFER in any visible frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2869 If a frame, delete only windows showing BUFFER in that frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2870
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2871 Optional third argument CONSOLE controls which consoles or devices the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2872 returned window may be on. If CONSOLE is a console, return windows only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2873 on that console. If CONSOLE is a device, return windows only on that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2874 device. If CONSOLE is a console type, return windows only on consoles
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2875 of that type. If CONSOLE is 'window-system, return any windows on any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2876 window-system consoles. If CONSOLE is nil or omitted, return windows only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2877 on FRAME'S console, or on the selected console if FRAME is not a frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2878 Otherwise, all windows are considered.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2879 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2880 (buffer, frame, console))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2881 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2882 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2883 /* FRAME uses t and nil to mean the opposite of what window_loop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2884 expects. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2885 if (!FRAMEP (frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2886 frame = NILP (frame) ? Qt : Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2887
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2888 if (!NILP (buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2889 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2890 buffer = Fget_buffer (buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2891 CHECK_BUFFER (buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2892 /* Ignore dedicated windows. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2893 window_loop (DELETE_BUFFER_WINDOWS, buffer, 0, frame, 0, console);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2894 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2895 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2896 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2897
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2898 DEFUN ("replace-buffer-in-windows", Freplace_buffer_in_windows, 1, 1,
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2899 "bReplace buffer in windows: ", /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2900 Replace BUFFER with some other buffer in all windows showing it.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2901 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2902 (buffer))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2903 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2904 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2905 if (!NILP (buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2906 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2907 buffer = Fget_buffer (buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2908 CHECK_BUFFER (buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2909 /* Ignore dedicated windows. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2910 window_loop (UNSHOW_BUFFER, buffer, 0, Qt, 0, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2911 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2912 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2913 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2914
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2915 /* The smallest acceptable dimensions for a window. Anything smaller
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2916 might crash Emacs. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2917 #define MIN_SAFE_WINDOW_WIDTH (2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2918 #define MIN_SAFE_WINDOW_HEIGHT (2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2919
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2920 /* Make sure that window_min_height and window_min_width are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2921 not too small; if they are, set them to safe minima. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2922
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2923 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2924 check_min_window_sizes (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2925 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2926 /* Smaller values might permit a crash. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2927 if (window_min_width < MIN_SAFE_WINDOW_WIDTH)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2928 window_min_width = MIN_SAFE_WINDOW_WIDTH;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2929 if (window_min_height < MIN_SAFE_WINDOW_HEIGHT)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2930 window_min_height = MIN_SAFE_WINDOW_HEIGHT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2931 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2932
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2933 /* If *ROWS or *COLS are too small a size for FRAME, set them to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2934 minimum allowable size. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2935 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2936 check_frame_size (struct frame *frame, int *rows, int *cols)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2937 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2938 /* For height, we have to see whether the frame has a minibuffer, and
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2939 whether it wants a modeline. */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2940 int min_height =
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2941 (FRAME_MINIBUF_ONLY_P (frame) ? MIN_SAFE_WINDOW_HEIGHT - 1
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2942 : (! FRAME_HAS_MINIBUF_P (frame)) ? MIN_SAFE_WINDOW_HEIGHT
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2943 : 2 * MIN_SAFE_WINDOW_HEIGHT - 1);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2944
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2945 if (*rows < min_height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2946 *rows = min_height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2947 if (*cols < MIN_SAFE_WINDOW_WIDTH)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2948 *cols = MIN_SAFE_WINDOW_WIDTH;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2949 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2950
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2951 /* Normally the window is deleted if it gets too small.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2952 nodelete nonzero means do not do this.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2953 (The caller should check later and do so if appropriate) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2954 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2955 set_window_pixsize (Lisp_Object window, int new_pixsize, int nodelete,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2956 int set_height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2957 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2958 struct window *w = XWINDOW (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2959 struct frame *f = XFRAME (w->frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2960 struct window *c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2961 int old_pixsize = (set_height ? WINDOW_HEIGHT (w) : WINDOW_WIDTH (w));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2962 Lisp_Object child, minor_kid, major_kid;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2963 int minsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2964 int line_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2965 int defheight, defwidth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2966
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2967 /* #### This is very likely incorrect and instead the char_to_pixel_
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2968 functions should be called. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2969 default_face_height_and_width (window, &defheight, &defwidth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2970 line_size = (set_height ? defheight : defwidth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2971
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
2972 check_min_window_sizes ();
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
2973
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2974 minsize = (set_height ? window_min_height : window_min_width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2975 minsize *= line_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2976
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2977 if (!nodelete
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2978 && !TOP_LEVEL_WINDOW_P (w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2979 && new_pixsize < minsize)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2980 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2981 Fdelete_window (window, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2982 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2983 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2984
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2985 SET_LAST_MODIFIED (w, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2986 SET_LAST_FACECHANGE (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2987 MARK_FRAME_WINDOWS_STRUCTURE_CHANGED (f); /* multiple windows affected */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2988 if (set_height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2989 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2990 WINDOW_HEIGHT (w) = new_pixsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2991 major_kid = w->vchild;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2992 minor_kid = w->hchild;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2993 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2994 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2995 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2996 WINDOW_WIDTH (w) = new_pixsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2997 major_kid = w->hchild;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2998 minor_kid = w->vchild;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2999 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3001 if (!NILP (minor_kid))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3002 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3003 for (child = minor_kid; !NILP (child); child = XWINDOW (child)->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3004 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3005 if (set_height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3006 WINDOW_TOP (XWINDOW (child)) = WINDOW_TOP (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3007 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3008 WINDOW_LEFT (XWINDOW (child)) = WINDOW_LEFT (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3009
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3010 set_window_pixsize (child, new_pixsize, nodelete, set_height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3011 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3012 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3013 else if (!NILP (major_kid))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3014 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3015 int last_pos, last_old_pos, pos, old_pos, first;
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
3016 int pixel_adj_left = new_pixsize - old_pixsize;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3017 int div_val = old_pixsize << 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3018
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 203
diff changeset
3019 /*
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 203
diff changeset
3020 * Previously we bailed out here if there was no size change.
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
3021 * (pixel_adj_left == 0) But this broke toolbar updates. If a
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
3022 * toolbar appears or disappears, windows may not change size,
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
3023 * but their top and left coordinates need to be updated.
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 203
diff changeset
3024 *
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
3025 * So we don't bail until after the loop below.
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 203
diff changeset
3026 */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3027
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3028 last_pos = first = (set_height ? WINDOW_TOP (w) : WINDOW_LEFT (w));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3029 last_old_pos = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3030
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3031 for (child = major_kid; !NILP (child); child = c->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3032 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3033 c = XWINDOW (child);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3034
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3035 if (set_height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3036 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3037 old_pos = last_old_pos + WINDOW_HEIGHT (c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3038 WINDOW_TOP (c) = last_pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3039 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3040 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3041 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3042 old_pos = last_old_pos + WINDOW_WIDTH (c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3043 WINDOW_LEFT (c) = last_pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3044 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3045
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3046 pos = (((old_pos * new_pixsize) << 1) + old_pixsize) / div_val;
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3047 /* All but the last window should have a height which is
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3048 a multiple of the default line height. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3049 if (!NILP (c->next))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3050 pos = (pos / line_size) * line_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3051
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3052 /* Avoid confusion: don't delete child if it becomes too small */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3053 set_window_pixsize (child, pos + first - last_pos, 1, set_height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3054
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3055 last_pos = pos + first;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3056 last_old_pos = old_pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3057 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3058
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
3059 /* Sometimes we may get called with our old size. In that case
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
3060 we don't need to do anything else. */
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
3061 if (!pixel_adj_left)
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
3062 return;
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
3063
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3064 /* Now delete any children that became too small. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3065 if (!nodelete)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3066 for (child = major_kid; !NILP (child); child = XWINDOW (child)->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3067 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3068 if (set_height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3069 set_window_pixheight (child, WINDOW_HEIGHT (XWINDOW (child)), 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3070 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3071 set_window_pixwidth (child, WINDOW_WIDTH (XWINDOW (child)), 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3072 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3073 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3074 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3075
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3076 /* Set the height of WINDOW and all its inferiors. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3077 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3078 set_window_pixheight (Lisp_Object window, int new_pixheight, int nodelete)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3079 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3080 set_window_pixsize (window, new_pixheight, nodelete, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3081 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3082
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3083 /* Recursively set width of WINDOW and its inferiors. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3084 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3085 set_window_pixwidth (Lisp_Object window, int new_pixwidth, int nodelete)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3086 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3087 set_window_pixsize (window, new_pixwidth, nodelete, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3088 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3089
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3090
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3091 static int window_select_count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3092
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3093 DEFUN ("set-window-buffer", Fset_window_buffer, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3094 Make WINDOW display BUFFER as its contents.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3095 BUFFER can be a buffer or buffer name.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3096 */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3097 (window, buffer))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3098 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3099 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3100 struct window *w = decode_window (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3102 buffer = Fget_buffer (buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3103 CHECK_BUFFER (buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3104
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3105 if (!BUFFER_LIVE_P (XBUFFER (buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3106 error ("Attempt to display deleted buffer");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3108 tem = w->buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3109 if (NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3110 error ("Window is deleted");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3111
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3112 /* While this seems like a logical thing to do, it causes problems
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3113 because of saved window configurations. It is possible for a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3114 buffer to get restored into a window in which it is already being
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3115 displayed, but start and point are actually at completely
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3116 different locations. So we let this function complete fully and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3117 it will then make sure redisplay correctly updates things.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3118
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3119 #### This is a kludge. The correct approach is not to do this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3120 but to fix set-window-configuration. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3121 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3122 else if (EQ (tem, buffer))
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 110
diff changeset
3123 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3124 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3125 else if (! EQ (tem, Qt)) /* w->buffer is t when the window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3126 is first being set up. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3127 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3128 if (!NILP (w->dedicated) && !EQ (tem, buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3129 error ("Window is dedicated to buffer %s",
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3130 XSTRING_DATA (XBUFFER (tem)->name));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3132 unshow_buffer (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3133 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3135 w->buffer = buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3136 w->window_end_pos[CURRENT_DISP] = 0;
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 257
diff changeset
3137 w->hscroll = 0;
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 257
diff changeset
3138 w->modeline_hscroll = 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3139 Fset_marker (w->pointm[CURRENT_DISP],
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3140 make_int (BUF_PT (XBUFFER (buffer))),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3141 buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3142 set_marker_restricted (w->start[CURRENT_DISP],
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3143 make_int (XBUFFER (buffer)->last_window_start),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3144 buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3145 Fset_marker (w->sb_point, w->start[CURRENT_DISP], buffer);
373
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
3146 /* set start_at_line_beg correctly. GE */
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
3147 w->start_at_line_beg = beginning_of_line_p (XBUFFER (buffer),
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
3148 marker_position (w->start[CURRENT_DISP]));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3149 w->force_start = 0; /* Lucid fix */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3150 SET_LAST_MODIFIED (w, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3151 SET_LAST_FACECHANGE (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3152 MARK_WINDOWS_CHANGED (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3153 recompute_all_cached_specifiers_in_window (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3154 if (EQ (window, Fselected_window (Qnil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3155 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3156 Fset_buffer (buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3157 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3158 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3159 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3160
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
3161 DEFUN ("select-window", Fselect_window, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3162 Select WINDOW. Most editing will apply to WINDOW's buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3163 The main editor command loop selects the buffer of the selected window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3164 before each command.
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
3165
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
3166 With non-nil optional argument `norecord', do not modify the
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
3167 global or per-frame buffer ordering.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3168 */
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
3169 (window, norecord))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3170 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3171 struct window *w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3172 Lisp_Object old_selected_window = Fselected_window (Qnil);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3173
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3174 CHECK_LIVE_WINDOW (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3175 w = XWINDOW (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3176
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3177 /* we have already caught dead-window errors */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3178 if (!NILP (w->hchild) || !NILP (w->vchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3179 error ("Trying to select non-leaf window");
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3180
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3181 w->use_time = make_int (++window_select_count);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3182 if (EQ (window, old_selected_window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3183 return window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3184
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3185 /* deselect the old window, if it exists (it might not exist if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3186 the selected device has no frames, which occurs at startup) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3187 if (!NILP (old_selected_window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3188 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3189 struct window *ow = XWINDOW (old_selected_window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3191 Fset_marker (ow->pointm[CURRENT_DISP],
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3192 make_int (BUF_PT (XBUFFER (ow->buffer))),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3193 ow->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3194
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3195 MARK_WINDOWS_CHANGED (ow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3196 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3197
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3198 /* now select the window's frame */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3199 set_frame_selected_window (XFRAME (WINDOW_FRAME (w)), window);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3200
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3201 select_frame_1 (WINDOW_FRAME (w));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3202
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3203 /* also select the window's buffer */
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
3204 if (NILP (norecord))
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
3205 Frecord_buffer (w->buffer);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3206 Fset_buffer (w->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3208 /* Go to the point recorded in the window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3209 This is important when the buffer is in more
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3210 than one window. It also matters when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3211 redisplay_window has altered point after scrolling,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3212 because it makes the change only in the window. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3213 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3214 Bufpos new_point = marker_position (w->pointm[CURRENT_DISP]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3215 if (new_point < BUF_BEGV (current_buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3216 new_point = BUF_BEGV (current_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3217 else if (new_point > BUF_ZV (current_buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3218 new_point = BUF_ZV (current_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3219
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3220 BUF_SET_PT (current_buffer, new_point);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3221 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3222
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3223 MARK_WINDOWS_CHANGED (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3224
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3225 return window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3226 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3227
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3228 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3229 display_buffer (Lisp_Object buffer, Lisp_Object not_this_window_p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3230 Lisp_Object override_frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3231 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3232 return call3 (Qdisplay_buffer, buffer, not_this_window_p, override_frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3233 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3234
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3235 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3236 temp_output_buffer_show (Lisp_Object buf, Lisp_Object same_frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3237 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3238 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3239 Lisp_Object window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3240 struct window *w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3241 struct buffer *b = XBUFFER (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3242
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3243 BUF_SAVE_MODIFF (XBUFFER (buf)) = BUF_MODIFF (b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3244 widen_buffer (b, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3245 BUF_SET_PT (b, BUF_BEG (b));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3246
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
3247 if (!NILP (Vtemp_buffer_show_function))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3248 call1 (Vtemp_buffer_show_function, buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3249 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3250 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3251 window = display_buffer (buf, Qnil, same_frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3253 if (!EQ (XWINDOW (window)->frame, Fselected_frame (Qnil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3254 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (window)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3255
274
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3256 Vminibuffer_scroll_window = window;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3257 w = XWINDOW (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3258 w->hscroll = 0;
257
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
3259 w->modeline_hscroll = 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3260 set_marker_restricted (w->start[CURRENT_DISP], make_int (1), buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3261 set_marker_restricted (w->pointm[CURRENT_DISP], make_int (1), buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3262 set_marker_restricted (w->sb_point, make_int (1), buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3263
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3264 /* Run temp-buffer-show-hook, with the chosen window selected. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3265 if (!preparing_for_armageddon)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3266 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3267 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3268 tem = Fboundp (Qtemp_buffer_show_hook);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3269 if (!NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3270 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3271 tem = Fsymbol_value (Qtemp_buffer_show_hook);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3272 if (!NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3273 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3274 int count = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3275
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3276 /* Select the window that was chosen, for running
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3277 the hook. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3278 record_unwind_protect (save_window_excursion_unwind,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3279 Fcurrent_window_configuration (Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3280
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
3281 Fselect_window (window, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3282 run_hook (Qtemp_buffer_show_hook);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3283 unbind_to (count, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3284 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3285 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3286 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3287 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3288 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3289
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3290 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3291 make_dummy_parent (Lisp_Object window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3292 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
3293 Lisp_Object new;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3294 struct window *o = XWINDOW (window);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
3295 struct window *p = alloc_lcrecord_type (struct window, &lrecord_window);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3296
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3297 XSETWINDOW (new, p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3298 copy_lcrecord (p, o);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3299
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3300 /* Don't copy the pointers to the line start cache or the face
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3301 instances. */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3302 p->line_start_cache = Dynarr_new (line_start_cache);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3303 p->face_cachels = Dynarr_new (face_cachel);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3304 p->glyph_cachels = Dynarr_new (glyph_cachel);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3305
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3306 /* Put new into window structure in place of window */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3307 replace_window (window, new);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3308
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3309 o->next = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3310 o->prev = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3311 o->vchild = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3312 o->hchild = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3313 o->parent = new;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3314
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3315 p->start[CURRENT_DISP] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3316 p->start[DESIRED_DISP] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3317 p->start[CMOTION_DISP] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3318 p->pointm[CURRENT_DISP] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3319 p->pointm[DESIRED_DISP] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3320 p->pointm[CMOTION_DISP] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3321 p->sb_point = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3322 p->buffer = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3323 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3324
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3325 DEFUN ("split-window", Fsplit_window, 0, 3, "", /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3326 Split WINDOW, putting SIZE lines in the first of the pair.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3327 WINDOW defaults to selected one and SIZE to half its size.
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
3328 If optional third arg HOR-FLAG is non-nil, split side by side
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3329 and put SIZE columns in the first of the pair.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3330 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3331 (window, chsize, horflag))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3332 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3333 Lisp_Object new;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3334 struct window *o, *p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3335 struct frame *f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3336 int size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3337 int psize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3338
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3339 if (NILP (window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3340 window = Fselected_window (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3341 else
414
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
3342 CHECK_LIVE_WINDOW (window);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3343
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3344 o = XWINDOW (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3345 f = XFRAME (WINDOW_FRAME (o));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3346
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3347 if (NILP (chsize))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3348 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3349 if (!NILP (horflag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3350 /* In the new scheme, we are symmetric with respect to separators
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3351 so there is no need to do weird things here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3352 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3353 psize = WINDOW_WIDTH (o) >> 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3354 size = window_pixel_width_to_char_width (o, psize, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3355 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3356 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3357 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3358 psize = WINDOW_HEIGHT (o) >> 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3359 size = window_pixel_height_to_char_height (o, psize, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3360 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3361 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3362 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3363 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3364 CHECK_INT (chsize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3365 size = XINT (chsize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3366 if (!NILP (horflag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3367 psize = window_char_width_to_pixel_width (o, size, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3368 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3369 psize = window_char_height_to_pixel_height (o, size, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3370 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3371
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3372 if (MINI_WINDOW_P (o))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3373 error ("Attempt to split minibuffer window");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3374 else if (FRAME_NO_SPLIT_P (XFRAME (WINDOW_FRAME (o))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3375 error ("Attempt to split unsplittable frame");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3376
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3377 check_min_window_sizes ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3378
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3379 if (NILP (horflag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3380 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3381 if (size < window_min_height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3382 error ("Window height %d too small (after splitting)", size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3383 if (size + window_min_height > window_char_height (o, 1))
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3384 error ("Window height %d too small (after splitting)",
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3385 window_char_height (o, 1) - size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3386 if (NILP (o->parent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3387 || NILP (XWINDOW (o->parent)->vchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3388 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3389 make_dummy_parent (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3390 reset_face_cachels (XWINDOW (window));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3391 new = o->parent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3392 XWINDOW (new)->vchild = window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3393 XFRAME (o->frame)->mirror_dirty = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3394 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3395 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3396 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3397 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3398 if (size < window_min_width)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3399 error ("Window width %d too small (after splitting)", size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3400 if (size + window_min_width > window_char_width (o, 0))
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3401 error ("Window width %d too small (after splitting)",
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3402 window_char_width (o, 0) - size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3403 if (NILP (o->parent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3404 || NILP (XWINDOW (o->parent)->hchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3405 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3406 make_dummy_parent (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3407 reset_face_cachels (XWINDOW (window));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3408 new = o->parent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3409 XWINDOW (new)->hchild = window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3410 XFRAME (o->frame)->mirror_dirty = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3411 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3412 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3413
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3414 /* Now we know that window's parent is a vertical combination
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3415 if we are dividing vertically, or a horizontal combination
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3416 if we are making side-by-side windows */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3417
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3418 MARK_FRAME_WINDOWS_STRUCTURE_CHANGED (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3419 new = allocate_window ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3420 p = XWINDOW (new);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3421
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3422 p->frame = o->frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3423 p->next = o->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3424 if (!NILP (p->next))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3425 XWINDOW (p->next)->prev = new;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3426 p->prev = window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3427 o->next = new;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3428 p->parent = o->parent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3429 p->buffer = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3430
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3431 reset_face_cachels (p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3432 reset_glyph_cachels (p);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3433
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3434
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3435 /* Apportion the available frame space among the two new windows */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3436
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3437 if (!NILP (horflag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3438 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3439 WINDOW_HEIGHT (p) = WINDOW_HEIGHT (o);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3440 WINDOW_TOP (p) = WINDOW_TOP (o);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3441 WINDOW_WIDTH (p) = WINDOW_WIDTH (o) - psize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3442 WINDOW_WIDTH (o) = psize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3443 WINDOW_LEFT (p) = WINDOW_LEFT (o) + psize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3444 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3445 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3446 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3447 WINDOW_LEFT (p) = WINDOW_LEFT (o);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3448 WINDOW_WIDTH (p) = WINDOW_WIDTH (o);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3449 WINDOW_HEIGHT (p) = WINDOW_HEIGHT (o) - psize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3450 WINDOW_HEIGHT (o) = psize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3451 WINDOW_TOP (p) = WINDOW_TOP (o) + psize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3452 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3453
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3454 XFRAME (p->frame)->mirror_dirty = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3455 /* do this last (after the window is completely initialized and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3456 the mirror-dirty flag is set) so that specifier recomputation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3457 caused as a result of this will work properly and not abort. */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3458 Fset_window_buffer (new, o->buffer);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3459 return new;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3460 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3461
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3462
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3463 DEFUN ("enlarge-window", Fenlarge_window, 1, 3, "_p", /*
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
3464 Make the selected window N lines bigger.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
3465 From program, optional second arg SIDE non-nil means grow sideways N columns,
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
3466 and optional third arg WINDOW specifies the window to change instead of the
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3467 selected window.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3468 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3469 (n, side, window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3470 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3471 struct window *w = decode_window (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3472 CHECK_INT (n);
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3473 change_window_height (w, XINT (n), !NILP (side), /* inpixels */ 0);
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3474 return Qnil;
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3475 }
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3476
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3477 DEFUN ("enlarge-window-pixels", Fenlarge_window_pixels, 1, 3, "_p", /*
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
3478 Make the selected window N pixels bigger.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
3479 From program, optional second arg SIDE non-nil means grow sideways N pixels,
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
3480 and optional third arg WINDOW specifies the window to change instead of the
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3481 selected window.
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3482 */
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3483 (n, side, window))
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3484 {
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3485 struct window *w = decode_window (window);
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3486 CHECK_INT (n);
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3487 change_window_height (w, XINT (n), !NILP (side), /* inpixels */ 1);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3488 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3489 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3490
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3491 DEFUN ("shrink-window", Fshrink_window, 1, 3, "_p", /*
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
3492 Make the selected window N lines smaller.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
3493 From program, optional second arg SIDE non-nil means shrink sideways N columns,
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
3494 and optional third arg WINDOW specifies the window to change instead of the
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3495 selected window.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3496 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3497 (n, side, window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3498 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3499 CHECK_INT (n);
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3500 change_window_height (decode_window (window), -XINT (n), !NILP (side),
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3501 /* inpixels */ 0);
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3502 return Qnil;
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3503 }
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3504
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3505 DEFUN ("shrink-window-pixels", Fshrink_window_pixels, 1, 3, "_p", /*
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
3506 Make the selected window N pixels smaller.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
3507 From program, optional second arg SIDE non-nil means shrink sideways N pixels,
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
3508 and optional third arg WINDOW specifies the window to change instead of the
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3509 selected window.
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3510 */
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3511 (n, side, window))
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3512 {
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3513 CHECK_INT (n);
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3514 change_window_height (decode_window (window), -XINT (n), !NILP (side),
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3515 /* inpixels */ 1);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3516 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3517 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3518
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3519 static int
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3520 window_pixel_height (Lisp_Object window)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3521 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3522 return WINDOW_HEIGHT (XWINDOW (window));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3523 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3524
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3525 static int
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3526 window_pixel_height_to_char_height (struct window *w, int pixel_height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3527 int include_gutters_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3528 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3529 int avail_height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3530 int defheight, defwidth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3531 int char_height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3532 Lisp_Object window;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3533
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3534 XSETWINDOW (window, w);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3535
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3536 avail_height = (pixel_height -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3537 (include_gutters_p ? 0 :
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3538 window_top_gutter_height (w) +
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3539 window_bottom_gutter_height (w)));
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3540
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3541 default_face_height_and_width (window, &defheight, &defwidth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3542
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3543 char_height = avail_height / defheight;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3544
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3545 /* It's the calling function's responsibility to check these values
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3546 and make sure they're not out of range.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3547
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3548 #### We need to go through the calling functions and actually
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3549 do this. */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
3550 return max (0, char_height);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3551 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3552
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3553 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3554 window_char_height_to_pixel_height (struct window *w, int char_height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3555 int include_gutters_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3556 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3557 int avail_height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3558 int defheight, defwidth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3559 int pixel_height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3560
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3561 Lisp_Object window;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3562
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3563 XSETWINDOW (window, w);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3564
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3565 default_face_height_and_width (window, &defheight, &defwidth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3566
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3567 avail_height = char_height * defheight;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3568 pixel_height = (avail_height +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3569 (include_gutters_p ? 0 :
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3570 window_top_gutter_height (w) +
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3571 window_bottom_gutter_height (w)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3572
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3573 /* It's the calling function's responsibility to check these values
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3574 and make sure they're not out of range.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3575
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3576 #### We need to go through the calling functions and actually
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3577 do this. */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
3578 return max (0, pixel_height);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3579 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3580
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3581 /* Return number of default lines of text can fit in the window W.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3582 If INCLUDE_GUTTERS_P is 1, include "gutter" space (modeline plus
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3583 horizontal scrollbar) in the space that is used for the calculation.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3584 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3585 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3586 window_char_height (struct window *w, int include_gutters_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3587 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3588 return window_pixel_height_to_char_height (w, WINDOW_HEIGHT (w),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3589 include_gutters_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3590 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3591
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3592 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3593 * Return number of lines currently displayed in window w. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3594 * end-of-buffer is displayed then the area below end-of-buffer is assume
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3595 * to be blank lines of default height.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3596 * Does not include the modeline.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3597 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3598 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3599 window_displayed_height (struct window *w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3600 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3601 struct buffer *b = XBUFFER (w->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3602 display_line_dynarr *dla = window_display_lines (w, CURRENT_DISP);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3603 int num_lines;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3604 Charcount end_pos = (BUF_Z (b) - w->window_end_pos[CURRENT_DISP] > BUF_ZV (b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3605 ? -1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3606 : w->window_end_pos[CURRENT_DISP]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3607
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3608 if (!Dynarr_length (dla))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3609 return window_char_height (w, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3610
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3611 num_lines = Dynarr_length (dla);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3612
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3613 /* #### Document and assert somewhere that w->window_end_pos == -1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3614 indicates that end-of-buffer is being displayed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3615 if (end_pos == -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3616 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3617 struct display_line *dl = Dynarr_atp (dla, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3618 int ypos1 = dl->ypos + dl->descent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3619 int ypos2 = WINDOW_TEXT_BOTTOM (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3620 Lisp_Object window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3621 int defheight, defwidth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3622
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3623 XSETWINDOW (window, w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3624
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3625 if (dl->modeline)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3626 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3627 num_lines--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3628
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3629 if (Dynarr_length (dla) == 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3630 ypos1 = WINDOW_TEXT_TOP (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3631 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3632 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3633 dl = Dynarr_atp (dla, Dynarr_length (dla) - 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3634 /* If this line is clipped then we know that there is no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3635 blank room between eob and the modeline. If we are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3636 scrolling on clipped lines just know off the clipped
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3637 line and return .*/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3638 if (scroll_on_clipped_lines && dl->clip)
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 110
diff changeset
3639 return num_lines - 1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3640 ypos1 = dl->ypos + dl->descent - dl->clip;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3641 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3642 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3643
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3644 default_face_height_and_width (window, &defheight, &defwidth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3645 /* #### This probably needs to know about the clipping area once a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3646 final definition is decided on. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3647 num_lines += ((ypos2 - ypos1) / defheight);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3648 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3649 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3650 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3651 if (num_lines > 1 && Dynarr_atp (dla, 0)->modeline)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3652 num_lines--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3653
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3654 if (scroll_on_clipped_lines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3655 && Dynarr_atp (dla, Dynarr_length (dla) - 1)->clip)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3656 num_lines--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3657 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3658
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3659 return num_lines;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3660 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3661
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3662 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3663 window_pixel_width (Lisp_Object window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3664 {
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 110
diff changeset
3665 return WINDOW_WIDTH (XWINDOW (window));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3666 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3667
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3668 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3669 window_pixel_width_to_char_width (struct window *w, int pixel_width,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3670 int include_margins_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3671 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3672 int avail_width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3673 int char_width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3674 int defheight, defwidth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3675 Lisp_Object window;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3676
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3677 XSETWINDOW (window, w);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3678
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3679 avail_width = (pixel_width -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3680 window_left_gutter_width (w, 0) -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3681 window_right_gutter_width (w, 0) -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3682 (include_margins_p ? 0 : window_left_margin_width (w)) -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3683 (include_margins_p ? 0 : window_right_margin_width (w)));
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3684
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3685 default_face_height_and_width (window, &defheight, &defwidth);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3686
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3687 char_width = (avail_width / defwidth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3688
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3689 /* It's the calling function's responsibility to check these values
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3690 and make sure they're not out of range.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3691
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3692 #### We need to go through the calling functions and actually
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3693 do this. */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
3694 return max (0, char_width);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3695 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3696
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3697 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3698 window_char_width_to_pixel_width (struct window *w, int char_width,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3699 int include_margins_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3700 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3701 int avail_width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3702 int pixel_width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3703 int defheight, defwidth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3704 Lisp_Object window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3705
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3706 XSETWINDOW (window, w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3707
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3708 default_face_height_and_width (window, &defheight, &defwidth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3709
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3710 avail_width = char_width * defwidth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3711 pixel_width = (avail_width +
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3712 window_left_gutter_width (w, 0) +
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3713 window_right_gutter_width (w, 0) +
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3714 (include_margins_p ? 0 : window_left_margin_width (w)) +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3715 (include_margins_p ? 0 : window_right_margin_width (w)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3716
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3717 /* It's the calling function's responsibility to check these values
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3718 and make sure they're not out of range.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3719
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3720 #### We need to go through the calling functions and actually
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3721 do this. */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
3722 return max (0, pixel_width);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3723 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3724
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3725 /* This returns the usable space which doesn't include space needed by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3726 scrollbars or divider lines. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3727 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3728 window_char_width (struct window *w, int include_margins_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3729 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3730 return window_pixel_width_to_char_width (w, WINDOW_WIDTH (w),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3731 include_margins_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3732 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3733
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3734 #define MINSIZE(w) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3735 (widthflag \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3736 ? window_min_width * defwidth \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3737 : (defheight * (MINI_WINDOW_P (XWINDOW (w)) ? 1 : window_min_height)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3738
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3739 #define CURBEG(w) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3740 *(widthflag ? (int *) &WINDOW_LEFT (w) : (int *) &WINDOW_TOP (w))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3741
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3742 #define CURSIZE(w) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3743 *(widthflag ? (int *) &WINDOW_WIDTH (w) : (int *) &WINDOW_HEIGHT (w))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3744
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3745 #define CURCHARSIZE(w) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3746 (widthflag ? window_char_width (w, 0) : window_char_height (w, 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3747
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3748 #define MINCHARSIZE(window) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3749 (widthflag ? window_min_width : MINI_WINDOW_P (XWINDOW (window)) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3750 ? 1 : window_min_height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3751
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3752 /* Unlike set_window_pixheight, this function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3753 also changes the heights of the siblings so as to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3754 keep everything consistent. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3755
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3756 static void
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3757 change_window_height (struct window *win, int delta, int widthflag,
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3758 int inpixels)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3759 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3760 Lisp_Object parent;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
3761 Lisp_Object window;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3762 struct window *w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3763 struct frame *f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3764 int *sizep;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3765 int (*sizefun) (Lisp_Object) = (widthflag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3766 ? window_pixel_width
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3767 : window_pixel_height);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3768 void (*setsizefun) (Lisp_Object, int, int) = (widthflag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3769 ? set_window_pixwidth
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3770 : set_window_pixheight);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3771 int dim;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3772 int defheight, defwidth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3773
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3774 if (delta == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3775 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3776
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3777 check_min_window_sizes ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3778
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3779 XSETWINDOW (window, win);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3780 f = XFRAME (win->frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3781 if (EQ (window, FRAME_ROOT_WINDOW (f)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3782 error ("Won't change only window");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3783
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3784 /* #### This is very likely incorrect and instead the char_to_pixel_
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3785 functions should be called. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3786 default_face_height_and_width (window, &defheight, &defwidth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3787
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3788 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3789 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3790 w = XWINDOW (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3791 parent = w->parent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3792 if (NILP (parent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3793 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3794 if (widthflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3795 error ("No other window to side of this one");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3796 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3797 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3798 if (widthflag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3799 ? !NILP (XWINDOW (parent)->hchild)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3800 : !NILP (XWINDOW (parent)->vchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3801 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3802 window = parent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3803 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3804
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3805 sizep = &CURSIZE (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3806 dim = CURCHARSIZE (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3807
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3808 if ((inpixels && (*sizep + delta) < MINSIZE (window)) ||
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3809 (!inpixels && (dim + delta) < MINCHARSIZE (window)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3810 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3811 if (MINI_WINDOW_P (XWINDOW (window)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3812 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3813 else if (!NILP (parent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3814 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3815 Fdelete_window (window, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3816 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3817 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3818 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3819
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3820 if (!inpixels)
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
3821 delta *= (widthflag ? defwidth : defheight);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3822
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3823 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3824 int maxdelta;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3825
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3826 maxdelta = ((!NILP (parent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3827 ? (*sizefun) (parent) - *sizep
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3828 : ((!NILP (w->next))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3829 ? (*sizefun) (w->next) - MINSIZE (w->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3830 : ((!NILP (w->prev))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3831 ? (*sizefun) (w->prev) - MINSIZE (w->prev)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
3832 /* This is a frame with only one window,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3833 a minibuffer-only or a minibufferless frame. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3834 : (delta = 0))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3835
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3836 if (delta > maxdelta)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3837 /* This case traps trying to make the minibuffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3838 the full frame, or make the only window aside from the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3839 minibuffer the full frame. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3840 delta = maxdelta;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3841
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3842 if (delta == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3843 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3844
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3845 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3846 /* #### Chuck: is this correct? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3847 if (*sizep + delta < MINSIZE (window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3848 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3849 Fdelete_window (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3850 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3851 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3852 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3853 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3854
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3855 if (!NILP (w->next) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3856 (*sizefun) (w->next) - delta >= (int) MINSIZE (w->next))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3857 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3858 CURBEG (XWINDOW (w->next)) += delta;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3859 (*setsizefun) (w->next, (*sizefun) (w->next) - delta, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3860 (*setsizefun) (window, *sizep + delta, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3861 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3862 else if (!NILP (w->prev) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3863 (*sizefun) (w->prev) - delta >= (int) MINSIZE (w->prev))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3864 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3865 (*setsizefun) (w->prev, (*sizefun) (w->prev) - delta, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3866 CURBEG (w) -= delta;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3867 (*setsizefun) (window, *sizep + delta, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3868 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3869 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3870 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3871 int delta1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3872 int opht = (*sizefun) (parent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3873
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3874 /* If trying to grow this window to or beyond size of the parent,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3875 make delta1 so big that, on shrinking back down,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3876 all the siblings end up with less than one line and are deleted. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3877 if (opht <= *sizep + delta)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3878 delta1 = opht * opht * 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3879 /* Otherwise, make delta1 just right so that if we add delta1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3880 lines to this window and to the parent, and then shrink
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3881 the parent back to its original size, the new proportional
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3882 size of this window will increase by delta. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3883 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3884 delta1 = (delta * opht * 100) / ((opht - *sizep - delta) * 100);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3885
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3886 /* Add delta1 lines or columns to this window, and to the parent,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3887 keeping things consistent while not affecting siblings. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3888 CURSIZE (XWINDOW (parent)) = opht + delta1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3889 (*setsizefun) (window, *sizep + delta1, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3890
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3891 /* Squeeze out delta1 lines or columns from our parent,
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
3892 shrinking this window and siblings proportionately.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3893 This brings parent back to correct size.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3894 Delta1 was calculated so this makes this window the desired size,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3895 taking it all out of the siblings. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3896 (*setsizefun) (parent, opht, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3897 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3898
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3899 SET_LAST_MODIFIED (w, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3900 SET_LAST_FACECHANGE (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3901 MARK_FRAME_WINDOWS_STRUCTURE_CHANGED (f);
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
3902 /* overkill maybe, but better to be correct */
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
3903 MARK_FRAME_GUTTERS_CHANGED (f);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3904 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3905 #undef MINSIZE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3906 #undef CURBEG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3907 #undef CURSIZE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3908 #undef CURCHARSIZE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3909 #undef MINCHARSIZE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3910
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3911
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3912
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3913 /* Scroll contents of window WINDOW up N lines. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3914 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3915 window_scroll (Lisp_Object window, Lisp_Object n, int direction,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3916 Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3917 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3918 struct window *w = XWINDOW (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3919 struct buffer *b = XBUFFER (w->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3920 int selected = EQ (window, Fselected_window (Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3921 int value = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3922 Lisp_Object point, tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3923
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3924 if (selected)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3925 point = make_int (BUF_PT (b));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3926 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3927 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3928 Bufpos pos = marker_position (w->pointm[CURRENT_DISP]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3929
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3930 if (pos < BUF_BEGV (b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3931 pos = BUF_BEGV (b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3932 else if (pos > BUF_ZV (b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3933 pos = BUF_ZV (b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3934
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3935 point = make_int (pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3936 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3937
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3938 /* Always set force_start so that redisplay_window will run
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
3939 the window-scroll-functions. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3940 w->force_start = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3941
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3942 /* #### When the fuck does this happen? I'm so glad that history has
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3943 completely documented the behavior of the scrolling functions under
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3944 all circumstances. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3945 tem = Fpos_visible_in_window_p (point, window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3946 if (NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3947 {
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
3948 Fvertical_motion (make_int (-window_char_height (w, 0) / 2),
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
3949 window, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3950 Fset_marker (w->start[CURRENT_DISP], point, w->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3951 w->start_at_line_beg = beginning_of_line_p (b, XINT (point));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3952 MARK_WINDOWS_CHANGED (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3953 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3954
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3955 if (!NILP (n))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3956 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3957 if (EQ (n, Qminus))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3958 direction *= -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3959 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3960 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3961 n = Fprefix_numeric_value (n);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3962 value = XINT (n) * direction;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3963
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3964 if (!value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3965 return; /* someone just made a pointless call */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3966 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3967 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3968
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3969 /* If the user didn't specify how far to scroll then we have to figure it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3970 out by ourselves. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3971 if (NILP (n) || EQ (n, Qminus))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3972 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3973 /* Going forwards is easy. If that is what we are doing then just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3974 set value and the section which handles the user specifying a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3975 positive value will work. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3976 if (direction == 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3977 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3978 value = window_displayed_height (w) - next_screen_context_lines;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3979 value = (value < 1 ? 1 : value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3980 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3981
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3982 /* Going backwards is hard. We can't use the same loop used if the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3983 user specified a negative value because we care about
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3984 next_screen_context_lines. In a variable height world you don't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3985 know how many lines above you can actually be displayed and still
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3986 have the context lines appear. So we leave value set to 0 and add
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3987 a separate section to deal with this. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3988
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3989 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3990
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3991 if (direction == 1 && !value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3992 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3993 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3994 }
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3995 else if (value > 0)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3996 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3997 int vtarget;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3998 Bufpos startp, old_start;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3999
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4000 old_start = marker_position (w->start[CURRENT_DISP]);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4001 startp = vmotion (w, old_start, value, &vtarget);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4002
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4003 if (vtarget < value &&
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4004 (w->window_end_pos[CURRENT_DISP] == -1
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4005 || (BUF_Z (b) - w->window_end_pos[CURRENT_DISP] > BUF_ZV (b))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4006 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4007 maybe_signal_error (Qend_of_buffer, Qnil, Qwindow, errb);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4008 return;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4009 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4010 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4011 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4012 set_marker_restricted (w->start[CURRENT_DISP], make_int (startp),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4013 w->buffer);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4014 w->force_start = 1;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4015 w->start_at_line_beg = beginning_of_line_p (b, startp);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4016 MARK_WINDOWS_CHANGED (w);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4017
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4018 if (!point_would_be_visible (w, startp, XINT (point)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4019 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4020 if (selected)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4021 BUF_SET_PT (b, startp);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4022 else
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4023 set_marker_restricted (w->pointm[CURRENT_DISP],
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4024 make_int (startp),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4025 w->buffer);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4026 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4027 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4028 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4029 else if (value < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4030 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4031 int vtarget;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4032 Bufpos startp, old_start;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4033
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4034 old_start = marker_position (w->start[CURRENT_DISP]);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4035 startp = vmotion (w, old_start, value, &vtarget);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4036
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4037 if (vtarget > value
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4038 && marker_position (w->start[CURRENT_DISP]) == BUF_BEGV (b))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4039 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4040 maybe_signal_error (Qbeginning_of_buffer, Qnil, Qwindow, errb);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4041 return;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4042 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4043 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4044 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4045 set_marker_restricted (w->start[CURRENT_DISP], make_int (startp),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4046 w->buffer);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4047 w->force_start = 1;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4048 w->start_at_line_beg = beginning_of_line_p (b, startp);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4049 MARK_WINDOWS_CHANGED (w);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4050
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4051 if (!point_would_be_visible (w, startp, XINT (point)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4052 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4053 Bufpos new_point;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4054
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4055 if (MINI_WINDOW_P (w))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4056 new_point = startp;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4057 else
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4058 new_point = start_of_last_line (w, startp);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4059
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4060 if (selected)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4061 BUF_SET_PT (b, new_point);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4062 else
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4063 set_marker_restricted (w->pointm[CURRENT_DISP],
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4064 make_int (new_point),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4065 w->buffer);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4066 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4067 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4068 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4069 else /* value == 0 && direction == -1 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4070 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4071 if (marker_position (w->start[CURRENT_DISP]) == BUF_BEGV (b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4072 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4073 maybe_signal_error (Qbeginning_of_buffer, Qnil, Qwindow, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4074 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4075 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4076 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4077 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4078 int vtarget;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4079 int movement = next_screen_context_lines - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4080 Bufpos old_startp = marker_position (w->start[CURRENT_DISP]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4081 Bufpos bottom = vmotion (w, old_startp, movement, &vtarget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4082 Bufpos startp =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4083 start_with_point_on_display_line (w, bottom,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4084 -1 - (movement - vtarget));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4085
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4086 if (startp >= old_startp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4087 startp = vmotion (w, old_startp, -1, NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4088
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4089 set_marker_restricted (w->start[CURRENT_DISP], make_int (startp),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4090 w->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4091 w->force_start = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4092 w->start_at_line_beg = beginning_of_line_p (b, startp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4093 MARK_WINDOWS_CHANGED (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4094
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4095 if (!point_would_be_visible (w, startp, XINT (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4096 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4097 Bufpos new_point = start_of_last_line (w, startp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4098
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4099 if (selected)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4100 BUF_SET_PT (b, new_point);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4101 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4102 set_marker_restricted (w->pointm[CURRENT_DISP],
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4103 make_int (new_point),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4104 w->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4105 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4106 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4107 }
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4108
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4109 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4110
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4111 DEFUN ("scroll-up", Fscroll_up, 0, 1, "_P", /*
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
4112 Scroll text of current window upward N lines; or near full screen if no arg.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4113 A near full screen is `next-screen-context-lines' less than a full screen.
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
4114 Negative N means scroll downward.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
4115 When calling from a program, supply an integer as argument or nil.
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
4116 On attempt to scroll past end of buffer, `end-of-buffer' is signaled.
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
4117 On attempt to scroll past beginning of buffer, `beginning-of-buffer' is
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
4118 signaled.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4119 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4120 (n))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4121 {
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
4122 window_scroll (Fselected_window (Qnil), n, 1, ERROR_ME);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4123 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4124 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4125
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4126 DEFUN ("scroll-down", Fscroll_down, 0, 1, "_P", /*
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
4127 Scroll text of current window downward N lines; or near full screen if no arg.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4128 A near full screen is `next-screen-context-lines' less than a full screen.
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
4129 Negative N means scroll upward.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4130 When calling from a program, supply a number as argument or nil.
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
4131 On attempt to scroll past end of buffer, `end-of-buffer' is signaled.
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
4132 On attempt to scroll past beginning of buffer, `beginning-of-buffer' is
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
4133 signaled.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4134 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4135 (n))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4136 {
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
4137 window_scroll (Fselected_window (Qnil), n, -1, ERROR_ME);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4138 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4139 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4140
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4141 DEFUN ("other-window-for-scrolling", Fother_window_for_scrolling, 0, 0, 0, /*
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
4142 Return the other window for "other window scroll" commands.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4143 If in the minibuffer, `minibuffer-scroll-window' if non-nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4144 specifies the window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4145 If `other-window-scroll-buffer' is non-nil, a window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4146 showing that buffer is used.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4147 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4148 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4149 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4150 Lisp_Object window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4151 Lisp_Object selected_window = Fselected_window (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4152
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4153 if (MINI_WINDOW_P (XWINDOW (selected_window))
274
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
4154 && !NILP (Vminibuffer_scroll_window))
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
4155 window = Vminibuffer_scroll_window;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4156 /* If buffer is specified, scroll that buffer. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4157 else if (!NILP (Vother_window_scroll_buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4158 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4159 window = Fget_buffer_window (Vother_window_scroll_buffer, Qnil, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4160 if (NILP (window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4161 window = display_buffer (Vother_window_scroll_buffer, Qt, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4162 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4163 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4164 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4165 /* Nothing specified; look for a neighboring window on the same
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4166 frame. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4167 window = Fnext_window (selected_window, Qnil, Qnil, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4168
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4169 if (EQ (window, selected_window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4170 /* That didn't get us anywhere; look for a window on another
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4171 visible frame. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4172 do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4173 window = Fnext_window (window, Qnil, Qt, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4174 while (! FRAME_VISIBLE_P (XFRAME (WINDOW_FRAME (XWINDOW (window))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4175 && ! EQ (window, selected_window));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4176 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4177
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4178 CHECK_LIVE_WINDOW (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4179
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4180 if (EQ (window, selected_window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4181 error ("There is no other window");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4182
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4183 return window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4184 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4185
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4186 DEFUN ("scroll-other-window", Fscroll_other_window, 0, 1, "_P", /*
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
4187 Scroll next window upward N lines; or near full frame if no arg.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4188 The next window is the one below the current one; or the one at the top
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
4189 if the current one is at the bottom. Negative N means scroll downward.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4190 When calling from a program, supply a number as argument or nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4191
274
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
4192 If in the minibuffer, `minibuffer-scroll-window' if non-nil
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4193 specifies the window to scroll.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4194 If `other-window-scroll-buffer' is non-nil, scroll the window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4195 showing that buffer, popping the buffer up if necessary.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4196 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4197 (n))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4198 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4199 window_scroll (Fother_window_for_scrolling (), n, 1, ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4200 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4201 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4202
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4203 DEFUN ("scroll-left", Fscroll_left, 0, 1, "_P", /*
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
4204 Scroll selected window display N columns left.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
4205 Default for N is window width minus 2.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4206 */
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
4207 (n))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4208 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4209 Lisp_Object window = Fselected_window (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4210 struct window *w = XWINDOW (window);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
4211 int count = (NILP (n) ?
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
4212 window_char_width (w, 0) - 2 :
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
4213 XINT (Fprefix_numeric_value (n)));
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
4214
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
4215 return Fset_window_hscroll (window, make_int (w->hscroll + count));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4216 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4217
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4218 DEFUN ("scroll-right", Fscroll_right, 0, 1, "_P", /*
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
4219 Scroll selected window display N columns right.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
4220 Default for N is window width minus 2.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4221 */
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
4222 (n))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4223 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4224 Lisp_Object window = Fselected_window (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4225 struct window *w = XWINDOW (window);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
4226 int count = (NILP (n) ?
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
4227 window_char_width (w, 0) - 2 :
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
4228 XINT (Fprefix_numeric_value (n)));
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
4229
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
4230 return Fset_window_hscroll (window, make_int (w->hscroll - count));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4231 }
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
4232
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
4233 DEFUN ("center-to-window-line", Fcenter_to_window_line, 0, 2, "_P", /*
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
4234 Center point in WINDOW. With N, put point on line N.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4235 The desired position of point is always relative to the window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4236 If WINDOW is nil, the selected window is used.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4237 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4238 (n, window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4239 {
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
4240 struct window *w = decode_window (window);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
4241 struct buffer *b = XBUFFER (w->buffer);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
4242 Bufpos opoint = BUF_PT (b);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4243 Bufpos startp;
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
4244
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
4245 if (NILP (n))
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
4246 startp = start_with_line_at_pixpos (w, opoint, window_half_pixpos (w));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4247 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4248 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4249 n = Fprefix_numeric_value (n);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4250 CHECK_INT (n);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4251 startp = start_with_point_on_display_line (w, opoint, XINT (n));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4252 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4253
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4254 Fset_marker (w->start[CURRENT_DISP], make_int (startp), w->buffer);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
4255
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4256 w->start_at_line_beg = beginning_of_line_p (b, startp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4257 w->force_start = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4258 MARK_WINDOWS_CHANGED (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4259 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4260 }
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
4261
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4262 DEFUN ("move-to-window-line", Fmove_to_window_line, 1, 2, "_P", /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4263 Position point relative to WINDOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4264 With no argument, position text at center of window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4265 An argument specifies window line; zero means top of window,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4266 negative means relative to bottom of window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4267 If WINDOW is nil, the selected window is used.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4268 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4269 (arg, window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4270 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4271 struct window *w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4272 struct buffer *b;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4273 int height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4274 Bufpos start, new_point;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4275 int selected;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4276
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
4277 /* Don't use decode_window() because we need the new value of
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
4278 WINDOW. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4279 if (NILP (window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4280 window = Fselected_window (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4281 else
414
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
4282 CHECK_LIVE_WINDOW (window);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4283 w = XWINDOW (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4284 b = XBUFFER (w->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4285
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4286 height = window_displayed_height (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4287 selected = EQ (window, Fselected_window (w->frame));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4288
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4289 if (NILP (arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4290 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4291 int retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4292
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4293 if (XINT (w->last_modified[CURRENT_DISP]) >= BUF_MODIFF (b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4294 && XINT (w->last_facechange[CURRENT_DISP]) >= BUF_FACECHANGE (b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4295 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4296 new_point = point_at_center (w, CURRENT_DISP, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4297
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4298 if (selected)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4299 BUF_SET_PT (b, new_point);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4300 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4301 Fset_window_point (window, make_int (new_point));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4302
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4303 retval = line_at_center (w, CURRENT_DISP, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4304 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4305 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4306 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4307 start = marker_position (w->start[CURRENT_DISP]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4308 if (start < BUF_BEGV (b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4309 start = BUF_BEGV (b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4310 else if (start > BUF_ZV (b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4311 start = BUF_ZV (b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4312
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4313 if (selected)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4314 new_point = BUF_PT (b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4315 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4316 new_point = marker_position (w->pointm[CURRENT_DISP]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4317
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4318 new_point = point_at_center (w, CMOTION_DISP, start, BUF_PT (b));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4319
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4320 if (selected)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4321 BUF_SET_PT (b, new_point);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4322 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4323 Fset_window_point (window, make_int (new_point));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4324
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4325 retval = line_at_center (w, CMOTION_DISP, start, BUF_PT (b));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4326 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4327
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 110
diff changeset
4328 return make_int (retval);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4329 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4330 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4331 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4332 /* #### Is this going to work right when at eob? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4333 arg = Fprefix_numeric_value (arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4334 if (XINT (arg) < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4335 XSETINT (arg, XINT (arg) + height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4336 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4337
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4338 start = marker_position (w->start[CURRENT_DISP]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4339 if (start < BUF_BEGV (b) || start > BUF_ZV (b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4340 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4341 if (selected)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4342 new_point = BUF_PT (b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4343 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4344 new_point = marker_position (w->pointm[CURRENT_DISP]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4345
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4346 new_point = vmotion (XWINDOW (window), new_point, -height / 2, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4348 if (selected)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4349 BUF_SET_PT (b, new_point);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4350 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4351 Fset_window_point (window, make_int (new_point));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4352
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4353 Fset_marker (w->start[CURRENT_DISP], make_int (new_point),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4354 w->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4355 w->start_at_line_beg = beginning_of_line_p (b, new_point);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4356 w->force_start = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4357 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4358 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4359 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4360 if (selected)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4361 BUF_SET_PT (b, start);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4362 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4363 Fset_window_point (window, make_int (start));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4364 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4365
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4366 if (selected)
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
4367 return Fvertical_motion (arg, window, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4368 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4369 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4370 int vpos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4371 new_point = vmotion (XWINDOW (window),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4372 marker_position (w->pointm[CURRENT_DISP]),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4373 XINT (arg), &vpos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4374 Fset_window_point (window, make_int (new_point));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4375 return make_int (vpos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4376 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4377 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4378
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4379
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4380 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4381 map_windows_1 (Lisp_Object window,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4382 int (*mapfun) (struct window *w, void *closure),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4383 void *closure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4384 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4385 for (; !NILP (window); window = XWINDOW (window)->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4386 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4387 int retval;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4388 struct window *w = XWINDOW (window);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 223
diff changeset
4389
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4390 if (!NILP (w->vchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4391 retval = map_windows_1 (w->vchild, mapfun, closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4392 else if (!NILP (w->hchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4393 retval = map_windows_1 (w->hchild, mapfun, closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4394 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4395 retval = (mapfun) (w, closure);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4396
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4397 if (retval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4398 return retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4399 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4400
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4401 return 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4402 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4403
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4404 /* Map MAPFUN over the windows in F. CLOSURE is passed to each
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 223
diff changeset
4405 invocation of MAPFUN. If any invocation of MAPFUN returns
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 223
diff changeset
4406 non-zero, the mapping is halted. Otherwise, map_windows() maps
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 223
diff changeset
4407 over all windows in F.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 223
diff changeset
4408
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
4409 If MAPFUN creates or deletes windows, the behavior is undefined. */
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 223
diff changeset
4410
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4411 int
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4412 map_windows (struct frame *f, int (*mapfun) (struct window *w, void *closure),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4413 void *closure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4414 {
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 223
diff changeset
4415 if (f)
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4416 return map_windows_1 (FRAME_ROOT_WINDOW (f), mapfun, closure);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 223
diff changeset
4417 else
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 223
diff changeset
4418 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 223
diff changeset
4419 Lisp_Object frmcons, devcons, concons;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 223
diff changeset
4420
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 223
diff changeset
4421 FRAME_LOOP_NO_BREAK(frmcons, devcons, concons)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 223
diff changeset
4422 {
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4423 int v = map_windows_1 (FRAME_ROOT_WINDOW (XFRAME (XCAR (frmcons))),
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4424 mapfun, closure);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
4425 if (v)
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4426 return v;
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 223
diff changeset
4427 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 223
diff changeset
4428 }
286
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
4429
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
4430 return 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4431 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4432
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4433
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4434 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4435 modeline_shadow_thickness_changed (Lisp_Object specifier, struct window *w,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4436 Lisp_Object oldval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4437 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4438 w->shadow_thickness_changed = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4439 MARK_WINDOWS_CHANGED (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4440 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4441
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4442 static void
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
4443 vertical_divider_changed_in_window (Lisp_Object specifier,
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
4444 struct window *w,
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4445 Lisp_Object oldval)
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4446 {
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4447 MARK_WINDOWS_CHANGED (w);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4448 MARK_FRAME_WINDOWS_STRUCTURE_CHANGED (XFRAME (WINDOW_FRAME (w)));
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4449 }
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4450
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4451 /* also used in scrollbar.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4452 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4453 some_window_value_changed (Lisp_Object specifier, struct window *w,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4454 Lisp_Object oldval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4455 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4456 MARK_WINDOWS_CHANGED (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4457 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4458
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4459 #ifdef MEMORY_USAGE_STATS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4460
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4461 struct window_stats
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4462 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4463 int face;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4464 int glyph;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4465 #ifdef HAVE_SCROLLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4466 int scrollbar;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4467 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4468 int line_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4469 int other_redisplay;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4470 int other;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4471 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4472
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4473 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4474 compute_window_mirror_usage (struct window_mirror *mir,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4475 struct window_stats *stats,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4476 struct overhead_stats *ovstats)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4477 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4478 if (!mir)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4479 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4480 stats->other += malloced_storage_size (mir, sizeof (struct window_mirror),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4481 ovstats);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4482 #ifdef HAVE_SCROLLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4483 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4484 struct device *d = XDEVICE (FRAME_DEVICE (mir->frame));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4485
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4486 stats->scrollbar +=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4487 compute_scrollbar_instance_usage (d, mir->scrollbar_vertical_instance,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4488 ovstats);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4489 stats->scrollbar +=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4490 compute_scrollbar_instance_usage (d, mir->scrollbar_horizontal_instance,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4491 ovstats);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4492 }
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 110
diff changeset
4493 #endif /* HAVE_SCROLLBARS */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4494 stats->other_redisplay +=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4495 compute_display_line_dynarr_usage (mir->current_display_lines, ovstats);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4496 stats->other_redisplay +=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4497 compute_display_line_dynarr_usage (mir->desired_display_lines, ovstats);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4498 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4499
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4500 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4501 compute_window_usage (struct window *w, struct window_stats *stats,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4502 struct overhead_stats *ovstats)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4503 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4504 xzero (*stats);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4505 stats->other += malloced_storage_size (w, sizeof (struct window), ovstats);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4506 stats->face += compute_face_cachel_usage (w->face_cachels, ovstats);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4507 stats->glyph += compute_glyph_cachel_usage (w->glyph_cachels, ovstats);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4508 stats->line_start +=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4509 compute_line_start_cache_dynarr_usage (w->line_start_cache, ovstats);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4510 compute_window_mirror_usage (find_window_mirror (w), stats, ovstats);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4511 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4512
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4513 DEFUN ("window-memory-usage", Fwindow_memory_usage, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4514 Return stats about the memory usage of window WINDOW.
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4515 The values returned are in the form of an alist of usage types and byte
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4516 counts. The byte counts attempt to encompass all the memory used
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4517 by the window (separate from the memory logically associated with a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4518 buffer or frame), including internal structures and any malloc()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4519 overhead associated with them. In practice, the byte counts are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4520 underestimated because certain memory usage is very hard to determine
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4521 \(e.g. the amount of memory used inside the Xt library or inside the
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4522 X server) and because there is other stuff that might logically
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4523 be associated with a window, buffer, or frame (e.g. window configurations,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4524 glyphs) but should not obviously be included in the usage counts.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4525
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4526 Multiple slices of the total memory usage may be returned, separated
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4527 by a nil. Each slice represents a particular view of the memory, a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4528 particular way of partitioning it into groups. Within a slice, there
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4529 is no overlap between the groups of memory, and each slice collectively
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4530 represents all the memory concerned.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4531 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4532 (window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4533 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4534 struct window_stats stats;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4535 struct overhead_stats ovstats;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4536 Lisp_Object val = Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4537
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4538 CHECK_WINDOW (window); /* dead windows should be allowed, no? */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4539 xzero (ovstats);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4540 compute_window_usage (XWINDOW (window), &stats, &ovstats);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4541
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4542 val = acons (Qface_cache, make_int (stats.face), val);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4543 val = acons (Qglyph_cache, make_int (stats.glyph), val);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4544 #ifdef HAVE_SCROLLBARS
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4545 val = acons (Qscrollbar_instances, make_int (stats.scrollbar), val);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4546 #endif
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4547 val = acons (Qline_start_cache, make_int (stats.line_start), val);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4548 val = acons (Qother_redisplay, make_int (stats.other_redisplay), val);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4549 val = acons (Qother, make_int (stats.other), val);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4550 val = Fcons (Qnil, val);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4551 val = acons (Qactually_requested, make_int (ovstats.was_requested), val);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4552 val = acons (Qmalloc_overhead, make_int (ovstats.malloc_overhead), val);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4553 val = acons (Qdynarr_overhead, make_int (ovstats.dynarr_overhead), val);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4554
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4555 return Fnreverse (val);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4556 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4557
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4558 #endif /* MEMORY_USAGE_STATS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4559
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4560
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4561 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4562 /* Window configurations */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4563 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4564
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4565 /* #### This window configuration stuff has had serious bugs lurking in it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4566 for years; it would be a -huge- win if this was reimplemented in lisp.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4567 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4568
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4569 /* If you add anything to this structure make sure saved_window_equal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4570 knows about it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4571 struct saved_window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4572 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4573 Lisp_Object window; /* window */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4574 Lisp_Object buffer; /* buffer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4575 Lisp_Object start; /* copied marker */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4576 Lisp_Object pointm; /* copied marker */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4577 Lisp_Object sb_point; /* copied marker */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4578 Lisp_Object mark; /* copied marker */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4579 int pixel_left;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4580 int pixel_top;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4581 int pixel_width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4582 int pixel_height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4583 int hscroll;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4584 int modeline_hscroll;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4585 int parent_index; /* index into saved_windows */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4586 int prev_index; /* index into saved_windows */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4587 char start_at_line_beg; /* boolean */
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4588
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4589 #define WINDOW_SLOT_DECLARATION
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4590 #define WINDOW_SLOT(slot, compare) Lisp_Object slot
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4591 #include "winslots.h"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4592 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4593
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4594 /* If you add anything to this structure make sure window_config_equal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4595 knows about it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4596 struct window_config
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4597 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4598 struct lcrecord_header header;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4599 /* int frame_width; No longer needed, JV
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4600 int frame_height; */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4601 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4602 Lisp_Object selected_frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4603 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4604 Lisp_Object current_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4605 Lisp_Object current_buffer;
274
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
4606 Lisp_Object minibuffer_scroll_window;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4607 Lisp_Object root_window;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4608 int minibuf_height; /* 0 = no minibuffer, <0, size in lines, >0 in pixels */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4609 /* Record the values of window-min-width and window-min-height
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4610 so that window sizes remain consistent with them. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4611 int min_width, min_height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4612 int saved_windows_count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4613 /* Zero-sized arrays aren't ANSI C */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4614 struct saved_window saved_windows[1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4615 };
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4616
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4617 #define SAVED_WINDOW_N(conf, n) (&((conf)->saved_windows[(n)]))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4618 #define XWINDOW_CONFIGURATION(x) XRECORD (x, window_configuration, struct window_config)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4619 #define XSETWINDOW_CONFIGURATION(x, p) XSETRECORD (x, p, window_configuration)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4620 #define WINDOW_CONFIGURATIONP(x) RECORDP (x, window_configuration)
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4621 #define GC_WINDOW_CONFIGURATIONP(x) GC_RECORDP (x, window_configuration)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4622 #define CHECK_WINDOW_CONFIGURATION(x) CHECK_RECORD (x, window_configuration)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4623
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4624 static Lisp_Object
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4625 mark_window_config (Lisp_Object obj, void (*markobj) (Lisp_Object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4626 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4627 struct window_config *config = XWINDOW_CONFIGURATION (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4628 int i;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4629 markobj (config->current_window);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4630 markobj (config->current_buffer);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4631 markobj (config->minibuffer_scroll_window);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4632 markobj (config->root_window);
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
4633
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4634 for (i = 0; i < config->saved_windows_count; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4635 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4636 struct saved_window *s = SAVED_WINDOW_N (config, i);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4637 markobj (s->window);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4638 markobj (s->buffer);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4639 markobj (s->start);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4640 markobj (s->pointm);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4641 markobj (s->sb_point);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4642 markobj (s->mark);
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4643 #if 0
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4644 /* #### This looked like this. I do not see why specifier cached
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4645 values should not be marked, as such specifiers as toolbars
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4646 might have GC-able instances. Freed configs are not marked,
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4647 aren't they? -- kkm */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4648 markobj (s->dedicated);
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4649 #else
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4650 #define WINDOW_SLOT(slot, compare) ((void) (markobj (s->slot)))
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4651 #include "winslots.h"
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4652 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4653 }
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 110
diff changeset
4654 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4655 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4656
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4657 static size_t
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4658 sizeof_window_config_for_n_windows (int n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4659 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4660 return (sizeof (struct window_config) +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4661 /* n - 1 because zero-sized arrays aren't ANSI C */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4662 (n - 1) *sizeof (struct saved_window));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4663 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4664
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4665 static size_t
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4666 sizeof_window_config (CONST void *h)
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4667 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4668 CONST struct window_config *c = (CONST struct window_config *) h;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4669 return sizeof_window_config_for_n_windows (c->saved_windows_count);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4670 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4671
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4672 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4673 print_window_config (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4674 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4675 struct window_config *config = XWINDOW_CONFIGURATION (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4676 char buf[200];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4677 if (print_readably)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4678 error ("printing unreadable object #<window-configuration 0x%x>",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4679 config->header.uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4680 write_c_string ("#<window-configuration ", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4681 sprintf (buf, "0x%x>", config->header.uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4682 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4683 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4684
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4685 DEFINE_LRECORD_SEQUENCE_IMPLEMENTATION ("window-configuration",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4686 window_configuration,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4687 mark_window_config,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4688 print_window_config,
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 414
diff changeset
4689 0, 0, 0, 0, sizeof_window_config,
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4690 struct window_config);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4691
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4692
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4693 /* Returns a boolean indicating whether the two saved windows are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4694 identical. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4695 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4696 saved_window_equal (struct saved_window *win1, struct saved_window *win2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4697 {
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4698 #define WINDOW_SLOT(slot, compare) \
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4699 if (!compare (win1->slot, win2->slot)) \
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4700 return 0;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4701 #include "winslots.h"
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4702
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 110
diff changeset
4703 return
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 110
diff changeset
4704 EQ (win1->window, win2->window) &&
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 110
diff changeset
4705 EQ (win1->buffer, win2->buffer) &&
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
4706 internal_equal (win1->start, win2->start, 0) &&
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
4707 internal_equal (win1->pointm, win2->pointm, 0) &&
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
4708 internal_equal (win1->sb_point, win2->sb_point, 0) &&
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 185
diff changeset
4709 internal_equal (win1->mark, win2->mark, 0) &&
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 110
diff changeset
4710 win1->pixel_left == win2->pixel_left &&
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 110
diff changeset
4711 win1->pixel_top == win2->pixel_top &&
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 110
diff changeset
4712 win1->pixel_width == win2->pixel_width &&
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 110
diff changeset
4713 win1->pixel_height == win2->pixel_height &&
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 110
diff changeset
4714 win1->hscroll == win2->hscroll &&
257
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
4715 win1->modeline_hscroll == win2->modeline_hscroll &&
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 110
diff changeset
4716 win1->parent_index == win2->parent_index &&
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 110
diff changeset
4717 win1->prev_index == win2->prev_index &&
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4718 win1->start_at_line_beg == win2->start_at_line_beg;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4719 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4720
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4721 /* Returns a boolean indicating whether the two given configurations
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4722 are identical. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4723 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4724 window_config_equal (Lisp_Object conf1, Lisp_Object conf2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4725 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4726 struct window_config *fig1, *fig2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4727 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4728
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4729 /* First check if they are truly the same. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4730 if (EQ (conf1, conf2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4731 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4732
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4733 fig1 = XWINDOW_CONFIGURATION (conf1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4734 fig2 = XWINDOW_CONFIGURATION (conf2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4735
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 110
diff changeset
4736 if (!((fig1->saved_windows_count == fig2->saved_windows_count) &&
274
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
4737 EQ (fig1->current_window, fig2->current_window) &&
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
4738 EQ (fig1->current_buffer, fig2->current_buffer) &&
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
4739 EQ (fig1->root_window, fig2->root_window) &&
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4740 EQ (fig1->minibuffer_scroll_window, fig2->minibuffer_scroll_window)))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4741 /* &&
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 110
diff changeset
4742 fig1->frame_width == fig2->frame_width &&
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4743 fig1->frame_height == fig2->frame_height)) */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4744 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4745
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4746 for (i = 0; i < fig1->saved_windows_count; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4747 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4748 if (!saved_window_equal (SAVED_WINDOW_N (fig1, i),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4749 SAVED_WINDOW_N (fig2, i)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4750 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4751 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4752
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4753 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4754 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4755
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4756 DEFUN ("window-configuration-p", Fwindow_configuration_p, 1, 1, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
4757 Return t if OBJECT is a window-configuration object.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4758 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4759 (obj))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4760 {
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 110
diff changeset
4761 return WINDOW_CONFIGURATIONP (obj) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4762 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4763
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 223
diff changeset
4764 static int
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 223
diff changeset
4765 mark_windows_in_use_closure (struct window *w, void *closure)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4766 {
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 223
diff changeset
4767 int mark = *(int *)closure;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 223
diff changeset
4768 w->config_mark = mark;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 223
diff changeset
4769 return 0;
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 223
diff changeset
4770 }
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 223
diff changeset
4771
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 223
diff changeset
4772 static void
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 223
diff changeset
4773 mark_windows_in_use (struct frame *f, int mark)
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 223
diff changeset
4774 {
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 223
diff changeset
4775 map_windows (f, mark_windows_in_use_closure, &mark);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4776 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4777
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4778 /* Lisp_Object return value so it can be used in record_unwind_protect() */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4779 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4780 free_window_configuration (Lisp_Object window_config)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4781 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4782 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4783 struct window_config *config = XWINDOW_CONFIGURATION (window_config);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4784
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4785 /* Free all the markers. It's not completely necessary that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4786 we do this (window configs sitting in a free list aren't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4787 marked normally so the markers wouldn't be marked anyway)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4788 but it's more efficient. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4789 for (i = 0; i < config->saved_windows_count; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4790 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4791 struct saved_window *p = SAVED_WINDOW_N (config, i);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4792
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4793 if (!NILP (p->pointm))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4794 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4795 free_marker (XMARKER (p->pointm));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4796 p->pointm = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4797 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4798 if (!NILP (p->start))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4799 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4800 free_marker (XMARKER (p->start));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4801 p->start = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4802 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4803 if (!NILP (p->sb_point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4804 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4805 free_marker (XMARKER (p->sb_point));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4806 p->sb_point = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4807 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4808 if (!NILP (p->mark))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4809 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4810 free_marker (XMARKER (p->mark));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4811 p->mark = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4812 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4813 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4814
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4815 if (config->saved_windows_count <= countof (Vwindow_configuration_free_list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4816 free_managed_lcrecord (Vwindow_configuration_free_list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4817 [config->saved_windows_count - 1],
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4818 window_config);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4819
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4820 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4821 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4822
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4823 DEFUN ("set-window-configuration", Fset_window_configuration, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4824 Set the configuration of windows and buffers as specified by CONFIGURATION.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4825 CONFIGURATION must be a value previously returned
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4826 by `current-window-configuration' (which see).
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4827 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4828 (configuration))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4829 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4830 struct window *w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4831 struct window_config *config;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4832 struct saved_window *p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4833 Lisp_Object new_current_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4834 int k;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4835 Lisp_Object frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4836 struct frame *f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4837 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4838 Lisp_Object old_window_config;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4839 /* int previous_frame_height;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4840 int previous_frame_width;*/
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4841 int previous_pixel_top;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4842 int previous_pixel_height;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4843 int previous_pixel_left;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4844 int previous_pixel_width;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4845 int previous_minibuf_height, previous_minibuf_top,previous_minibuf_width;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4846 int real_font_height;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4847 int converted_minibuf_height,target_minibuf_height;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4848 int specpdl_count = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4849
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4850 GCPRO1 (configuration);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4851
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4852 CHECK_WINDOW_CONFIGURATION (configuration);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4853 config = XWINDOW_CONFIGURATION (configuration);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4854
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4855 frame = XWINDOW (SAVED_WINDOW_N (config, 0)->window)->frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4856 f = XFRAME (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4857
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4858 /* Do not signal an error here if the frame was deleted. There are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4859 reasonable cases where we could get here with a deleted frame and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4860 just want to do close to nothing instead. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4861
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4862 if (FRAME_LIVE_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4863 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4864 /* restore the frame characteristics */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
4865
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4866 new_current_buffer = config->current_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4867 if (!BUFFER_LIVE_P (XBUFFER (new_current_buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4868 new_current_buffer = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4869
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4870 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4871 * Assumed precondition: w->config_mark = 0 for all w
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4872 * This procedure should ensure this is true by the time it exits
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4873 * to ensure the precondition for future calls.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4874 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4875 * We use w->config_mark to know whether we're modifying a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4876 * window that is currently visible on the frame (#### we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4877 * should just be able to check whether the window is dead
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4878 * or not, but this way is safer?). As we process each
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4879 * window, we set its config_mark to 0. At the end, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4880 * go through all the windows that used to be on the frame,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4881 * set each one's config_mark to 0 (to maintain the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4882 * assumed precondition) and delete each one that's no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4883 * longer in use.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4884 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4885 * #### Using a window-configuration to keep track of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4886 * the current windows is wasteful. All we need is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4887 * list of windows, so we could just use a dynarr.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4888 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4889 old_window_config = Fcurrent_window_configuration (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4890
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4891 /* If the new configuration is already equal to the old, then stop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4892 right here. This saves the work below and it also saves
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4893 triggering a full redisplay of this window. This is a huge win
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4894 when using the mouse since the mode motion code uses
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4895 save-window-excursion extensively but will rarely cause the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4896 configuration to actually change. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4897 if (window_config_equal (configuration, old_window_config))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4898 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4899 free_window_configuration (old_window_config);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4900 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4901 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4902 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4903
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4904 /* We can't quit or even check for quit because that may cause
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4905 investigation of the frame state, which may crash if the frame is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4906 in an inconsistent state. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4907 begin_dont_check_for_quit ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4908 record_unwind_protect (free_window_configuration, old_window_config);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4909
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 223
diff changeset
4910 mark_windows_in_use (f, 1);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4911
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4912 #if 0
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4913 /* JV: This is bogus,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4914 First of all, the units are inconsistent. The frame sizes are measured
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4915 in characters but the window sizes are stored in pixels. So if a
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4916 font size change happened between saving and restoring, the
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4917 frame "sizes" maybe equal but the windows still should be
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4918 resized. This is tickled alot by the new "character size
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4919 stays constant" policy in 21.0. It leads to very wierd
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4920 glitches (and possibly craches when asserts are tickled).
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4921
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4922 Just changing the units doens't help because changing the
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4923 toolbar configuration can also change the pixel positions.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4924 Luckily there is a much simpler way of doing this, see below.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4925 */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4926 previous_frame_width = FRAME_WIDTH (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4927 previous_frame_height = FRAME_HEIGHT (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4928 /* If the frame has been resized since this window configuration was
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4929 made, we change the frame to the size specified in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4930 configuration, restore the configuration, and then resize it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4931 back. We keep track of the prevailing height in these variables. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4932 if (config->frame_height != FRAME_HEIGHT (f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4933 || config->frame_width != FRAME_WIDTH (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4934 change_frame_size (f, config->frame_height, config->frame_width, 0);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4935 #endif
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4936
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4937 previous_pixel_top = XWINDOW (FRAME_ROOT_WINDOW (f))->pixel_top;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4938 previous_pixel_height = XWINDOW (FRAME_ROOT_WINDOW (f))->pixel_height;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4939 previous_pixel_left = XWINDOW (FRAME_ROOT_WINDOW (f))->pixel_left;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4940 previous_pixel_width = XWINDOW (FRAME_ROOT_WINDOW (f))->pixel_width;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4941
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4942 /* remember some properties of the minibuffer */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4943
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4944 default_face_height_and_width (frame, &real_font_height, 0);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4945 assert(real_font_height > 0);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4946
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4947 if (FRAME_HAS_MINIBUF_P (f) && ! FRAME_MINIBUF_ONLY_P (f))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4948 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4949 previous_minibuf_height
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4950 = XWINDOW(FRAME_MINIBUF_WINDOW(f))->pixel_height;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4951 previous_minibuf_top
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4952 = XWINDOW(FRAME_MINIBUF_WINDOW(f))->pixel_top;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4953 previous_minibuf_width
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4954 = XWINDOW(FRAME_MINIBUF_WINDOW(f))->pixel_width;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4955 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4956 else
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4957 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4958 previous_minibuf_height = 0;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4959 previous_minibuf_width = 0;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4960 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4961 converted_minibuf_height =
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4962 (previous_minibuf_height % real_font_height) == 0 ?
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4963 - (previous_minibuf_height / real_font_height ) : /* lines */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
4964 previous_minibuf_height; /* pixels */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
4965
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4966 /* Temporarily avoid any problems with windows that are smaller
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4967 than they are supposed to be. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4968 window_min_height = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4969 window_min_width = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4970
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4971 /* OK, now restore all the windows in the window config.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4972 This may involve "undeleting" windows, since the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4973 windows in the window config may be deleted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4974 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4975 for (k = 0; k < config->saved_windows_count; k++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4976 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4977 p = SAVED_WINDOW_N (config, k);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4978 w = XWINDOW (p->window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4979 w->next = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4980
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4981 /* The window might be dead. In this case, its redisplay
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4982 structures were freed, so we need to reallocate them. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4983 if (!w->face_cachels)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4984 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
4985 w->face_cachels = Dynarr_new (face_cachel);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4986 reset_face_cachels (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4987 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4988 if (!w->glyph_cachels)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
4989 w->glyph_cachels = Dynarr_new (glyph_cachel);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4990 if (!w->line_start_cache)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
4991 w->line_start_cache = Dynarr_new (line_start_cache);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4992 w->dead = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4993
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4994 if (p->parent_index >= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4995 w->parent = SAVED_WINDOW_N (config, p->parent_index)->window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4996 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4997 w->parent = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4998
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4999 if (p->prev_index >= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5000 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5001 w->prev = SAVED_WINDOW_N (config, p->prev_index)->window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5002
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5003 /* This is true for a minibuffer-only frame. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5004 if (!NILP (w->mini_p) && EQ (w->prev, p->window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5005 w->next = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5006 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5007 XWINDOW (w->prev)->next = p->window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5008 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5009 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5010 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5011 w->prev = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5012 if (!NILP (w->parent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5013 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5014 if (WINDOW_WIDTH (p) == WINDOW_WIDTH (XWINDOW (w->parent)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5015 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5016 XWINDOW (w->parent)->vchild = p->window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5017 XWINDOW (w->parent)->hchild = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5018 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5019 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5020 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5021 XWINDOW (w->parent)->hchild = p->window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5022 XWINDOW (w->parent)->vchild = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5023 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5024 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5025 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5026 if (!w->config_mark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5027 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5028 /* #### This should be equivalent to the window previously
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5029 having been dead. If we're brave, we'll put in an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5030 assertion to this effect. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5031 MARK_FRAME_WINDOWS_STRUCTURE_CHANGED (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5032 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5033 else /* if (!EQ (w->buffer, p->buffer)) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5034 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5035 /* With the new redisplay we let it know that a change has
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5036 been made and it will take care of the rest. If we don't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5037 tell it something has possibly changed it could lead to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5038 incorrect display. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5039 MARK_WINDOWS_CHANGED (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5040 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5041
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5042 WINDOW_LEFT (w) = WINDOW_LEFT (p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5043 WINDOW_TOP (w) = WINDOW_TOP (p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5044 WINDOW_WIDTH (w) = WINDOW_WIDTH (p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5045 WINDOW_HEIGHT (w) = WINDOW_HEIGHT (p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5046 w->hscroll = p->hscroll;
257
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
5047 w->modeline_hscroll = p->modeline_hscroll;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5048 w->line_cache_last_updated = Qzero;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5049 SET_LAST_MODIFIED (w, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5050 SET_LAST_FACECHANGE (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5051 w->config_mark = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5052
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5053 #define WINDOW_SLOT(slot, compare) w->slot = p->slot;
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5054 #include "winslots.h"
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5055
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5056 /* Reinstall the saved buffer and pointers into it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5057 if (NILP (p->buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5058 w->buffer = p->buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5059 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5060 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5061 if (BUFFER_LIVE_P (XBUFFER (p->buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5062 /* If saved buffer is alive, install it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5063 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5064 w->buffer = p->buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5065 w->start_at_line_beg = p->start_at_line_beg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5066 set_marker_restricted (w->start[CURRENT_DISP],
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5067 Fmarker_position (p->start),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5068 w->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5069 set_marker_restricted (w->pointm[CURRENT_DISP],
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5070 Fmarker_position (p->pointm),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5071 w->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5072 set_marker_restricted (w->sb_point,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5073 Fmarker_position (p->sb_point),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5074 w->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5075 Fset_marker (XBUFFER (w->buffer)->mark,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5076 Fmarker_position (p->mark), w->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5077
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5078 /* As documented in Fcurrent_window_configuration, don't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5079 save the location of point in the buffer which was current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5080 when the window configuration was recorded. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5081 if (!EQ (p->buffer, new_current_buffer) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5082 XBUFFER (p->buffer) == current_buffer)
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
5083 Fgoto_char (w->pointm[CURRENT_DISP], Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5084 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5085 else if (NILP (w->buffer) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5086 !BUFFER_LIVE_P (XBUFFER (w->buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5087 /* Else if window's old buffer is dead too, get a live one. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5088 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5089 /* #### The following line makes me nervous... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5090 /* w->buffer = Fcdr (Fcar (XFRAME (w->frame)->buffer_alist));*/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5091 w->buffer = Fget_buffer_create (QSscratch);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5092 /* w->buffer = Fother_buffer (Qnil, w->frame, Qnil); */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5093 /* This will set the markers to beginning of visible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5094 range. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5095 set_marker_restricted (w->start[CURRENT_DISP], Qzero, w->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5096 set_marker_restricted (w->pointm[CURRENT_DISP], Qzero,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5097 w->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5098 set_marker_restricted (w->sb_point, Qzero, w->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5099 w->start_at_line_beg = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5100 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5101 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5102 /* Keeping window's old buffer; make sure the markers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5103 are real. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5104 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5105 /* Set window markers at start of visible range. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5106 if (XMARKER (w->start[CURRENT_DISP])->buffer == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5107 set_marker_restricted (w->start[CURRENT_DISP], Qzero,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5108 w->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5109 if (XMARKER (w->sb_point)->buffer == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5110 set_marker_restricted (w->sb_point, Qzero, w->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5111 if (XMARKER (w->pointm[CURRENT_DISP])->buffer == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5112 set_marker_restricted (w->pointm[CURRENT_DISP],
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5113 make_int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5114 (BUF_PT (XBUFFER (w->buffer))),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5115 w->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5116 w->start_at_line_beg = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5117 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5118 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5119 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5120
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5121 FRAME_ROOT_WINDOW (f) = config->root_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5122 /* Note that FSFmacs unilaterally calls Fselect_window() here, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5123 then calls do_switch_frame() below to select the frame that was
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5124 recorded in the window config as being selected.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5125
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5126 Instead, we don't ever change the selected frame, and either
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5127 call Fselect_window() below if the window config's frame is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5128 currently selected, or just set the selected window of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5129 window config's frame. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5130
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5131 #if 0
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5132 /* Set the frame height to the value it had before this function. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5133 if (previous_frame_height != FRAME_HEIGHT (f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5134 || previous_frame_width != FRAME_WIDTH (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5135 change_frame_size (f, previous_frame_height, previous_frame_width, 0);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5136 #endif
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5137 /* We just reset the size and position of the minibuffer, to its old
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5138 value, which needn't be valid. So we do some magic to see which value
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5139 to actually take. Then we set it.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5140
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5141 The magic:
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5142 We take the old value if is in the same units but differs from the
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5143 current value.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5144
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5145 #### Now we get more cases correct then ever before, but
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5146 are we treating all? For instance what if the frames minibuf window
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5147 is no longer the same one?
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5148 */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5149 target_minibuf_height = previous_minibuf_height;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5150 if (converted_minibuf_height &&
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5151 (converted_minibuf_height * config->minibuf_height) > 0 &&
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5152 (converted_minibuf_height != config->minibuf_height))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5153 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5154 target_minibuf_height = config->minibuf_height < 0 ?
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5155 - (config->minibuf_height * real_font_height) :
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5156 config->minibuf_height;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5157 target_minibuf_height =
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5158 max(target_minibuf_height,real_font_height);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5159 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5160 if (previous_minibuf_height)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5161 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5162 XWINDOW (FRAME_MINIBUF_WINDOW (f))->pixel_top
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5163 = previous_minibuf_top -
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5164 (target_minibuf_height - previous_minibuf_height);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5165 set_window_pixheight (FRAME_MINIBUF_WINDOW (f),
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5166 target_minibuf_height, 0);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5167 set_window_pixwidth (FRAME_MINIBUF_WINDOW (f),
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5168 previous_minibuf_width, 0);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5169 }
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5170
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5171 /* This is a better way to deal with frame resizing, etc.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5172 What we _actually_ want is for the old (just restored)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5173 root window to fit
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5174 into the place of the new one. So we just do that. Simple! */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5175 XWINDOW (FRAME_ROOT_WINDOW (f))->pixel_top = previous_pixel_top;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5176 /* Note that this function also updates the subwindow
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5177 "pixel_top"s */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5178 set_window_pixheight (FRAME_ROOT_WINDOW (f),
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5179 previous_pixel_height -
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5180 (target_minibuf_height - previous_minibuf_height), 0);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5181 XWINDOW (FRAME_ROOT_WINDOW (f))->pixel_left = previous_pixel_left;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5182 /* Note that this function also updates the subwindow
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5183 "pixel_left"s */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5184 set_window_pixwidth (FRAME_ROOT_WINDOW (f), previous_pixel_width, 0);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5185
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5186 /* If restoring in the current frame make the window current,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5187 otherwise just update the frame selected_window slot to be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5188 the restored current_window. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5189 if (f == selected_frame ())
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5190 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5191 /* When using `pop-window-configuration', often the minibuffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5192 ends up as the selected window even though it's not active ...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5193 I really don't know the cause of this, but it should never
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5194 happen. This kludge should fix it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5195
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5196 #### Find out why this is really going wrong. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5197 if (!minibuf_level &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5198 MINI_WINDOW_P (XWINDOW (config->current_window)))
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5199 Fselect_window (Fnext_window (config->current_window,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5200 Qnil, Qnil, Qnil),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5201 Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5202 else
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5203 Fselect_window (config->current_window, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5204 if (!NILP (new_current_buffer))
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5205 Fset_buffer (new_current_buffer);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5206 else
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5207 Fset_buffer (XWINDOW (Fselected_window (Qnil))->buffer);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5208 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5209 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5210 set_frame_selected_window (f, config->current_window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5211 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 149
diff changeset
5212 else
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 149
diff changeset
5213 old_window_config = Qnil; /* Warning suppression */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5214
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5215 /* Restore the minimum heights recorded in the configuration. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5216 window_min_height = config->min_height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5217 window_min_width = config->min_width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5218
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5219 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5220 /* see above comment */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5221 /* Fselect_window will have made f the selected frame, so we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5222 reselect the proper frame here. Fhandle_switch_frame will change the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5223 selected window too, but that doesn't make the call to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5224 Fselect_window above totally superfluous; it still sets f's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5225 selected window. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5226 if (FRAME_LIVE_P (XFRAME (config->selected_frame)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5227 do_switch_frame (config->selected_frame, Qnil, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5228 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5229
274
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
5230 Vminibuffer_scroll_window = config->minibuffer_scroll_window;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5231
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5232 if (FRAME_LIVE_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5233 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5234 /* Do this before calling recompute_all_cached_specifiers_in_window()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5235 so that things like redisplay_redraw_cursor() won't abort due
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5236 to no window mirror present. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5237 f->mirror_dirty = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5238
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5239 config = XWINDOW_CONFIGURATION (old_window_config);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5240 for (k = 0; k < config->saved_windows_count; k++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5241 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5242 p = SAVED_WINDOW_N (config, k);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5243 w = XWINDOW (p->window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5244 /* Remember, we set w->config_mark on all currently visible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5245 windows, and reset it on all newly visible windows.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5246 Any windows still marked need to be deleted. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5247 if (w->config_mark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5248 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5249 mark_window_as_deleted (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5250 w->config_mark = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5251 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5252 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5253 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5254 /* We just potentially changed the window's buffer and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5255 potentially turned a dead window into a live one,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5256 so we need to recompute the cached specifier values. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5257 recompute_all_cached_specifiers_in_window (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5258 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5259 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5260 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5261
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5262 /* Now restore things, when everything else if OK. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5263
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5264 unbind_to (specpdl_count, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5265
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5266 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5267
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 110
diff changeset
5268 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5269 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5270
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5271 /* Mark all subwindows of a window as deleted. The argument
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5272 W is actually the subwindow tree of the window in question. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5273
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5274 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5275 delete_all_subwindows (struct window *w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5276 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
5277 if (!NILP (w->next)) delete_all_subwindows (XWINDOW (w->next));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
5278 if (!NILP (w->vchild)) delete_all_subwindows (XWINDOW (w->vchild));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
5279 if (!NILP (w->hchild)) delete_all_subwindows (XWINDOW (w->hchild));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5280
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5281 mark_window_as_deleted (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5282 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5283
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5284
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5285 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5286 count_windows (struct window *window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5287 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
5288 return 1 +
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
5289 (!NILP (window->next) ? count_windows (XWINDOW (window->next)) : 0) +
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
5290 (!NILP (window->vchild) ? count_windows (XWINDOW (window->vchild)) : 0) +
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
5291 (!NILP (window->hchild) ? count_windows (XWINDOW (window->hchild)) : 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5292 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5293
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5294 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5295 saved_window_index (Lisp_Object window, struct window_config *config, int lim)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5296 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5297 int j;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5298 for (j = 0; j < lim; j++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5299 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5300 if (EQ (SAVED_WINDOW_N (config, j)->window, window))
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 110
diff changeset
5301 return j;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
5302 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5303 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5304 return 0; /* suppress compiler warning */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5305 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5306
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5307 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5308 save_window_save (Lisp_Object window, struct window_config *config, int i)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5309 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5310 struct window *w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5311
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5312 for (; !NILP (window); window = w->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5313 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
5314 struct saved_window *p = SAVED_WINDOW_N (config, i);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
5315
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5316 w = XWINDOW (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5317 i++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5318 p->window = window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5319 p->buffer = w->buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5320 WINDOW_LEFT (p) = WINDOW_LEFT (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5321 WINDOW_TOP (p) = WINDOW_TOP (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5322 WINDOW_WIDTH (p) = WINDOW_WIDTH (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5323 WINDOW_HEIGHT (p) = WINDOW_HEIGHT (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5324 p->hscroll = w->hscroll;
257
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
5325 p->modeline_hscroll = w->modeline_hscroll;
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5326
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5327 #define WINDOW_SLOT(slot, compare) p->slot = w->slot;
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5328 #include "winslots.h"
255
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 251
diff changeset
5329
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5330 if (!NILP (w->buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5331 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5332 /* Save w's value of point in the window configuration.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5333 If w is the selected window, then get the value of point
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5334 from the buffer; pointm is garbage in the selected window. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5335 if (EQ (window, Fselected_window (Qnil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5336 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5337 p->pointm = noseeum_make_marker ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5338 Fset_marker (p->pointm,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5339 make_int (BUF_PT (XBUFFER (w->buffer))),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5340 w->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5341 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5342 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5343 p->pointm = noseeum_copy_marker (w->pointm[CURRENT_DISP], Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5344
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5345 p->start = noseeum_copy_marker (w->start[CURRENT_DISP], Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5346 p->sb_point = noseeum_copy_marker (w->sb_point, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5347 p->start_at_line_beg = w->start_at_line_beg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5348
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5349 p->mark = noseeum_copy_marker (XBUFFER (w->buffer)->mark, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5350 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5351 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5352 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5353 p->pointm = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5354 p->start = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5355 p->sb_point = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5356 p->mark = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5357 p->start_at_line_beg = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5358 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5359
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5360 if (NILP (w->parent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5361 p->parent_index = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5362 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5363 p->parent_index = saved_window_index (w->parent, config, i);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5364 if (NILP (w->prev))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5365 p->prev_index = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5366 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5367 p->prev_index = saved_window_index (w->prev, config, i);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5368 if (!NILP (w->vchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5369 i = save_window_save (w->vchild, config, i);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5370 if (!NILP (w->hchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5371 i = save_window_save (w->hchild, config, i);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5372 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5373
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5374 return i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5375 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5376
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5377 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5378 /* Added to doc string:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5379
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5380 This also records the currently selected frame, and FRAME's focus
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5381 redirection (see `redirect-frame-focus').
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5382
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5383 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5384 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5385
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5386 DEFUN ("current-window-configuration", Fcurrent_window_configuration, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5387 Return an object representing the current window configuration of FRAME.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5388 If FRAME is nil or omitted, use the selected frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5389 This describes the number of windows, their sizes and current buffers,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5390 and for each displayed buffer, where display starts, and the positions of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5391 point and mark. An exception is made for point in the current buffer:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5392 its value is -not- saved.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5393 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5394 (frame))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5395 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
5396 Lisp_Object result;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
5397 struct frame *f = decode_frame (frame);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5398 struct window_config *config;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
5399 int n_windows = count_windows (XWINDOW (FRAME_ROOT_WINDOW (f)));
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5400 int minibuf_height;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5401 int real_font_height;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
5402
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5403 if (n_windows <= countof (Vwindow_configuration_free_list))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
5404 config = XWINDOW_CONFIGURATION (allocate_managed_lcrecord
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
5405 (Vwindow_configuration_free_list
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
5406 [n_windows - 1]));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5407 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5408 /* More than ten windows; just allocate directly */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
5409 config = (struct window_config *)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
5410 alloc_lcrecord (sizeof_window_config_for_n_windows (n_windows),
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5411 &lrecord_window_configuration);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5412 XSETWINDOW_CONFIGURATION (result, config);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5413 /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5414 config->frame_width = FRAME_WIDTH (f);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5415 config->frame_height = FRAME_HEIGHT (f); */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5416 config->current_window = FRAME_SELECTED_WINDOW (f);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5417 XSETBUFFER (config->current_buffer, current_buffer);
274
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
5418 config->minibuffer_scroll_window = Vminibuffer_scroll_window;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5419 config->root_window = FRAME_ROOT_WINDOW (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5420 config->min_height = window_min_height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5421 config->min_width = window_min_width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5422 config->saved_windows_count = n_windows;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5423 save_window_save (FRAME_ROOT_WINDOW (f), config, 0);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5424
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5425 /* save the minibuffer height using the heuristics from
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5426 change_frame_size_1 */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5427
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5428 XSETFRAME (frame, f); /* frame could have been nil ! */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5429 default_face_height_and_width (frame, &real_font_height, 0);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5430 assert(real_font_height > 0);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5431
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5432 if (FRAME_HAS_MINIBUF_P (f) && ! FRAME_MINIBUF_ONLY_P (f))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5433 minibuf_height = XWINDOW(FRAME_MINIBUF_WINDOW(f))->pixel_height;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5434 else
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5435 minibuf_height = 0;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5436 config->minibuf_height = (minibuf_height % real_font_height) == 0 ?
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5437 - (minibuf_height / real_font_height ) : /* lines */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5438 minibuf_height; /* pixels */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 384
diff changeset
5439
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 110
diff changeset
5440 return result;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5441 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5442
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5443 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5444 save_window_excursion_unwind (Lisp_Object window_config)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5445 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5446 Lisp_Object val = Fset_window_configuration (window_config);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5447 free_window_configuration (window_config);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5448 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5449 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5450
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5451 DEFUN ("save-window-excursion", Fsave_window_excursion, 0, UNEVALLED, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5452 Execute body, preserving window sizes and contents.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5453 Restores which buffer appears in which window, where display starts,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5454 as well as the current buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5455 Does not restore the value of point in current buffer.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5456 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5457 (args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5458 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5459 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5460 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5461 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5462
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5463 record_unwind_protect (save_window_excursion_unwind,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5464 Fcurrent_window_configuration (Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5465 val = Fprogn (args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5466 return unbind_to (speccount, val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5467 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5468
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5469
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5470 #ifdef DEBUG_XEMACS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5471 /* This is short and simple in elisp, but... it was written to debug
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5472 problems purely on the C side. That is where we need to call it so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5473 here it is. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5474 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5475 debug_print_window (Lisp_Object window, int level)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5476 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
5477 int i;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
5478 Lisp_Object child = Fwindow_first_vchild (window);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
5479
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5480 if (NILP (child))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5481 child = Fwindow_first_hchild (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5482
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
5483 for (i = level; i > 0; i--)
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5484 putc ('\t', stderr);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5485
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5486 fputs ("#<window", stderr);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
5487 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
5488 Lisp_Object buffer = XWINDOW (window)->buffer;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
5489 if (!NILP (buffer) && BUFFERP (buffer))
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5490 fprintf (stderr, " on %s", XSTRING_DATA (XBUFFER (buffer)->name));
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
5491 }
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5492 fprintf (stderr, " 0x%x>", XWINDOW (window)->header.uid);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5493
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5494 while (!NILP (child))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5495 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5496 debug_print_window (child, level + 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5497 child = Fwindow_next_child (child);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5498 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5499 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5500
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5501 void debug_print_windows (struct frame *f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5502 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5503 debug_print_windows (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5504 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5505 debug_print_window (f->root_window, 0);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
5506 putc ('\n', stderr);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5507 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5508 #endif /* DEBUG_XEMACS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5509
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5510
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5511 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5512 /* initialization */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5513 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5514
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5515 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5516 syms_of_window (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5517 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5518 defsymbol (&Qwindowp, "windowp");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5519 defsymbol (&Qwindow_live_p, "window-live-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5520 defsymbol (&Qwindow_configurationp, "window-configuration-p");
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5521 defsymbol (&Qscroll_up, "scroll-up");
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5522 defsymbol (&Qscroll_down, "scroll-down");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5523 defsymbol (&Qtemp_buffer_show_hook, "temp-buffer-show-hook");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5524 defsymbol (&Qdisplay_buffer, "display-buffer");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5525
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5526 #ifdef MEMORY_USAGE_STATS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5527 defsymbol (&Qface_cache, "face-cache");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5528 defsymbol (&Qglyph_cache, "glyph-cache");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5529 defsymbol (&Qline_start_cache, "line-start-cache");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5530 #ifdef HAVE_SCROLLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5531 defsymbol (&Qscrollbar_instances, "scrollbar-instances");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5532 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5533 defsymbol (&Qother_redisplay, "other-redisplay");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5534 /* Qother in general.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5535 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5536
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5537 DEFSUBR (Fselected_window);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5538 DEFSUBR (Fminibuffer_window);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5539 DEFSUBR (Fwindow_minibuffer_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5540 DEFSUBR (Fwindowp);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5541 DEFSUBR (Fwindow_live_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5542 DEFSUBR (Fwindow_first_hchild);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5543 DEFSUBR (Fwindow_first_vchild);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5544 DEFSUBR (Fwindow_next_child);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5545 DEFSUBR (Fwindow_previous_child);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5546 DEFSUBR (Fwindow_parent);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5547 DEFSUBR (Fwindow_lowest_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5548 DEFSUBR (Fwindow_highest_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5549 DEFSUBR (Fwindow_leftmost_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5550 DEFSUBR (Fwindow_rightmost_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5551 DEFSUBR (Fpos_visible_in_window_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5552 DEFSUBR (Fwindow_buffer);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5553 DEFSUBR (Fwindow_frame);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5554 DEFSUBR (Fwindow_height);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5555 DEFSUBR (Fwindow_displayed_height);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5556 DEFSUBR (Fwindow_width);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5557 DEFSUBR (Fwindow_pixel_height);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5558 DEFSUBR (Fwindow_pixel_width);
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
5559 DEFSUBR (Fwindow_text_area_pixel_height);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
5560 DEFSUBR (Fwindow_displayed_text_pixel_height);
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
5561 DEFSUBR (Fwindow_text_area_pixel_width);
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5562 DEFSUBR (Fwindow_hscroll);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5563 #ifdef MODELINE_IS_SCROLLABLE
257
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
5564 DEFSUBR (Fmodeline_hscroll);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
5565 DEFSUBR (Fset_modeline_hscroll);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5566 #endif /* MODELINE_IS_SCROLLABLE */
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
5567 #if 0 /* bogus FSF crock */
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5568 DEFSUBR (Fwindow_redisplay_end_trigger);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5569 DEFSUBR (Fset_window_redisplay_end_trigger);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5570 #endif
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5571 DEFSUBR (Fset_window_hscroll);
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5572 DEFSUBR (Fwindow_pixel_edges);
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
5573 DEFSUBR (Fwindow_text_area_pixel_edges);
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5574 DEFSUBR (Fwindow_point);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5575 DEFSUBR (Fwindow_start);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5576 DEFSUBR (Fwindow_end);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5577 DEFSUBR (Fset_window_point);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5578 DEFSUBR (Fset_window_start);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5579 DEFSUBR (Fwindow_dedicated_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5580 DEFSUBR (Fset_window_dedicated_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5581 DEFSUBR (Fnext_window);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5582 DEFSUBR (Fprevious_window);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5583 DEFSUBR (Fnext_vertical_window);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5584 DEFSUBR (Fother_window);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5585 DEFSUBR (Fget_lru_window);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5586 DEFSUBR (Fget_largest_window);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5587 DEFSUBR (Fget_buffer_window);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5588 DEFSUBR (Fwindow_left_margin_pixel_width);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5589 DEFSUBR (Fwindow_right_margin_pixel_width);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5590 DEFSUBR (Fdelete_other_windows);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5591 DEFSUBR (Fdelete_windows_on);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5592 DEFSUBR (Freplace_buffer_in_windows);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5593 DEFSUBR (Fdelete_window);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5594 DEFSUBR (Fset_window_buffer);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5595 DEFSUBR (Fselect_window);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5596 DEFSUBR (Fsplit_window);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5597 DEFSUBR (Fenlarge_window);
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
5598 DEFSUBR (Fenlarge_window_pixels);
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5599 DEFSUBR (Fshrink_window);
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
5600 DEFSUBR (Fshrink_window_pixels);
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5601 DEFSUBR (Fscroll_up);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5602 DEFSUBR (Fscroll_down);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5603 DEFSUBR (Fscroll_left);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5604 DEFSUBR (Fscroll_right);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5605 DEFSUBR (Fother_window_for_scrolling);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5606 DEFSUBR (Fscroll_other_window);
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
5607 DEFSUBR (Fcenter_to_window_line);
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5608 DEFSUBR (Fmove_to_window_line);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5609 #ifdef MEMORY_USAGE_STATS
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5610 DEFSUBR (Fwindow_memory_usage);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5611 #endif
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5612 DEFSUBR (Fwindow_configuration_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5613 DEFSUBR (Fset_window_configuration);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5614 DEFSUBR (Fcurrent_window_configuration);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5615 DEFSUBR (Fsave_window_excursion);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5616 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5617
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5618 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5619 vars_of_window (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5620 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5621 /* Make sure all windows get marked */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5622 minibuf_window = Qnil;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5623 staticpro (&minibuf_window);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5624
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5625 DEFVAR_BOOL ("scroll-on-clipped-lines", &scroll_on_clipped_lines /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5626 *Non-nil means to scroll if point lands on a line which is clipped.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5627 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5628 scroll_on_clipped_lines = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5629
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5630 DEFVAR_LISP ("temp-buffer-show-hook", &Vtemp_buffer_show_hook /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5631 See `temp-buffer-show-function'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5632 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5633 Vtemp_buffer_show_hook = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5634
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5635 DEFVAR_LISP ("temp-buffer-show-function", &Vtemp_buffer_show_function /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5636 Non-nil means call as function to display a help buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5637 The function is called with one argument, the buffer to be displayed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5638 Used by `with-output-to-temp-buffer'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5639 If this function is used, then it must do the entire job of showing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5640 the buffer; `temp-buffer-show-hook' is not run unless this function runs it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5641 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5642 Vtemp_buffer_show_function = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5643
274
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
5644 DEFVAR_LISP ("minibuffer-scroll-window", &Vminibuffer_scroll_window /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5645 Non-nil means it is the window that \\<minibuffer-local-map>\\[scroll-other-window] in minibuffer should scroll.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5646 */ );
274
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
5647 Vminibuffer_scroll_window = Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5648
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5649 DEFVAR_LISP ("other-window-scroll-buffer", &Vother_window_scroll_buffer /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5650 If non-nil, this is a buffer and \\[scroll-other-window] should scroll its window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5651 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5652 Vother_window_scroll_buffer = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5653
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5654 DEFVAR_INT ("next-screen-context-lines", &next_screen_context_lines /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5655 *Number of lines of continuity when scrolling by screenfuls.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5656 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5657 next_screen_context_lines = 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5658
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5659 DEFVAR_INT ("window-min-height", &window_min_height /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5660 *Delete any window less than this tall (including its modeline).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5661 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5662 window_min_height = 4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5663
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5664 DEFVAR_INT ("window-min-width", &window_min_width /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5665 *Delete any window less than this wide.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5666 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5667 window_min_width = 10;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5668
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5669 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5670 int i;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5671
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5672 for (i = 0; i < countof (Vwindow_configuration_free_list); i++)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5673 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5674 Vwindow_configuration_free_list[i] =
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5675 make_lcrecord_list (sizeof_window_config_for_n_windows (i + 1),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5676 &lrecord_window_configuration);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5677 staticpro (&Vwindow_configuration_free_list[i]);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5678 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5679 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5680 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5681
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5682 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5683 specifier_vars_of_window (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5684 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5685 DEFVAR_SPECIFIER ("modeline-shadow-thickness", &Vmodeline_shadow_thickness /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5686 *How thick to draw 3D shadows around modelines.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5687 If this is set to 0, modelines will be the traditional 2D. Sizes above
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5688 10 will be accepted but the maximum thickness that will be drawn is 10.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5689 This is a specifier; use `set-specifier' to change it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5690 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5691 Vmodeline_shadow_thickness = Fmake_specifier (Qinteger);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5692 /* The initial value for modeline-shadow-thickness is 2, but if the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5693 user removes all specifications we provide a fallback value of 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5694 which is probably what was expected. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5695 set_specifier_fallback (Vmodeline_shadow_thickness,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5696 list1 (Fcons (Qnil, Qzero)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5697 Fadd_spec_to_specifier (Vmodeline_shadow_thickness, make_int (2),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5698 Qnil, Qnil, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5699 set_specifier_caching (Vmodeline_shadow_thickness,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5700 slot_offset (struct window,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5701 modeline_shadow_thickness),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5702 modeline_shadow_thickness_changed,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5703 0, 0);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
5704
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5705 DEFVAR_SPECIFIER ("has-modeline-p", &Vhas_modeline_p /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5706 *Whether the modeline should be displayed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5707 This is a specifier; use `set-specifier' to change it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5708 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5709 Vhas_modeline_p = Fmake_specifier (Qboolean);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5710 set_specifier_fallback (Vhas_modeline_p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5711 list1 (Fcons (Qnil, Qt)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5712 set_specifier_caching (Vhas_modeline_p,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5713 slot_offset (struct window,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5714 has_modeline_p),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5715 /* #### It's strange that we need a special
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5716 flag to indicate that the shadow-thickness
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5717 has changed, but not one to indicate that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5718 the modeline has been turned off or on. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5719 some_window_value_changed,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5720 0, 0);
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5721
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 288
diff changeset
5722 DEFVAR_SPECIFIER ("vertical-divider-always-visible-p",
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 288
diff changeset
5723 &Vvertical_divider_always_visible_p /*
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 288
diff changeset
5724 *Should XEmacs always display vertical dividers between windows.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 288
diff changeset
5725
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 288
diff changeset
5726 When this is non-nil, vertical dividers are always shown, and are
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 288
diff changeset
5727 draggable. When it is nil, vertical dividers are shown only when
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 288
diff changeset
5728 there are no scrollbars in between windows, and are not draggable.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 288
diff changeset
5729
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5730 This is a specifier; use `set-specifier' to change it.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5731 */ );
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 288
diff changeset
5732 Vvertical_divider_always_visible_p = Fmake_specifier (Qboolean);
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 288
diff changeset
5733 set_specifier_fallback (Vvertical_divider_always_visible_p,
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5734 list1 (Fcons (Qnil, Qt)));
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 288
diff changeset
5735 set_specifier_caching (Vvertical_divider_always_visible_p,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5736 slot_offset (struct window,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5737 vertical_divider_always_visible_p),
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5738 vertical_divider_changed_in_window,
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5739 0, 0);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5740
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5741 DEFVAR_SPECIFIER ("vertical-divider-shadow-thickness", &Vvertical_divider_shadow_thickness /*
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
5742 *How thick to draw 3D shadows around vertical dividers.
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5743 This is a specifier; use `set-specifier' to change it.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5744 */ );
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5745 Vvertical_divider_shadow_thickness = Fmake_specifier (Qinteger);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5746 set_specifier_fallback (Vvertical_divider_shadow_thickness,
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5747 list1 (Fcons (Qnil, Qzero)));
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5748 Fadd_spec_to_specifier (Vvertical_divider_shadow_thickness, make_int (2),
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5749 Qnil, Qnil, Qnil);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5750 set_specifier_caching (Vvertical_divider_shadow_thickness,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5751 slot_offset (struct window,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5752 vertical_divider_shadow_thickness),
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5753 vertical_divider_changed_in_window,
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5754 0, 0);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5755 DEFVAR_SPECIFIER ("vertical-divider-line-width", &Vvertical_divider_line_width /*
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5756 *The width of the vertical dividers, not including shadows.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5757
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 288
diff changeset
5758 For TTY windows, divider line is always one character wide. When
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5759 instance of this specifier is zero in a TTY window, no divider is
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 288
diff changeset
5760 drawn at all between windows. When non-zero, a one character wide
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5761 divider is displayed.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5762
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5763 This is a specifier; use `set-specifier' to change it.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5764 */ );
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5765
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5766 Vvertical_divider_line_width = Fmake_specifier (Qnatnum);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5767 {
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5768 Lisp_Object fb = Qnil;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5769 #ifdef HAVE_TTY
375
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 373
diff changeset
5770 fb = Fcons (Fcons (list1 (Qtty), make_int (1)), fb);
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5771 #endif
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5772 #ifdef HAVE_X_WINDOWS
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5773 fb = Fcons (Fcons (list1 (Qx), make_int (3)), fb);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5774 #endif
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5775 #ifdef HAVE_MS_WINDOWS
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5776 /* #### This should be made magic and made to obey system settings */
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5777 fb = Fcons (Fcons (list1 (Qmswindows), make_int (3)), fb);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5778 #endif
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5779 set_specifier_fallback (Vvertical_divider_line_width, fb);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5780 }
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5781 set_specifier_caching (Vvertical_divider_line_width,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5782 slot_offset (struct window,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5783 vertical_divider_line_width),
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5784 vertical_divider_changed_in_window,
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5785 0, 0);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5786
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5787 DEFVAR_SPECIFIER ("vertical-divider-spacing", &Vvertical_divider_spacing /*
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5788 *How much space to leave around the vertical dividers.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5789
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5790 In TTY windows, spacing is always zero, and the value of this
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5791 specifier is ignored.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5792
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5793 This is a specifier; use `set-specifier' to change it.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5794 */ );
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5795 Vvertical_divider_spacing = Fmake_specifier (Qnatnum);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5796 {
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5797 Lisp_Object fb = Qnil;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5798 #ifdef HAVE_TTY
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5799 fb = Fcons (Fcons (list1 (Qtty), Qzero), fb);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5800 #endif
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5801 #ifdef HAVE_X_WINDOWS
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5802 /* #### 3D dividers look great on MS Windows with spacing = 0.
286
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
5803 Should not the same value be the fallback under X? - kkm */
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5804 fb = Fcons (Fcons (list1 (Qx), make_int (2)), fb);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5805 #endif
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5806 #ifdef HAVE_MS_WINDOWS
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5807 fb = Fcons (Fcons (list1 (Qmswindows), Qzero), fb);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5808 #endif
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5809 set_specifier_fallback (Vvertical_divider_spacing, fb);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5810 }
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5811 set_specifier_caching (Vvertical_divider_spacing,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5812 slot_offset (struct window,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
5813 vertical_divider_spacing),
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5814 vertical_divider_changed_in_window,
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
5815 0, 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5816 }