annotate src/window.c @ 84505:8bd423438456

(prefer_window_split_horizontally, display_buffer): Revert 2007-09-08 change.
author Romain Francoise <romain@orebokech.com>
date Wed, 12 Sep 2007 11:32:02 +0000
parents 076336b0f3c6
children 1ad5dfad0058
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1 /* Window creation, deletion and examination for GNU Emacs.
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2 Does not include redisplay.
61511
db63a29e7669 (Fset_window_configuration): Be careful when you choose
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 61444
diff changeset
3 Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1996, 1997, 1998, 2000,
75348
3d45362f1d38 Add 2007 to copyright years.
Glenn Morris <rgm@gnu.org>
parents: 75318
diff changeset
4 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6 This file is part of GNU Emacs.
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
8 GNU Emacs is free software; you can redistribute it and/or modify
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
9 it under the terms of the GNU General Public License as published by
78260
922696f363b0 Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents: 78156
diff changeset
10 the Free Software Foundation; either version 3, or (at your option)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
11 any later version.
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
12
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
13 GNU Emacs is distributed in the hope that it will be useful,
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
16 GNU General Public License for more details.
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
17
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
18 You should have received a copy of the GNU General Public License
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
19 along with GNU Emacs; see the file COPYING. If not, write to
64084
a8fa7c632ee4 Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 63953
diff changeset
20 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
a8fa7c632ee4 Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 63953
diff changeset
21 Boston, MA 02110-1301, USA. */
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
22
4696
1fc792473491 Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents: 4570
diff changeset
23 #include <config.h>
82995
039bd6989d29 Portability fixes (now it compiles & runs fine on Solaris).
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
24 #include <stdio.h>
039bd6989d29 Portability fixes (now it compiles & runs fine on Solaris).
Karoly Lorentey <lorentey@elte.hu>
parents: 82990
diff changeset
25
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
26 #include "lisp.h"
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
27 #include "buffer.h"
31117
f390b90e3495 Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents: 30777
diff changeset
28 #include "keyboard.h"
39748
42b7a798ff79 Include keymap.h.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39682
diff changeset
29 #include "keymap.h"
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
30 #include "frame.h"
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
31 #include "window.h"
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
32 #include "commands.h"
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
33 #include "indent.h"
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
34 #include "termchar.h"
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
35 #include "disptab.h"
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
36 #include "dispextern.h"
18657
1dc4d7e374d5 Include blockinput.h.
Richard M. Stallman <rms@gnu.org>
parents: 18493
diff changeset
37 #include "blockinput.h"
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
38 #include "intervals.h"
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
39
21825
697991d2a2c4 Conditionally include xterm.h using HAVE_X_WINDOWS.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21533
diff changeset
40 #ifdef HAVE_X_WINDOWS
21514
fa9ff387d260 Fix -Wimplicit warnings.
Andreas Schwab <schwab@suse.de>
parents: 21227
diff changeset
41 #include "xterm.h"
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
42 #endif /* HAVE_X_WINDOWS */
27633
ab6c81c6edf8 [WINDOWSNT]: Include w32term.h.
Andrew Innes <andrewi@gnu.org>
parents: 27553
diff changeset
43 #ifdef WINDOWSNT
ab6c81c6edf8 [WINDOWSNT]: Include w32term.h.
Andrew Innes <andrewi@gnu.org>
parents: 27553
diff changeset
44 #include "w32term.h"
ab6c81c6edf8 [WINDOWSNT]: Include w32term.h.
Andrew Innes <andrewi@gnu.org>
parents: 27553
diff changeset
45 #endif
27956
8d38dbe58989 [MSDOS]: Include msdos.h (for the definition of FRAME_INTERNAL_BORDER_WIDTH).
Eli Zaretskii <eliz@gnu.org>
parents: 27869
diff changeset
46 #ifdef MSDOS
8d38dbe58989 [MSDOS]: Include msdos.h (for the definition of FRAME_INTERNAL_BORDER_WIDTH).
Eli Zaretskii <eliz@gnu.org>
parents: 27869
diff changeset
47 #include "msdos.h"
8d38dbe58989 [MSDOS]: Include msdos.h (for the definition of FRAME_INTERNAL_BORDER_WIDTH).
Eli Zaretskii <eliz@gnu.org>
parents: 27869
diff changeset
48 #endif
44890
01b93e5e53a7 Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents: 44744
diff changeset
49 #ifdef MAC_OS
32752
923b8d6d8277 Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents: 32710
diff changeset
50 #include "macterm.h"
923b8d6d8277 Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents: 32710
diff changeset
51 #endif
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
52
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
53
23410
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
54 Lisp_Object Qwindowp, Qwindow_live_p, Qwindow_configuration_p;
69209
b9ad41f39bf6 * xselect.c (x_catch_errors_unwind): New function.
Chong Yidong <cyd@stupidchicken.com>
parents: 69104
diff changeset
55 Lisp_Object Qscroll_up, Qscroll_down;
41736
d583dac59ea4 (Qleft_fringe, Qright_fringe): Remove. Now in frame.c.
Jason Rumney <jasonr@gnu.org>
parents: 41719
diff changeset
56 Lisp_Object Qwindow_size_fixed;
44535
ee637a721e86 (window_part): Add ON_LEFT_MARGIN, ON_RIGHT_MARGIN.
Gerd Moellmann <gerd@gnu.org>
parents: 44264
diff changeset
57 extern Lisp_Object Qleft_margin, Qright_margin;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
58
36635
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
59 static int displayed_window_lines P_ ((struct window *));
20351
f69eb2ab4f0f Add prototypes.
Andreas Schwab <schwab@suse.de>
parents: 20090
diff changeset
60 static struct window *decode_window P_ ((Lisp_Object));
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
61 static int count_windows P_ ((struct window *));
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
62 static int get_leaf_windows P_ ((struct window *, struct window **, int));
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
63 static void window_scroll P_ ((Lisp_Object, int, int, int));
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
64 static void window_scroll_pixel_based P_ ((Lisp_Object, int, int, int));
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
65 static void window_scroll_line_based P_ ((Lisp_Object, int, int, int));
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
66 static int window_min_size_1 P_ ((struct window *, int));
78415
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
67 static int window_min_size_2 P_ ((struct window *, int));
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
68 static int window_min_size P_ ((struct window *, int, int, int *));
71396
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
69 static void size_window P_ ((Lisp_Object, int, int, int, int, int));
30362
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
70 static int freeze_window_start P_ ((struct window *, void *));
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
71 static int window_fixed_size_p P_ ((struct window *, int, int));
67328
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
72 static void enlarge_window P_ ((Lisp_Object, int, int));
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
73 static Lisp_Object window_list P_ ((void));
30362
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
74 static int add_window_to_list P_ ((struct window *, void *));
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
75 static int candidate_window_p P_ ((Lisp_Object, Lisp_Object, Lisp_Object,
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
76 Lisp_Object));
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
77 static Lisp_Object next_window P_ ((Lisp_Object, Lisp_Object,
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
78 Lisp_Object, int));
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
79 static void decode_next_window_args P_ ((Lisp_Object *, Lisp_Object *,
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
80 Lisp_Object *));
30362
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
81 static int foreach_window_1 P_ ((struct window *,
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
82 int (* fn) (struct window *, void *),
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
83 void *));
33619
d0482eab29e1 (Fwindow_list): Change parameter list to be XEmacs
Gerd Moellmann <gerd@gnu.org>
parents: 33463
diff changeset
84 static Lisp_Object window_list_1 P_ ((Lisp_Object, Lisp_Object, Lisp_Object));
22187
9509e86a7be5 (window_loop): Pass new arg to Fother_buffer.
Richard M. Stallman <rms@gnu.org>
parents: 22155
diff changeset
85
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
86 /* This is the window in which the terminal's cursor should
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
87 be left when nothing is being done with it. This must
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
88 always be a leaf window, and its buffer is selected by
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
89 the top level editing loop at the end of each command.
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
90
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
91 This value is always the same as
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
92 FRAME_SELECTED_WINDOW (selected_frame). */
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
93
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
94 Lisp_Object selected_window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
95
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
96 /* A list of all windows for use by next_window and Fwindow_list.
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
97 Functions creating or deleting windows should invalidate this cache
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
98 by setting it to nil. */
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
99
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
100 Lisp_Object Vwindow_list;
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
101
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
102 /* The mini-buffer window of the selected frame.
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
103 Note that you cannot test for mini-bufferness of an arbitrary window
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
104 by comparing against this; but you can test for mini-bufferness of
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
105 the selected window. */
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
106
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
107 Lisp_Object minibuf_window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
108
43571
d3b03dea29d4 (Vminibuf_selected_window): New variable.
Kim F. Storm <storm@cua.dk>
parents: 43281
diff changeset
109 /* Non-nil means it is the window whose mode line should be
d3b03dea29d4 (Vminibuf_selected_window): New variable.
Kim F. Storm <storm@cua.dk>
parents: 43281
diff changeset
110 shown as the selected window when the minibuffer is selected. */
d3b03dea29d4 (Vminibuf_selected_window): New variable.
Kim F. Storm <storm@cua.dk>
parents: 43281
diff changeset
111
43594
23cddac4d0b7 (minibuf_selected_window): Renamed from
Kim F. Storm <storm@cua.dk>
parents: 43571
diff changeset
112 Lisp_Object minibuf_selected_window;
43571
d3b03dea29d4 (Vminibuf_selected_window): New variable.
Kim F. Storm <storm@cua.dk>
parents: 43281
diff changeset
113
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
114 /* Non-nil means it is the window for C-M-v to scroll
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
115 when the mini-buffer is selected. */
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
116
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
117 Lisp_Object Vminibuf_scroll_window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
118
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
119 /* Non-nil means this is the buffer whose window C-M-v should scroll. */
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
120
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
121 Lisp_Object Vother_window_scroll_buffer;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
122
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
123 /* Non-nil means it's function to call to display temp buffers. */
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
124
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
125 Lisp_Object Vtemp_buffer_show_function;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
126
59677
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
127 /* Non-zero means line and page scrolling on tall lines (with images)
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
128 does partial scrolling by modifying window-vscroll. */
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
129
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
130 int auto_window_vscroll_p;
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
131
43281
a4ea76de57c9 (Vmode_line_in_non_selected_windows): Removed.
Kim F. Storm <storm@cua.dk>
parents: 43241
diff changeset
132 /* Non-zero means to use mode-line-inactive face in all windows but the
a4ea76de57c9 (Vmode_line_in_non_selected_windows): Removed.
Kim F. Storm <storm@cua.dk>
parents: 43241
diff changeset
133 selected-window and the minibuffer-scroll-window when the
a4ea76de57c9 (Vmode_line_in_non_selected_windows): Removed.
Kim F. Storm <storm@cua.dk>
parents: 43241
diff changeset
134 minibuffer is active. */
a4ea76de57c9 (Vmode_line_in_non_selected_windows): Removed.
Kim F. Storm <storm@cua.dk>
parents: 43241
diff changeset
135 int mode_line_in_non_selected_windows;
43241
5558e7582f1f (Vmode_line_in_non_selected_windows): New variable.
Kim F. Storm <storm@cua.dk>
parents: 42875
diff changeset
136
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
137 /* If a window gets smaller than either of these, it is removed. */
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
138
43713
f92c4d87863a Change defvar_int def and vars to use EMACS_INT instead of just int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 43624
diff changeset
139 EMACS_INT window_min_height;
f92c4d87863a Change defvar_int def and vars to use EMACS_INT instead of just int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 43624
diff changeset
140 EMACS_INT window_min_width;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
141
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
142 /* Nonzero implies Fdisplay_buffer should create windows. */
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
143
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
144 int pop_up_windows;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
145
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
146 /* Nonzero implies make new frames for Fdisplay_buffer. */
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
147
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
148 int pop_up_frames;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
149
30560
e4ba830b426d (display_buffer_reuse_frames): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30446
diff changeset
150 /* Nonzero means reuse existing frames for displaying buffers. */
e4ba830b426d (display_buffer_reuse_frames): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30446
diff changeset
151
e4ba830b426d (display_buffer_reuse_frames): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30446
diff changeset
152 int display_buffer_reuse_frames;
e4ba830b426d (display_buffer_reuse_frames): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30446
diff changeset
153
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
154 /* Non-nil means use this function instead of default */
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
155
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
156 Lisp_Object Vpop_up_frame_function;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
157
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
158 /* Function to call to handle Fdisplay_buffer. */
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
159
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
160 Lisp_Object Vdisplay_buffer_function;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
161
34261
c50a8c8171b7 (Veven_window_heights): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 34097
diff changeset
162 /* Non-nil means that Fdisplay_buffer should even the heights of windows. */
c50a8c8171b7 (Veven_window_heights): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 34097
diff changeset
163
c50a8c8171b7 (Veven_window_heights): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 34097
diff changeset
164 Lisp_Object Veven_window_heights;
c50a8c8171b7 (Veven_window_heights): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 34097
diff changeset
165
7056
0a18af7eb587 Implement special frames for specified buffers.
Richard M. Stallman <rms@gnu.org>
parents: 6982
diff changeset
166 /* List of buffer *names* for buffers that should have their own frames. */
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
167
7056
0a18af7eb587 Implement special frames for specified buffers.
Richard M. Stallman <rms@gnu.org>
parents: 6982
diff changeset
168 Lisp_Object Vspecial_display_buffer_names;
0a18af7eb587 Implement special frames for specified buffers.
Richard M. Stallman <rms@gnu.org>
parents: 6982
diff changeset
169
0a18af7eb587 Implement special frames for specified buffers.
Richard M. Stallman <rms@gnu.org>
parents: 6982
diff changeset
170 /* List of regexps for buffer names that should have their own frames. */
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
171
7056
0a18af7eb587 Implement special frames for specified buffers.
Richard M. Stallman <rms@gnu.org>
parents: 6982
diff changeset
172 Lisp_Object Vspecial_display_regexps;
0a18af7eb587 Implement special frames for specified buffers.
Richard M. Stallman <rms@gnu.org>
parents: 6982
diff changeset
173
0a18af7eb587 Implement special frames for specified buffers.
Richard M. Stallman <rms@gnu.org>
parents: 6982
diff changeset
174 /* Function to pop up a special frame. */
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
175
7056
0a18af7eb587 Implement special frames for specified buffers.
Richard M. Stallman <rms@gnu.org>
parents: 6982
diff changeset
176 Lisp_Object Vspecial_display_function;
0a18af7eb587 Implement special frames for specified buffers.
Richard M. Stallman <rms@gnu.org>
parents: 6982
diff changeset
177
10958
c0d821d95739 (Vsame_window_buffer_names, Vsame_window_regexps): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 10808
diff changeset
178 /* List of buffer *names* for buffers to appear in selected window. */
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
179
10958
c0d821d95739 (Vsame_window_buffer_names, Vsame_window_regexps): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 10808
diff changeset
180 Lisp_Object Vsame_window_buffer_names;
c0d821d95739 (Vsame_window_buffer_names, Vsame_window_regexps): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 10808
diff changeset
181
c0d821d95739 (Vsame_window_buffer_names, Vsame_window_regexps): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 10808
diff changeset
182 /* List of regexps for buffer names to appear in selected window. */
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
183
10958
c0d821d95739 (Vsame_window_buffer_names, Vsame_window_regexps): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 10808
diff changeset
184 Lisp_Object Vsame_window_regexps;
c0d821d95739 (Vsame_window_buffer_names, Vsame_window_regexps): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 10808
diff changeset
185
10461
d3dee0c530d6 (Qtemp_buffer_show_hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents: 10373
diff changeset
186 /* Hook run at end of temp_output_buffer_show. */
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
187
10461
d3dee0c530d6 (Qtemp_buffer_show_hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents: 10373
diff changeset
188 Lisp_Object Qtemp_buffer_show_hook;
d3dee0c530d6 (Qtemp_buffer_show_hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents: 10373
diff changeset
189
14536
12de7dac154b (display_buffer_1): Fix typo in last change.
Roland McGrath <roland@gnu.org>
parents: 14535
diff changeset
190 /* Fdisplay_buffer always splits the largest window
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
191 if that window is more than this high. */
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
192
43713
f92c4d87863a Change defvar_int def and vars to use EMACS_INT instead of just int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 43624
diff changeset
193 EMACS_INT split_height_threshold;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
194
84357
7a92dcd56a24 (Vsplit_window_preferred_function): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 83652
diff changeset
195 /* How to split windows (horizontally/vertically/hybrid). */
7a92dcd56a24 (Vsplit_window_preferred_function): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 83652
diff changeset
196
7a92dcd56a24 (Vsplit_window_preferred_function): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 83652
diff changeset
197 Lisp_Object Vsplit_window_preferred_function;
7a92dcd56a24 (Vsplit_window_preferred_function): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 83652
diff changeset
198
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
199 /* Number of lines of continuity in scrolling by screenfuls. */
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
200
43713
f92c4d87863a Change defvar_int def and vars to use EMACS_INT instead of just int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 43624
diff changeset
201 EMACS_INT next_screen_context_lines;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
202
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
203 /* Incremented for each window created. */
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
204
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
205 static int sequence_number;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
206
14445
e73b37519cdc (Fset_window_buffer): Set buffer temporarily around running
Richard M. Stallman <rms@gnu.org>
parents: 14204
diff changeset
207 /* Nonzero after init_window_once has finished. */
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
208
14445
e73b37519cdc (Fset_window_buffer): Set buffer temporarily around running
Richard M. Stallman <rms@gnu.org>
parents: 14204
diff changeset
209 static int window_initialized;
e73b37519cdc (Fset_window_buffer): Set buffer temporarily around running
Richard M. Stallman <rms@gnu.org>
parents: 14204
diff changeset
210
17281
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
211 /* Hook to run when window config changes. */
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
212
17281
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
213 Lisp_Object Qwindow_configuration_change_hook;
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
214 Lisp_Object Vwindow_configuration_change_hook;
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
215
58083
49b5dabf0ccc Fix commentary.
Kim F. Storm <storm@cua.dk>
parents: 57898
diff changeset
216 /* Non-nil means scroll commands try to put point
16980
3da3a2934be5 (scroll_preserve_screen_position): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16751
diff changeset
217 at the same screen height as previously. */
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
218
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
219 Lisp_Object Vscroll_preserve_screen_position;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
220
67156
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
221 /* Incremented by 1 whenever a window is deleted. */
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
222
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
223 int window_deletion_count;
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
224
69342
12e65aa88734 Declare preserve_y as a static global variable.
Luc Teirlinck <teirllm@auburn.edu>
parents: 69209
diff changeset
225 /* Used by the function window_scroll_pixel_based */
12e65aa88734 Declare preserve_y as a static global variable.
Luc Teirlinck <teirllm@auburn.edu>
parents: 69209
diff changeset
226
69408
aa89c5390b12 Rename preserve_y to window_scroll_pixel_based_preserve_y.
Luc Teirlinck <teirllm@auburn.edu>
parents: 69342
diff changeset
227 static int window_scroll_pixel_based_preserve_y;
69342
12e65aa88734 Declare preserve_y as a static global variable.
Luc Teirlinck <teirllm@auburn.edu>
parents: 69209
diff changeset
228
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
229 #if 0 /* This isn't used anywhere. */
17962
8621a73a8890 (syms_of_window): Initialize inhibit_frame_unsplittable.
Richard M. Stallman <rms@gnu.org>
parents: 17955
diff changeset
230 /* Nonzero means we can split a frame even if it is "unsplittable". */
17955
3140e48262f9 frame-override-unsplittable/inhibit-frame-unsplittable name change.
Simon Marshall <simon@gnu.org>
parents: 17952
diff changeset
231 static int inhibit_frame_unsplittable;
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
232 #endif /* 0 */
17540
eb82c4de9dea (frame_allow_splitting): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17365
diff changeset
233
43713
f92c4d87863a Change defvar_int def and vars to use EMACS_INT instead of just int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 43624
diff changeset
234 extern EMACS_INT scroll_margin;
16980
3da3a2934be5 (scroll_preserve_screen_position): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16751
diff changeset
235
14149
0d67df27dc2a (Fset_window_buffer): Call the window-scroll-functions.
Richard M. Stallman <rms@gnu.org>
parents: 14089
diff changeset
236 extern Lisp_Object Qwindow_scroll_functions, Vwindow_scroll_functions;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
237
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
238 DEFUN ("windowp", Fwindowp, Swindowp, 1, 1, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
239 doc: /* Returns t if OBJECT is a window. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
240 (object)
14089
415aa106fa17 (Fwindowp, Fwindow_live_p, Fother_window, Fenlarge_window, Fshrink_window,
Erik Naggum <erik@naggum.no>
parents: 14027
diff changeset
241 Lisp_Object object;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
242 {
14089
415aa106fa17 (Fwindowp, Fwindow_live_p, Fother_window, Fenlarge_window, Fshrink_window,
Erik Naggum <erik@naggum.no>
parents: 14027
diff changeset
243 return WINDOWP (object) ? Qt : Qnil;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
244 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
245
2210
22d78dbb3cc7 Rename `live-window-p' to `window-live-p', for consistency with
Jim Blandy <jimb@redhat.com>
parents: 2190
diff changeset
246 DEFUN ("window-live-p", Fwindow_live_p, Swindow_live_p, 1, 1, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
247 doc: /* Returns t if OBJECT is a window which is currently visible. */)
14089
415aa106fa17 (Fwindowp, Fwindow_live_p, Fother_window, Fenlarge_window, Fshrink_window,
Erik Naggum <erik@naggum.no>
parents: 14027
diff changeset
248 (object)
415aa106fa17 (Fwindowp, Fwindow_live_p, Fother_window, Fenlarge_window, Fshrink_window,
Erik Naggum <erik@naggum.no>
parents: 14027
diff changeset
249 Lisp_Object object;
1444
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
250 {
35398
ef34ddc12a7d * window.c (Fwindow_live_p): Use WINDOW_LIVE_P.
Gerd Moellmann <gerd@gnu.org>
parents: 35396
diff changeset
251 return WINDOW_LIVE_P (object) ? Qt : Qnil;
1444
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
252 }
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
253
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
254 Lisp_Object
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
255 make_window ()
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
256 {
9970
76910d506a80 (make_dummy_parent, make_window): Use allocate_vectorlike and VECSIZE.
Karl Heuer <kwzh@gnu.org>
parents: 9964
diff changeset
257 Lisp_Object val;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
258 register struct window *p;
36432
28af746067b2 (make_window, make_dummy_parent): Use allocate_window.
Gerd Moellmann <gerd@gnu.org>
parents: 36231
diff changeset
259
28af746067b2 (make_window, make_dummy_parent): Use allocate_window.
Gerd Moellmann <gerd@gnu.org>
parents: 36231
diff changeset
260 p = allocate_window ();
58265
491080266027 Avoid side-effects inside XSETFASTINT's arguments.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58217
diff changeset
261 ++sequence_number;
491080266027 Avoid side-effects inside XSETFASTINT's arguments.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58217
diff changeset
262 XSETFASTINT (p->sequence_number, sequence_number);
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
263 XSETFASTINT (p->left_col, 0);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
264 XSETFASTINT (p->top_line, 0);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
265 XSETFASTINT (p->total_lines, 0);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
266 XSETFASTINT (p->total_cols, 0);
9324
ac6a5691607f (make_window, Fset_window_hscroll, Fset_window_start, set_window_height,
Karl Heuer <kwzh@gnu.org>
parents: 9282
diff changeset
267 XSETFASTINT (p->hscroll, 0);
34747
b17790c2efbf (make_window): Initialize window's min_hscroll.
Gerd Moellmann <gerd@gnu.org>
parents: 34735
diff changeset
268 XSETFASTINT (p->min_hscroll, 0);
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
269 p->orig_top_line = p->orig_total_lines = Qnil;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
270 p->start = Fmake_marker ();
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
271 p->pointm = Fmake_marker ();
9324
ac6a5691607f (make_window, Fset_window_hscroll, Fset_window_start, set_window_height,
Karl Heuer <kwzh@gnu.org>
parents: 9282
diff changeset
272 XSETFASTINT (p->use_time, 0);
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
273 p->frame = Qnil;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
274 p->display_table = Qnil;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
275 p->dedicated = Qnil;
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
276 p->pseudo_window_p = 0;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
277 bzero (&p->cursor, sizeof (p->cursor));
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
278 bzero (&p->last_cursor, sizeof (p->last_cursor));
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
279 bzero (&p->phys_cursor, sizeof (p->phys_cursor));
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
280 p->desired_matrix = p->current_matrix = 0;
56497
8f77d7fac4d6 (make_window): Initialize nrows_scale_factor and
Kim F. Storm <storm@cua.dk>
parents: 56487
diff changeset
281 p->nrows_scale_factor = p->ncols_scale_factor = 1;
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
282 p->phys_cursor_type = -1;
43620
8a5d6239662c (make_window, replace_window): Initialize phys_cursor_width.
Kim F. Storm <storm@cua.dk>
parents: 43597
diff changeset
283 p->phys_cursor_width = -1;
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
284 p->must_be_updated_p = 0;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
285 XSETFASTINT (p->window_end_vpos, 0);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
286 XSETFASTINT (p->window_end_pos, 0);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
287 p->window_end_valid = Qnil;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
288 p->vscroll = 0;
9970
76910d506a80 (make_dummy_parent, make_window): Use allocate_vectorlike and VECSIZE.
Karl Heuer <kwzh@gnu.org>
parents: 9964
diff changeset
289 XSETWINDOW (val, p);
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
290 XSETFASTINT (p->last_point, 0);
25517
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
291 p->frozen_window_start_p = 0;
44744
8c52c2bf3b3f (make_window): Initialize height_fixed_p,
Richard M. Stallman <rms@gnu.org>
parents: 44649
diff changeset
292 p->last_cursor_off_p = p->cursor_off_p = 0;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
293 p->left_margin_cols = Qnil;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
294 p->right_margin_cols = Qnil;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
295 p->left_fringe_width = Qnil;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
296 p->right_fringe_width = Qnil;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
297 p->fringes_outside_margins = Qnil;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
298 p->scroll_bar_width = Qnil;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
299 p->vertical_scroll_bar_type = Qt;
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
300
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
301 Vwindow_list = Qnil;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
302 return val;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
303 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
304
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
305 DEFUN ("selected-window", Fselected_window, Sselected_window, 0, 0, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
306 doc: /* Return the window that the cursor now appears in and commands apply to. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
307 ()
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
308 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
309 return selected_window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
310 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
311
1123
55e605674fb1 * window.c (minibuffer_window): Accept an optional FRAME argument;
Jim Blandy <jimb@redhat.com>
parents: 1049
diff changeset
312 DEFUN ("minibuffer-window", Fminibuffer_window, Sminibuffer_window, 0, 1, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
313 doc: /* Return the window used now for minibuffers.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
314 If the optional argument FRAME is specified, return the minibuffer window
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
315 used by that frame. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
316 (frame)
1123
55e605674fb1 * window.c (minibuffer_window): Accept an optional FRAME argument;
Jim Blandy <jimb@redhat.com>
parents: 1049
diff changeset
317 Lisp_Object frame;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
318 {
1123
55e605674fb1 * window.c (minibuffer_window): Accept an optional FRAME argument;
Jim Blandy <jimb@redhat.com>
parents: 1049
diff changeset
319 if (NILP (frame))
25676
70c6d3f2f3b9 (Fminibuffer_window): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents: 25591
diff changeset
320 frame = selected_frame;
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
321 CHECK_LIVE_FRAME (frame);
1123
55e605674fb1 * window.c (minibuffer_window): Accept an optional FRAME argument;
Jim Blandy <jimb@redhat.com>
parents: 1049
diff changeset
322 return FRAME_MINIBUF_WINDOW (XFRAME (frame));
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
323 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
324
1444
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
325 DEFUN ("window-minibuffer-p", Fwindow_minibuffer_p, Swindow_minibuffer_p, 0, 1, 0,
53703
7e4022bbad27 (Fwindow_minibuffer_p): Doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53492
diff changeset
326 doc: /* Returns non-nil if WINDOW is a minibuffer window.
7e4022bbad27 (Fwindow_minibuffer_p): Doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents: 53492
diff changeset
327 WINDOW defaults to the selected window. */)
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
328 (window)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
329 Lisp_Object window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
330 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
331 struct window *w = decode_window (window);
32871
361743be1fa8 (pos_fully_visible_p): Removed.
Gerd Moellmann <gerd@gnu.org>
parents: 32824
diff changeset
332 return MINI_WINDOW_P (w) ? Qt : Qnil;
32710
cd7dca826a03 (pos_fully_visible_in_window_p):
Miles Bader <miles@gnu.org>
parents: 32426
diff changeset
333 }
cd7dca826a03 (pos_fully_visible_in_window_p):
Miles Bader <miles@gnu.org>
parents: 32426
diff changeset
334
cd7dca826a03 (pos_fully_visible_in_window_p):
Miles Bader <miles@gnu.org>
parents: 32426
diff changeset
335
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
336 DEFUN ("pos-visible-in-window-p", Fpos_visible_in_window_p,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
337 Spos_visible_in_window_p, 0, 3, 0,
56487
338a1d04223d (Fpos_visible_in_window_p, Fset_window_hscroll)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56456
diff changeset
338 doc: /* Return non-nil if position POS is currently on the frame in WINDOW.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
339 Return nil if that position is scrolled vertically out of view.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
340 If a character is only partially visible, nil is returned, unless the
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
341 optional argument PARTIALLY is non-nil.
56487
338a1d04223d (Fpos_visible_in_window_p, Fset_window_hscroll)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56456
diff changeset
342 If POS is only out of view because of horizontal scrolling, return non-nil.
73013
6ebbc42247b3 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72998
diff changeset
343 If POS is t, it specifies the position of the last visible glyph in WINDOW.
55027
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
344 POS defaults to point in WINDOW; WINDOW defaults to the selected window.
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
345
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
346 If POS is visible, return t if PARTIALLY is nil; if PARTIALLY is non-nil,
72663
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
347 return value is a list of 2 or 6 elements (X Y [RTOP RBOT ROWH VPOS]),
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
348 where X and Y are the pixel coordinates relative to the top left corner
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
349 of the window. The remaining elements are omitted if the character after
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
350 POS is fully visible; otherwise, RTOP and RBOT are the number of pixels
73013
6ebbc42247b3 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72998
diff changeset
351 off-window at the top and bottom of the row, ROWH is the height of the
72990
2d3156eeb678 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72955
diff changeset
352 display row, and VPOS is the row number (0-based) containing POS. */)
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
353 (pos, window, partially)
34381
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
354 Lisp_Object pos, window, partially;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
355 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
356 register struct window *w;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
357 register int posint;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
358 register struct buffer *buf;
25300
096b78b6cc2e (Fpos_visible_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 25268
diff changeset
359 struct text_pos top;
55027
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
360 Lisp_Object in_window = Qnil;
72663
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
361 int rtop, rbot, rowh, vpos, fully_p = 1;
55027
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
362 int x, y;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
363
32937
dc58e218a878 (Fpos_visible_in_window_p):
Miles Bader <miles@gnu.org>
parents: 32928
diff changeset
364 w = decode_window (window);
dc58e218a878 (Fpos_visible_in_window_p):
Miles Bader <miles@gnu.org>
parents: 32928
diff changeset
365 buf = XBUFFER (w->buffer);
dc58e218a878 (Fpos_visible_in_window_p):
Miles Bader <miles@gnu.org>
parents: 32928
diff changeset
366 SET_TEXT_POS_FROM_MARKER (top, w->start);
dc58e218a878 (Fpos_visible_in_window_p):
Miles Bader <miles@gnu.org>
parents: 32928
diff changeset
367
73013
6ebbc42247b3 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72998
diff changeset
368 if (EQ (pos, Qt))
6ebbc42247b3 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72998
diff changeset
369 posint = -1;
6ebbc42247b3 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72998
diff changeset
370 else if (!NILP (pos))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
371 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
372 CHECK_NUMBER_COERCE_MARKER (pos);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
373 posint = XINT (pos);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
374 }
32937
dc58e218a878 (Fpos_visible_in_window_p):
Miles Bader <miles@gnu.org>
parents: 32928
diff changeset
375 else if (w == XWINDOW (selected_window))
dc58e218a878 (Fpos_visible_in_window_p):
Miles Bader <miles@gnu.org>
parents: 32928
diff changeset
376 posint = PT;
dc58e218a878 (Fpos_visible_in_window_p):
Miles Bader <miles@gnu.org>
parents: 32928
diff changeset
377 else
dc58e218a878 (Fpos_visible_in_window_p):
Miles Bader <miles@gnu.org>
parents: 32928
diff changeset
378 posint = XMARKER (w->pointm)->charpos;
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
379
55027
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
380 /* If position is above window start or outside buffer boundaries,
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
381 or if window start is out of range, position is not visible. */
73013
6ebbc42247b3 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72998
diff changeset
382 if ((EQ (pos, Qt)
6ebbc42247b3 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72998
diff changeset
383 || (posint >= CHARPOS (top) && posint <= BUF_ZV (buf)))
55027
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
384 && CHARPOS (top) >= BUF_BEGV (buf)
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
385 && CHARPOS (top) <= BUF_ZV (buf)
72663
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
386 && pos_visible_p (w, posint, &x, &y, &rtop, &rbot, &rowh, &vpos)
59677
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
387 && (fully_p = !rtop && !rbot, (!NILP (partially) || fully_p)))
55027
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
388 in_window = Qt;
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
389
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
390 if (!NILP (in_window) && !NILP (partially))
72663
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
391 {
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
392 Lisp_Object part = Qnil;
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
393 if (!fully_p)
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
394 part = list4 (make_number (rtop), make_number (rbot),
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
395 make_number (rowh), make_number (vpos));
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
396 in_window = Fcons (make_number (x),
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
397 Fcons (make_number (y), part));
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
398 }
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
399
25300
096b78b6cc2e (Fpos_visible_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 25268
diff changeset
400 return in_window;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
401 }
32871
361743be1fa8 (pos_fully_visible_p): Removed.
Gerd Moellmann <gerd@gnu.org>
parents: 32824
diff changeset
402
72955
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
403 DEFUN ("window-line-height", Fwindow_line_height,
72990
2d3156eeb678 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72955
diff changeset
404 Swindow_line_height, 0, 2, 0,
72955
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
405 doc: /* Return height in pixels of text line LINE in window WINDOW.
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
406 If WINDOW is nil or omitted, use selected window.
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
407
72990
2d3156eeb678 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72955
diff changeset
408 Return height of current line if LINE is omitted or nil. Return height of
2d3156eeb678 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72955
diff changeset
409 header or mode line if LINE is `header-line' and `mode-line'.
2d3156eeb678 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72955
diff changeset
410 Otherwise, LINE is a text line number starting from 0. A negative number
2d3156eeb678 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72955
diff changeset
411 counts from the end of the window.
2d3156eeb678 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72955
diff changeset
412
2d3156eeb678 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72955
diff changeset
413 Value is a list (HEIGHT VPOS YPOS OFFBOT), where HEIGHT is the height
72955
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
414 in pixels of the visible part of the line, VPOS and YPOS are the
73018
aab836d32a11 (Fpos_visible_in_window_p): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 73013
diff changeset
415 vertical position in lines and pixels of the line, relative to the top
73013
6ebbc42247b3 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72998
diff changeset
416 of the first text line, and OFFBOT is the number of off-window pixels at
73018
aab836d32a11 (Fpos_visible_in_window_p): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 73013
diff changeset
417 the bottom of the text line. If there are off-window pixels at the top
aab836d32a11 (Fpos_visible_in_window_p): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 73013
diff changeset
418 of the (first) text line, YPOS is negative.
72955
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
419
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
420 Return nil if window display is not up-to-date. In that case, use
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
421 `pos-visible-in-window-p' to obtain the information. */)
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
422 (line, window)
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
423 Lisp_Object line, window;
72907
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
424 {
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
425 register struct window *w;
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
426 register struct buffer *b;
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
427 struct glyph_row *row, *end_row;
72955
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
428 int max_y, crop, i, n;
72907
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
429
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
430 w = decode_window (window);
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
431
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
432 if (noninteractive
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
433 || w->pseudo_window_p)
72990
2d3156eeb678 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72955
diff changeset
434 return Qnil;
72907
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
435
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
436 CHECK_BUFFER (w->buffer);
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
437 b = XBUFFER (w->buffer);
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
438
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
439 /* Fail if current matrix is not up-to-date. */
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
440 if (NILP (w->window_end_valid)
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
441 || current_buffer->clip_changed
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
442 || current_buffer->prevent_redisplay_optimizations_p
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
443 || XFASTINT (w->last_modified) < BUF_MODIFF (b)
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
444 || XFASTINT (w->last_overlay_modified) < BUF_OVERLAY_MODIFF (b))
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
445 return Qnil;
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
446
72990
2d3156eeb678 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72955
diff changeset
447 if (NILP (line))
2d3156eeb678 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72955
diff changeset
448 {
2d3156eeb678 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72955
diff changeset
449 i = w->cursor.vpos;
2d3156eeb678 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72955
diff changeset
450 if (i < 0 || i >= w->current_matrix->nrows
2d3156eeb678 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72955
diff changeset
451 || (row = MATRIX_ROW (w->current_matrix, i), !row->enabled_p))
2d3156eeb678 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72955
diff changeset
452 return Qnil;
2d3156eeb678 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72955
diff changeset
453 max_y = window_text_bottom_y (w);
2d3156eeb678 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72955
diff changeset
454 goto found_row;
2d3156eeb678 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72955
diff changeset
455 }
2d3156eeb678 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72955
diff changeset
456
72955
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
457 if (EQ (line, Qheader_line))
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
458 {
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
459 if (!WINDOW_WANTS_HEADER_LINE_P (w))
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
460 return Qnil;
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
461 row = MATRIX_HEADER_LINE_ROW (w->current_matrix);
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
462 if (!row->enabled_p)
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
463 return Qnil;
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
464 return list4 (make_number (row->height),
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
465 make_number (0), make_number (0),
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
466 make_number (0));
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
467 }
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
468
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
469 if (EQ (line, Qmode_line))
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
470 {
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
471 row = MATRIX_MODE_LINE_ROW (w->current_matrix);
72907
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
472 if (!row->enabled_p)
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
473 return Qnil;
72955
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
474 return list4 (make_number (row->height),
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
475 make_number (0), /* not accurate */
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
476 make_number (WINDOW_HEADER_LINE_HEIGHT (w)
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
477 + window_text_bottom_y (w)),
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
478 make_number (0));
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
479 }
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
480
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
481 CHECK_NUMBER (line);
72990
2d3156eeb678 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72955
diff changeset
482 n = XINT (line);
72955
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
483
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
484 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
485 end_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
486 max_y = window_text_bottom_y (w);
72990
2d3156eeb678 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72955
diff changeset
487 i = 0;
72955
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
488
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
489 while ((n < 0 || i < n)
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
490 && row <= end_row && row->enabled_p
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
491 && row->y + row->height < max_y)
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
492 row++, i++;
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
493
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
494 if (row > end_row || !row->enabled_p)
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
495 return Qnil;
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
496
72990
2d3156eeb678 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72955
diff changeset
497 if (++n < 0)
72955
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
498 {
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
499 if (-n > i)
72907
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
500 return Qnil;
72990
2d3156eeb678 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72955
diff changeset
501 row += n;
2d3156eeb678 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72955
diff changeset
502 i += n;
2d3156eeb678 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72955
diff changeset
503 }
2d3156eeb678 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72955
diff changeset
504
2d3156eeb678 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72955
diff changeset
505 found_row:
72955
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
506 crop = max (0, (row->y + row->height) - max_y);
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
507 return list4 (make_number (row->height + min (0, row->y) - crop),
72990
2d3156eeb678 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72955
diff changeset
508 make_number (i),
72955
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
509 make_number (row->y),
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
510 make_number (crop));
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
511 }
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
512
72907
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
513
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
514
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
515 static struct window *
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
516 decode_window (window)
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
517 register Lisp_Object window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
518 {
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
519 if (NILP (window))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
520 return XWINDOW (selected_window);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
521
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
522 CHECK_LIVE_WINDOW (window);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
523 return XWINDOW (window);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
524 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
525
53492
6861a5210fdb (decode_any_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 53143
diff changeset
526 static struct window *
6861a5210fdb (decode_any_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 53143
diff changeset
527 decode_any_window (window)
6861a5210fdb (decode_any_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 53143
diff changeset
528 register Lisp_Object window;
6861a5210fdb (decode_any_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 53143
diff changeset
529 {
6861a5210fdb (decode_any_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 53143
diff changeset
530 if (NILP (window))
6861a5210fdb (decode_any_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 53143
diff changeset
531 return XWINDOW (selected_window);
6861a5210fdb (decode_any_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 53143
diff changeset
532
6861a5210fdb (decode_any_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 53143
diff changeset
533 CHECK_WINDOW (window);
6861a5210fdb (decode_any_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 53143
diff changeset
534 return XWINDOW (window);
6861a5210fdb (decode_any_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 53143
diff changeset
535 }
6861a5210fdb (decode_any_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 53143
diff changeset
536
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
537 DEFUN ("window-buffer", Fwindow_buffer, Swindow_buffer, 0, 1, 0,
56393
8eb84bf840a8 (Fwindow_buffer, Fother_window, Fget_lru_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56174
diff changeset
538 doc: /* Return the buffer that WINDOW is displaying.
8eb84bf840a8 (Fwindow_buffer, Fother_window, Fget_lru_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56174
diff changeset
539 WINDOW defaults to the selected window. */)
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
540 (window)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
541 Lisp_Object window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
542 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
543 return decode_window (window)->buffer;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
544 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
545
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
546 DEFUN ("window-height", Fwindow_height, Swindow_height, 0, 1, 0,
75753
5e34b32b9b4c (Fwindow_height, Fwindow_hscroll)
Eli Zaretskii <eliz@gnu.org>
parents: 75348
diff changeset
547 doc: /* Return the number of lines in WINDOW (including its mode line).
5e34b32b9b4c (Fwindow_height, Fwindow_hscroll)
Eli Zaretskii <eliz@gnu.org>
parents: 75348
diff changeset
548 WINDOW defaults to the selected window. */)
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
549 (window)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
550 Lisp_Object window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
551 {
53492
6861a5210fdb (decode_any_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 53143
diff changeset
552 return decode_any_window (window)->total_lines;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
553 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
554
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
555 DEFUN ("window-width", Fwindow_width, Swindow_width, 0, 1, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
556 doc: /* Return the number of display columns in WINDOW.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
557 This is the width that is usable columns available for text in WINDOW.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
558 If you want to find out how many columns WINDOW takes up,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
559 use (let ((edges (window-edges))) (- (nth 2 edges) (nth 0 edges))). */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
560 (window)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
561 Lisp_Object window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
562 {
53492
6861a5210fdb (decode_any_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 53143
diff changeset
563 return make_number (window_box_text_cols (decode_any_window (window)));
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
564 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
565
78415
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
566 DEFUN ("window-full-width-p", Fwindow_full_width_p, Swindow_full_width_p, 0, 1, 0,
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
567 doc: /* Return t if WINDOW is as wide as its frame.
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
568 WINDOW defaults to the selected window. */)
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
569 (window)
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
570 Lisp_Object window;
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
571 {
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
572 return WINDOW_FULL_WIDTH_P (decode_any_window (window)) ? Qt : Qnil;
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
573 }
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
574
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
575 DEFUN ("window-hscroll", Fwindow_hscroll, Swindow_hscroll, 0, 1, 0,
75753
5e34b32b9b4c (Fwindow_height, Fwindow_hscroll)
Eli Zaretskii <eliz@gnu.org>
parents: 75348
diff changeset
576 doc: /* Return the number of columns by which WINDOW is scrolled from left margin.
5e34b32b9b4c (Fwindow_height, Fwindow_hscroll)
Eli Zaretskii <eliz@gnu.org>
parents: 75348
diff changeset
577 WINDOW defaults to the selected window. */)
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
578 (window)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
579 Lisp_Object window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
580 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
581 return decode_window (window)->hscroll;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
582 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
583
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
584 DEFUN ("set-window-hscroll", Fset_window_hscroll, Sset_window_hscroll, 2, 2, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
585 doc: /* Set number of columns WINDOW is scrolled from left margin to NCOL.
56487
338a1d04223d (Fpos_visible_in_window_p, Fset_window_hscroll)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56456
diff changeset
586 Return NCOL. NCOL should be zero or positive.
45645
6e2471fb2c1c (Fset_window_hscroll): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 45584
diff changeset
587
6e2471fb2c1c (Fset_window_hscroll): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 45584
diff changeset
588 Note that if `automatic-hscrolling' is non-nil, you cannot scroll the
73013
6ebbc42247b3 (Fset_window_hscroll, Fpos_visible_in_window_p):
Kim F. Storm <storm@cua.dk>
parents: 72998
diff changeset
589 window so that the location of point moves off-window. */)
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
590 (window, ncol)
34747
b17790c2efbf (make_window): Initialize window's min_hscroll.
Gerd Moellmann <gerd@gnu.org>
parents: 34735
diff changeset
591 Lisp_Object window, ncol;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
592 {
34747
b17790c2efbf (make_window): Initialize window's min_hscroll.
Gerd Moellmann <gerd@gnu.org>
parents: 34735
diff changeset
593 struct window *w = decode_window (window);
b17790c2efbf (make_window): Initialize window's min_hscroll.
Gerd Moellmann <gerd@gnu.org>
parents: 34735
diff changeset
594 int hscroll;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
595
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
596 CHECK_NUMBER (ncol);
34747
b17790c2efbf (make_window): Initialize window's min_hscroll.
Gerd Moellmann <gerd@gnu.org>
parents: 34735
diff changeset
597 hscroll = max (0, XINT (ncol));
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
598
34747
b17790c2efbf (make_window): Initialize window's min_hscroll.
Gerd Moellmann <gerd@gnu.org>
parents: 34735
diff changeset
599 /* Prevent redisplay shortcuts when changing the hscroll. */
b17790c2efbf (make_window): Initialize window's min_hscroll.
Gerd Moellmann <gerd@gnu.org>
parents: 34735
diff changeset
600 if (XINT (w->hscroll) != hscroll)
25375
919b568e4108 (Fset_window_hscroll): Set
Gerd Moellmann <gerd@gnu.org>
parents: 25356
diff changeset
601 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
602
35341
f3eb82d93802 (Fset_window_hscroll): Don't set window's min_hscroll
Gerd Moellmann <gerd@gnu.org>
parents: 35126
diff changeset
603 w->hscroll = make_number (hscroll);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
604 return ncol;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
605 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
606
13457
8a1986b2cc76 (Fwindow_redisplay_end_trigger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13418
diff changeset
607 DEFUN ("window-redisplay-end-trigger", Fwindow_redisplay_end_trigger,
8a1986b2cc76 (Fwindow_redisplay_end_trigger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13418
diff changeset
608 Swindow_redisplay_end_trigger, 0, 1, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
609 doc: /* Return WINDOW's redisplay end trigger value.
75753
5e34b32b9b4c (Fwindow_height, Fwindow_hscroll)
Eli Zaretskii <eliz@gnu.org>
parents: 75348
diff changeset
610 WINDOW defaults to the selected window.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
611 See `set-window-redisplay-end-trigger' for more information. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
612 (window)
13457
8a1986b2cc76 (Fwindow_redisplay_end_trigger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13418
diff changeset
613 Lisp_Object window;
8a1986b2cc76 (Fwindow_redisplay_end_trigger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13418
diff changeset
614 {
8a1986b2cc76 (Fwindow_redisplay_end_trigger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13418
diff changeset
615 return decode_window (window)->redisplay_end_trigger;
8a1986b2cc76 (Fwindow_redisplay_end_trigger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13418
diff changeset
616 }
8a1986b2cc76 (Fwindow_redisplay_end_trigger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13418
diff changeset
617
8a1986b2cc76 (Fwindow_redisplay_end_trigger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13418
diff changeset
618 DEFUN ("set-window-redisplay-end-trigger", Fset_window_redisplay_end_trigger,
8a1986b2cc76 (Fwindow_redisplay_end_trigger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13418
diff changeset
619 Sset_window_redisplay_end_trigger, 2, 2, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
620 doc: /* Set WINDOW's redisplay end trigger value to VALUE.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
621 VALUE should be a buffer position (typically a marker) or nil.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
622 If it is a buffer position, then if redisplay in WINDOW reaches a position
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
623 beyond VALUE, the functions in `redisplay-end-trigger-functions' are called
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
624 with two arguments: WINDOW, and the end trigger value.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
625 Afterwards the end-trigger value is reset to nil. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
626 (window, value)
13457
8a1986b2cc76 (Fwindow_redisplay_end_trigger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13418
diff changeset
627 register Lisp_Object window, value;
8a1986b2cc76 (Fwindow_redisplay_end_trigger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13418
diff changeset
628 {
8a1986b2cc76 (Fwindow_redisplay_end_trigger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13418
diff changeset
629 register struct window *w;
8a1986b2cc76 (Fwindow_redisplay_end_trigger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13418
diff changeset
630
8a1986b2cc76 (Fwindow_redisplay_end_trigger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13418
diff changeset
631 w = decode_window (window);
8a1986b2cc76 (Fwindow_redisplay_end_trigger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13418
diff changeset
632 w->redisplay_end_trigger = value;
8a1986b2cc76 (Fwindow_redisplay_end_trigger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13418
diff changeset
633 return value;
8a1986b2cc76 (Fwindow_redisplay_end_trigger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13418
diff changeset
634 }
8a1986b2cc76 (Fwindow_redisplay_end_trigger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13418
diff changeset
635
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
636 DEFUN ("window-edges", Fwindow_edges, Swindow_edges, 0, 1, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
637 doc: /* Return a list of the edge coordinates of WINDOW.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
638 \(LEFT TOP RIGHT BOTTOM), all relative to 0, 0 at top left corner of frame.
51427
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
639 RIGHT is one more than the rightmost column occupied by WINDOW,
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
640 and BOTTOM is one more than the bottommost row occupied by WINDOW.
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
641 The edges include the space used by the window's scroll bar,
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
642 display margins, fringes, header line, and mode line, if it has them.
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
643 To get the edges of the actual text area, use `window-inside-edges'. */)
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
644 (window)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
645 Lisp_Object window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
646 {
53492
6861a5210fdb (decode_any_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 53143
diff changeset
647 register struct window *w = decode_any_window (window);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
648
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
649 return Fcons (make_number (WINDOW_LEFT_EDGE_COL (w)),
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
650 Fcons (make_number (WINDOW_TOP_EDGE_LINE (w)),
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
651 Fcons (make_number (WINDOW_RIGHT_EDGE_COL (w)),
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
652 Fcons (make_number (WINDOW_BOTTOM_EDGE_LINE (w)),
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
653 Qnil))));
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
654 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
655
51427
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
656 DEFUN ("window-pixel-edges", Fwindow_pixel_edges, Swindow_pixel_edges, 0, 1, 0,
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
657 doc: /* Return a list of the edge pixel coordinates of WINDOW.
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
658 \(LEFT TOP RIGHT BOTTOM), all relative to 0, 0 at top left corner of frame.
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
659 RIGHT is one more than the rightmost x position occupied by WINDOW,
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
660 and BOTTOM is one more than the bottommost y position occupied by WINDOW.
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
661 The pixel edges include the space used by the window's scroll bar,
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
662 display margins, fringes, header line, and mode line, if it has them.
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
663 To get the edges of the actual text area, use `window-inside-pixel-edges'. */)
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
664 (window)
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
665 Lisp_Object window;
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
666 {
53492
6861a5210fdb (decode_any_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 53143
diff changeset
667 register struct window *w = decode_any_window (window);
51427
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
668
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
669 return Fcons (make_number (WINDOW_LEFT_EDGE_X (w)),
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
670 Fcons (make_number (WINDOW_TOP_EDGE_Y (w)),
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
671 Fcons (make_number (WINDOW_RIGHT_EDGE_X (w)),
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
672 Fcons (make_number (WINDOW_BOTTOM_EDGE_Y (w)),
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
673 Qnil))));
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
674 }
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
675
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
676 DEFUN ("window-inside-edges", Fwindow_inside_edges, Swindow_inside_edges, 0, 1, 0,
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
677 doc: /* Return a list of the edge coordinates of WINDOW.
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
678 \(LEFT TOP RIGHT BOTTOM), all relative to 0, 0 at top left corner of frame.
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
679 RIGHT is one more than the rightmost column used by text in WINDOW,
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
680 and BOTTOM is one more than the bottommost row used by text in WINDOW.
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
681 The inside edges do not include the space used by the window's scroll bar,
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
682 display margins, fringes, header line, and/or mode line. */)
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
683 (window)
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
684 Lisp_Object window;
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
685 {
53492
6861a5210fdb (decode_any_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 53143
diff changeset
686 register struct window *w = decode_any_window (window);
51427
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
687
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
688 return list4 (make_number (WINDOW_BOX_LEFT_EDGE_COL (w)
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
689 + WINDOW_LEFT_MARGIN_COLS (w)
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
690 + WINDOW_LEFT_FRINGE_COLS (w)),
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
691 make_number (WINDOW_TOP_EDGE_LINE (w)
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
692 + WINDOW_HEADER_LINE_LINES (w)),
62544
5283bd0173e6 (Fwindow_inside_edges, Fwindow_inside_pixel_edges): Correct the right value.
Lute Kamstra <lute@gnu.org>
parents: 61871
diff changeset
693 make_number (WINDOW_BOX_RIGHT_EDGE_COL (w)
51427
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
694 - WINDOW_RIGHT_MARGIN_COLS (w)
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
695 - WINDOW_RIGHT_FRINGE_COLS (w)),
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
696 make_number (WINDOW_BOTTOM_EDGE_LINE (w)
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
697 - WINDOW_MODE_LINE_LINES (w)));
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
698 }
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
699
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
700 DEFUN ("window-inside-pixel-edges", Fwindow_inside_pixel_edges, Swindow_inside_pixel_edges, 0, 1, 0,
56487
338a1d04223d (Fpos_visible_in_window_p, Fset_window_hscroll)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56456
diff changeset
701 doc: /* Return a list of the edge pixel coordinates of WINDOW.
51427
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
702 \(LEFT TOP RIGHT BOTTOM), all relative to 0, 0 at top left corner of frame.
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
703 RIGHT is one more than the rightmost x position used by text in WINDOW,
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
704 and BOTTOM is one more than the bottommost y position used by text in WINDOW.
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
705 The inside edges do not include the space used by the window's scroll bar,
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
706 display margins, fringes, header line, and/or mode line. */)
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
707 (window)
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
708 Lisp_Object window;
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
709 {
53492
6861a5210fdb (decode_any_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 53143
diff changeset
710 register struct window *w = decode_any_window (window);
51427
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
711
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
712 return list4 (make_number (WINDOW_BOX_LEFT_EDGE_X (w)
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
713 + WINDOW_LEFT_MARGIN_WIDTH (w)
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
714 + WINDOW_LEFT_FRINGE_WIDTH (w)),
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
715 make_number (WINDOW_TOP_EDGE_Y (w)
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
716 + WINDOW_HEADER_LINE_HEIGHT (w)),
62544
5283bd0173e6 (Fwindow_inside_edges, Fwindow_inside_pixel_edges): Correct the right value.
Lute Kamstra <lute@gnu.org>
parents: 61871
diff changeset
717 make_number (WINDOW_BOX_RIGHT_EDGE_X (w)
51427
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
718 - WINDOW_RIGHT_MARGIN_WIDTH (w)
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
719 - WINDOW_RIGHT_FRINGE_WIDTH (w)),
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
720 make_number (WINDOW_BOTTOM_EDGE_Y (w)
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
721 - WINDOW_MODE_LINE_HEIGHT (w)));
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
722 }
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
723
25315
79bb4978ab2e (Fcoordinates_in_window_p): Return `left-bitmap-area'
Gerd Moellmann <gerd@gnu.org>
parents: 25300
diff changeset
724 /* Test if the character at column *X, row *Y is within window W.
50233
e25cbad07868 * window.c (enum window_part): Move to dispextern.h.
Kim F. Storm <storm@cua.dk>
parents: 49836
diff changeset
725 If it is not, return ON_NOTHING;
432
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
726 if it is in the window's text area,
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
727 set *x and *y to its location relative to the upper left corner
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
728 of the window, and
50233
e25cbad07868 * window.c (enum window_part): Move to dispextern.h.
Kim F. Storm <storm@cua.dk>
parents: 49836
diff changeset
729 return ON_TEXT;
e25cbad07868 * window.c (enum window_part): Move to dispextern.h.
Kim F. Storm <storm@cua.dk>
parents: 49836
diff changeset
730 if it is on the window's modeline, return ON_MODE_LINE;
432
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
731 if it is on the border between the window and its right sibling,
50233
e25cbad07868 * window.c (enum window_part): Move to dispextern.h.
Kim F. Storm <storm@cua.dk>
parents: 49836
diff changeset
732 return ON_VERTICAL_BORDER.
56542
6d2d9477f39e (coordinates_in_window): Return ON_SCROLL_BAR
Richard M. Stallman <rms@gnu.org>
parents: 56540
diff changeset
733 if it is on a scroll bar,
6d2d9477f39e (coordinates_in_window): Return ON_SCROLL_BAR
Richard M. Stallman <rms@gnu.org>
parents: 56540
diff changeset
734 return ON_SCROLL_BAR.
50233
e25cbad07868 * window.c (enum window_part): Move to dispextern.h.
Kim F. Storm <storm@cua.dk>
parents: 49836
diff changeset
735 if it is on the window's top line, return ON_HEADER_LINE;
41127
d7459915009d Fringe cleanup.
Kim F. Storm <storm@cua.dk>
parents: 40656
diff changeset
736 if it is in left or right fringe of the window,
50233
e25cbad07868 * window.c (enum window_part): Move to dispextern.h.
Kim F. Storm <storm@cua.dk>
parents: 49836
diff changeset
737 return ON_LEFT_FRINGE or ON_RIGHT_FRINGE, and convert *X and *Y
e25cbad07868 * window.c (enum window_part): Move to dispextern.h.
Kim F. Storm <storm@cua.dk>
parents: 49836
diff changeset
738 to window-relative coordinates;
44535
ee637a721e86 (window_part): Add ON_LEFT_MARGIN, ON_RIGHT_MARGIN.
Gerd Moellmann <gerd@gnu.org>
parents: 44264
diff changeset
739 if it is in the marginal area to the left/right of the window,
50233
e25cbad07868 * window.c (enum window_part): Move to dispextern.h.
Kim F. Storm <storm@cua.dk>
parents: 49836
diff changeset
740 return ON_LEFT_MARGIN or ON_RIGHT_MARGIN, and convert *X and *Y
e25cbad07868 * window.c (enum window_part): Move to dispextern.h.
Kim F. Storm <storm@cua.dk>
parents: 49836
diff changeset
741 to window-relative coordinates.
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
742
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
743 X and Y are frame relative pixel coordinates. */
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
744
35800
fe8277459ef3 (enum window_part): New enumeration.
Gerd Moellmann <gerd@gnu.org>
parents: 35772
diff changeset
745 static enum window_part
432
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
746 coordinates_in_window (w, x, y)
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
747 register struct window *w;
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
748 register int *x, *y;
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
749 {
34640
263ac9dec8b8 (coordinates_in_window): Fix computation for
Gerd Moellmann <gerd@gnu.org>
parents: 34615
diff changeset
750 struct frame *f = XFRAME (WINDOW_FRAME (w));
263ac9dec8b8 (coordinates_in_window): Fix computation for
Gerd Moellmann <gerd@gnu.org>
parents: 34615
diff changeset
751 int left_x, right_x, top_y, bottom_y;
35800
fe8277459ef3 (enum window_part): New enumeration.
Gerd Moellmann <gerd@gnu.org>
parents: 35772
diff changeset
752 enum window_part part;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
753 int ux = FRAME_COLUMN_WIDTH (f);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
754 int x0 = WINDOW_LEFT_EDGE_X (w);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
755 int x1 = WINDOW_RIGHT_EDGE_X (w);
36127
f03dfbb443ce (coordinates_in_window): Increase width of area
Gerd Moellmann <gerd@gnu.org>
parents: 36068
diff changeset
756 /* The width of the area where the vertical line can be dragged.
f03dfbb443ce (coordinates_in_window): Increase width of area
Gerd Moellmann <gerd@gnu.org>
parents: 36068
diff changeset
757 (Between mode lines for instance. */
f03dfbb443ce (coordinates_in_window): Increase width of area
Gerd Moellmann <gerd@gnu.org>
parents: 36068
diff changeset
758 int grabbable_width = ux;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
759 int lmargin_width, rmargin_width, text_left, text_right;
34640
263ac9dec8b8 (coordinates_in_window): Fix computation for
Gerd Moellmann <gerd@gnu.org>
parents: 34615
diff changeset
760
28918
e42cd428f056 (coordinates_in_window): Subtract 1 when computing right_x.
Eli Zaretskii <eliz@gnu.org>
parents: 28726
diff changeset
761 /* In what's below, we subtract 1 when computing right_x because we
e42cd428f056 (coordinates_in_window): Subtract 1 when computing right_x.
Eli Zaretskii <eliz@gnu.org>
parents: 28726
diff changeset
762 want the rightmost pixel, which is given by left_pixel+width-1. */
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
763 if (w->pseudo_window_p)
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
764 {
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
765 left_x = 0;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
766 right_x = WINDOW_TOTAL_WIDTH (w) - 1;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
767 top_y = WINDOW_TOP_EDGE_Y (w);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
768 bottom_y = WINDOW_BOTTOM_EDGE_Y (w);
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
769 }
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
770 else
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
771 {
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
772 left_x = WINDOW_BOX_LEFT_EDGE_X (w);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
773 right_x = WINDOW_BOX_RIGHT_EDGE_X (w) - 1;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
774 top_y = WINDOW_TOP_EDGE_Y (w);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
775 bottom_y = WINDOW_BOTTOM_EDGE_Y (w);
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
776 }
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
777
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
778 /* Outside any interesting row? */
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
779 if (*y < top_y || *y >= bottom_y)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
780 return ON_NOTHING;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
781
33957
1436ae066de4 (coordinates_in_window): If on a mode or header line,
Gerd Moellmann <gerd@gnu.org>
parents: 33619
diff changeset
782 /* On the mode line or header line? If it's near the start of
1436ae066de4 (coordinates_in_window): If on a mode or header line,
Gerd Moellmann <gerd@gnu.org>
parents: 33619
diff changeset
783 the mode or header line of window that's has a horizontal
1436ae066de4 (coordinates_in_window): If on a mode or header line,
Gerd Moellmann <gerd@gnu.org>
parents: 33619
diff changeset
784 sibling, say it's on the vertical line. That's to be able
1436ae066de4 (coordinates_in_window): If on a mode or header line,
Gerd Moellmann <gerd@gnu.org>
parents: 33619
diff changeset
785 to resize windows horizontally in case we're using toolkit
1436ae066de4 (coordinates_in_window): If on a mode or header line,
Gerd Moellmann <gerd@gnu.org>
parents: 33619
diff changeset
786 scroll bars. */
34640
263ac9dec8b8 (coordinates_in_window): Fix computation for
Gerd Moellmann <gerd@gnu.org>
parents: 34615
diff changeset
787
33957
1436ae066de4 (coordinates_in_window): If on a mode or header line,
Gerd Moellmann <gerd@gnu.org>
parents: 33619
diff changeset
788 if (WINDOW_WANTS_MODELINE_P (w)
53129
070325c3884d (coordinates_in_window): Remove redundant tests.
Kim F. Storm <storm@cua.dk>
parents: 52853
diff changeset
789 && *y >= bottom_y - CURRENT_MODE_LINE_HEIGHT (w))
33957
1436ae066de4 (coordinates_in_window): If on a mode or header line,
Gerd Moellmann <gerd@gnu.org>
parents: 33619
diff changeset
790 {
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
791 part = ON_MODE_LINE;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
792
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
793 header_vertical_border_check:
34640
263ac9dec8b8 (coordinates_in_window): Fix computation for
Gerd Moellmann <gerd@gnu.org>
parents: 34615
diff changeset
794 /* We're somewhere on the mode line. We consider the place
263ac9dec8b8 (coordinates_in_window): Fix computation for
Gerd Moellmann <gerd@gnu.org>
parents: 34615
diff changeset
795 between mode lines of horizontally adjacent mode lines
263ac9dec8b8 (coordinates_in_window): Fix computation for
Gerd Moellmann <gerd@gnu.org>
parents: 34615
diff changeset
796 as the vertical border. If scroll bars on the left,
263ac9dec8b8 (coordinates_in_window): Fix computation for
Gerd Moellmann <gerd@gnu.org>
parents: 34615
diff changeset
797 return the right window. */
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
798 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
799 || WINDOW_RIGHTMOST_P (w))
34640
263ac9dec8b8 (coordinates_in_window): Fix computation for
Gerd Moellmann <gerd@gnu.org>
parents: 34615
diff changeset
800 {
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
801 if (!WINDOW_LEFTMOST_P (w) && abs (*x - x0) < grabbable_width)
70042
abc53f51fd3e (coordinates_in_window): On the vertical border, calculate the row number
Nick Roberts <nickrob@snap.net.nz>
parents: 69606
diff changeset
802 {
70058
12c8842436ef (window_loop): Test w->dedicated with !NILP instead of EQ Qt.
Kim F. Storm <storm@cua.dk>
parents: 70042
diff changeset
803 /* Convert X and Y to window relative coordinates.
12c8842436ef (window_loop): Test w->dedicated with !NILP instead of EQ Qt.
Kim F. Storm <storm@cua.dk>
parents: 70042
diff changeset
804 Vertical border is at the left edge of window. */
70042
abc53f51fd3e (coordinates_in_window): On the vertical border, calculate the row number
Nick Roberts <nickrob@snap.net.nz>
parents: 69606
diff changeset
805 *x = max (0, *x - x0);
abc53f51fd3e (coordinates_in_window): On the vertical border, calculate the row number
Nick Roberts <nickrob@snap.net.nz>
parents: 69606
diff changeset
806 *y -= top_y;
abc53f51fd3e (coordinates_in_window): On the vertical border, calculate the row number
Nick Roberts <nickrob@snap.net.nz>
parents: 69606
diff changeset
807 return ON_VERTICAL_BORDER;
abc53f51fd3e (coordinates_in_window): On the vertical border, calculate the row number
Nick Roberts <nickrob@snap.net.nz>
parents: 69606
diff changeset
808 }
34640
263ac9dec8b8 (coordinates_in_window): Fix computation for
Gerd Moellmann <gerd@gnu.org>
parents: 34615
diff changeset
809 }
51223
c1daf1c22f97 (Fset_window_scroll_bars): Fix typo in argument name.
Juanma Barranquero <lekktu@gmail.com>
parents: 51207
diff changeset
810 else
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
811 {
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
812 if (abs (*x - x1) < grabbable_width)
70042
abc53f51fd3e (coordinates_in_window): On the vertical border, calculate the row number
Nick Roberts <nickrob@snap.net.nz>
parents: 69606
diff changeset
813 {
70058
12c8842436ef (window_loop): Test w->dedicated with !NILP instead of EQ Qt.
Kim F. Storm <storm@cua.dk>
parents: 70042
diff changeset
814 /* Convert X and Y to window relative coordinates.
12c8842436ef (window_loop): Test w->dedicated with !NILP instead of EQ Qt.
Kim F. Storm <storm@cua.dk>
parents: 70042
diff changeset
815 Vertical border is at the right edge of window. */
70042
abc53f51fd3e (coordinates_in_window): On the vertical border, calculate the row number
Nick Roberts <nickrob@snap.net.nz>
parents: 69606
diff changeset
816 *x = min (x1, *x) - x0;
abc53f51fd3e (coordinates_in_window): On the vertical border, calculate the row number
Nick Roberts <nickrob@snap.net.nz>
parents: 69606
diff changeset
817 *y -= top_y;
abc53f51fd3e (coordinates_in_window): On the vertical border, calculate the row number
Nick Roberts <nickrob@snap.net.nz>
parents: 69606
diff changeset
818 return ON_VERTICAL_BORDER;
abc53f51fd3e (coordinates_in_window): On the vertical border, calculate the row number
Nick Roberts <nickrob@snap.net.nz>
parents: 69606
diff changeset
819 }
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
820 }
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
821
57309
d039bbffafbc (coordinates_in_window): Relax check for cursor
Kim F. Storm <storm@cua.dk>
parents: 57031
diff changeset
822 if (*x < x0 || *x >= x1)
d039bbffafbc (coordinates_in_window): Relax check for cursor
Kim F. Storm <storm@cua.dk>
parents: 57031
diff changeset
823 return ON_NOTHING;
d039bbffafbc (coordinates_in_window): Relax check for cursor
Kim F. Storm <storm@cua.dk>
parents: 57031
diff changeset
824
51477
3ee34a66739e (coordinates_in_window): Convert X and Y to window
Kim F. Storm <storm@cua.dk>
parents: 51427
diff changeset
825 /* Convert X and Y to window relative coordinates.
3ee34a66739e (coordinates_in_window): Convert X and Y to window
Kim F. Storm <storm@cua.dk>
parents: 51427
diff changeset
826 Mode line starts at left edge of window. */
3ee34a66739e (coordinates_in_window): Convert X and Y to window
Kim F. Storm <storm@cua.dk>
parents: 51427
diff changeset
827 *x -= x0;
3ee34a66739e (coordinates_in_window): Convert X and Y to window
Kim F. Storm <storm@cua.dk>
parents: 51427
diff changeset
828 *y -= top_y;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
829 return part;
33957
1436ae066de4 (coordinates_in_window): If on a mode or header line,
Gerd Moellmann <gerd@gnu.org>
parents: 33619
diff changeset
830 }
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
831
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
832 if (WINDOW_WANTS_HEADER_LINE_P (w)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
833 && *y < top_y + CURRENT_HEADER_LINE_HEIGHT (w))
34640
263ac9dec8b8 (coordinates_in_window): Fix computation for
Gerd Moellmann <gerd@gnu.org>
parents: 34615
diff changeset
834 {
263ac9dec8b8 (coordinates_in_window): Fix computation for
Gerd Moellmann <gerd@gnu.org>
parents: 34615
diff changeset
835 part = ON_HEADER_LINE;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
836 goto header_vertical_border_check;
34640
263ac9dec8b8 (coordinates_in_window): Fix computation for
Gerd Moellmann <gerd@gnu.org>
parents: 34615
diff changeset
837 }
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
838
57309
d039bbffafbc (coordinates_in_window): Relax check for cursor
Kim F. Storm <storm@cua.dk>
parents: 57031
diff changeset
839 if (*x < x0 || *x >= x1)
d039bbffafbc (coordinates_in_window): Relax check for cursor
Kim F. Storm <storm@cua.dk>
parents: 57031
diff changeset
840 return ON_NOTHING;
d039bbffafbc (coordinates_in_window): Relax check for cursor
Kim F. Storm <storm@cua.dk>
parents: 57031
diff changeset
841
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
842 /* Outside any interesting column? */
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
843 if (*x < left_x || *x > right_x)
66018
7810bc0b0259 (coordinates_in_window): Fix returned y position when
Kim F. Storm <storm@cua.dk>
parents: 65975
diff changeset
844 {
7810bc0b0259 (coordinates_in_window): Fix returned y position when
Kim F. Storm <storm@cua.dk>
parents: 65975
diff changeset
845 *y -= top_y;
7810bc0b0259 (coordinates_in_window): Fix returned y position when
Kim F. Storm <storm@cua.dk>
parents: 65975
diff changeset
846 return ON_SCROLL_BAR;
7810bc0b0259 (coordinates_in_window): Fix returned y position when
Kim F. Storm <storm@cua.dk>
parents: 65975
diff changeset
847 }
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
848
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
849 lmargin_width = window_box_width (w, LEFT_MARGIN_AREA);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
850 rmargin_width = window_box_width (w, RIGHT_MARGIN_AREA);
51223
c1daf1c22f97 (Fset_window_scroll_bars): Fix typo in argument name.
Juanma Barranquero <lekktu@gmail.com>
parents: 51207
diff changeset
851
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
852 text_left = window_box_left (w, TEXT_AREA);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
853 text_right = text_left + window_box_width (w, TEXT_AREA);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
854
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
855 if (FRAME_WINDOW_P (f))
25315
79bb4978ab2e (Fcoordinates_in_window_p): Return `left-bitmap-area'
Gerd Moellmann <gerd@gnu.org>
parents: 25300
diff changeset
856 {
34097
0225d8e15f2c (coordinates_in_window): Handle computations for
Gerd Moellmann <gerd@gnu.org>
parents: 34090
diff changeset
857 if (!w->pseudo_window_p
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
858 && !WINDOW_HAS_VERTICAL_SCROLL_BAR (w)
34097
0225d8e15f2c (coordinates_in_window): Handle computations for
Gerd Moellmann <gerd@gnu.org>
parents: 34090
diff changeset
859 && !WINDOW_RIGHTMOST_P (w)
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
860 && (abs (*x - right_x) < grabbable_width))
70042
abc53f51fd3e (coordinates_in_window): On the vertical border, calculate the row number
Nick Roberts <nickrob@snap.net.nz>
parents: 69606
diff changeset
861 {
70058
12c8842436ef (window_loop): Test w->dedicated with !NILP instead of EQ Qt.
Kim F. Storm <storm@cua.dk>
parents: 70042
diff changeset
862 /* Convert X and Y to window relative coordinates.
12c8842436ef (window_loop): Test w->dedicated with !NILP instead of EQ Qt.
Kim F. Storm <storm@cua.dk>
parents: 70042
diff changeset
863 Vertical border is at the right edge of window. */
70042
abc53f51fd3e (coordinates_in_window): On the vertical border, calculate the row number
Nick Roberts <nickrob@snap.net.nz>
parents: 69606
diff changeset
864 *x = min (right_x, *x) - left_x;
abc53f51fd3e (coordinates_in_window): On the vertical border, calculate the row number
Nick Roberts <nickrob@snap.net.nz>
parents: 69606
diff changeset
865 *y -= top_y;
abc53f51fd3e (coordinates_in_window): On the vertical border, calculate the row number
Nick Roberts <nickrob@snap.net.nz>
parents: 69606
diff changeset
866 return ON_VERTICAL_BORDER;
abc53f51fd3e (coordinates_in_window): On the vertical border, calculate the row number
Nick Roberts <nickrob@snap.net.nz>
parents: 69606
diff changeset
867 }
25315
79bb4978ab2e (Fcoordinates_in_window_p): Return `left-bitmap-area'
Gerd Moellmann <gerd@gnu.org>
parents: 25300
diff changeset
868 }
34097
0225d8e15f2c (coordinates_in_window): Handle computations for
Gerd Moellmann <gerd@gnu.org>
parents: 34090
diff changeset
869 else
0225d8e15f2c (coordinates_in_window): Handle computations for
Gerd Moellmann <gerd@gnu.org>
parents: 34090
diff changeset
870 {
0225d8e15f2c (coordinates_in_window): Handle computations for
Gerd Moellmann <gerd@gnu.org>
parents: 34090
diff changeset
871 /* Need to say "*x > right_x" rather than >=, since on character
0225d8e15f2c (coordinates_in_window): Handle computations for
Gerd Moellmann <gerd@gnu.org>
parents: 34090
diff changeset
872 terminals, the vertical line's x coordinate is right_x. */
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
873 if (!w->pseudo_window_p
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
874 && !WINDOW_RIGHTMOST_P (w)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
875 && *x > right_x - ux)
34640
263ac9dec8b8 (coordinates_in_window): Fix computation for
Gerd Moellmann <gerd@gnu.org>
parents: 34615
diff changeset
876 {
263ac9dec8b8 (coordinates_in_window): Fix computation for
Gerd Moellmann <gerd@gnu.org>
parents: 34615
diff changeset
877 /* On the border on the right side of the window? Assume that
263ac9dec8b8 (coordinates_in_window): Fix computation for
Gerd Moellmann <gerd@gnu.org>
parents: 34615
diff changeset
878 this area begins at RIGHT_X minus a canonical char width. */
70042
abc53f51fd3e (coordinates_in_window): On the vertical border, calculate the row number
Nick Roberts <nickrob@snap.net.nz>
parents: 69606
diff changeset
879 *x = min (right_x, *x) - left_x;
abc53f51fd3e (coordinates_in_window): On the vertical border, calculate the row number
Nick Roberts <nickrob@snap.net.nz>
parents: 69606
diff changeset
880 *y -= top_y;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
881 return ON_VERTICAL_BORDER;
34640
263ac9dec8b8 (coordinates_in_window): Fix computation for
Gerd Moellmann <gerd@gnu.org>
parents: 34615
diff changeset
882 }
34097
0225d8e15f2c (coordinates_in_window): Handle computations for
Gerd Moellmann <gerd@gnu.org>
parents: 34090
diff changeset
883 }
34640
263ac9dec8b8 (coordinates_in_window): Fix computation for
Gerd Moellmann <gerd@gnu.org>
parents: 34615
diff changeset
884
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
885 if (*x < text_left)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
886 {
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
887 if (lmargin_width > 0
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
888 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
889 ? (*x >= left_x + WINDOW_LEFT_FRINGE_WIDTH (w))
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
890 : (*x < left_x + lmargin_width)))
51477
3ee34a66739e (coordinates_in_window): Convert X and Y to window
Kim F. Storm <storm@cua.dk>
parents: 51427
diff changeset
891 {
53129
070325c3884d (coordinates_in_window): Remove redundant tests.
Kim F. Storm <storm@cua.dk>
parents: 52853
diff changeset
892 *x -= left_x;
51477
3ee34a66739e (coordinates_in_window): Convert X and Y to window
Kim F. Storm <storm@cua.dk>
parents: 51427
diff changeset
893 if (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w))
3ee34a66739e (coordinates_in_window): Convert X and Y to window
Kim F. Storm <storm@cua.dk>
parents: 51427
diff changeset
894 *x -= WINDOW_LEFT_FRINGE_WIDTH (w);
3ee34a66739e (coordinates_in_window): Convert X and Y to window
Kim F. Storm <storm@cua.dk>
parents: 51427
diff changeset
895 *y -= top_y;
3ee34a66739e (coordinates_in_window): Convert X and Y to window
Kim F. Storm <storm@cua.dk>
parents: 51427
diff changeset
896 return ON_LEFT_MARGIN;
3ee34a66739e (coordinates_in_window): Convert X and Y to window
Kim F. Storm <storm@cua.dk>
parents: 51427
diff changeset
897 }
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
898
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
899 /* Convert X and Y to window-relative pixel coordinates. */
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
900 *x -= left_x;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
901 *y -= top_y;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
902 return ON_LEFT_FRINGE;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
903 }
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
904
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
905 if (*x >= text_right)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
906 {
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
907 if (rmargin_width > 0
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
908 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
909 ? (*x < right_x - WINDOW_RIGHT_FRINGE_WIDTH (w))
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
910 : (*x >= right_x - rmargin_width)))
51477
3ee34a66739e (coordinates_in_window): Convert X and Y to window
Kim F. Storm <storm@cua.dk>
parents: 51427
diff changeset
911 {
66030
999beda71a39 (coordinates_in_window): Fix x position for ON_RIGHT_MARGIN.
Kim F. Storm <storm@cua.dk>
parents: 66018
diff changeset
912 *x -= right_x - rmargin_width;
999beda71a39 (coordinates_in_window): Fix x position for ON_RIGHT_MARGIN.
Kim F. Storm <storm@cua.dk>
parents: 66018
diff changeset
913 if (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w))
999beda71a39 (coordinates_in_window): Fix x position for ON_RIGHT_MARGIN.
Kim F. Storm <storm@cua.dk>
parents: 66018
diff changeset
914 *x += WINDOW_RIGHT_FRINGE_WIDTH (w);
51477
3ee34a66739e (coordinates_in_window): Convert X and Y to window
Kim F. Storm <storm@cua.dk>
parents: 51427
diff changeset
915 *y -= top_y;
3ee34a66739e (coordinates_in_window): Convert X and Y to window
Kim F. Storm <storm@cua.dk>
parents: 51427
diff changeset
916 return ON_RIGHT_MARGIN;
3ee34a66739e (coordinates_in_window): Convert X and Y to window
Kim F. Storm <storm@cua.dk>
parents: 51427
diff changeset
917 }
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
918
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
919 /* Convert X and Y to window-relative pixel coordinates. */
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
920 *x -= left_x + WINDOW_LEFT_FRINGE_WIDTH (w);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
921 *y -= top_y;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
922 return ON_RIGHT_FRINGE;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
923 }
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
924
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
925 /* Everything special ruled out - must be on text area */
66030
999beda71a39 (coordinates_in_window): Fix x position for ON_RIGHT_MARGIN.
Kim F. Storm <storm@cua.dk>
parents: 66018
diff changeset
926 *x -= text_left;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
927 *y -= top_y;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
928 return ON_TEXT;
432
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
929 }
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
930
34640
263ac9dec8b8 (coordinates_in_window): Fix computation for
Gerd Moellmann <gerd@gnu.org>
parents: 34615
diff changeset
931
432
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
932 DEFUN ("coordinates-in-window-p", Fcoordinates_in_window_p,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
933 Scoordinates_in_window_p, 2, 2, 0,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
934 doc: /* Return non-nil if COORDINATES are in WINDOW.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
935 COORDINATES is a cons of the form (X . Y), X and Y being distances
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
936 measured in characters from the upper-left corner of the frame.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
937 \(0 . 0) denotes the character in the upper left corner of the
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
938 frame.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
939 If COORDINATES are in the text portion of WINDOW,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
940 the coordinates relative to the window are returned.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
941 If they are in the mode line of WINDOW, `mode-line' is returned.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
942 If they are in the top mode line of WINDOW, `header-line' is returned.
41127
d7459915009d Fringe cleanup.
Kim F. Storm <storm@cua.dk>
parents: 40656
diff changeset
943 If they are in the left fringe of WINDOW, `left-fringe' is returned.
d7459915009d Fringe cleanup.
Kim F. Storm <storm@cua.dk>
parents: 40656
diff changeset
944 If they are in the right fringe of WINDOW, `right-fringe' is returned.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
945 If they are on the border between WINDOW and its right sibling,
44535
ee637a721e86 (window_part): Add ON_LEFT_MARGIN, ON_RIGHT_MARGIN.
Gerd Moellmann <gerd@gnu.org>
parents: 44264
diff changeset
946 `vertical-line' is returned.
ee637a721e86 (window_part): Add ON_LEFT_MARGIN, ON_RIGHT_MARGIN.
Gerd Moellmann <gerd@gnu.org>
parents: 44264
diff changeset
947 If they are in the windows's left or right marginal areas, `left-margin'\n\
ee637a721e86 (window_part): Add ON_LEFT_MARGIN, ON_RIGHT_MARGIN.
Gerd Moellmann <gerd@gnu.org>
parents: 44264
diff changeset
948 or `right-margin' is returned. */)
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
949 (coordinates, window)
432
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
950 register Lisp_Object coordinates, window;
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
951 {
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
952 struct window *w;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
953 struct frame *f;
432
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
954 int x, y;
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
955 Lisp_Object lx, ly;
432
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
956
53492
6861a5210fdb (decode_any_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 53143
diff changeset
957 CHECK_WINDOW (window);
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
958 w = XWINDOW (window);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
959 f = XFRAME (w->frame);
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
960 CHECK_CONS (coordinates);
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
961 lx = Fcar (coordinates);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
962 ly = Fcdr (coordinates);
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
963 CHECK_NUMBER_OR_FLOAT (lx);
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
964 CHECK_NUMBER_OR_FLOAT (ly);
56540
b1738412da70 (Fcoordinates_in_window_p): Take account of FRAME_INTERNAL_BORDER_WIDTH.
Richard M. Stallman <rms@gnu.org>
parents: 56524
diff changeset
965 x = FRAME_PIXEL_X_FROM_CANON_X (f, lx) + FRAME_INTERNAL_BORDER_WIDTH (f);
b1738412da70 (Fcoordinates_in_window_p): Take account of FRAME_INTERNAL_BORDER_WIDTH.
Richard M. Stallman <rms@gnu.org>
parents: 56524
diff changeset
966 y = FRAME_PIXEL_Y_FROM_CANON_Y (f, ly) + FRAME_INTERNAL_BORDER_WIDTH (f);
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
967
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
968 switch (coordinates_in_window (w, &x, &y))
432
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
969 {
35800
fe8277459ef3 (enum window_part): New enumeration.
Gerd Moellmann <gerd@gnu.org>
parents: 35772
diff changeset
970 case ON_NOTHING:
432
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
971 return Qnil;
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
972
35800
fe8277459ef3 (enum window_part): New enumeration.
Gerd Moellmann <gerd@gnu.org>
parents: 35772
diff changeset
973 case ON_TEXT:
fe8277459ef3 (enum window_part): New enumeration.
Gerd Moellmann <gerd@gnu.org>
parents: 35772
diff changeset
974 /* X and Y are now window relative pixel coordinates. Convert
fe8277459ef3 (enum window_part): New enumeration.
Gerd Moellmann <gerd@gnu.org>
parents: 35772
diff changeset
975 them to canonical char units before returning them. */
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
976 return Fcons (FRAME_CANON_X_FROM_PIXEL_X (f, x),
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
977 FRAME_CANON_Y_FROM_PIXEL_Y (f, y));
432
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
978
35800
fe8277459ef3 (enum window_part): New enumeration.
Gerd Moellmann <gerd@gnu.org>
parents: 35772
diff changeset
979 case ON_MODE_LINE:
432
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
980 return Qmode_line;
14536
12de7dac154b (display_buffer_1): Fix typo in last change.
Roland McGrath <roland@gnu.org>
parents: 14535
diff changeset
981
35800
fe8277459ef3 (enum window_part): New enumeration.
Gerd Moellmann <gerd@gnu.org>
parents: 35772
diff changeset
982 case ON_VERTICAL_BORDER:
732
a8d94735277e *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 722
diff changeset
983 return Qvertical_line;
432
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
984
35800
fe8277459ef3 (enum window_part): New enumeration.
Gerd Moellmann <gerd@gnu.org>
parents: 35772
diff changeset
985 case ON_HEADER_LINE:
25546
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
986 return Qheader_line;
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
987
35800
fe8277459ef3 (enum window_part): New enumeration.
Gerd Moellmann <gerd@gnu.org>
parents: 35772
diff changeset
988 case ON_LEFT_FRINGE:
fe8277459ef3 (enum window_part): New enumeration.
Gerd Moellmann <gerd@gnu.org>
parents: 35772
diff changeset
989 return Qleft_fringe;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
990
35800
fe8277459ef3 (enum window_part): New enumeration.
Gerd Moellmann <gerd@gnu.org>
parents: 35772
diff changeset
991 case ON_RIGHT_FRINGE:
fe8277459ef3 (enum window_part): New enumeration.
Gerd Moellmann <gerd@gnu.org>
parents: 35772
diff changeset
992 return Qright_fringe;
25315
79bb4978ab2e (Fcoordinates_in_window_p): Return `left-bitmap-area'
Gerd Moellmann <gerd@gnu.org>
parents: 25300
diff changeset
993
44535
ee637a721e86 (window_part): Add ON_LEFT_MARGIN, ON_RIGHT_MARGIN.
Gerd Moellmann <gerd@gnu.org>
parents: 44264
diff changeset
994 case ON_LEFT_MARGIN:
ee637a721e86 (window_part): Add ON_LEFT_MARGIN, ON_RIGHT_MARGIN.
Gerd Moellmann <gerd@gnu.org>
parents: 44264
diff changeset
995 return Qleft_margin;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
996
44535
ee637a721e86 (window_part): Add ON_LEFT_MARGIN, ON_RIGHT_MARGIN.
Gerd Moellmann <gerd@gnu.org>
parents: 44264
diff changeset
997 case ON_RIGHT_MARGIN:
ee637a721e86 (window_part): Add ON_LEFT_MARGIN, ON_RIGHT_MARGIN.
Gerd Moellmann <gerd@gnu.org>
parents: 44264
diff changeset
998 return Qright_margin;
ee637a721e86 (window_part): Add ON_LEFT_MARGIN, ON_RIGHT_MARGIN.
Gerd Moellmann <gerd@gnu.org>
parents: 44264
diff changeset
999
56542
6d2d9477f39e (coordinates_in_window): Return ON_SCROLL_BAR
Richard M. Stallman <rms@gnu.org>
parents: 56540
diff changeset
1000 case ON_SCROLL_BAR:
6d2d9477f39e (coordinates_in_window): Return ON_SCROLL_BAR
Richard M. Stallman <rms@gnu.org>
parents: 56540
diff changeset
1001 /* Historically we are supposed to return nil in this case. */
6d2d9477f39e (coordinates_in_window): Return ON_SCROLL_BAR
Richard M. Stallman <rms@gnu.org>
parents: 56540
diff changeset
1002 return Qnil;
6d2d9477f39e (coordinates_in_window): Return ON_SCROLL_BAR
Richard M. Stallman <rms@gnu.org>
parents: 56540
diff changeset
1003
432
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
1004 default:
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
1005 abort ();
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
1006 }
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
1007 }
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
1008
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1009
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1010 /* Callback for foreach_window, used in window_from_coordinates.
30362
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
1011 Check if window W contains coordinates specified by USER_DATA which
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
1012 is actually a pointer to a struct check_window_data CW.
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
1013
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
1014 Check if window W contains coordinates *CW->x and *CW->y. If it
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
1015 does, return W in *CW->window, as Lisp_Object, and return in
30777
3e4912d77e89 Fix embedded comment.
Dave Love <fx@gnu.org>
parents: 30743
diff changeset
1016 *CW->part the part of the window under coordinates *X,*Y. Return
30362
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
1017 zero from this function to stop iterating over windows. */
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
1018
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
1019 struct check_window_data
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
1020 {
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
1021 Lisp_Object *window;
50233
e25cbad07868 * window.c (enum window_part): Move to dispextern.h.
Kim F. Storm <storm@cua.dk>
parents: 49836
diff changeset
1022 int *x, *y;
e25cbad07868 * window.c (enum window_part): Move to dispextern.h.
Kim F. Storm <storm@cua.dk>
parents: 49836
diff changeset
1023 enum window_part *part;
30362
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
1024 };
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1025
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1026 static int
30362
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
1027 check_window_containing (w, user_data)
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1028 struct window *w;
30362
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
1029 void *user_data;
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1030 {
30362
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
1031 struct check_window_data *cw = (struct check_window_data *) user_data;
35800
fe8277459ef3 (enum window_part): New enumeration.
Gerd Moellmann <gerd@gnu.org>
parents: 35772
diff changeset
1032 enum window_part found;
fe8277459ef3 (enum window_part): New enumeration.
Gerd Moellmann <gerd@gnu.org>
parents: 35772
diff changeset
1033 int continue_p = 1;
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1034
30362
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
1035 found = coordinates_in_window (w, cw->x, cw->y);
35800
fe8277459ef3 (enum window_part): New enumeration.
Gerd Moellmann <gerd@gnu.org>
parents: 35772
diff changeset
1036 if (found != ON_NOTHING)
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1037 {
50233
e25cbad07868 * window.c (enum window_part): Move to dispextern.h.
Kim F. Storm <storm@cua.dk>
parents: 49836
diff changeset
1038 *cw->part = found;
30362
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
1039 XSETWINDOW (*cw->window, w);
35800
fe8277459ef3 (enum window_part): New enumeration.
Gerd Moellmann <gerd@gnu.org>
parents: 35772
diff changeset
1040 continue_p = 0;
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1041 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
1042
35800
fe8277459ef3 (enum window_part): New enumeration.
Gerd Moellmann <gerd@gnu.org>
parents: 35772
diff changeset
1043 return continue_p;
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1044 }
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1045
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1046
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
1047 /* Find the window containing frame-relative pixel position X/Y and
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
1048 return it as a Lisp_Object.
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
1049
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
1050 If X, Y is on one of the window's special `window_part' elements,
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
1051 set *PART to the id of that element, and return X and Y converted
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
1052 to window relative coordinates in WX and WY.
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
1053
50233
e25cbad07868 * window.c (enum window_part): Move to dispextern.h.
Kim F. Storm <storm@cua.dk>
parents: 49836
diff changeset
1054 If there is no window under X, Y return nil and leave *PART
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1055 unmodified. TOOL_BAR_P non-zero means detect tool-bar windows.
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1056
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1057 This function was previously implemented with a loop cycling over
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1058 windows with Fnext_window, and starting with the frame's selected
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1059 window. It turned out that this doesn't work with an
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1060 implementation of next_window using Vwindow_list, because
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1061 FRAME_SELECTED_WINDOW (F) is not always contained in the window
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1062 tree of F when this function is called asynchronously from
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1063 note_mouse_highlight. The original loop didn't terminate in this
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1064 case. */
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
1065
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1066 Lisp_Object
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
1067 window_from_coordinates (f, x, y, part, wx, wy, tool_bar_p)
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1068 struct frame *f;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1069 int x, y;
50233
e25cbad07868 * window.c (enum window_part): Move to dispextern.h.
Kim F. Storm <storm@cua.dk>
parents: 49836
diff changeset
1070 enum window_part *part;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
1071 int *wx, *wy;
25544
693ca9ba497a Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents: 25540
diff changeset
1072 int tool_bar_p;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1073 {
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1074 Lisp_Object window;
30362
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
1075 struct check_window_data cw;
50233
e25cbad07868 * window.c (enum window_part): Move to dispextern.h.
Kim F. Storm <storm@cua.dk>
parents: 49836
diff changeset
1076 enum window_part dummy;
e25cbad07868 * window.c (enum window_part): Move to dispextern.h.
Kim F. Storm <storm@cua.dk>
parents: 49836
diff changeset
1077
e25cbad07868 * window.c (enum window_part): Move to dispextern.h.
Kim F. Storm <storm@cua.dk>
parents: 49836
diff changeset
1078 if (part == 0)
e25cbad07868 * window.c (enum window_part): Move to dispextern.h.
Kim F. Storm <storm@cua.dk>
parents: 49836
diff changeset
1079 part = &dummy;
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1080
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1081 window = Qnil;
30362
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
1082 cw.window = &window, cw.x = &x, cw.y = &y; cw.part = part;
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
1083 foreach_window (f, check_window_containing, &cw);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
1084
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1085 /* If not found above, see if it's in the tool bar window, if a tool
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1086 bar exists. */
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1087 if (NILP (window)
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1088 && tool_bar_p
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1089 && WINDOWP (f->tool_bar_window)
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
1090 && WINDOW_TOTAL_LINES (XWINDOW (f->tool_bar_window)) > 0
35800
fe8277459ef3 (enum window_part): New enumeration.
Gerd Moellmann <gerd@gnu.org>
parents: 35772
diff changeset
1091 && (coordinates_in_window (XWINDOW (f->tool_bar_window), &x, &y)
fe8277459ef3 (enum window_part): New enumeration.
Gerd Moellmann <gerd@gnu.org>
parents: 35772
diff changeset
1092 != ON_NOTHING))
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
1093 {
50233
e25cbad07868 * window.c (enum window_part): Move to dispextern.h.
Kim F. Storm <storm@cua.dk>
parents: 49836
diff changeset
1094 *part = ON_TEXT;
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1095 window = f->tool_bar_window;
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
1096 }
14536
12de7dac154b (display_buffer_1): Fix typo in last change.
Roland McGrath <roland@gnu.org>
parents: 14535
diff changeset
1097
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
1098 if (wx) *wx = x;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
1099 if (wy) *wy = y;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
1100
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1101 return window;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1102 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1103
681
026f978690be *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 555
diff changeset
1104 DEFUN ("window-at", Fwindow_at, Swindow_at, 2, 3, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1105 doc: /* Return window containing coordinates X and Y on FRAME.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1106 If omitted, FRAME defaults to the currently selected frame.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1107 The top left corner of the frame is considered to be row 0,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1108 column 0. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1109 (x, y, frame)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1110 Lisp_Object x, y, frame;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1111 {
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
1112 struct frame *f;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1113
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
1114 if (NILP (frame))
25676
70c6d3f2f3b9 (Fminibuffer_window): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents: 25591
diff changeset
1115 frame = selected_frame;
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
1116 CHECK_LIVE_FRAME (frame);
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
1117 f = XFRAME (frame);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
1118
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
1119 /* Check that arguments are integers or floats. */
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
1120 CHECK_NUMBER_OR_FLOAT (x);
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
1121 CHECK_NUMBER_OR_FLOAT (y);
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
1122
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
1123 return window_from_coordinates (f,
56524
d2661c5fec0b (Fwindow_at): Take account of FRAME_INTERNAL_BORDER_WIDTH.
Richard M. Stallman <rms@gnu.org>
parents: 56497
diff changeset
1124 (FRAME_PIXEL_X_FROM_CANON_X (f, x)
d2661c5fec0b (Fwindow_at): Take account of FRAME_INTERNAL_BORDER_WIDTH.
Richard M. Stallman <rms@gnu.org>
parents: 56497
diff changeset
1125 + FRAME_INTERNAL_BORDER_WIDTH (f)),
d2661c5fec0b (Fwindow_at): Take account of FRAME_INTERNAL_BORDER_WIDTH.
Richard M. Stallman <rms@gnu.org>
parents: 56497
diff changeset
1126 (FRAME_PIXEL_Y_FROM_CANON_Y (f, y)
d2661c5fec0b (Fwindow_at): Take account of FRAME_INTERNAL_BORDER_WIDTH.
Richard M. Stallman <rms@gnu.org>
parents: 56497
diff changeset
1127 + FRAME_INTERNAL_BORDER_WIDTH (f)),
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
1128 0, 0, 0, 0);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1129 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1130
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1131 DEFUN ("window-point", Fwindow_point, Swindow_point, 0, 1, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1132 doc: /* Return current value of point in WINDOW.
75753
5e34b32b9b4c (Fwindow_height, Fwindow_hscroll)
Eli Zaretskii <eliz@gnu.org>
parents: 75348
diff changeset
1133 WINDOW defaults to the selected window.
5e34b32b9b4c (Fwindow_height, Fwindow_hscroll)
Eli Zaretskii <eliz@gnu.org>
parents: 75348
diff changeset
1134
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1135 For a nonselected window, this is the value point would have
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1136 if that window were selected.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1137
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1138 Note that, when WINDOW is the selected window and its buffer
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1139 is also currently selected, the value returned is the same as (point).
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1140 It would be more strictly correct to return the `top-level' value
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1141 of point, outside of any save-excursion forms.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1142 But that is hard to define. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1143 (window)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1144 Lisp_Object window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1145 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1146 register struct window *w = decode_window (window);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1147
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1148 if (w == XWINDOW (selected_window)
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1149 && current_buffer == XBUFFER (w->buffer))
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1150 return Fpoint ();
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1151 return Fmarker_position (w->pointm);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1152 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1153
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1154 DEFUN ("window-start", Fwindow_start, Swindow_start, 0, 1, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1155 doc: /* Return position at which display currently starts in WINDOW.
75753
5e34b32b9b4c (Fwindow_height, Fwindow_hscroll)
Eli Zaretskii <eliz@gnu.org>
parents: 75348
diff changeset
1156 WINDOW defaults to the selected window.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1157 This is updated by redisplay or by calling `set-window-start'. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1158 (window)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1159 Lisp_Object window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1160 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1161 return Fmarker_position (decode_window (window)->start);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1162 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1163
8508
6d2f0901efe9 (Fwindow_end): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 8492
diff changeset
1164 /* This is text temporarily removed from the doc string below.
6d2f0901efe9 (Fwindow_end): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 8492
diff changeset
1165
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1166 This function returns nil if the position is not currently known.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1167 That happens when redisplay is preempted and doesn't finish.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1168 If in that case you want to compute where the end of the window would
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1169 have been if redisplay had finished, do this:
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1170 (save-excursion
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1171 (goto-char (window-start window))
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1172 (vertical-motion (1- (window-height window)) window)
8508
6d2f0901efe9 (Fwindow_end): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 8492
diff changeset
1173 (point))") */
6d2f0901efe9 (Fwindow_end): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 8492
diff changeset
1174
21198
10518dc95b25 (Frecenter): Operate on window's buffer even if some other was current.
Richard M. Stallman <rms@gnu.org>
parents: 21022
diff changeset
1175 DEFUN ("window-end", Fwindow_end, Swindow_end, 0, 2, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1176 doc: /* Return position at which display currently ends in WINDOW.
75753
5e34b32b9b4c (Fwindow_height, Fwindow_hscroll)
Eli Zaretskii <eliz@gnu.org>
parents: 75348
diff changeset
1177 WINDOW defaults to the selected window.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1178 This is updated by redisplay, when it runs to completion.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1179 Simply changing the buffer text or setting `window-start'
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1180 does not update this value.
56487
338a1d04223d (Fpos_visible_in_window_p, Fset_window_hscroll)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56456
diff changeset
1181 Return nil if there is no recorded value. \(This can happen if the
338a1d04223d (Fpos_visible_in_window_p, Fset_window_hscroll)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56456
diff changeset
1182 last redisplay of WINDOW was preempted, and did not finish.)
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1183 If UPDATE is non-nil, compute the up-to-date position
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1184 if it isn't already recorded. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1185 (window, update)
21198
10518dc95b25 (Frecenter): Operate on window's buffer even if some other was current.
Richard M. Stallman <rms@gnu.org>
parents: 21022
diff changeset
1186 Lisp_Object window, update;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1187 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1188 Lisp_Object value;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1189 struct window *w = decode_window (window);
4292
990f6ee7f527 (Fset_window_buffer): Clear window_end_{pos,valid}.
Richard M. Stallman <rms@gnu.org>
parents: 4145
diff changeset
1190 Lisp_Object buf;
72998
79ada95d4018 (Fwindow_end): Fix recent change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 72990
diff changeset
1191 struct buffer *b;
4292
990f6ee7f527 (Fset_window_buffer): Clear window_end_{pos,valid}.
Richard M. Stallman <rms@gnu.org>
parents: 4145
diff changeset
1192
990f6ee7f527 (Fset_window_buffer): Clear window_end_{pos,valid}.
Richard M. Stallman <rms@gnu.org>
parents: 4145
diff changeset
1193 buf = w->buffer;
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
1194 CHECK_BUFFER (buf);
72907
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
1195 b = XBUFFER (buf);
4292
990f6ee7f527 (Fset_window_buffer): Clear window_end_{pos,valid}.
Richard M. Stallman <rms@gnu.org>
parents: 4145
diff changeset
1196
8508
6d2f0901efe9 (Fwindow_end): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 8492
diff changeset
1197 #if 0 /* This change broke some things. We should make it later. */
8492
865daa7a9faf (Fwindow_end): If window_end_valid is nil, return nil.
Richard M. Stallman <rms@gnu.org>
parents: 8486
diff changeset
1198 /* If we don't know the end position, return nil.
865daa7a9faf (Fwindow_end): If window_end_valid is nil, return nil.
Richard M. Stallman <rms@gnu.org>
parents: 8486
diff changeset
1199 The user can compute it with vertical-motion if he wants to.
865daa7a9faf (Fwindow_end): If window_end_valid is nil, return nil.
Richard M. Stallman <rms@gnu.org>
parents: 8486
diff changeset
1200 It would be nicer to do it automatically,
865daa7a9faf (Fwindow_end): If window_end_valid is nil, return nil.
Richard M. Stallman <rms@gnu.org>
parents: 8486
diff changeset
1201 but that's so slow that it would probably bother people. */
865daa7a9faf (Fwindow_end): If window_end_valid is nil, return nil.
Richard M. Stallman <rms@gnu.org>
parents: 8486
diff changeset
1202 if (NILP (w->window_end_valid))
865daa7a9faf (Fwindow_end): If window_end_valid is nil, return nil.
Richard M. Stallman <rms@gnu.org>
parents: 8486
diff changeset
1203 return Qnil;
8508
6d2f0901efe9 (Fwindow_end): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 8492
diff changeset
1204 #endif
8492
865daa7a9faf (Fwindow_end): If window_end_valid is nil, return nil.
Richard M. Stallman <rms@gnu.org>
parents: 8486
diff changeset
1205
21198
10518dc95b25 (Frecenter): Operate on window's buffer even if some other was current.
Richard M. Stallman <rms@gnu.org>
parents: 21022
diff changeset
1206 if (! NILP (update)
10518dc95b25 (Frecenter): Operate on window's buffer even if some other was current.
Richard M. Stallman <rms@gnu.org>
parents: 21022
diff changeset
1207 && ! (! NILP (w->window_end_valid)
75077
c0200a80d5cf (Fwindow_end): Check BUF_OVERLAY_MODIFF like BUF_MODIFF.
Richard M. Stallman <rms@gnu.org>
parents: 74966
diff changeset
1208 && XFASTINT (w->last_modified) >= BUF_MODIFF (b)
75080
1026dad5d8c9 (Fwindow_end): Fix use of >= operator.
Juanma Barranquero <lekktu@gmail.com>
parents: 75077
diff changeset
1209 && XFASTINT (w->last_overlay_modified) >= BUF_OVERLAY_MODIFF (b))
65950
543b18532c51 (Fwindow_end): Don't try to redisplay if non-interactive.
Romain Francoise <romain@orebokech.com>
parents: 65908
diff changeset
1210 && !noninteractive)
21198
10518dc95b25 (Frecenter): Operate on window's buffer even if some other was current.
Richard M. Stallman <rms@gnu.org>
parents: 21022
diff changeset
1211 {
30743
51d0f4273e89 (Fwindow_end): Rewritten to not use Fvertical_motion,
Gerd Moellmann <gerd@gnu.org>
parents: 30560
diff changeset
1212 struct text_pos startp;
51d0f4273e89 (Fwindow_end): Rewritten to not use Fvertical_motion,
Gerd Moellmann <gerd@gnu.org>
parents: 30560
diff changeset
1213 struct it it;
72907
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
1214 struct buffer *old_buffer = NULL;
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
1215
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
1216 /* Cannot use Fvertical_motion because that function doesn't
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
1217 cope with variable-height lines. */
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
1218 if (b != current_buffer)
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
1219 {
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
1220 old_buffer = current_buffer;
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
1221 set_buffer_internal (b);
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
1222 }
26635
af8d605cbcf1 (Fwindow_end): Don't call temp_set_pt_both with
Gerd Moellmann <gerd@gnu.org>
parents: 26164
diff changeset
1223
af8d605cbcf1 (Fwindow_end): Don't call temp_set_pt_both with
Gerd Moellmann <gerd@gnu.org>
parents: 26164
diff changeset
1224 /* In case W->start is out of the range, use something
46271
35153dd59211 *** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents: 46108
diff changeset
1225 reasonable. This situation occurred when loading a file with
26635
af8d605cbcf1 (Fwindow_end): Don't call temp_set_pt_both with
Gerd Moellmann <gerd@gnu.org>
parents: 26164
diff changeset
1226 `-l' containing a call to `rmail' with subsequent other
af8d605cbcf1 (Fwindow_end): Don't call temp_set_pt_both with
Gerd Moellmann <gerd@gnu.org>
parents: 26164
diff changeset
1227 commands. At the end, W->start happened to be BEG, while
30743
51d0f4273e89 (Fwindow_end): Rewritten to not use Fvertical_motion,
Gerd Moellmann <gerd@gnu.org>
parents: 30560
diff changeset
1228 rmail had already narrowed the buffer. */
26635
af8d605cbcf1 (Fwindow_end): Don't call temp_set_pt_both with
Gerd Moellmann <gerd@gnu.org>
parents: 26164
diff changeset
1229 if (XMARKER (w->start)->charpos < BEGV)
30743
51d0f4273e89 (Fwindow_end): Rewritten to not use Fvertical_motion,
Gerd Moellmann <gerd@gnu.org>
parents: 30560
diff changeset
1230 SET_TEXT_POS (startp, BEGV, BEGV_BYTE);
26635
af8d605cbcf1 (Fwindow_end): Don't call temp_set_pt_both with
Gerd Moellmann <gerd@gnu.org>
parents: 26164
diff changeset
1231 else if (XMARKER (w->start)->charpos > ZV)
30743
51d0f4273e89 (Fwindow_end): Rewritten to not use Fvertical_motion,
Gerd Moellmann <gerd@gnu.org>
parents: 30560
diff changeset
1232 SET_TEXT_POS (startp, ZV, ZV_BYTE);
26635
af8d605cbcf1 (Fwindow_end): Don't call temp_set_pt_both with
Gerd Moellmann <gerd@gnu.org>
parents: 26164
diff changeset
1233 else
30743
51d0f4273e89 (Fwindow_end): Rewritten to not use Fvertical_motion,
Gerd Moellmann <gerd@gnu.org>
parents: 30560
diff changeset
1234 SET_TEXT_POS_FROM_MARKER (startp, w->start);
51d0f4273e89 (Fwindow_end): Rewritten to not use Fvertical_motion,
Gerd Moellmann <gerd@gnu.org>
parents: 30560
diff changeset
1235
51d0f4273e89 (Fwindow_end): Rewritten to not use Fvertical_motion,
Gerd Moellmann <gerd@gnu.org>
parents: 30560
diff changeset
1236 start_display (&it, w, startp);
51d0f4273e89 (Fwindow_end): Rewritten to not use Fvertical_motion,
Gerd Moellmann <gerd@gnu.org>
parents: 30560
diff changeset
1237 move_it_vertically (&it, window_box_height (w));
36471
bd660efb3fe7 (Fwindow_end): Call move_it_past_eol only if
Gerd Moellmann <gerd@gnu.org>
parents: 36444
diff changeset
1238 if (it.current_y < it.last_visible_y)
bd660efb3fe7 (Fwindow_end): Call move_it_past_eol only if
Gerd Moellmann <gerd@gnu.org>
parents: 36444
diff changeset
1239 move_it_past_eol (&it);
30743
51d0f4273e89 (Fwindow_end): Rewritten to not use Fvertical_motion,
Gerd Moellmann <gerd@gnu.org>
parents: 30560
diff changeset
1240 value = make_number (IT_CHARPOS (it));
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
1241
36231
9fa7c8e6a6d5 (Fwindow_end): Handle case that WINDOW's buffer is not
Gerd Moellmann <gerd@gnu.org>
parents: 36202
diff changeset
1242 if (old_buffer)
9fa7c8e6a6d5 (Fwindow_end): Handle case that WINDOW's buffer is not
Gerd Moellmann <gerd@gnu.org>
parents: 36202
diff changeset
1243 set_buffer_internal (old_buffer);
21198
10518dc95b25 (Frecenter): Operate on window's buffer even if some other was current.
Richard M. Stallman <rms@gnu.org>
parents: 21022
diff changeset
1244 }
10518dc95b25 (Frecenter): Operate on window's buffer even if some other was current.
Richard M. Stallman <rms@gnu.org>
parents: 21022
diff changeset
1245 else
72907
b9f52d5446b1 (Fwindow_line_visibility): New defun for line-move-partial.
Kim F. Storm <storm@cua.dk>
parents: 72663
diff changeset
1246 XSETINT (value, BUF_Z (b) - XFASTINT (w->window_end_pos));
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1247
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1248 return value;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1249 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1250
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1251 DEFUN ("set-window-point", Fset_window_point, Sset_window_point, 2, 2, 0,
56487
338a1d04223d (Fpos_visible_in_window_p, Fset_window_hscroll)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56456
diff changeset
1252 doc: /* Make point value in WINDOW be at position POS in WINDOW's buffer.
338a1d04223d (Fpos_visible_in_window_p, Fset_window_hscroll)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56456
diff changeset
1253 Return POS. */)
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1254 (window, pos)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1255 Lisp_Object window, pos;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1256 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1257 register struct window *w = decode_window (window);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1258
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
1259 CHECK_NUMBER_COERCE_MARKER (pos);
24230
ee835eec7607 (Fset_window_point): If WINDOW is selected but the
Richard M. Stallman <rms@gnu.org>
parents: 23728
diff changeset
1260 if (w == XWINDOW (selected_window)
ee835eec7607 (Fset_window_point): If WINDOW is selected but the
Richard M. Stallman <rms@gnu.org>
parents: 23728
diff changeset
1261 && XBUFFER (w->buffer) == current_buffer)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1262 Fgoto_char (pos);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1263 else
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1264 set_marker_restricted (w->pointm, pos, w->buffer);
34491
f9d400d4653a (Fset_window_point): If displaying cursors in windows
Gerd Moellmann <gerd@gnu.org>
parents: 34417
diff changeset
1265
34615
a8944d7e6773 (Fset_window_point): Remove test for
Gerd Moellmann <gerd@gnu.org>
parents: 34499
diff changeset
1266 /* We have to make sure that redisplay updates the window to show
a8944d7e6773 (Fset_window_point): Remove test for
Gerd Moellmann <gerd@gnu.org>
parents: 34499
diff changeset
1267 the new value of point. */
a8944d7e6773 (Fset_window_point): Remove test for
Gerd Moellmann <gerd@gnu.org>
parents: 34499
diff changeset
1268 if (!EQ (window, selected_window))
34491
f9d400d4653a (Fset_window_point): If displaying cursors in windows
Gerd Moellmann <gerd@gnu.org>
parents: 34417
diff changeset
1269 ++windows_or_buffers_changed;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
1270
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1271 return pos;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1272 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1273
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1274 DEFUN ("set-window-start", Fset_window_start, Sset_window_start, 2, 3, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1275 doc: /* Make display in WINDOW start at position POS in WINDOW's buffer.
56487
338a1d04223d (Fpos_visible_in_window_p, Fset_window_hscroll)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56456
diff changeset
1276 Return POS.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1277 Optional third arg NOFORCE non-nil inhibits next redisplay
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1278 from overriding motion of point in order to display at this exact start. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1279 (window, pos, noforce)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1280 Lisp_Object window, pos, noforce;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1281 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1282 register struct window *w = decode_window (window);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1283
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
1284 CHECK_NUMBER_COERCE_MARKER (pos);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1285 set_marker_restricted (w->start, pos, w->buffer);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1286 /* this is not right, but much easier than doing what is right. */
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1287 w->start_at_line_beg = Qnil;
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
1288 if (NILP (noforce))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1289 w->force_start = Qt;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1290 w->update_mode_line = Qt;
9324
ac6a5691607f (make_window, Fset_window_hscroll, Fset_window_start, set_window_height,
Karl Heuer <kwzh@gnu.org>
parents: 9282
diff changeset
1291 XSETFASTINT (w->last_modified, 0);
16208
e3a834653117 (Fset_window_start): Clear last_overlay_modified field.
Richard M. Stallman <rms@gnu.org>
parents: 16068
diff changeset
1292 XSETFASTINT (w->last_overlay_modified, 0);
338
4840aae6a876 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 265
diff changeset
1293 if (!EQ (window, selected_window))
4840aae6a876 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 265
diff changeset
1294 windows_or_buffers_changed++;
25387
df0083768b79 (Fset_window_point): Reset Vresize_mini_config.
Gerd Moellmann <gerd@gnu.org>
parents: 25375
diff changeset
1295
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1296 return pos;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1297 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1298
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1299 DEFUN ("window-dedicated-p", Fwindow_dedicated_p, Swindow_dedicated_p,
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1300 1, 1, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1301 doc: /* Return WINDOW's dedicated object, usually t or nil.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1302 See also `set-window-dedicated-p'. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1303 (window)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1304 Lisp_Object window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1305 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1306 return decode_window (window)->dedicated;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1307 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1308
722
0a2391511b46 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 708
diff changeset
1309 DEFUN ("set-window-dedicated-p", Fset_window_dedicated_p,
0a2391511b46 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 708
diff changeset
1310 Sset_window_dedicated_p, 2, 2, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1311 doc: /* Control whether WINDOW is dedicated to the buffer it displays.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1312 If it is dedicated, Emacs will not automatically change
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1313 which buffer appears in it.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1314 The second argument is the new value for the dedication flag;
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1315 non-nil means yes. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1316 (window, arg)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1317 Lisp_Object window, arg;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1318 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1319 register struct window *w = decode_window (window);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1320
51674
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
1321 w->dedicated = arg;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1322
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1323 return w->dedicated;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1324 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1325
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1326 DEFUN ("window-display-table", Fwindow_display_table, Swindow_display_table,
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1327 0, 1, 0,
75753
5e34b32b9b4c (Fwindow_height, Fwindow_hscroll)
Eli Zaretskii <eliz@gnu.org>
parents: 75348
diff changeset
1328 doc: /* Return the display-table that WINDOW is using.
5e34b32b9b4c (Fwindow_height, Fwindow_hscroll)
Eli Zaretskii <eliz@gnu.org>
parents: 75348
diff changeset
1329 WINDOW defaults to the selected window. */)
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1330 (window)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1331 Lisp_Object window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1332 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1333 return decode_window (window)->display_table;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1334 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1335
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
1336 /* Get the display table for use on window W. This is either W's
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
1337 display table or W's buffer's display table. Ignore the specified
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
1338 tables if they are not valid; if no valid table is specified,
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
1339 return 0. */
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1340
13187
1a4cee562d33 (window_display_table): Use DISP_TABLE_P. Return type
Richard M. Stallman <rms@gnu.org>
parents: 13126
diff changeset
1341 struct Lisp_Char_Table *
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1342 window_display_table (w)
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1343 struct window *w;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1344 {
30446
e3fe041c4e25 (window_display_table): Cleaned up.
Gerd Moellmann <gerd@gnu.org>
parents: 30366
diff changeset
1345 struct Lisp_Char_Table *dp = NULL;
e3fe041c4e25 (window_display_table): Cleaned up.
Gerd Moellmann <gerd@gnu.org>
parents: 30366
diff changeset
1346
e3fe041c4e25 (window_display_table): Cleaned up.
Gerd Moellmann <gerd@gnu.org>
parents: 30366
diff changeset
1347 if (DISP_TABLE_P (w->display_table))
e3fe041c4e25 (window_display_table): Cleaned up.
Gerd Moellmann <gerd@gnu.org>
parents: 30366
diff changeset
1348 dp = XCHAR_TABLE (w->display_table);
e3fe041c4e25 (window_display_table): Cleaned up.
Gerd Moellmann <gerd@gnu.org>
parents: 30366
diff changeset
1349 else if (BUFFERP (w->buffer))
e3fe041c4e25 (window_display_table): Cleaned up.
Gerd Moellmann <gerd@gnu.org>
parents: 30366
diff changeset
1350 {
e3fe041c4e25 (window_display_table): Cleaned up.
Gerd Moellmann <gerd@gnu.org>
parents: 30366
diff changeset
1351 struct buffer *b = XBUFFER (w->buffer);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
1352
30446
e3fe041c4e25 (window_display_table): Cleaned up.
Gerd Moellmann <gerd@gnu.org>
parents: 30366
diff changeset
1353 if (DISP_TABLE_P (b->display_table))
e3fe041c4e25 (window_display_table): Cleaned up.
Gerd Moellmann <gerd@gnu.org>
parents: 30366
diff changeset
1354 dp = XCHAR_TABLE (b->display_table);
e3fe041c4e25 (window_display_table): Cleaned up.
Gerd Moellmann <gerd@gnu.org>
parents: 30366
diff changeset
1355 else if (DISP_TABLE_P (Vstandard_display_table))
e3fe041c4e25 (window_display_table): Cleaned up.
Gerd Moellmann <gerd@gnu.org>
parents: 30366
diff changeset
1356 dp = XCHAR_TABLE (Vstandard_display_table);
e3fe041c4e25 (window_display_table): Cleaned up.
Gerd Moellmann <gerd@gnu.org>
parents: 30366
diff changeset
1357 }
e3fe041c4e25 (window_display_table): Cleaned up.
Gerd Moellmann <gerd@gnu.org>
parents: 30366
diff changeset
1358
e3fe041c4e25 (window_display_table): Cleaned up.
Gerd Moellmann <gerd@gnu.org>
parents: 30366
diff changeset
1359 return dp;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1360 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1361
555
e09a318cf838 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 548
diff changeset
1362 DEFUN ("set-window-display-table", Fset_window_display_table, Sset_window_display_table, 2, 2, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1363 doc: /* Set WINDOW's display-table to TABLE. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1364 (window, table)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1365 register Lisp_Object window, table;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1366 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1367 register struct window *w;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1368
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1369 w = decode_window (window);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1370 w->display_table = table;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1371 return table;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1372 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1373
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1374 /* Record info on buffer window w is displaying
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1375 when it is about to cease to display that buffer. */
21514
fa9ff387d260 Fix -Wimplicit warnings.
Andreas Schwab <schwab@suse.de>
parents: 21227
diff changeset
1376 static void
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1377 unshow_buffer (w)
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1378 register struct window *w;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1379 {
6517
8f5f79c3091a (unshow_buffer, window_loop, Fdisplay_buffer): Use assignment, not
Karl Heuer <kwzh@gnu.org>
parents: 6487
diff changeset
1380 Lisp_Object buf;
20535
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
1381 struct buffer *b;
6517
8f5f79c3091a (unshow_buffer, window_loop, Fdisplay_buffer): Use assignment, not
Karl Heuer <kwzh@gnu.org>
parents: 6487
diff changeset
1382
8f5f79c3091a (unshow_buffer, window_loop, Fdisplay_buffer): Use assignment, not
Karl Heuer <kwzh@gnu.org>
parents: 6487
diff changeset
1383 buf = w->buffer;
20535
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
1384 b = XBUFFER (buf);
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
1385 if (b != XMARKER (w->pointm)->buffer)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1386 abort ();
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1387
5990
936d4a988148 (unshow_buffer): Unconditionally set last_window_start.
Richard M. Stallman <rms@gnu.org>
parents: 5988
diff changeset
1388 #if 0
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1389 if (w == XWINDOW (selected_window)
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1390 || ! EQ (buf, XWINDOW (selected_window)->buffer))
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1391 /* Do this except when the selected window's buffer
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1392 is being removed from some other window. */
5990
936d4a988148 (unshow_buffer): Unconditionally set last_window_start.
Richard M. Stallman <rms@gnu.org>
parents: 5988
diff changeset
1393 #endif
936d4a988148 (unshow_buffer): Unconditionally set last_window_start.
Richard M. Stallman <rms@gnu.org>
parents: 5988
diff changeset
1394 /* last_window_start records the start position that this buffer
936d4a988148 (unshow_buffer): Unconditionally set last_window_start.
Richard M. Stallman <rms@gnu.org>
parents: 5988
diff changeset
1395 had in the last window to be disconnected from it.
936d4a988148 (unshow_buffer): Unconditionally set last_window_start.
Richard M. Stallman <rms@gnu.org>
parents: 5988
diff changeset
1396 Now that this statement is unconditional,
936d4a988148 (unshow_buffer): Unconditionally set last_window_start.
Richard M. Stallman <rms@gnu.org>
parents: 5988
diff changeset
1397 it is possible for the buffer to be displayed in the
936d4a988148 (unshow_buffer): Unconditionally set last_window_start.
Richard M. Stallman <rms@gnu.org>
parents: 5988
diff changeset
1398 selected window, while last_window_start reflects another
936d4a988148 (unshow_buffer): Unconditionally set last_window_start.
Richard M. Stallman <rms@gnu.org>
parents: 5988
diff changeset
1399 window which was recently showing the same buffer.
936d4a988148 (unshow_buffer): Unconditionally set last_window_start.
Richard M. Stallman <rms@gnu.org>
parents: 5988
diff changeset
1400 Some people might say that might be a good thing. Let's see. */
20535
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
1401 b->last_window_start = marker_position (w->start);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1402
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1403 /* Point in the selected window's buffer
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1404 is actually stored in that buffer, and the window's pointm isn't used.
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1405 So don't clobber point in that buffer. */
27869
1322db65a230 (select_window_1): If selected_window is nil,
Gerd Moellmann <gerd@gnu.org>
parents: 27850
diff changeset
1406 if (! EQ (buf, XWINDOW (selected_window)->buffer)
1322db65a230 (select_window_1): If selected_window is nil,
Gerd Moellmann <gerd@gnu.org>
parents: 27850
diff changeset
1407 /* This line helps to fix Horsley's testbug.el bug. */
28417
4b675266db04 * lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, XSUBR, XBUFFER):
Ken Raeburn <raeburn@raeburn.org>
parents: 28104
diff changeset
1408 && !(WINDOWP (b->last_selected_window)
4b675266db04 * lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, XSUBR, XBUFFER):
Ken Raeburn <raeburn@raeburn.org>
parents: 28104
diff changeset
1409 && w != XWINDOW (b->last_selected_window)
27869
1322db65a230 (select_window_1): If selected_window is nil,
Gerd Moellmann <gerd@gnu.org>
parents: 27850
diff changeset
1410 && EQ (buf, XWINDOW (b->last_selected_window)->buffer)))
20535
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
1411 temp_set_point_both (b,
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
1412 clip_to_bounds (BUF_BEGV (b),
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
1413 XMARKER (w->pointm)->charpos,
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
1414 BUF_ZV (b)),
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
1415 clip_to_bounds (BUF_BEGV_BYTE (b),
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
1416 marker_byte_position (w->pointm),
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
1417 BUF_ZV_BYTE (b)));
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
1418
28417
4b675266db04 * lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, XSUBR, XBUFFER):
Ken Raeburn <raeburn@raeburn.org>
parents: 28104
diff changeset
1419 if (WINDOWP (b->last_selected_window)
4b675266db04 * lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, XSUBR, XBUFFER):
Ken Raeburn <raeburn@raeburn.org>
parents: 28104
diff changeset
1420 && w == XWINDOW (b->last_selected_window))
27869
1322db65a230 (select_window_1): If selected_window is nil,
Gerd Moellmann <gerd@gnu.org>
parents: 27850
diff changeset
1421 b->last_selected_window = Qnil;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1422 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1423
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1424 /* Put replacement into the window structure in place of old. */
21514
fa9ff387d260 Fix -Wimplicit warnings.
Andreas Schwab <schwab@suse.de>
parents: 21227
diff changeset
1425 static void
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1426 replace_window (old, replacement)
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1427 Lisp_Object old, replacement;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1428 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1429 register Lisp_Object tem;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1430 register struct window *o = XWINDOW (old), *p = XWINDOW (replacement);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1431
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
1432 /* If OLD is its frame's root_window, then replacement is the new
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
1433 root_window for that frame. */
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1434
1525
f79a22ad87d0 * window.c (Fwindow_width, Fset_window_hscroll): Use accessors on
Jim Blandy <jimb@redhat.com>
parents: 1444
diff changeset
1435 if (EQ (old, FRAME_ROOT_WINDOW (XFRAME (o->frame))))
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
1436 FRAME_ROOT_WINDOW (XFRAME (o->frame)) = replacement;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1437
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
1438 p->left_col = o->left_col;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
1439 p->top_line = o->top_line;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
1440 p->total_cols = o->total_cols;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
1441 p->total_lines = o->total_lines;
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
1442 p->desired_matrix = p->current_matrix = 0;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
1443 p->vscroll = 0;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
1444 bzero (&p->cursor, sizeof (p->cursor));
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
1445 bzero (&p->last_cursor, sizeof (p->last_cursor));
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
1446 bzero (&p->phys_cursor, sizeof (p->phys_cursor));
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
1447 p->phys_cursor_type = -1;
43620
8a5d6239662c (make_window, replace_window): Initialize phys_cursor_width.
Kim F. Storm <storm@cua.dk>
parents: 43597
diff changeset
1448 p->phys_cursor_width = -1;
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
1449 p->must_be_updated_p = 0;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
1450 p->pseudo_window_p = 0;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
1451 XSETFASTINT (p->window_end_vpos, 0);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
1452 XSETFASTINT (p->window_end_pos, 0);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
1453 p->window_end_valid = Qnil;
25517
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
1454 p->frozen_window_start_p = 0;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
1455 p->orig_top_line = p->orig_total_lines = Qnil;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1456
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1457 p->next = tem = o->next;
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
1458 if (!NILP (tem))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1459 XWINDOW (tem)->prev = replacement;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1460
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1461 p->prev = tem = o->prev;
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
1462 if (!NILP (tem))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1463 XWINDOW (tem)->next = replacement;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1464
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1465 p->parent = tem = o->parent;
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
1466 if (!NILP (tem))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1467 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1468 if (EQ (XWINDOW (tem)->vchild, old))
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1469 XWINDOW (tem)->vchild = replacement;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1470 if (EQ (XWINDOW (tem)->hchild, old))
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1471 XWINDOW (tem)->hchild = replacement;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1472 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1473
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1474 /*** Here, if replacement is a vertical combination
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1475 and so is its new parent, we should make replacement's
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1476 children be children of that parent instead. ***/
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1477 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1478
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1479 DEFUN ("delete-window", Fdelete_window, Sdelete_window, 0, 1, "",
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1480 doc: /* Remove WINDOW from the display. Default is selected window. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1481 (window)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1482 register Lisp_Object window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1483 {
17281
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
1484 delete_window (window);
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
1485
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
1486 if (! NILP (Vwindow_configuration_change_hook)
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
1487 && ! NILP (Vrun_hooks))
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
1488 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
1489
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
1490 return Qnil;
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
1491 }
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
1492
20351
f69eb2ab4f0f Add prototypes.
Andreas Schwab <schwab@suse.de>
parents: 20090
diff changeset
1493 void
17281
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
1494 delete_window (window)
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
1495 register Lisp_Object window;
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
1496 {
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1497 register Lisp_Object tem, parent, sib;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1498 register struct window *p;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1499 register struct window *par;
34819
7fcb09b535b4 (delete_window): Simplify somewhat.
Gerd Moellmann <gerd@gnu.org>
parents: 34786
diff changeset
1500 struct frame *f;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1501
1444
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
1502 /* Because this function is called by other C code on non-leaf
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
1503 windows, the CHECK_LIVE_WINDOW macro would choke inappropriately,
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
1504 so we can't decode_window here. */
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
1505 if (NILP (window))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1506 window = selected_window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1507 else
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
1508 CHECK_WINDOW (window);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1509 p = XWINDOW (window);
1444
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
1510
67156
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
1511 /* It's a no-op to delete an already-deleted window. */
1444
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
1512 if (NILP (p->buffer)
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
1513 && NILP (p->hchild)
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
1514 && NILP (p->vchild))
17365
fc2ec9ced22f (delete_window): Don't return value from void function.
Karl Heuer <kwzh@gnu.org>
parents: 17281
diff changeset
1515 return;
1444
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
1516
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1517 parent = p->parent;
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
1518 if (NILP (parent))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1519 error ("Attempt to delete minibuffer or sole ordinary window");
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1520 par = XWINDOW (parent);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1521
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1522 windows_or_buffers_changed++;
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1523 Vwindow_list = Qnil;
34819
7fcb09b535b4 (delete_window): Simplify somewhat.
Gerd Moellmann <gerd@gnu.org>
parents: 34786
diff changeset
1524 f = XFRAME (WINDOW_FRAME (p));
7fcb09b535b4 (delete_window): Simplify somewhat.
Gerd Moellmann <gerd@gnu.org>
parents: 34786
diff changeset
1525 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1526
1444
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
1527 /* Are we trying to delete any frame's selected window? */
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
1528 {
42603
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
1529 Lisp_Object swindow, pwindow;
3723
ccb9c93aac80 (Fdelete_window): Handle deleting a parent of the selected window.
Richard M. Stallman <rms@gnu.org>
parents: 3688
diff changeset
1530
ccb9c93aac80 (Fdelete_window): Handle deleting a parent of the selected window.
Richard M. Stallman <rms@gnu.org>
parents: 3688
diff changeset
1531 /* See if the frame's selected window is either WINDOW
ccb9c93aac80 (Fdelete_window): Handle deleting a parent of the selected window.
Richard M. Stallman <rms@gnu.org>
parents: 3688
diff changeset
1532 or any subwindow of it, by finding all that window's parents
ccb9c93aac80 (Fdelete_window): Handle deleting a parent of the selected window.
Richard M. Stallman <rms@gnu.org>
parents: 3688
diff changeset
1533 and comparing each one with WINDOW. */
42603
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
1534 swindow = FRAME_SELECTED_WINDOW (f);
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
1535
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
1536 while (1)
3723
ccb9c93aac80 (Fdelete_window): Handle deleting a parent of the selected window.
Richard M. Stallman <rms@gnu.org>
parents: 3688
diff changeset
1537 {
42603
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
1538 pwindow = swindow;
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
1539 while (!NILP (pwindow))
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
1540 {
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
1541 if (EQ (window, pwindow))
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
1542 break;
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
1543 pwindow = XWINDOW (pwindow)->parent;
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
1544 }
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
1545
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
1546 /* If the window being deleted is not a parent of SWINDOW,
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
1547 then SWINDOW is ok as the new selected window. */
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
1548 if (!EQ (window, pwindow))
3723
ccb9c93aac80 (Fdelete_window): Handle deleting a parent of the selected window.
Richard M. Stallman <rms@gnu.org>
parents: 3688
diff changeset
1549 break;
42603
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
1550 /* Otherwise, try another window for SWINDOW. */
77905
2fd30dc1a157 (delete_window): Delete stray semicolon.
Chong Yidong <cyd@stupidchicken.com>
parents: 77883
diff changeset
1551 swindow = Fnext_window (swindow, Qlambda, Qnil);
42603
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
1552
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
1553 /* If we get back to the frame's selected window,
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
1554 it means there was no acceptable alternative,
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
1555 so we cannot delete. */
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
1556 if (EQ (swindow, FRAME_SELECTED_WINDOW (f)))
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
1557 error ("Cannot delete window");
3723
ccb9c93aac80 (Fdelete_window): Handle deleting a parent of the selected window.
Richard M. Stallman <rms@gnu.org>
parents: 3688
diff changeset
1558 }
ccb9c93aac80 (Fdelete_window): Handle deleting a parent of the selected window.
Richard M. Stallman <rms@gnu.org>
parents: 3688
diff changeset
1559
42603
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
1560 /* If we need to change SWINDOW, do it. */
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
1561 if (! EQ (swindow, FRAME_SELECTED_WINDOW (f)))
1444
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
1562 {
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
1563 /* If we're about to delete the selected window on the
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
1564 selected frame, then we should use Fselect_window to select
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
1565 the new window. On the other hand, if we're about to
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
1566 delete the selected window on any other frame, we shouldn't do
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
1567 anything but set the frame's selected_window slot. */
42603
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
1568 if (EQ (FRAME_SELECTED_WINDOW (f), selected_window))
51049
12bbef36ecf1 (Fselect_window): Add optional `norecord' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50367
diff changeset
1569 Fselect_window (swindow, Qnil);
1444
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
1570 else
42603
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
1571 FRAME_SELECTED_WINDOW (f) = swindow;
1444
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
1572 }
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
1573 }
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1574
67156
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
1575 /* Now we know we can delete this one. */
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
1576 window_deletion_count++;
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
1577
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1578 tem = p->buffer;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1579 /* tem is null for dummy parent windows
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1580 (which have inferiors but not any contents themselves) */
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
1581 if (!NILP (tem))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1582 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1583 unshow_buffer (p);
51674
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
1584 unchain_marker (XMARKER (p->pointm));
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
1585 unchain_marker (XMARKER (p->start));
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1586 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1587
26761
c15c2756ec0f (delete_window): Block input for the time window
Gerd Moellmann <gerd@gnu.org>
parents: 26635
diff changeset
1588 /* Free window glyph matrices. It is sure that they are allocated
c15c2756ec0f (delete_window): Block input for the time window
Gerd Moellmann <gerd@gnu.org>
parents: 26635
diff changeset
1589 again when ADJUST_GLYPHS is called. Block input so that expose
c15c2756ec0f (delete_window): Block input for the time window
Gerd Moellmann <gerd@gnu.org>
parents: 26635
diff changeset
1590 events and other events that access glyph matrices are not
c15c2756ec0f (delete_window): Block input for the time window
Gerd Moellmann <gerd@gnu.org>
parents: 26635
diff changeset
1591 processed while we are changing them. */
c15c2756ec0f (delete_window): Block input for the time window
Gerd Moellmann <gerd@gnu.org>
parents: 26635
diff changeset
1592 BLOCK_INPUT;
34819
7fcb09b535b4 (delete_window): Simplify somewhat.
Gerd Moellmann <gerd@gnu.org>
parents: 34786
diff changeset
1593 free_window_matrices (XWINDOW (FRAME_ROOT_WINDOW (f)));
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
1594
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1595 tem = p->next;
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
1596 if (!NILP (tem))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1597 XWINDOW (tem)->prev = p->prev;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1598
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1599 tem = p->prev;
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
1600 if (!NILP (tem))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1601 XWINDOW (tem)->next = p->next;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1602
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1603 if (EQ (window, par->hchild))
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1604 par->hchild = p->next;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1605 if (EQ (window, par->vchild))
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1606 par->vchild = p->next;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1607
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1608 /* Find one of our siblings to give our space to. */
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1609 sib = p->prev;
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
1610 if (NILP (sib))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1611 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1612 /* If p gives its space to its next sibling, that sibling needs
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1613 to have its top/left side pulled back to where p's is.
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1614 set_window_{height,width} will re-position the sibling's
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1615 children. */
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1616 sib = p->next;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
1617 XWINDOW (sib)->top_line = p->top_line;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
1618 XWINDOW (sib)->left_col = p->left_col;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1619 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1620
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1621 /* Stretch that sibling. */
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
1622 if (!NILP (par->vchild))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1623 set_window_height (sib,
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
1624 XFASTINT (XWINDOW (sib)->total_lines) + XFASTINT (p->total_lines),
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1625 1);
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
1626 if (!NILP (par->hchild))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1627 set_window_width (sib,
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
1628 XFASTINT (XWINDOW (sib)->total_cols) + XFASTINT (p->total_cols),
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1629 1);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1630
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1631 /* If parent now has only one child,
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1632 put the child into the parent's place. */
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1633 tem = par->hchild;
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
1634 if (NILP (tem))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1635 tem = par->vchild;
63045
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1636 if (NILP (XWINDOW (tem)->next)) {
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1637 replace_window (parent, tem);
63045
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1638 par = XWINDOW (tem);
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1639 }
1444
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
1640
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
1641 /* Since we may be deleting combination windows, we must make sure that
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
1642 not only p but all its children have been marked as deleted. */
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
1643 if (! NILP (p->hchild))
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
1644 delete_all_subwindows (XWINDOW (p->hchild));
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
1645 else if (! NILP (p->vchild))
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
1646 delete_all_subwindows (XWINDOW (p->vchild));
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
1647
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
1648 /* Mark this window as deleted. */
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
1649 p->buffer = p->hchild = p->vchild = Qnil;
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
1650
63045
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1651 if (! NILP (par->parent))
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1652 par = XWINDOW (par->parent);
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1653
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1654 /* Check if we have a v/hchild with a v/hchild. In that case remove
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1655 one of them. */
64133
7e06f331c228 (Frecenter): Fix last change (set iarg before use).
Kim F. Storm <storm@cua.dk>
parents: 64114
diff changeset
1656
63045
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1657 if (! NILP (par->vchild) && ! NILP (XWINDOW (par->vchild)->vchild))
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1658 {
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1659 p = XWINDOW (par->vchild);
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1660 par->vchild = p->vchild;
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1661 tem = p->vchild;
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1662 }
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1663 else if (! NILP (par->hchild) && ! NILP (XWINDOW (par->hchild)->hchild))
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1664 {
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1665 p = XWINDOW (par->hchild);
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1666 par->hchild = p->hchild;
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1667 tem = p->hchild;
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1668 }
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1669 else
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1670 p = 0;
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1671
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1672 if (p)
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1673 {
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1674 while (! NILP (tem)) {
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1675 XWINDOW (tem)->parent = p->parent;
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1676 if (NILP (XWINDOW (tem)->next))
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1677 break;
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1678 tem = XWINDOW (tem)->next;
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1679 }
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1680 if (! NILP (tem)) {
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1681 /* The next of the v/hchild we are removing is now the next of the
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1682 last child for the v/hchild:
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1683 Before v/hchild -> v/hchild -> next1 -> next2
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1684 |
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1685 -> next3
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1686 After: v/hchild -> next1 -> next2 -> next3
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1687 */
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1688 XWINDOW (tem)->next = p->next;
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1689 if (! NILP (p->next))
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1690 XWINDOW (p->next)->prev = tem;
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1691 }
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1692 p->next = p->prev = p->vchild = p->hchild = p->buffer = Qnil;
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1693 }
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1694
872de430453e * window.c (delete_window): Handle the case where a h/vchild has
Jan Djärv <jan.h.d@swipnet.se>
parents: 62544
diff changeset
1695
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
1696 /* Adjust glyph matrices. */
34819
7fcb09b535b4 (delete_window): Simplify somewhat.
Gerd Moellmann <gerd@gnu.org>
parents: 34786
diff changeset
1697 adjust_glyphs (f);
26761
c15c2756ec0f (delete_window): Block input for the time window
Gerd Moellmann <gerd@gnu.org>
parents: 26635
diff changeset
1698 UNBLOCK_INPUT;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1699 }
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1700
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1701
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1702
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1703 /***********************************************************************
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1704 Window List
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1705 ***********************************************************************/
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1706
30362
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
1707 /* Add window W to *USER_DATA. USER_DATA is actually a Lisp_Object
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
1708 pointer. This is a callback function for foreach_window, used in
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
1709 function window_list. */
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1710
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1711 static int
30362
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
1712 add_window_to_list (w, user_data)
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1713 struct window *w;
30362
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
1714 void *user_data;
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1715 {
30362
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
1716 Lisp_Object *list = (Lisp_Object *) user_data;
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1717 Lisp_Object window;
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1718 XSETWINDOW (window, w);
30039
07f23448b6e5 (add_window_to_list): Add parameter LIST.
Gerd Moellmann <gerd@gnu.org>
parents: 30037
diff changeset
1719 *list = Fcons (window, *list);
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1720 return 1;
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1721 }
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1722
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1723
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1724 /* Return a list of all windows, for use by next_window. If
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1725 Vwindow_list is a list, return that list. Otherwise, build a new
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1726 list, cache it in Vwindow_list, and return that. */
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1727
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1728 static Lisp_Object
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1729 window_list ()
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1730 {
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1731 if (!CONSP (Vwindow_list))
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1732 {
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1733 Lisp_Object tail;
30039
07f23448b6e5 (add_window_to_list): Add parameter LIST.
Gerd Moellmann <gerd@gnu.org>
parents: 30037
diff changeset
1734
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1735 Vwindow_list = Qnil;
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1736 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
30039
07f23448b6e5 (add_window_to_list): Add parameter LIST.
Gerd Moellmann <gerd@gnu.org>
parents: 30037
diff changeset
1737 {
07f23448b6e5 (add_window_to_list): Add parameter LIST.
Gerd Moellmann <gerd@gnu.org>
parents: 30037
diff changeset
1738 Lisp_Object args[2];
07f23448b6e5 (add_window_to_list): Add parameter LIST.
Gerd Moellmann <gerd@gnu.org>
parents: 30037
diff changeset
1739
07f23448b6e5 (add_window_to_list): Add parameter LIST.
Gerd Moellmann <gerd@gnu.org>
parents: 30037
diff changeset
1740 /* We are visiting windows in canonical order, and add
07f23448b6e5 (add_window_to_list): Add parameter LIST.
Gerd Moellmann <gerd@gnu.org>
parents: 30037
diff changeset
1741 new windows at the front of args[1], which means we
07f23448b6e5 (add_window_to_list): Add parameter LIST.
Gerd Moellmann <gerd@gnu.org>
parents: 30037
diff changeset
1742 have to reverse this list at the end. */
07f23448b6e5 (add_window_to_list): Add parameter LIST.
Gerd Moellmann <gerd@gnu.org>
parents: 30037
diff changeset
1743 args[1] = Qnil;
07f23448b6e5 (add_window_to_list): Add parameter LIST.
Gerd Moellmann <gerd@gnu.org>
parents: 30037
diff changeset
1744 foreach_window (XFRAME (XCAR (tail)), add_window_to_list, &args[1]);
07f23448b6e5 (add_window_to_list): Add parameter LIST.
Gerd Moellmann <gerd@gnu.org>
parents: 30037
diff changeset
1745 args[0] = Vwindow_list;
07f23448b6e5 (add_window_to_list): Add parameter LIST.
Gerd Moellmann <gerd@gnu.org>
parents: 30037
diff changeset
1746 args[1] = Fnreverse (args[1]);
07f23448b6e5 (add_window_to_list): Add parameter LIST.
Gerd Moellmann <gerd@gnu.org>
parents: 30037
diff changeset
1747 Vwindow_list = Fnconc (2, args);
07f23448b6e5 (add_window_to_list): Add parameter LIST.
Gerd Moellmann <gerd@gnu.org>
parents: 30037
diff changeset
1748 }
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1749 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
1750
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1751 return Vwindow_list;
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1752 }
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1753
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1754
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
1755 /* Value is non-zero if WINDOW satisfies the constraints given by
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
1756 OWINDOW, MINIBUF and ALL_FRAMES.
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
1757
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
1758 MINIBUF t means WINDOW may be minibuffer windows.
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
1759 `lambda' means WINDOW may not be a minibuffer window.
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
1760 a window means a specific minibuffer window
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
1761
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
1762 ALL_FRAMES t means search all frames,
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
1763 nil means search just current frame,
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
1764 `visible' means search just visible frames,
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
1765 0 means search visible and iconified frames,
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
1766 a window means search the frame that window belongs to,
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
1767 a frame means consider windows on that frame, only. */
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1768
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1769 static int
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
1770 candidate_window_p (window, owindow, minibuf, all_frames)
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
1771 Lisp_Object window, owindow, minibuf, all_frames;
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1772 {
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1773 struct window *w = XWINDOW (window);
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1774 struct frame *f = XFRAME (w->frame);
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1775 int candidate_p = 1;
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1776
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1777 if (!BUFFERP (w->buffer))
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1778 candidate_p = 0;
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1779 else if (MINI_WINDOW_P (w)
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1780 && (EQ (minibuf, Qlambda)
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1781 || (WINDOWP (minibuf) && !EQ (minibuf, window))))
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1782 {
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1783 /* If MINIBUF is `lambda' don't consider any mini-windows.
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1784 If it is a window, consider only that one. */
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1785 candidate_p = 0;
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1786 }
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
1787 else if (EQ (all_frames, Qt))
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
1788 candidate_p = 1;
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1789 else if (NILP (all_frames))
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
1790 {
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
1791 xassert (WINDOWP (owindow));
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
1792 candidate_p = EQ (w->frame, XWINDOW (owindow)->frame);
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
1793 }
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1794 else if (EQ (all_frames, Qvisible))
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1795 {
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1796 FRAME_SAMPLE_VISIBILITY (f);
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1797 candidate_p = FRAME_VISIBLE_P (f);
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1798 }
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1799 else if (INTEGERP (all_frames) && XINT (all_frames) == 0)
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1800 {
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1801 FRAME_SAMPLE_VISIBILITY (f);
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1802 candidate_p = FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f);
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1803 }
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1804 else if (WINDOWP (all_frames))
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1805 candidate_p = (EQ (FRAME_MINIBUF_WINDOW (f), all_frames)
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1806 || EQ (XWINDOW (all_frames)->frame, w->frame)
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1807 || EQ (XWINDOW (all_frames)->frame, FRAME_FOCUS_FRAME (f)));
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
1808 else if (FRAMEP (all_frames))
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
1809 candidate_p = EQ (all_frames, w->frame);
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1810
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1811 return candidate_p;
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1812 }
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1813
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1814
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1815 /* Decode arguments as allowed by Fnext_window, Fprevious_window, and
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1816 Fwindow_list. See there for the meaning of WINDOW, MINIBUF, and
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1817 ALL_FRAMES. */
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1818
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1819 static void
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1820 decode_next_window_args (window, minibuf, all_frames)
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1821 Lisp_Object *window, *minibuf, *all_frames;
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1822 {
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1823 if (NILP (*window))
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1824 *window = selected_window;
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1825 else
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
1826 CHECK_LIVE_WINDOW (*window);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
1827
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1828 /* MINIBUF nil may or may not include minibuffers. Decide if it
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1829 does. */
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1830 if (NILP (*minibuf))
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1831 *minibuf = minibuf_level ? minibuf_window : Qlambda;
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1832 else if (!EQ (*minibuf, Qt))
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1833 *minibuf = Qlambda;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
1834
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1835 /* Now *MINIBUF can be t => count all minibuffer windows, `lambda'
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1836 => count none of them, or a specific minibuffer window (the
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1837 active one) to count. */
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1838
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1839 /* ALL_FRAMES nil doesn't specify which frames to include. */
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1840 if (NILP (*all_frames))
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1841 *all_frames = (!EQ (*minibuf, Qlambda)
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1842 ? FRAME_MINIBUF_WINDOW (XFRAME (XWINDOW (*window)->frame))
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1843 : Qnil);
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1844 else if (EQ (*all_frames, Qvisible))
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1845 ;
58448
f3a76c43ac80 (Fset_window_scroll_bars): Don't use XINT if it isn't int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58441
diff changeset
1846 else if (EQ (*all_frames, make_number (0)))
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1847 ;
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1848 else if (FRAMEP (*all_frames))
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1849 ;
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1850 else if (!EQ (*all_frames, Qt))
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1851 *all_frames = Qnil;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
1852
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1853 /* Now *ALL_FRAMES is t meaning search all frames, nil meaning
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1854 search just current frame, `visible' meaning search just visible
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1855 frames, 0 meaning search visible and iconified frames, or a
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1856 window, meaning search the frame that window belongs to, or a
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1857 frame, meaning consider windows on that frame, only. */
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1858 }
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1859
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1860
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1861 /* Return the next or previous window of WINDOW in canonical ordering
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1862 of windows. NEXT_P non-zero means return the next window. See the
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1863 documentation string of next-window for the meaning of MINIBUF and
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1864 ALL_FRAMES. */
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1865
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1866 static Lisp_Object
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1867 next_window (window, minibuf, all_frames, next_p)
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1868 Lisp_Object window, minibuf, all_frames;
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1869 int next_p;
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1870 {
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1871 decode_next_window_args (&window, &minibuf, &all_frames);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
1872
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1873 /* If ALL_FRAMES is a frame, and WINDOW isn't on that frame, just
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1874 return the first window on the frame. */
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1875 if (FRAMEP (all_frames)
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1876 && !EQ (all_frames, XWINDOW (window)->frame))
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1877 return Fframe_first_window (all_frames);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
1878
30039
07f23448b6e5 (add_window_to_list): Add parameter LIST.
Gerd Moellmann <gerd@gnu.org>
parents: 30037
diff changeset
1879 if (next_p)
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1880 {
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1881 Lisp_Object list;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
1882
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1883 /* Find WINDOW in the list of all windows. */
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1884 list = Fmemq (window, window_list ());
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1885
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1886 /* Scan forward from WINDOW to the end of the window list. */
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1887 if (CONSP (list))
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1888 for (list = XCDR (list); CONSP (list); list = XCDR (list))
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
1889 if (candidate_window_p (XCAR (list), window, minibuf, all_frames))
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1890 break;
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1891
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1892 /* Scan from the start of the window list up to WINDOW. */
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1893 if (!CONSP (list))
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1894 for (list = Vwindow_list;
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1895 CONSP (list) && !EQ (XCAR (list), window);
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1896 list = XCDR (list))
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
1897 if (candidate_window_p (XCAR (list), window, minibuf, all_frames))
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1898 break;
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1899
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1900 if (CONSP (list))
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1901 window = XCAR (list);
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1902 }
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1903 else
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1904 {
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1905 Lisp_Object candidate, list;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
1906
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1907 /* Scan through the list of windows for candidates. If there are
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1908 candidate windows in front of WINDOW, the last one of these
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1909 is the one we want. If there are candidates following WINDOW
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1910 in the list, again the last one of these is the one we want. */
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1911 candidate = Qnil;
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1912 for (list = window_list (); CONSP (list); list = XCDR (list))
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1913 {
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1914 if (EQ (XCAR (list), window))
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1915 {
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1916 if (WINDOWP (candidate))
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1917 break;
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1918 }
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
1919 else if (candidate_window_p (XCAR (list), window, minibuf,
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
1920 all_frames))
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1921 candidate = XCAR (list);
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1922 }
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1923
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1924 if (WINDOWP (candidate))
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1925 window = candidate;
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1926 }
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1927
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1928 return window;
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1929 }
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1930
432
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
1931
4145
a0b726903a1f * window.c [not MULTI_FRAME] (Fdelete_windows_on): Set FRAME
Jim Blandy <jimb@redhat.com>
parents: 3803
diff changeset
1932 DEFUN ("next-window", Fnext_window, Snext_window, 0, 3, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1933 doc: /* Return next window after WINDOW in canonical ordering of windows.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1934 If omitted, WINDOW defaults to the selected window.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1935
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1936 Optional second arg MINIBUF t means count the minibuffer window even
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1937 if not active. MINIBUF nil or omitted means count the minibuffer iff
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1938 it is active. MINIBUF neither t nor nil means not to count the
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1939 minibuffer even if it is active.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1940
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1941 Several frames may share a single minibuffer; if the minibuffer
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1942 counts, all windows on all frames that share that minibuffer count
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1943 too. Therefore, `next-window' can be used to iterate through the
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1944 set of windows even when the minibuffer is on another frame. If the
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1945 minibuffer does not count, only windows from WINDOW's frame count.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1946
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1947 Optional third arg ALL-FRAMES t means include windows on all frames.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1948 ALL-FRAMES nil or omitted means cycle within the frames as specified
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1949 above. ALL-FRAMES = `visible' means include windows on all visible frames.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1950 ALL-FRAMES = 0 means include windows on all visible and iconified frames.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1951 If ALL-FRAMES is a frame, restrict search to windows on that frame.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1952 Anything else means restrict to WINDOW's frame.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1953
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1954 If you use consistent values for MINIBUF and ALL-FRAMES, you can use
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1955 `next-window' to iterate through the entire cycle of acceptable
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1956 windows, eventually ending up back at the window you started with.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1957 `previous-window' traverses the same cycle, in the reverse order. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1958 (window, minibuf, all_frames)
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1959 Lisp_Object window, minibuf, all_frames;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1960 {
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1961 return next_window (window, minibuf, all_frames, 1);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1962 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1963
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1964
4145
a0b726903a1f * window.c [not MULTI_FRAME] (Fdelete_windows_on): Set FRAME
Jim Blandy <jimb@redhat.com>
parents: 3803
diff changeset
1965 DEFUN ("previous-window", Fprevious_window, Sprevious_window, 0, 3, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1966 doc: /* Return the window preceding WINDOW in canonical ordering of windows.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1967 If omitted, WINDOW defaults to the selected window.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1968
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1969 Optional second arg MINIBUF t means count the minibuffer window even
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1970 if not active. MINIBUF nil or omitted means count the minibuffer iff
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1971 it is active. MINIBUF neither t nor nil means not to count the
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1972 minibuffer even if it is active.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1973
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1974 Several frames may share a single minibuffer; if the minibuffer
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1975 counts, all windows on all frames that share that minibuffer count
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1976 too. Therefore, `previous-window' can be used to iterate through
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1977 the set of windows even when the minibuffer is on another frame. If
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1978 the minibuffer does not count, only windows from WINDOW's frame count
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1979
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1980 Optional third arg ALL-FRAMES t means include windows on all frames.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1981 ALL-FRAMES nil or omitted means cycle within the frames as specified
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1982 above. ALL-FRAMES = `visible' means include windows on all visible frames.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1983 ALL-FRAMES = 0 means include windows on all visible and iconified frames.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1984 If ALL-FRAMES is a frame, restrict search to windows on that frame.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1985 Anything else means restrict to WINDOW's frame.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1986
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1987 If you use consistent values for MINIBUF and ALL-FRAMES, you can use
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1988 `previous-window' to iterate through the entire cycle of acceptable
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1989 windows, eventually ending up back at the window you started with.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1990 `next-window' traverses the same cycle, in the reverse order. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1991 (window, minibuf, all_frames)
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1992 Lisp_Object window, minibuf, all_frames;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1993 {
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1994 return next_window (window, minibuf, all_frames, 0);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1995 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1996
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
1997
338
4840aae6a876 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 265
diff changeset
1998 DEFUN ("other-window", Fother_window, Sother_window, 1, 2, "p",
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
1999 doc: /* Select the ARG'th different window on this frame.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2000 All windows on current frame are arranged in a cyclic order.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2001 This command selects the window ARG steps away in that order.
56393
8eb84bf840a8 (Fwindow_buffer, Fother_window, Fget_lru_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56174
diff changeset
2002 A negative ARG moves in the opposite order. The optional second
68490
36ac94b7246c (Fother_window, Fwindow_vscroll, Fset_window_vscroll): Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents: 67328
diff changeset
2003 argument ALL-FRAMES has the same meaning as in `next-window', which see. */)
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2004 (arg, all_frames)
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
2005 Lisp_Object arg, all_frames;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2006 {
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
2007 Lisp_Object window;
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
2008 int i;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2009
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
2010 CHECK_NUMBER (arg);
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
2011 window = selected_window;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
2012
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
2013 for (i = XINT (arg); i > 0; --i)
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
2014 window = Fnext_window (window, Qnil, all_frames);
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
2015 for (; i < 0; ++i)
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
2016 window = Fprevious_window (window, Qnil, all_frames);
39953
3a1666ed16b8 (select_window_1): Unfreeze window start. Remove a
Gerd Moellmann <gerd@gnu.org>
parents: 39952
diff changeset
2017
51049
12bbef36ecf1 (Fselect_window): Add optional `norecord' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50367
diff changeset
2018 Fselect_window (window, Qnil);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2019 return Qnil;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2020 }
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
2021
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
2022
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
2023 DEFUN ("window-list", Fwindow_list, Swindow_list, 0, 3, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2024 doc: /* Return a list of windows on FRAME, starting with WINDOW.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2025 FRAME nil or omitted means use the selected frame.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2026 WINDOW nil or omitted means use the selected window.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2027 MINIBUF t means include the minibuffer window, even if it isn't active.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2028 MINIBUF nil or omitted means include the minibuffer window only
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2029 if it's active.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2030 MINIBUF neither nil nor t means never include the minibuffer window. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2031 (frame, minibuf, window)
33619
d0482eab29e1 (Fwindow_list): Change parameter list to be XEmacs
Gerd Moellmann <gerd@gnu.org>
parents: 33463
diff changeset
2032 Lisp_Object frame, minibuf, window;
d0482eab29e1 (Fwindow_list): Change parameter list to be XEmacs
Gerd Moellmann <gerd@gnu.org>
parents: 33463
diff changeset
2033 {
d0482eab29e1 (Fwindow_list): Change parameter list to be XEmacs
Gerd Moellmann <gerd@gnu.org>
parents: 33463
diff changeset
2034 if (NILP (window))
69104
527507f1a62e (Fwindow_list): Check `window' before doing XWINDOW.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 68987
diff changeset
2035 window = FRAMEP (frame) ? XFRAME (frame)->selected_window : selected_window;
527507f1a62e (Fwindow_list): Check `window' before doing XWINDOW.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 68987
diff changeset
2036 CHECK_WINDOW (window);
33619
d0482eab29e1 (Fwindow_list): Change parameter list to be XEmacs
Gerd Moellmann <gerd@gnu.org>
parents: 33463
diff changeset
2037 if (NILP (frame))
d0482eab29e1 (Fwindow_list): Change parameter list to be XEmacs
Gerd Moellmann <gerd@gnu.org>
parents: 33463
diff changeset
2038 frame = selected_frame;
d0482eab29e1 (Fwindow_list): Change parameter list to be XEmacs
Gerd Moellmann <gerd@gnu.org>
parents: 33463
diff changeset
2039
d0482eab29e1 (Fwindow_list): Change parameter list to be XEmacs
Gerd Moellmann <gerd@gnu.org>
parents: 33463
diff changeset
2040 if (!EQ (frame, XWINDOW (window)->frame))
d0482eab29e1 (Fwindow_list): Change parameter list to be XEmacs
Gerd Moellmann <gerd@gnu.org>
parents: 33463
diff changeset
2041 error ("Window is on a different frame");
d0482eab29e1 (Fwindow_list): Change parameter list to be XEmacs
Gerd Moellmann <gerd@gnu.org>
parents: 33463
diff changeset
2042
d0482eab29e1 (Fwindow_list): Change parameter list to be XEmacs
Gerd Moellmann <gerd@gnu.org>
parents: 33463
diff changeset
2043 return window_list_1 (window, minibuf, frame);
d0482eab29e1 (Fwindow_list): Change parameter list to be XEmacs
Gerd Moellmann <gerd@gnu.org>
parents: 33463
diff changeset
2044 }
d0482eab29e1 (Fwindow_list): Change parameter list to be XEmacs
Gerd Moellmann <gerd@gnu.org>
parents: 33463
diff changeset
2045
d0482eab29e1 (Fwindow_list): Change parameter list to be XEmacs
Gerd Moellmann <gerd@gnu.org>
parents: 33463
diff changeset
2046
d0482eab29e1 (Fwindow_list): Change parameter list to be XEmacs
Gerd Moellmann <gerd@gnu.org>
parents: 33463
diff changeset
2047 /* Return a list of windows in canonical ordering. Arguments are like
d0482eab29e1 (Fwindow_list): Change parameter list to be XEmacs
Gerd Moellmann <gerd@gnu.org>
parents: 33463
diff changeset
2048 for `next-window'. */
d0482eab29e1 (Fwindow_list): Change parameter list to be XEmacs
Gerd Moellmann <gerd@gnu.org>
parents: 33463
diff changeset
2049
d0482eab29e1 (Fwindow_list): Change parameter list to be XEmacs
Gerd Moellmann <gerd@gnu.org>
parents: 33463
diff changeset
2050 static Lisp_Object
d0482eab29e1 (Fwindow_list): Change parameter list to be XEmacs
Gerd Moellmann <gerd@gnu.org>
parents: 33463
diff changeset
2051 window_list_1 (window, minibuf, all_frames)
30265
9b1c8eafe4dc (Fwindow_list): Declare arg `window'.
Dave Love <fx@gnu.org>
parents: 30102
diff changeset
2052 Lisp_Object window, minibuf, all_frames;
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
2053 {
56456
7f86a9a89685 (coordinates_in_window): Inside the window but outside
Richard M. Stallman <rms@gnu.org>
parents: 56393
diff changeset
2054 Lisp_Object tail, list, rest;
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
2055
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
2056 decode_next_window_args (&window, &minibuf, &all_frames);
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
2057 list = Qnil;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
2058
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
2059 for (tail = window_list (); CONSP (tail); tail = XCDR (tail))
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2060 if (candidate_window_p (XCAR (tail), window, minibuf, all_frames))
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
2061 list = Fcons (XCAR (tail), list);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
2062
56456
7f86a9a89685 (coordinates_in_window): Inside the window but outside
Richard M. Stallman <rms@gnu.org>
parents: 56393
diff changeset
2063 /* Rotate the list to start with WINDOW. */
7f86a9a89685 (coordinates_in_window): Inside the window but outside
Richard M. Stallman <rms@gnu.org>
parents: 56393
diff changeset
2064 list = Fnreverse (list);
7f86a9a89685 (coordinates_in_window): Inside the window but outside
Richard M. Stallman <rms@gnu.org>
parents: 56393
diff changeset
2065 rest = Fmemq (window, list);
7f86a9a89685 (coordinates_in_window): Inside the window but outside
Richard M. Stallman <rms@gnu.org>
parents: 56393
diff changeset
2066 if (!NILP (rest) && !EQ (rest, list))
7f86a9a89685 (coordinates_in_window): Inside the window but outside
Richard M. Stallman <rms@gnu.org>
parents: 56393
diff changeset
2067 {
56616
76bd0e931318 (window_list_1): YAILOM.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 56585
diff changeset
2068 for (tail = list; !EQ (XCDR (tail), rest); tail = XCDR (tail))
56456
7f86a9a89685 (coordinates_in_window): Inside the window but outside
Richard M. Stallman <rms@gnu.org>
parents: 56393
diff changeset
2069 ;
7f86a9a89685 (coordinates_in_window): Inside the window but outside
Richard M. Stallman <rms@gnu.org>
parents: 56393
diff changeset
2070 XSETCDR (tail, Qnil);
7f86a9a89685 (coordinates_in_window): Inside the window but outside
Richard M. Stallman <rms@gnu.org>
parents: 56393
diff changeset
2071 list = nconc2 (rest, list);
7f86a9a89685 (coordinates_in_window): Inside the window but outside
Richard M. Stallman <rms@gnu.org>
parents: 56393
diff changeset
2072 }
7f86a9a89685 (coordinates_in_window): Inside the window but outside
Richard M. Stallman <rms@gnu.org>
parents: 56393
diff changeset
2073 return list;
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
2074 }
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
2075
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
2076
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2077
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2078 /* Look at all windows, performing an operation specified by TYPE
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2079 with argument OBJ.
3785
3455cbb3339d Don't let the 'B' interactive spec default to buffers viewed in
Jim Blandy <jimb@redhat.com>
parents: 3765
diff changeset
2080 If FRAMES is Qt, look at all frames;
3455cbb3339d Don't let the 'B' interactive spec default to buffers viewed in
Jim Blandy <jimb@redhat.com>
parents: 3765
diff changeset
2081 Qnil, look at just the selected frame;
6247
22d4037cbce2 (Fprevious_window, Fnext_window): ALL_FRAMES = visible
Richard M. Stallman <rms@gnu.org>
parents: 6242
diff changeset
2082 Qvisible, look at visible frames;
3785
3455cbb3339d Don't let the 'B' interactive spec default to buffers viewed in
Jim Blandy <jimb@redhat.com>
parents: 3765
diff changeset
2083 a frame, just look at windows on that frame.
35038
ac8eb6b4eee6 (Fdelete_other_windows): Set window's window_end_valid
Gerd Moellmann <gerd@gnu.org>
parents: 35024
diff changeset
2084 If MINI is non-zero, perform the operation on minibuffer windows too. */
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2085
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2086 enum window_loop
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2087 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2088 WINDOW_LOOP_UNUSED,
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2089 GET_BUFFER_WINDOW, /* Arg is buffer */
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2090 GET_LRU_WINDOW, /* Arg is t for full-width windows only */
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2091 DELETE_OTHER_WINDOWS, /* Arg is window not to delete */
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2092 DELETE_BUFFER_WINDOWS, /* Arg is buffer */
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2093 GET_LARGEST_WINDOW,
23410
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
2094 UNSHOW_BUFFER, /* Arg is buffer */
53143
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
2095 REDISPLAY_BUFFER_WINDOWS, /* Arg is buffer */
23410
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
2096 CHECK_ALL_WINDOWS
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2097 };
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2098
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2099 static Lisp_Object
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
2100 window_loop (type, obj, mini, frames)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2101 enum window_loop type;
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2102 Lisp_Object obj, frames;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2103 int mini;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2104 {
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2105 Lisp_Object window, windows, best_window, frame_arg;
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2106 struct frame *f;
30102
9406cb07bac7 (window_loop): Add missing gcpro1 local variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30093
diff changeset
2107 struct gcpro gcpro1;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
2108
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
2109 /* If we're only looping through windows on a particular frame,
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
2110 frame points to that frame. If we're looping through windows
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
2111 on all frames, frame is 0. */
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
2112 if (FRAMEP (frames))
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2113 f = XFRAME (frames);
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
2114 else if (NILP (frames))
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2115 f = SELECTED_FRAME ();
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2116 else
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2117 f = NULL;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
2118
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2119 if (f)
6247
22d4037cbce2 (Fprevious_window, Fnext_window): ALL_FRAMES = visible
Richard M. Stallman <rms@gnu.org>
parents: 6242
diff changeset
2120 frame_arg = Qlambda;
58448
f3a76c43ac80 (Fset_window_scroll_bars): Don't use XINT if it isn't int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58441
diff changeset
2121 else if (EQ (frames, make_number (0)))
8167
ae9b49cc645f (Fnext_window, Fprevious_window): ALL_FRAMES = 0 means
Richard M. Stallman <rms@gnu.org>
parents: 8139
diff changeset
2122 frame_arg = frames;
6247
22d4037cbce2 (Fprevious_window, Fnext_window): ALL_FRAMES = visible
Richard M. Stallman <rms@gnu.org>
parents: 6242
diff changeset
2123 else if (EQ (frames, Qvisible))
22d4037cbce2 (Fprevious_window, Fnext_window): ALL_FRAMES = visible
Richard M. Stallman <rms@gnu.org>
parents: 6242
diff changeset
2124 frame_arg = frames;
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2125 else
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2126 frame_arg = Qt;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2127
6247
22d4037cbce2 (Fprevious_window, Fnext_window): ALL_FRAMES = visible
Richard M. Stallman <rms@gnu.org>
parents: 6242
diff changeset
2128 /* frame_arg is Qlambda to stick to one frame,
22d4037cbce2 (Fprevious_window, Fnext_window): ALL_FRAMES = visible
Richard M. Stallman <rms@gnu.org>
parents: 6242
diff changeset
2129 Qvisible to consider all visible frames,
22d4037cbce2 (Fprevious_window, Fnext_window): ALL_FRAMES = visible
Richard M. Stallman <rms@gnu.org>
parents: 6242
diff changeset
2130 or Qt otherwise. */
22d4037cbce2 (Fprevious_window, Fnext_window): ALL_FRAMES = visible
Richard M. Stallman <rms@gnu.org>
parents: 6242
diff changeset
2131
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2132 /* Pick a window to start with. */
9105
984a4b1be1d1 (Fwindowp, Fwindow_live_p, window_display_table, window_loop,
Karl Heuer <kwzh@gnu.org>
parents: 9028
diff changeset
2133 if (WINDOWP (obj))
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2134 window = obj;
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2135 else if (f)
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2136 window = FRAME_SELECTED_WINDOW (f);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2137 else
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2138 window = FRAME_SELECTED_WINDOW (SELECTED_FRAME ());
983
eb19dfaec9c4 * window.c (window_loop): This used to keep track of the first
Jim Blandy <jimb@redhat.com>
parents: 972
diff changeset
2139
33619
d0482eab29e1 (Fwindow_list): Change parameter list to be XEmacs
Gerd Moellmann <gerd@gnu.org>
parents: 33463
diff changeset
2140 windows = window_list_1 (window, mini ? Qt : Qnil, frame_arg);
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2141 GCPRO1 (windows);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2142 best_window = Qnil;
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2143
67234
f1564d57f6a1 (Fset_window_configuration): Don't accidentally copy the
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 67156
diff changeset
2144 for (; CONSP (windows); windows = XCDR (windows))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2145 {
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2146 struct window *w;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
2147
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2148 window = XCAR (windows);
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2149 w = XWINDOW (window);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
2150
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2151 /* Note that we do not pay attention here to whether the frame
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2152 is visible, since Fwindow_list skips non-visible frames if
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2153 that is desired, under the control of frame_arg. */
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2154 if (!MINI_WINDOW_P (w)
23728
0d1a0ded9aa1 (temp_output_buffer_show): Around temp-buffer-show-hook,
Richard M. Stallman <rms@gnu.org>
parents: 23410
diff changeset
2155 /* For UNSHOW_BUFFER, we must always consider all windows. */
0d1a0ded9aa1 (temp_output_buffer_show): Around temp-buffer-show-hook,
Richard M. Stallman <rms@gnu.org>
parents: 23410
diff changeset
2156 || type == UNSHOW_BUFFER
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2157 || (mini && minibuf_level > 0))
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2158 switch (type)
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2159 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2160 case GET_BUFFER_WINDOW:
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2161 if (EQ (w->buffer, obj)
16522
63ca7c6ceeff (window_loop, case GET_BUFFER_WINDOW):
Richard M. Stallman <rms@gnu.org>
parents: 16485
diff changeset
2162 /* Don't find any minibuffer window
63ca7c6ceeff (window_loop, case GET_BUFFER_WINDOW):
Richard M. Stallman <rms@gnu.org>
parents: 16485
diff changeset
2163 except the one that is currently in use. */
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2164 && (MINI_WINDOW_P (w)
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2165 ? EQ (window, minibuf_window)
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2166 : 1))
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2167 {
36068
acd9eaaa94c1 (window_loop) <GET_BUFFER_WINDOW>: Prefer to return
Gerd Moellmann <gerd@gnu.org>
parents: 35891
diff changeset
2168 if (NILP (best_window))
acd9eaaa94c1 (window_loop) <GET_BUFFER_WINDOW>: Prefer to return
Gerd Moellmann <gerd@gnu.org>
parents: 35891
diff changeset
2169 best_window = window;
acd9eaaa94c1 (window_loop) <GET_BUFFER_WINDOW>: Prefer to return
Gerd Moellmann <gerd@gnu.org>
parents: 35891
diff changeset
2170 else if (EQ (window, selected_window))
acd9eaaa94c1 (window_loop) <GET_BUFFER_WINDOW>: Prefer to return
Gerd Moellmann <gerd@gnu.org>
parents: 35891
diff changeset
2171 /* For compatibility with 20.x, prefer to return
acd9eaaa94c1 (window_loop) <GET_BUFFER_WINDOW>: Prefer to return
Gerd Moellmann <gerd@gnu.org>
parents: 35891
diff changeset
2172 selected-window. */
acd9eaaa94c1 (window_loop) <GET_BUFFER_WINDOW>: Prefer to return
Gerd Moellmann <gerd@gnu.org>
parents: 35891
diff changeset
2173 best_window = window;
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2174 }
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2175 break;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2176
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2177 case GET_LRU_WINDOW:
66711
d89d56f50d43 (Fget_lru_window, Fget_largest_window, window_loop):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66664
diff changeset
2178 /* `obj' is an integer encoding a bitvector.
d89d56f50d43 (Fget_lru_window, Fget_largest_window, window_loop):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66664
diff changeset
2179 `obj & 1' means consider only full-width windows.
d89d56f50d43 (Fget_lru_window, Fget_largest_window, window_loop):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66664
diff changeset
2180 `obj & 2' means consider also dedicated windows. */
d89d56f50d43 (Fget_lru_window, Fget_largest_window, window_loop):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66664
diff changeset
2181 if (((XINT (obj) & 1) && !WINDOW_FULL_WIDTH_P (w))
70058
12c8842436ef (window_loop): Test w->dedicated with !NILP instead of EQ Qt.
Kim F. Storm <storm@cua.dk>
parents: 70042
diff changeset
2182 || (!(XINT (obj) & 2) && !NILP (w->dedicated))
66711
d89d56f50d43 (Fget_lru_window, Fget_largest_window, window_loop):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66664
diff changeset
2183 /* Minibuffer windows are always ignored. */
d89d56f50d43 (Fget_lru_window, Fget_largest_window, window_loop):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66664
diff changeset
2184 || MINI_WINDOW_P (w))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2185 break;
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
2186 if (NILP (best_window)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2187 || (XFASTINT (XWINDOW (best_window)->use_time)
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2188 > XFASTINT (w->use_time)))
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2189 best_window = window;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2190 break;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2191
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2192 case DELETE_OTHER_WINDOWS:
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2193 if (!EQ (window, obj))
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2194 Fdelete_window (window);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2195 break;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2196
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2197 case DELETE_BUFFER_WINDOWS:
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2198 if (EQ (w->buffer, obj))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2199 {
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2200 struct frame *f = XFRAME (WINDOW_FRAME (w));
10808
64fcde7a1438 (window_loop): Handle special display buffer frames
Richard M. Stallman <rms@gnu.org>
parents: 10666
diff changeset
2201
64fcde7a1438 (window_loop): Handle special display buffer frames
Richard M. Stallman <rms@gnu.org>
parents: 10666
diff changeset
2202 /* If this window is dedicated, and in a frame of its own,
64fcde7a1438 (window_loop): Handle special display buffer frames
Richard M. Stallman <rms@gnu.org>
parents: 10666
diff changeset
2203 kill the frame. */
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2204 if (EQ (window, FRAME_ROOT_WINDOW (f))
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2205 && !NILP (w->dedicated)
10808
64fcde7a1438 (window_loop): Handle special display buffer frames
Richard M. Stallman <rms@gnu.org>
parents: 10666
diff changeset
2206 && other_visible_frames (f))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2207 {
10808
64fcde7a1438 (window_loop): Handle special display buffer frames
Richard M. Stallman <rms@gnu.org>
parents: 10666
diff changeset
2208 /* Skip the other windows on this frame.
64fcde7a1438 (window_loop): Handle special display buffer frames
Richard M. Stallman <rms@gnu.org>
parents: 10666
diff changeset
2209 There might be one, the minibuffer! */
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2210 while (CONSP (XCDR (windows))
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2211 && EQ (XWINDOW (XCAR (windows))->frame,
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2212 XWINDOW (XCAR (XCDR (windows)))->frame))
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2213 windows = XCDR (windows);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
2214
10808
64fcde7a1438 (window_loop): Handle special display buffer frames
Richard M. Stallman <rms@gnu.org>
parents: 10666
diff changeset
2215 /* Now we can safely delete the frame. */
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2216 Fdelete_frame (w->frame, Qnil);
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2217 }
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2218 else if (NILP (w->parent))
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2219 {
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2220 /* If we're deleting the buffer displayed in the
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2221 only window on the frame, find a new buffer to
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2222 display there. */
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2223 Lisp_Object buffer;
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2224 buffer = Fother_buffer (obj, Qnil, w->frame);
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2225 Fset_window_buffer (window, buffer, Qnil);
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2226 if (EQ (window, selected_window))
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2227 Fset_buffer (w->buffer);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2228 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2229 else
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2230 Fdelete_window (window);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2231 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2232 break;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2233
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2234 case GET_LARGEST_WINDOW:
66711
d89d56f50d43 (Fget_lru_window, Fget_largest_window, window_loop):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66664
diff changeset
2235 { /* nil `obj' means to ignore dedicated windows. */
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2236 /* Ignore dedicated windows and minibuffers. */
70058
12c8842436ef (window_loop): Test w->dedicated with !NILP instead of EQ Qt.
Kim F. Storm <storm@cua.dk>
parents: 70042
diff changeset
2237 if (MINI_WINDOW_P (w) || (NILP (obj) && !NILP (w->dedicated)))
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2238 break;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
2239
31393
9cb95a7ee33e (window_loop) <GET_LARGEST_WINDOW>: Fix bug making
Gerd Moellmann <gerd@gnu.org>
parents: 31117
diff changeset
2240 if (NILP (best_window))
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2241 best_window = window;
31393
9cb95a7ee33e (window_loop) <GET_LARGEST_WINDOW>: Fix bug making
Gerd Moellmann <gerd@gnu.org>
parents: 31117
diff changeset
2242 else
9cb95a7ee33e (window_loop) <GET_LARGEST_WINDOW>: Fix bug making
Gerd Moellmann <gerd@gnu.org>
parents: 31117
diff changeset
2243 {
9cb95a7ee33e (window_loop) <GET_LARGEST_WINDOW>: Fix bug making
Gerd Moellmann <gerd@gnu.org>
parents: 31117
diff changeset
2244 struct window *b = XWINDOW (best_window);
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2245 if (XFASTINT (w->total_lines) * XFASTINT (w->total_cols)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2246 > XFASTINT (b->total_lines) * XFASTINT (b->total_cols))
31393
9cb95a7ee33e (window_loop) <GET_LARGEST_WINDOW>: Fix bug making
Gerd Moellmann <gerd@gnu.org>
parents: 31117
diff changeset
2247 best_window = window;
9cb95a7ee33e (window_loop) <GET_LARGEST_WINDOW>: Fix bug making
Gerd Moellmann <gerd@gnu.org>
parents: 31117
diff changeset
2248 }
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2249 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2250 break;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2251
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2252 case UNSHOW_BUFFER:
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2253 if (EQ (w->buffer, obj))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2254 {
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2255 Lisp_Object buffer;
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2256 struct frame *f = XFRAME (w->frame);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
2257
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2258 /* Find another buffer to show in this window. */
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2259 buffer = Fother_buffer (obj, Qnil, w->frame);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
2260
7647
d93dff6fbc73 (window_loop, UNSHOW_BUFFER case):
Richard M. Stallman <rms@gnu.org>
parents: 7618
diff changeset
2261 /* If this window is dedicated, and in a frame of its own,
d93dff6fbc73 (window_loop, UNSHOW_BUFFER case):
Richard M. Stallman <rms@gnu.org>
parents: 7618
diff changeset
2262 kill the frame. */
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2263 if (EQ (window, FRAME_ROOT_WINDOW (f))
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2264 && !NILP (w->dedicated)
7647
d93dff6fbc73 (window_loop, UNSHOW_BUFFER case):
Richard M. Stallman <rms@gnu.org>
parents: 7618
diff changeset
2265 && other_visible_frames (f))
8536
b97057eb17d3 (window_loop, case UNSHOW_BUFFER):
Richard M. Stallman <rms@gnu.org>
parents: 8508
diff changeset
2266 {
b97057eb17d3 (window_loop, case UNSHOW_BUFFER):
Richard M. Stallman <rms@gnu.org>
parents: 8508
diff changeset
2267 /* Skip the other windows on this frame.
b97057eb17d3 (window_loop, case UNSHOW_BUFFER):
Richard M. Stallman <rms@gnu.org>
parents: 8508
diff changeset
2268 There might be one, the minibuffer! */
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2269 while (CONSP (XCDR (windows))
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2270 && EQ (XWINDOW (XCAR (windows))->frame,
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2271 XWINDOW (XCAR (XCDR (windows)))->frame))
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2272 windows = XCDR (windows);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
2273
8536
b97057eb17d3 (window_loop, case UNSHOW_BUFFER):
Richard M. Stallman <rms@gnu.org>
parents: 8508
diff changeset
2274 /* Now we can safely delete the frame. */
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2275 Fdelete_frame (w->frame, Qnil);
8536
b97057eb17d3 (window_loop, case UNSHOW_BUFFER):
Richard M. Stallman <rms@gnu.org>
parents: 8508
diff changeset
2276 }
47973
b75515b80900 (window_loop): For GET_LRU_WINDOW and GET_LARGEST_WINDOW>,
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47865
diff changeset
2277 else if (!NILP (w->dedicated) && !NILP (w->parent))
b75515b80900 (window_loop): For GET_LRU_WINDOW and GET_LARGEST_WINDOW>,
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47865
diff changeset
2278 {
b75515b80900 (window_loop): For GET_LRU_WINDOW and GET_LARGEST_WINDOW>,
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47865
diff changeset
2279 Lisp_Object window;
b75515b80900 (window_loop): For GET_LRU_WINDOW and GET_LARGEST_WINDOW>,
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47865
diff changeset
2280 XSETWINDOW (window, w);
b75515b80900 (window_loop): For GET_LRU_WINDOW and GET_LARGEST_WINDOW>,
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47865
diff changeset
2281 /* If this window is dedicated and not the only window
b75515b80900 (window_loop): For GET_LRU_WINDOW and GET_LARGEST_WINDOW>,
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47865
diff changeset
2282 in its frame, then kill it. */
b75515b80900 (window_loop): For GET_LRU_WINDOW and GET_LARGEST_WINDOW>,
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47865
diff changeset
2283 Fdelete_window (window);
b75515b80900 (window_loop): For GET_LRU_WINDOW and GET_LARGEST_WINDOW>,
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47865
diff changeset
2284 }
7647
d93dff6fbc73 (window_loop, UNSHOW_BUFFER case):
Richard M. Stallman <rms@gnu.org>
parents: 7618
diff changeset
2285 else
d93dff6fbc73 (window_loop, UNSHOW_BUFFER case):
Richard M. Stallman <rms@gnu.org>
parents: 7618
diff changeset
2286 {
d93dff6fbc73 (window_loop, UNSHOW_BUFFER case):
Richard M. Stallman <rms@gnu.org>
parents: 7618
diff changeset
2287 /* Otherwise show a different buffer in the window. */
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2288 w->dedicated = Qnil;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2289 Fset_window_buffer (window, buffer, Qnil);
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2290 if (EQ (window, selected_window))
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2291 Fset_buffer (w->buffer);
7647
d93dff6fbc73 (window_loop, UNSHOW_BUFFER case):
Richard M. Stallman <rms@gnu.org>
parents: 7618
diff changeset
2292 }
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2293 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2294 break;
23410
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
2295
53143
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
2296 case REDISPLAY_BUFFER_WINDOWS:
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
2297 if (EQ (w->buffer, obj))
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
2298 {
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
2299 mark_window_display_accurate (window, 0);
54178
1ab08664aea0 (window_loop, Fforce_window_update): Force mode line
Kim F. Storm <storm@cua.dk>
parents: 53927
diff changeset
2300 w->update_mode_line = Qt;
1ab08664aea0 (window_loop, Fforce_window_update): Force mode line
Kim F. Storm <storm@cua.dk>
parents: 53927
diff changeset
2301 XBUFFER (obj)->prevent_redisplay_optimizations_p = 1;
1ab08664aea0 (window_loop, Fforce_window_update): Force mode line
Kim F. Storm <storm@cua.dk>
parents: 53927
diff changeset
2302 ++update_mode_lines;
53143
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
2303 best_window = window;
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
2304 }
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
2305 break;
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
2306
23410
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
2307 /* Check for a window that has a killed buffer. */
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
2308 case CHECK_ALL_WINDOWS:
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2309 if (! NILP (w->buffer)
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2310 && NILP (XBUFFER (w->buffer)->name))
23410
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
2311 abort ();
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2312 break;
31829
43566b0aec59 Avoid some more compiler warnings.
Gerd Moellmann <gerd@gnu.org>
parents: 31393
diff changeset
2313
43566b0aec59 Avoid some more compiler warnings.
Gerd Moellmann <gerd@gnu.org>
parents: 31393
diff changeset
2314 case WINDOW_LOOP_UNUSED:
43566b0aec59 Avoid some more compiler warnings.
Gerd Moellmann <gerd@gnu.org>
parents: 31393
diff changeset
2315 break;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2316 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2317 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2318
30093
22f8fc642575 (Fwindow_list): Reverse list at the end.
Gerd Moellmann <gerd@gnu.org>
parents: 30045
diff changeset
2319 UNGCPRO;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2320 return best_window;
14536
12de7dac154b (display_buffer_1): Fix typo in last change.
Roland McGrath <roland@gnu.org>
parents: 14535
diff changeset
2321 }
1444
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
2322
23410
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
2323 /* Used for debugging. Abort if any window has a dead buffer. */
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
2324
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2325 void
23410
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
2326 check_all_windows ()
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
2327 {
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
2328 window_loop (CHECK_ALL_WINDOWS, Qnil, 1, Qt);
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
2329 }
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
2330
66598
bc45ad547d66 (window_loop): For LRU and LARGEST, let the `mini' argument
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66239
diff changeset
2331 DEFUN ("get-lru-window", Fget_lru_window, Sget_lru_window, 0, 2, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2332 doc: /* Return the window least recently selected or used for display.
76825
91cecb8739e7 (Fget_lru_window): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 76310
diff changeset
2333 \(LRU means Least Recently Used.)
91cecb8739e7 (Fget_lru_window): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 76310
diff changeset
2334
54883
375346b8175c (Fget_lru_window): Doc fix.
Nick Roberts <nickrob@snap.net.nz>
parents: 54267
diff changeset
2335 Return a full-width window if possible.
56393
8eb84bf840a8 (Fwindow_buffer, Fother_window, Fget_lru_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56174
diff changeset
2336 A minibuffer window is never a candidate.
66598
bc45ad547d66 (window_loop): For LRU and LARGEST, let the `mini' argument
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66239
diff changeset
2337 A dedicated window is never a candidate, unless DEDICATED is non-nil,
bc45ad547d66 (window_loop): For LRU and LARGEST, let the `mini' argument
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66239
diff changeset
2338 so if all windows are dedicated, the value is nil.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2339 If optional argument FRAME is `visible', search all visible frames.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2340 If FRAME is 0, search all visible and iconified frames.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2341 If FRAME is t, search all frames.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2342 If FRAME is nil, search only the selected frame.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2343 If FRAME is a frame, search only that frame. */)
66598
bc45ad547d66 (window_loop): For LRU and LARGEST, let the `mini' argument
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66239
diff changeset
2344 (frame, dedicated)
bc45ad547d66 (window_loop): For LRU and LARGEST, let the `mini' argument
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66239
diff changeset
2345 Lisp_Object frame, dedicated;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2346 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2347 register Lisp_Object w;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2348 /* First try for a window that is full-width */
66711
d89d56f50d43 (Fget_lru_window, Fget_largest_window, window_loop):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66664
diff changeset
2349 w = window_loop (GET_LRU_WINDOW,
d89d56f50d43 (Fget_lru_window, Fget_largest_window, window_loop):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66664
diff changeset
2350 NILP (dedicated) ? make_number (1) : make_number (3),
d89d56f50d43 (Fget_lru_window, Fget_largest_window, window_loop):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66664
diff changeset
2351 0, frame);
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
2352 if (!NILP (w) && !EQ (w, selected_window))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2353 return w;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2354 /* If none of them, try the rest */
66711
d89d56f50d43 (Fget_lru_window, Fget_largest_window, window_loop):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66664
diff changeset
2355 return window_loop (GET_LRU_WINDOW,
d89d56f50d43 (Fget_lru_window, Fget_largest_window, window_loop):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66664
diff changeset
2356 NILP (dedicated) ? make_number (0) : make_number (2),
d89d56f50d43 (Fget_lru_window, Fget_largest_window, window_loop):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66664
diff changeset
2357 0, frame);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2358 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2359
66598
bc45ad547d66 (window_loop): For LRU and LARGEST, let the `mini' argument
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66239
diff changeset
2360 DEFUN ("get-largest-window", Fget_largest_window, Sget_largest_window, 0, 2, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2361 doc: /* Return the largest window in area.
56393
8eb84bf840a8 (Fwindow_buffer, Fother_window, Fget_lru_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56174
diff changeset
2362 A minibuffer window is never a candidate.
66598
bc45ad547d66 (window_loop): For LRU and LARGEST, let the `mini' argument
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66239
diff changeset
2363 A dedicated window is never a candidate unless DEDICATED is non-nil,
bc45ad547d66 (window_loop): For LRU and LARGEST, let the `mini' argument
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66239
diff changeset
2364 so if all windows are dedicated, the value is nil.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2365 If optional argument FRAME is `visible', search all visible frames.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2366 If FRAME is 0, search all visible and iconified frames.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2367 If FRAME is t, search all frames.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2368 If FRAME is nil, search only the selected frame.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2369 If FRAME is a frame, search only that frame. */)
66598
bc45ad547d66 (window_loop): For LRU and LARGEST, let the `mini' argument
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66239
diff changeset
2370 (frame, dedicated)
bc45ad547d66 (window_loop): For LRU and LARGEST, let the `mini' argument
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66239
diff changeset
2371 Lisp_Object frame, dedicated;
bc45ad547d66 (window_loop): For LRU and LARGEST, let the `mini' argument
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66239
diff changeset
2372 {
66711
d89d56f50d43 (Fget_lru_window, Fget_largest_window, window_loop):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66664
diff changeset
2373 return window_loop (GET_LARGEST_WINDOW, dedicated, 0,
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
2374 frame);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2375 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2376
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2377 DEFUN ("get-buffer-window", Fget_buffer_window, Sget_buffer_window, 1, 2, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2378 doc: /* Return a window currently displaying BUFFER, or nil if none.
56393
8eb84bf840a8 (Fwindow_buffer, Fother_window, Fget_lru_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56174
diff changeset
2379 BUFFER can be a buffer or a buffer name.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2380 If optional argument FRAME is `visible', search all visible frames.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2381 If optional argument FRAME is 0, search all visible and iconified frames.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2382 If FRAME is t, search all frames.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2383 If FRAME is nil, search only the selected frame.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2384 If FRAME is a frame, search only that frame. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2385 (buffer, frame)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2386 Lisp_Object buffer, frame;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2387 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2388 buffer = Fget_buffer (buffer);
9105
984a4b1be1d1 (Fwindowp, Fwindow_live_p, window_display_table, window_loop,
Karl Heuer <kwzh@gnu.org>
parents: 9028
diff changeset
2389 if (BUFFERP (buffer))
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
2390 return window_loop (GET_BUFFER_WINDOW, buffer, 1, frame);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2391 else
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2392 return Qnil;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2393 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2394
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2395 DEFUN ("delete-other-windows", Fdelete_other_windows, Sdelete_other_windows,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2396 0, 1, "",
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2397 doc: /* Make WINDOW (or the selected window) fill its frame.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2398 Only the frame WINDOW is on is affected.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2399 This function tries to reduce display jumps
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2400 by keeping the text previously visible in WINDOW
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2401 in the same place on the frame. Doing this depends on
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2402 the value of (window-start WINDOW), so if calling this function
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2403 in a program gives strange scrolling, make sure the window-start
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2404 value is reasonable when this function is called. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2405 (window)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2406 Lisp_Object window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2407 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2408 struct window *w;
7348
99b9c9068761 (Fdelete_other_windows): Do nothing if w->start is outside region.
Karl Heuer <kwzh@gnu.org>
parents: 7347
diff changeset
2409 int startpos;
35038
ac8eb6b4eee6 (Fdelete_other_windows): Set window's window_end_valid
Gerd Moellmann <gerd@gnu.org>
parents: 35024
diff changeset
2410 int top, new_top;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2411
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
2412 if (NILP (window))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2413 window = selected_window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2414 else
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
2415 CHECK_LIVE_WINDOW (window);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2416 w = XWINDOW (window);
9028
74119e5602eb (Fdelete_other_windows): Nice error if WINDOW is minibuf.
Richard M. Stallman <rms@gnu.org>
parents: 8991
diff changeset
2417
7348
99b9c9068761 (Fdelete_other_windows): Do nothing if w->start is outside region.
Karl Heuer <kwzh@gnu.org>
parents: 7347
diff changeset
2418 startpos = marker_position (w->start);
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2419 top = WINDOW_TOP_EDGE_LINE (w) - FRAME_TOP_MARGIN (XFRAME (WINDOW_FRAME (w)));
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2420
9028
74119e5602eb (Fdelete_other_windows): Nice error if WINDOW is minibuf.
Richard M. Stallman <rms@gnu.org>
parents: 8991
diff changeset
2421 if (MINI_WINDOW_P (w) && top > 0)
74119e5602eb (Fdelete_other_windows): Nice error if WINDOW is minibuf.
Richard M. Stallman <rms@gnu.org>
parents: 8991
diff changeset
2422 error ("Can't expand minibuffer to full frame");
74119e5602eb (Fdelete_other_windows): Nice error if WINDOW is minibuf.
Richard M. Stallman <rms@gnu.org>
parents: 8991
diff changeset
2423
2190
482c7827b968 (Fdelete_other_windows): Handle FRAME_MENU_BAR_LINES.
Richard M. Stallman <rms@gnu.org>
parents: 1994
diff changeset
2424 window_loop (DELETE_OTHER_WINDOWS, window, 0, WINDOW_FRAME (w));
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2425
7348
99b9c9068761 (Fdelete_other_windows): Do nothing if w->start is outside region.
Karl Heuer <kwzh@gnu.org>
parents: 7347
diff changeset
2426 /* Try to minimize scrolling, by setting the window start to the point
99b9c9068761 (Fdelete_other_windows): Do nothing if w->start is outside region.
Karl Heuer <kwzh@gnu.org>
parents: 7347
diff changeset
2427 will cause the text at the old window start to be at the same place
99b9c9068761 (Fdelete_other_windows): Do nothing if w->start is outside region.
Karl Heuer <kwzh@gnu.org>
parents: 7347
diff changeset
2428 on the frame. But don't try to do this if the window start is
99b9c9068761 (Fdelete_other_windows): Do nothing if w->start is outside region.
Karl Heuer <kwzh@gnu.org>
parents: 7347
diff changeset
2429 outside the visible portion (as might happen when the display is
99b9c9068761 (Fdelete_other_windows): Do nothing if w->start is outside region.
Karl Heuer <kwzh@gnu.org>
parents: 7347
diff changeset
2430 not current, due to typeahead). */
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2431 new_top = WINDOW_TOP_EDGE_LINE (w) - FRAME_TOP_MARGIN (XFRAME (WINDOW_FRAME (w)));
35038
ac8eb6b4eee6 (Fdelete_other_windows): Set window's window_end_valid
Gerd Moellmann <gerd@gnu.org>
parents: 35024
diff changeset
2432 if (new_top != top
ac8eb6b4eee6 (Fdelete_other_windows): Set window's window_end_valid
Gerd Moellmann <gerd@gnu.org>
parents: 35024
diff changeset
2433 && startpos >= BUF_BEGV (XBUFFER (w->buffer))
7348
99b9c9068761 (Fdelete_other_windows): Do nothing if w->start is outside region.
Karl Heuer <kwzh@gnu.org>
parents: 7347
diff changeset
2434 && startpos <= BUF_ZV (XBUFFER (w->buffer)))
99b9c9068761 (Fdelete_other_windows): Do nothing if w->start is outside region.
Karl Heuer <kwzh@gnu.org>
parents: 7347
diff changeset
2435 {
99b9c9068761 (Fdelete_other_windows): Do nothing if w->start is outside region.
Karl Heuer <kwzh@gnu.org>
parents: 7347
diff changeset
2436 struct position pos;
99b9c9068761 (Fdelete_other_windows): Do nothing if w->start is outside region.
Karl Heuer <kwzh@gnu.org>
parents: 7347
diff changeset
2437 struct buffer *obuf = current_buffer;
99b9c9068761 (Fdelete_other_windows): Do nothing if w->start is outside region.
Karl Heuer <kwzh@gnu.org>
parents: 7347
diff changeset
2438
99b9c9068761 (Fdelete_other_windows): Do nothing if w->start is outside region.
Karl Heuer <kwzh@gnu.org>
parents: 7347
diff changeset
2439 Fset_buffer (w->buffer);
99b9c9068761 (Fdelete_other_windows): Do nothing if w->start is outside region.
Karl Heuer <kwzh@gnu.org>
parents: 7347
diff changeset
2440 /* This computation used to temporarily move point, but that can
99b9c9068761 (Fdelete_other_windows): Do nothing if w->start is outside region.
Karl Heuer <kwzh@gnu.org>
parents: 7347
diff changeset
2441 have unwanted side effects due to text properties. */
11809
56ffc162094b (Fdelete_other_windows): Fix args to vmotion.
Karl Heuer <kwzh@gnu.org>
parents: 11771
diff changeset
2442 pos = *vmotion (startpos, -top, w);
16555
6aea522a93c7 (Fdelete_other_windows): Set optional_new_start instead of force_start.
Richard M. Stallman <rms@gnu.org>
parents: 16522
diff changeset
2443
20535
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
2444 set_marker_both (w->start, w->buffer, pos.bufpos, pos.bytepos);
35038
ac8eb6b4eee6 (Fdelete_other_windows): Set window's window_end_valid
Gerd Moellmann <gerd@gnu.org>
parents: 35024
diff changeset
2445 w->window_end_valid = Qnil;
20535
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
2446 w->start_at_line_beg = ((pos.bytepos == BEGV_BYTE
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
2447 || FETCH_BYTE (pos.bytepos - 1) == '\n') ? Qt
7348
99b9c9068761 (Fdelete_other_windows): Do nothing if w->start is outside region.
Karl Heuer <kwzh@gnu.org>
parents: 7347
diff changeset
2448 : Qnil);
13198
43d90596da34 (Fdelete_other_windows): Set w->force_start.
Richard M. Stallman <rms@gnu.org>
parents: 13187
diff changeset
2449 /* We need to do this, so that the window-scroll-functions
43d90596da34 (Fdelete_other_windows): Set w->force_start.
Richard M. Stallman <rms@gnu.org>
parents: 13187
diff changeset
2450 get called. */
16555
6aea522a93c7 (Fdelete_other_windows): Set optional_new_start instead of force_start.
Richard M. Stallman <rms@gnu.org>
parents: 16522
diff changeset
2451 w->optional_new_start = Qt;
7348
99b9c9068761 (Fdelete_other_windows): Do nothing if w->start is outside region.
Karl Heuer <kwzh@gnu.org>
parents: 7347
diff changeset
2452
99b9c9068761 (Fdelete_other_windows): Do nothing if w->start is outside region.
Karl Heuer <kwzh@gnu.org>
parents: 7347
diff changeset
2453 set_buffer_internal (obuf);
99b9c9068761 (Fdelete_other_windows): Do nothing if w->start is outside region.
Karl Heuer <kwzh@gnu.org>
parents: 7347
diff changeset
2454 }
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
2455
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2456 return Qnil;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2457 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2458
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2459 DEFUN ("delete-windows-on", Fdelete_windows_on, Sdelete_windows_on,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2460 1, 2, "bDelete windows on (buffer): ",
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2461 doc: /* Delete all windows showing BUFFER.
56393
8eb84bf840a8 (Fwindow_buffer, Fother_window, Fget_lru_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56174
diff changeset
2462 BUFFER must be a buffer or the name of an existing buffer.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2463 Optional second argument FRAME controls which frames are affected.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2464 If optional argument FRAME is `visible', search all visible frames.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2465 If FRAME is 0, search all visible and iconified frames.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2466 If FRAME is nil, search all frames.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2467 If FRAME is t, search only the selected frame.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2468 If FRAME is a frame, search only that frame. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2469 (buffer, frame)
4145
a0b726903a1f * window.c [not MULTI_FRAME] (Fdelete_windows_on): Set FRAME
Jim Blandy <jimb@redhat.com>
parents: 3803
diff changeset
2470 Lisp_Object buffer, frame;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2471 {
4145
a0b726903a1f * window.c [not MULTI_FRAME] (Fdelete_windows_on): Set FRAME
Jim Blandy <jimb@redhat.com>
parents: 3803
diff changeset
2472 /* FRAME uses t and nil to mean the opposite of what window_loop
a0b726903a1f * window.c [not MULTI_FRAME] (Fdelete_windows_on): Set FRAME
Jim Blandy <jimb@redhat.com>
parents: 3803
diff changeset
2473 expects. */
22223
5d15aed3a37c (Fdelete_windows_on): For FRAME, change t to nil
Richard M. Stallman <rms@gnu.org>
parents: 22187
diff changeset
2474 if (NILP (frame))
5d15aed3a37c (Fdelete_windows_on): For FRAME, change t to nil
Richard M. Stallman <rms@gnu.org>
parents: 22187
diff changeset
2475 frame = Qt;
5d15aed3a37c (Fdelete_windows_on): For FRAME, change t to nil
Richard M. Stallman <rms@gnu.org>
parents: 22187
diff changeset
2476 else if (EQ (frame, Qt))
5d15aed3a37c (Fdelete_windows_on): For FRAME, change t to nil
Richard M. Stallman <rms@gnu.org>
parents: 22187
diff changeset
2477 frame = Qnil;
4145
a0b726903a1f * window.c [not MULTI_FRAME] (Fdelete_windows_on): Set FRAME
Jim Blandy <jimb@redhat.com>
parents: 3803
diff changeset
2478
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
2479 if (!NILP (buffer))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2480 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2481 buffer = Fget_buffer (buffer);
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
2482 CHECK_BUFFER (buffer);
4145
a0b726903a1f * window.c [not MULTI_FRAME] (Fdelete_windows_on): Set FRAME
Jim Blandy <jimb@redhat.com>
parents: 3803
diff changeset
2483 window_loop (DELETE_BUFFER_WINDOWS, buffer, 0, frame);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2484 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
2485
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2486 return Qnil;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2487 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2488
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2489 DEFUN ("replace-buffer-in-windows", Freplace_buffer_in_windows,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2490 Sreplace_buffer_in_windows,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2491 1, 1, "bReplace buffer in windows: ",
56393
8eb84bf840a8 (Fwindow_buffer, Fother_window, Fget_lru_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56174
diff changeset
2492 doc: /* Replace BUFFER with some other buffer in all windows showing it.
8eb84bf840a8 (Fwindow_buffer, Fother_window, Fget_lru_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56174
diff changeset
2493 BUFFER may be a buffer or the name of an existing buffer. */)
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
2494 (buffer)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2495 Lisp_Object buffer;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2496 {
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
2497 if (!NILP (buffer))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2498 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2499 buffer = Fget_buffer (buffer);
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
2500 CHECK_BUFFER (buffer);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2501 window_loop (UNSHOW_BUFFER, buffer, 0, Qt);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2502 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2503 return Qnil;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2504 }
13918
2f6eaea659da (replace_buffer_in_all_windows): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13780
diff changeset
2505
2f6eaea659da (replace_buffer_in_all_windows): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13780
diff changeset
2506 /* Replace BUFFER with some other buffer in all windows
2f6eaea659da (replace_buffer_in_all_windows): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13780
diff changeset
2507 of all frames, even those on other keyboards. */
2f6eaea659da (replace_buffer_in_all_windows): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13780
diff changeset
2508
2f6eaea659da (replace_buffer_in_all_windows): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13780
diff changeset
2509 void
2f6eaea659da (replace_buffer_in_all_windows): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13780
diff changeset
2510 replace_buffer_in_all_windows (buffer)
2f6eaea659da (replace_buffer_in_all_windows): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13780
diff changeset
2511 Lisp_Object buffer;
2f6eaea659da (replace_buffer_in_all_windows): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13780
diff changeset
2512 {
14204
c0b44d3a8312 (replace_buffer_in_all_windows): Don't change selected
Karl Heuer <kwzh@gnu.org>
parents: 14186
diff changeset
2513 #ifdef MULTI_KBOARD
13918
2f6eaea659da (replace_buffer_in_all_windows): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13780
diff changeset
2514 Lisp_Object tail, frame;
2f6eaea659da (replace_buffer_in_all_windows): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13780
diff changeset
2515
2f6eaea659da (replace_buffer_in_all_windows): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13780
diff changeset
2516 /* A single call to window_loop won't do the job
2f6eaea659da (replace_buffer_in_all_windows): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13780
diff changeset
2517 because it only considers frames on the current keyboard.
2f6eaea659da (replace_buffer_in_all_windows): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13780
diff changeset
2518 So loop manually over frames, and handle each one. */
2f6eaea659da (replace_buffer_in_all_windows): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13780
diff changeset
2519 FOR_EACH_FRAME (tail, frame)
20066
affc9c857428 (replace_buffer_in_all_windows):
Karl Heuer <kwzh@gnu.org>
parents: 20046
diff changeset
2520 window_loop (UNSHOW_BUFFER, buffer, 1, frame);
13918
2f6eaea659da (replace_buffer_in_all_windows): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13780
diff changeset
2521 #else
20066
affc9c857428 (replace_buffer_in_all_windows):
Karl Heuer <kwzh@gnu.org>
parents: 20046
diff changeset
2522 window_loop (UNSHOW_BUFFER, buffer, 1, Qt);
13918
2f6eaea659da (replace_buffer_in_all_windows): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13780
diff changeset
2523 #endif
2f6eaea659da (replace_buffer_in_all_windows): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13780
diff changeset
2524 }
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2525
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2526 /* Set the height of WINDOW and all its inferiors. */
972
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
2527
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
2528 /* The smallest acceptable dimensions for a window. Anything smaller
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
2529 might crash Emacs. */
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
2530
972
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
2531 #define MIN_SAFE_WINDOW_WIDTH (2)
42862
ca273f84f170 (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
Richard M. Stallman <rms@gnu.org>
parents: 42816
diff changeset
2532 #define MIN_SAFE_WINDOW_HEIGHT (1)
972
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
2533
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
2534 /* Make sure that window_min_height and window_min_width are
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
2535 not too small; if they are, set them to safe minima. */
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
2536
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
2537 static void
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
2538 check_min_window_sizes ()
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
2539 {
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
2540 /* Smaller values might permit a crash. */
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
2541 if (window_min_width < MIN_SAFE_WINDOW_WIDTH)
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
2542 window_min_width = MIN_SAFE_WINDOW_WIDTH;
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
2543 if (window_min_height < MIN_SAFE_WINDOW_HEIGHT)
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
2544 window_min_height = MIN_SAFE_WINDOW_HEIGHT;
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
2545 }
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
2546
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
2547 /* If *ROWS or *COLS are too small a size for FRAME, set them to the
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
2548 minimum allowable size. */
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
2549
1444
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
2550 void
972
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
2551 check_frame_size (frame, rows, cols)
1444
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
2552 FRAME_PTR frame;
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
2553 int *rows, *cols;
972
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
2554 {
4347
d6b289b1a6dc * window.c (check_frame_size): Include the menu bar height in the
Jim Blandy <jimb@redhat.com>
parents: 4292
diff changeset
2555 /* For height, we have to see:
42875
87fe94f01b8e (check_frame_size): Fix minimum height calculation.
Richard M. Stallman <rms@gnu.org>
parents: 42862
diff changeset
2556 how many windows the frame has at minimum (one or two),
87fe94f01b8e (check_frame_size): Fix minimum height calculation.
Richard M. Stallman <rms@gnu.org>
parents: 42862
diff changeset
2557 and whether it has a menu bar or other special stuff at the top. */
87fe94f01b8e (check_frame_size): Fix minimum height calculation.
Richard M. Stallman <rms@gnu.org>
parents: 42862
diff changeset
2558 int min_height
87fe94f01b8e (check_frame_size): Fix minimum height calculation.
Richard M. Stallman <rms@gnu.org>
parents: 42862
diff changeset
2559 = ((FRAME_MINIBUF_ONLY_P (frame) || ! FRAME_HAS_MINIBUF_P (frame))
87fe94f01b8e (check_frame_size): Fix minimum height calculation.
Richard M. Stallman <rms@gnu.org>
parents: 42862
diff changeset
2560 ? MIN_SAFE_WINDOW_HEIGHT
87fe94f01b8e (check_frame_size): Fix minimum height calculation.
Richard M. Stallman <rms@gnu.org>
parents: 42862
diff changeset
2561 : 2 * MIN_SAFE_WINDOW_HEIGHT);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
2562
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
2563 if (FRAME_TOP_MARGIN (frame) > 0)
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
2564 min_height += FRAME_TOP_MARGIN (frame);
972
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
2565
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
2566 if (*rows < min_height)
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
2567 *rows = min_height;
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
2568 if (*cols < MIN_SAFE_WINDOW_WIDTH)
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
2569 *cols = MIN_SAFE_WINDOW_WIDTH;
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
2570 }
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
2571
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2572 /* Value is non-zero if window W is fixed-size. WIDTH_P non-zero means
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2573 check if W's width can be changed, otherwise check W's height.
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2574 CHECK_SIBLINGS_P non-zero means check resizablity of WINDOW's
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2575 siblings, too. If none of the siblings is resizable, WINDOW isn't
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2576 either. */
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2577
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2578 static int
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2579 window_fixed_size_p (w, width_p, check_siblings_p)
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2580 struct window *w;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2581 int width_p, check_siblings_p;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2582 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2583 int fixed_p;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2584 struct window *c;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
2585
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2586 if (!NILP (w->hchild))
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2587 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2588 c = XWINDOW (w->hchild);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
2589
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2590 if (width_p)
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2591 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2592 /* A horiz. combination is fixed-width if all of if its
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2593 children are. */
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2594 while (c && window_fixed_size_p (c, width_p, 0))
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2595 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2596 fixed_p = c == NULL;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2597 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2598 else
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2599 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2600 /* A horiz. combination is fixed-height if one of if its
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2601 children is. */
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2602 while (c && !window_fixed_size_p (c, width_p, 0))
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2603 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2604 fixed_p = c != NULL;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2605 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2606 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2607 else if (!NILP (w->vchild))
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2608 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2609 c = XWINDOW (w->vchild);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
2610
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2611 if (width_p)
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2612 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2613 /* A vert. combination is fixed-width if one of if its
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2614 children is. */
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2615 while (c && !window_fixed_size_p (c, width_p, 0))
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2616 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2617 fixed_p = c != NULL;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2618 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2619 else
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2620 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2621 /* A vert. combination is fixed-height if all of if its
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2622 children are. */
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2623 while (c && window_fixed_size_p (c, width_p, 0))
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2624 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2625 fixed_p = c == NULL;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2626 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2627 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2628 else if (BUFFERP (w->buffer))
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2629 {
65602
25b770eb7993 (make_window): Don't initialize height_fixed_p.
Andreas Schwab <schwab@suse.de>
parents: 65004
diff changeset
2630 struct buffer *old = current_buffer;
25b770eb7993 (make_window): Don't initialize height_fixed_p.
Andreas Schwab <schwab@suse.de>
parents: 65004
diff changeset
2631 Lisp_Object val;
25b770eb7993 (make_window): Don't initialize height_fixed_p.
Andreas Schwab <schwab@suse.de>
parents: 65004
diff changeset
2632
25b770eb7993 (make_window): Don't initialize height_fixed_p.
Andreas Schwab <schwab@suse.de>
parents: 65004
diff changeset
2633 current_buffer = XBUFFER (w->buffer);
25b770eb7993 (make_window): Don't initialize height_fixed_p.
Andreas Schwab <schwab@suse.de>
parents: 65004
diff changeset
2634 val = find_symbol_value (Qwindow_size_fixed);
25b770eb7993 (make_window): Don't initialize height_fixed_p.
Andreas Schwab <schwab@suse.de>
parents: 65004
diff changeset
2635 current_buffer = old;
25b770eb7993 (make_window): Don't initialize height_fixed_p.
Andreas Schwab <schwab@suse.de>
parents: 65004
diff changeset
2636
25b770eb7993 (make_window): Don't initialize height_fixed_p.
Andreas Schwab <schwab@suse.de>
parents: 65004
diff changeset
2637 fixed_p = 0;
25b770eb7993 (make_window): Don't initialize height_fixed_p.
Andreas Schwab <schwab@suse.de>
parents: 65004
diff changeset
2638 if (!EQ (val, Qunbound))
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2639 {
65602
25b770eb7993 (make_window): Don't initialize height_fixed_p.
Andreas Schwab <schwab@suse.de>
parents: 65004
diff changeset
2640 fixed_p = !NILP (val);
25b770eb7993 (make_window): Don't initialize height_fixed_p.
Andreas Schwab <schwab@suse.de>
parents: 65004
diff changeset
2641
25b770eb7993 (make_window): Don't initialize height_fixed_p.
Andreas Schwab <schwab@suse.de>
parents: 65004
diff changeset
2642 if (fixed_p
25b770eb7993 (make_window): Don't initialize height_fixed_p.
Andreas Schwab <schwab@suse.de>
parents: 65004
diff changeset
2643 && ((EQ (val, Qheight) && width_p)
25b770eb7993 (make_window): Don't initialize height_fixed_p.
Andreas Schwab <schwab@suse.de>
parents: 65004
diff changeset
2644 || (EQ (val, Qwidth) && !width_p)))
25b770eb7993 (make_window): Don't initialize height_fixed_p.
Andreas Schwab <schwab@suse.de>
parents: 65004
diff changeset
2645 fixed_p = 0;
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2646 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2647
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2648 /* Can't tell if this one is resizable without looking at
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2649 siblings. If all siblings are fixed-size this one is too. */
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2650 if (!fixed_p && check_siblings_p && WINDOWP (w->parent))
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2651 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2652 Lisp_Object child;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
2653
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2654 for (child = w->prev; !NILP (child); child = XWINDOW (child)->prev)
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2655 if (!window_fixed_size_p (XWINDOW (child), width_p, 0))
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2656 break;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2657
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2658 if (NILP (child))
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2659 for (child = w->next; !NILP (child); child = XWINDOW (child)->next)
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2660 if (!window_fixed_size_p (XWINDOW (child), width_p, 0))
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2661 break;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2662
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2663 if (NILP (child))
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2664 fixed_p = 1;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2665 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2666 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2667 else
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2668 fixed_p = 1;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2669
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2670 return fixed_p;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2671 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
2672
78415
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
2673 /* Return the minimum size for leaf window W. WIDTH_P non-zero means
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
2674 take into account fringes and the scrollbar of W. WIDTH_P zero
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
2675 means take into account mode-line and header-line of W. Return 1
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
2676 for the minibuffer. */
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
2677
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
2678 static int
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
2679 window_min_size_2 (w, width_p)
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
2680 struct window *w;
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
2681 int width_p;
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
2682 {
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
2683 int size;
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
2684
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
2685 if (width_p)
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
2686 size = max (window_min_width,
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
2687 (MIN_SAFE_WINDOW_WIDTH
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
2688 + WINDOW_FRINGE_COLS (w)
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
2689 + WINDOW_SCROLL_BAR_COLS (w)));
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
2690 else if (MINI_WINDOW_P (w))
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
2691 size = 1;
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
2692 else
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
2693 size = max (window_min_height,
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
2694 (MIN_SAFE_WINDOW_HEIGHT
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
2695 + (WINDOW_WANTS_MODELINE_P (w) ? 1 : 0)
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
2696 + (WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0 )));
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
2697
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
2698 return size;
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
2699 }
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2700
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2701 /* Return the minimum size of window W, not taking fixed-width windows
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2702 into account. WIDTH_P non-zero means return the minimum width,
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2703 otherwise return the minimum height. If W is a combination window,
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2704 compute the minimum size from the minimum sizes of W's children. */
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2705
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2706 static int
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2707 window_min_size_1 (w, width_p)
25254
518d62d71d21 (MINSIZE): Removed.
Gerd Moellmann <gerd@gnu.org>
parents: 25182
diff changeset
2708 struct window *w;
518d62d71d21 (MINSIZE): Removed.
Gerd Moellmann <gerd@gnu.org>
parents: 25182
diff changeset
2709 int width_p;
518d62d71d21 (MINSIZE): Removed.
Gerd Moellmann <gerd@gnu.org>
parents: 25182
diff changeset
2710 {
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2711 struct window *c;
25254
518d62d71d21 (MINSIZE): Removed.
Gerd Moellmann <gerd@gnu.org>
parents: 25182
diff changeset
2712 int size;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
2713
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2714 if (!NILP (w->hchild))
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2715 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2716 c = XWINDOW (w->hchild);
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2717 size = 0;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
2718
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2719 if (width_p)
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2720 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2721 /* The min width of a horizontal combination is
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2722 the sum of the min widths of its children. */
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2723 while (c)
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2724 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2725 size += window_min_size_1 (c, width_p);
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2726 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2727 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2728 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2729 else
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2730 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2731 /* The min height a horizontal combination equals
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2732 the maximum of all min height of its children. */
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2733 while (c)
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2734 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2735 int min_size = window_min_size_1 (c, width_p);
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2736 size = max (min_size, size);
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2737 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2738 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2739 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2740 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2741 else if (!NILP (w->vchild))
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2742 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2743 c = XWINDOW (w->vchild);
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2744 size = 0;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
2745
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2746 if (width_p)
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2747 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2748 /* The min width of a vertical combination is
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2749 the maximum of the min widths of its children. */
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2750 while (c)
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2751 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2752 int min_size = window_min_size_1 (c, width_p);
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2753 size = max (min_size, size);
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2754 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2755 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2756 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2757 else
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2758 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2759 /* The min height of a vertical combination equals
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2760 the sum of the min height of its children. */
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2761 while (c)
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2762 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2763 size += window_min_size_1 (c, width_p);
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2764 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2765 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2766 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2767 }
25254
518d62d71d21 (MINSIZE): Removed.
Gerd Moellmann <gerd@gnu.org>
parents: 25182
diff changeset
2768 else
78415
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
2769 size = window_min_size_2 (w, width_p);
25254
518d62d71d21 (MINSIZE): Removed.
Gerd Moellmann <gerd@gnu.org>
parents: 25182
diff changeset
2770
518d62d71d21 (MINSIZE): Removed.
Gerd Moellmann <gerd@gnu.org>
parents: 25182
diff changeset
2771 return size;
518d62d71d21 (MINSIZE): Removed.
Gerd Moellmann <gerd@gnu.org>
parents: 25182
diff changeset
2772 }
518d62d71d21 (MINSIZE): Removed.
Gerd Moellmann <gerd@gnu.org>
parents: 25182
diff changeset
2773
518d62d71d21 (MINSIZE): Removed.
Gerd Moellmann <gerd@gnu.org>
parents: 25182
diff changeset
2774
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2775 /* Return the minimum size of window W, taking fixed-size windows into
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2776 account. WIDTH_P non-zero means return the minimum width,
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
2777 otherwise return the minimum height. IGNORE_FIXED_P non-zero means
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
2778 ignore if W is fixed-size. Set *FIXED to 1 if W is fixed-size
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
2779 unless FIXED is null. */
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2780
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2781 static int
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
2782 window_min_size (w, width_p, ignore_fixed_p, fixed)
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2783 struct window *w;
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
2784 int width_p, ignore_fixed_p, *fixed;
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2785 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2786 int size, fixed_p;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2787
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
2788 if (ignore_fixed_p)
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
2789 fixed_p = 0;
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
2790 else
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
2791 fixed_p = window_fixed_size_p (w, width_p, 1);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
2792
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2793 if (fixed)
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2794 *fixed = fixed_p;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
2795
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2796 if (fixed_p)
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2797 size = width_p ? XFASTINT (w->total_cols) : XFASTINT (w->total_lines);
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2798 else
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2799 size = window_min_size_1 (w, width_p);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
2800
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2801 return size;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2802 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2803
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2804
51223
c1daf1c22f97 (Fset_window_scroll_bars): Fix typo in argument name.
Juanma Barranquero <lekktu@gmail.com>
parents: 51207
diff changeset
2805 /* Adjust the margins of window W if text area is too small.
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2806 Return 1 if window width is ok after adjustment; 0 if window
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2807 is still too narrow. */
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2808
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2809 static int
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2810 adjust_window_margins (w)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2811 struct window *w;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2812 {
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2813 int box_cols = (WINDOW_TOTAL_COLS (w)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2814 - WINDOW_FRINGE_COLS (w)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2815 - WINDOW_SCROLL_BAR_COLS (w));
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2816 int margin_cols = (WINDOW_LEFT_MARGIN_COLS (w)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2817 + WINDOW_RIGHT_MARGIN_COLS (w));
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2818
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2819 if (box_cols - margin_cols >= MIN_SAFE_WINDOW_WIDTH)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2820 return 1;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2821
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2822 if (margin_cols < 0 || box_cols < MIN_SAFE_WINDOW_WIDTH)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2823 return 0;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2824
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2825 /* Window's text area is too narrow, but reducing the window
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2826 margins will fix that. */
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2827 margin_cols = box_cols - MIN_SAFE_WINDOW_WIDTH;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2828 if (WINDOW_RIGHT_MARGIN_COLS (w) > 0)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2829 {
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2830 if (WINDOW_LEFT_MARGIN_COLS (w) > 0)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2831 w->left_margin_cols = w->right_margin_cols
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2832 = make_number (margin_cols/2);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2833 else
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2834 w->right_margin_cols = make_number (margin_cols);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2835 }
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2836 else
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2837 w->left_margin_cols = make_number (margin_cols);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2838 return 1;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2839 }
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2840
52821
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2841 /* Calculate new sizes for windows in the list FORWARD when the window size
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2842 goes from TOTAL to SIZE. TOTAL must be greater than SIZE.
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2843 The number of windows in FORWARD is NCHILDREN, and the number that
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2844 can shrink is SHRINKABLE.
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2845 The minimum size a window can have is MIN_SIZE.
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2846 If we are shrinking fixed windows, RESIZE_FIXED_P is non-zero.
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2847 If we are shrinking columns, WIDTH_P is non-zero, otherwise we are
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2848 shrinking rows.
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2849
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2850 This function returns an allocated array of new sizes that the caller
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2851 must free. The size -1 means the window is fixed and RESIZE_FIXED_P
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2852 is zero. Array index 0 refers to the first window in FORWARD, 1 to
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2853 the second, and so on.
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2854
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2855 This function tries to keep windows at least at the minimum size
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2856 and resize other windows before it resizes any window to zero (i.e.
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2857 delete that window).
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2858
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2859 Windows are resized proportional to their size, so bigger windows
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2860 shrink more than smaller windows. */
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2861 static int *
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2862 shrink_windows (total, size, nchildren, shrinkable,
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2863 min_size, resize_fixed_p, forward, width_p)
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2864 int total, size, nchildren, shrinkable, min_size;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2865 int resize_fixed_p, width_p;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2866 Lisp_Object forward;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2867 {
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2868 int available_resize = 0;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2869 int *new_sizes;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2870 struct window *c;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2871 Lisp_Object child;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2872 int smallest = total;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2873 int total_removed = 0;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2874 int total_shrink = total - size;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2875 int i;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2876
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2877 new_sizes = xmalloc (sizeof (*new_sizes) * nchildren);
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2878
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2879 for (i = 0, child = forward; !NILP (child); child = c->next, ++i)
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2880 {
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2881 int child_size;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2882
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2883 c = XWINDOW (child);
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2884 child_size = width_p ? XINT (c->total_cols) : XINT (c->total_lines);
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2885
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2886 if (! resize_fixed_p && window_fixed_size_p (c, width_p, 0))
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2887 new_sizes[i] = -1;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2888 else
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2889 {
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2890 new_sizes[i] = child_size;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2891 if (child_size > min_size)
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2892 available_resize += child_size - min_size;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2893 }
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2894 }
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2895 /* We might need to shrink some windows to zero. Find the smallest
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2896 windows and set them to 0 until we can fulfil the new size. */
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2897
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2898 while (shrinkable > 1 && size + available_resize < total)
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2899 {
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2900 for (i = 0; i < nchildren; ++i)
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2901 if (new_sizes[i] > 0 && smallest > new_sizes[i])
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2902 smallest = new_sizes[i];
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2903
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2904 for (i = 0; i < nchildren; ++i)
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2905 if (new_sizes[i] == smallest)
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2906 {
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2907 /* Resize this window down to zero. */
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2908 new_sizes[i] = 0;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2909 if (smallest > min_size)
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2910 available_resize -= smallest - min_size;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2911 available_resize += smallest;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2912 --shrinkable;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2913 total_removed += smallest;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2914
58217
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2915 /* We don't know what the smallest is now. */
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2916 smallest = total;
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2917
52821
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2918 /* Out of for, just remove one window at the time and
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2919 check again if we have enough space. */
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2920 break;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2921 }
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2922 }
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2923
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2924 /* Now, calculate the new sizes. Try to shrink each window
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2925 proportional to its size. */
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2926 for (i = 0; i < nchildren; ++i)
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2927 {
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2928 if (new_sizes[i] > min_size)
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2929 {
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2930 int to_shrink = total_shrink*new_sizes[i]/total;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2931 if (new_sizes[i] - to_shrink < min_size)
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2932 to_shrink = new_sizes[i] - min_size;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2933 new_sizes[i] -= to_shrink;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2934 total_removed += to_shrink;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2935 }
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2936 }
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2937
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2938 /* Any reminder due to rounding, we just subtract from windows
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2939 that are left and still can be shrunk. */
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2940 while (total_shrink > total_removed)
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2941 {
58217
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2942 int nonzero_sizes = 0;
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2943 int nonzero_idx = -1;
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2944
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2945 for (i = 0; i < nchildren; ++i)
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2946 if (new_sizes[i] > 0)
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2947 {
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2948 ++nonzero_sizes;
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2949 nonzero_idx = i;
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2950 }
58441
9b7ff064cb26 (set_window_buffer): Clear display_error_modiff.
Kim F. Storm <storm@cua.dk>
parents: 58265
diff changeset
2951
52821
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2952 for (i = 0; i < nchildren; ++i)
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2953 if (new_sizes[i] > min_size)
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2954 {
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2955 --new_sizes[i];
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2956 ++total_removed;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2957
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2958 /* Out of for, just shrink one window at the time and
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2959 check again if we have enough space. */
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2960 break;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2961 }
58217
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2962
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2963
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2964 /* Special case, only one window left. */
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2965 if (nonzero_sizes == 1)
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2966 break;
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2967 }
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2968
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2969 /* Any surplus due to rounding, we add to windows that are left. */
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2970 while (total_shrink < total_removed)
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2971 {
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2972 for (i = 0; i < nchildren; ++i)
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2973 {
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2974 if (new_sizes[i] != 0 && total_shrink < total_removed)
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2975 {
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2976 ++new_sizes[i];
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2977 --total_removed;
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2978 break;
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2979 }
72149deebe89 * window.c (shrink_windows): Handle special case of one window left
Jan Djärv <jan.h.d@swipnet.se>
parents: 58175
diff changeset
2980 }
52821
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2981 }
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2982
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2983 return new_sizes;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
2984 }
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
2985
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2986 /* Set WINDOW's height or width to SIZE. WIDTH_P non-zero means set
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2987 WINDOW's width. Resize WINDOW's children, if any, so that they
71396
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
2988 keep their proportionate size relative to WINDOW.
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
2989
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
2990 If FIRST_ONLY is 1, change only the first of WINDOW's children when
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
2991 they are in series. If LAST_ONLY is 1, change only the last of
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
2992 WINDOW's children when they are in series.
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
2993
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
2994 Propagate WINDOW's top or left edge position to children. Delete
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
2995 windows that become too small unless NODELETE_P is non-zero.
42603
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
2996
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
2997 If NODELETE_P is 2, that means we do delete windows that are
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
2998 too small, even if they were too small before! */
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
2999
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3000 static void
71396
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3001 size_window (window, size, width_p, nodelete_p, first_only, last_only)
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3002 Lisp_Object window;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3003 int size, width_p, nodelete_p;
71396
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3004 int first_only, last_only;
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3005 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3006 struct window *w = XWINDOW (window);
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3007 struct window *c;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3008 Lisp_Object child, *forward, *sideward;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3009 int old_size, min_size, safe_min_size;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3010
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3011 check_min_window_sizes ();
32824
6521cc146e8e (size_window): Prevent setting window's width or
Gerd Moellmann <gerd@gnu.org>
parents: 32800
diff changeset
3012 size = max (0, size);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
3013
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3014 /* If the window has been "too small" at one point,
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3015 don't delete it for being "too small" in the future.
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3016 Preserve it as long as that is at all possible. */
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3017 if (width_p)
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3018 {
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3019 old_size = WINDOW_TOTAL_COLS (w);
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3020 min_size = window_min_width;
78415
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
3021 safe_min_size = window_min_size_2 (w, 1);
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3022 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3023 else
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3024 {
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3025 old_size = XINT (w->total_lines);
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3026 min_size = window_min_height;
78415
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
3027 safe_min_size = window_min_size_2 (w, 0);
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3028 }
42603
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
3029
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
3030 if (old_size < min_size && nodelete_p != 2)
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3031 w->too_small_ok = Qt;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3032
78415
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
3033 /* Move the following test here since otherwise the
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
3034 preceding test doesn't make sense. martin. */
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
3035 if (nodelete_p == 2)
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
3036 nodelete_p = 0;
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
3037
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3038 /* Maybe delete WINDOW if it's too small. */
42603
37c66e967beb (delete_window): Rewrite the code for changing the
Richard M. Stallman <rms@gnu.org>
parents: 42351
diff changeset
3039 if (nodelete_p != 1 && !NILP (w->parent))
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3040 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3041 if (!MINI_WINDOW_P (w) && !NILP (w->too_small_ok))
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3042 min_size = width_p ? MIN_SAFE_WINDOW_WIDTH : MIN_SAFE_WINDOW_HEIGHT;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3043 if (min_size < safe_min_size)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3044 min_size = safe_min_size;
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3045 if (size < min_size)
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3046 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3047 delete_window (window);
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3048 return;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3049 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3050 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3051
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3052 /* Set redisplay hints. */
32824
6521cc146e8e (size_window): Prevent setting window's width or
Gerd Moellmann <gerd@gnu.org>
parents: 32800
diff changeset
3053 w->last_modified = make_number (0);
6521cc146e8e (size_window): Prevent setting window's width or
Gerd Moellmann <gerd@gnu.org>
parents: 32800
diff changeset
3054 w->last_overlay_modified = make_number (0);
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3055 windows_or_buffers_changed++;
32824
6521cc146e8e (size_window): Prevent setting window's width or
Gerd Moellmann <gerd@gnu.org>
parents: 32800
diff changeset
3056 FRAME_WINDOW_SIZES_CHANGED (XFRAME (w->frame)) = 1;
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3057
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3058 if (width_p)
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3059 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3060 sideward = &w->vchild;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3061 forward = &w->hchild;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3062 w->total_cols = make_number (size);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3063 adjust_window_margins (w);
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3064 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3065 else
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3066 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3067 sideward = &w->hchild;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3068 forward = &w->vchild;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3069 w->total_lines = make_number (size);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3070 w->orig_total_lines = Qnil;
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3071 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3072
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3073 if (!NILP (*sideward))
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3074 {
71396
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3075 /* We have a chain of parallel siblings whose size should all change. */
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3076 for (child = *sideward; !NILP (child); child = c->next)
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3077 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3078 c = XWINDOW (child);
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3079 if (width_p)
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3080 c->left_col = w->left_col;
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3081 else
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3082 c->top_line = w->top_line;
71396
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3083 size_window (child, size, width_p, nodelete_p,
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3084 first_only, last_only);
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3085 }
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3086 }
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3087 else if (!NILP (*forward) && last_only)
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3088 {
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3089 /* Change the last in a series of siblings. */
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3090 Lisp_Object last_child;
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3091 int child_size;
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3092
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3093 for (child = *forward; !NILP (child); child = c->next)
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3094 {
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3095 c = XWINDOW (child);
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3096 last_child = child;
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3097 }
71396
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3098
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3099 child_size = XINT (width_p ? c->total_cols : c->total_lines);
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3100 size_window (last_child,
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3101 size - old_size + child_size,
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3102 width_p, nodelete_p, first_only, last_only);
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3103 }
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3104 else if (!NILP (*forward) && first_only)
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3105 {
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3106 /* Change the first in a series of siblings. */
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3107 int child_size;
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3108
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3109 child = *forward;
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3110 c = XWINDOW (child);
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3111
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3112 if (width_p)
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3113 c->left_col = w->left_col;
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3114 else
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3115 c->top_line = w->top_line;
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3116
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3117 child_size = XINT (width_p ? c->total_cols : c->total_lines);
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3118 size_window (child,
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3119 size - old_size + child_size,
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3120 width_p, nodelete_p, first_only, last_only);
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3121 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3122 else if (!NILP (*forward))
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3123 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3124 int fixed_size, each, extra, n;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3125 int resize_fixed_p, nfixed;
32928
859adc7ac97d (size_window): Compute size difference from sum of old
Gerd Moellmann <gerd@gnu.org>
parents: 32871
diff changeset
3126 int last_pos, first_pos, nchildren, total;
52821
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
3127 int *new_sizes = NULL;
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3128
71396
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3129 /* Determine the fixed-size portion of this window, and the
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3130 number of child windows. */
32928
859adc7ac97d (size_window): Compute size difference from sum of old
Gerd Moellmann <gerd@gnu.org>
parents: 32871
diff changeset
3131 fixed_size = nchildren = nfixed = total = 0;
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3132 for (child = *forward; !NILP (child); child = c->next, ++nchildren)
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3133 {
32928
859adc7ac97d (size_window): Compute size difference from sum of old
Gerd Moellmann <gerd@gnu.org>
parents: 32871
diff changeset
3134 int child_size;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
3135
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3136 c = XWINDOW (child);
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3137 child_size = width_p ? XINT (c->total_cols) : XINT (c->total_lines);
32928
859adc7ac97d (size_window): Compute size difference from sum of old
Gerd Moellmann <gerd@gnu.org>
parents: 32871
diff changeset
3138 total += child_size;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
3139
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3140 if (window_fixed_size_p (c, width_p, 0))
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3141 {
32928
859adc7ac97d (size_window): Compute size difference from sum of old
Gerd Moellmann <gerd@gnu.org>
parents: 32871
diff changeset
3142 fixed_size += child_size;
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3143 ++nfixed;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3144 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3145 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3146
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3147 /* If the new size is smaller than fixed_size, or if there
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3148 aren't any resizable windows, allow resizing fixed-size
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3149 windows. */
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3150 resize_fixed_p = nfixed == nchildren || size < fixed_size;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3151
52821
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
3152 /* Compute how many lines/columns to add/remove to each child. The
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3153 value of extra takes care of rounding errors. */
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3154 n = resize_fixed_p ? nchildren : nchildren - nfixed;
52821
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
3155 if (size < total && n > 1)
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
3156 new_sizes = shrink_windows (total, size, nchildren, n, min_size,
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
3157 resize_fixed_p, *forward, width_p);
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
3158 else
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
3159 {
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
3160 each = (size - total) / n;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
3161 extra = (size - total) - n * each;
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
3162 }
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3163
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3164 /* Compute new children heights and edge positions. */
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3165 first_pos = width_p ? XINT (w->left_col) : XINT (w->top_line);
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3166 last_pos = first_pos;
52821
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
3167 for (n = 0, child = *forward; !NILP (child); child = c->next, ++n)
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3168 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3169 int new_size, old_size;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
3170
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3171 c = XWINDOW (child);
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3172 old_size = width_p ? XFASTINT (c->total_cols) : XFASTINT (c->total_lines);
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3173 new_size = old_size;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3174
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3175 /* The top or left edge position of this child equals the
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3176 bottom or right edge of its predecessor. */
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3177 if (width_p)
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3178 c->left_col = make_number (last_pos);
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3179 else
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3180 c->top_line = make_number (last_pos);
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3181
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3182 /* If this child can be resized, do it. */
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3183 if (resize_fixed_p || !window_fixed_size_p (c, width_p, 0))
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3184 {
52821
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
3185 new_size = new_sizes ? new_sizes[n] : old_size + each + extra;
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3186 extra = 0;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3187 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
3188
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3189 /* Set new height. Note that size_window also propagates
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3190 edge positions to children, so it's not a no-op if we
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3191 didn't change the child's size. */
71396
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3192 size_window (child, new_size, width_p, 1, first_only, last_only);
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3193
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3194 /* Remember the bottom/right edge position of this child; it
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3195 will be used to set the top/left edge of the next child. */
52821
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
3196 last_pos += new_size;
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3197 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3198
52821
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
3199 if (new_sizes) xfree (new_sizes);
20085e7ea081 * window.c (shrink_windows): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52617
diff changeset
3200
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3201 /* We should have covered the parent exactly with child windows. */
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3202 xassert (size == last_pos - first_pos);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
3203
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3204 /* Now delete any children that became too small. */
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3205 if (!nodelete_p)
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3206 for (child = *forward; !NILP (child); child = c->next)
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3207 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3208 int child_size;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3209 c = XWINDOW (child);
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3210 child_size = width_p ? XINT (c->total_cols) : XINT (c->total_lines);
71396
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3211 size_window (child, child_size, width_p, 2, first_only, last_only);
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3212 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3213 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3214 }
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3215
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3216 /* Set WINDOW's height to HEIGHT, and recursively change the height of
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3217 WINDOW's children. NODELETE non-zero means don't delete windows
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3218 that become too small in the process. (The caller should check
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3219 later and do so if appropriate.) */
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3220
20351
f69eb2ab4f0f Add prototypes.
Andreas Schwab <schwab@suse.de>
parents: 20090
diff changeset
3221 void
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3222 set_window_height (window, height, nodelete)
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3223 Lisp_Object window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3224 int height;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3225 int nodelete;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3226 {
71396
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3227 size_window (window, height, 0, nodelete, 0, 0);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3228 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3229
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3230
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3231 /* Set WINDOW's width to WIDTH, and recursively change the width of
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3232 WINDOW's children. NODELETE non-zero means don't delete windows
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3233 that become too small in the process. (The caller should check
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3234 later and do so if appropriate.) */
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3235
20351
f69eb2ab4f0f Add prototypes.
Andreas Schwab <schwab@suse.de>
parents: 20090
diff changeset
3236 void
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3237 set_window_width (window, width, nodelete)
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3238 Lisp_Object window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3239 int width;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3240 int nodelete;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3241 {
71396
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
3242 size_window (window, width, 1, nodelete, 0, 0);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3243 }
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
3244
50367
169f9122da43 Remove extern decl for frame parameter vars.
Kim F. Storm <storm@cua.dk>
parents: 50233
diff changeset
3245 /* Change window heights in windows rooted in WINDOW by N lines. */
169f9122da43 Remove extern decl for frame parameter vars.
Kim F. Storm <storm@cua.dk>
parents: 50233
diff changeset
3246
169f9122da43 Remove extern decl for frame parameter vars.
Kim F. Storm <storm@cua.dk>
parents: 50233
diff changeset
3247 void
169f9122da43 Remove extern decl for frame parameter vars.
Kim F. Storm <storm@cua.dk>
parents: 50233
diff changeset
3248 change_window_heights (window, n)
169f9122da43 Remove extern decl for frame parameter vars.
Kim F. Storm <storm@cua.dk>
parents: 50233
diff changeset
3249 Lisp_Object window;
169f9122da43 Remove extern decl for frame parameter vars.
Kim F. Storm <storm@cua.dk>
parents: 50233
diff changeset
3250 int n;
169f9122da43 Remove extern decl for frame parameter vars.
Kim F. Storm <storm@cua.dk>
parents: 50233
diff changeset
3251 {
169f9122da43 Remove extern decl for frame parameter vars.
Kim F. Storm <storm@cua.dk>
parents: 50233
diff changeset
3252 struct window *w = XWINDOW (window);
169f9122da43 Remove extern decl for frame parameter vars.
Kim F. Storm <storm@cua.dk>
parents: 50233
diff changeset
3253
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3254 XSETFASTINT (w->top_line, XFASTINT (w->top_line) + n);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3255 XSETFASTINT (w->total_lines, XFASTINT (w->total_lines) - n);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3256
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3257 if (INTEGERP (w->orig_top_line))
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3258 XSETFASTINT (w->orig_top_line, XFASTINT (w->orig_top_line) + n);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3259 if (INTEGERP (w->orig_total_lines))
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3260 XSETFASTINT (w->orig_total_lines, XFASTINT (w->orig_total_lines) - n);
50367
169f9122da43 Remove extern decl for frame parameter vars.
Kim F. Storm <storm@cua.dk>
parents: 50233
diff changeset
3261
169f9122da43 Remove extern decl for frame parameter vars.
Kim F. Storm <storm@cua.dk>
parents: 50233
diff changeset
3262 /* Handle just the top child in a vertical split. */
169f9122da43 Remove extern decl for frame parameter vars.
Kim F. Storm <storm@cua.dk>
parents: 50233
diff changeset
3263 if (!NILP (w->vchild))
169f9122da43 Remove extern decl for frame parameter vars.
Kim F. Storm <storm@cua.dk>
parents: 50233
diff changeset
3264 change_window_heights (w->vchild, n);
169f9122da43 Remove extern decl for frame parameter vars.
Kim F. Storm <storm@cua.dk>
parents: 50233
diff changeset
3265
169f9122da43 Remove extern decl for frame parameter vars.
Kim F. Storm <storm@cua.dk>
parents: 50233
diff changeset
3266 /* Adjust all children in a horizontal split. */
169f9122da43 Remove extern decl for frame parameter vars.
Kim F. Storm <storm@cua.dk>
parents: 50233
diff changeset
3267 for (window = w->hchild; !NILP (window); window = w->next)
169f9122da43 Remove extern decl for frame parameter vars.
Kim F. Storm <storm@cua.dk>
parents: 50233
diff changeset
3268 {
169f9122da43 Remove extern decl for frame parameter vars.
Kim F. Storm <storm@cua.dk>
parents: 50233
diff changeset
3269 w = XWINDOW (window);
169f9122da43 Remove extern decl for frame parameter vars.
Kim F. Storm <storm@cua.dk>
parents: 50233
diff changeset
3270 change_window_heights (window, n);
169f9122da43 Remove extern decl for frame parameter vars.
Kim F. Storm <storm@cua.dk>
parents: 50233
diff changeset
3271 }
169f9122da43 Remove extern decl for frame parameter vars.
Kim F. Storm <storm@cua.dk>
parents: 50233
diff changeset
3272 }
169f9122da43 Remove extern decl for frame parameter vars.
Kim F. Storm <storm@cua.dk>
parents: 50233
diff changeset
3273
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3274
362
d1e5cf833d37 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 358
diff changeset
3275 int window_select_count;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3276
14445
e73b37519cdc (Fset_window_buffer): Set buffer temporarily around running
Richard M. Stallman <rms@gnu.org>
parents: 14204
diff changeset
3277 Lisp_Object
e73b37519cdc (Fset_window_buffer): Set buffer temporarily around running
Richard M. Stallman <rms@gnu.org>
parents: 14204
diff changeset
3278 Fset_window_buffer_unwind (obuf)
e73b37519cdc (Fset_window_buffer): Set buffer temporarily around running
Richard M. Stallman <rms@gnu.org>
parents: 14204
diff changeset
3279 Lisp_Object obuf;
e73b37519cdc (Fset_window_buffer): Set buffer temporarily around running
Richard M. Stallman <rms@gnu.org>
parents: 14204
diff changeset
3280 {
e73b37519cdc (Fset_window_buffer): Set buffer temporarily around running
Richard M. Stallman <rms@gnu.org>
parents: 14204
diff changeset
3281 Fset_buffer (obuf);
e73b37519cdc (Fset_window_buffer): Set buffer temporarily around running
Richard M. Stallman <rms@gnu.org>
parents: 14204
diff changeset
3282 return Qnil;
e73b37519cdc (Fset_window_buffer): Set buffer temporarily around running
Richard M. Stallman <rms@gnu.org>
parents: 14204
diff changeset
3283 }
e73b37519cdc (Fset_window_buffer): Set buffer temporarily around running
Richard M. Stallman <rms@gnu.org>
parents: 14204
diff changeset
3284
51240
1fe905dd5836 (Fset_window_buffer): Add type of `keep_margins' argument.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51223
diff changeset
3285 EXFUN (Fset_window_fringes, 4);
1fe905dd5836 (Fset_window_buffer): Add type of `keep_margins' argument.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51223
diff changeset
3286 EXFUN (Fset_window_scroll_bars, 4);
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3287
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3288 /* Make WINDOW display BUFFER as its contents. RUN_HOOKS_P non-zero
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3289 means it's allowed to run hooks. See make_frame for a case where
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3290 it's not allowed. KEEP_MARGINS_P non-zero means that the current
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3291 margins, fringes, and scroll-bar settings of the window are not
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3292 reset from the buffer's local settings. */
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3293
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3294 void
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3295 set_window_buffer (window, buffer, run_hooks_p, keep_margins_p)
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3296 Lisp_Object window, buffer;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3297 int run_hooks_p, keep_margins_p;
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3298 {
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3299 struct window *w = XWINDOW (window);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3300 struct buffer *b = XBUFFER (buffer);
46293
1fb8f75062c6 Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents: 46285
diff changeset
3301 int count = SPECPDL_INDEX ();
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3302
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3303 w->buffer = buffer;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3304
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3305 if (EQ (window, selected_window))
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3306 b->last_selected_window = window;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3307
58441
9b7ff064cb26 (set_window_buffer): Clear display_error_modiff.
Kim F. Storm <storm@cua.dk>
parents: 58265
diff changeset
3308 /* Let redisplay errors through. */
9b7ff064cb26 (set_window_buffer): Clear display_error_modiff.
Kim F. Storm <storm@cua.dk>
parents: 58265
diff changeset
3309 b->display_error_modiff = 0;
9b7ff064cb26 (set_window_buffer): Clear display_error_modiff.
Kim F. Storm <storm@cua.dk>
parents: 58265
diff changeset
3310
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3311 /* Update time stamps of buffer display. */
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3312 if (INTEGERP (b->display_count))
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3313 XSETINT (b->display_count, XINT (b->display_count) + 1);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3314 b->display_time = Fcurrent_time ();
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3315
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3316 XSETFASTINT (w->window_end_pos, 0);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3317 XSETFASTINT (w->window_end_vpos, 0);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3318 bzero (&w->last_cursor, sizeof w->last_cursor);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3319 w->window_end_valid = Qnil;
36133
6eb00bee0989 (set_window_buffer): Fix last change.
Gerd Moellmann <gerd@gnu.org>
parents: 36131
diff changeset
3320 w->hscroll = w->min_hscroll = make_number (0);
36444
f2fc8b180aaa * window.c (set_window_buffer): Field vscroll is an int, not a lisp object.
Ken Raeburn <raeburn@raeburn.org>
parents: 36432
diff changeset
3321 w->vscroll = 0;
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3322 set_marker_both (w->pointm, buffer, BUF_PT (b), BUF_PT_BYTE (b));
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3323 set_marker_restricted (w->start,
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3324 make_number (b->last_window_start),
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3325 buffer);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3326 w->start_at_line_beg = Qnil;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3327 w->force_start = Qnil;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3328 XSETFASTINT (w->last_modified, 0);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3329 XSETFASTINT (w->last_overlay_modified, 0);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3330 windows_or_buffers_changed++;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3331
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3332 /* We must select BUFFER for running the window-scroll-functions.
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3333 If WINDOW is selected, switch permanently.
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3334 Otherwise, switch but go back to the ambient buffer afterward. */
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3335 if (EQ (window, selected_window))
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3336 Fset_buffer (buffer);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3337 /* We can't check ! NILP (Vwindow_scroll_functions) here
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3338 because that might itself be a local variable. */
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3339 else if (window_initialized)
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3340 {
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3341 record_unwind_protect (Fset_window_buffer_unwind, Fcurrent_buffer ());
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3342 Fset_buffer (buffer);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3343 }
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3344
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3345 if (!keep_margins_p)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3346 {
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3347 /* Set left and right marginal area width etc. from buffer. */
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3348
51223
c1daf1c22f97 (Fset_window_scroll_bars): Fix typo in argument name.
Juanma Barranquero <lekktu@gmail.com>
parents: 51207
diff changeset
3349 /* This may call adjust_window_margins three times, so
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3350 temporarily disable window margins. */
52617
f8adaf14f570 (set_window_buffer): Fix redisplay problems when
Kim F. Storm <storm@cua.dk>
parents: 52565
diff changeset
3351 Lisp_Object save_left = w->left_margin_cols;
f8adaf14f570 (set_window_buffer): Fix redisplay problems when
Kim F. Storm <storm@cua.dk>
parents: 52565
diff changeset
3352 Lisp_Object save_right = w->right_margin_cols;
f8adaf14f570 (set_window_buffer): Fix redisplay problems when
Kim F. Storm <storm@cua.dk>
parents: 52565
diff changeset
3353
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3354 w->left_margin_cols = w->right_margin_cols = Qnil;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3355
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3356 Fset_window_fringes (window,
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3357 b->left_fringe_width, b->right_fringe_width,
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3358 b->fringes_outside_margins);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3359
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3360 Fset_window_scroll_bars (window,
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3361 b->scroll_bar_width,
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3362 b->vertical_scroll_bar_type, Qnil);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3363
52617
f8adaf14f570 (set_window_buffer): Fix redisplay problems when
Kim F. Storm <storm@cua.dk>
parents: 52565
diff changeset
3364 w->left_margin_cols = save_left;
f8adaf14f570 (set_window_buffer): Fix redisplay problems when
Kim F. Storm <storm@cua.dk>
parents: 52565
diff changeset
3365 w->right_margin_cols = save_right;
f8adaf14f570 (set_window_buffer): Fix redisplay problems when
Kim F. Storm <storm@cua.dk>
parents: 52565
diff changeset
3366
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3367 Fset_window_margins (window,
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3368 b->left_margin_cols, b->right_margin_cols);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3369 }
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3370
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3371 if (run_hooks_p)
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3372 {
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3373 if (! NILP (Vwindow_scroll_functions))
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3374 run_hook_with_args_2 (Qwindow_scroll_functions, window,
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3375 Fmarker_position (w->start));
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3376
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3377 if (! NILP (Vwindow_configuration_change_hook)
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3378 && ! NILP (Vrun_hooks))
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3379 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3380 }
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3381
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3382 unbind_to (count, Qnil);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3383 }
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3384
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
3385
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3386 DEFUN ("set-window-buffer", Fset_window_buffer, Sset_window_buffer, 2, 3, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3387 doc: /* Make WINDOW display BUFFER as its contents.
56393
8eb84bf840a8 (Fwindow_buffer, Fother_window, Fget_lru_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56174
diff changeset
3388 BUFFER can be a buffer or the name of an existing buffer.
55402
5896445199fd (Fset_window_buffer): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 55027
diff changeset
3389 Optional third arg KEEP-MARGINS non-nil means that WINDOW's current
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3390 display margins, fringe widths, and scroll bar settings are maintained;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3391 the default is to reset these from BUFFER's local settings or the frame
57031
0730ef55b4d8 (Fset_window_buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 56616
diff changeset
3392 defaults.
0730ef55b4d8 (Fset_window_buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 56616
diff changeset
3393
0730ef55b4d8 (Fset_window_buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 56616
diff changeset
3394 This function runs the hook `window-scroll-functions'. */)
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3395 (window, buffer, keep_margins)
51240
1fe905dd5836 (Fset_window_buffer): Add type of `keep_margins' argument.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51223
diff changeset
3396 register Lisp_Object window, buffer, keep_margins;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3397 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3398 register Lisp_Object tem;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3399 register struct window *w = decode_window (window);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3400
27848
27b993d2ea05 (Fset_window_buffer): Set WINDOW to the window
Gerd Moellmann <gerd@gnu.org>
parents: 27699
diff changeset
3401 XSETWINDOW (window, w);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3402 buffer = Fget_buffer (buffer);
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
3403 CHECK_BUFFER (buffer);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3404
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
3405 if (NILP (XBUFFER (buffer)->name))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3406 error ("Attempt to display deleted buffer");
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3407
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3408 tem = w->buffer;
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
3409 if (NILP (tem))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3410 error ("Window is deleted");
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3411 else if (! EQ (tem, Qt)) /* w->buffer is t when the window
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3412 is first being set up. */
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3413 {
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
3414 if (!NILP (w->dedicated) && !EQ (tem, buffer))
7545
0e1f3b9598bb (Fset_window_buffer): Fix dedicated window error call.
Richard M. Stallman <rms@gnu.org>
parents: 7348
diff changeset
3415 error ("Window is dedicated to `%s'",
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46293
diff changeset
3416 SDATA (XBUFFER (tem)->name));
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3417
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3418 unshow_buffer (w);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3419 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3420
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3421 set_window_buffer (window, buffer, 1, !NILP (keep_margins));
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3422 return Qnil;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3423 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3424
51674
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3425 /* Note that selected_window can be nil
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3426 when this is called from Fset_window_configuration. */
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3427
51049
12bbef36ecf1 (Fselect_window): Add optional `norecord' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50367
diff changeset
3428 DEFUN ("select-window", Fselect_window, Sselect_window, 1, 2, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3429 doc: /* Select WINDOW. Most editing will apply to WINDOW's buffer.
56089
36a475d543b8 (Fselect_window): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 55563
diff changeset
3430 If WINDOW is not already selected, make WINDOW's buffer current
56393
8eb84bf840a8 (Fwindow_buffer, Fother_window, Fget_lru_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56174
diff changeset
3431 and make WINDOW the frame's selected window. Return WINDOW.
51049
12bbef36ecf1 (Fselect_window): Add optional `norecord' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50367
diff changeset
3432 Optional second arg NORECORD non-nil means
12bbef36ecf1 (Fselect_window): Add optional `norecord' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50367
diff changeset
3433 do not put this buffer at the front of the list of recently selected ones.
47567
1075de6f6ebd (select_window_1): Don't select frame.
Richard M. Stallman <rms@gnu.org>
parents: 47234
diff changeset
3434
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3435 Note that the main editor command loop
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3436 selects the buffer of the selected window before each command. */)
51049
12bbef36ecf1 (Fselect_window): Add optional `norecord' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50367
diff changeset
3437 (window, norecord)
12bbef36ecf1 (Fselect_window): Add optional `norecord' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50367
diff changeset
3438 register Lisp_Object window, norecord;
22187
9509e86a7be5 (window_loop): Pass new arg to Fother_buffer.
Richard M. Stallman <rms@gnu.org>
parents: 22155
diff changeset
3439 {
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3440 register struct window *w;
27869
1322db65a230 (select_window_1): If selected_window is nil,
Gerd Moellmann <gerd@gnu.org>
parents: 27850
diff changeset
3441 register struct window *ow;
25676
70c6d3f2f3b9 (Fminibuffer_window): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents: 25591
diff changeset
3442 struct frame *sf;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3443
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
3444 CHECK_LIVE_WINDOW (window);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3445
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3446 w = XWINDOW (window);
39953
3a1666ed16b8 (select_window_1): Unfreeze window start. Remove a
Gerd Moellmann <gerd@gnu.org>
parents: 39952
diff changeset
3447 w->frozen_window_start_p = 0;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3448
58265
491080266027 Avoid side-effects inside XSETFASTINT's arguments.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58217
diff changeset
3449 ++window_select_count;
491080266027 Avoid side-effects inside XSETFASTINT's arguments.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58217
diff changeset
3450 XSETFASTINT (w->use_time, window_select_count);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3451 if (EQ (window, selected_window))
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3452 return window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3453
61444
8e54037fa085 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 60198
diff changeset
3454 /* Store the current buffer's actual point into the
8e54037fa085 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 60198
diff changeset
3455 old selected window. It belongs to that window,
8e54037fa085 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 60198
diff changeset
3456 and when the window is not selected, must be in the window. */
27869
1322db65a230 (select_window_1): If selected_window is nil,
Gerd Moellmann <gerd@gnu.org>
parents: 27850
diff changeset
3457 if (!NILP (selected_window))
1322db65a230 (select_window_1): If selected_window is nil,
Gerd Moellmann <gerd@gnu.org>
parents: 27850
diff changeset
3458 {
1322db65a230 (select_window_1): If selected_window is nil,
Gerd Moellmann <gerd@gnu.org>
parents: 27850
diff changeset
3459 ow = XWINDOW (selected_window);
1322db65a230 (select_window_1): If selected_window is nil,
Gerd Moellmann <gerd@gnu.org>
parents: 27850
diff changeset
3460 if (! NILP (ow->buffer))
1322db65a230 (select_window_1): If selected_window is nil,
Gerd Moellmann <gerd@gnu.org>
parents: 27850
diff changeset
3461 set_marker_both (ow->pointm, ow->buffer,
1322db65a230 (select_window_1): If selected_window is nil,
Gerd Moellmann <gerd@gnu.org>
parents: 27850
diff changeset
3462 BUF_PT (XBUFFER (ow->buffer)),
1322db65a230 (select_window_1): If selected_window is nil,
Gerd Moellmann <gerd@gnu.org>
parents: 27850
diff changeset
3463 BUF_PT_BYTE (XBUFFER (ow->buffer)));
1322db65a230 (select_window_1): If selected_window is nil,
Gerd Moellmann <gerd@gnu.org>
parents: 27850
diff changeset
3464 }
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3465
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3466 selected_window = window;
25676
70c6d3f2f3b9 (Fminibuffer_window): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents: 25591
diff changeset
3467 sf = SELECTED_FRAME ();
48927
148675770a17 (select_window_1): Undo 9/21 change.
Richard M. Stallman <rms@gnu.org>
parents: 48898
diff changeset
3468 if (XFRAME (WINDOW_FRAME (w)) != sf)
148675770a17 (select_window_1): Undo 9/21 change.
Richard M. Stallman <rms@gnu.org>
parents: 48898
diff changeset
3469 {
148675770a17 (select_window_1): Undo 9/21 change.
Richard M. Stallman <rms@gnu.org>
parents: 48898
diff changeset
3470 XFRAME (WINDOW_FRAME (w))->selected_window = window;
148675770a17 (select_window_1): Undo 9/21 change.
Richard M. Stallman <rms@gnu.org>
parents: 48898
diff changeset
3471 /* Use this rather than Fhandle_switch_frame
148675770a17 (select_window_1): Undo 9/21 change.
Richard M. Stallman <rms@gnu.org>
parents: 48898
diff changeset
3472 so that FRAME_FOCUS_FRAME is moved appropriately as we
148675770a17 (select_window_1): Undo 9/21 change.
Richard M. Stallman <rms@gnu.org>
parents: 48898
diff changeset
3473 move around in the state where a minibuffer in a separate
148675770a17 (select_window_1): Undo 9/21 change.
Richard M. Stallman <rms@gnu.org>
parents: 48898
diff changeset
3474 frame is active. */
63187
dd0624f7bb99 (Fselect_window): Adapt call to Fselect_frame.
Luc Teirlinck <teirllm@auburn.edu>
parents: 63045
diff changeset
3475 Fselect_frame (WINDOW_FRAME (w));
48927
148675770a17 (select_window_1): Undo 9/21 change.
Richard M. Stallman <rms@gnu.org>
parents: 48898
diff changeset
3476 }
148675770a17 (select_window_1): Undo 9/21 change.
Richard M. Stallman <rms@gnu.org>
parents: 48898
diff changeset
3477 else
25676
70c6d3f2f3b9 (Fminibuffer_window): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents: 25591
diff changeset
3478 sf->selected_window = window;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3479
51049
12bbef36ecf1 (Fselect_window): Add optional `norecord' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50367
diff changeset
3480 if (NILP (norecord))
22187
9509e86a7be5 (window_loop): Pass new arg to Fother_buffer.
Richard M. Stallman <rms@gnu.org>
parents: 22155
diff changeset
3481 record_buffer (w->buffer);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3482 Fset_buffer (w->buffer);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3483
16068
b19129a8c644 (unshow_buffer): Clear last_selected_window slot, maybe.
Richard M. Stallman <rms@gnu.org>
parents: 16051
diff changeset
3484 XBUFFER (w->buffer)->last_selected_window = window;
b19129a8c644 (unshow_buffer): Clear last_selected_window slot, maybe.
Richard M. Stallman <rms@gnu.org>
parents: 16051
diff changeset
3485
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3486 /* Go to the point recorded in the window.
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3487 This is important when the buffer is in more
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3488 than one window. It also matters when
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3489 redisplay_window has altered point after scrolling,
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3490 because it makes the change only in the window. */
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3491 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3492 register int new_point = marker_position (w->pointm);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3493 if (new_point < BEGV)
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3494 SET_PT (BEGV);
8245
b743577d12c2 (Fselect_window): Fix bug checking new_point is in range.
Richard M. Stallman <rms@gnu.org>
parents: 8191
diff changeset
3495 else if (new_point > ZV)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3496 SET_PT (ZV);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3497 else
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3498 SET_PT (new_point);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3499 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3500
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3501 windows_or_buffers_changed++;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3502 return window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3503 }
51049
12bbef36ecf1 (Fselect_window): Add optional `norecord' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50367
diff changeset
3504
12bbef36ecf1 (Fselect_window): Add optional `norecord' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50367
diff changeset
3505 static Lisp_Object
12bbef36ecf1 (Fselect_window): Add optional `norecord' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50367
diff changeset
3506 select_window_norecord (window)
12bbef36ecf1 (Fselect_window): Add optional `norecord' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50367
diff changeset
3507 Lisp_Object window;
12bbef36ecf1 (Fselect_window): Add optional `norecord' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50367
diff changeset
3508 {
12bbef36ecf1 (Fselect_window): Add optional `norecord' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50367
diff changeset
3509 return Fselect_window (window, Qt);
12bbef36ecf1 (Fselect_window): Add optional `norecord' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50367
diff changeset
3510 }
22187
9509e86a7be5 (window_loop): Pass new arg to Fother_buffer.
Richard M. Stallman <rms@gnu.org>
parents: 22155
diff changeset
3511
14175
ace33b55f549 (display_buffer_1): Don't deiconify the selected frame.
Richard M. Stallman <rms@gnu.org>
parents: 14166
diff changeset
3512 /* Deiconify the frame containing the window WINDOW,
ace33b55f549 (display_buffer_1): Don't deiconify the selected frame.
Richard M. Stallman <rms@gnu.org>
parents: 14166
diff changeset
3513 unless it is the selected frame;
ace33b55f549 (display_buffer_1): Don't deiconify the selected frame.
Richard M. Stallman <rms@gnu.org>
parents: 14166
diff changeset
3514 then return WINDOW.
ace33b55f549 (display_buffer_1): Don't deiconify the selected frame.
Richard M. Stallman <rms@gnu.org>
parents: 14166
diff changeset
3515
ace33b55f549 (display_buffer_1): Don't deiconify the selected frame.
Richard M. Stallman <rms@gnu.org>
parents: 14166
diff changeset
3516 The reason for the exception for the selected frame
ace33b55f549 (display_buffer_1): Don't deiconify the selected frame.
Richard M. Stallman <rms@gnu.org>
parents: 14166
diff changeset
3517 is that it seems better not to change the selected frames visibility
ace33b55f549 (display_buffer_1): Don't deiconify the selected frame.
Richard M. Stallman <rms@gnu.org>
parents: 14166
diff changeset
3518 merely because of displaying a different buffer in it.
ace33b55f549 (display_buffer_1): Don't deiconify the selected frame.
Richard M. Stallman <rms@gnu.org>
parents: 14166
diff changeset
3519 The deiconification is useful when a buffer gets shown in
ace33b55f549 (display_buffer_1): Don't deiconify the selected frame.
Richard M. Stallman <rms@gnu.org>
parents: 14166
diff changeset
3520 another frame that you were not using lately. */
13619
3fa8cd29e1da (Fdisplay_buffer): Always deiconify the window's frame.
Richard M. Stallman <rms@gnu.org>
parents: 13583
diff changeset
3521
3fa8cd29e1da (Fdisplay_buffer): Always deiconify the window's frame.
Richard M. Stallman <rms@gnu.org>
parents: 13583
diff changeset
3522 static Lisp_Object
3fa8cd29e1da (Fdisplay_buffer): Always deiconify the window's frame.
Richard M. Stallman <rms@gnu.org>
parents: 13583
diff changeset
3523 display_buffer_1 (window)
3fa8cd29e1da (Fdisplay_buffer): Always deiconify the window's frame.
Richard M. Stallman <rms@gnu.org>
parents: 13583
diff changeset
3524 Lisp_Object window;
3fa8cd29e1da (Fdisplay_buffer): Always deiconify the window's frame.
Richard M. Stallman <rms@gnu.org>
parents: 13583
diff changeset
3525 {
25676
70c6d3f2f3b9 (Fminibuffer_window): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents: 25591
diff changeset
3526 Lisp_Object frame = XWINDOW (window)->frame;
70c6d3f2f3b9 (Fminibuffer_window): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents: 25591
diff changeset
3527 FRAME_PTR f = XFRAME (frame);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
3528
13619
3fa8cd29e1da (Fdisplay_buffer): Always deiconify the window's frame.
Richard M. Stallman <rms@gnu.org>
parents: 13583
diff changeset
3529 FRAME_SAMPLE_VISIBILITY (f);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
3530
51674
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3531 if (EQ (frame, selected_frame))
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3532 ; /* Assume the selected frame is already visible enough. */
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3533 else if (minibuf_level > 0
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3534 && MINI_WINDOW_P (XWINDOW (selected_window))
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3535 && WINDOW_LIVE_P (minibuf_selected_window)
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3536 && EQ (frame, WINDOW_FRAME (XWINDOW (minibuf_selected_window))))
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3537 ; /* Assume the frame from which we invoked the minibuffer is visible. */
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3538 else
14535
8ca7e641c144 (display_buffer_1): Raise the frame if already visible.
Richard M. Stallman <rms@gnu.org>
parents: 14445
diff changeset
3539 {
8ca7e641c144 (display_buffer_1): Raise the frame if already visible.
Richard M. Stallman <rms@gnu.org>
parents: 14445
diff changeset
3540 if (FRAME_ICONIFIED_P (f))
25676
70c6d3f2f3b9 (Fminibuffer_window): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents: 25591
diff changeset
3541 Fmake_frame_visible (frame);
14536
12de7dac154b (display_buffer_1): Fix typo in last change.
Roland McGrath <roland@gnu.org>
parents: 14535
diff changeset
3542 else if (FRAME_VISIBLE_P (f))
25676
70c6d3f2f3b9 (Fminibuffer_window): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents: 25591
diff changeset
3543 Fraise_frame (frame);
14535
8ca7e641c144 (display_buffer_1): Raise the frame if already visible.
Richard M. Stallman <rms@gnu.org>
parents: 14445
diff changeset
3544 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
3545
13619
3fa8cd29e1da (Fdisplay_buffer): Always deiconify the window's frame.
Richard M. Stallman <rms@gnu.org>
parents: 13583
diff changeset
3546 return window;
3fa8cd29e1da (Fdisplay_buffer): Always deiconify the window's frame.
Richard M. Stallman <rms@gnu.org>
parents: 13583
diff changeset
3547 }
3fa8cd29e1da (Fdisplay_buffer): Always deiconify the window's frame.
Richard M. Stallman <rms@gnu.org>
parents: 13583
diff changeset
3548
16390
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3549 DEFUN ("special-display-p", Fspecial_display_p, Sspecial_display_p, 1, 1, 0,
57508
22f6e207e697 (Fspecial_display_p): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 57309
diff changeset
3550 doc: /* Returns non-nil if a buffer named BUFFER-NAME gets a special frame.
61871
dd7b3da13b8f (Fsame_window_p, Fspecial_display_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 61755
diff changeset
3551 If the value is t, `display-buffer' or `pop-to-buffer' would create a
dd7b3da13b8f (Fsame_window_p, Fspecial_display_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 61755
diff changeset
3552 special frame for that buffer using the default frame parameters.
dd7b3da13b8f (Fsame_window_p, Fspecial_display_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 61755
diff changeset
3553
dd7b3da13b8f (Fsame_window_p, Fspecial_display_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 61755
diff changeset
3554 If the value is a list, it is a list of frame parameters that would be used
57508
22f6e207e697 (Fspecial_display_p): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 57309
diff changeset
3555 to make a frame for that buffer.
22f6e207e697 (Fspecial_display_p): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 57309
diff changeset
3556 The variables `special-display-buffer-names'
22f6e207e697 (Fspecial_display_p): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 57309
diff changeset
3557 and `special-display-regexps' control this. */)
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3558 (buffer_name)
16390
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3559 Lisp_Object buffer_name;
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3560 {
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3561 Lisp_Object tem;
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3562
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
3563 CHECK_STRING (buffer_name);
16390
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3564
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3565 tem = Fmember (buffer_name, Vspecial_display_buffer_names);
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3566 if (!NILP (tem))
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3567 return Qt;
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3568
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3569 tem = Fassoc (buffer_name, Vspecial_display_buffer_names);
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3570 if (!NILP (tem))
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3571 return XCDR (tem);
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3572
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3573 for (tem = Vspecial_display_regexps; CONSP (tem); tem = XCDR (tem))
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3574 {
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3575 Lisp_Object car = XCAR (tem);
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3576 if (STRINGP (car)
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3577 && fast_string_match (car, buffer_name) >= 0)
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3578 return Qt;
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3579 else if (CONSP (car)
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3580 && STRINGP (XCAR (car))
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3581 && fast_string_match (XCAR (car), buffer_name) >= 0)
20653
19ba67f153d5 (Fspecial_display_p): Return the right value
Richard M. Stallman <rms@gnu.org>
parents: 20627
diff changeset
3582 return XCDR (car);
16390
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3583 }
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3584 return Qnil;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
3585 }
16390
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3586
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3587 DEFUN ("same-window-p", Fsame_window_p, Ssame_window_p, 1, 1, 0,
61871
dd7b3da13b8f (Fsame_window_p, Fspecial_display_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 61755
diff changeset
3588 doc: /* Returns non-nil if a buffer named BUFFER-NAME would use the same window.
dd7b3da13b8f (Fsame_window_p, Fspecial_display_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 61755
diff changeset
3589 More precisely, if `display-buffer' or `pop-to-buffer' would display
dd7b3da13b8f (Fsame_window_p, Fspecial_display_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 61755
diff changeset
3590 that buffer in the selected window rather than (as usual) in some other window.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3591 See `same-window-buffer-names' and `same-window-regexps'. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3592 (buffer_name)
16390
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3593 Lisp_Object buffer_name;
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3594 {
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3595 Lisp_Object tem;
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3596
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
3597 CHECK_STRING (buffer_name);
16390
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3598
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3599 tem = Fmember (buffer_name, Vsame_window_buffer_names);
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3600 if (!NILP (tem))
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3601 return Qt;
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3602
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3603 tem = Fassoc (buffer_name, Vsame_window_buffer_names);
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3604 if (!NILP (tem))
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3605 return Qt;
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3606
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3607 for (tem = Vsame_window_regexps; CONSP (tem); tem = XCDR (tem))
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3608 {
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3609 Lisp_Object car = XCAR (tem);
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3610 if (STRINGP (car)
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3611 && fast_string_match (car, buffer_name) >= 0)
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3612 return Qt;
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3613 else if (CONSP (car)
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3614 && STRINGP (XCAR (car))
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3615 && fast_string_match (XCAR (car), buffer_name) >= 0)
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3616 return Qt;
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3617 }
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3618 return Qnil;
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3619 }
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3620
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3621 /* Use B so the default is (other-buffer). */
20867
fccf74829150 (Fdisplay_buffer): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 20777
diff changeset
3622 DEFUN ("display-buffer", Fdisplay_buffer, Sdisplay_buffer, 1, 3,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3623 "BDisplay buffer: \nP",
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3624 doc: /* Make BUFFER appear in some window but don't select it.
73525
35ece799c49e (Fdisplay_buffer): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 73018
diff changeset
3625 BUFFER must be the name of an existing buffer, or, when called from Lisp,
56393
8eb84bf840a8 (Fwindow_buffer, Fother_window, Fget_lru_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56174
diff changeset
3626 a buffer.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3627 If BUFFER is shown already in some window, just use that one,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3628 unless the window is the selected window and the optional second
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3629 argument NOT-THIS-WINDOW is non-nil (interactively, with prefix arg).
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3630 If `pop-up-frames' is non-nil, make a new frame if no window shows BUFFER.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3631 Returns the window displaying BUFFER.
44155
d94cb7b3b165 (Fdisplay_buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 43713
diff changeset
3632 If `display-buffer-reuse-frames' is non-nil, and another frame is currently
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3633 displaying BUFFER, then simply raise that frame.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3634
54267
bd5ef1fde279 (Fdisplay_buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 54229
diff changeset
3635 The variables `special-display-buffer-names',
bd5ef1fde279 (Fdisplay_buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 54229
diff changeset
3636 `special-display-regexps', `same-window-buffer-names', and
bd5ef1fde279 (Fdisplay_buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 54229
diff changeset
3637 `same-window-regexps' customize how certain buffer names are handled.
70155
d26708f033f8 (Fdisplay_buffer): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 70081
diff changeset
3638 The latter two take effect only if NOT-THIS-WINDOW is nil.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3639
76310
4878ef3006a3 (Fdisplay_buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 75753
diff changeset
3640 If optional argument FRAME is `visible', check all visible frames
4878ef3006a3 (Fdisplay_buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 75753
diff changeset
3641 for a window to use.
4878ef3006a3 (Fdisplay_buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 75753
diff changeset
3642 If FRAME is 0, check all visible and iconified frames.
4878ef3006a3 (Fdisplay_buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 75753
diff changeset
3643 If FRAME is t, check all frames.
4878ef3006a3 (Fdisplay_buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 75753
diff changeset
3644 If FRAME is a frame, check only that frame.
4878ef3006a3 (Fdisplay_buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 75753
diff changeset
3645 If FRAME is nil, check only the selected frame
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3646 (actually the last nonminibuffer frame),
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3647 unless `pop-up-frames' or `display-buffer-reuse-frames' is non-nil,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3648 which means search visible and iconified frames.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3649
55563
a58f6db8bf3d (Fdisplay_buffer, Fsplit_window, split-height-threshold): Doc fix.
Glenn Morris <rgm@gnu.org>
parents: 55402
diff changeset
3650 If a full-width window on a splittable frame is available to display
a58f6db8bf3d (Fdisplay_buffer, Fsplit_window, split-height-threshold): Doc fix.
Glenn Morris <rgm@gnu.org>
parents: 55402
diff changeset
3651 the buffer, it may be split, subject to the value of the variable
a58f6db8bf3d (Fdisplay_buffer, Fsplit_window, split-height-threshold): Doc fix.
Glenn Morris <rgm@gnu.org>
parents: 55402
diff changeset
3652 `split-height-threshold'.
a58f6db8bf3d (Fdisplay_buffer, Fsplit_window, split-height-threshold): Doc fix.
Glenn Morris <rgm@gnu.org>
parents: 55402
diff changeset
3653
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3654 If `even-window-heights' is non-nil, window heights will be evened out
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3655 if displaying the buffer causes two vertically adjacent windows to be
84505
8bd423438456 (prefer_window_split_horizontally, display_buffer):
Romain Francoise <romain@orebokech.com>
parents: 84400
diff changeset
3656 displayed. */)
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3657 (buffer, not_this_window, frame)
84382
6c8a27754af8 (Fdisplay_buffer): Remove `register' since `buffer' needs to be gcpro'd.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 84376
diff changeset
3658 Lisp_Object buffer, not_this_window, frame;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3659 {
25182
ef79ee0ceedd (display-buffer): Don't get confused
Richard M. Stallman <rms@gnu.org>
parents: 25115
diff changeset
3660 register Lisp_Object window, tem, swp;
25676
70c6d3f2f3b9 (Fminibuffer_window): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents: 25591
diff changeset
3661 struct frame *f;
25182
ef79ee0ceedd (display-buffer): Don't get confused
Richard M. Stallman <rms@gnu.org>
parents: 25115
diff changeset
3662
ef79ee0ceedd (display-buffer): Don't get confused
Richard M. Stallman <rms@gnu.org>
parents: 25115
diff changeset
3663 swp = Qnil;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3664 buffer = Fget_buffer (buffer);
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
3665 CHECK_BUFFER (buffer);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3666
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
3667 if (!NILP (Vdisplay_buffer_function))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3668 return call2 (Vdisplay_buffer_function, buffer, not_this_window);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3669
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
3670 if (NILP (not_this_window)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3671 && XBUFFER (XWINDOW (selected_window)->buffer) == XBUFFER (buffer))
13619
3fa8cd29e1da (Fdisplay_buffer): Always deiconify the window's frame.
Richard M. Stallman <rms@gnu.org>
parents: 13583
diff changeset
3672 return display_buffer_1 (selected_window);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3673
10958
c0d821d95739 (Vsame_window_buffer_names, Vsame_window_regexps): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 10808
diff changeset
3674 /* See if the user has specified this buffer should appear
c0d821d95739 (Vsame_window_buffer_names, Vsame_window_regexps): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 10808
diff changeset
3675 in the selected window. */
c0d821d95739 (Vsame_window_buffer_names, Vsame_window_regexps): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 10808
diff changeset
3676 if (NILP (not_this_window))
c0d821d95739 (Vsame_window_buffer_names, Vsame_window_regexps): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 10808
diff changeset
3677 {
25182
ef79ee0ceedd (display-buffer): Don't get confused
Richard M. Stallman <rms@gnu.org>
parents: 25115
diff changeset
3678 swp = Fsame_window_p (XBUFFER (buffer)->name);
ef79ee0ceedd (display-buffer): Don't get confused
Richard M. Stallman <rms@gnu.org>
parents: 25115
diff changeset
3679 if (!NILP (swp) && !no_switch_window (selected_window))
11003
71304a70d0f6 (Fdisplay_buffer): Fix prev change--return selected window.
Richard M. Stallman <rms@gnu.org>
parents: 10958
diff changeset
3680 {
71304a70d0f6 (Fdisplay_buffer): Fix prev change--return selected window.
Richard M. Stallman <rms@gnu.org>
parents: 10958
diff changeset
3681 Fswitch_to_buffer (buffer, Qnil);
13619
3fa8cd29e1da (Fdisplay_buffer): Always deiconify the window's frame.
Richard M. Stallman <rms@gnu.org>
parents: 13583
diff changeset
3682 return display_buffer_1 (selected_window);
11003
71304a70d0f6 (Fdisplay_buffer): Fix prev change--return selected window.
Richard M. Stallman <rms@gnu.org>
parents: 10958
diff changeset
3683 }
10958
c0d821d95739 (Vsame_window_buffer_names, Vsame_window_regexps): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 10808
diff changeset
3684 }
c0d821d95739 (Vsame_window_buffer_names, Vsame_window_regexps): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 10808
diff changeset
3685
44155
d94cb7b3b165 (Fdisplay_buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 43713
diff changeset
3686 /* If the user wants pop-up-frames or display-buffer-reuse-frames,
11427
c4ee56df7173 (Fdisplay_buffer): Search the proper frame when the
Karl Heuer <kwzh@gnu.org>
parents: 11405
diff changeset
3687 look for a window showing BUFFER on any visible or iconified frame.
c4ee56df7173 (Fdisplay_buffer): Search the proper frame when the
Karl Heuer <kwzh@gnu.org>
parents: 11405
diff changeset
3688 Otherwise search only the current frame. */
20867
fccf74829150 (Fdisplay_buffer): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 20777
diff changeset
3689 if (! NILP (frame))
fccf74829150 (Fdisplay_buffer): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 20777
diff changeset
3690 tem = frame;
30560
e4ba830b426d (display_buffer_reuse_frames): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30446
diff changeset
3691 else if (pop_up_frames
e4ba830b426d (display_buffer_reuse_frames): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30446
diff changeset
3692 || display_buffer_reuse_frames
e4ba830b426d (display_buffer_reuse_frames): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30446
diff changeset
3693 || last_nonminibuf_frame == 0)
11427
c4ee56df7173 (Fdisplay_buffer): Search the proper frame when the
Karl Heuer <kwzh@gnu.org>
parents: 11405
diff changeset
3694 XSETFASTINT (tem, 0);
c4ee56df7173 (Fdisplay_buffer): Search the proper frame when the
Karl Heuer <kwzh@gnu.org>
parents: 11405
diff changeset
3695 else
c4ee56df7173 (Fdisplay_buffer): Search the proper frame when the
Karl Heuer <kwzh@gnu.org>
parents: 11405
diff changeset
3696 XSETFRAME (tem, last_nonminibuf_frame);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
3697
11427
c4ee56df7173 (Fdisplay_buffer): Search the proper frame when the
Karl Heuer <kwzh@gnu.org>
parents: 11405
diff changeset
3698 window = Fget_buffer_window (buffer, tem);
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
3699 if (!NILP (window)
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
3700 && (NILP (not_this_window) || !EQ (window, selected_window)))
30560
e4ba830b426d (display_buffer_reuse_frames): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30446
diff changeset
3701 return display_buffer_1 (window);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3702
7056
0a18af7eb587 Implement special frames for specified buffers.
Richard M. Stallman <rms@gnu.org>
parents: 6982
diff changeset
3703 /* Certain buffer names get special handling. */
25182
ef79ee0ceedd (display-buffer): Don't get confused
Richard M. Stallman <rms@gnu.org>
parents: 25115
diff changeset
3704 if (!NILP (Vspecial_display_function) && NILP (swp))
7056
0a18af7eb587 Implement special frames for specified buffers.
Richard M. Stallman <rms@gnu.org>
parents: 6982
diff changeset
3705 {
16390
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3706 tem = Fspecial_display_p (XBUFFER (buffer)->name);
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3707 if (EQ (tem, Qt))
7056
0a18af7eb587 Implement special frames for specified buffers.
Richard M. Stallman <rms@gnu.org>
parents: 6982
diff changeset
3708 return call1 (Vspecial_display_function, buffer);
16390
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3709 if (CONSP (tem))
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
3710 return call2 (Vspecial_display_function, buffer, tem);
7056
0a18af7eb587 Implement special frames for specified buffers.
Richard M. Stallman <rms@gnu.org>
parents: 6982
diff changeset
3711 }
0a18af7eb587 Implement special frames for specified buffers.
Richard M. Stallman <rms@gnu.org>
parents: 6982
diff changeset
3712
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
3713 /* If there are no frames open that have more than a minibuffer,
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
3714 we need to create a new frame. */
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
3715 if (pop_up_frames || last_nonminibuf_frame == 0)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3716 {
7056
0a18af7eb587 Implement special frames for specified buffers.
Richard M. Stallman <rms@gnu.org>
parents: 6982
diff changeset
3717 window = Fframe_selected_window (call0 (Vpop_up_frame_function));
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3718 Fset_window_buffer (window, buffer, Qnil);
13619
3fa8cd29e1da (Fdisplay_buffer): Always deiconify the window's frame.
Richard M. Stallman <rms@gnu.org>
parents: 13583
diff changeset
3719 return display_buffer_1 (window);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3720 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3721
25676
70c6d3f2f3b9 (Fminibuffer_window): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents: 25591
diff changeset
3722 f = SELECTED_FRAME ();
358
71c9042fb90d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 338
diff changeset
3723 if (pop_up_windows
25676
70c6d3f2f3b9 (Fminibuffer_window): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents: 25591
diff changeset
3724 || FRAME_MINIBUF_ONLY_P (f)
8263
bae811318a57 (Fdisplay_buffer): Cope with unsplittable frames and dedicated windows.
Richard M. Stallman <rms@gnu.org>
parents: 8245
diff changeset
3725 /* If the current frame is a special display frame,
bae811318a57 (Fdisplay_buffer): Cope with unsplittable frames and dedicated windows.
Richard M. Stallman <rms@gnu.org>
parents: 8245
diff changeset
3726 don't try to reuse its windows. */
25676
70c6d3f2f3b9 (Fminibuffer_window): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents: 25591
diff changeset
3727 || !NILP (XWINDOW (FRAME_ROOT_WINDOW (f))->dedicated))
358
71c9042fb90d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 338
diff changeset
3728 {
6517
8f5f79c3091a (unshow_buffer, window_loop, Fdisplay_buffer): Use assignment, not
Karl Heuer <kwzh@gnu.org>
parents: 6487
diff changeset
3729 Lisp_Object frames;
84357
7a92dcd56a24 (Vsplit_window_preferred_function): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 83652
diff changeset
3730 struct gcpro gcpro1;
7a92dcd56a24 (Vsplit_window_preferred_function): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 83652
diff changeset
3731 GCPRO1 (buffer);
6517
8f5f79c3091a (unshow_buffer, window_loop, Fdisplay_buffer): Use assignment, not
Karl Heuer <kwzh@gnu.org>
parents: 6487
diff changeset
3732
14536
12de7dac154b (display_buffer_1): Fix typo in last change.
Roland McGrath <roland@gnu.org>
parents: 14535
diff changeset
3733 frames = Qnil;
25676
70c6d3f2f3b9 (Fminibuffer_window): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents: 25591
diff changeset
3734 if (FRAME_MINIBUF_ONLY_P (f))
9282
f4fa46f6a032 (Fminibuffer_window, Fwindow_at, Fwindow_end, Fnext_window, Fprevious_window,
Karl Heuer <kwzh@gnu.org>
parents: 9243
diff changeset
3735 XSETFRAME (frames, last_nonminibuf_frame);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3736
8263
bae811318a57 (Fdisplay_buffer): Cope with unsplittable frames and dedicated windows.
Richard M. Stallman <rms@gnu.org>
parents: 8245
diff changeset
3737 /* Note that both Fget_largest_window and Fget_lru_window
bae811318a57 (Fdisplay_buffer): Cope with unsplittable frames and dedicated windows.
Richard M. Stallman <rms@gnu.org>
parents: 8245
diff changeset
3738 ignore minibuffers and dedicated windows.
bae811318a57 (Fdisplay_buffer): Cope with unsplittable frames and dedicated windows.
Richard M. Stallman <rms@gnu.org>
parents: 8245
diff changeset
3739 This means they can return nil. */
bae811318a57 (Fdisplay_buffer): Cope with unsplittable frames and dedicated windows.
Richard M. Stallman <rms@gnu.org>
parents: 8245
diff changeset
3740
bae811318a57 (Fdisplay_buffer): Cope with unsplittable frames and dedicated windows.
Richard M. Stallman <rms@gnu.org>
parents: 8245
diff changeset
3741 /* If the frame we would try to split cannot be split,
bae811318a57 (Fdisplay_buffer): Cope with unsplittable frames and dedicated windows.
Richard M. Stallman <rms@gnu.org>
parents: 8245
diff changeset
3742 try other frames. */
25676
70c6d3f2f3b9 (Fminibuffer_window): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents: 25591
diff changeset
3743 if (FRAME_NO_SPLIT_P (NILP (frames) ? f : last_nonminibuf_frame))
8263
bae811318a57 (Fdisplay_buffer): Cope with unsplittable frames and dedicated windows.
Richard M. Stallman <rms@gnu.org>
parents: 8245
diff changeset
3744 {
bae811318a57 (Fdisplay_buffer): Cope with unsplittable frames and dedicated windows.
Richard M. Stallman <rms@gnu.org>
parents: 8245
diff changeset
3745 /* Try visible frames first. */
66598
bc45ad547d66 (window_loop): For LRU and LARGEST, let the `mini' argument
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66239
diff changeset
3746 window = Fget_largest_window (Qvisible, Qt);
8263
bae811318a57 (Fdisplay_buffer): Cope with unsplittable frames and dedicated windows.
Richard M. Stallman <rms@gnu.org>
parents: 8245
diff changeset
3747 /* If that didn't work, try iconified frames. */
bae811318a57 (Fdisplay_buffer): Cope with unsplittable frames and dedicated windows.
Richard M. Stallman <rms@gnu.org>
parents: 8245
diff changeset
3748 if (NILP (window))
66598
bc45ad547d66 (window_loop): For LRU and LARGEST, let the `mini' argument
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66239
diff changeset
3749 window = Fget_largest_window (make_number (0), Qt);
bc45ad547d66 (window_loop): For LRU and LARGEST, let the `mini' argument
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66239
diff changeset
3750 #if 0 /* Don't try windows on other displays. */
8263
bae811318a57 (Fdisplay_buffer): Cope with unsplittable frames and dedicated windows.
Richard M. Stallman <rms@gnu.org>
parents: 8245
diff changeset
3751 if (NILP (window))
66598
bc45ad547d66 (window_loop): For LRU and LARGEST, let the `mini' argument
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66239
diff changeset
3752 window = Fget_largest_window (Qt, Qt);
bc45ad547d66 (window_loop): For LRU and LARGEST, let the `mini' argument
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66239
diff changeset
3753 #endif
8263
bae811318a57 (Fdisplay_buffer): Cope with unsplittable frames and dedicated windows.
Richard M. Stallman <rms@gnu.org>
parents: 8245
diff changeset
3754 }
bae811318a57 (Fdisplay_buffer): Cope with unsplittable frames and dedicated windows.
Richard M. Stallman <rms@gnu.org>
parents: 8245
diff changeset
3755 else
66598
bc45ad547d66 (window_loop): For LRU and LARGEST, let the `mini' argument
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66239
diff changeset
3756 window = Fget_largest_window (frames, Qt);
8263
bae811318a57 (Fdisplay_buffer): Cope with unsplittable frames and dedicated windows.
Richard M. Stallman <rms@gnu.org>
parents: 8245
diff changeset
3757
84505
8bd423438456 (prefer_window_split_horizontally, display_buffer):
Romain Francoise <romain@orebokech.com>
parents: 84400
diff changeset
3758 /* If the largest window is tall enough, full-width, and either eligible
8bd423438456 (prefer_window_split_horizontally, display_buffer):
Romain Francoise <romain@orebokech.com>
parents: 84400
diff changeset
3759 for splitting or the only window, split it. */
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
3760 if (!NILP (window)
9567
cf4f4c8a3ef6 (Fdisplay_buffer): In desperation case of looking for
Richard M. Stallman <rms@gnu.org>
parents: 9324
diff changeset
3761 && ! FRAME_NO_SPLIT_P (XFRAME (XWINDOW (window)->frame))
78415
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
3762 && WINDOW_FULL_WIDTH_P (XWINDOW (window))
84400
076336b0f3c6 (prefer_window_split_horizontally): New variable.
Eli Zaretskii <eliz@gnu.org>
parents: 84382
diff changeset
3763 && (window_height (window) >= split_height_threshold
076336b0f3c6 (prefer_window_split_horizontally): New variable.
Eli Zaretskii <eliz@gnu.org>
parents: 84382
diff changeset
3764 || (NILP (XWINDOW (window)->parent)))
78415
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
3765 && (window_height (window)
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
3766 >= (2 * window_min_size_2 (XWINDOW (window), 0))))
84357
7a92dcd56a24 (Vsplit_window_preferred_function): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 83652
diff changeset
3767 window = call1 (Vsplit_window_preferred_function, window);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3768 else
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3769 {
9614
e466cdfd962e (Fdisplay_buffer): If the other window is smaller
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
3770 Lisp_Object upper, lower, other;
e466cdfd962e (Fdisplay_buffer): If the other window is smaller
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
3771
66598
bc45ad547d66 (window_loop): For LRU and LARGEST, let the `mini' argument
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66239
diff changeset
3772 window = Fget_lru_window (frames, Qt);
84505
8bd423438456 (prefer_window_split_horizontally, display_buffer):
Romain Francoise <romain@orebokech.com>
parents: 84400
diff changeset
3773 /* If the LRU window is tall enough, and either eligible for
8bd423438456 (prefer_window_split_horizontally, display_buffer):
Romain Francoise <romain@orebokech.com>
parents: 84400
diff changeset
3774 splitting and selected or the only window, split it. */
8263
bae811318a57 (Fdisplay_buffer): Cope with unsplittable frames and dedicated windows.
Richard M. Stallman <rms@gnu.org>
parents: 8245
diff changeset
3775 if (!NILP (window)
9567
cf4f4c8a3ef6 (Fdisplay_buffer): In desperation case of looking for
Richard M. Stallman <rms@gnu.org>
parents: 9324
diff changeset
3776 && ! FRAME_NO_SPLIT_P (XFRAME (XWINDOW (window)->frame))
84400
076336b0f3c6 (prefer_window_split_horizontally): New variable.
Eli Zaretskii <eliz@gnu.org>
parents: 84382
diff changeset
3777 && ((EQ (window, selected_window)
076336b0f3c6 (prefer_window_split_horizontally): New variable.
Eli Zaretskii <eliz@gnu.org>
parents: 84382
diff changeset
3778 && window_height (window) >= split_height_threshold)
076336b0f3c6 (prefer_window_split_horizontally): New variable.
Eli Zaretskii <eliz@gnu.org>
parents: 84382
diff changeset
3779 || (NILP (XWINDOW (window)->parent)))
076336b0f3c6 (prefer_window_split_horizontally): New variable.
Eli Zaretskii <eliz@gnu.org>
parents: 84382
diff changeset
3780 && (window_height (window)
076336b0f3c6 (prefer_window_split_horizontally): New variable.
Eli Zaretskii <eliz@gnu.org>
parents: 84382
diff changeset
3781 >= (2 * window_min_size_2 (XWINDOW (window), 0))))
84505
8bd423438456 (prefer_window_split_horizontally, display_buffer):
Romain Francoise <romain@orebokech.com>
parents: 84400
diff changeset
3782 window = call1 (Vsplit_window_preferred_function, window);
66657
74fd87aeeaf4 (Fdisplay_buffer): Fix last change to not use a dedicated window.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66598
diff changeset
3783 else
74fd87aeeaf4 (Fdisplay_buffer): Fix last change to not use a dedicated window.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66598
diff changeset
3784 window = Fget_lru_window (frames, Qnil);
8263
bae811318a57 (Fdisplay_buffer): Cope with unsplittable frames and dedicated windows.
Richard M. Stallman <rms@gnu.org>
parents: 8245
diff changeset
3785 /* If Fget_lru_window returned nil, try other approaches. */
17628
0b6db83d4663 (Fdisplay_buffer): If we give up and try other frames,
Richard M. Stallman <rms@gnu.org>
parents: 17540
diff changeset
3786
8263
bae811318a57 (Fdisplay_buffer): Cope with unsplittable frames and dedicated windows.
Richard M. Stallman <rms@gnu.org>
parents: 8245
diff changeset
3787 /* Try visible frames first. */
bae811318a57 (Fdisplay_buffer): Cope with unsplittable frames and dedicated windows.
Richard M. Stallman <rms@gnu.org>
parents: 8245
diff changeset
3788 if (NILP (window))
17628
0b6db83d4663 (Fdisplay_buffer): If we give up and try other frames,
Richard M. Stallman <rms@gnu.org>
parents: 17540
diff changeset
3789 window = Fget_buffer_window (buffer, Qvisible);
0b6db83d4663 (Fdisplay_buffer): If we give up and try other frames,
Richard M. Stallman <rms@gnu.org>
parents: 17540
diff changeset
3790 if (NILP (window))
66598
bc45ad547d66 (window_loop): For LRU and LARGEST, let the `mini' argument
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66239
diff changeset
3791 window = Fget_largest_window (Qvisible, Qnil);
8263
bae811318a57 (Fdisplay_buffer): Cope with unsplittable frames and dedicated windows.
Richard M. Stallman <rms@gnu.org>
parents: 8245
diff changeset
3792 /* If that didn't work, try iconified frames. */
bae811318a57 (Fdisplay_buffer): Cope with unsplittable frames and dedicated windows.
Richard M. Stallman <rms@gnu.org>
parents: 8245
diff changeset
3793 if (NILP (window))
17628
0b6db83d4663 (Fdisplay_buffer): If we give up and try other frames,
Richard M. Stallman <rms@gnu.org>
parents: 17540
diff changeset
3794 window = Fget_buffer_window (buffer, make_number (0));
0b6db83d4663 (Fdisplay_buffer): If we give up and try other frames,
Richard M. Stallman <rms@gnu.org>
parents: 17540
diff changeset
3795 if (NILP (window))
66598
bc45ad547d66 (window_loop): For LRU and LARGEST, let the `mini' argument
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66239
diff changeset
3796 window = Fget_largest_window (make_number (0), Qnil);
bc45ad547d66 (window_loop): For LRU and LARGEST, let the `mini' argument
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66239
diff changeset
3797
bc45ad547d66 (window_loop): For LRU and LARGEST, let the `mini' argument
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66239
diff changeset
3798 #if 0 /* Don't try frames on other displays. */
8263
bae811318a57 (Fdisplay_buffer): Cope with unsplittable frames and dedicated windows.
Richard M. Stallman <rms@gnu.org>
parents: 8245
diff changeset
3799 if (NILP (window))
17628
0b6db83d4663 (Fdisplay_buffer): If we give up and try other frames,
Richard M. Stallman <rms@gnu.org>
parents: 17540
diff changeset
3800 window = Fget_buffer_window (buffer, Qt);
0b6db83d4663 (Fdisplay_buffer): If we give up and try other frames,
Richard M. Stallman <rms@gnu.org>
parents: 17540
diff changeset
3801 if (NILP (window))
66598
bc45ad547d66 (window_loop): For LRU and LARGEST, let the `mini' argument
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66239
diff changeset
3802 window = Fget_largest_window (Qt, Qnil);
bc45ad547d66 (window_loop): For LRU and LARGEST, let the `mini' argument
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66239
diff changeset
3803 #endif
8263
bae811318a57 (Fdisplay_buffer): Cope with unsplittable frames and dedicated windows.
Richard M. Stallman <rms@gnu.org>
parents: 8245
diff changeset
3804 /* As a last resort, make a new frame. */
bae811318a57 (Fdisplay_buffer): Cope with unsplittable frames and dedicated windows.
Richard M. Stallman <rms@gnu.org>
parents: 8245
diff changeset
3805 if (NILP (window))
bae811318a57 (Fdisplay_buffer): Cope with unsplittable frames and dedicated windows.
Richard M. Stallman <rms@gnu.org>
parents: 8245
diff changeset
3806 window = Fframe_selected_window (call0 (Vpop_up_frame_function));
9614
e466cdfd962e (Fdisplay_buffer): If the other window is smaller
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
3807 /* If window appears above or below another,
e466cdfd962e (Fdisplay_buffer): If the other window is smaller
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
3808 even out their heights. */
11750
b911d6f75664 (Fdisplay_buffer): Initialize other, upper, lower.
Richard M. Stallman <rms@gnu.org>
parents: 11731
diff changeset
3809 other = upper = lower = Qnil;
9614
e466cdfd962e (Fdisplay_buffer): If the other window is smaller
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
3810 if (!NILP (XWINDOW (window)->prev))
e466cdfd962e (Fdisplay_buffer): If the other window is smaller
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
3811 other = upper = XWINDOW (window)->prev, lower = window;
e466cdfd962e (Fdisplay_buffer): If the other window is smaller
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
3812 if (!NILP (XWINDOW (window)->next))
e466cdfd962e (Fdisplay_buffer): If the other window is smaller
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
3813 other = lower = XWINDOW (window)->next, upper = window;
e466cdfd962e (Fdisplay_buffer): If the other window is smaller
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
3814 if (!NILP (other)
34261
c50a8c8171b7 (Veven_window_heights): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 34097
diff changeset
3815 && !NILP (Veven_window_heights)
9614
e466cdfd962e (Fdisplay_buffer): If the other window is smaller
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
3816 /* Check that OTHER and WINDOW are vertically arrayed. */
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3817 && !EQ (XWINDOW (other)->top_line, XWINDOW (window)->top_line)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3818 && (XFASTINT (XWINDOW (other)->total_lines)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3819 > XFASTINT (XWINDOW (window)->total_lines)))
9614
e466cdfd962e (Fdisplay_buffer): If the other window is smaller
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
3820 {
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3821 int total = (XFASTINT (XWINDOW (other)->total_lines)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3822 + XFASTINT (XWINDOW (window)->total_lines));
25797
0d73a1e7b7f2 (enlarge_window): Add window parameter instead of using
Gerd Moellmann <gerd@gnu.org>
parents: 25792
diff changeset
3823 enlarge_window (upper,
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3824 total / 2 - XFASTINT (XWINDOW (upper)->total_lines),
67328
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
3825 0);
9614
e466cdfd962e (Fdisplay_buffer): If the other window is smaller
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
3826 }
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3827 }
84357
7a92dcd56a24 (Vsplit_window_preferred_function): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 83652
diff changeset
3828 UNGCPRO;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3829 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3830 else
66598
bc45ad547d66 (window_loop): For LRU and LARGEST, let the `mini' argument
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66239
diff changeset
3831 window = Fget_lru_window (Qnil, Qnil);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3832
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
3833 Fset_window_buffer (window, buffer, Qnil);
13619
3fa8cd29e1da (Fdisplay_buffer): Always deiconify the window's frame.
Richard M. Stallman <rms@gnu.org>
parents: 13583
diff changeset
3834 return display_buffer_1 (window);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3835 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3836
53143
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3837
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3838 DEFUN ("force-window-update", Fforce_window_update, Sforce_window_update,
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3839 0, 1, 0,
71717
dfc0eccac6a1 (Fforce_window_update): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 71396
diff changeset
3840 doc: /* Force all windows to be updated on next redisplay.
53143
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3841 If optional arg OBJECT is a window, force redisplay of that window only.
55027
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
3842 If OBJECT is a buffer or buffer name, force redisplay of all windows
53143
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3843 displaying that buffer. */)
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3844 (object)
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3845 Lisp_Object object;
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3846 {
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3847 if (NILP (object))
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3848 {
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3849 windows_or_buffers_changed++;
54178
1ab08664aea0 (window_loop, Fforce_window_update): Force mode line
Kim F. Storm <storm@cua.dk>
parents: 53927
diff changeset
3850 update_mode_lines++;
53143
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3851 return Qt;
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3852 }
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3853
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3854 if (WINDOWP (object))
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3855 {
54178
1ab08664aea0 (window_loop, Fforce_window_update): Force mode line
Kim F. Storm <storm@cua.dk>
parents: 53927
diff changeset
3856 struct window *w = XWINDOW (object);
53143
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3857 mark_window_display_accurate (object, 0);
54178
1ab08664aea0 (window_loop, Fforce_window_update): Force mode line
Kim F. Storm <storm@cua.dk>
parents: 53927
diff changeset
3858 w->update_mode_line = Qt;
1ab08664aea0 (window_loop, Fforce_window_update): Force mode line
Kim F. Storm <storm@cua.dk>
parents: 53927
diff changeset
3859 if (BUFFERP (w->buffer))
1ab08664aea0 (window_loop, Fforce_window_update): Force mode line
Kim F. Storm <storm@cua.dk>
parents: 53927
diff changeset
3860 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
1ab08664aea0 (window_loop, Fforce_window_update): Force mode line
Kim F. Storm <storm@cua.dk>
parents: 53927
diff changeset
3861 ++update_mode_lines;
53143
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3862 return Qt;
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3863 }
55027
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
3864
53143
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3865 if (STRINGP (object))
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3866 object = Fget_buffer (object);
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3867 if (BUFFERP (object) && !NILP (XBUFFER (object)->name))
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3868 {
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3869 /* Walk all windows looking for buffer, and force update
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3870 of each of those windows. */
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3871
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3872 object = window_loop (REDISPLAY_BUFFER_WINDOWS, object, 0, Qvisible);
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3873 return NILP (object) ? Qnil : Qt;
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3874 }
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3875
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3876 /* If nothing suitable was found, just return.
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3877 We could signal an error, but this feature will typically be used
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3878 asynchronously in timers or process sentinels, so we don't. */
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3879 return Qnil;
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3880 }
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3881
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
3882
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3883 void
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3884 temp_output_buffer_show (buf)
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3885 register Lisp_Object buf;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3886 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3887 register struct buffer *old = current_buffer;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3888 register Lisp_Object window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3889 register struct window *w;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3890
18493
d65021d5c39e (temp_output_buffer_show): Copy default-directory from current buffer.
Richard M. Stallman <rms@gnu.org>
parents: 18065
diff changeset
3891 XBUFFER (buf)->directory = current_buffer->directory;
d65021d5c39e (temp_output_buffer_show): Copy default-directory from current buffer.
Richard M. Stallman <rms@gnu.org>
parents: 18065
diff changeset
3892
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3893 Fset_buffer (buf);
10302
34556316a48a (temp_output_buffer_show): Use BUF_SAVE_MODIFF.
Richard M. Stallman <rms@gnu.org>
parents: 10043
diff changeset
3894 BUF_SAVE_MODIFF (XBUFFER (buf)) = MODIFF;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3895 BEGV = BEG;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3896 ZV = Z;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3897 SET_PT (BEG);
46410
7453a1fdc264 (temp_output_buffer_show): Don't set prevent_redisplay_optimizations_p.
Richard M. Stallman <rms@gnu.org>
parents: 46370
diff changeset
3898 #if 0 /* rms: there should be no reason for this. */
25375
919b568e4108 (Fset_window_hscroll): Set
Gerd Moellmann <gerd@gnu.org>
parents: 25356
diff changeset
3899 XBUFFER (buf)->prevent_redisplay_optimizations_p = 1;
46410
7453a1fdc264 (temp_output_buffer_show): Don't set prevent_redisplay_optimizations_p.
Richard M. Stallman <rms@gnu.org>
parents: 46370
diff changeset
3900 #endif
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3901 set_buffer_internal (old);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3902
67234
f1564d57f6a1 (Fset_window_configuration): Don't accidentally copy the
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 67156
diff changeset
3903 if (!NILP (Vtemp_buffer_show_function))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3904 call1 (Vtemp_buffer_show_function, buf);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3905 else
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3906 {
20867
fccf74829150 (Fdisplay_buffer): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 20777
diff changeset
3907 window = Fdisplay_buffer (buf, Qnil, Qnil);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3908
25676
70c6d3f2f3b9 (Fminibuffer_window): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents: 25591
diff changeset
3909 if (!EQ (XWINDOW (window)->frame, selected_frame))
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
3910 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (window)));
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3911 Vminibuf_scroll_window = window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3912 w = XWINDOW (window);
9324
ac6a5691607f (make_window, Fset_window_hscroll, Fset_window_start, set_window_height,
Karl Heuer <kwzh@gnu.org>
parents: 9282
diff changeset
3913 XSETFASTINT (w->hscroll, 0);
34747
b17790c2efbf (make_window): Initialize window's min_hscroll.
Gerd Moellmann <gerd@gnu.org>
parents: 34735
diff changeset
3914 XSETFASTINT (w->min_hscroll, 0);
51674
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3915 set_marker_restricted_both (w->start, buf, BEG, BEG);
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3916 set_marker_restricted_both (w->pointm, buf, BEG, BEG);
11731
b8d3aea195cd (syms_of_window): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 11427
diff changeset
3917
22149
ad3ee5ec90d1 (Fselect_window): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21844
diff changeset
3918 /* Run temp-buffer-show-hook, with the chosen window selected
47973
b75515b80900 (window_loop): For GET_LRU_WINDOW and GET_LARGEST_WINDOW>,
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47865
diff changeset
3919 and its buffer current. */
51674
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3920
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3921 if (!NILP (Vrun_hooks)
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3922 && !NILP (Fboundp (Qtemp_buffer_show_hook))
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3923 && !NILP (Fsymbol_value (Qtemp_buffer_show_hook)))
11405
645e3883da72 (temp_output_buffer_show): Select the chosen window
Richard M. Stallman <rms@gnu.org>
parents: 11307
diff changeset
3924 {
51674
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3925 int count = SPECPDL_INDEX ();
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3926 Lisp_Object prev_window, prev_buffer;
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3927 prev_window = selected_window;
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3928 XSETBUFFER (prev_buffer, old);
55027
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
3929
51674
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3930 /* Select the window that was chosen, for running the hook.
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3931 Note: Both Fselect_window and select_window_norecord may
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3932 set-buffer to the buffer displayed in the window,
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3933 so we need to save the current buffer. --stef */
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3934 record_unwind_protect (Fset_buffer, prev_buffer);
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3935 record_unwind_protect (select_window_norecord, prev_window);
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3936 Fselect_window (window, Qt);
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3937 Fset_buffer (w->buffer);
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3938 call1 (Vrun_hooks, Qtemp_buffer_show_hook);
c78e0c6e92aa (Fset_window_dedicated_p): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 51477
diff changeset
3939 unbind_to (count, Qnil);
11405
645e3883da72 (temp_output_buffer_show): Select the chosen window
Richard M. Stallman <rms@gnu.org>
parents: 11307
diff changeset
3940 }
645e3883da72 (temp_output_buffer_show): Select the chosen window
Richard M. Stallman <rms@gnu.org>
parents: 11307
diff changeset
3941 }
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3942 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3943
21514
fa9ff387d260 Fix -Wimplicit warnings.
Andreas Schwab <schwab@suse.de>
parents: 21227
diff changeset
3944 static void
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3945 make_dummy_parent (window)
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3946 Lisp_Object window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3947 {
9970
76910d506a80 (make_dummy_parent, make_window): Use allocate_vectorlike and VECSIZE.
Karl Heuer <kwzh@gnu.org>
parents: 9964
diff changeset
3948 Lisp_Object new;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3949 register struct window *o, *p;
9970
76910d506a80 (make_dummy_parent, make_window): Use allocate_vectorlike and VECSIZE.
Karl Heuer <kwzh@gnu.org>
parents: 9964
diff changeset
3950 int i;
76910d506a80 (make_dummy_parent, make_window): Use allocate_vectorlike and VECSIZE.
Karl Heuer <kwzh@gnu.org>
parents: 9964
diff changeset
3951
76910d506a80 (make_dummy_parent, make_window): Use allocate_vectorlike and VECSIZE.
Karl Heuer <kwzh@gnu.org>
parents: 9964
diff changeset
3952 o = XWINDOW (window);
36432
28af746067b2 (make_window, make_dummy_parent): Use allocate_window.
Gerd Moellmann <gerd@gnu.org>
parents: 36231
diff changeset
3953 p = allocate_window ();
9970
76910d506a80 (make_dummy_parent, make_window): Use allocate_vectorlike and VECSIZE.
Karl Heuer <kwzh@gnu.org>
parents: 9964
diff changeset
3954 for (i = 0; i < VECSIZE (struct window); ++i)
36432
28af746067b2 (make_window, make_dummy_parent): Use allocate_window.
Gerd Moellmann <gerd@gnu.org>
parents: 36231
diff changeset
3955 ((struct Lisp_Vector *) p)->contents[i]
28af746067b2 (make_window, make_dummy_parent): Use allocate_window.
Gerd Moellmann <gerd@gnu.org>
parents: 36231
diff changeset
3956 = ((struct Lisp_Vector *)o)->contents[i];
9970
76910d506a80 (make_dummy_parent, make_window): Use allocate_vectorlike and VECSIZE.
Karl Heuer <kwzh@gnu.org>
parents: 9964
diff changeset
3957 XSETWINDOW (new, p);
76910d506a80 (make_dummy_parent, make_window): Use allocate_vectorlike and VECSIZE.
Karl Heuer <kwzh@gnu.org>
parents: 9964
diff changeset
3958
58265
491080266027 Avoid side-effects inside XSETFASTINT's arguments.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58217
diff changeset
3959 ++sequence_number;
491080266027 Avoid side-effects inside XSETFASTINT's arguments.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58217
diff changeset
3960 XSETFASTINT (p->sequence_number, sequence_number);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3961
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3962 /* Put new into window structure in place of window */
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3963 replace_window (window, new);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3964
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3965 o->next = Qnil;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3966 o->prev = Qnil;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3967 o->vchild = Qnil;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3968 o->hchild = Qnil;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3969 o->parent = new;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3970
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3971 p->start = Qnil;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3972 p->pointm = Qnil;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3973 p->buffer = Qnil;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3974 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3975
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3976 DEFUN ("split-window", Fsplit_window, Ssplit_window, 0, 3, "",
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3977 doc: /* Split WINDOW, putting SIZE lines in the first of the pair.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3978 WINDOW defaults to selected one and SIZE to half its size.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3979 If optional third arg HORFLAG is non-nil, split side by side
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3980 and put SIZE columns in the first of the pair. In that case,
55563
a58f6db8bf3d (Fdisplay_buffer, Fsplit_window, split-height-threshold): Doc fix.
Glenn Morris <rgm@gnu.org>
parents: 55402
diff changeset
3981 SIZE includes that window's scroll bar, or the divider column to its right.
56393
8eb84bf840a8 (Fwindow_buffer, Fother_window, Fget_lru_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56174
diff changeset
3982 Interactively, all arguments are nil.
8eb84bf840a8 (Fwindow_buffer, Fother_window, Fget_lru_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56174
diff changeset
3983
8eb84bf840a8 (Fwindow_buffer, Fother_window, Fget_lru_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56174
diff changeset
3984 Returns the newly created window (which is the lower or rightmost one).
71146
c53dfaf68575 (Fsplit_window): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 71041
diff changeset
3985 The upper or leftmost window is the original one, and remains selected
c53dfaf68575 (Fsplit_window): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 71041
diff changeset
3986 if it was selected before.
c53dfaf68575 (Fsplit_window): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 71041
diff changeset
3987
56393
8eb84bf840a8 (Fwindow_buffer, Fother_window, Fget_lru_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56174
diff changeset
3988 See Info node `(elisp)Splitting Windows' for more details and examples.*/)
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
3989 (window, size, horflag)
13780
732a8bd9c552 (Fsplit_window): Rename size to size_int and chsize to size.
Karl Heuer <kwzh@gnu.org>
parents: 13723
diff changeset
3990 Lisp_Object window, size, horflag;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3991 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3992 register Lisp_Object new;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3993 register struct window *o, *p;
13723
4e170419e83c (Fsplit_window): Account for scroll bar width.
Karl Heuer <kwzh@gnu.org>
parents: 13619
diff changeset
3994 FRAME_PTR fo;
13780
732a8bd9c552 (Fsplit_window): Rename size to size_int and chsize to size.
Karl Heuer <kwzh@gnu.org>
parents: 13723
diff changeset
3995 register int size_int;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3996
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
3997 if (NILP (window))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3998 window = selected_window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3999 else
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
4000 CHECK_LIVE_WINDOW (window);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4001
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4002 o = XWINDOW (window);
13723
4e170419e83c (Fsplit_window): Account for scroll bar width.
Karl Heuer <kwzh@gnu.org>
parents: 13619
diff changeset
4003 fo = XFRAME (WINDOW_FRAME (o));
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4004
13780
732a8bd9c552 (Fsplit_window): Rename size to size_int and chsize to size.
Karl Heuer <kwzh@gnu.org>
parents: 13723
diff changeset
4005 if (NILP (size))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4006 {
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
4007 if (!NILP (horflag))
13723
4e170419e83c (Fsplit_window): Account for scroll bar width.
Karl Heuer <kwzh@gnu.org>
parents: 13619
diff changeset
4008 /* Calculate the size of the left-hand window, by dividing
25044
e6c2ab650ebc (Fsplit_window): For default size, round up for left window.
Karl Heuer <kwzh@gnu.org>
parents: 24997
diff changeset
4009 the usable space in columns by two.
e6c2ab650ebc (Fsplit_window): For default size, round up for left window.
Karl Heuer <kwzh@gnu.org>
parents: 24997
diff changeset
4010 We round up, since the left-hand window may include
e6c2ab650ebc (Fsplit_window): For default size, round up for left window.
Karl Heuer <kwzh@gnu.org>
parents: 24997
diff changeset
4011 a dividing line, while the right-hand may not. */
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4012 size_int = (XFASTINT (o->total_cols) + 1) >> 1;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4013 else
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4014 size_int = XFASTINT (o->total_lines) >> 1;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4015 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4016 else
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4017 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
4018 CHECK_NUMBER (size);
13780
732a8bd9c552 (Fsplit_window): Rename size to size_int and chsize to size.
Karl Heuer <kwzh@gnu.org>
parents: 13723
diff changeset
4019 size_int = XINT (size);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4020 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4021
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4022 if (MINI_WINDOW_P (o))
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4023 error ("Attempt to split minibuffer window");
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4024 else if (window_fixed_size_p (o, !NILP (horflag), 0))
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4025 error ("Attempt to split fixed-size window");
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4026
972
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
4027 check_min_window_sizes ();
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4028
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
4029 if (NILP (horflag))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4030 {
78415
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
4031 int window_safe_height = window_min_size_2 (o, 0);
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
4032
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
4033 if (size_int < window_safe_height)
13780
732a8bd9c552 (Fsplit_window): Rename size to size_int and chsize to size.
Karl Heuer <kwzh@gnu.org>
parents: 13723
diff changeset
4034 error ("Window height %d too small (after splitting)", size_int);
78415
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
4035 if (size_int + window_safe_height > XFASTINT (o->total_lines))
14536
12de7dac154b (display_buffer_1): Fix typo in last change.
Roland McGrath <roland@gnu.org>
parents: 14535
diff changeset
4036 error ("Window height %d too small (after splitting)",
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4037 XFASTINT (o->total_lines) - size_int);
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
4038 if (NILP (o->parent)
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
4039 || NILP (XWINDOW (o->parent)->vchild))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4040 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4041 make_dummy_parent (window);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4042 new = o->parent;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4043 XWINDOW (new)->vchild = window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4044 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4045 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4046 else
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4047 {
78415
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
4048 int window_safe_width = window_min_size_2 (o, 1);
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
4049
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
4050 if (size_int < window_safe_width)
13780
732a8bd9c552 (Fsplit_window): Rename size to size_int and chsize to size.
Karl Heuer <kwzh@gnu.org>
parents: 13723
diff changeset
4051 error ("Window width %d too small (after splitting)", size_int);
78415
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
4052 if (size_int + window_safe_width > XFASTINT (o->total_cols))
14536
12de7dac154b (display_buffer_1): Fix typo in last change.
Roland McGrath <roland@gnu.org>
parents: 14535
diff changeset
4053 error ("Window width %d too small (after splitting)",
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4054 XFASTINT (o->total_cols) - size_int);
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
4055 if (NILP (o->parent)
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
4056 || NILP (XWINDOW (o->parent)->hchild))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4057 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4058 make_dummy_parent (window);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4059 new = o->parent;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4060 XWINDOW (new)->hchild = window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4061 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4062 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4063
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4064 /* Now we know that window's parent is a vertical combination
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4065 if we are dividing vertically, or a horizontal combination
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4066 if we are making side-by-side windows */
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4067
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4068 windows_or_buffers_changed++;
13723
4e170419e83c (Fsplit_window): Account for scroll bar width.
Karl Heuer <kwzh@gnu.org>
parents: 13619
diff changeset
4069 FRAME_WINDOW_SIZES_CHANGED (fo) = 1;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4070 new = make_window ();
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4071 p = XWINDOW (new);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4072
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
4073 p->frame = o->frame;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4074 p->next = o->next;
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
4075 if (!NILP (p->next))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4076 XWINDOW (p->next)->prev = new;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4077 p->prev = window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4078 o->next = new;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4079 p->parent = o->parent;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4080 p->buffer = Qt;
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4081 p->window_end_valid = Qnil;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4082 bzero (&p->last_cursor, sizeof p->last_cursor);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4083
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4084 /* Duplicate special geometry settings. */
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4085
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4086 p->left_margin_cols = o->left_margin_cols;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4087 p->right_margin_cols = o->right_margin_cols;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4088 p->left_fringe_width = o->left_fringe_width;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4089 p->right_fringe_width = o->right_fringe_width;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4090 p->fringes_outside_margins = o->fringes_outside_margins;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4091 p->scroll_bar_width = o->scroll_bar_width;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4092 p->vertical_scroll_bar_type = o->vertical_scroll_bar_type;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4093
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
4094 /* Apportion the available frame space among the two new windows */
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4095
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
4096 if (!NILP (horflag))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4097 {
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4098 p->total_lines = o->total_lines;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4099 p->top_line = o->top_line;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4100 XSETFASTINT (p->total_cols, XFASTINT (o->total_cols) - size_int);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4101 XSETFASTINT (o->total_cols, size_int);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4102 XSETFASTINT (p->left_col, XFASTINT (o->left_col) + size_int);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4103 adjust_window_margins (p);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4104 adjust_window_margins (o);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4105 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4106 else
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4107 {
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4108 p->left_col = o->left_col;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4109 p->total_cols = o->total_cols;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4110 XSETFASTINT (p->total_lines, XFASTINT (o->total_lines) - size_int);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4111 XSETFASTINT (o->total_lines, size_int);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4112 XSETFASTINT (p->top_line, XFASTINT (o->top_line) + size_int);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4113 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4114
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4115 /* Adjust glyph matrices. */
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4116 adjust_glyphs (fo);
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4117
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4118 Fset_window_buffer (new, o->buffer, Qt);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4119 return new;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4120 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4121
67328
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4122 DEFUN ("enlarge-window", Fenlarge_window, Senlarge_window, 1, 2, "p",
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
4123 doc: /* Make current window ARG lines bigger.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
4124 From program, optional second arg non-nil means grow sideways ARG columns.
42308
c931d7a1b0df (enlarge_window): New arg PRESERVE_BEFORE. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 42089
diff changeset
4125 Interactively, if an argument is not given, make the window one line bigger.
66664
93a5a20be8f1 (Fenlarge_window): Rename SIDE to HORIZONTAL.
Richard M. Stallman <rms@gnu.org>
parents: 66657
diff changeset
4126 If HORIZONTAL is non-nil, enlarge horizontally instead of vertically.
67328
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4127 This function can delete windows, even the second window, if they get
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4128 too small. */)
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4129 (arg, horizontal)
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4130 Lisp_Object arg, horizontal;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4131 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
4132 CHECK_NUMBER (arg);
67328
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4133 enlarge_window (selected_window, XINT (arg), !NILP (horizontal));
17281
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
4134
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
4135 if (! NILP (Vwindow_configuration_change_hook))
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
4136 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
4137
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4138 return Qnil;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4139 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4140
67328
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4141 DEFUN ("shrink-window", Fshrink_window, Sshrink_window, 1, 2, "p",
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
4142 doc: /* Make current window ARG lines smaller.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
4143 From program, optional second arg non-nil means shrink sideways arg columns.
77883
838cb617af0f (Fshrink_window): Reflow docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 76825
diff changeset
4144 Interactively, if an argument is not given, make the window one line smaller.
838cb617af0f (Fshrink_window): Reflow docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 76825
diff changeset
4145 Only siblings to the right or below are changed. */)
67328
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4146 (arg, side)
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4147 Lisp_Object arg, side;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4148 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
4149 CHECK_NUMBER (arg);
67328
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4150 enlarge_window (selected_window, -XINT (arg), !NILP (side));
17281
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
4151
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
4152 if (! NILP (Vwindow_configuration_change_hook))
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
4153 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
4154
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4155 return Qnil;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4156 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4157
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4158 int
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4159 window_height (window)
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4160 Lisp_Object window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4161 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4162 register struct window *p = XWINDOW (window);
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4163 return WINDOW_TOTAL_LINES (p);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4164 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4165
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4166 int
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4167 window_width (window)
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4168 Lisp_Object window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4169 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4170 register struct window *p = XWINDOW (window);
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4171 return WINDOW_TOTAL_COLS (p);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4172 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4173
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
4174
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4175 #define CURBEG(w) \
66664
93a5a20be8f1 (Fenlarge_window): Rename SIDE to HORIZONTAL.
Richard M. Stallman <rms@gnu.org>
parents: 66657
diff changeset
4176 *(horiz_flag ? &(XWINDOW (w)->left_col) : &(XWINDOW (w)->top_line))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4177
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4178 #define CURSIZE(w) \
66664
93a5a20be8f1 (Fenlarge_window): Rename SIDE to HORIZONTAL.
Richard M. Stallman <rms@gnu.org>
parents: 66657
diff changeset
4179 *(horiz_flag ? &(XWINDOW (w)->total_cols) : &(XWINDOW (w)->total_lines))
93a5a20be8f1 (Fenlarge_window): Rename SIDE to HORIZONTAL.
Richard M. Stallman <rms@gnu.org>
parents: 66657
diff changeset
4180
93a5a20be8f1 (Fenlarge_window): Rename SIDE to HORIZONTAL.
Richard M. Stallman <rms@gnu.org>
parents: 66657
diff changeset
4181
93a5a20be8f1 (Fenlarge_window): Rename SIDE to HORIZONTAL.
Richard M. Stallman <rms@gnu.org>
parents: 66657
diff changeset
4182 /* Enlarge WINDOW by DELTA.
93a5a20be8f1 (Fenlarge_window): Rename SIDE to HORIZONTAL.
Richard M. Stallman <rms@gnu.org>
parents: 66657
diff changeset
4183 HORIZ_FLAG nonzero means enlarge it horizontally;
93a5a20be8f1 (Fenlarge_window): Rename SIDE to HORIZONTAL.
Richard M. Stallman <rms@gnu.org>
parents: 66657
diff changeset
4184 zero means do it vertically.
93a5a20be8f1 (Fenlarge_window): Rename SIDE to HORIZONTAL.
Richard M. Stallman <rms@gnu.org>
parents: 66657
diff changeset
4185
93a5a20be8f1 (Fenlarge_window): Rename SIDE to HORIZONTAL.
Richard M. Stallman <rms@gnu.org>
parents: 66657
diff changeset
4186 Siblings of the selected window are resized to fulfill the size
93a5a20be8f1 (Fenlarge_window): Rename SIDE to HORIZONTAL.
Richard M. Stallman <rms@gnu.org>
parents: 66657
diff changeset
4187 request. If they become too small in the process, they will be
67328
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4188 deleted. */
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4189
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4190 static void
67328
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4191 enlarge_window (window, delta, horiz_flag)
25797
0d73a1e7b7f2 (enlarge_window): Add window parameter instead of using
Gerd Moellmann <gerd@gnu.org>
parents: 25792
diff changeset
4192 Lisp_Object window;
67328
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4193 int delta, horiz_flag;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4194 {
25797
0d73a1e7b7f2 (enlarge_window): Add window parameter instead of using
Gerd Moellmann <gerd@gnu.org>
parents: 25792
diff changeset
4195 Lisp_Object parent, next, prev;
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4196 struct window *p;
28463
4591d285fb65 * window.c (CURBEG, CURSIZE): Don't overload lisp object lvalues
Ken Raeburn <raeburn@raeburn.org>
parents: 28417
diff changeset
4197 Lisp_Object *sizep;
4591d285fb65 * window.c (CURBEG, CURSIZE): Don't overload lisp object lvalues
Ken Raeburn <raeburn@raeburn.org>
parents: 28417
diff changeset
4198 int maximum;
20351
f69eb2ab4f0f Add prototypes.
Andreas Schwab <schwab@suse.de>
parents: 20090
diff changeset
4199 int (*sizefun) P_ ((Lisp_Object))
66664
93a5a20be8f1 (Fenlarge_window): Rename SIDE to HORIZONTAL.
Richard M. Stallman <rms@gnu.org>
parents: 66657
diff changeset
4200 = horiz_flag ? window_width : window_height;
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4201 void (*setsizefun) P_ ((Lisp_Object, int, int))
66664
93a5a20be8f1 (Fenlarge_window): Rename SIDE to HORIZONTAL.
Richard M. Stallman <rms@gnu.org>
parents: 66657
diff changeset
4202 = (horiz_flag ? set_window_width : set_window_height);
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4203
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4204 /* Check values of window_min_width and window_min_height for
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4205 validity. */
972
f47d221cbfe6 * window.c (MIN_SAFE_WINDOW_HEIGHT, MIN_SAFE_WINDOW_WIDTH): Macros
Jim Blandy <jimb@redhat.com>
parents: 780
diff changeset
4206 check_min_window_sizes ();
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4207
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4208 /* Give up if this window cannot be resized. */
66664
93a5a20be8f1 (Fenlarge_window): Rename SIDE to HORIZONTAL.
Richard M. Stallman <rms@gnu.org>
parents: 66657
diff changeset
4209 if (window_fixed_size_p (XWINDOW (window), horiz_flag, 1))
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4210 error ("Window is not resizable");
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4211
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4212 /* Find the parent of the selected window. */
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4213 while (1)
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4214 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4215 p = XWINDOW (window);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4216 parent = p->parent;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
4217
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
4218 if (NILP (parent))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4219 {
66664
93a5a20be8f1 (Fenlarge_window): Rename SIDE to HORIZONTAL.
Richard M. Stallman <rms@gnu.org>
parents: 66657
diff changeset
4220 if (horiz_flag)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4221 error ("No other window to side of this one");
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4222 break;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4223 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
4224
66664
93a5a20be8f1 (Fenlarge_window): Rename SIDE to HORIZONTAL.
Richard M. Stallman <rms@gnu.org>
parents: 66657
diff changeset
4225 if (horiz_flag
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4226 ? !NILP (XWINDOW (parent)->hchild)
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
4227 : !NILP (XWINDOW (parent)->vchild))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4228 break;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
4229
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4230 window = parent;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4231 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4232
1049
25046e48ce9a * window.c (coordinates_in_window): Do not assume that all
Jim Blandy <jimb@redhat.com>
parents: 1016
diff changeset
4233 sizep = &CURSIZE (window);
25046e48ce9a * window.c (coordinates_in_window): Do not assume that all
Jim Blandy <jimb@redhat.com>
parents: 1016
diff changeset
4234
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4235 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4236 register int maxdelta;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4237
42308
c931d7a1b0df (enlarge_window): New arg PRESERVE_BEFORE. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 42089
diff changeset
4238 /* Compute the maximum size increment this window can have. */
c931d7a1b0df (enlarge_window): New arg PRESERVE_BEFORE. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 42089
diff changeset
4239
67328
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4240 maxdelta = (!NILP (parent) ? (*sizefun) (parent) - XINT (*sizep)
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4241 /* This is a main window followed by a minibuffer. */
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4242 : !NILP (p->next) ? ((*sizefun) (p->next)
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4243 - window_min_size (XWINDOW (p->next),
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4244 horiz_flag, 0, 0))
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4245 /* This is a minibuffer following a main window. */
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4246 : !NILP (p->prev) ? ((*sizefun) (p->prev)
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4247 - window_min_size (XWINDOW (p->prev),
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4248 horiz_flag, 0, 0))
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4249 /* This is a frame with only one window, a minibuffer-only
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4250 or a minibufferless frame. */
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4251 : (delta = 0));
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4252
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4253 if (delta > maxdelta)
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4254 /* This case traps trying to make the minibuffer
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
4255 the full frame, or make the only window aside from the
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
4256 minibuffer the full frame. */
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4257 delta = maxdelta;
7618
45298374e242 (change_window_height): Test for DELTA too small
Richard M. Stallman <rms@gnu.org>
parents: 7545
diff changeset
4258 }
45298374e242 (change_window_height): Test for DELTA too small
Richard M. Stallman <rms@gnu.org>
parents: 7545
diff changeset
4259
66664
93a5a20be8f1 (Fenlarge_window): Rename SIDE to HORIZONTAL.
Richard M. Stallman <rms@gnu.org>
parents: 66657
diff changeset
4260 if (XINT (*sizep) + delta < window_min_size (XWINDOW (window), horiz_flag, 0, 0))
7618
45298374e242 (change_window_height): Test for DELTA too small
Richard M. Stallman <rms@gnu.org>
parents: 7545
diff changeset
4261 {
17281
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
4262 delete_window (window);
432
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
4263 return;
7618
45298374e242 (change_window_height): Test for DELTA too small
Richard M. Stallman <rms@gnu.org>
parents: 7545
diff changeset
4264 }
45298374e242 (change_window_height): Test for DELTA too small
Richard M. Stallman <rms@gnu.org>
parents: 7545
diff changeset
4265
45298374e242 (change_window_height): Test for DELTA too small
Richard M. Stallman <rms@gnu.org>
parents: 7545
diff changeset
4266 if (delta == 0)
45298374e242 (change_window_height): Test for DELTA too small
Richard M. Stallman <rms@gnu.org>
parents: 7545
diff changeset
4267 return;
45298374e242 (change_window_height): Test for DELTA too small
Richard M. Stallman <rms@gnu.org>
parents: 7545
diff changeset
4268
42308
c931d7a1b0df (enlarge_window): New arg PRESERVE_BEFORE. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 42089
diff changeset
4269 /* Find the total we can get from other siblings without deleting them. */
16982
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4270 maximum = 0;
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4271 for (next = p->next; ! NILP (next); next = XWINDOW (next)->next)
25254
518d62d71d21 (MINSIZE): Removed.
Gerd Moellmann <gerd@gnu.org>
parents: 25182
diff changeset
4272 maximum += (*sizefun) (next) - window_min_size (XWINDOW (next),
66664
93a5a20be8f1 (Fenlarge_window): Rename SIDE to HORIZONTAL.
Richard M. Stallman <rms@gnu.org>
parents: 66657
diff changeset
4273 horiz_flag, 0, 0);
67328
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4274 for (prev = p->prev; ! NILP (prev); prev = XWINDOW (prev)->prev)
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4275 maximum += (*sizefun) (prev) - window_min_size (XWINDOW (prev),
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4276 horiz_flag, 0, 0);
42308
c931d7a1b0df (enlarge_window): New arg PRESERVE_BEFORE. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 42089
diff changeset
4277
c931d7a1b0df (enlarge_window): New arg PRESERVE_BEFORE. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 42089
diff changeset
4278 /* If we can get it all from them without deleting them, do so. */
18900
23ee59ec294b (set_window_height): Allow all heights > 0 for minibuffer windows.
Richard M. Stallman <rms@gnu.org>
parents: 18737
diff changeset
4279 if (delta <= maximum)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4280 {
16982
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4281 Lisp_Object first_unaffected;
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4282 Lisp_Object first_affected;
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4283 int fixed_p;
16982
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4284
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4285 next = p->next;
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4286 prev = p->prev;
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4287 first_affected = window;
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4288 /* Look at one sibling at a time,
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4289 moving away from this window in both directions alternately,
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4290 and take as much as we can get without deleting that sibling. */
42308
c931d7a1b0df (enlarge_window): New arg PRESERVE_BEFORE. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 42089
diff changeset
4291 while (delta != 0
67328
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4292 && (!NILP (next) || !NILP (prev)))
16982
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4293 {
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4294 if (! NILP (next))
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4295 {
25254
518d62d71d21 (MINSIZE): Removed.
Gerd Moellmann <gerd@gnu.org>
parents: 25182
diff changeset
4296 int this_one = ((*sizefun) (next)
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4297 - window_min_size (XWINDOW (next),
66664
93a5a20be8f1 (Fenlarge_window): Rename SIDE to HORIZONTAL.
Richard M. Stallman <rms@gnu.org>
parents: 66657
diff changeset
4298 horiz_flag, 0, &fixed_p));
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4299 if (!fixed_p)
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4300 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4301 if (this_one > delta)
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4302 this_one = delta;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
4303
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4304 (*setsizefun) (next, (*sizefun) (next) - this_one, 0);
28463
4591d285fb65 * window.c (CURBEG, CURSIZE): Don't overload lisp object lvalues
Ken Raeburn <raeburn@raeburn.org>
parents: 28417
diff changeset
4305 (*setsizefun) (window, XINT (*sizep) + this_one, 0);
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4306
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4307 delta -= this_one;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4308 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
4309
16982
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4310 next = XWINDOW (next)->next;
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4311 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
4312
16982
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4313 if (delta == 0)
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4314 break;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
4315
67328
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4316 if (! NILP (prev))
16982
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4317 {
25254
518d62d71d21 (MINSIZE): Removed.
Gerd Moellmann <gerd@gnu.org>
parents: 25182
diff changeset
4318 int this_one = ((*sizefun) (prev)
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4319 - window_min_size (XWINDOW (prev),
66664
93a5a20be8f1 (Fenlarge_window): Rename SIDE to HORIZONTAL.
Richard M. Stallman <rms@gnu.org>
parents: 66657
diff changeset
4320 horiz_flag, 0, &fixed_p));
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4321 if (!fixed_p)
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4322 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4323 if (this_one > delta)
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4324 this_one = delta;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
4325
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4326 first_affected = prev;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
4327
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4328 (*setsizefun) (prev, (*sizefun) (prev) - this_one, 0);
28463
4591d285fb65 * window.c (CURBEG, CURSIZE): Don't overload lisp object lvalues
Ken Raeburn <raeburn@raeburn.org>
parents: 28417
diff changeset
4329 (*setsizefun) (window, XINT (*sizep) + this_one, 0);
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4330
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4331 delta -= this_one;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4332 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
4333
16982
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4334 prev = XWINDOW (prev)->prev;
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4335 }
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4336 }
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4337
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4338 xassert (delta == 0);
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4339
16982
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4340 /* Now recalculate the edge positions of all the windows affected,
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4341 based on the new sizes. */
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4342 first_unaffected = next;
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4343 prev = first_affected;
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4344 for (next = XWINDOW (prev)->next; ! EQ (next, first_unaffected);
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4345 prev = next, next = XWINDOW (next)->next)
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4346 {
28463
4591d285fb65 * window.c (CURBEG, CURSIZE): Don't overload lisp object lvalues
Ken Raeburn <raeburn@raeburn.org>
parents: 28417
diff changeset
4347 XSETINT (CURBEG (next), XINT (CURBEG (prev)) + (*sizefun) (prev));
16982
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4348 /* This does not change size of NEXT,
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4349 but it propagates the new top edge to its children */
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4350 (*setsizefun) (next, (*sizefun) (next), 0);
8516fb50f3e5 (change_window_height): Take size from multiple siblings,
Richard M. Stallman <rms@gnu.org>
parents: 16980
diff changeset
4351 }
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4352 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4353 else
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4354 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4355 register int delta1;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4356 register int opht = (*sizefun) (parent);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4357
28463
4591d285fb65 * window.c (CURBEG, CURSIZE): Don't overload lisp object lvalues
Ken Raeburn <raeburn@raeburn.org>
parents: 28417
diff changeset
4358 if (opht <= XINT (*sizep) + delta)
42816
3ba600a336b4 (enlarge_window): When exceeding size of parent,
Richard M. Stallman <rms@gnu.org>
parents: 42603
diff changeset
4359 {
3ba600a336b4 (enlarge_window): When exceeding size of parent,
Richard M. Stallman <rms@gnu.org>
parents: 42603
diff changeset
4360 /* If trying to grow this window to or beyond size of the parent,
3ba600a336b4 (enlarge_window): When exceeding size of parent,
Richard M. Stallman <rms@gnu.org>
parents: 42603
diff changeset
4361 just delete all the sibling windows. */
42862
ca273f84f170 (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
Richard M. Stallman <rms@gnu.org>
parents: 42816
diff changeset
4362 Lisp_Object start, tem, next;
ca273f84f170 (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
Richard M. Stallman <rms@gnu.org>
parents: 42816
diff changeset
4363
ca273f84f170 (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
Richard M. Stallman <rms@gnu.org>
parents: 42816
diff changeset
4364 start = XWINDOW (parent)->vchild;
ca273f84f170 (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
Richard M. Stallman <rms@gnu.org>
parents: 42816
diff changeset
4365 if (NILP (start))
ca273f84f170 (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
Richard M. Stallman <rms@gnu.org>
parents: 42816
diff changeset
4366 start = XWINDOW (parent)->hchild;
ca273f84f170 (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
Richard M. Stallman <rms@gnu.org>
parents: 42816
diff changeset
4367
ca273f84f170 (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
Richard M. Stallman <rms@gnu.org>
parents: 42816
diff changeset
4368 /* Delete any siblings that come after WINDOW. */
ca273f84f170 (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
Richard M. Stallman <rms@gnu.org>
parents: 42816
diff changeset
4369 tem = XWINDOW (window)->next;
42816
3ba600a336b4 (enlarge_window): When exceeding size of parent,
Richard M. Stallman <rms@gnu.org>
parents: 42603
diff changeset
4370 while (! NILP (tem))
3ba600a336b4 (enlarge_window): When exceeding size of parent,
Richard M. Stallman <rms@gnu.org>
parents: 42603
diff changeset
4371 {
3ba600a336b4 (enlarge_window): When exceeding size of parent,
Richard M. Stallman <rms@gnu.org>
parents: 42603
diff changeset
4372 next = XWINDOW (tem)->next;
42862
ca273f84f170 (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
Richard M. Stallman <rms@gnu.org>
parents: 42816
diff changeset
4373 delete_window (tem);
ca273f84f170 (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
Richard M. Stallman <rms@gnu.org>
parents: 42816
diff changeset
4374 tem = next;
ca273f84f170 (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
Richard M. Stallman <rms@gnu.org>
parents: 42816
diff changeset
4375 }
ca273f84f170 (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
Richard M. Stallman <rms@gnu.org>
parents: 42816
diff changeset
4376
ca273f84f170 (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
Richard M. Stallman <rms@gnu.org>
parents: 42816
diff changeset
4377 /* Delete any siblings that come after WINDOW.
ca273f84f170 (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
Richard M. Stallman <rms@gnu.org>
parents: 42816
diff changeset
4378 Note that if START is not WINDOW, then WINDOW still
ca273f84f170 (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
Richard M. Stallman <rms@gnu.org>
parents: 42816
diff changeset
4379 Fhas siblings, so WINDOW has not yet replaced its parent. */
ca273f84f170 (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
Richard M. Stallman <rms@gnu.org>
parents: 42816
diff changeset
4380 tem = start;
ca273f84f170 (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
Richard M. Stallman <rms@gnu.org>
parents: 42816
diff changeset
4381 while (! EQ (tem, window))
ca273f84f170 (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
Richard M. Stallman <rms@gnu.org>
parents: 42816
diff changeset
4382 {
ca273f84f170 (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
Richard M. Stallman <rms@gnu.org>
parents: 42816
diff changeset
4383 next = XWINDOW (tem)->next;
ca273f84f170 (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
Richard M. Stallman <rms@gnu.org>
parents: 42816
diff changeset
4384 delete_window (tem);
42816
3ba600a336b4 (enlarge_window): When exceeding size of parent,
Richard M. Stallman <rms@gnu.org>
parents: 42603
diff changeset
4385 tem = next;
3ba600a336b4 (enlarge_window): When exceeding size of parent,
Richard M. Stallman <rms@gnu.org>
parents: 42603
diff changeset
4386 }
3ba600a336b4 (enlarge_window): When exceeding size of parent,
Richard M. Stallman <rms@gnu.org>
parents: 42603
diff changeset
4387 }
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4388 else
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4389 {
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4390 /* Otherwise, make delta1 just right so that if we add
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4391 delta1 lines to this window and to the parent, and then
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4392 shrink the parent back to its original size, the new
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4393 proportional size of this window will increase by delta.
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4394
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4395 The function size_window will compute the new height h'
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4396 of the window from delta1 as:
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
4397
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4398 e = delta1/n
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4399 x = delta1 - delta1/n * n for the 1st resizable child
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4400 h' = h + e + x
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4401
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4402 where n is the number of children that can be resized.
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4403 We can ignore x by choosing a delta1 that is a multiple of
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4404 n. We want the height of this window to come out as
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
4405
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4406 h' = h + delta
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4407
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4408 So, delta1 must be
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
4409
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4410 h + e = h + delta
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4411 delta1/n = delta
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4412 delta1 = n * delta.
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4413
47973
b75515b80900 (window_loop): For GET_LRU_WINDOW and GET_LARGEST_WINDOW>,
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47865
diff changeset
4414 The number of children n equals the number of resizable
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4415 children of this window + 1 because we know window itself
63611
e674f801b65f Fix typo in comment.
Juanma Barranquero <lekktu@gmail.com>
parents: 63187
diff changeset
4416 is resizable (otherwise we would have signalled an error). */
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4417
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4418 struct window *w = XWINDOW (window);
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4419 Lisp_Object s;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4420 int n = 1;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4421
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4422 for (s = w->next; !NILP (s); s = XWINDOW (s)->next)
66664
93a5a20be8f1 (Fenlarge_window): Rename SIDE to HORIZONTAL.
Richard M. Stallman <rms@gnu.org>
parents: 66657
diff changeset
4423 if (!window_fixed_size_p (XWINDOW (s), horiz_flag, 0))
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4424 ++n;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4425 for (s = w->prev; !NILP (s); s = XWINDOW (s)->prev)
66664
93a5a20be8f1 (Fenlarge_window): Rename SIDE to HORIZONTAL.
Richard M. Stallman <rms@gnu.org>
parents: 66657
diff changeset
4426 if (!window_fixed_size_p (XWINDOW (s), horiz_flag, 0))
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4427 ++n;
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4428
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4429 delta1 = n * delta;
42816
3ba600a336b4 (enlarge_window): When exceeding size of parent,
Richard M. Stallman <rms@gnu.org>
parents: 42603
diff changeset
4430
3ba600a336b4 (enlarge_window): When exceeding size of parent,
Richard M. Stallman <rms@gnu.org>
parents: 42603
diff changeset
4431 /* Add delta1 lines or columns to this window, and to the parent,
3ba600a336b4 (enlarge_window): When exceeding size of parent,
Richard M. Stallman <rms@gnu.org>
parents: 42603
diff changeset
4432 keeping things consistent while not affecting siblings. */
3ba600a336b4 (enlarge_window): When exceeding size of parent,
Richard M. Stallman <rms@gnu.org>
parents: 42603
diff changeset
4433 XSETINT (CURSIZE (parent), opht + delta1);
3ba600a336b4 (enlarge_window): When exceeding size of parent,
Richard M. Stallman <rms@gnu.org>
parents: 42603
diff changeset
4434 (*setsizefun) (window, XINT (*sizep) + delta1, 0);
3ba600a336b4 (enlarge_window): When exceeding size of parent,
Richard M. Stallman <rms@gnu.org>
parents: 42603
diff changeset
4435
3ba600a336b4 (enlarge_window): When exceeding size of parent,
Richard M. Stallman <rms@gnu.org>
parents: 42603
diff changeset
4436 /* Squeeze out delta1 lines or columns from our parent,
3ba600a336b4 (enlarge_window): When exceeding size of parent,
Richard M. Stallman <rms@gnu.org>
parents: 42603
diff changeset
4437 shriking this window and siblings proportionately.
3ba600a336b4 (enlarge_window): When exceeding size of parent,
Richard M. Stallman <rms@gnu.org>
parents: 42603
diff changeset
4438 This brings parent back to correct size.
3ba600a336b4 (enlarge_window): When exceeding size of parent,
Richard M. Stallman <rms@gnu.org>
parents: 42603
diff changeset
4439 Delta1 was calculated so this makes this window the desired size,
3ba600a336b4 (enlarge_window): When exceeding size of parent,
Richard M. Stallman <rms@gnu.org>
parents: 42603
diff changeset
4440 taking it all out of the siblings. */
3ba600a336b4 (enlarge_window): When exceeding size of parent,
Richard M. Stallman <rms@gnu.org>
parents: 42603
diff changeset
4441 (*setsizefun) (parent, opht, 0);
3ba600a336b4 (enlarge_window): When exceeding size of parent,
Richard M. Stallman <rms@gnu.org>
parents: 42603
diff changeset
4442
25268
ae698a1c13a4 (Qfixed_window_size): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25255
diff changeset
4443 }
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4444 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4445
9324
ac6a5691607f (make_window, Fset_window_hscroll, Fset_window_start, set_window_height,
Karl Heuer <kwzh@gnu.org>
parents: 9282
diff changeset
4446 XSETFASTINT (p->last_modified, 0);
16208
e3a834653117 (Fset_window_start): Clear last_overlay_modified field.
Richard M. Stallman <rms@gnu.org>
parents: 16068
diff changeset
4447 XSETFASTINT (p->last_overlay_modified, 0);
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4448
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4449 /* Adjust glyph matrices. */
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4450 adjust_glyphs (XFRAME (WINDOW_FRAME (XWINDOW (window))));
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4451 }
25254
518d62d71d21 (MINSIZE): Removed.
Gerd Moellmann <gerd@gnu.org>
parents: 25182
diff changeset
4452
67156
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4453
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4454 /* Adjust the size of WINDOW by DELTA, moving only its trailing edge.
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4455 HORIZ_FLAG nonzero means adjust the width, moving the right edge.
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4456 zero means adjust the height, moving the bottom edge.
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4457
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4458 Following siblings of the selected window are resized to fulfill
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4459 the size request. If they become too small in the process, they
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4460 are not deleted; instead, we signal an error. */
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4461
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4462 static void
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4463 adjust_window_trailing_edge (window, delta, horiz_flag)
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4464 Lisp_Object window;
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4465 int delta, horiz_flag;
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4466 {
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4467 Lisp_Object parent, child;
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4468 struct window *p;
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4469 Lisp_Object old_config = Fcurrent_window_configuration (Qnil);
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4470 int delcount = window_deletion_count;
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4471
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4472 /* Check values of window_min_width and window_min_height for
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4473 validity. */
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4474 check_min_window_sizes ();
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4475
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4476 if (NILP (window))
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4477 window = Fselected_window ();
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4478
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4479 CHECK_WINDOW (window);
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4480
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4481 /* Give up if this window cannot be resized. */
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4482 if (window_fixed_size_p (XWINDOW (window), horiz_flag, 1))
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4483 error ("Window is not resizable");
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4484
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4485 while (1)
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4486 {
70081
7130f5a10a22 (adjust_window_trailing_edge): Correctly distinguish
Richard M. Stallman <rms@gnu.org>
parents: 70058
diff changeset
4487 Lisp_Object first_parallel = Qnil;
7130f5a10a22 (adjust_window_trailing_edge): Correctly distinguish
Richard M. Stallman <rms@gnu.org>
parents: 70058
diff changeset
4488
71339
0c8a94363573 (adjust_window_trailing_edge): Don't break out of the loop
Richard M. Stallman <rms@gnu.org>
parents: 71286
diff changeset
4489 if (NILP (window))
0c8a94363573 (adjust_window_trailing_edge): Don't break out of the loop
Richard M. Stallman <rms@gnu.org>
parents: 71286
diff changeset
4490 {
71396
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
4491 /* This happens if WINDOW on the previous iteration was
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
4492 at top level of the window tree. */
71339
0c8a94363573 (adjust_window_trailing_edge): Don't break out of the loop
Richard M. Stallman <rms@gnu.org>
parents: 71286
diff changeset
4493 Fset_window_configuration (old_config);
0c8a94363573 (adjust_window_trailing_edge): Don't break out of the loop
Richard M. Stallman <rms@gnu.org>
parents: 71286
diff changeset
4494 error ("Specified window edge is fixed");
0c8a94363573 (adjust_window_trailing_edge): Don't break out of the loop
Richard M. Stallman <rms@gnu.org>
parents: 71286
diff changeset
4495 }
0c8a94363573 (adjust_window_trailing_edge): Don't break out of the loop
Richard M. Stallman <rms@gnu.org>
parents: 71286
diff changeset
4496
67156
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4497 p = XWINDOW (window);
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4498 parent = p->parent;
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4499
70081
7130f5a10a22 (adjust_window_trailing_edge): Correctly distinguish
Richard M. Stallman <rms@gnu.org>
parents: 70058
diff changeset
4500 /* See if this level has windows in parallel in the specified
7130f5a10a22 (adjust_window_trailing_edge): Correctly distinguish
Richard M. Stallman <rms@gnu.org>
parents: 70058
diff changeset
4501 direction. If so, set FIRST_PARALLEL to the first one. */
7130f5a10a22 (adjust_window_trailing_edge): Correctly distinguish
Richard M. Stallman <rms@gnu.org>
parents: 70058
diff changeset
4502 if (horiz_flag)
7130f5a10a22 (adjust_window_trailing_edge): Correctly distinguish
Richard M. Stallman <rms@gnu.org>
parents: 70058
diff changeset
4503 {
7130f5a10a22 (adjust_window_trailing_edge): Correctly distinguish
Richard M. Stallman <rms@gnu.org>
parents: 70058
diff changeset
4504 if (! NILP (parent) && !NILP (XWINDOW (parent)->vchild))
7130f5a10a22 (adjust_window_trailing_edge): Correctly distinguish
Richard M. Stallman <rms@gnu.org>
parents: 70058
diff changeset
4505 first_parallel = XWINDOW (parent)->vchild;
71396
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
4506 else if (NILP (parent) && !NILP (p->next))
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
4507 {
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
4508 /* Handle the vertical chain of main window and minibuffer
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
4509 which has no parent. */
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
4510 first_parallel = window;
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
4511 while (! NILP (XWINDOW (first_parallel)->prev))
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
4512 first_parallel = XWINDOW (first_parallel)->prev;
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
4513 }
70081
7130f5a10a22 (adjust_window_trailing_edge): Correctly distinguish
Richard M. Stallman <rms@gnu.org>
parents: 70058
diff changeset
4514 }
7130f5a10a22 (adjust_window_trailing_edge): Correctly distinguish
Richard M. Stallman <rms@gnu.org>
parents: 70058
diff changeset
4515 else
7130f5a10a22 (adjust_window_trailing_edge): Correctly distinguish
Richard M. Stallman <rms@gnu.org>
parents: 70058
diff changeset
4516 {
7130f5a10a22 (adjust_window_trailing_edge): Correctly distinguish
Richard M. Stallman <rms@gnu.org>
parents: 70058
diff changeset
4517 if (! NILP (parent) && !NILP (XWINDOW (parent)->hchild))
7130f5a10a22 (adjust_window_trailing_edge): Correctly distinguish
Richard M. Stallman <rms@gnu.org>
parents: 70058
diff changeset
4518 first_parallel = XWINDOW (parent)->hchild;
7130f5a10a22 (adjust_window_trailing_edge): Correctly distinguish
Richard M. Stallman <rms@gnu.org>
parents: 70058
diff changeset
4519 }
7130f5a10a22 (adjust_window_trailing_edge): Correctly distinguish
Richard M. Stallman <rms@gnu.org>
parents: 70058
diff changeset
4520
71339
0c8a94363573 (adjust_window_trailing_edge): Don't break out of the loop
Richard M. Stallman <rms@gnu.org>
parents: 71286
diff changeset
4521 /* If this level's succession is in the desired dimension,
71396
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
4522 and this window is the last one, and there is no higher level,
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
4523 its trailing edge is fixed. */
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
4524 if (NILP (XWINDOW (window)->next) && NILP (first_parallel)
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
4525 && NILP (parent))
71339
0c8a94363573 (adjust_window_trailing_edge): Don't break out of the loop
Richard M. Stallman <rms@gnu.org>
parents: 71286
diff changeset
4526 {
0c8a94363573 (adjust_window_trailing_edge): Don't break out of the loop
Richard M. Stallman <rms@gnu.org>
parents: 71286
diff changeset
4527 Fset_window_configuration (old_config);
0c8a94363573 (adjust_window_trailing_edge): Don't break out of the loop
Richard M. Stallman <rms@gnu.org>
parents: 71286
diff changeset
4528 error ("Specified window edge is fixed");
0c8a94363573 (adjust_window_trailing_edge): Don't break out of the loop
Richard M. Stallman <rms@gnu.org>
parents: 71286
diff changeset
4529 }
0c8a94363573 (adjust_window_trailing_edge): Don't break out of the loop
Richard M. Stallman <rms@gnu.org>
parents: 71286
diff changeset
4530
67156
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4531 /* Don't make this window too small. */
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4532 if (XINT (CURSIZE (window)) + delta
78415
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
4533 < window_min_size_2 (XWINDOW (window), horiz_flag))
67156
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4534 {
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4535 Fset_window_configuration (old_config);
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4536 error ("Cannot adjust window size as specified");
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4537 }
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4538
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4539 /* Clear out some redisplay caches. */
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4540 XSETFASTINT (p->last_modified, 0);
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4541 XSETFASTINT (p->last_overlay_modified, 0);
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4542
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4543 /* Adjust this window's edge. */
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4544 XSETINT (CURSIZE (window),
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4545 XINT (CURSIZE (window)) + delta);
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4546
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4547 /* If this window has following siblings in the desired dimension,
70081
7130f5a10a22 (adjust_window_trailing_edge): Correctly distinguish
Richard M. Stallman <rms@gnu.org>
parents: 70058
diff changeset
4548 make them smaller, and exit the loop.
7130f5a10a22 (adjust_window_trailing_edge): Correctly distinguish
Richard M. Stallman <rms@gnu.org>
parents: 70058
diff changeset
4549
67156
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4550 (If we reach the top of the tree and can never do this,
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4551 we will fail and report an error, above.) */
70081
7130f5a10a22 (adjust_window_trailing_edge): Correctly distinguish
Richard M. Stallman <rms@gnu.org>
parents: 70058
diff changeset
4552 if (NILP (first_parallel))
67156
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4553 {
71339
0c8a94363573 (adjust_window_trailing_edge): Don't break out of the loop
Richard M. Stallman <rms@gnu.org>
parents: 71286
diff changeset
4554 if (!NILP (p->next))
67156
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4555 {
68724
fb5a31085a6f * window.c (adjust_window_trailing_edge): Check that shrinking
Jan Djärv <jan.h.d@swipnet.se>
parents: 68651
diff changeset
4556 /* This may happen for the minibuffer. In that case
fb5a31085a6f * window.c (adjust_window_trailing_edge): Check that shrinking
Jan Djärv <jan.h.d@swipnet.se>
parents: 68651
diff changeset
4557 the window_deletion_count check below does not work. */
68971
f8b092ff513c (Fset_window_scroll_bars): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents: 68724
diff changeset
4558 if (XINT (CURSIZE (p->next)) - delta <= 0)
68724
fb5a31085a6f * window.c (adjust_window_trailing_edge): Check that shrinking
Jan Djärv <jan.h.d@swipnet.se>
parents: 68651
diff changeset
4559 {
fb5a31085a6f * window.c (adjust_window_trailing_edge): Check that shrinking
Jan Djärv <jan.h.d@swipnet.se>
parents: 68651
diff changeset
4560 Fset_window_configuration (old_config);
fb5a31085a6f * window.c (adjust_window_trailing_edge): Check that shrinking
Jan Djärv <jan.h.d@swipnet.se>
parents: 68651
diff changeset
4561 error ("Cannot adjust window size as specified");
fb5a31085a6f * window.c (adjust_window_trailing_edge): Check that shrinking
Jan Djärv <jan.h.d@swipnet.se>
parents: 68651
diff changeset
4562 }
fb5a31085a6f * window.c (adjust_window_trailing_edge): Check that shrinking
Jan Djärv <jan.h.d@swipnet.se>
parents: 68651
diff changeset
4563
67156
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4564 XSETINT (CURBEG (p->next),
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4565 XINT (CURBEG (p->next)) + delta);
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4566 size_window (p->next, XINT (CURSIZE (p->next)) - delta,
71396
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
4567 horiz_flag, 0, 1, 0);
67156
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4568 break;
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4569 }
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4570 }
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4571 else
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4572 /* Here we have a chain of parallel siblings, in the other dimension.
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4573 Change the size of the other siblings. */
70081
7130f5a10a22 (adjust_window_trailing_edge): Correctly distinguish
Richard M. Stallman <rms@gnu.org>
parents: 70058
diff changeset
4574 for (child = first_parallel;
67156
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4575 ! NILP (child);
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4576 child = XWINDOW (child)->next)
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4577 if (! EQ (child, window))
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4578 size_window (child, XINT (CURSIZE (child)) + delta,
71396
58383949ec48 (size_window): New arg FIRST_ONLY. All callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 71339
diff changeset
4579 horiz_flag, 0, 0, 1);
67156
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4580
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4581 window = parent;
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4582 }
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4583
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4584 /* If we made a window so small it got deleted,
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4585 we failed. Report failure. */
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4586 if (delcount != window_deletion_count)
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4587 {
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4588 Fset_window_configuration (old_config);
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4589 error ("Cannot adjust window size as specified");
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4590 }
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4591
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4592 /* Adjust glyph matrices. */
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4593 adjust_glyphs (XFRAME (WINDOW_FRAME (XWINDOW (window))));
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4594 }
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4595
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4596 #undef CURBEG
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4597 #undef CURSIZE
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4598
67156
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4599 DEFUN ("adjust-window-trailing-edge", Fadjust_window_trailing_edge,
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4600 Sadjust_window_trailing_edge, 3, 3, 0,
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4601 doc: /* Adjust the bottom or right edge of WINDOW by DELTA.
67328
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4602 If HORIZONTAL is non-nil, that means adjust the width, moving the right edge.
67156
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4603 Otherwise, adjust the height, moving the bottom edge.
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4604
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4605 Following siblings of the selected window are resized to fulfill
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4606 the size request. If they become too small in the process, they
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4607 are not deleted; instead, we signal an error. */)
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4608 (window, delta, horizontal)
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4609 Lisp_Object window, delta, horizontal;
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4610 {
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4611 CHECK_NUMBER (delta);
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4612 adjust_window_trailing_edge (window, XINT (delta), !NILP (horizontal));
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4613
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4614 if (! NILP (Vwindow_configuration_change_hook))
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4615 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4616
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4617 return Qnil;
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4618 }
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
4619
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4620
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4621
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4622 /***********************************************************************
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4623 Resizing Mini-Windows
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4624 ***********************************************************************/
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4625
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4626 static void shrink_window_lowest_first P_ ((struct window *, int));
26046
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4627
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4628 enum save_restore_action
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4629 {
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4630 CHECK_ORIG_SIZES,
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4631 SAVE_ORIG_SIZES,
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4632 RESTORE_ORIG_SIZES
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4633 };
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4634
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
4635 static int save_restore_orig_size P_ ((struct window *,
26046
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4636 enum save_restore_action));
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4637
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4638 /* Shrink windows rooted in window W to HEIGHT. Take the space needed
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4639 from lowest windows first. */
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4640
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4641 static void
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4642 shrink_window_lowest_first (w, height)
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4643 struct window *w;
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4644 int height;
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4645 {
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4646 struct window *c;
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4647 Lisp_Object child;
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4648 int old_height;
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4649
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4650 xassert (!MINI_WINDOW_P (w));
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4651
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4652 /* Set redisplay hints. */
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4653 XSETFASTINT (w->last_modified, 0);
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4654 XSETFASTINT (w->last_overlay_modified, 0);
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4655 windows_or_buffers_changed++;
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4656 FRAME_WINDOW_SIZES_CHANGED (XFRAME (WINDOW_FRAME (w))) = 1;
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4657
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4658 old_height = XFASTINT (w->total_lines);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4659 XSETFASTINT (w->total_lines, height);
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4660
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4661 if (!NILP (w->hchild))
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4662 {
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4663 for (child = w->hchild; !NILP (child); child = c->next)
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4664 {
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4665 c = XWINDOW (child);
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4666 c->top_line = w->top_line;
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4667 shrink_window_lowest_first (c, height);
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4668 }
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4669 }
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4670 else if (!NILP (w->vchild))
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4671 {
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4672 Lisp_Object last_child;
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4673 int delta = old_height - height;
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4674 int last_top;
31829
43566b0aec59 Avoid some more compiler warnings.
Gerd Moellmann <gerd@gnu.org>
parents: 31393
diff changeset
4675
43566b0aec59 Avoid some more compiler warnings.
Gerd Moellmann <gerd@gnu.org>
parents: 31393
diff changeset
4676 last_child = Qnil;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
4677
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4678 /* Find the last child. We are taking space from lowest windows
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4679 first, so we iterate over children from the last child
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4680 backwards. */
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4681 for (child = w->vchild; !NILP (child); child = XWINDOW (child)->next)
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4682 last_child = child;
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4683
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4684 /* Assign new heights. We leave only MIN_SAFE_WINDOW_HEIGHT. */
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4685 for (child = last_child; delta && !NILP (child); child = c->prev)
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4686 {
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4687 int this_one;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
4688
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4689 c = XWINDOW (child);
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4690 this_one = XFASTINT (c->total_lines) - MIN_SAFE_WINDOW_HEIGHT;
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4691
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4692 if (this_one > delta)
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4693 this_one = delta;
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4694
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4695 shrink_window_lowest_first (c, XFASTINT (c->total_lines) - this_one);
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4696 delta -= this_one;
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4697 }
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4698
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4699 /* Compute new positions. */
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4700 last_top = XINT (w->top_line);
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4701 for (child = w->vchild; !NILP (child); child = c->next)
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4702 {
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4703 c = XWINDOW (child);
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4704 c->top_line = make_number (last_top);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4705 shrink_window_lowest_first (c, XFASTINT (c->total_lines));
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4706 last_top += XFASTINT (c->total_lines);
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4707 }
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4708 }
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4709 }
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4710
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4711
26046
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4712 /* Save, restore, or check positions and sizes in the window tree
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4713 rooted at W. ACTION says what to do.
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4714
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4715 If ACTION is CHECK_ORIG_SIZES, check if orig_top_line and
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4716 orig_total_lines members are valid for all windows in the window
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4717 tree. Value is non-zero if they are valid.
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
4718
26046
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4719 If ACTION is SAVE_ORIG_SIZES, save members top and height in
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4720 orig_top_line and orig_total_lines for all windows in the tree.
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4721
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4722 If ACTION is RESTORE_ORIG_SIZES, restore top and height from values
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4723 stored in orig_top_line and orig_total_lines for all windows. */
26046
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4724
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4725 static int
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4726 save_restore_orig_size (w, action)
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4727 struct window *w;
26046
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4728 enum save_restore_action action;
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4729 {
26046
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4730 int success_p = 1;
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4731
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4732 while (w)
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4733 {
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4734 if (!NILP (w->hchild))
26046
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4735 {
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4736 if (!save_restore_orig_size (XWINDOW (w->hchild), action))
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4737 success_p = 0;
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4738 }
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4739 else if (!NILP (w->vchild))
26046
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4740 {
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4741 if (!save_restore_orig_size (XWINDOW (w->vchild), action))
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4742 success_p = 0;
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4743 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
4744
26046
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4745 switch (action)
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4746 {
26046
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4747 case CHECK_ORIG_SIZES:
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4748 if (!INTEGERP (w->orig_top_line) || !INTEGERP (w->orig_total_lines))
26046
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4749 return 0;
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4750 break;
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4751
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4752 case SAVE_ORIG_SIZES:
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4753 w->orig_top_line = w->top_line;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4754 w->orig_total_lines = w->total_lines;
26046
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4755 XSETFASTINT (w->last_modified, 0);
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4756 XSETFASTINT (w->last_overlay_modified, 0);
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4757 break;
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4758
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4759 case RESTORE_ORIG_SIZES:
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4760 xassert (INTEGERP (w->orig_top_line) && INTEGERP (w->orig_total_lines));
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4761 w->top_line = w->orig_top_line;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4762 w->total_lines = w->orig_total_lines;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4763 w->orig_total_lines = w->orig_top_line = Qnil;
26046
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4764 XSETFASTINT (w->last_modified, 0);
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4765 XSETFASTINT (w->last_overlay_modified, 0);
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4766 break;
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4767
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4768 default:
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4769 abort ();
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4770 }
26046
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4771
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4772 w = NILP (w->next) ? NULL : XWINDOW (w->next);
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4773 }
26046
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4774
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4775 return success_p;
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4776 }
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4777
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4778
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4779 /* Grow mini-window W by DELTA lines, DELTA >= 0, or as much as we can
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4780 without deleting other windows. */
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4781
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4782 void
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4783 grow_mini_window (w, delta)
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4784 struct window *w;
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4785 int delta;
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4786 {
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4787 struct frame *f = XFRAME (w->frame);
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4788 struct window *root;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
4789
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4790 xassert (MINI_WINDOW_P (w));
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4791 xassert (delta >= 0);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
4792
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4793 /* Check values of window_min_width and window_min_height for
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4794 validity. */
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4795 check_min_window_sizes ();
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4796
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4797 /* Compute how much we can enlarge the mini-window without deleting
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4798 other windows. */
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4799 root = XWINDOW (FRAME_ROOT_WINDOW (f));
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4800 if (delta)
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4801 {
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4802 int min_height = window_min_size (root, 0, 0, 0);
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4803 if (XFASTINT (root->total_lines) - delta < min_height)
40619
4e8c66bd2abb (grow_mini_window): Fix typo in comment.
Pavel Janík <Pavel@Janik.cz>
parents: 40543
diff changeset
4804 /* Note that the root window may already be smaller than
40543
9461cfa8d18d (grow_mini_window): Handle case that the root
Gerd Moellmann <gerd@gnu.org>
parents: 40459
diff changeset
4805 min_height. */
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4806 delta = max (0, XFASTINT (root->total_lines) - min_height);
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4807 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
4808
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4809 if (delta)
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4810 {
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4811 /* Save original window sizes and positions, if not already done. */
26046
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4812 if (!save_restore_orig_size (root, CHECK_ORIG_SIZES))
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4813 save_restore_orig_size (root, SAVE_ORIG_SIZES);
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4814
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4815 /* Shrink other windows. */
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4816 shrink_window_lowest_first (root, XFASTINT (root->total_lines) - delta);
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4817
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4818 /* Grow the mini-window. */
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4819 w->top_line = make_number (XFASTINT (root->top_line) + XFASTINT (root->total_lines));
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4820 w->total_lines = make_number (XFASTINT (w->total_lines) + delta);
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4821 XSETFASTINT (w->last_modified, 0);
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4822 XSETFASTINT (w->last_overlay_modified, 0);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
4823
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4824 adjust_glyphs (f);
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4825 }
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4826 }
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4827
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4828
25797
0d73a1e7b7f2 (enlarge_window): Add window parameter instead of using
Gerd Moellmann <gerd@gnu.org>
parents: 25792
diff changeset
4829 /* Shrink mini-window W. If there is recorded info about window sizes
0d73a1e7b7f2 (enlarge_window): Add window parameter instead of using
Gerd Moellmann <gerd@gnu.org>
parents: 25792
diff changeset
4830 before a call to grow_mini_window, restore recorded window sizes.
0d73a1e7b7f2 (enlarge_window): Add window parameter instead of using
Gerd Moellmann <gerd@gnu.org>
parents: 25792
diff changeset
4831 Otherwise, if the mini-window is higher than 1 line, resize it to 1
0d73a1e7b7f2 (enlarge_window): Add window parameter instead of using
Gerd Moellmann <gerd@gnu.org>
parents: 25792
diff changeset
4832 line. */
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4833
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4834 void
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4835 shrink_mini_window (w)
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4836 struct window *w;
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4837 {
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4838 struct frame *f = XFRAME (w->frame);
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4839 struct window *root = XWINDOW (FRAME_ROOT_WINDOW (f));
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4840
26046
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4841 if (save_restore_orig_size (root, CHECK_ORIG_SIZES))
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4842 {
26046
9204dfa34c1b (enum save_restore_action): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25797
diff changeset
4843 save_restore_orig_size (root, RESTORE_ORIG_SIZES);
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4844 adjust_glyphs (f);
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4845 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4846 windows_or_buffers_changed = 1;
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4847 }
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4848 else if (XFASTINT (w->total_lines) > 1)
25797
0d73a1e7b7f2 (enlarge_window): Add window parameter instead of using
Gerd Moellmann <gerd@gnu.org>
parents: 25792
diff changeset
4849 {
35621
5f154b8fc2bd (size_window): Set the window's orig_top to nil when
Gerd Moellmann <gerd@gnu.org>
parents: 35483
diff changeset
4850 /* Distribute the additional lines of the mini-window
5f154b8fc2bd (size_window): Set the window's orig_top to nil when
Gerd Moellmann <gerd@gnu.org>
parents: 35483
diff changeset
4851 among the other windows. */
25797
0d73a1e7b7f2 (enlarge_window): Add window parameter instead of using
Gerd Moellmann <gerd@gnu.org>
parents: 25792
diff changeset
4852 Lisp_Object window;
0d73a1e7b7f2 (enlarge_window): Add window parameter instead of using
Gerd Moellmann <gerd@gnu.org>
parents: 25792
diff changeset
4853 XSETWINDOW (window, w);
67328
97a5b7b69235 (enlarge_window): Eliminate arg preserve_before.
Richard M. Stallman <rms@gnu.org>
parents: 67234
diff changeset
4854 enlarge_window (window, 1 - XFASTINT (w->total_lines), 0);
25797
0d73a1e7b7f2 (enlarge_window): Add window parameter instead of using
Gerd Moellmann <gerd@gnu.org>
parents: 25792
diff changeset
4855 }
25792
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4856 }
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4857
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4858
80e84cb91f1e (window_min_size): Add parameter ignore_fixed_p.
Gerd Moellmann <gerd@gnu.org>
parents: 25739
diff changeset
4859
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4860 /* Mark window cursors off for all windows in the window tree rooted
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4861 at W by setting their phys_cursor_on_p flag to zero. Called from
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4862 xterm.c, e.g. when a frame is cleared and thereby all cursors on
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4863 the frame are cleared. */
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4864
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4865 void
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4866 mark_window_cursors_off (w)
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4867 struct window *w;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4868 {
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4869 while (w)
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4870 {
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4871 if (!NILP (w->hchild))
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4872 mark_window_cursors_off (XWINDOW (w->hchild));
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4873 else if (!NILP (w->vchild))
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4874 mark_window_cursors_off (XWINDOW (w->vchild));
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4875 else
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4876 w->phys_cursor_on_p = 0;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4877
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4878 w = NILP (w->next) ? 0 : XWINDOW (w->next);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4879 }
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4880 }
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4881
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4882
37270
9bf32a648127 (window_internal_height): Return 1 less if the
Gerd Moellmann <gerd@gnu.org>
parents: 36809
diff changeset
4883 /* Return number of lines of text (not counting mode lines) in W. */
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4884
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4885 int
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4886 window_internal_height (w)
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4887 struct window *w;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4888 {
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4889 int ht = XFASTINT (w->total_lines);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4890
37270
9bf32a648127 (window_internal_height): Return 1 less if the
Gerd Moellmann <gerd@gnu.org>
parents: 36809
diff changeset
4891 if (!MINI_WINDOW_P (w))
9bf32a648127 (window_internal_height): Return 1 less if the
Gerd Moellmann <gerd@gnu.org>
parents: 36809
diff changeset
4892 {
9bf32a648127 (window_internal_height): Return 1 less if the
Gerd Moellmann <gerd@gnu.org>
parents: 36809
diff changeset
4893 if (!NILP (w->parent)
9bf32a648127 (window_internal_height): Return 1 less if the
Gerd Moellmann <gerd@gnu.org>
parents: 36809
diff changeset
4894 || !NILP (w->vchild)
9bf32a648127 (window_internal_height): Return 1 less if the
Gerd Moellmann <gerd@gnu.org>
parents: 36809
diff changeset
4895 || !NILP (w->hchild)
9bf32a648127 (window_internal_height): Return 1 less if the
Gerd Moellmann <gerd@gnu.org>
parents: 36809
diff changeset
4896 || !NILP (w->next)
9bf32a648127 (window_internal_height): Return 1 less if the
Gerd Moellmann <gerd@gnu.org>
parents: 36809
diff changeset
4897 || !NILP (w->prev)
9bf32a648127 (window_internal_height): Return 1 less if the
Gerd Moellmann <gerd@gnu.org>
parents: 36809
diff changeset
4898 || WINDOW_WANTS_MODELINE_P (w))
9bf32a648127 (window_internal_height): Return 1 less if the
Gerd Moellmann <gerd@gnu.org>
parents: 36809
diff changeset
4899 --ht;
9bf32a648127 (window_internal_height): Return 1 less if the
Gerd Moellmann <gerd@gnu.org>
parents: 36809
diff changeset
4900
9bf32a648127 (window_internal_height): Return 1 less if the
Gerd Moellmann <gerd@gnu.org>
parents: 36809
diff changeset
4901 if (WINDOW_WANTS_HEADER_LINE_P (w))
9bf32a648127 (window_internal_height): Return 1 less if the
Gerd Moellmann <gerd@gnu.org>
parents: 36809
diff changeset
4902 --ht;
9bf32a648127 (window_internal_height): Return 1 less if the
Gerd Moellmann <gerd@gnu.org>
parents: 36809
diff changeset
4903 }
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4904
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4905 return ht;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4906 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4907
1783
8e7932110418 * window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents: 1716
diff changeset
4908
8e7932110418 * window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents: 1716
diff changeset
4909 /* Return the number of columns in W.
1994
73ce9dd21093 Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents: 1931
diff changeset
4910 Don't count columns occupied by scroll bars or the vertical bar
1783
8e7932110418 * window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents: 1716
diff changeset
4911 separating W from the sibling to its right. */
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4912
1783
8e7932110418 * window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents: 1716
diff changeset
4913 int
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4914 window_box_text_cols (w)
1783
8e7932110418 * window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents: 1716
diff changeset
4915 struct window *w;
8e7932110418 * window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents: 1716
diff changeset
4916 {
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4917 struct frame *f = XFRAME (WINDOW_FRAME (w));
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4918 int width = XINT (w->total_cols);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4919
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4920 if (WINDOW_HAS_VERTICAL_SCROLL_BAR (w))
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4921 /* Scroll bars occupy a few columns. */
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4922 width -= WINDOW_CONFIG_SCROLL_BAR_COLS (w);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4923 else if (!FRAME_WINDOW_P (f)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4924 && !WINDOW_RIGHTMOST_P (w) && !WINDOW_FULL_WIDTH_P (w))
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4925 /* The column of `|' characters separating side-by-side windows
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4926 occupies one column only. */
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4927 width -= 1;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4928
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4929 if (FRAME_WINDOW_P (f))
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4930 /* On window-systems, fringes and display margins cannot be
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4931 used for normal text. */
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4932 width -= (WINDOW_FRINGE_COLS (w)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4933 + WINDOW_LEFT_MARGIN_COLS (w)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
4934 + WINDOW_RIGHT_MARGIN_COLS (w));
16297
701db778b7a4 (Fwindow_edges): Use new WINDOW_RIGHT_EDGE macro.
Richard M. Stallman <rms@gnu.org>
parents: 16208
diff changeset
4935
701db778b7a4 (Fwindow_edges): Use new WINDOW_RIGHT_EDGE macro.
Richard M. Stallman <rms@gnu.org>
parents: 16208
diff changeset
4936 return width;
1783
8e7932110418 * window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents: 1716
diff changeset
4937 }
8e7932110418 * window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents: 1716
diff changeset
4938
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4939
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4940 /************************************************************************
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4941 Window Scrolling
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4942 ***********************************************************************/
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4943
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4944 /* Scroll contents of window WINDOW up. If WHOLE is non-zero, scroll
37307
f028d889de06 (window_scroll): Change the meaning of N to mean
Gerd Moellmann <gerd@gnu.org>
parents: 37305
diff changeset
4945 N screen-fulls, which is defined as the height of the window minus
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4946 next_screen_context_lines. If WHOLE is zero, scroll up N lines
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4947 instead. Negative values of N mean scroll down. NOERROR non-zero
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4948 means don't signal an error if we try to move over BEGV or ZV,
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4949 respectively. */
16751
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
4950
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
4951 static void
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
4952 window_scroll (window, n, whole, noerror)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4953 Lisp_Object window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4954 int n;
16751
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
4955 int whole;
522
bacdab90fa8b *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 485
diff changeset
4956 int noerror;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4957 {
47865
22b1643144e9 (window_scroll): Set immediate_quit.
Richard M. Stallman <rms@gnu.org>
parents: 47567
diff changeset
4958 immediate_quit = 1;
22b1643144e9 (window_scroll): Set immediate_quit.
Richard M. Stallman <rms@gnu.org>
parents: 47567
diff changeset
4959
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4960 /* If we must, use the pixel-based version which is much slower than
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4961 the line-based one but can handle varying line heights. */
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4962 if (FRAME_WINDOW_P (XFRAME (XWINDOW (window)->frame)))
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4963 window_scroll_pixel_based (window, n, whole, noerror);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4964 else
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4965 window_scroll_line_based (window, n, whole, noerror);
47865
22b1643144e9 (window_scroll): Set immediate_quit.
Richard M. Stallman <rms@gnu.org>
parents: 47567
diff changeset
4966
22b1643144e9 (window_scroll): Set immediate_quit.
Richard M. Stallman <rms@gnu.org>
parents: 47567
diff changeset
4967 immediate_quit = 0;
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4968 }
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4969
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4970
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4971 /* Implementation of window_scroll that works based on pixel line
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4972 heights. See the comment of window_scroll for parameter
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4973 descriptions. */
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4974
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4975 static void
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4976 window_scroll_pixel_based (window, n, whole, noerror)
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4977 Lisp_Object window;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4978 int n;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4979 int whole;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4980 int noerror;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4981 {
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4982 struct it it;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4983 struct window *w = XWINDOW (window);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4984 struct text_pos start;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4985 int this_scroll_margin;
34381
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
4986 /* True if we fiddled the window vscroll field without really scrolling. */
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
4987 int vscrolled = 0;
72663
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
4988 int x, y, rtop, rbot, rowh, vpos;
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4989
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4990 SET_TEXT_POS_FROM_MARKER (start, w->start);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
4991
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4992 /* If PT is not visible in WINDOW, move back one half of
38830
a6f5dfd3e5f4 (window_scroll_pixel_based): Don't recenter if
Gerd Moellmann <gerd@gnu.org>
parents: 38722
diff changeset
4993 the screen. Allow PT to be partially visible, otherwise
a6f5dfd3e5f4 (window_scroll_pixel_based): Don't recenter if
Gerd Moellmann <gerd@gnu.org>
parents: 38722
diff changeset
4994 something like (scroll-down 1) with PT in the line before
a6f5dfd3e5f4 (window_scroll_pixel_based): Don't recenter if
Gerd Moellmann <gerd@gnu.org>
parents: 38722
diff changeset
4995 the partially visible one would recenter. */
72663
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
4996
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
4997 if (!pos_visible_p (w, PT, &x, &y, &rtop, &rbot, &rowh, &vpos))
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4998 {
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
4999 /* Move backward half the height of the window. Performance note:
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5000 vmotion used here is about 10% faster, but would give wrong
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5001 results for variable height lines. */
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5002 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5003 it.current_y = it.last_visible_y;
58175
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5004 move_it_vertically_backward (&it, window_box_height (w) / 2);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
5005
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5006 /* The function move_iterator_vertically may move over more than
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5007 the specified y-distance. If it->w is small, e.g. a
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5008 mini-buffer window, we may end up in front of the window's
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5009 display area. This is the case when Start displaying at the
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5010 start of the line containing PT in this case. */
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5011 if (it.current_y <= 0)
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5012 {
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5013 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
58175
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5014 move_it_vertically_backward (&it, 0);
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5015 it.current_y = 0;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5016 }
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5017
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5018 start = it.current.pos;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5019 }
59677
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
5020 else if (auto_window_vscroll_p)
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
5021 {
72663
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5022 if (rtop || rbot) /* partially visible */
59677
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
5023 {
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
5024 int px;
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
5025 int dy = WINDOW_FRAME_LINE_HEIGHT (w);
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
5026 if (whole)
59717
351ffb20ab9f (window_scroll_pixel_based): Fix scrolling in the wrong
Kim F. Storm <storm@cua.dk>
parents: 59700
diff changeset
5027 dy = max ((window_box_height (w)
351ffb20ab9f (window_scroll_pixel_based): Fix scrolling in the wrong
Kim F. Storm <storm@cua.dk>
parents: 59700
diff changeset
5028 - next_screen_context_lines * dy),
351ffb20ab9f (window_scroll_pixel_based): Fix scrolling in the wrong
Kim F. Storm <storm@cua.dk>
parents: 59700
diff changeset
5029 dy);
59677
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
5030 dy *= n;
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
5031
72663
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5032 if (n < 0)
59677
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
5033 {
72663
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5034 /* Only vscroll backwards if already vscrolled forwards. */
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5035 if (w->vscroll < 0 && rtop > 0)
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5036 {
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5037 px = max (0, -w->vscroll - min (rtop, -dy));
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5038 Fset_window_vscroll (window, make_number (px), Qt);
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5039 return;
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5040 }
59677
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
5041 }
72663
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5042 if (n > 0)
59677
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
5043 {
72663
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5044 /* Do vscroll if already vscrolled or only display line. */
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5045 if (rbot > 0 && (w->vscroll < 0 || vpos == 0))
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5046 {
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5047 px = max (0, -w->vscroll + min (rbot, dy));
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5048 Fset_window_vscroll (window, make_number (px), Qt);
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5049 return;
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5050 }
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5051
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5052 /* Maybe modify window start instead of scrolling. */
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5053 if (rbot > 0 || w->vscroll < 0)
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5054 {
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5055 int spos;
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5056
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5057 Fset_window_vscroll (window, make_number (0), Qt);
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5058 /* If there are other text lines above the current row,
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5059 move window start to current row. Else to next row. */
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5060 if (rbot > 0)
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5061 spos = XINT (Fline_beginning_position (Qnil));
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5062 else
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5063 spos = min (XINT (Fline_end_position (Qnil)) + 1, ZV);
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5064 set_marker_restricted (w->start, make_number (spos),
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5065 w->buffer);
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5066 w->start_at_line_beg = Qt;
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5067 w->update_mode_line = Qt;
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5068 XSETFASTINT (w->last_modified, 0);
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5069 XSETFASTINT (w->last_overlay_modified, 0);
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5070 /* Set force_start so that redisplay_window will run the
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5071 window-scroll-functions. */
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5072 w->force_start = Qt;
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5073 return;
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5074 }
59677
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
5075 }
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
5076 }
72663
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5077 /* Cancel previous vscroll. */
59677
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
5078 Fset_window_vscroll (window, make_number (0), Qt);
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
5079 }
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5080
58083
49b5dabf0ccc Fix commentary.
Kim F. Storm <storm@cua.dk>
parents: 57898
diff changeset
5081 /* If scroll_preserve_screen_position is non-nil, we try to set
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5082 point in the same window line as it is now, so get that line. */
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5083 if (!NILP (Vscroll_preserve_screen_position))
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5084 {
69209
b9ad41f39bf6 * xselect.c (x_catch_errors_unwind): New function.
Chong Yidong <cyd@stupidchicken.com>
parents: 69104
diff changeset
5085 /* We preserve the goal pixel coordinate across consecutive
b9ad41f39bf6 * xselect.c (x_catch_errors_unwind): New function.
Chong Yidong <cyd@stupidchicken.com>
parents: 69104
diff changeset
5086 calls to scroll-up or scroll-down. This avoids the
b9ad41f39bf6 * xselect.c (x_catch_errors_unwind): New function.
Chong Yidong <cyd@stupidchicken.com>
parents: 69104
diff changeset
5087 possibility of point becoming "stuck" on a tall line when
b9ad41f39bf6 * xselect.c (x_catch_errors_unwind): New function.
Chong Yidong <cyd@stupidchicken.com>
parents: 69104
diff changeset
5088 scrolling by one line. */
69408
aa89c5390b12 Rename preserve_y to window_scroll_pixel_based_preserve_y.
Luc Teirlinck <teirllm@auburn.edu>
parents: 69342
diff changeset
5089 if (window_scroll_pixel_based_preserve_y < 0
69606
40a0e06dc5aa (window_scroll_pixel_based): Yet another int/Lisp_Object mixup (YAILOM).
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69408
diff changeset
5090 || (!EQ (current_kboard->Vlast_command, Qscroll_up)
40a0e06dc5aa (window_scroll_pixel_based): Yet another int/Lisp_Object mixup (YAILOM).
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 69408
diff changeset
5091 && !EQ (current_kboard->Vlast_command, Qscroll_down)))
69209
b9ad41f39bf6 * xselect.c (x_catch_errors_unwind): New function.
Chong Yidong <cyd@stupidchicken.com>
parents: 69104
diff changeset
5092 {
b9ad41f39bf6 * xselect.c (x_catch_errors_unwind): New function.
Chong Yidong <cyd@stupidchicken.com>
parents: 69104
diff changeset
5093 start_display (&it, w, start);
b9ad41f39bf6 * xselect.c (x_catch_errors_unwind): New function.
Chong Yidong <cyd@stupidchicken.com>
parents: 69104
diff changeset
5094 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
69408
aa89c5390b12 Rename preserve_y to window_scroll_pixel_based_preserve_y.
Luc Teirlinck <teirllm@auburn.edu>
parents: 69342
diff changeset
5095 window_scroll_pixel_based_preserve_y = it.current_y;
69209
b9ad41f39bf6 * xselect.c (x_catch_errors_unwind): New function.
Chong Yidong <cyd@stupidchicken.com>
parents: 69104
diff changeset
5096 }
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5097 }
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5098 else
69408
aa89c5390b12 Rename preserve_y to window_scroll_pixel_based_preserve_y.
Luc Teirlinck <teirllm@auburn.edu>
parents: 69342
diff changeset
5099 window_scroll_pixel_based_preserve_y = -1;
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5100
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5101 /* Move iterator it from start the specified distance forward or
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5102 backward. The result is the new window start. */
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5103 start_display (&it, w, start);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5104 if (whole)
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5105 {
59717
351ffb20ab9f (window_scroll_pixel_based): Fix scrolling in the wrong
Kim F. Storm <storm@cua.dk>
parents: 59700
diff changeset
5106 int start_pos = IT_CHARPOS (it);
351ffb20ab9f (window_scroll_pixel_based): Fix scrolling in the wrong
Kim F. Storm <storm@cua.dk>
parents: 59700
diff changeset
5107 int dy = WINDOW_FRAME_LINE_HEIGHT (w);
351ffb20ab9f (window_scroll_pixel_based): Fix scrolling in the wrong
Kim F. Storm <storm@cua.dk>
parents: 59700
diff changeset
5108 dy = max ((window_box_height (w)
351ffb20ab9f (window_scroll_pixel_based): Fix scrolling in the wrong
Kim F. Storm <storm@cua.dk>
parents: 59700
diff changeset
5109 - next_screen_context_lines * dy),
351ffb20ab9f (window_scroll_pixel_based): Fix scrolling in the wrong
Kim F. Storm <storm@cua.dk>
parents: 59700
diff changeset
5110 dy) * n;
34717
c794dfe043b6 (window_scroll_pixel_based): Don't use
Gerd Moellmann <gerd@gnu.org>
parents: 34640
diff changeset
5111
c794dfe043b6 (window_scroll_pixel_based): Don't use
Gerd Moellmann <gerd@gnu.org>
parents: 34640
diff changeset
5112 /* Note that move_it_vertically always moves the iterator to the
c794dfe043b6 (window_scroll_pixel_based): Don't use
Gerd Moellmann <gerd@gnu.org>
parents: 34640
diff changeset
5113 start of a line. So, if the last line doesn't have a newline,
c794dfe043b6 (window_scroll_pixel_based): Don't use
Gerd Moellmann <gerd@gnu.org>
parents: 34640
diff changeset
5114 we would end up at the start of the line ending at ZV. */
c794dfe043b6 (window_scroll_pixel_based): Don't use
Gerd Moellmann <gerd@gnu.org>
parents: 34640
diff changeset
5115 if (dy <= 0)
59717
351ffb20ab9f (window_scroll_pixel_based): Fix scrolling in the wrong
Kim F. Storm <storm@cua.dk>
parents: 59700
diff changeset
5116 {
351ffb20ab9f (window_scroll_pixel_based): Fix scrolling in the wrong
Kim F. Storm <storm@cua.dk>
parents: 59700
diff changeset
5117 move_it_vertically_backward (&it, -dy);
72663
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5118 /* Ensure we actually do move, e.g. in case we are currently
59717
351ffb20ab9f (window_scroll_pixel_based): Fix scrolling in the wrong
Kim F. Storm <storm@cua.dk>
parents: 59700
diff changeset
5119 looking at an image that is taller that the window height. */
351ffb20ab9f (window_scroll_pixel_based): Fix scrolling in the wrong
Kim F. Storm <storm@cua.dk>
parents: 59700
diff changeset
5120 while (start_pos == IT_CHARPOS (it)
351ffb20ab9f (window_scroll_pixel_based): Fix scrolling in the wrong
Kim F. Storm <storm@cua.dk>
parents: 59700
diff changeset
5121 && start_pos > BEGV)
351ffb20ab9f (window_scroll_pixel_based): Fix scrolling in the wrong
Kim F. Storm <storm@cua.dk>
parents: 59700
diff changeset
5122 move_it_by_lines (&it, -1, 1);
351ffb20ab9f (window_scroll_pixel_based): Fix scrolling in the wrong
Kim F. Storm <storm@cua.dk>
parents: 59700
diff changeset
5123 }
34717
c794dfe043b6 (window_scroll_pixel_based): Don't use
Gerd Moellmann <gerd@gnu.org>
parents: 34640
diff changeset
5124 else if (dy > 0)
59695
75b50deae4e9 (window_scroll_pixel_based): Force moving to next line
Kim F. Storm <storm@cua.dk>
parents: 59677
diff changeset
5125 {
75b50deae4e9 (window_scroll_pixel_based): Force moving to next line
Kim F. Storm <storm@cua.dk>
parents: 59677
diff changeset
5126 move_it_to (&it, ZV, -1, it.current_y + dy, -1,
75b50deae4e9 (window_scroll_pixel_based): Force moving to next line
Kim F. Storm <storm@cua.dk>
parents: 59677
diff changeset
5127 MOVE_TO_POS | MOVE_TO_Y);
72663
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
5128 /* Ensure we actually do move, e.g. in case we are currently
59695
75b50deae4e9 (window_scroll_pixel_based): Force moving to next line
Kim F. Storm <storm@cua.dk>
parents: 59677
diff changeset
5129 looking at an image that is taller that the window height. */
75b50deae4e9 (window_scroll_pixel_based): Force moving to next line
Kim F. Storm <storm@cua.dk>
parents: 59677
diff changeset
5130 while (start_pos == IT_CHARPOS (it)
75b50deae4e9 (window_scroll_pixel_based): Force moving to next line
Kim F. Storm <storm@cua.dk>
parents: 59677
diff changeset
5131 && start_pos < ZV)
75b50deae4e9 (window_scroll_pixel_based): Force moving to next line
Kim F. Storm <storm@cua.dk>
parents: 59677
diff changeset
5132 move_it_by_lines (&it, 1, 1);
75b50deae4e9 (window_scroll_pixel_based): Force moving to next line
Kim F. Storm <storm@cua.dk>
parents: 59677
diff changeset
5133 }
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5134 }
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5135 else
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5136 move_it_by_lines (&it, n, 1);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5137
49011
594a08370cb3 (window_scroll_pixel_based): Partially undo last change.
Richard M. Stallman <rms@gnu.org>
parents: 48945
diff changeset
5138 /* We failed if we find ZV is already on the screen (scrolling up,
594a08370cb3 (window_scroll_pixel_based): Partially undo last change.
Richard M. Stallman <rms@gnu.org>
parents: 48945
diff changeset
5139 means there's nothing past the end), or if we can't start any
594a08370cb3 (window_scroll_pixel_based): Partially undo last change.
Richard M. Stallman <rms@gnu.org>
parents: 48945
diff changeset
5140 earlier (scrolling down, means there's nothing past the top). */
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5141 if ((n > 0 && IT_CHARPOS (it) == ZV)
49011
594a08370cb3 (window_scroll_pixel_based): Partially undo last change.
Richard M. Stallman <rms@gnu.org>
parents: 48945
diff changeset
5142 || (n < 0 && IT_CHARPOS (it) == CHARPOS (start)))
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5143 {
34381
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5144 if (IT_CHARPOS (it) == ZV)
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5145 {
48945
a96801f68a82 (window_scroll_pixel_based): Fix check for reaching BEGV.
Richard M. Stallman <rms@gnu.org>
parents: 48927
diff changeset
5146 if (it.current_y < it.last_visible_y
a96801f68a82 (window_scroll_pixel_based): Fix check for reaching BEGV.
Richard M. Stallman <rms@gnu.org>
parents: 48927
diff changeset
5147 && (it.current_y + it.max_ascent + it.max_descent
70058
12c8842436ef (window_loop): Test w->dedicated with !NILP instead of EQ Qt.
Kim F. Storm <storm@cua.dk>
parents: 70042
diff changeset
5148 > it.last_visible_y))
35126
67fa29af4c7b (window_scroll_pixel_based): Adjust glyph matrices
Gerd Moellmann <gerd@gnu.org>
parents: 35038
diff changeset
5149 {
67fa29af4c7b (window_scroll_pixel_based): Adjust glyph matrices
Gerd Moellmann <gerd@gnu.org>
parents: 35038
diff changeset
5150 /* The last line was only partially visible, make it fully
67fa29af4c7b (window_scroll_pixel_based): Adjust glyph matrices
Gerd Moellmann <gerd@gnu.org>
parents: 35038
diff changeset
5151 visible. */
67fa29af4c7b (window_scroll_pixel_based): Adjust glyph matrices
Gerd Moellmann <gerd@gnu.org>
parents: 35038
diff changeset
5152 w->vscroll = (it.last_visible_y
67fa29af4c7b (window_scroll_pixel_based): Adjust glyph matrices
Gerd Moellmann <gerd@gnu.org>
parents: 35038
diff changeset
5153 - it.current_y + it.max_ascent + it.max_descent);
67fa29af4c7b (window_scroll_pixel_based): Adjust glyph matrices
Gerd Moellmann <gerd@gnu.org>
parents: 35038
diff changeset
5154 adjust_glyphs (it.f);
67fa29af4c7b (window_scroll_pixel_based): Adjust glyph matrices
Gerd Moellmann <gerd@gnu.org>
parents: 35038
diff changeset
5155 }
34381
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5156 else if (noerror)
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5157 return;
71286
1d2d52a04520 (window_scroll_pixel_based): Signal "Beginning of buffer" when scroll-down
Eli Zaretskii <eliz@gnu.org>
parents: 71146
diff changeset
5158 else if (n < 0) /* could happen with empty buffers */
71991
2cbe7a01a491 (window_scroll_pixel_based, window_scroll_line_based):
Kim F. Storm <storm@cua.dk>
parents: 71844
diff changeset
5159 xsignal0 (Qbeginning_of_buffer);
34381
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5160 else
71991
2cbe7a01a491 (window_scroll_pixel_based, window_scroll_line_based):
Kim F. Storm <storm@cua.dk>
parents: 71844
diff changeset
5161 xsignal0 (Qend_of_buffer);
34381
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5162 }
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5163 else
34381
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5164 {
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5165 if (w->vscroll != 0)
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5166 /* The first line was only partially visible, make it fully
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5167 visible. */
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5168 w->vscroll = 0;
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5169 else if (noerror)
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5170 return;
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5171 else
71991
2cbe7a01a491 (window_scroll_pixel_based, window_scroll_line_based):
Kim F. Storm <storm@cua.dk>
parents: 71844
diff changeset
5172 xsignal0 (Qbeginning_of_buffer);
34381
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5173 }
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5174
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5175 /* If control gets here, then we vscrolled. */
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5176
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5177 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5178
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5179 /* Don't try to change the window start below. */
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5180 vscrolled = 1;
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5181 }
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5182
34381
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5183 if (! vscrolled)
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5184 {
45562
1b62cee42a61 (window_scroll_pixel_based): Don't call Fbolp;
Richard M. Stallman <rms@gnu.org>
parents: 44890
diff changeset
5185 int pos = IT_CHARPOS (it);
1b62cee42a61 (window_scroll_pixel_based): Don't call Fbolp;
Richard M. Stallman <rms@gnu.org>
parents: 44890
diff changeset
5186 int bytepos;
49836
33592610b3e0 (window_scroll_pixel_based): Move outside a
Andreas Schwab <schwab@suse.de>
parents: 49600
diff changeset
5187
33592610b3e0 (window_scroll_pixel_based): Move outside a
Andreas Schwab <schwab@suse.de>
parents: 49600
diff changeset
5188 /* If in the middle of a multi-glyph character move forward to
33592610b3e0 (window_scroll_pixel_based): Move outside a
Andreas Schwab <schwab@suse.de>
parents: 49600
diff changeset
5189 the next character. */
33592610b3e0 (window_scroll_pixel_based): Move outside a
Andreas Schwab <schwab@suse.de>
parents: 49600
diff changeset
5190 if (in_display_vector_p (&it))
33592610b3e0 (window_scroll_pixel_based): Move outside a
Andreas Schwab <schwab@suse.de>
parents: 49600
diff changeset
5191 {
33592610b3e0 (window_scroll_pixel_based): Move outside a
Andreas Schwab <schwab@suse.de>
parents: 49600
diff changeset
5192 ++pos;
33592610b3e0 (window_scroll_pixel_based): Move outside a
Andreas Schwab <schwab@suse.de>
parents: 49600
diff changeset
5193 move_it_to (&it, pos, -1, -1, -1, MOVE_TO_POS);
33592610b3e0 (window_scroll_pixel_based): Move outside a
Andreas Schwab <schwab@suse.de>
parents: 49600
diff changeset
5194 }
33592610b3e0 (window_scroll_pixel_based): Move outside a
Andreas Schwab <schwab@suse.de>
parents: 49600
diff changeset
5195
34381
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5196 /* Set the window start, and set up the window for redisplay. */
45562
1b62cee42a61 (window_scroll_pixel_based): Don't call Fbolp;
Richard M. Stallman <rms@gnu.org>
parents: 44890
diff changeset
5197 set_marker_restricted (w->start, make_number (pos),
34381
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5198 w->buffer);
45562
1b62cee42a61 (window_scroll_pixel_based): Don't call Fbolp;
Richard M. Stallman <rms@gnu.org>
parents: 44890
diff changeset
5199 bytepos = XMARKER (w->start)->bytepos;
1b62cee42a61 (window_scroll_pixel_based): Don't call Fbolp;
Richard M. Stallman <rms@gnu.org>
parents: 44890
diff changeset
5200 w->start_at_line_beg = ((pos == BEGV || FETCH_BYTE (bytepos - 1) == '\n')
1b62cee42a61 (window_scroll_pixel_based): Don't call Fbolp;
Richard M. Stallman <rms@gnu.org>
parents: 44890
diff changeset
5201 ? Qt : Qnil);
34381
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5202 w->update_mode_line = Qt;
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5203 XSETFASTINT (w->last_modified, 0);
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5204 XSETFASTINT (w->last_overlay_modified, 0);
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5205 /* Set force_start so that redisplay_window will run the
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5206 window-scroll-functions. */
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5207 w->force_start = Qt;
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5208 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
5209
57874
b3e916ae83ea (window_scroll_pixel_based): Update preserve_y for header line if any.
Richard M. Stallman <rms@gnu.org>
parents: 57508
diff changeset
5210 /* The rest of this function uses current_y in a nonstandard way,
b3e916ae83ea (window_scroll_pixel_based): Update preserve_y for header line if any.
Richard M. Stallman <rms@gnu.org>
parents: 57508
diff changeset
5211 not including the height of the header line if any. */
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5212 it.current_y = it.vpos = 0;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
5213
59258
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5214 /* Move PT out of scroll margins.
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5215 This code wants current_y to be zero at the window start position
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5216 even if there is a header line. */
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5217 this_scroll_margin = max (0, scroll_margin);
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5218 this_scroll_margin = min (this_scroll_margin, XFASTINT (w->total_lines) / 4);
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5219 this_scroll_margin *= FRAME_LINE_HEIGHT (it.f);
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5220
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5221 if (n > 0)
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5222 {
59258
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5223 /* We moved the window start towards ZV, so PT may be now
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5224 in the scroll margin at the top. */
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5225 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
63865
a473419e315e (window_scroll_pixel_based, window_scroll_line_based):
Richard M. Stallman <rms@gnu.org>
parents: 63611
diff changeset
5226 if (IT_CHARPOS (it) == PT && it.current_y >= this_scroll_margin
a473419e315e (window_scroll_pixel_based, window_scroll_line_based):
Richard M. Stallman <rms@gnu.org>
parents: 63611
diff changeset
5227 && (NILP (Vscroll_preserve_screen_position)
a473419e315e (window_scroll_pixel_based, window_scroll_line_based):
Richard M. Stallman <rms@gnu.org>
parents: 63611
diff changeset
5228 || EQ (Vscroll_preserve_screen_position, Qt)))
59258
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5229 /* We found PT at a legitimate height. Leave it alone. */
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5230 ;
69408
aa89c5390b12 Rename preserve_y to window_scroll_pixel_based_preserve_y.
Luc Teirlinck <teirllm@auburn.edu>
parents: 69342
diff changeset
5231 else if (window_scroll_pixel_based_preserve_y >= 0)
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5232 {
59342
132e8f3a36a1 (window_scroll_pixel_based): Don't correct preserve_y
Richard M. Stallman <rms@gnu.org>
parents: 59258
diff changeset
5233 /* If we have a header line, take account of it.
132e8f3a36a1 (window_scroll_pixel_based): Don't correct preserve_y
Richard M. Stallman <rms@gnu.org>
parents: 59258
diff changeset
5234 This is necessary because we set it.current_y to 0, above. */
69209
b9ad41f39bf6 * xselect.c (x_catch_errors_unwind): New function.
Chong Yidong <cyd@stupidchicken.com>
parents: 69104
diff changeset
5235 move_it_to (&it, -1, -1,
69408
aa89c5390b12 Rename preserve_y to window_scroll_pixel_based_preserve_y.
Luc Teirlinck <teirllm@auburn.edu>
parents: 69342
diff changeset
5236 window_scroll_pixel_based_preserve_y
aa89c5390b12 Rename preserve_y to window_scroll_pixel_based_preserve_y.
Luc Teirlinck <teirllm@auburn.edu>
parents: 69342
diff changeset
5237 - (WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0 ),
69209
b9ad41f39bf6 * xselect.c (x_catch_errors_unwind): New function.
Chong Yidong <cyd@stupidchicken.com>
parents: 69104
diff changeset
5238 -1, MOVE_TO_Y);
59258
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5239 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5240 }
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5241 else
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5242 {
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5243 while (it.current_y < this_scroll_margin)
44264
6bcf9f9c10df (window_scroll_pixel_based): Exit the move_it_by_lines
Richard M. Stallman <rms@gnu.org>
parents: 44155
diff changeset
5244 {
6bcf9f9c10df (window_scroll_pixel_based): Exit the move_it_by_lines
Richard M. Stallman <rms@gnu.org>
parents: 44155
diff changeset
5245 int prev = it.current_y;
6bcf9f9c10df (window_scroll_pixel_based): Exit the move_it_by_lines
Richard M. Stallman <rms@gnu.org>
parents: 44155
diff changeset
5246 move_it_by_lines (&it, 1, 1);
6bcf9f9c10df (window_scroll_pixel_based): Exit the move_it_by_lines
Richard M. Stallman <rms@gnu.org>
parents: 44155
diff changeset
5247 if (prev == it.current_y)
6bcf9f9c10df (window_scroll_pixel_based): Exit the move_it_by_lines
Richard M. Stallman <rms@gnu.org>
parents: 44155
diff changeset
5248 break;
6bcf9f9c10df (window_scroll_pixel_based): Exit the move_it_by_lines
Richard M. Stallman <rms@gnu.org>
parents: 44155
diff changeset
5249 }
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5250 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5251 }
59258
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5252 }
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5253 else if (n < 0)
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5254 {
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5255 int charpos, bytepos;
60198
d75e10df3675 (window_scroll_pixel_based): When scrolling backwards,
Kim F. Storm <storm@cua.dk>
parents: 59717
diff changeset
5256 int partial_p;
59258
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5257
69408
aa89c5390b12 Rename preserve_y to window_scroll_pixel_based_preserve_y.
Luc Teirlinck <teirllm@auburn.edu>
parents: 69342
diff changeset
5258 /* Save our position, for the
aa89c5390b12 Rename preserve_y to window_scroll_pixel_based_preserve_y.
Luc Teirlinck <teirllm@auburn.edu>
parents: 69342
diff changeset
5259 window_scroll_pixel_based_preserve_y case. */
59258
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5260 charpos = IT_CHARPOS (it);
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5261 bytepos = IT_BYTEPOS (it);
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5262
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5263 /* We moved the window start towards BEGV, so PT may be now
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5264 in the scroll margin at the bottom. */
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5265 move_it_to (&it, PT, -1,
63953
5ce023c9db0d (window_scroll_pixel_based): Take account of this_scroll_margin when
Richard M. Stallman <rms@gnu.org>
parents: 63865
diff changeset
5266 (it.last_visible_y - CURRENT_HEADER_LINE_HEIGHT (w)
5ce023c9db0d (window_scroll_pixel_based): Take account of this_scroll_margin when
Richard M. Stallman <rms@gnu.org>
parents: 63865
diff changeset
5267 - this_scroll_margin - 1),
5ce023c9db0d (window_scroll_pixel_based): Take account of this_scroll_margin when
Richard M. Stallman <rms@gnu.org>
parents: 63865
diff changeset
5268 -1,
59258
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5269 MOVE_TO_POS | MOVE_TO_Y);
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5270
60198
d75e10df3675 (window_scroll_pixel_based): When scrolling backwards,
Kim F. Storm <storm@cua.dk>
parents: 59717
diff changeset
5271 /* Save our position, in case it's correct. */
d75e10df3675 (window_scroll_pixel_based): When scrolling backwards,
Kim F. Storm <storm@cua.dk>
parents: 59717
diff changeset
5272 charpos = IT_CHARPOS (it);
d75e10df3675 (window_scroll_pixel_based): When scrolling backwards,
Kim F. Storm <storm@cua.dk>
parents: 59717
diff changeset
5273 bytepos = IT_BYTEPOS (it);
d75e10df3675 (window_scroll_pixel_based): When scrolling backwards,
Kim F. Storm <storm@cua.dk>
parents: 59717
diff changeset
5274
d75e10df3675 (window_scroll_pixel_based): When scrolling backwards,
Kim F. Storm <storm@cua.dk>
parents: 59717
diff changeset
5275 /* See if point is on a partially visible line at the end. */
d75e10df3675 (window_scroll_pixel_based): When scrolling backwards,
Kim F. Storm <storm@cua.dk>
parents: 59717
diff changeset
5276 if (it.what == IT_EOB)
d75e10df3675 (window_scroll_pixel_based): When scrolling backwards,
Kim F. Storm <storm@cua.dk>
parents: 59717
diff changeset
5277 partial_p = it.current_y + it.ascent + it.descent > it.last_visible_y;
d75e10df3675 (window_scroll_pixel_based): When scrolling backwards,
Kim F. Storm <storm@cua.dk>
parents: 59717
diff changeset
5278 else
d75e10df3675 (window_scroll_pixel_based): When scrolling backwards,
Kim F. Storm <storm@cua.dk>
parents: 59717
diff changeset
5279 {
d75e10df3675 (window_scroll_pixel_based): When scrolling backwards,
Kim F. Storm <storm@cua.dk>
parents: 59717
diff changeset
5280 move_it_by_lines (&it, 1, 1);
d75e10df3675 (window_scroll_pixel_based): When scrolling backwards,
Kim F. Storm <storm@cua.dk>
parents: 59717
diff changeset
5281 partial_p = it.current_y > it.last_visible_y;
d75e10df3675 (window_scroll_pixel_based): When scrolling backwards,
Kim F. Storm <storm@cua.dk>
parents: 59717
diff changeset
5282 }
d75e10df3675 (window_scroll_pixel_based): When scrolling backwards,
Kim F. Storm <storm@cua.dk>
parents: 59717
diff changeset
5283
63865
a473419e315e (window_scroll_pixel_based, window_scroll_line_based):
Richard M. Stallman <rms@gnu.org>
parents: 63611
diff changeset
5284 if (charpos == PT && !partial_p
a473419e315e (window_scroll_pixel_based, window_scroll_line_based):
Richard M. Stallman <rms@gnu.org>
parents: 63611
diff changeset
5285 && (NILP (Vscroll_preserve_screen_position)
a473419e315e (window_scroll_pixel_based, window_scroll_line_based):
Richard M. Stallman <rms@gnu.org>
parents: 63611
diff changeset
5286 || EQ (Vscroll_preserve_screen_position, Qt)))
59258
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5287 /* We found PT before we found the display margin, so PT is ok. */
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5288 ;
69408
aa89c5390b12 Rename preserve_y to window_scroll_pixel_based_preserve_y.
Luc Teirlinck <teirllm@auburn.edu>
parents: 69342
diff changeset
5289 else if (window_scroll_pixel_based_preserve_y >= 0)
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5290 {
59258
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5291 SET_TEXT_POS_FROM_MARKER (start, w->start);
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5292 start_display (&it, w, start);
69209
b9ad41f39bf6 * xselect.c (x_catch_errors_unwind): New function.
Chong Yidong <cyd@stupidchicken.com>
parents: 69104
diff changeset
5293 /* It would be wrong to subtract CURRENT_HEADER_LINE_HEIGHT
b9ad41f39bf6 * xselect.c (x_catch_errors_unwind): New function.
Chong Yidong <cyd@stupidchicken.com>
parents: 69104
diff changeset
5294 here because we called start_display again and did not
b9ad41f39bf6 * xselect.c (x_catch_errors_unwind): New function.
Chong Yidong <cyd@stupidchicken.com>
parents: 69104
diff changeset
5295 alter it.current_y this time. */
69408
aa89c5390b12 Rename preserve_y to window_scroll_pixel_based_preserve_y.
Luc Teirlinck <teirllm@auburn.edu>
parents: 69342
diff changeset
5296 move_it_to (&it, -1, -1, window_scroll_pixel_based_preserve_y, -1,
aa89c5390b12 Rename preserve_y to window_scroll_pixel_based_preserve_y.
Luc Teirlinck <teirllm@auburn.edu>
parents: 69342
diff changeset
5297 MOVE_TO_Y);
59258
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5298 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5299 }
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5300 else
e5b68c4be92b (window_scroll_pixel_based): Only look at
Richard M. Stallman <rms@gnu.org>
parents: 58732
diff changeset
5301 {
60198
d75e10df3675 (window_scroll_pixel_based): When scrolling backwards,
Kim F. Storm <storm@cua.dk>
parents: 59717
diff changeset
5302 if (partial_p)
34381
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5303 /* The last line was only partially visible, so back up two
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5304 lines to make sure we're on a fully visible line. */
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5305 {
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5306 move_it_by_lines (&it, -2, 0);
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5307 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5308 }
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5309 else
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5310 /* No, the position we saved is OK, so use it. */
f9d7bc96177b (Fpos_visible_in_window_p): Replace FULLY parameter with PARTIALLY,
Miles Bader <miles@gnu.org>
parents: 34277
diff changeset
5311 SET_PT_BOTH (charpos, bytepos);
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5312 }
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5313 }
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5314 }
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5315
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5316
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5317 /* Implementation of window_scroll that works based on screen lines.
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5318 See the comment of window_scroll for parameter descriptions. */
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5319
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5320 static void
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5321 window_scroll_line_based (window, n, whole, noerror)
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5322 Lisp_Object window;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5323 int n;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5324 int whole;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5325 int noerror;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5326 {
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5327 register struct window *w = XWINDOW (window);
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5328 register int opoint = PT, opoint_byte = PT_BYTE;
20535
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
5329 register int pos, pos_byte;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5330 register int ht = window_internal_height (w);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5331 register Lisp_Object tem;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5332 int lose;
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5333 Lisp_Object bolp;
16658
584563254f25 (window_scroll): Don't set w->start or w->force_start if signaling an error.
Richard M. Stallman <rms@gnu.org>
parents: 16587
diff changeset
5334 int startpos;
16751
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5335 struct position posit;
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5336 int original_vpos;
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5337
37307
f028d889de06 (window_scroll): Change the meaning of N to mean
Gerd Moellmann <gerd@gnu.org>
parents: 37305
diff changeset
5338 /* If scrolling screen-fulls, compute the number of lines to
f028d889de06 (window_scroll): Change the meaning of N to mean
Gerd Moellmann <gerd@gnu.org>
parents: 37305
diff changeset
5339 scroll from the window's height. */
f028d889de06 (window_scroll): Change the meaning of N to mean
Gerd Moellmann <gerd@gnu.org>
parents: 37305
diff changeset
5340 if (whole)
f028d889de06 (window_scroll): Change the meaning of N to mean
Gerd Moellmann <gerd@gnu.org>
parents: 37305
diff changeset
5341 n *= max (1, ht - next_screen_context_lines);
f028d889de06 (window_scroll): Change the meaning of N to mean
Gerd Moellmann <gerd@gnu.org>
parents: 37305
diff changeset
5342
16751
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5343 startpos = marker_position (w->start);
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5344
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5345 posit = *compute_motion (startpos, 0, 0, 0,
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5346 PT, ht, 0,
56585
f2ea7576ac6e (window_scroll_line_based): Let compute_motion
Kim F. Storm <storm@cua.dk>
parents: 56542
diff changeset
5347 -1, XINT (w->hscroll),
16751
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5348 0, w);
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5349 original_vpos = posit.vpos;
13102
960db92441d8 (window_scroll): Always set force_start.
Richard M. Stallman <rms@gnu.org>
parents: 12981
diff changeset
5350
9324
ac6a5691607f (make_window, Fset_window_hscroll, Fset_window_start, set_window_height,
Karl Heuer <kwzh@gnu.org>
parents: 9282
diff changeset
5351 XSETFASTINT (tem, PT);
32773
a7fdbf39d4de (window_scroll_pixel_based, window_scroll_line_based):
Miles Bader <miles@gnu.org>
parents: 32752
diff changeset
5352 tem = Fpos_visible_in_window_p (tem, window, Qnil);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5353
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
5354 if (NILP (tem))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5355 {
6341
dfc758dd2b08 (window_scroll, Fmove_to_window_line): Avoid dividing negative numbers,
Karl Heuer <kwzh@gnu.org>
parents: 6326
diff changeset
5356 Fvertical_motion (make_number (- (ht / 2)), window);
16658
584563254f25 (window_scroll): Don't set w->start or w->force_start if signaling an error.
Richard M. Stallman <rms@gnu.org>
parents: 16587
diff changeset
5357 startpos = PT;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5358 }
16658
584563254f25 (window_scroll): Don't set w->start or w->force_start if signaling an error.
Richard M. Stallman <rms@gnu.org>
parents: 16587
diff changeset
5359
584563254f25 (window_scroll): Don't set w->start or w->force_start if signaling an error.
Richard M. Stallman <rms@gnu.org>
parents: 16587
diff changeset
5360 SET_PT (startpos);
7347
3a677a303d5b Use PT, not point.
Karl Heuer <kwzh@gnu.org>
parents: 7080
diff changeset
5361 lose = n < 0 && PT == BEGV;
6326
5e662ad3f594 (Fdelete_other_windows): Pass new arg to Fvertical_motion.
Richard M. Stallman <rms@gnu.org>
parents: 6269
diff changeset
5362 Fvertical_motion (make_number (n), window);
7347
3a677a303d5b Use PT, not point.
Karl Heuer <kwzh@gnu.org>
parents: 7080
diff changeset
5363 pos = PT;
20535
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
5364 pos_byte = PT_BYTE;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5365 bolp = Fbolp ();
20535
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
5366 SET_PT_BOTH (opoint, opoint_byte);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5367
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5368 if (lose)
522
bacdab90fa8b *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 485
diff changeset
5369 {
bacdab90fa8b *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 485
diff changeset
5370 if (noerror)
bacdab90fa8b *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 485
diff changeset
5371 return;
bacdab90fa8b *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 485
diff changeset
5372 else
71991
2cbe7a01a491 (window_scroll_pixel_based, window_scroll_line_based):
Kim F. Storm <storm@cua.dk>
parents: 71844
diff changeset
5373 xsignal0 (Qbeginning_of_buffer);
522
bacdab90fa8b *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 485
diff changeset
5374 }
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5375
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5376 if (pos < ZV)
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5377 {
16559
d62b7f309f2b (window_scroll): Handle scroll_margin
Richard M. Stallman <rms@gnu.org>
parents: 16555
diff changeset
5378 int this_scroll_margin = scroll_margin;
d62b7f309f2b (window_scroll): Handle scroll_margin
Richard M. Stallman <rms@gnu.org>
parents: 16555
diff changeset
5379
d62b7f309f2b (window_scroll): Handle scroll_margin
Richard M. Stallman <rms@gnu.org>
parents: 16555
diff changeset
5380 /* Don't use a scroll margin that is negative or too large. */
d62b7f309f2b (window_scroll): Handle scroll_margin
Richard M. Stallman <rms@gnu.org>
parents: 16555
diff changeset
5381 if (this_scroll_margin < 0)
d62b7f309f2b (window_scroll): Handle scroll_margin
Richard M. Stallman <rms@gnu.org>
parents: 16555
diff changeset
5382 this_scroll_margin = 0;
d62b7f309f2b (window_scroll): Handle scroll_margin
Richard M. Stallman <rms@gnu.org>
parents: 16555
diff changeset
5383
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
5384 if (XINT (w->total_lines) < 4 * scroll_margin)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
5385 this_scroll_margin = XINT (w->total_lines) / 4;
16559
d62b7f309f2b (window_scroll): Handle scroll_margin
Richard M. Stallman <rms@gnu.org>
parents: 16555
diff changeset
5386
20535
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
5387 set_marker_restricted_both (w->start, w->buffer, pos, pos_byte);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5388 w->start_at_line_beg = bolp;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5389 w->update_mode_line = Qt;
9324
ac6a5691607f (make_window, Fset_window_hscroll, Fset_window_start, set_window_height,
Karl Heuer <kwzh@gnu.org>
parents: 9282
diff changeset
5390 XSETFASTINT (w->last_modified, 0);
16208
e3a834653117 (Fset_window_start): Clear last_overlay_modified field.
Richard M. Stallman <rms@gnu.org>
parents: 16068
diff changeset
5391 XSETFASTINT (w->last_overlay_modified, 0);
16658
584563254f25 (window_scroll): Don't set w->start or w->force_start if signaling an error.
Richard M. Stallman <rms@gnu.org>
parents: 16587
diff changeset
5392 /* Set force_start so that redisplay_window will run
584563254f25 (window_scroll): Don't set w->start or w->force_start if signaling an error.
Richard M. Stallman <rms@gnu.org>
parents: 16587
diff changeset
5393 the window-scroll-functions. */
584563254f25 (window_scroll): Don't set w->start or w->force_start if signaling an error.
Richard M. Stallman <rms@gnu.org>
parents: 16587
diff changeset
5394 w->force_start = Qt;
16559
d62b7f309f2b (window_scroll): Handle scroll_margin
Richard M. Stallman <rms@gnu.org>
parents: 16555
diff changeset
5395
63865
a473419e315e (window_scroll_pixel_based, window_scroll_line_based):
Richard M. Stallman <rms@gnu.org>
parents: 63611
diff changeset
5396 if (!NILP (Vscroll_preserve_screen_position)
a473419e315e (window_scroll_pixel_based, window_scroll_line_based):
Richard M. Stallman <rms@gnu.org>
parents: 63611
diff changeset
5397 && (whole || !EQ (Vscroll_preserve_screen_position, Qt)))
16559
d62b7f309f2b (window_scroll): Handle scroll_margin
Richard M. Stallman <rms@gnu.org>
parents: 16555
diff changeset
5398 {
20535
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
5399 SET_PT_BOTH (pos, pos_byte);
16751
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5400 Fvertical_motion (make_number (original_vpos), window);
16559
d62b7f309f2b (window_scroll): Handle scroll_margin
Richard M. Stallman <rms@gnu.org>
parents: 16555
diff changeset
5401 }
16751
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5402 /* If we scrolled forward, put point enough lines down
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5403 that it is outside the scroll margin. */
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5404 else if (n > 0)
16559
d62b7f309f2b (window_scroll): Handle scroll_margin
Richard M. Stallman <rms@gnu.org>
parents: 16555
diff changeset
5405 {
16751
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5406 int top_margin;
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5407
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5408 if (this_scroll_margin > 0)
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5409 {
20535
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
5410 SET_PT_BOTH (pos, pos_byte);
16751
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5411 Fvertical_motion (make_number (this_scroll_margin), window);
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5412 top_margin = PT;
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5413 }
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5414 else
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5415 top_margin = pos;
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5416
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5417 if (top_margin <= opoint)
20535
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
5418 SET_PT_BOTH (opoint, opoint_byte);
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5419 else if (!NILP (Vscroll_preserve_screen_position))
16751
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5420 {
20535
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
5421 SET_PT_BOTH (pos, pos_byte);
16751
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5422 Fvertical_motion (make_number (original_vpos), window);
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5423 }
16980
3da3a2934be5 (scroll_preserve_screen_position): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16751
diff changeset
5424 else
20046
8baac8399a29 (window_scroll): When scrolling forward and point is
Karl Heuer <kwzh@gnu.org>
parents: 19667
diff changeset
5425 SET_PT (top_margin);
16559
d62b7f309f2b (window_scroll): Handle scroll_margin
Richard M. Stallman <rms@gnu.org>
parents: 16555
diff changeset
5426 }
16751
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5427 else if (n < 0)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5428 {
16751
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5429 int bottom_margin;
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5430
16559
d62b7f309f2b (window_scroll): Handle scroll_margin
Richard M. Stallman <rms@gnu.org>
parents: 16555
diff changeset
5431 /* If we scrolled backward, put point near the end of the window
d62b7f309f2b (window_scroll): Handle scroll_margin
Richard M. Stallman <rms@gnu.org>
parents: 16555
diff changeset
5432 but not within the scroll margin. */
20535
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
5433 SET_PT_BOTH (pos, pos_byte);
16559
d62b7f309f2b (window_scroll): Handle scroll_margin
Richard M. Stallman <rms@gnu.org>
parents: 16555
diff changeset
5434 tem = Fvertical_motion (make_number (ht - this_scroll_margin), window);
16751
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5435 if (XFASTINT (tem) == ht - this_scroll_margin)
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5436 bottom_margin = PT;
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5437 else
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5438 bottom_margin = PT + 1;
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5439
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5440 if (bottom_margin > opoint)
20535
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
5441 SET_PT_BOTH (opoint, opoint_byte);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5442 else
16751
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5443 {
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5444 if (!NILP (Vscroll_preserve_screen_position))
16980
3da3a2934be5 (scroll_preserve_screen_position): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16751
diff changeset
5445 {
20535
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
5446 SET_PT_BOTH (pos, pos_byte);
16980
3da3a2934be5 (scroll_preserve_screen_position): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16751
diff changeset
5447 Fvertical_motion (make_number (original_vpos), window);
3da3a2934be5 (scroll_preserve_screen_position): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16751
diff changeset
5448 }
3da3a2934be5 (scroll_preserve_screen_position): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16751
diff changeset
5449 else
3da3a2934be5 (scroll_preserve_screen_position): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16751
diff changeset
5450 Fvertical_motion (make_number (-1), window);
16751
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5451 }
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5452 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5453 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5454 else
522
bacdab90fa8b *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 485
diff changeset
5455 {
bacdab90fa8b *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 485
diff changeset
5456 if (noerror)
bacdab90fa8b *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 485
diff changeset
5457 return;
bacdab90fa8b *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 485
diff changeset
5458 else
71991
2cbe7a01a491 (window_scroll_pixel_based, window_scroll_line_based):
Kim F. Storm <storm@cua.dk>
parents: 71844
diff changeset
5459 xsignal0 (Qend_of_buffer);
522
bacdab90fa8b *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 485
diff changeset
5460 }
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5461 }
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5462
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5463
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5464 /* Scroll selected_window up or down. If N is nil, scroll a
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5465 screen-full which is defined as the height of the window minus
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5466 next_screen_context_lines. If N is the symbol `-', scroll.
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5467 DIRECTION may be 1 meaning to scroll down, or -1 meaning to scroll
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5468 up. This is the guts of Fscroll_up and Fscroll_down. */
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5469
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5470 static void
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5471 scroll_command (n, direction)
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5472 Lisp_Object n;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5473 int direction;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5474 {
46285
3f111801efb4 Rename BINDING_STACK_SIZE to SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents: 46271
diff changeset
5475 int count = SPECPDL_INDEX ();
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5476
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5477 xassert (abs (direction) == 1);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5478
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5479 /* If selected window's buffer isn't current, make it current for
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5480 the moment. But don't screw up if window_scroll gets an error. */
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5481 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
548
a7b7b759f694 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 522
diff changeset
5482 {
a7b7b759f694 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 522
diff changeset
5483 record_unwind_protect (save_excursion_restore, save_excursion_save ());
a7b7b759f694 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 522
diff changeset
5484 Fset_buffer (XWINDOW (selected_window)->buffer);
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5485
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5486 /* Make redisplay consider other windows than just selected_window. */
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5487 ++windows_or_buffers_changed;
548
a7b7b759f694 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 522
diff changeset
5488 }
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5489
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
5490 if (NILP (n))
37307
f028d889de06 (window_scroll): Change the meaning of N to mean
Gerd Moellmann <gerd@gnu.org>
parents: 37305
diff changeset
5491 window_scroll (selected_window, direction, 1, 0);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5492 else if (EQ (n, Qminus))
37307
f028d889de06 (window_scroll): Change the meaning of N to mean
Gerd Moellmann <gerd@gnu.org>
parents: 37305
diff changeset
5493 window_scroll (selected_window, -direction, 1, 0);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5494 else
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5495 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5496 n = Fprefix_numeric_value (n);
16751
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5497 window_scroll (selected_window, XINT (n) * direction, 0, 0);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5498 }
548
a7b7b759f694 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 522
diff changeset
5499
a7b7b759f694 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 522
diff changeset
5500 unbind_to (count, Qnil);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5501 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5502
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5503 DEFUN ("scroll-up", Fscroll_up, Sscroll_up, 0, 1, "P",
56487
338a1d04223d (Fpos_visible_in_window_p, Fset_window_hscroll)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56456
diff changeset
5504 doc: /* Scroll text of current window upward ARG lines.
338a1d04223d (Fpos_visible_in_window_p, Fset_window_hscroll)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56456
diff changeset
5505 If ARG is omitted or nil, scroll upward by a near full screen.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5506 A near full screen is `next-screen-context-lines' less than a full screen.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5507 Negative ARG means scroll downward.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5508 If ARG is the atom `-', scroll downward by nearly full screen.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5509 When calling from a program, supply as argument a number, nil, or `-'. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5510 (arg)
14089
415aa106fa17 (Fwindowp, Fwindow_live_p, Fother_window, Fenlarge_window, Fshrink_window,
Erik Naggum <erik@naggum.no>
parents: 14027
diff changeset
5511 Lisp_Object arg;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5512 {
14089
415aa106fa17 (Fwindowp, Fwindow_live_p, Fother_window, Fenlarge_window, Fshrink_window,
Erik Naggum <erik@naggum.no>
parents: 14027
diff changeset
5513 scroll_command (arg, 1);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5514 return Qnil;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5515 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5516
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5517 DEFUN ("scroll-down", Fscroll_down, Sscroll_down, 0, 1, "P",
56487
338a1d04223d (Fpos_visible_in_window_p, Fset_window_hscroll)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56456
diff changeset
5518 doc: /* Scroll text of current window down ARG lines.
338a1d04223d (Fpos_visible_in_window_p, Fset_window_hscroll)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56456
diff changeset
5519 If ARG is omitted or nil, scroll down by a near full screen.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5520 A near full screen is `next-screen-context-lines' less than a full screen.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5521 Negative ARG means scroll upward.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5522 If ARG is the atom `-', scroll upward by nearly full screen.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5523 When calling from a program, supply as argument a number, nil, or `-'. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5524 (arg)
14089
415aa106fa17 (Fwindowp, Fwindow_live_p, Fother_window, Fenlarge_window, Fshrink_window,
Erik Naggum <erik@naggum.no>
parents: 14027
diff changeset
5525 Lisp_Object arg;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5526 {
14089
415aa106fa17 (Fwindowp, Fwindow_live_p, Fother_window, Fenlarge_window, Fshrink_window,
Erik Naggum <erik@naggum.no>
parents: 14027
diff changeset
5527 scroll_command (arg, -1);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5528 return Qnil;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5529 }
8053
60792df5f81f (Fother_window_for_scrolling): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7663
diff changeset
5530
60792df5f81f (Fother_window_for_scrolling): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7663
diff changeset
5531 DEFUN ("other-window-for-scrolling", Fother_window_for_scrolling, Sother_window_for_scrolling, 0, 0, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5532 doc: /* Return the other window for \"other window scroll\" commands.
56487
338a1d04223d (Fpos_visible_in_window_p, Fset_window_hscroll)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56456
diff changeset
5533 If `other-window-scroll-buffer' is non-nil, a window
338a1d04223d (Fpos_visible_in_window_p, Fset_window_hscroll)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56456
diff changeset
5534 showing that buffer is used.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5535 If in the minibuffer, `minibuffer-scroll-window' if non-nil
56487
338a1d04223d (Fpos_visible_in_window_p, Fset_window_hscroll)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56456
diff changeset
5536 specifies the window. This takes precedence over
338a1d04223d (Fpos_visible_in_window_p, Fset_window_hscroll)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56456
diff changeset
5537 `other-window-scroll-buffer'. */)
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5538 ()
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5539 {
8053
60792df5f81f (Fother_window_for_scrolling): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7663
diff changeset
5540 Lisp_Object window;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5541
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5542 if (MINI_WINDOW_P (XWINDOW (selected_window))
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
5543 && !NILP (Vminibuf_scroll_window))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5544 window = Vminibuf_scroll_window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5545 /* If buffer is specified, scroll that buffer. */
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
5546 else if (!NILP (Vother_window_scroll_buffer))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5547 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5548 window = Fget_buffer_window (Vother_window_scroll_buffer, Qnil);
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
5549 if (NILP (window))
20867
fccf74829150 (Fdisplay_buffer): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 20777
diff changeset
5550 window = Fdisplay_buffer (Vother_window_scroll_buffer, Qt, Qnil);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5551 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5552 else
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1805
diff changeset
5553 {
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1805
diff changeset
5554 /* Nothing specified; look for a neighboring window on the same
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1805
diff changeset
5555 frame. */
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1805
diff changeset
5556 window = Fnext_window (selected_window, Qnil, Qnil);
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1805
diff changeset
5557
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1805
diff changeset
5558 if (EQ (window, selected_window))
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1805
diff changeset
5559 /* That didn't get us anywhere; look for a window on another
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1805
diff changeset
5560 visible frame. */
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1805
diff changeset
5561 do
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1805
diff changeset
5562 window = Fnext_window (window, Qnil, Qt);
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1805
diff changeset
5563 while (! FRAME_VISIBLE_P (XFRAME (WINDOW_FRAME (XWINDOW (window))))
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1805
diff changeset
5564 && ! EQ (window, selected_window));
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1805
diff changeset
5565 }
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1805
diff changeset
5566
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
5567 CHECK_LIVE_WINDOW (window);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5568
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5569 if (EQ (window, selected_window))
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5570 error ("There is no other window");
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5571
8053
60792df5f81f (Fother_window_for_scrolling): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7663
diff changeset
5572 return window;
60792df5f81f (Fother_window_for_scrolling): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7663
diff changeset
5573 }
60792df5f81f (Fother_window_for_scrolling): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7663
diff changeset
5574
60792df5f81f (Fother_window_for_scrolling): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7663
diff changeset
5575 DEFUN ("scroll-other-window", Fscroll_other_window, Sscroll_other_window, 0, 1, "P",
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5576 doc: /* Scroll next window upward ARG lines; or near full screen if no ARG.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5577 A near full screen is `next-screen-context-lines' less than a full screen.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5578 The next window is the one below the current one; or the one at the top
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5579 if the current one is at the bottom. Negative ARG means scroll downward.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5580 If ARG is the atom `-', scroll downward by nearly full screen.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5581 When calling from a program, supply as argument a number, nil, or `-'.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5582
56487
338a1d04223d (Fpos_visible_in_window_p, Fset_window_hscroll)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56456
diff changeset
5583 If `other-window-scroll-buffer' is non-nil, scroll the window
338a1d04223d (Fpos_visible_in_window_p, Fset_window_hscroll)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56456
diff changeset
5584 showing that buffer, popping the buffer up if necessary.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5585 If in the minibuffer, `minibuffer-scroll-window' if non-nil
56487
338a1d04223d (Fpos_visible_in_window_p, Fset_window_hscroll)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56456
diff changeset
5586 specifies the window to scroll. This takes precedence over
338a1d04223d (Fpos_visible_in_window_p, Fset_window_hscroll)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56456
diff changeset
5587 `other-window-scroll-buffer'. */)
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5588 (arg)
37307
f028d889de06 (window_scroll): Change the meaning of N to mean
Gerd Moellmann <gerd@gnu.org>
parents: 37305
diff changeset
5589 Lisp_Object arg;
8053
60792df5f81f (Fother_window_for_scrolling): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7663
diff changeset
5590 {
37307
f028d889de06 (window_scroll): Change the meaning of N to mean
Gerd Moellmann <gerd@gnu.org>
parents: 37305
diff changeset
5591 Lisp_Object window;
f028d889de06 (window_scroll): Change the meaning of N to mean
Gerd Moellmann <gerd@gnu.org>
parents: 37305
diff changeset
5592 struct window *w;
46285
3f111801efb4 Rename BINDING_STACK_SIZE to SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents: 46271
diff changeset
5593 int count = SPECPDL_INDEX ();
8053
60792df5f81f (Fother_window_for_scrolling): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7663
diff changeset
5594
60792df5f81f (Fother_window_for_scrolling): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7663
diff changeset
5595 window = Fother_window_for_scrolling ();
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5596 w = XWINDOW (window);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5597
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5598 /* Don't screw up if window_scroll gets an error. */
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5599 record_unwind_protect (save_excursion_restore, save_excursion_save ());
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
5600 ++windows_or_buffers_changed;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5601
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5602 Fset_buffer (w->buffer);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5603 SET_PT (marker_position (w->pointm));
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5604
14089
415aa106fa17 (Fwindowp, Fwindow_live_p, Fother_window, Fenlarge_window, Fshrink_window,
Erik Naggum <erik@naggum.no>
parents: 14027
diff changeset
5605 if (NILP (arg))
37307
f028d889de06 (window_scroll): Change the meaning of N to mean
Gerd Moellmann <gerd@gnu.org>
parents: 37305
diff changeset
5606 window_scroll (window, 1, 1, 1);
14089
415aa106fa17 (Fwindowp, Fwindow_live_p, Fother_window, Fenlarge_window, Fshrink_window,
Erik Naggum <erik@naggum.no>
parents: 14027
diff changeset
5607 else if (EQ (arg, Qminus))
37307
f028d889de06 (window_scroll): Change the meaning of N to mean
Gerd Moellmann <gerd@gnu.org>
parents: 37305
diff changeset
5608 window_scroll (window, -1, 1, 1);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5609 else
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5610 {
14089
415aa106fa17 (Fwindowp, Fwindow_live_p, Fother_window, Fenlarge_window, Fshrink_window,
Erik Naggum <erik@naggum.no>
parents: 14027
diff changeset
5611 if (CONSP (arg))
415aa106fa17 (Fwindowp, Fwindow_live_p, Fother_window, Fenlarge_window, Fshrink_window,
Erik Naggum <erik@naggum.no>
parents: 14027
diff changeset
5612 arg = Fcar (arg);
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
5613 CHECK_NUMBER (arg);
16751
d393cbcfb69c (window_scroll): Preserve vpos of point
Richard M. Stallman <rms@gnu.org>
parents: 16658
diff changeset
5614 window_scroll (window, XINT (arg), 0, 1);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5615 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5616
20535
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
5617 set_marker_both (w->pointm, Qnil, PT, PT_BYTE);
1931
129d8225f748 * keyboard.c (recursive_edit_1, command_loop_1): Pass the proper
Jim Blandy <jimb@redhat.com>
parents: 1829
diff changeset
5618 unbind_to (count, Qnil);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5619
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5620 return Qnil;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5621 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5622
57874
b3e916ae83ea (window_scroll_pixel_based): Update preserve_y for header line if any.
Richard M. Stallman <rms@gnu.org>
parents: 57508
diff changeset
5623 DEFUN ("scroll-left", Fscroll_left, Sscroll_left, 0, 2, "P\np",
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5624 doc: /* Scroll selected window display ARG columns left.
40459
34107437eb4d (Fscroll_left, Fscroll_right): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 40235
diff changeset
5625 Default for ARG is window width minus 2.
34107437eb4d (Fscroll_left, Fscroll_right): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 40235
diff changeset
5626 Value is the total amount of leftward horizontal scrolling in
34107437eb4d (Fscroll_left, Fscroll_right): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 40235
diff changeset
5627 effect after the change.
57874
b3e916ae83ea (window_scroll_pixel_based): Update preserve_y for header line if any.
Richard M. Stallman <rms@gnu.org>
parents: 57508
diff changeset
5628 If SET_MINIMUM is non-nil, the new scroll amount becomes the
b3e916ae83ea (window_scroll_pixel_based): Update preserve_y for header line if any.
Richard M. Stallman <rms@gnu.org>
parents: 57508
diff changeset
5629 lower bound for automatic scrolling, i.e. automatic scrolling
40459
34107437eb4d (Fscroll_left, Fscroll_right): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 40235
diff changeset
5630 will not scroll a window to a column less than the value returned
57874
b3e916ae83ea (window_scroll_pixel_based): Update preserve_y for header line if any.
Richard M. Stallman <rms@gnu.org>
parents: 57508
diff changeset
5631 by this function. This happens in an interactive call. */)
b3e916ae83ea (window_scroll_pixel_based): Update preserve_y for header line if any.
Richard M. Stallman <rms@gnu.org>
parents: 57508
diff changeset
5632 (arg, set_minimum)
b3e916ae83ea (window_scroll_pixel_based): Update preserve_y for header line if any.
Richard M. Stallman <rms@gnu.org>
parents: 57508
diff changeset
5633 register Lisp_Object arg, set_minimum;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5634 {
35341
f3eb82d93802 (Fset_window_hscroll): Don't set window's min_hscroll
Gerd Moellmann <gerd@gnu.org>
parents: 35126
diff changeset
5635 Lisp_Object result;
f3eb82d93802 (Fset_window_hscroll): Don't set window's min_hscroll
Gerd Moellmann <gerd@gnu.org>
parents: 35126
diff changeset
5636 int hscroll;
f3eb82d93802 (Fset_window_hscroll): Don't set window's min_hscroll
Gerd Moellmann <gerd@gnu.org>
parents: 35126
diff changeset
5637 struct window *w = XWINDOW (selected_window);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
5638
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
5639 if (NILP (arg))
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
5640 XSETFASTINT (arg, window_box_text_cols (w) - 2);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5641 else
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5642 arg = Fprefix_numeric_value (arg);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5643
35341
f3eb82d93802 (Fset_window_hscroll): Don't set window's min_hscroll
Gerd Moellmann <gerd@gnu.org>
parents: 35126
diff changeset
5644 hscroll = XINT (w->hscroll) + XINT (arg);
f3eb82d93802 (Fset_window_hscroll): Don't set window's min_hscroll
Gerd Moellmann <gerd@gnu.org>
parents: 35126
diff changeset
5645 result = Fset_window_hscroll (selected_window, make_number (hscroll));
f3eb82d93802 (Fset_window_hscroll): Don't set window's min_hscroll
Gerd Moellmann <gerd@gnu.org>
parents: 35126
diff changeset
5646
57874
b3e916ae83ea (window_scroll_pixel_based): Update preserve_y for header line if any.
Richard M. Stallman <rms@gnu.org>
parents: 57508
diff changeset
5647 if (!NILP (set_minimum))
35341
f3eb82d93802 (Fset_window_hscroll): Don't set window's min_hscroll
Gerd Moellmann <gerd@gnu.org>
parents: 35126
diff changeset
5648 w->min_hscroll = w->hscroll;
f3eb82d93802 (Fset_window_hscroll): Don't set window's min_hscroll
Gerd Moellmann <gerd@gnu.org>
parents: 35126
diff changeset
5649
f3eb82d93802 (Fset_window_hscroll): Don't set window's min_hscroll
Gerd Moellmann <gerd@gnu.org>
parents: 35126
diff changeset
5650 return result;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5651 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5652
57874
b3e916ae83ea (window_scroll_pixel_based): Update preserve_y for header line if any.
Richard M. Stallman <rms@gnu.org>
parents: 57508
diff changeset
5653 DEFUN ("scroll-right", Fscroll_right, Sscroll_right, 0, 2, "P\np",
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5654 doc: /* Scroll selected window display ARG columns right.
40459
34107437eb4d (Fscroll_left, Fscroll_right): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 40235
diff changeset
5655 Default for ARG is window width minus 2.
34107437eb4d (Fscroll_left, Fscroll_right): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 40235
diff changeset
5656 Value is the total amount of leftward horizontal scrolling in
34107437eb4d (Fscroll_left, Fscroll_right): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 40235
diff changeset
5657 effect after the change.
57874
b3e916ae83ea (window_scroll_pixel_based): Update preserve_y for header line if any.
Richard M. Stallman <rms@gnu.org>
parents: 57508
diff changeset
5658 If SET_MINIMUM is non-nil, the new scroll amount becomes the
b3e916ae83ea (window_scroll_pixel_based): Update preserve_y for header line if any.
Richard M. Stallman <rms@gnu.org>
parents: 57508
diff changeset
5659 lower bound for automatic scrolling, i.e. automatic scrolling
40459
34107437eb4d (Fscroll_left, Fscroll_right): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 40235
diff changeset
5660 will not scroll a window to a column less than the value returned
57874
b3e916ae83ea (window_scroll_pixel_based): Update preserve_y for header line if any.
Richard M. Stallman <rms@gnu.org>
parents: 57508
diff changeset
5661 by this function. This happens in an interactive call. */)
b3e916ae83ea (window_scroll_pixel_based): Update preserve_y for header line if any.
Richard M. Stallman <rms@gnu.org>
parents: 57508
diff changeset
5662 (arg, set_minimum)
57898
f85e0cc87926 (Fscroll_right): Fix last change.
Andreas Schwab <schwab@suse.de>
parents: 57874
diff changeset
5663 register Lisp_Object arg, set_minimum;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5664 {
35341
f3eb82d93802 (Fset_window_hscroll): Don't set window's min_hscroll
Gerd Moellmann <gerd@gnu.org>
parents: 35126
diff changeset
5665 Lisp_Object result;
f3eb82d93802 (Fset_window_hscroll): Don't set window's min_hscroll
Gerd Moellmann <gerd@gnu.org>
parents: 35126
diff changeset
5666 int hscroll;
f3eb82d93802 (Fset_window_hscroll): Don't set window's min_hscroll
Gerd Moellmann <gerd@gnu.org>
parents: 35126
diff changeset
5667 struct window *w = XWINDOW (selected_window);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
5668
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
5669 if (NILP (arg))
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
5670 XSETFASTINT (arg, window_box_text_cols (w) - 2);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5671 else
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5672 arg = Fprefix_numeric_value (arg);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5673
35341
f3eb82d93802 (Fset_window_hscroll): Don't set window's min_hscroll
Gerd Moellmann <gerd@gnu.org>
parents: 35126
diff changeset
5674 hscroll = XINT (w->hscroll) - XINT (arg);
f3eb82d93802 (Fset_window_hscroll): Don't set window's min_hscroll
Gerd Moellmann <gerd@gnu.org>
parents: 35126
diff changeset
5675 result = Fset_window_hscroll (selected_window, make_number (hscroll));
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
5676
57874
b3e916ae83ea (window_scroll_pixel_based): Update preserve_y for header line if any.
Richard M. Stallman <rms@gnu.org>
parents: 57508
diff changeset
5677 if (!NILP (set_minimum))
35341
f3eb82d93802 (Fset_window_hscroll): Don't set window's min_hscroll
Gerd Moellmann <gerd@gnu.org>
parents: 35126
diff changeset
5678 w->min_hscroll = w->hscroll;
f3eb82d93802 (Fset_window_hscroll): Don't set window's min_hscroll
Gerd Moellmann <gerd@gnu.org>
parents: 35126
diff changeset
5679
f3eb82d93802 (Fset_window_hscroll): Don't set window's min_hscroll
Gerd Moellmann <gerd@gnu.org>
parents: 35126
diff changeset
5680 return result;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5681 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5682
43624
a38ac87b3085 (Fminibuffer_selected_window): New function.
Kim F. Storm <storm@cua.dk>
parents: 43620
diff changeset
5683 DEFUN ("minibuffer-selected-window", Fminibuffer_selected_window, Sminibuffer_selected_window, 0, 0, 0,
a38ac87b3085 (Fminibuffer_selected_window): New function.
Kim F. Storm <storm@cua.dk>
parents: 43620
diff changeset
5684 doc: /* Return the window which was selected when entering the minibuffer.
a38ac87b3085 (Fminibuffer_selected_window): New function.
Kim F. Storm <storm@cua.dk>
parents: 43620
diff changeset
5685 Returns nil, if current window is not a minibuffer window. */)
a38ac87b3085 (Fminibuffer_selected_window): New function.
Kim F. Storm <storm@cua.dk>
parents: 43620
diff changeset
5686 ()
a38ac87b3085 (Fminibuffer_selected_window): New function.
Kim F. Storm <storm@cua.dk>
parents: 43620
diff changeset
5687 {
a38ac87b3085 (Fminibuffer_selected_window): New function.
Kim F. Storm <storm@cua.dk>
parents: 43620
diff changeset
5688 if (minibuf_level > 0
a38ac87b3085 (Fminibuffer_selected_window): New function.
Kim F. Storm <storm@cua.dk>
parents: 43620
diff changeset
5689 && MINI_WINDOW_P (XWINDOW (selected_window))
a38ac87b3085 (Fminibuffer_selected_window): New function.
Kim F. Storm <storm@cua.dk>
parents: 43620
diff changeset
5690 && WINDOW_LIVE_P (minibuf_selected_window))
a38ac87b3085 (Fminibuffer_selected_window): New function.
Kim F. Storm <storm@cua.dk>
parents: 43620
diff changeset
5691 return minibuf_selected_window;
a38ac87b3085 (Fminibuffer_selected_window): New function.
Kim F. Storm <storm@cua.dk>
parents: 43620
diff changeset
5692
a38ac87b3085 (Fminibuffer_selected_window): New function.
Kim F. Storm <storm@cua.dk>
parents: 43620
diff changeset
5693 return Qnil;
a38ac87b3085 (Fminibuffer_selected_window): New function.
Kim F. Storm <storm@cua.dk>
parents: 43620
diff changeset
5694 }
a38ac87b3085 (Fminibuffer_selected_window): New function.
Kim F. Storm <storm@cua.dk>
parents: 43620
diff changeset
5695
29485
362c61b5411b (displayed_window_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28918
diff changeset
5696 /* Value is the number of lines actually displayed in window W,
362c61b5411b (displayed_window_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28918
diff changeset
5697 as opposed to its height. */
362c61b5411b (displayed_window_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28918
diff changeset
5698
362c61b5411b (displayed_window_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28918
diff changeset
5699 static int
362c61b5411b (displayed_window_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28918
diff changeset
5700 displayed_window_lines (w)
362c61b5411b (displayed_window_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28918
diff changeset
5701 struct window *w;
362c61b5411b (displayed_window_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28918
diff changeset
5702 {
362c61b5411b (displayed_window_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28918
diff changeset
5703 struct it it;
362c61b5411b (displayed_window_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28918
diff changeset
5704 struct text_pos start;
29488
4eef390d6155 (displayed_window_lines): Take empty lines at
Gerd Moellmann <gerd@gnu.org>
parents: 29485
diff changeset
5705 int height = window_box_height (w);
33059
8fab1b57781b (displayed_window_lines): Change buffers if necessary.
Gerd Moellmann <gerd@gnu.org>
parents: 32937
diff changeset
5706 struct buffer *old_buffer;
8fab1b57781b (displayed_window_lines): Change buffers if necessary.
Gerd Moellmann <gerd@gnu.org>
parents: 32937
diff changeset
5707 int bottom_y;
8fab1b57781b (displayed_window_lines): Change buffers if necessary.
Gerd Moellmann <gerd@gnu.org>
parents: 32937
diff changeset
5708
8fab1b57781b (displayed_window_lines): Change buffers if necessary.
Gerd Moellmann <gerd@gnu.org>
parents: 32937
diff changeset
5709 if (XBUFFER (w->buffer) != current_buffer)
8fab1b57781b (displayed_window_lines): Change buffers if necessary.
Gerd Moellmann <gerd@gnu.org>
parents: 32937
diff changeset
5710 {
8fab1b57781b (displayed_window_lines): Change buffers if necessary.
Gerd Moellmann <gerd@gnu.org>
parents: 32937
diff changeset
5711 old_buffer = current_buffer;
8fab1b57781b (displayed_window_lines): Change buffers if necessary.
Gerd Moellmann <gerd@gnu.org>
parents: 32937
diff changeset
5712 set_buffer_internal (XBUFFER (w->buffer));
8fab1b57781b (displayed_window_lines): Change buffers if necessary.
Gerd Moellmann <gerd@gnu.org>
parents: 32937
diff changeset
5713 }
8fab1b57781b (displayed_window_lines): Change buffers if necessary.
Gerd Moellmann <gerd@gnu.org>
parents: 32937
diff changeset
5714 else
8fab1b57781b (displayed_window_lines): Change buffers if necessary.
Gerd Moellmann <gerd@gnu.org>
parents: 32937
diff changeset
5715 old_buffer = NULL;
29485
362c61b5411b (displayed_window_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28918
diff changeset
5716
36635
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5717 /* In case W->start is out of the accessible range, do something
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5718 reasonable. This happens in Info mode when Info-scroll-down
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5719 calls (recenter -1) while W->start is 1. */
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5720 if (XMARKER (w->start)->charpos < BEGV)
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5721 SET_TEXT_POS (start, BEGV, BEGV_BYTE);
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5722 else if (XMARKER (w->start)->charpos > ZV)
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5723 SET_TEXT_POS (start, ZV, ZV_BYTE);
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5724 else
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5725 SET_TEXT_POS_FROM_MARKER (start, w->start);
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5726
29485
362c61b5411b (displayed_window_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28918
diff changeset
5727 start_display (&it, w, start);
29488
4eef390d6155 (displayed_window_lines): Take empty lines at
Gerd Moellmann <gerd@gnu.org>
parents: 29485
diff changeset
5728 move_it_vertically (&it, height);
36202
8d5b7f742286 (Fmove_to_window_line): Undo last change.
Gerd Moellmann <gerd@gnu.org>
parents: 36133
diff changeset
5729 bottom_y = line_bottom_y (&it);
34416
0d16962724cb (displayed_window_lines): Handle non-newline-terminated final lines properly.
Miles Bader <miles@gnu.org>
parents: 34409
diff changeset
5730
47234
ca48173ebf57 (displayed_window_lines): Correct for one-off bug
Richard M. Stallman <rms@gnu.org>
parents: 46410
diff changeset
5731 /* rms: On a non-window display,
ca48173ebf57 (displayed_window_lines): Correct for one-off bug
Richard M. Stallman <rms@gnu.org>
parents: 46410
diff changeset
5732 the value of it.vpos at the bottom of the screen
ca48173ebf57 (displayed_window_lines): Correct for one-off bug
Richard M. Stallman <rms@gnu.org>
parents: 46410
diff changeset
5733 seems to be 1 larger than window_box_height (w).
ca48173ebf57 (displayed_window_lines): Correct for one-off bug
Richard M. Stallman <rms@gnu.org>
parents: 46410
diff changeset
5734 This kludge fixes a bug whereby (move-to-window-line -1)
ca48173ebf57 (displayed_window_lines): Correct for one-off bug
Richard M. Stallman <rms@gnu.org>
parents: 46410
diff changeset
5735 when ZV is on the last screen line
ca48173ebf57 (displayed_window_lines): Correct for one-off bug
Richard M. Stallman <rms@gnu.org>
parents: 46410
diff changeset
5736 moves to the previous screen line instead of the last one. */
ca48173ebf57 (displayed_window_lines): Correct for one-off bug
Richard M. Stallman <rms@gnu.org>
parents: 46410
diff changeset
5737 if (! FRAME_WINDOW_P (XFRAME (w->frame)))
ca48173ebf57 (displayed_window_lines): Correct for one-off bug
Richard M. Stallman <rms@gnu.org>
parents: 46410
diff changeset
5738 height++;
ca48173ebf57 (displayed_window_lines): Correct for one-off bug
Richard M. Stallman <rms@gnu.org>
parents: 46410
diff changeset
5739
29488
4eef390d6155 (displayed_window_lines): Take empty lines at
Gerd Moellmann <gerd@gnu.org>
parents: 29485
diff changeset
5740 /* Add in empty lines at the bottom of the window. */
33059
8fab1b57781b (displayed_window_lines): Change buffers if necessary.
Gerd Moellmann <gerd@gnu.org>
parents: 32937
diff changeset
5741 if (bottom_y < height)
29488
4eef390d6155 (displayed_window_lines): Take empty lines at
Gerd Moellmann <gerd@gnu.org>
parents: 29485
diff changeset
5742 {
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
5743 int uy = FRAME_LINE_HEIGHT (it.f);
36202
8d5b7f742286 (Fmove_to_window_line): Undo last change.
Gerd Moellmann <gerd@gnu.org>
parents: 36133
diff changeset
5744 it.vpos += (height - bottom_y + uy - 1) / uy;
29488
4eef390d6155 (displayed_window_lines): Take empty lines at
Gerd Moellmann <gerd@gnu.org>
parents: 29485
diff changeset
5745 }
34384
9669bb49fca2 (Fmove_to_window_line): Skip past any partially visible first line.
Miles Bader <miles@gnu.org>
parents: 34381
diff changeset
5746
36202
8d5b7f742286 (Fmove_to_window_line): Undo last change.
Gerd Moellmann <gerd@gnu.org>
parents: 36133
diff changeset
5747 if (old_buffer)
8d5b7f742286 (Fmove_to_window_line): Undo last change.
Gerd Moellmann <gerd@gnu.org>
parents: 36133
diff changeset
5748 set_buffer_internal (old_buffer);
8d5b7f742286 (Fmove_to_window_line): Undo last change.
Gerd Moellmann <gerd@gnu.org>
parents: 36133
diff changeset
5749
29485
362c61b5411b (displayed_window_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28918
diff changeset
5750 return it.vpos;
362c61b5411b (displayed_window_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28918
diff changeset
5751 }
362c61b5411b (displayed_window_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28918
diff changeset
5752
362c61b5411b (displayed_window_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28918
diff changeset
5753
34874
3af71a0ef007 (Frecenter): Use displayed_window_lines instead
Gerd Moellmann <gerd@gnu.org>
parents: 34831
diff changeset
5754 DEFUN ("recenter", Frecenter, Srecenter, 0, 1, "P",
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5755 doc: /* Center point in window and redisplay frame.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5756 With prefix argument ARG, recenter putting point on screen line ARG
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5757 relative to the current window. If ARG is negative, it counts up from the
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5758 bottom of the window. (ARG should be less than the height of the window.)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5759
74966
749691edf645 (Frecenter): Set minimize_tool_bar_window_p flag
Kim F. Storm <storm@cua.dk>
parents: 74255
diff changeset
5760 If ARG is omitted or nil, erase the entire frame and then redraw with point
749691edf645 (Frecenter): Set minimize_tool_bar_window_p flag
Kim F. Storm <storm@cua.dk>
parents: 74255
diff changeset
5761 in the center of the current window. If `auto-resize-tool-bars' is set to
749691edf645 (Frecenter): Set minimize_tool_bar_window_p flag
Kim F. Storm <storm@cua.dk>
parents: 74255
diff changeset
5762 `grow-only', this resets the tool-bar's height to the minimum height needed.
749691edf645 (Frecenter): Set minimize_tool_bar_window_p flag
Kim F. Storm <storm@cua.dk>
parents: 74255
diff changeset
5763
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5764 Just C-u as prefix means put point in the center of the window
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5765 and redisplay normally--don't erase and redraw the frame. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5766 (arg)
34874
3af71a0ef007 (Frecenter): Use displayed_window_lines instead
Gerd Moellmann <gerd@gnu.org>
parents: 34831
diff changeset
5767 register Lisp_Object arg;
3af71a0ef007 (Frecenter): Use displayed_window_lines instead
Gerd Moellmann <gerd@gnu.org>
parents: 34831
diff changeset
5768 {
34991
ad94ea6e6549 (Frecenter): Handle centering in graphical frames
Gerd Moellmann <gerd@gnu.org>
parents: 34986
diff changeset
5769 struct window *w = XWINDOW (selected_window);
34874
3af71a0ef007 (Frecenter): Use displayed_window_lines instead
Gerd Moellmann <gerd@gnu.org>
parents: 34831
diff changeset
5770 struct buffer *buf = XBUFFER (w->buffer);
3af71a0ef007 (Frecenter): Use displayed_window_lines instead
Gerd Moellmann <gerd@gnu.org>
parents: 34831
diff changeset
5771 struct buffer *obuf = current_buffer;
34991
ad94ea6e6549 (Frecenter): Handle centering in graphical frames
Gerd Moellmann <gerd@gnu.org>
parents: 34986
diff changeset
5772 int center_p = 0;
ad94ea6e6549 (Frecenter): Handle centering in graphical frames
Gerd Moellmann <gerd@gnu.org>
parents: 34986
diff changeset
5773 int charpos, bytepos;
64114
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5774 int iarg;
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5775 int this_scroll_margin;
34874
3af71a0ef007 (Frecenter): Use displayed_window_lines instead
Gerd Moellmann <gerd@gnu.org>
parents: 34831
diff changeset
5776
42089
ca7101bea5ee (Frecenter): Clear display_error_modiff field.
Richard M. Stallman <rms@gnu.org>
parents: 41980
diff changeset
5777 /* If redisplay is suppressed due to an error, try again. */
ca7101bea5ee (Frecenter): Clear display_error_modiff field.
Richard M. Stallman <rms@gnu.org>
parents: 41980
diff changeset
5778 obuf->display_error_modiff = 0;
ca7101bea5ee (Frecenter): Clear display_error_modiff field.
Richard M. Stallman <rms@gnu.org>
parents: 41980
diff changeset
5779
34874
3af71a0ef007 (Frecenter): Use displayed_window_lines instead
Gerd Moellmann <gerd@gnu.org>
parents: 34831
diff changeset
5780 if (NILP (arg))
3af71a0ef007 (Frecenter): Use displayed_window_lines instead
Gerd Moellmann <gerd@gnu.org>
parents: 34831
diff changeset
5781 {
3af71a0ef007 (Frecenter): Use displayed_window_lines instead
Gerd Moellmann <gerd@gnu.org>
parents: 34831
diff changeset
5782 int i;
3af71a0ef007 (Frecenter): Use displayed_window_lines instead
Gerd Moellmann <gerd@gnu.org>
parents: 34831
diff changeset
5783
3af71a0ef007 (Frecenter): Use displayed_window_lines instead
Gerd Moellmann <gerd@gnu.org>
parents: 34831
diff changeset
5784 /* Invalidate pixel data calculated for all compositions. */
3af71a0ef007 (Frecenter): Use displayed_window_lines instead
Gerd Moellmann <gerd@gnu.org>
parents: 34831
diff changeset
5785 for (i = 0; i < n_compositions; i++)
3af71a0ef007 (Frecenter): Use displayed_window_lines instead
Gerd Moellmann <gerd@gnu.org>
parents: 34831
diff changeset
5786 composition_table[i]->font = NULL;
3af71a0ef007 (Frecenter): Use displayed_window_lines instead
Gerd Moellmann <gerd@gnu.org>
parents: 34831
diff changeset
5787
74966
749691edf645 (Frecenter): Set minimize_tool_bar_window_p flag
Kim F. Storm <storm@cua.dk>
parents: 74255
diff changeset
5788 WINDOW_XFRAME (w)->minimize_tool_bar_window_p = 1;
749691edf645 (Frecenter): Set minimize_tool_bar_window_p flag
Kim F. Storm <storm@cua.dk>
parents: 74255
diff changeset
5789
749691edf645 (Frecenter): Set minimize_tool_bar_window_p flag
Kim F. Storm <storm@cua.dk>
parents: 74255
diff changeset
5790 Fredraw_frame (WINDOW_FRAME (w));
749691edf645 (Frecenter): Set minimize_tool_bar_window_p flag
Kim F. Storm <storm@cua.dk>
parents: 74255
diff changeset
5791 SET_FRAME_GARBAGED (WINDOW_XFRAME (w));
34991
ad94ea6e6549 (Frecenter): Handle centering in graphical frames
Gerd Moellmann <gerd@gnu.org>
parents: 34986
diff changeset
5792 center_p = 1;
34874
3af71a0ef007 (Frecenter): Use displayed_window_lines instead
Gerd Moellmann <gerd@gnu.org>
parents: 34831
diff changeset
5793 }
3af71a0ef007 (Frecenter): Use displayed_window_lines instead
Gerd Moellmann <gerd@gnu.org>
parents: 34831
diff changeset
5794 else if (CONSP (arg)) /* Just C-u. */
34991
ad94ea6e6549 (Frecenter): Handle centering in graphical frames
Gerd Moellmann <gerd@gnu.org>
parents: 34986
diff changeset
5795 center_p = 1;
34874
3af71a0ef007 (Frecenter): Use displayed_window_lines instead
Gerd Moellmann <gerd@gnu.org>
parents: 34831
diff changeset
5796 else
3af71a0ef007 (Frecenter): Use displayed_window_lines instead
Gerd Moellmann <gerd@gnu.org>
parents: 34831
diff changeset
5797 {
3af71a0ef007 (Frecenter): Use displayed_window_lines instead
Gerd Moellmann <gerd@gnu.org>
parents: 34831
diff changeset
5798 arg = Fprefix_numeric_value (arg);
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
5799 CHECK_NUMBER (arg);
64133
7e06f331c228 (Frecenter): Fix last change (set iarg before use).
Kim F. Storm <storm@cua.dk>
parents: 64114
diff changeset
5800 iarg = XINT (arg);
34874
3af71a0ef007 (Frecenter): Use displayed_window_lines instead
Gerd Moellmann <gerd@gnu.org>
parents: 34831
diff changeset
5801 }
3af71a0ef007 (Frecenter): Use displayed_window_lines instead
Gerd Moellmann <gerd@gnu.org>
parents: 34831
diff changeset
5802
3af71a0ef007 (Frecenter): Use displayed_window_lines instead
Gerd Moellmann <gerd@gnu.org>
parents: 34831
diff changeset
5803 set_buffer_internal (buf);
34991
ad94ea6e6549 (Frecenter): Handle centering in graphical frames
Gerd Moellmann <gerd@gnu.org>
parents: 34986
diff changeset
5804
64114
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5805 /* Do this after making BUF current
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5806 in case scroll_margin is buffer-local. */
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5807 this_scroll_margin = max (0, scroll_margin);
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5808 this_scroll_margin = min (this_scroll_margin,
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5809 XFASTINT (w->total_lines) / 4);
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5810
36635
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5811 /* Handle centering on a graphical frame specially. Such frames can
34991
ad94ea6e6549 (Frecenter): Handle centering in graphical frames
Gerd Moellmann <gerd@gnu.org>
parents: 34986
diff changeset
5812 have variable-height lines and centering point on the basis of
ad94ea6e6549 (Frecenter): Handle centering in graphical frames
Gerd Moellmann <gerd@gnu.org>
parents: 34986
diff changeset
5813 line counts would lead to strange effects. */
36635
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5814 if (FRAME_WINDOW_P (XFRAME (w->frame)))
34991
ad94ea6e6549 (Frecenter): Handle centering in graphical frames
Gerd Moellmann <gerd@gnu.org>
parents: 34986
diff changeset
5815 {
36635
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5816 if (center_p)
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5817 {
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5818 struct it it;
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5819 struct text_pos pt;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
5820
36635
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5821 SET_TEXT_POS (pt, PT, PT_BYTE);
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5822 start_display (&it, w, pt);
58175
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5823 move_it_vertically_backward (&it, window_box_height (w) / 2);
36635
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5824 charpos = IT_CHARPOS (it);
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5825 bytepos = IT_BYTEPOS (it);
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5826 }
64114
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5827 else if (iarg < 0)
36635
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5828 {
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5829 struct it it;
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5830 struct text_pos pt;
64114
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5831 int nlines = -iarg;
58175
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5832 int extra_line_spacing;
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5833 int h = window_box_height (w);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
5834
64114
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5835 iarg = - max (-iarg, this_scroll_margin);
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5836
36635
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5837 SET_TEXT_POS (pt, PT, PT_BYTE);
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5838 start_display (&it, w, pt);
58175
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5839
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5840 /* Be sure we have the exact height of the full line containing PT. */
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5841 move_it_by_lines (&it, 0, 1);
36635
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5842
38722
b1f9c6a7a002 (Frecenter): If ARG < 0, and on a window system
Gerd Moellmann <gerd@gnu.org>
parents: 37307
diff changeset
5843 /* The amount of pixels we have to move back is the window
36635
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5844 height minus what's displayed in the line containing PT,
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5845 and the lines below. */
58175
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5846 it.current_y = 0;
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5847 it.vpos = 0;
38722
b1f9c6a7a002 (Frecenter): If ARG < 0, and on a window system
Gerd Moellmann <gerd@gnu.org>
parents: 37307
diff changeset
5848 move_it_by_lines (&it, nlines, 1);
b1f9c6a7a002 (Frecenter): If ARG < 0, and on a window system
Gerd Moellmann <gerd@gnu.org>
parents: 37307
diff changeset
5849
58175
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5850 if (it.vpos == nlines)
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5851 h -= it.current_y;
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5852 else
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5853 {
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5854 /* Last line has no newline */
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5855 h -= line_bottom_y (&it);
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5856 it.vpos++;
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5857 }
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5858
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5859 /* Don't reserve space for extra line spacing of last line. */
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5860 extra_line_spacing = it.max_extra_line_spacing;
38722
b1f9c6a7a002 (Frecenter): If ARG < 0, and on a window system
Gerd Moellmann <gerd@gnu.org>
parents: 37307
diff changeset
5861
b1f9c6a7a002 (Frecenter): If ARG < 0, and on a window system
Gerd Moellmann <gerd@gnu.org>
parents: 37307
diff changeset
5862 /* If we can't move down NLINES lines because we hit
b1f9c6a7a002 (Frecenter): If ARG < 0, and on a window system
Gerd Moellmann <gerd@gnu.org>
parents: 37307
diff changeset
5863 the end of the buffer, count in some empty lines. */
b1f9c6a7a002 (Frecenter): If ARG < 0, and on a window system
Gerd Moellmann <gerd@gnu.org>
parents: 37307
diff changeset
5864 if (it.vpos < nlines)
58175
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5865 {
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5866 nlines -= it.vpos;
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5867 extra_line_spacing = it.extra_line_spacing;
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5868 h -= nlines * (FRAME_LINE_HEIGHT (it.f) + extra_line_spacing);
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5869 }
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5870 if (h <= 0)
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5871 return Qnil;
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5872
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5873 /* Now find the new top line (starting position) of the window. */
36635
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5874 start_display (&it, w, pt);
58175
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5875 it.current_y = 0;
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5876 move_it_vertically_backward (&it, h);
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5877
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5878 /* If extra line spacing is present, we may move too far
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5879 back. This causes the last line to be only partially
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5880 visible (which triggers redisplay to recenter that line
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5881 in the middle), so move forward.
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5882 But ignore extra line spacing on last line, as it is not
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5883 considered to be part of the visible height of the line.
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5884 */
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5885 h += extra_line_spacing;
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5886 while (-it.current_y > h)
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5887 move_it_by_lines (&it, 1, 1);
eeb5474ef89f (window_scroll_pixel_based, Frecenter): Use
Kim F. Storm <storm@cua.dk>
parents: 58083
diff changeset
5888
36635
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5889 charpos = IT_CHARPOS (it);
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5890 bytepos = IT_BYTEPOS (it);
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5891 }
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5892 else
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5893 {
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5894 struct position pos;
64114
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5895
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5896 iarg = max (iarg, this_scroll_margin);
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5897
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5898 pos = *vmotion (PT, -iarg, w);
36635
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5899 charpos = pos.bufpos;
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5900 bytepos = pos.bytepos;
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5901 }
34991
ad94ea6e6549 (Frecenter): Handle centering in graphical frames
Gerd Moellmann <gerd@gnu.org>
parents: 34986
diff changeset
5902 }
ad94ea6e6549 (Frecenter): Handle centering in graphical frames
Gerd Moellmann <gerd@gnu.org>
parents: 34986
diff changeset
5903 else
ad94ea6e6549 (Frecenter): Handle centering in graphical frames
Gerd Moellmann <gerd@gnu.org>
parents: 34986
diff changeset
5904 {
ad94ea6e6549 (Frecenter): Handle centering in graphical frames
Gerd Moellmann <gerd@gnu.org>
parents: 34986
diff changeset
5905 struct position pos;
36635
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5906 int ht = window_internal_height (w);
f85346ef86be (Frecenter): Rewrite code handling negative values
Gerd Moellmann <gerd@gnu.org>
parents: 36471
diff changeset
5907
34991
ad94ea6e6549 (Frecenter): Handle centering in graphical frames
Gerd Moellmann <gerd@gnu.org>
parents: 34986
diff changeset
5908 if (center_p)
64236
667d6d6c7fd9 (Frecenter): Yet another int/Lisp_Object mixup (YAILOM).
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 64134
diff changeset
5909 iarg = ht / 2;
64134
0fcb7f3236c9 (Frecenter): Remove superfluous settings of iarg.
Kim F. Storm <storm@cua.dk>
parents: 64133
diff changeset
5910 else if (iarg < 0)
0fcb7f3236c9 (Frecenter): Remove superfluous settings of iarg.
Kim F. Storm <storm@cua.dk>
parents: 64133
diff changeset
5911 iarg += ht;
64114
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5912
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5913 /* Don't let it get into the margin at either top or bottom. */
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5914 iarg = max (iarg, this_scroll_margin);
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5915 iarg = min (iarg, ht - this_scroll_margin - 1);
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5916
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5917 pos = *vmotion (PT, - iarg, w);
34991
ad94ea6e6549 (Frecenter): Handle centering in graphical frames
Gerd Moellmann <gerd@gnu.org>
parents: 34986
diff changeset
5918 charpos = pos.bufpos;
ad94ea6e6549 (Frecenter): Handle centering in graphical frames
Gerd Moellmann <gerd@gnu.org>
parents: 34986
diff changeset
5919 bytepos = pos.bytepos;
ad94ea6e6549 (Frecenter): Handle centering in graphical frames
Gerd Moellmann <gerd@gnu.org>
parents: 34986
diff changeset
5920 }
ad94ea6e6549 (Frecenter): Handle centering in graphical frames
Gerd Moellmann <gerd@gnu.org>
parents: 34986
diff changeset
5921
ad94ea6e6549 (Frecenter): Handle centering in graphical frames
Gerd Moellmann <gerd@gnu.org>
parents: 34986
diff changeset
5922 /* Set the new window start. */
ad94ea6e6549 (Frecenter): Handle centering in graphical frames
Gerd Moellmann <gerd@gnu.org>
parents: 34986
diff changeset
5923 set_marker_both (w->start, w->buffer, charpos, bytepos);
35024
4ab60becd588 (Frecenter): When changing the window start, set the
Gerd Moellmann <gerd@gnu.org>
parents: 35020
diff changeset
5924 w->window_end_valid = Qnil;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
5925
46108
7b8b4ec9573c (Frecenter): With arg, set optional_new_start.
Richard M. Stallman <rms@gnu.org>
parents: 46021
diff changeset
5926 w->optional_new_start = Qt;
7b8b4ec9573c (Frecenter): With arg, set optional_new_start.
Richard M. Stallman <rms@gnu.org>
parents: 46021
diff changeset
5927
34991
ad94ea6e6549 (Frecenter): Handle centering in graphical frames
Gerd Moellmann <gerd@gnu.org>
parents: 34986
diff changeset
5928 if (bytepos == BEGV_BYTE || FETCH_BYTE (bytepos - 1) == '\n')
ad94ea6e6549 (Frecenter): Handle centering in graphical frames
Gerd Moellmann <gerd@gnu.org>
parents: 34986
diff changeset
5929 w->start_at_line_beg = Qt;
ad94ea6e6549 (Frecenter): Handle centering in graphical frames
Gerd Moellmann <gerd@gnu.org>
parents: 34986
diff changeset
5930 else
ad94ea6e6549 (Frecenter): Handle centering in graphical frames
Gerd Moellmann <gerd@gnu.org>
parents: 34986
diff changeset
5931 w->start_at_line_beg = Qnil;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
5932
34874
3af71a0ef007 (Frecenter): Use displayed_window_lines instead
Gerd Moellmann <gerd@gnu.org>
parents: 34831
diff changeset
5933 set_buffer_internal (obuf);
3af71a0ef007 (Frecenter): Use displayed_window_lines instead
Gerd Moellmann <gerd@gnu.org>
parents: 34831
diff changeset
5934 return Qnil;
3af71a0ef007 (Frecenter): Use displayed_window_lines instead
Gerd Moellmann <gerd@gnu.org>
parents: 34831
diff changeset
5935 }
3af71a0ef007 (Frecenter): Use displayed_window_lines instead
Gerd Moellmann <gerd@gnu.org>
parents: 34831
diff changeset
5936
3af71a0ef007 (Frecenter): Use displayed_window_lines instead
Gerd Moellmann <gerd@gnu.org>
parents: 34831
diff changeset
5937
34416
0d16962724cb (displayed_window_lines): Handle non-newline-terminated final lines properly.
Miles Bader <miles@gnu.org>
parents: 34409
diff changeset
5938 DEFUN ("window-text-height", Fwindow_text_height, Swindow_text_height,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5939 0, 1, 0,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5940 doc: /* Return the height in lines of the text display area of WINDOW.
75753
5e34b32b9b4c (Fwindow_height, Fwindow_hscroll)
Eli Zaretskii <eliz@gnu.org>
parents: 75348
diff changeset
5941 WINDOW defaults to the selected window.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5942 This doesn't include the mode-line (or header-line if any) or any
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5943 partial-height lines in the text display area. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5944 (window)
34416
0d16962724cb (displayed_window_lines): Handle non-newline-terminated final lines properly.
Miles Bader <miles@gnu.org>
parents: 34409
diff changeset
5945 Lisp_Object window;
0d16962724cb (displayed_window_lines): Handle non-newline-terminated final lines properly.
Miles Bader <miles@gnu.org>
parents: 34409
diff changeset
5946 {
0d16962724cb (displayed_window_lines): Handle non-newline-terminated final lines properly.
Miles Bader <miles@gnu.org>
parents: 34409
diff changeset
5947 struct window *w = decode_window (window);
0d16962724cb (displayed_window_lines): Handle non-newline-terminated final lines properly.
Miles Bader <miles@gnu.org>
parents: 34409
diff changeset
5948 int pixel_height = window_box_height (w);
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
5949 int line_height = pixel_height / FRAME_LINE_HEIGHT (XFRAME (w->frame));
34416
0d16962724cb (displayed_window_lines): Handle non-newline-terminated final lines properly.
Miles Bader <miles@gnu.org>
parents: 34409
diff changeset
5950 return make_number (line_height);
0d16962724cb (displayed_window_lines): Handle non-newline-terminated final lines properly.
Miles Bader <miles@gnu.org>
parents: 34409
diff changeset
5951 }
0d16962724cb (displayed_window_lines): Handle non-newline-terminated final lines properly.
Miles Bader <miles@gnu.org>
parents: 34409
diff changeset
5952
0d16962724cb (displayed_window_lines): Handle non-newline-terminated final lines properly.
Miles Bader <miles@gnu.org>
parents: 34409
diff changeset
5953
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5954
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5955 DEFUN ("move-to-window-line", Fmove_to_window_line, Smove_to_window_line,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5956 1, 1, "P",
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5957 doc: /* Position point relative to window.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5958 With no argument, position point at center of window.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5959 An argument specifies vertical position within the window;
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5960 zero means top of window, negative means relative to bottom of window. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
5961 (arg)
29485
362c61b5411b (displayed_window_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28918
diff changeset
5962 Lisp_Object arg;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5963 {
29485
362c61b5411b (displayed_window_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28918
diff changeset
5964 struct window *w = XWINDOW (selected_window);
362c61b5411b (displayed_window_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28918
diff changeset
5965 int lines, start;
6326
5e662ad3f594 (Fdelete_other_windows): Pass new arg to Fvertical_motion.
Richard M. Stallman <rms@gnu.org>
parents: 6269
diff changeset
5966 Lisp_Object window;
64114
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5967 #if 0
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5968 int this_scroll_margin;
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5969 #endif
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5970
29485
362c61b5411b (displayed_window_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28918
diff changeset
5971 window = selected_window;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5972 start = marker_position (w->start);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5973 if (start < BEGV || start > ZV)
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5974 {
29485
362c61b5411b (displayed_window_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28918
diff changeset
5975 int height = window_internal_height (w);
6341
dfc758dd2b08 (window_scroll, Fmove_to_window_line): Avoid dividing negative numbers,
Karl Heuer <kwzh@gnu.org>
parents: 6326
diff changeset
5976 Fvertical_motion (make_number (- (height / 2)), window);
20535
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
5977 set_marker_both (w->start, w->buffer, PT, PT_BYTE);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5978 w->start_at_line_beg = Fbolp ();
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5979 w->force_start = Qt;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5980 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5981 else
20535
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
5982 Fgoto_char (w->start);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5983
29485
362c61b5411b (displayed_window_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28918
diff changeset
5984 lines = displayed_window_lines (w);
64114
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5985
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5986 #if 0
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5987 this_scroll_margin = max (0, scroll_margin);
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5988 this_scroll_margin = min (this_scroll_margin, lines / 4);
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5989 #endif
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5990
29485
362c61b5411b (displayed_window_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28918
diff changeset
5991 if (NILP (arg))
362c61b5411b (displayed_window_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28918
diff changeset
5992 XSETFASTINT (arg, lines / 2);
362c61b5411b (displayed_window_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28918
diff changeset
5993 else
362c61b5411b (displayed_window_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28918
diff changeset
5994 {
64114
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5995 int iarg = XINT (Fprefix_numeric_value (arg));
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5996
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5997 if (iarg < 0)
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5998 iarg = iarg + lines;
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
5999
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
6000 #if 0 /* This code would prevent move-to-window-line from moving point
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
6001 to a place inside the scroll margins (which would cause the
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
6002 next redisplay to scroll). I wrote this code, but then concluded
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
6003 it is probably better not to install it. However, it is here
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
6004 inside #if 0 so as not to lose it. -- rms. */
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
6005
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
6006 /* Don't let it get into the margin at either top or bottom. */
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
6007 iarg = max (iarg, this_scroll_margin);
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
6008 iarg = min (iarg, lines - this_scroll_margin - 1);
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
6009 #endif
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
6010
51f6009d047b (Frecenter): When arg is inside the scroll margin, move it out of the margin.
Richard M. Stallman <rms@gnu.org>
parents: 64084
diff changeset
6011 arg = make_number (iarg);
29485
362c61b5411b (displayed_window_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28918
diff changeset
6012 }
362c61b5411b (displayed_window_lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28918
diff changeset
6013
36202
8d5b7f742286 (Fmove_to_window_line): Undo last change.
Gerd Moellmann <gerd@gnu.org>
parents: 36133
diff changeset
6014 /* Skip past a partially visible first line. */
34384
9669bb49fca2 (Fmove_to_window_line): Skip past any partially visible first line.
Miles Bader <miles@gnu.org>
parents: 34381
diff changeset
6015 if (w->vscroll)
9669bb49fca2 (Fmove_to_window_line): Skip past any partially visible first line.
Miles Bader <miles@gnu.org>
parents: 34381
diff changeset
6016 XSETINT (arg, XINT (arg) + 1);
9669bb49fca2 (Fmove_to_window_line): Skip past any partially visible first line.
Miles Bader <miles@gnu.org>
parents: 34381
diff changeset
6017
6326
5e662ad3f594 (Fdelete_other_windows): Pass new arg to Fvertical_motion.
Richard M. Stallman <rms@gnu.org>
parents: 6269
diff changeset
6018 return Fvertical_motion (arg, window);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6019 }
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6020
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6021
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6022
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6023 /***********************************************************************
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6024 Window Configuration
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6025 ***********************************************************************/
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6026
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6027 struct save_window_data
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6028 {
15712
a272ccf6c225 (struct save_window_data, struct saved_window): First
Karl Heuer <kwzh@gnu.org>
parents: 15385
diff changeset
6029 EMACS_INT size_from_Lisp_Vector_struct;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6030 struct Lisp_Vector *next_from_Lisp_Vector_struct;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6031 Lisp_Object frame_cols, frame_lines, frame_menu_bar_lines;
25544
693ca9ba497a Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents: 25540
diff changeset
6032 Lisp_Object frame_tool_bar_lines;
1325
f03e559aac3e * window.c (struct save_window_data): Save the currently selected
Jim Blandy <jimb@redhat.com>
parents: 1280
diff changeset
6033 Lisp_Object selected_frame;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6034 Lisp_Object current_window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6035 Lisp_Object current_buffer;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6036 Lisp_Object minibuf_scroll_window;
43571
d3b03dea29d4 (Vminibuf_selected_window): New variable.
Kim F. Storm <storm@cua.dk>
parents: 43281
diff changeset
6037 Lisp_Object minibuf_selected_window;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6038 Lisp_Object root_window;
1325
f03e559aac3e * window.c (struct save_window_data): Save the currently selected
Jim Blandy <jimb@redhat.com>
parents: 1280
diff changeset
6039 Lisp_Object focus_frame;
8931
c64388cd7346 (struct saved_window_data): New slots min_width, min_height.
Richard M. Stallman <rms@gnu.org>
parents: 8536
diff changeset
6040 /* Record the values of window-min-width and window-min-height
c64388cd7346 (struct saved_window_data): New slots min_width, min_height.
Richard M. Stallman <rms@gnu.org>
parents: 8536
diff changeset
6041 so that window sizes remain consistent with them. */
c64388cd7346 (struct saved_window_data): New slots min_width, min_height.
Richard M. Stallman <rms@gnu.org>
parents: 8536
diff changeset
6042 Lisp_Object min_width, min_height;
20777
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
6043 /* A vector, each of whose elements is a struct saved_window
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
6044 for one window. */
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6045 Lisp_Object saved_windows;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6046 };
1326
709532b86646 * window.c (SAVE_WINDOW_DATA_SIZE): Define this using sizeof,
Jim Blandy <jimb@redhat.com>
parents: 1325
diff changeset
6047
20777
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
6048 /* This is saved as a Lisp_Vector */
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6049 struct saved_window
34747
b17790c2efbf (make_window): Initialize window's min_hscroll.
Gerd Moellmann <gerd@gnu.org>
parents: 34735
diff changeset
6050 {
b17790c2efbf (make_window): Initialize window's min_hscroll.
Gerd Moellmann <gerd@gnu.org>
parents: 34735
diff changeset
6051 /* these first two must agree with struct Lisp_Vector in lisp.h */
b17790c2efbf (make_window): Initialize window's min_hscroll.
Gerd Moellmann <gerd@gnu.org>
parents: 34735
diff changeset
6052 EMACS_INT size_from_Lisp_Vector_struct;
b17790c2efbf (make_window): Initialize window's min_hscroll.
Gerd Moellmann <gerd@gnu.org>
parents: 34735
diff changeset
6053 struct Lisp_Vector *next_from_Lisp_Vector_struct;
b17790c2efbf (make_window): Initialize window's min_hscroll.
Gerd Moellmann <gerd@gnu.org>
parents: 34735
diff changeset
6054
b17790c2efbf (make_window): Initialize window's min_hscroll.
Gerd Moellmann <gerd@gnu.org>
parents: 34735
diff changeset
6055 Lisp_Object window;
b17790c2efbf (make_window): Initialize window's min_hscroll.
Gerd Moellmann <gerd@gnu.org>
parents: 34735
diff changeset
6056 Lisp_Object buffer, start, pointm, mark;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6057 Lisp_Object left_col, top_line, total_cols, total_lines;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6058 Lisp_Object hscroll, min_hscroll;
34747
b17790c2efbf (make_window): Initialize window's min_hscroll.
Gerd Moellmann <gerd@gnu.org>
parents: 34735
diff changeset
6059 Lisp_Object parent, prev;
b17790c2efbf (make_window): Initialize window's min_hscroll.
Gerd Moellmann <gerd@gnu.org>
parents: 34735
diff changeset
6060 Lisp_Object start_at_line_beg;
b17790c2efbf (make_window): Initialize window's min_hscroll.
Gerd Moellmann <gerd@gnu.org>
parents: 34735
diff changeset
6061 Lisp_Object display_table;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6062 Lisp_Object orig_top_line, orig_total_lines;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6063 Lisp_Object left_margin_cols, right_margin_cols;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6064 Lisp_Object left_fringe_width, right_fringe_width, fringes_outside_margins;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6065 Lisp_Object scroll_bar_width, vertical_scroll_bar_type;
71041
8aeb086972ae (struct saved_window): Add `dedicated'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 70736
diff changeset
6066 Lisp_Object dedicated;
34747
b17790c2efbf (make_window): Initialize window's min_hscroll.
Gerd Moellmann <gerd@gnu.org>
parents: 34735
diff changeset
6067 };
b17790c2efbf (make_window): Initialize window's min_hscroll.
Gerd Moellmann <gerd@gnu.org>
parents: 34735
diff changeset
6068
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6069 #define SAVED_WINDOW_N(swv,n) \
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6070 ((struct saved_window *) (XVECTOR ((swv)->contents[(n)])))
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6071
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6072 DEFUN ("window-configuration-p", Fwindow_configuration_p, Swindow_configuration_p, 1, 1, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6073 doc: /* Return t if OBJECT is a window-configuration object. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6074 (object)
14089
415aa106fa17 (Fwindowp, Fwindow_live_p, Fother_window, Fenlarge_window, Fshrink_window,
Erik Naggum <erik@naggum.no>
parents: 14027
diff changeset
6075 Lisp_Object object;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6076 {
71041
8aeb086972ae (struct saved_window): Add `dedicated'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 70736
diff changeset
6077 return WINDOW_CONFIGURATIONP (object) ? Qt : Qnil;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6078 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6079
23410
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
6080 DEFUN ("window-configuration-frame", Fwindow_configuration_frame, Swindow_configuration_frame, 1, 1, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6081 doc: /* Return the frame that CONFIG, a window-configuration object, is about. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6082 (config)
23410
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
6083 Lisp_Object config;
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
6084 {
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
6085 register struct save_window_data *data;
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
6086 struct Lisp_Vector *saved_windows;
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
6087
71844
632e73258d36 (Fwindow_configuration_frame, Fset_window_configuration):
Kim F. Storm <storm@cua.dk>
parents: 71717
diff changeset
6088 CHECK_WINDOW_CONFIGURATION (config);
23410
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
6089
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
6090 data = (struct save_window_data *) XVECTOR (config);
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
6091 saved_windows = XVECTOR (data->saved_windows);
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
6092 return XWINDOW (SAVED_WINDOW_N (saved_windows, 0)->window)->frame;
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
6093 }
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
6094
2297
bb88d48c290f (Fselect_window): Use Fhandle_switch_frame.
Richard M. Stallman <rms@gnu.org>
parents: 2210
diff changeset
6095 DEFUN ("set-window-configuration", Fset_window_configuration,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6096 Sset_window_configuration, 1, 1, 0,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6097 doc: /* Set the configuration of windows and buffers as specified by CONFIGURATION.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6098 CONFIGURATION must be a value previously returned
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6099 by `current-window-configuration' (which see).
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6100 If CONFIGURATION was made from a frame that is now deleted,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6101 only frame-independent values can be restored. In this case,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6102 the return value is nil. Otherwise the value is t. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6103 (configuration)
1016
817b0ce337d7 * window.c (Fset_window_configuration): Removed #if 0'd code which
Jim Blandy <jimb@redhat.com>
parents: 983
diff changeset
6104 Lisp_Object configuration;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6105 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6106 register struct save_window_data *data;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6107 struct Lisp_Vector *saved_windows;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6108 Lisp_Object new_current_buffer;
1685
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6109 Lisp_Object frame;
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
6110 FRAME_PTR f;
45835
aab759361c24 (Fset_window_configuration): Explicitly preserve
Richard M. Stallman <rms@gnu.org>
parents: 45645
diff changeset
6111 int old_point = -1;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6112
71844
632e73258d36 (Fwindow_configuration_frame, Fset_window_configuration):
Kim F. Storm <storm@cua.dk>
parents: 71717
diff changeset
6113 CHECK_WINDOW_CONFIGURATION (configuration);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6114
1016
817b0ce337d7 * window.c (Fset_window_configuration): Removed #if 0'd code which
Jim Blandy <jimb@redhat.com>
parents: 983
diff changeset
6115 data = (struct save_window_data *) XVECTOR (configuration);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6116 saved_windows = XVECTOR (data->saved_windows);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6117
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6118 new_current_buffer = data->current_buffer;
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
6119 if (NILP (XBUFFER (new_current_buffer)->name))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6120 new_current_buffer = Qnil;
45835
aab759361c24 (Fset_window_configuration): Explicitly preserve
Richard M. Stallman <rms@gnu.org>
parents: 45645
diff changeset
6121 else
48898
3b18ddd398f8 (Fset_window_configuration): Set old_point to correct
David Kastrup <dak@gnu.org>
parents: 47973
diff changeset
6122 {
3b18ddd398f8 (Fset_window_configuration): Set old_point to correct
David Kastrup <dak@gnu.org>
parents: 47973
diff changeset
6123 if (XBUFFER (new_current_buffer) == current_buffer)
67234
f1564d57f6a1 (Fset_window_configuration): Don't accidentally copy the
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 67156
diff changeset
6124 /* The code further down "preserves point" by saving here PT in
f1564d57f6a1 (Fset_window_configuration): Don't accidentally copy the
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 67156
diff changeset
6125 old_point and then setting it later back into PT. When the
f1564d57f6a1 (Fset_window_configuration): Don't accidentally copy the
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 67156
diff changeset
6126 current-selected-window and the final-selected-window both show
f1564d57f6a1 (Fset_window_configuration): Don't accidentally copy the
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 67156
diff changeset
6127 the current buffer, this suffers from the problem that the
f1564d57f6a1 (Fset_window_configuration): Don't accidentally copy the
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 67156
diff changeset
6128 current PT is the window-point of the current-selected-window,
f1564d57f6a1 (Fset_window_configuration): Don't accidentally copy the
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 67156
diff changeset
6129 while the final PT is the point of the final-selected-window, so
f1564d57f6a1 (Fset_window_configuration): Don't accidentally copy the
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 67156
diff changeset
6130 this copy from one PT to the other would end up moving the
f1564d57f6a1 (Fset_window_configuration): Don't accidentally copy the
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 67156
diff changeset
6131 window-point of the final-selected-window to the window-point of
f1564d57f6a1 (Fset_window_configuration): Don't accidentally copy the
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 67156
diff changeset
6132 the current-selected-window. So we have to be careful which
f1564d57f6a1 (Fset_window_configuration): Don't accidentally copy the
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 67156
diff changeset
6133 point of the current-buffer we copy into old_point. */
f1564d57f6a1 (Fset_window_configuration): Don't accidentally copy the
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 67156
diff changeset
6134 if (EQ (XWINDOW (data->current_window)->buffer, new_current_buffer)
f1564d57f6a1 (Fset_window_configuration): Don't accidentally copy the
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 67156
diff changeset
6135 && WINDOWP (selected_window)
f1564d57f6a1 (Fset_window_configuration): Don't accidentally copy the
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 67156
diff changeset
6136 && EQ (XWINDOW (selected_window)->buffer, new_current_buffer)
f1564d57f6a1 (Fset_window_configuration): Don't accidentally copy the
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 67156
diff changeset
6137 && !EQ (selected_window, data->current_window))
f1564d57f6a1 (Fset_window_configuration): Don't accidentally copy the
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 67156
diff changeset
6138 old_point = XMARKER (XWINDOW (data->current_window)->pointm)->charpos;
f1564d57f6a1 (Fset_window_configuration): Don't accidentally copy the
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 67156
diff changeset
6139 else
f1564d57f6a1 (Fset_window_configuration): Don't accidentally copy the
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 67156
diff changeset
6140 old_point = PT;
48898
3b18ddd398f8 (Fset_window_configuration): Set old_point to correct
David Kastrup <dak@gnu.org>
parents: 47973
diff changeset
6141 else
61511
db63a29e7669 (Fset_window_configuration): Be careful when you choose
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 61444
diff changeset
6142 /* BUF_PT (XBUFFER (new_current_buffer)) gives us the position of
db63a29e7669 (Fset_window_configuration): Be careful when you choose
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 61444
diff changeset
6143 point in new_current_buffer as of the last time this buffer was
db63a29e7669 (Fset_window_configuration): Be careful when you choose
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 61444
diff changeset
6144 used. This can be non-deterministic since it can be changed by
db63a29e7669 (Fset_window_configuration): Be careful when you choose
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 61444
diff changeset
6145 things like jit-lock by mere temporary selection of some random
db63a29e7669 (Fset_window_configuration): Be careful when you choose
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 61444
diff changeset
6146 window that happens to show this buffer.
db63a29e7669 (Fset_window_configuration): Be careful when you choose
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 61444
diff changeset
6147 So if possible we want this arbitrary choice of "which point" to
db63a29e7669 (Fset_window_configuration): Be careful when you choose
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 61444
diff changeset
6148 be the one from the to-be-selected-window so as to prevent this
db63a29e7669 (Fset_window_configuration): Be careful when you choose
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 61444
diff changeset
6149 window's cursor from being copied from another window. */
db63a29e7669 (Fset_window_configuration): Be careful when you choose
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 61444
diff changeset
6150 if (EQ (XWINDOW (data->current_window)->buffer, new_current_buffer)
db63a29e7669 (Fset_window_configuration): Be careful when you choose
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 61444
diff changeset
6151 /* If current_window = selected_window, its point is in BUF_PT. */
db63a29e7669 (Fset_window_configuration): Be careful when you choose
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 61444
diff changeset
6152 && !EQ (selected_window, data->current_window))
db63a29e7669 (Fset_window_configuration): Be careful when you choose
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 61444
diff changeset
6153 old_point = XMARKER (XWINDOW (data->current_window)->pointm)->charpos;
db63a29e7669 (Fset_window_configuration): Be careful when you choose
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 61444
diff changeset
6154 else
db63a29e7669 (Fset_window_configuration): Be careful when you choose
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 61444
diff changeset
6155 old_point = BUF_PT (XBUFFER (new_current_buffer));
48898
3b18ddd398f8 (Fset_window_configuration): Set old_point to correct
David Kastrup <dak@gnu.org>
parents: 47973
diff changeset
6156 }
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6157
1685
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6158 frame = XWINDOW (SAVED_WINDOW_N (saved_windows, 0)->window)->frame;
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6159 f = XFRAME (frame);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
6160
1685
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6161 /* If f is a dead frame, don't bother rebuilding its window tree.
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6162 However, there is other stuff we should still try to do below. */
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6163 if (FRAME_LIVE_P (f))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6164 {
1685
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6165 register struct window *w;
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6166 register struct saved_window *p;
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6167 struct window *root_window;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6168 struct window **leaf_windows;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6169 int n_leaf_windows;
33277
8239087d52c5 (Fset_window_configuration): Don't try to preserve
Gerd Moellmann <gerd@gnu.org>
parents: 33255
diff changeset
6170 int k, i, n;
1685
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6171
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6172 /* If the frame has been resized since this window configuration was
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6173 made, we change the frame to the size specified in the
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6174 configuration, restore the configuration, and then resize it
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6175 back. We keep track of the prevailing height in these variables. */
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6176 int previous_frame_lines = FRAME_LINES (f);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6177 int previous_frame_cols = FRAME_COLS (f);
6099
19eaf70457d4 (Fset_window_configuration): Allow for menu-bar-lines to have changed since
Karl Heuer <kwzh@gnu.org>
parents: 5990
diff changeset
6178 int previous_frame_menu_bar_lines = FRAME_MENU_BAR_LINES (f);
25544
693ca9ba497a Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents: 25540
diff changeset
6179 int previous_frame_tool_bar_lines = FRAME_TOOL_BAR_LINES (f);
1685
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6180
18657
1dc4d7e374d5 Include blockinput.h.
Richard M. Stallman <rms@gnu.org>
parents: 18493
diff changeset
6181 /* The mouse highlighting code could get screwed up
1dc4d7e374d5 Include blockinput.h.
Richard M. Stallman <rms@gnu.org>
parents: 18493
diff changeset
6182 if it runs during this. */
1dc4d7e374d5 Include blockinput.h.
Richard M. Stallman <rms@gnu.org>
parents: 18493
diff changeset
6183 BLOCK_INPUT;
1dc4d7e374d5 Include blockinput.h.
Richard M. Stallman <rms@gnu.org>
parents: 18493
diff changeset
6184
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6185 if (XFASTINT (data->frame_lines) != previous_frame_lines
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6186 || XFASTINT (data->frame_cols) != previous_frame_cols)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6187 change_frame_size (f, XFASTINT (data->frame_lines),
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6188 XFASTINT (data->frame_cols), 0, 0, 0);
16051
ccf489f8596e Removed support for !MULTI_FRAME.
Karl Heuer <kwzh@gnu.org>
parents: 16039
diff changeset
6189 #if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS)
6099
19eaf70457d4 (Fset_window_configuration): Allow for menu-bar-lines to have changed since
Karl Heuer <kwzh@gnu.org>
parents: 5990
diff changeset
6190 if (XFASTINT (data->frame_menu_bar_lines)
19eaf70457d4 (Fset_window_configuration): Allow for menu-bar-lines to have changed since
Karl Heuer <kwzh@gnu.org>
parents: 5990
diff changeset
6191 != previous_frame_menu_bar_lines)
21533
b7df83bf15ff (Fset_window_configuration): Fix mixing of Lisp_Object
Andreas Schwab <schwab@suse.de>
parents: 21514
diff changeset
6192 x_set_menu_bar_lines (f, data->frame_menu_bar_lines, make_number (0));
25115
2105537c5916 (Fset_window_configuration) [MSDOS]: Don't call
Eli Zaretskii <eliz@gnu.org>
parents: 25044
diff changeset
6193 #ifdef HAVE_WINDOW_SYSTEM
25544
693ca9ba497a Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents: 25540
diff changeset
6194 if (XFASTINT (data->frame_tool_bar_lines)
693ca9ba497a Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents: 25540
diff changeset
6195 != previous_frame_tool_bar_lines)
693ca9ba497a Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents: 25540
diff changeset
6196 x_set_tool_bar_lines (f, data->frame_tool_bar_lines, make_number (0));
6852
5cc78dd8efc3 (Fset_window_configuration): Only call X fns if HAVE_X_WINDOWS.
Karl Heuer <kwzh@gnu.org>
parents: 6851
diff changeset
6197 #endif
25115
2105537c5916 (Fset_window_configuration) [MSDOS]: Don't call
Eli Zaretskii <eliz@gnu.org>
parents: 25044
diff changeset
6198 #endif
1685
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6199
61444
8e54037fa085 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 60198
diff changeset
6200 /* "Swap out" point from the selected window's buffer
8e54037fa085 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 60198
diff changeset
6201 into the window itself. (Normally the pointm of the selected
8e54037fa085 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 60198
diff changeset
6202 window holds garbage.) We do this now, before
27869
1322db65a230 (select_window_1): If selected_window is nil,
Gerd Moellmann <gerd@gnu.org>
parents: 27850
diff changeset
6203 restoring the window contents, and prevent it from
1322db65a230 (select_window_1): If selected_window is nil,
Gerd Moellmann <gerd@gnu.org>
parents: 27850
diff changeset
6204 being done later on when we select a new window. */
20627
0753fa7a67f3 (Fselect_window): Don't set OW->pointm if OW->buffer is nil.
Richard M. Stallman <rms@gnu.org>
parents: 20535
diff changeset
6205 if (! NILP (XWINDOW (selected_window)->buffer))
0753fa7a67f3 (Fselect_window): Don't set OW->pointm if OW->buffer is nil.
Richard M. Stallman <rms@gnu.org>
parents: 20535
diff changeset
6206 {
0753fa7a67f3 (Fselect_window): Don't set OW->pointm if OW->buffer is nil.
Richard M. Stallman <rms@gnu.org>
parents: 20535
diff changeset
6207 w = XWINDOW (selected_window);
0753fa7a67f3 (Fselect_window): Don't set OW->pointm if OW->buffer is nil.
Richard M. Stallman <rms@gnu.org>
parents: 20535
diff changeset
6208 set_marker_both (w->pointm,
0753fa7a67f3 (Fselect_window): Don't set OW->pointm if OW->buffer is nil.
Richard M. Stallman <rms@gnu.org>
parents: 20535
diff changeset
6209 w->buffer,
0753fa7a67f3 (Fselect_window): Don't set OW->pointm if OW->buffer is nil.
Richard M. Stallman <rms@gnu.org>
parents: 20535
diff changeset
6210 BUF_PT (XBUFFER (w->buffer)),
0753fa7a67f3 (Fselect_window): Don't set OW->pointm if OW->buffer is nil.
Richard M. Stallman <rms@gnu.org>
parents: 20535
diff changeset
6211 BUF_PT_BYTE (XBUFFER (w->buffer)));
0753fa7a67f3 (Fselect_window): Don't set OW->pointm if OW->buffer is nil.
Richard M. Stallman <rms@gnu.org>
parents: 20535
diff changeset
6212 }
0753fa7a67f3 (Fselect_window): Don't set OW->pointm if OW->buffer is nil.
Richard M. Stallman <rms@gnu.org>
parents: 20535
diff changeset
6213
1685
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6214 windows_or_buffers_changed++;
10666
e1dfb47b664e (Fdelete_window, set_window_height, set_window_width)
Richard M. Stallman <rms@gnu.org>
parents: 10461
diff changeset
6215 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
1685
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6216
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6217 /* Problem: Freeing all matrices and later allocating them again
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
6218 is a serious redisplay flickering problem. What we would
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6219 really like to do is to free only those matrices not reused
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6220 below. */
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6221 root_window = XWINDOW (FRAME_ROOT_WINDOW (f));
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6222 leaf_windows
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6223 = (struct window **) alloca (count_windows (root_window)
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6224 * sizeof (struct window *));
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6225 n_leaf_windows = get_leaf_windows (root_window, leaf_windows, 0);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6226
8931
c64388cd7346 (struct saved_window_data): New slots min_width, min_height.
Richard M. Stallman <rms@gnu.org>
parents: 8536
diff changeset
6227 /* Temporarily avoid any problems with windows that are smaller
c64388cd7346 (struct saved_window_data): New slots min_width, min_height.
Richard M. Stallman <rms@gnu.org>
parents: 8536
diff changeset
6228 than they are supposed to be. */
c64388cd7346 (struct saved_window_data): New slots min_width, min_height.
Richard M. Stallman <rms@gnu.org>
parents: 8536
diff changeset
6229 window_min_height = 1;
c64388cd7346 (struct saved_window_data): New slots min_width, min_height.
Richard M. Stallman <rms@gnu.org>
parents: 8536
diff changeset
6230 window_min_width = 1;
c64388cd7346 (struct saved_window_data): New slots min_width, min_height.
Richard M. Stallman <rms@gnu.org>
parents: 8536
diff changeset
6231
1685
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6232 /* Kludge Alert!
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6233 Mark all windows now on frame as "deleted".
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6234 Restoring the new configuration "undeletes" any that are in it.
14536
12de7dac154b (display_buffer_1): Fix typo in last change.
Roland McGrath <roland@gnu.org>
parents: 14535
diff changeset
6235
1685
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6236 Save their current buffers in their height fields, since we may
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6237 need it later, if a buffer saved in the configuration is now
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6238 dead. */
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6239 delete_all_subwindows (XWINDOW (FRAME_ROOT_WINDOW (f)));
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6240
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6241 for (k = 0; k < saved_windows->size; k++)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6242 {
1685
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6243 p = SAVED_WINDOW_N (saved_windows, k);
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6244 w = XWINDOW (p->window);
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6245 w->next = Qnil;
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6246
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6247 if (!NILP (p->parent))
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6248 w->parent = SAVED_WINDOW_N (saved_windows,
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6249 XFASTINT (p->parent))->window;
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6250 else
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6251 w->parent = Qnil;
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6252
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6253 if (!NILP (p->prev))
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6254 {
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6255 w->prev = SAVED_WINDOW_N (saved_windows,
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6256 XFASTINT (p->prev))->window;
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6257 XWINDOW (w->prev)->next = p->window;
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6258 }
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6259 else
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6260 {
1685
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6261 w->prev = Qnil;
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6262 if (!NILP (w->parent))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6263 {
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6264 if (EQ (p->total_cols, XWINDOW (w->parent)->total_cols))
1685
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6265 {
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6266 XWINDOW (w->parent)->vchild = p->window;
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6267 XWINDOW (w->parent)->hchild = Qnil;
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6268 }
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6269 else
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6270 {
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6271 XWINDOW (w->parent)->hchild = p->window;
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6272 XWINDOW (w->parent)->vchild = Qnil;
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6273 }
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6274 }
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6275 }
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6276
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6277 /* If we squirreled away the buffer in the window's height,
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6278 restore it now. */
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6279 if (BUFFERP (w->total_lines))
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6280 w->buffer = w->total_lines;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6281 w->left_col = p->left_col;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6282 w->top_line = p->top_line;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6283 w->total_cols = p->total_cols;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6284 w->total_lines = p->total_lines;
1685
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6285 w->hscroll = p->hscroll;
34747
b17790c2efbf (make_window): Initialize window's min_hscroll.
Gerd Moellmann <gerd@gnu.org>
parents: 34735
diff changeset
6286 w->min_hscroll = p->min_hscroll;
1685
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6287 w->display_table = p->display_table;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6288 w->orig_top_line = p->orig_top_line;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6289 w->orig_total_lines = p->orig_total_lines;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6290 w->left_margin_cols = p->left_margin_cols;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6291 w->right_margin_cols = p->right_margin_cols;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6292 w->left_fringe_width = p->left_fringe_width;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6293 w->right_fringe_width = p->right_fringe_width;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6294 w->fringes_outside_margins = p->fringes_outside_margins;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6295 w->scroll_bar_width = p->scroll_bar_width;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6296 w->vertical_scroll_bar_type = p->vertical_scroll_bar_type;
71041
8aeb086972ae (struct saved_window): Add `dedicated'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 70736
diff changeset
6297 w->dedicated = p->dedicated;
9324
ac6a5691607f (make_window, Fset_window_hscroll, Fset_window_start, set_window_height,
Karl Heuer <kwzh@gnu.org>
parents: 9282
diff changeset
6298 XSETFASTINT (w->last_modified, 0);
16208
e3a834653117 (Fset_window_start): Clear last_overlay_modified field.
Richard M. Stallman <rms@gnu.org>
parents: 16068
diff changeset
6299 XSETFASTINT (w->last_overlay_modified, 0);
1685
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6300
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6301 /* Reinstall the saved buffer and pointers into it. */
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6302 if (NILP (p->buffer))
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6303 w->buffer = p->buffer;
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6304 else
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6305 {
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6306 if (!NILP (XBUFFER (p->buffer)->name))
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6307 /* If saved buffer is alive, install it. */
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6308 {
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6309 w->buffer = p->buffer;
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6310 w->start_at_line_beg = p->start_at_line_beg;
20535
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
6311 set_marker_restricted (w->start, p->start, w->buffer);
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
6312 set_marker_restricted (w->pointm, p->pointm, w->buffer);
1685
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6313 Fset_marker (XBUFFER (w->buffer)->mark,
20535
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
6314 p->mark, w->buffer);
1685
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6315
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6316 /* As documented in Fcurrent_window_configuration, don't
45584
5fd12f9027a3 (Fset_window_configuration): Correct the handling
Richard M. Stallman <rms@gnu.org>
parents: 45562
diff changeset
6317 restore the location of point in the buffer which was
5fd12f9027a3 (Fset_window_configuration): Correct the handling
Richard M. Stallman <rms@gnu.org>
parents: 45562
diff changeset
6318 current when the window configuration was recorded. */
7618
45298374e242 (change_window_height): Test for DELTA too small
Richard M. Stallman <rms@gnu.org>
parents: 7545
diff changeset
6319 if (!EQ (p->buffer, new_current_buffer)
45298374e242 (change_window_height): Test for DELTA too small
Richard M. Stallman <rms@gnu.org>
parents: 7545
diff changeset
6320 && XBUFFER (p->buffer) == current_buffer)
1685
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6321 Fgoto_char (w->pointm);
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6322 }
3535
581c09f72dbd (Fset_window_configuration): If a window is supposed
Richard M. Stallman <rms@gnu.org>
parents: 3354
diff changeset
6323 else if (NILP (w->buffer) || NILP (XBUFFER (w->buffer)->name))
581c09f72dbd (Fset_window_configuration): If a window is supposed
Richard M. Stallman <rms@gnu.org>
parents: 3354
diff changeset
6324 /* Else unless window has a live buffer, get one. */
1685
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6325 {
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6326 w->buffer = Fcdr (Fcar (Vbuffer_alist));
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6327 /* This will set the markers to beginning of visible
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6328 range. */
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6329 set_marker_restricted (w->start, make_number (0), w->buffer);
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6330 set_marker_restricted (w->pointm, make_number (0),w->buffer);
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6331 w->start_at_line_beg = Qt;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6332 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6333 else
1685
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6334 /* Keeping window's old buffer; make sure the markers
3535
581c09f72dbd (Fset_window_configuration): If a window is supposed
Richard M. Stallman <rms@gnu.org>
parents: 3354
diff changeset
6335 are real. */
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6336 {
1685
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6337 /* Set window markers at start of visible range. */
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6338 if (XMARKER (w->start)->buffer == 0)
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6339 set_marker_restricted (w->start, make_number (0),
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6340 w->buffer);
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6341 if (XMARKER (w->pointm)->buffer == 0)
20535
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
6342 set_marker_restricted_both (w->pointm, w->buffer,
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
6343 BUF_PT (XBUFFER (w->buffer)),
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
6344 BUF_PT_BYTE (XBUFFER (w->buffer)));
1685
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6345 w->start_at_line_beg = Qt;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6346 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6347 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6348 }
1237
3929b2135e58 * window.c (delete_all_subwindows): Save the window's buffer in
Jim Blandy <jimb@redhat.com>
parents: 1123
diff changeset
6349
1685
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6350 FRAME_ROOT_WINDOW (f) = data->root_window;
27869
1322db65a230 (select_window_1): If selected_window is nil,
Gerd Moellmann <gerd@gnu.org>
parents: 27850
diff changeset
6351 /* Prevent "swapping out point" in the old selected window
1322db65a230 (select_window_1): If selected_window is nil,
Gerd Moellmann <gerd@gnu.org>
parents: 27850
diff changeset
6352 using the buffer that has been restored into it.
61444
8e54037fa085 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 60198
diff changeset
6353 We already swapped out point that from that window's old buffer. */
27869
1322db65a230 (select_window_1): If selected_window is nil,
Gerd Moellmann <gerd@gnu.org>
parents: 27850
diff changeset
6354 selected_window = Qnil;
61444
8e54037fa085 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 60198
diff changeset
6355
8e54037fa085 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 60198
diff changeset
6356 /* Arrange *not* to restore point in the buffer that was
8e54037fa085 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 60198
diff changeset
6357 current when the window configuration was saved. */
45584
5fd12f9027a3 (Fset_window_configuration): Correct the handling
Richard M. Stallman <rms@gnu.org>
parents: 45562
diff changeset
6358 if (EQ (XWINDOW (data->current_window)->buffer, new_current_buffer))
5fd12f9027a3 (Fset_window_configuration): Correct the handling
Richard M. Stallman <rms@gnu.org>
parents: 45562
diff changeset
6359 set_marker_restricted (XWINDOW (data->current_window)->pointm,
45880
8108a2dd551c (Fset_window_configuration): Lisp_Object/int mixup.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 45835
diff changeset
6360 make_number (old_point),
45584
5fd12f9027a3 (Fset_window_configuration): Correct the handling
Richard M. Stallman <rms@gnu.org>
parents: 45562
diff changeset
6361 XWINDOW (data->current_window)->buffer);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
6362
51049
12bbef36ecf1 (Fselect_window): Add optional `norecord' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50367
diff changeset
6363 Fselect_window (data->current_window, Qnil);
17678
c13cd575945a (Fset_window_configuration): Set last_selected_window
Richard M. Stallman <rms@gnu.org>
parents: 17628
diff changeset
6364 XBUFFER (XWINDOW (selected_window)->buffer)->last_selected_window
c13cd575945a (Fset_window_configuration): Set last_selected_window
Richard M. Stallman <rms@gnu.org>
parents: 17628
diff changeset
6365 = selected_window;
1685
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6366
1716
95db936d47c0 * keyboard.c (Qscrollbar_movement, Qvertical_scrollbar,
Jim Blandy <jimb@redhat.com>
parents: 1685
diff changeset
6367 if (NILP (data->focus_frame)
9105
984a4b1be1d1 (Fwindowp, Fwindow_live_p, window_display_table, window_loop,
Karl Heuer <kwzh@gnu.org>
parents: 9028
diff changeset
6368 || (FRAMEP (data->focus_frame)
1716
95db936d47c0 * keyboard.c (Qscrollbar_movement, Qvertical_scrollbar,
Jim Blandy <jimb@redhat.com>
parents: 1685
diff changeset
6369 && FRAME_LIVE_P (XFRAME (data->focus_frame))))
95db936d47c0 * keyboard.c (Qscrollbar_movement, Qvertical_scrollbar,
Jim Blandy <jimb@redhat.com>
parents: 1685
diff changeset
6370 Fredirect_frame_focus (frame, data->focus_frame);
1685
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6371
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6372 #if 0 /* I don't understand why this is needed, and it causes problems
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6373 when the frame's old selected window has been deleted. */
15385
72b57d1c8de0 Whitespace and #if 0 code changes.
Richard M. Stallman <rms@gnu.org>
parents: 15384
diff changeset
6374 if (f != selected_frame && FRAME_WINDOW_P (f))
12288
36d3bd1212de (Fset_window_configuration): Use do_switch_frame directly.
Richard M. Stallman <rms@gnu.org>
parents: 11852
diff changeset
6375 do_switch_frame (WINDOW_FRAME (XWINDOW (data->root_window)),
36809
126bac1a4495 (Fset_window_configuration): Change call to
Gerd Moellmann <gerd@gnu.org>
parents: 36635
diff changeset
6376 0, 0);
1685
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6377 #endif
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6378
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6379 /* Set the screen height to the value it had before this function. */
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6380 if (previous_frame_lines != FRAME_LINES (f)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6381 || previous_frame_cols != FRAME_COLS (f))
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6382 change_frame_size (f, previous_frame_lines, previous_frame_cols,
25356
5db69f7aadca Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents: 25315
diff changeset
6383 0, 0, 0);
16051
ccf489f8596e Removed support for !MULTI_FRAME.
Karl Heuer <kwzh@gnu.org>
parents: 16039
diff changeset
6384 #if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS)
6099
19eaf70457d4 (Fset_window_configuration): Allow for menu-bar-lines to have changed since
Karl Heuer <kwzh@gnu.org>
parents: 5990
diff changeset
6385 if (previous_frame_menu_bar_lines != FRAME_MENU_BAR_LINES (f))
21533
b7df83bf15ff (Fset_window_configuration): Fix mixing of Lisp_Object
Andreas Schwab <schwab@suse.de>
parents: 21514
diff changeset
6386 x_set_menu_bar_lines (f, make_number (previous_frame_menu_bar_lines),
b7df83bf15ff (Fset_window_configuration): Fix mixing of Lisp_Object
Andreas Schwab <schwab@suse.de>
parents: 21514
diff changeset
6387 make_number (0));
25115
2105537c5916 (Fset_window_configuration) [MSDOS]: Don't call
Eli Zaretskii <eliz@gnu.org>
parents: 25044
diff changeset
6388 #ifdef HAVE_WINDOW_SYSTEM
25544
693ca9ba497a Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents: 25540
diff changeset
6389 if (previous_frame_tool_bar_lines != FRAME_TOOL_BAR_LINES (f))
693ca9ba497a Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents: 25540
diff changeset
6390 x_set_tool_bar_lines (f, make_number (previous_frame_tool_bar_lines),
693ca9ba497a Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents: 25540
diff changeset
6391 make_number (0));
6852
5cc78dd8efc3 (Fset_window_configuration): Only call X fns if HAVE_X_WINDOWS.
Karl Heuer <kwzh@gnu.org>
parents: 6851
diff changeset
6392 #endif
25115
2105537c5916 (Fset_window_configuration) [MSDOS]: Don't call
Eli Zaretskii <eliz@gnu.org>
parents: 25044
diff changeset
6393 #endif
18657
1dc4d7e374d5 Include blockinput.h.
Richard M. Stallman <rms@gnu.org>
parents: 18493
diff changeset
6394
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6395 /* Now, free glyph matrices in windows that were not reused. */
33277
8239087d52c5 (Fset_window_configuration): Don't try to preserve
Gerd Moellmann <gerd@gnu.org>
parents: 33255
diff changeset
6396 for (i = n = 0; i < n_leaf_windows; ++i)
8239087d52c5 (Fset_window_configuration): Don't try to preserve
Gerd Moellmann <gerd@gnu.org>
parents: 33255
diff changeset
6397 {
8239087d52c5 (Fset_window_configuration): Don't try to preserve
Gerd Moellmann <gerd@gnu.org>
parents: 33255
diff changeset
6398 if (NILP (leaf_windows[i]->buffer))
8239087d52c5 (Fset_window_configuration): Don't try to preserve
Gerd Moellmann <gerd@gnu.org>
parents: 33255
diff changeset
6399 {
8239087d52c5 (Fset_window_configuration): Don't try to preserve
Gerd Moellmann <gerd@gnu.org>
parents: 33255
diff changeset
6400 /* Assert it's not reused as a combination. */
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
6401 xassert (NILP (leaf_windows[i]->hchild)
33277
8239087d52c5 (Fset_window_configuration): Don't try to preserve
Gerd Moellmann <gerd@gnu.org>
parents: 33255
diff changeset
6402 && NILP (leaf_windows[i]->vchild));
8239087d52c5 (Fset_window_configuration): Don't try to preserve
Gerd Moellmann <gerd@gnu.org>
parents: 33255
diff changeset
6403 free_window_matrices (leaf_windows[i]);
8239087d52c5 (Fset_window_configuration): Don't try to preserve
Gerd Moellmann <gerd@gnu.org>
parents: 33255
diff changeset
6404 }
8239087d52c5 (Fset_window_configuration): Don't try to preserve
Gerd Moellmann <gerd@gnu.org>
parents: 33255
diff changeset
6405 else if (EQ (leaf_windows[i]->buffer, new_current_buffer))
8239087d52c5 (Fset_window_configuration): Don't try to preserve
Gerd Moellmann <gerd@gnu.org>
parents: 33255
diff changeset
6406 ++n;
8239087d52c5 (Fset_window_configuration): Don't try to preserve
Gerd Moellmann <gerd@gnu.org>
parents: 33255
diff changeset
6407 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
6408
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6409 adjust_glyphs (f);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6410
18657
1dc4d7e374d5 Include blockinput.h.
Richard M. Stallman <rms@gnu.org>
parents: 18493
diff changeset
6411 UNBLOCK_INPUT;
21198
10518dc95b25 (Frecenter): Operate on window's buffer even if some other was current.
Richard M. Stallman <rms@gnu.org>
parents: 21022
diff changeset
6412
10518dc95b25 (Frecenter): Operate on window's buffer even if some other was current.
Richard M. Stallman <rms@gnu.org>
parents: 21022
diff changeset
6413 /* Fselect_window will have made f the selected frame, so we
10518dc95b25 (Frecenter): Operate on window's buffer even if some other was current.
Richard M. Stallman <rms@gnu.org>
parents: 21022
diff changeset
6414 reselect the proper frame here. Fhandle_switch_frame will change the
10518dc95b25 (Frecenter): Operate on window's buffer even if some other was current.
Richard M. Stallman <rms@gnu.org>
parents: 21022
diff changeset
6415 selected window too, but that doesn't make the call to
10518dc95b25 (Frecenter): Operate on window's buffer even if some other was current.
Richard M. Stallman <rms@gnu.org>
parents: 21022
diff changeset
6416 Fselect_window above totally superfluous; it still sets f's
10518dc95b25 (Frecenter): Operate on window's buffer even if some other was current.
Richard M. Stallman <rms@gnu.org>
parents: 21022
diff changeset
6417 selected window. */
10518dc95b25 (Frecenter): Operate on window's buffer even if some other was current.
Richard M. Stallman <rms@gnu.org>
parents: 21022
diff changeset
6418 if (FRAME_LIVE_P (XFRAME (data->selected_frame)))
36809
126bac1a4495 (Fset_window_configuration): Change call to
Gerd Moellmann <gerd@gnu.org>
parents: 36635
diff changeset
6419 do_switch_frame (data->selected_frame, 0, 0);
21198
10518dc95b25 (Frecenter): Operate on window's buffer even if some other was current.
Richard M. Stallman <rms@gnu.org>
parents: 21022
diff changeset
6420
10518dc95b25 (Frecenter): Operate on window's buffer even if some other was current.
Richard M. Stallman <rms@gnu.org>
parents: 21022
diff changeset
6421 if (! NILP (Vwindow_configuration_change_hook)
10518dc95b25 (Frecenter): Operate on window's buffer even if some other was current.
Richard M. Stallman <rms@gnu.org>
parents: 21022
diff changeset
6422 && ! NILP (Vrun_hooks))
10518dc95b25 (Frecenter): Operate on window's buffer even if some other was current.
Richard M. Stallman <rms@gnu.org>
parents: 21022
diff changeset
6423 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6424 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6425
1325
f03e559aac3e * window.c (struct save_window_data): Save the currently selected
Jim Blandy <jimb@redhat.com>
parents: 1280
diff changeset
6426 if (!NILP (new_current_buffer))
45584
5fd12f9027a3 (Fset_window_configuration): Correct the handling
Richard M. Stallman <rms@gnu.org>
parents: 45562
diff changeset
6427 Fset_buffer (new_current_buffer);
1325
f03e559aac3e * window.c (struct save_window_data): Save the currently selected
Jim Blandy <jimb@redhat.com>
parents: 1280
diff changeset
6428
21198
10518dc95b25 (Frecenter): Operate on window's buffer even if some other was current.
Richard M. Stallman <rms@gnu.org>
parents: 21022
diff changeset
6429 /* Restore the minimum heights recorded in the configuration. */
10518dc95b25 (Frecenter): Operate on window's buffer even if some other was current.
Richard M. Stallman <rms@gnu.org>
parents: 21022
diff changeset
6430 window_min_height = XINT (data->min_height);
10518dc95b25 (Frecenter): Operate on window's buffer even if some other was current.
Richard M. Stallman <rms@gnu.org>
parents: 21022
diff changeset
6431 window_min_width = XINT (data->min_width);
10518dc95b25 (Frecenter): Operate on window's buffer even if some other was current.
Richard M. Stallman <rms@gnu.org>
parents: 21022
diff changeset
6432
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6433 Vminibuf_scroll_window = data->minibuf_scroll_window;
43594
23cddac4d0b7 (minibuf_selected_window): Renamed from
Kim F. Storm <storm@cua.dk>
parents: 43571
diff changeset
6434 minibuf_selected_window = data->minibuf_selected_window;
17281
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
6435
23410
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
6436 return (FRAME_LIVE_P (f) ? Qt : Qnil);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6437 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6438
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
6439 /* Mark all windows now on frame as deleted
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6440 by setting their buffers to nil. */
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6441
1685
8d7fc70d3103 * window.c (Fset_window_configuration): If we're restoring the
Jim Blandy <jimb@redhat.com>
parents: 1572
diff changeset
6442 void
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6443 delete_all_subwindows (w)
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6444 register struct window *w;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6445 {
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
6446 if (!NILP (w->next))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6447 delete_all_subwindows (XWINDOW (w->next));
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
6448 if (!NILP (w->vchild))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6449 delete_all_subwindows (XWINDOW (w->vchild));
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
6450 if (!NILP (w->hchild))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6451 delete_all_subwindows (XWINDOW (w->hchild));
1444
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
6452
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6453 w->total_lines = w->buffer; /* See Fset_window_configuration for excuse. */
1444
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
6454
16068
b19129a8c644 (unshow_buffer): Clear last_selected_window slot, maybe.
Richard M. Stallman <rms@gnu.org>
parents: 16051
diff changeset
6455 if (!NILP (w->buffer))
b19129a8c644 (unshow_buffer): Clear last_selected_window slot, maybe.
Richard M. Stallman <rms@gnu.org>
parents: 16051
diff changeset
6456 unshow_buffer (w);
b19129a8c644 (unshow_buffer): Clear last_selected_window slot, maybe.
Richard M. Stallman <rms@gnu.org>
parents: 16051
diff changeset
6457
1444
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
6458 /* We set all three of these fields to nil, to make sure that we can
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
6459 distinguish this dead window from any live window. Live leaf
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
6460 windows will have buffer set, and combination windows will have
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
6461 vchild or hchild set. */
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
6462 w->buffer = Qnil;
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
6463 w->vchild = Qnil;
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
6464 w->hchild = Qnil;
30045
ff2db81c11c1 (delete_all_subwindows): Reset Vwindow_list.
Gerd Moellmann <gerd@gnu.org>
parents: 30039
diff changeset
6465
ff2db81c11c1 (delete_all_subwindows): Reset Vwindow_list.
Gerd Moellmann <gerd@gnu.org>
parents: 30039
diff changeset
6466 Vwindow_list = Qnil;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6467 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6468
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6469 static int
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6470 count_windows (window)
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6471 register struct window *window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6472 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6473 register int count = 1;
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
6474 if (!NILP (window->next))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6475 count += count_windows (XWINDOW (window->next));
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
6476 if (!NILP (window->vchild))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6477 count += count_windows (XWINDOW (window->vchild));
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
6478 if (!NILP (window->hchild))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6479 count += count_windows (XWINDOW (window->hchild));
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6480 return count;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6481 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6482
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6483
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
6484 /* Fill vector FLAT with leaf windows under W, starting at index I.
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6485 Value is last index + 1. */
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6486
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6487 static int
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6488 get_leaf_windows (w, flat, i)
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6489 struct window *w;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6490 struct window **flat;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6491 int i;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6492 {
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6493 while (w)
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6494 {
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6495 if (!NILP (w->hchild))
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6496 i = get_leaf_windows (XWINDOW (w->hchild), flat, i);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6497 else if (!NILP (w->vchild))
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6498 i = get_leaf_windows (XWINDOW (w->vchild), flat, i);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
6499 else
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6500 flat[i++] = w;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6501
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6502 w = NILP (w->next) ? 0 : XWINDOW (w->next);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6503 }
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6504
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6505 return i;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6506 }
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6507
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6508
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6509 /* Return a pointer to the glyph W's physical cursor is on. Value is
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6510 null if W's current matrix is invalid, so that no meaningfull glyph
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6511 can be returned. */
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6512
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6513 struct glyph *
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6514 get_phys_cursor_glyph (w)
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6515 struct window *w;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6516 {
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6517 struct glyph_row *row;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6518 struct glyph *glyph;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6519
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6520 if (w->phys_cursor.vpos >= 0
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6521 && w->phys_cursor.vpos < w->current_matrix->nrows
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6522 && (row = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos),
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6523 row->enabled_p)
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6524 && row->used[TEXT_AREA] > w->phys_cursor.hpos)
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6525 glyph = row->glyphs[TEXT_AREA] + w->phys_cursor.hpos;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6526 else
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6527 glyph = NULL;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6528
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6529 return glyph;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6530 }
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6531
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6532
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6533 static int
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6534 save_window_save (window, vector, i)
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6535 Lisp_Object window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6536 struct Lisp_Vector *vector;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6537 int i;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6538 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6539 register struct saved_window *p;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6540 register struct window *w;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6541 register Lisp_Object tem;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6542
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
6543 for (;!NILP (window); window = w->next)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6544 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6545 p = SAVED_WINDOW_N (vector, i);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6546 w = XWINDOW (window);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6547
58265
491080266027 Avoid side-effects inside XSETFASTINT's arguments.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58217
diff changeset
6548 XSETFASTINT (w->temslot, i); i++;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6549 p->window = window;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6550 p->buffer = w->buffer;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6551 p->left_col = w->left_col;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6552 p->top_line = w->top_line;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6553 p->total_cols = w->total_cols;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6554 p->total_lines = w->total_lines;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6555 p->hscroll = w->hscroll;
34747
b17790c2efbf (make_window): Initialize window's min_hscroll.
Gerd Moellmann <gerd@gnu.org>
parents: 34735
diff changeset
6556 p->min_hscroll = w->min_hscroll;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6557 p->display_table = w->display_table;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6558 p->orig_top_line = w->orig_top_line;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6559 p->orig_total_lines = w->orig_total_lines;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6560 p->left_margin_cols = w->left_margin_cols;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6561 p->right_margin_cols = w->right_margin_cols;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6562 p->left_fringe_width = w->left_fringe_width;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6563 p->right_fringe_width = w->right_fringe_width;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6564 p->fringes_outside_margins = w->fringes_outside_margins;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6565 p->scroll_bar_width = w->scroll_bar_width;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6566 p->vertical_scroll_bar_type = w->vertical_scroll_bar_type;
71041
8aeb086972ae (struct saved_window): Add `dedicated'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 70736
diff changeset
6567 p->dedicated = w->dedicated;
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
6568 if (!NILP (w->buffer))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6569 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6570 /* Save w's value of point in the window configuration.
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6571 If w is the selected window, then get the value of point
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6572 from the buffer; pointm is garbage in the selected window. */
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6573 if (EQ (window, selected_window))
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6574 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6575 p->pointm = Fmake_marker ();
20535
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
6576 set_marker_both (p->pointm, w->buffer,
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
6577 BUF_PT (XBUFFER (w->buffer)),
3094e3fd9764 (unshow_buffer): Set PT with TEMP_SET_PT_BOTH.
Richard M. Stallman <rms@gnu.org>
parents: 20351
diff changeset
6578 BUF_PT_BYTE (XBUFFER (w->buffer)));
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6579 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6580 else
12981
7a540e9cb21a (save_window_save): Pass the new arg to Fcopy_marker.
Richard M. Stallman <rms@gnu.org>
parents: 12643
diff changeset
6581 p->pointm = Fcopy_marker (w->pointm, Qnil);
7a540e9cb21a (save_window_save): Pass the new arg to Fcopy_marker.
Richard M. Stallman <rms@gnu.org>
parents: 12643
diff changeset
6582
7a540e9cb21a (save_window_save): Pass the new arg to Fcopy_marker.
Richard M. Stallman <rms@gnu.org>
parents: 12643
diff changeset
6583 p->start = Fcopy_marker (w->start, Qnil);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6584 p->start_at_line_beg = w->start_at_line_beg;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6585
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6586 tem = XBUFFER (w->buffer)->mark;
12981
7a540e9cb21a (save_window_save): Pass the new arg to Fcopy_marker.
Richard M. Stallman <rms@gnu.org>
parents: 12643
diff changeset
6587 p->mark = Fcopy_marker (tem, Qnil);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6588 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6589 else
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6590 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6591 p->pointm = Qnil;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6592 p->start = Qnil;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6593 p->mark = Qnil;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6594 p->start_at_line_beg = Qnil;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6595 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6596
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
6597 if (NILP (w->parent))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6598 p->parent = Qnil;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6599 else
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6600 p->parent = XWINDOW (w->parent)->temslot;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6601
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
6602 if (NILP (w->prev))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6603 p->prev = Qnil;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6604 else
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6605 p->prev = XWINDOW (w->prev)->temslot;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6606
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
6607 if (!NILP (w->vchild))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6608 i = save_window_save (w->vchild, vector, i);
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 432
diff changeset
6609 if (!NILP (w->hchild))
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6610 i = save_window_save (w->hchild, vector, i);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6611 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6612
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6613 return i;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6614 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6615
16485
9b919c5464a4 Reorganize function definitions so etags finds them.
Erik Naggum <erik@naggum.no>
parents: 16392
diff changeset
6616 DEFUN ("current-window-configuration", Fcurrent_window_configuration,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6617 Scurrent_window_configuration, 0, 1, 0,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6618 doc: /* Return an object representing the current window configuration of FRAME.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6619 If FRAME is nil or omitted, use the selected frame.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6620 This describes the number of windows, their sizes and current buffers,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6621 and for each displayed buffer, where display starts, and the positions of
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6622 point and mark. An exception is made for point in the current buffer:
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6623 its value is -not- saved.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6624 This also records the currently selected frame, and FRAME's focus
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6625 redirection (see `redirect-frame-focus'). */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6626 (frame)
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
6627 Lisp_Object frame;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6628 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6629 register Lisp_Object tem;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6630 register int n_windows;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6631 register struct save_window_data *data;
9974
5cda62e4222a (Fcurrent_window_configuration): Use allocate_vectorlike and VECSIZE.
Karl Heuer <kwzh@gnu.org>
parents: 9970
diff changeset
6632 register struct Lisp_Vector *vec;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6633 register int i;
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
6634 FRAME_PTR f;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6635
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
6636 if (NILP (frame))
25676
70c6d3f2f3b9 (Fminibuffer_window): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents: 25591
diff changeset
6637 frame = selected_frame;
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
6638 CHECK_LIVE_FRAME (frame);
25676
70c6d3f2f3b9 (Fminibuffer_window): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents: 25591
diff changeset
6639 f = XFRAME (frame);
358
71c9042fb90d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 338
diff changeset
6640
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
6641 n_windows = count_windows (XWINDOW (FRAME_ROOT_WINDOW (f)));
36432
28af746067b2 (make_window, make_dummy_parent): Use allocate_window.
Gerd Moellmann <gerd@gnu.org>
parents: 36231
diff changeset
6642 vec = allocate_other_vector (VECSIZE (struct save_window_data));
9974
5cda62e4222a (Fcurrent_window_configuration): Use allocate_vectorlike and VECSIZE.
Karl Heuer <kwzh@gnu.org>
parents: 9970
diff changeset
6643 data = (struct save_window_data *)vec;
5cda62e4222a (Fcurrent_window_configuration): Use allocate_vectorlike and VECSIZE.
Karl Heuer <kwzh@gnu.org>
parents: 9970
diff changeset
6644
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6645 XSETFASTINT (data->frame_cols, FRAME_COLS (f));
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6646 XSETFASTINT (data->frame_lines, FRAME_LINES (f));
9324
ac6a5691607f (make_window, Fset_window_hscroll, Fset_window_start, set_window_height,
Karl Heuer <kwzh@gnu.org>
parents: 9282
diff changeset
6647 XSETFASTINT (data->frame_menu_bar_lines, FRAME_MENU_BAR_LINES (f));
25544
693ca9ba497a Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents: 25540
diff changeset
6648 XSETFASTINT (data->frame_tool_bar_lines, FRAME_TOOL_BAR_LINES (f));
25676
70c6d3f2f3b9 (Fminibuffer_window): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents: 25591
diff changeset
6649 data->selected_frame = selected_frame;
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
6650 data->current_window = FRAME_SELECTED_WINDOW (f);
9282
f4fa46f6a032 (Fminibuffer_window, Fwindow_at, Fwindow_end, Fnext_window, Fprevious_window,
Karl Heuer <kwzh@gnu.org>
parents: 9243
diff changeset
6651 XSETBUFFER (data->current_buffer, current_buffer);
43571
d3b03dea29d4 (Vminibuf_selected_window): New variable.
Kim F. Storm <storm@cua.dk>
parents: 43281
diff changeset
6652 data->minibuf_scroll_window = minibuf_level > 0 ? Vminibuf_scroll_window : Qnil;
43594
23cddac4d0b7 (minibuf_selected_window): Renamed from
Kim F. Storm <storm@cua.dk>
parents: 43571
diff changeset
6653 data->minibuf_selected_window = minibuf_level > 0 ? minibuf_selected_window : Qnil;
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
6654 data->root_window = FRAME_ROOT_WINDOW (f);
1325
f03e559aac3e * window.c (struct save_window_data): Save the currently selected
Jim Blandy <jimb@redhat.com>
parents: 1280
diff changeset
6655 data->focus_frame = FRAME_FOCUS_FRAME (f);
9282
f4fa46f6a032 (Fminibuffer_window, Fwindow_at, Fwindow_end, Fnext_window, Fprevious_window,
Karl Heuer <kwzh@gnu.org>
parents: 9243
diff changeset
6656 XSETINT (data->min_height, window_min_height);
f4fa46f6a032 (Fminibuffer_window, Fwindow_at, Fwindow_end, Fnext_window, Fprevious_window,
Karl Heuer <kwzh@gnu.org>
parents: 9243
diff changeset
6657 XSETINT (data->min_width, window_min_width);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6658 tem = Fmake_vector (make_number (n_windows), Qnil);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6659 data->saved_windows = tem;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6660 for (i = 0; i < n_windows; i++)
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6661 XVECTOR (tem)->contents[i]
65004
bc5cf5fc0f9e (SAVED_WINDOW_VECTOR_SIZE): Remove dangerous define.
Kim F. Storm <storm@cua.dk>
parents: 64770
diff changeset
6662 = Fmake_vector (make_number (VECSIZE (struct saved_window)), Qnil);
34090
7721faa485ea (struct saved_window): Add members orig_top and
Gerd Moellmann <gerd@gnu.org>
parents: 33957
diff changeset
6663 save_window_save (FRAME_ROOT_WINDOW (f), XVECTOR (tem), 0);
9282
f4fa46f6a032 (Fminibuffer_window, Fwindow_at, Fwindow_end, Fnext_window, Fprevious_window,
Karl Heuer <kwzh@gnu.org>
parents: 9243
diff changeset
6664 XSETWINDOW_CONFIGURATION (tem, data);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6665 return (tem);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6666 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6667
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6668 DEFUN ("save-window-excursion", Fsave_window_excursion, Ssave_window_excursion,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6669 0, UNEVALLED, 0,
56487
338a1d04223d (Fpos_visible_in_window_p, Fset_window_hscroll)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56456
diff changeset
6670 doc: /* Execute BODY, preserving window sizes and contents.
338a1d04223d (Fpos_visible_in_window_p, Fset_window_hscroll)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56456
diff changeset
6671 Return the value of the last form in BODY.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6672 Restore which buffer appears in which window, where display starts,
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6673 and the value of point and mark for each window.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6674 Also restore the choice of selected window.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6675 Also restore which buffer is current.
40144
b4ffca20829f (Fsave_window_excursion): Add usage: string to doc string.
Miles Bader <miles@gnu.org>
parents: 40103
diff changeset
6676 Does not restore the value of point in current buffer.
78156
9b4ab34a0df5 (Fsave_window_excursion): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents: 77905
diff changeset
6677 usage: (save-window-excursion BODY...) */)
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6678 (args)
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6679 Lisp_Object args;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6680 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6681 register Lisp_Object val;
46293
1fb8f75062c6 Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents: 46285
diff changeset
6682 register int count = SPECPDL_INDEX ();
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6683
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6684 record_unwind_protect (Fset_window_configuration,
358
71c9042fb90d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 338
diff changeset
6685 Fcurrent_window_configuration (Qnil));
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6686 val = Fprogn (args);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6687 return unbind_to (count, val);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6688 }
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6689
65826
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6690
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6691
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6692 /***********************************************************************
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6693 Window Split Tree
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6694 ***********************************************************************/
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6695
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6696 static Lisp_Object
65908
454a4a463081 (window_tree, Fwindow_tree): Rename fns added 2005-10-04.
Kim F. Storm <storm@cua.dk>
parents: 65826
diff changeset
6697 window_tree (w)
65826
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6698 struct window *w;
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6699 {
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6700 Lisp_Object tail = Qnil;
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6701 Lisp_Object result = Qnil;
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6702
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6703 while (w)
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6704 {
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6705 Lisp_Object wn;
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6706
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6707 XSETWINDOW (wn, w);
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6708 if (!NILP (w->hchild))
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6709 wn = Fcons (Qnil, Fcons (Fwindow_edges (wn),
65908
454a4a463081 (window_tree, Fwindow_tree): Rename fns added 2005-10-04.
Kim F. Storm <storm@cua.dk>
parents: 65826
diff changeset
6710 window_tree (XWINDOW (w->hchild))));
65826
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6711 else if (!NILP (w->vchild))
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6712 wn = Fcons (Qt, Fcons (Fwindow_edges (wn),
65908
454a4a463081 (window_tree, Fwindow_tree): Rename fns added 2005-10-04.
Kim F. Storm <storm@cua.dk>
parents: 65826
diff changeset
6713 window_tree (XWINDOW (w->vchild))));
65826
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6714
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6715 if (NILP (result))
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6716 {
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6717 result = tail = Fcons (wn, Qnil);
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6718 }
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6719 else
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6720 {
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6721 XSETCDR (tail, Fcons (wn, Qnil));
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6722 tail = XCDR (tail);
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6723 }
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6724
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6725 w = NILP (w->next) ? 0 : XWINDOW (w->next);
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6726 }
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6727
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6728 return result;
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6729 }
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6730
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6731
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6732
65908
454a4a463081 (window_tree, Fwindow_tree): Rename fns added 2005-10-04.
Kim F. Storm <storm@cua.dk>
parents: 65826
diff changeset
6733 DEFUN ("window-tree", Fwindow_tree, Swindow_tree,
65826
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6734 0, 1, 0,
65908
454a4a463081 (window_tree, Fwindow_tree): Rename fns added 2005-10-04.
Kim F. Storm <storm@cua.dk>
parents: 65826
diff changeset
6735 doc: /* Return the window tree for frame FRAME.
65826
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6736
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6737 The return value is a list of the form (ROOT MINI), where ROOT
65908
454a4a463081 (window_tree, Fwindow_tree): Rename fns added 2005-10-04.
Kim F. Storm <storm@cua.dk>
parents: 65826
diff changeset
6738 represents the window tree of the frame's root window, and MINI
65826
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6739 is the frame's minibuffer window.
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6740
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6741 If the root window is not split, ROOT is the root window itself.
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6742 Otherwise, ROOT is a list (DIR EDGES W1 W2 ...) where DIR is nil for a
65975
a234d371d212 (Fwindow_tree): Fix spelling.
Juanma Barranquero <lekktu@gmail.com>
parents: 65950
diff changeset
6743 horizontal split, and t for a vertical split, EDGES gives the combined
65826
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6744 size and position of the subwindows in the split, and the rest of the
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6745 elements are the subwindows in the split. Each of the subwindows may
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6746 again be a window or a list representing a window split, and so on.
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6747 EDGES is a list \(LEFT TOP RIGHT BOTTOM) as returned by `window-edges'.
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6748
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6749 If FRAME is nil or omitted, return information on the currently
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6750 selected frame. */)
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6751 (frame)
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6752 Lisp_Object frame;
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6753 {
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6754 FRAME_PTR f;
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6755
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6756 if (NILP (frame))
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6757 frame = selected_frame;
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6758
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6759 CHECK_FRAME (frame);
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6760 f = XFRAME (frame);
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6761
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6762 if (!FRAME_LIVE_P (f))
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6763 return Qnil;
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6764
65908
454a4a463081 (window_tree, Fwindow_tree): Rename fns added 2005-10-04.
Kim F. Storm <storm@cua.dk>
parents: 65826
diff changeset
6765 return window_tree (XWINDOW (FRAME_ROOT_WINDOW (f)));
65826
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6766 }
d16139114c9c (window_split_tree): New function.
Kim F. Storm <storm@cua.dk>
parents: 65602
diff changeset
6767
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6768
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6769 /***********************************************************************
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6770 Marginal Areas
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6771 ***********************************************************************/
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6772
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6773 DEFUN ("set-window-margins", Fset_window_margins, Sset_window_margins,
27553
49dd86912d71 (Fset_window_margins): Don't make interactive. Doc fix.
Dave Love <fx@gnu.org>
parents: 26873
diff changeset
6774 2, 3, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6775 doc: /* Set width of marginal areas of window WINDOW.
53143
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
6776 If WINDOW is nil, set margins of the currently selected window.
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
6777 Second arg LEFT-WIDTH specifies the number of character cells to
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
6778 reserve for the left marginal area. Optional third arg RIGHT-WIDTH
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
6779 does the same for the right marginal area. A nil width parameter
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
6780 means no margin. */)
64577
cc42e18c8870 (Fset_window_margins, Fset_window_fringes):
Juanma Barranquero <lekktu@gmail.com>
parents: 64236
diff changeset
6781 (window, left_width, right_width)
cc42e18c8870 (Fset_window_margins, Fset_window_fringes):
Juanma Barranquero <lekktu@gmail.com>
parents: 64236
diff changeset
6782 Lisp_Object window, left_width, right_width;
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6783 {
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6784 struct window *w = decode_window (window);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6785
52852
ac400ff02a1c (Fset_window_margins): Simplify arg checking.
Kim F. Storm <storm@cua.dk>
parents: 52836
diff changeset
6786 /* Translate negative or zero widths to nil.
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6787 Margins that are too wide have to be checked elsewhere. */
52852
ac400ff02a1c (Fset_window_margins): Simplify arg checking.
Kim F. Storm <storm@cua.dk>
parents: 52836
diff changeset
6788
64577
cc42e18c8870 (Fset_window_margins, Fset_window_fringes):
Juanma Barranquero <lekktu@gmail.com>
parents: 64236
diff changeset
6789 if (!NILP (left_width))
52852
ac400ff02a1c (Fset_window_margins): Simplify arg checking.
Kim F. Storm <storm@cua.dk>
parents: 52836
diff changeset
6790 {
64577
cc42e18c8870 (Fset_window_margins, Fset_window_fringes):
Juanma Barranquero <lekktu@gmail.com>
parents: 64236
diff changeset
6791 CHECK_NUMBER (left_width);
cc42e18c8870 (Fset_window_margins, Fset_window_fringes):
Juanma Barranquero <lekktu@gmail.com>
parents: 64236
diff changeset
6792 if (XINT (left_width) <= 0)
cc42e18c8870 (Fset_window_margins, Fset_window_fringes):
Juanma Barranquero <lekktu@gmail.com>
parents: 64236
diff changeset
6793 left_width = Qnil;
52852
ac400ff02a1c (Fset_window_margins): Simplify arg checking.
Kim F. Storm <storm@cua.dk>
parents: 52836
diff changeset
6794 }
ac400ff02a1c (Fset_window_margins): Simplify arg checking.
Kim F. Storm <storm@cua.dk>
parents: 52836
diff changeset
6795
64577
cc42e18c8870 (Fset_window_margins, Fset_window_fringes):
Juanma Barranquero <lekktu@gmail.com>
parents: 64236
diff changeset
6796 if (!NILP (right_width))
52852
ac400ff02a1c (Fset_window_margins): Simplify arg checking.
Kim F. Storm <storm@cua.dk>
parents: 52836
diff changeset
6797 {
64577
cc42e18c8870 (Fset_window_margins, Fset_window_fringes):
Juanma Barranquero <lekktu@gmail.com>
parents: 64236
diff changeset
6798 CHECK_NUMBER (right_width);
cc42e18c8870 (Fset_window_margins, Fset_window_fringes):
Juanma Barranquero <lekktu@gmail.com>
parents: 64236
diff changeset
6799 if (XINT (right_width) <= 0)
cc42e18c8870 (Fset_window_margins, Fset_window_fringes):
Juanma Barranquero <lekktu@gmail.com>
parents: 64236
diff changeset
6800 right_width = Qnil;
52852
ac400ff02a1c (Fset_window_margins): Simplify arg checking.
Kim F. Storm <storm@cua.dk>
parents: 52836
diff changeset
6801 }
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6802
64577
cc42e18c8870 (Fset_window_margins, Fset_window_fringes):
Juanma Barranquero <lekktu@gmail.com>
parents: 64236
diff changeset
6803 if (!EQ (w->left_margin_cols, left_width)
cc42e18c8870 (Fset_window_margins, Fset_window_fringes):
Juanma Barranquero <lekktu@gmail.com>
parents: 64236
diff changeset
6804 || !EQ (w->right_margin_cols, right_width))
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6805 {
64577
cc42e18c8870 (Fset_window_margins, Fset_window_fringes):
Juanma Barranquero <lekktu@gmail.com>
parents: 64236
diff changeset
6806 w->left_margin_cols = left_width;
cc42e18c8870 (Fset_window_margins, Fset_window_fringes):
Juanma Barranquero <lekktu@gmail.com>
parents: 64236
diff changeset
6807 w->right_margin_cols = right_width;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6808
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6809 adjust_window_margins (w);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6810
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6811 ++windows_or_buffers_changed;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6812 adjust_glyphs (XFRAME (WINDOW_FRAME (w)));
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6813 }
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6814
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6815 return Qnil;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6816 }
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6817
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6818
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6819 DEFUN ("window-margins", Fwindow_margins, Swindow_margins,
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6820 0, 1, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6821 doc: /* Get width of marginal areas of window WINDOW.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6822 If WINDOW is omitted or nil, use the currently selected window.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6823 Value is a cons of the form (LEFT-WIDTH . RIGHT-WIDTH).
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6824 If a marginal area does not exist, its width will be returned
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6825 as nil. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6826 (window)
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6827 Lisp_Object window;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6828 {
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6829 struct window *w = decode_window (window);
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6830 return Fcons (w->left_margin_cols, w->right_margin_cols);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6831 }
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6832
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6833
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6834
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6835 /***********************************************************************
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6836 Fringes
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6837 ***********************************************************************/
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6838
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6839 DEFUN ("set-window-fringes", Fset_window_fringes, Sset_window_fringes,
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6840 2, 4, 0,
52853
91a9da753e30 (Fset_window_fringes): Clarify docstring.
Lute Kamstra <lute@gnu.org>
parents: 52852
diff changeset
6841 doc: /* Set the fringe widths of window WINDOW.
91a9da753e30 (Fset_window_fringes): Clarify docstring.
Lute Kamstra <lute@gnu.org>
parents: 52852
diff changeset
6842 If WINDOW is nil, set the fringe widths of the currently selected
91a9da753e30 (Fset_window_fringes): Clarify docstring.
Lute Kamstra <lute@gnu.org>
parents: 52852
diff changeset
6843 window.
53143
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
6844 Second arg LEFT-WIDTH specifies the number of pixels to reserve for
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
6845 the left fringe. Optional third arg RIGHT-WIDTH specifies the right
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
6846 fringe width. If a fringe width arg is nil, that means to use the
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
6847 frame's default fringe width. Default fringe widths can be set with
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
6848 the command `set-fringe-style'.
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
6849 If optional fourth arg OUTSIDE-MARGINS is non-nil, draw the fringes
52853
91a9da753e30 (Fset_window_fringes): Clarify docstring.
Lute Kamstra <lute@gnu.org>
parents: 52852
diff changeset
6850 outside of the display margins. By default, fringes are drawn between
91a9da753e30 (Fset_window_fringes): Clarify docstring.
Lute Kamstra <lute@gnu.org>
parents: 52852
diff changeset
6851 display marginal areas and the text area. */)
64577
cc42e18c8870 (Fset_window_margins, Fset_window_fringes):
Juanma Barranquero <lekktu@gmail.com>
parents: 64236
diff changeset
6852 (window, left_width, right_width, outside_margins)
cc42e18c8870 (Fset_window_margins, Fset_window_fringes):
Juanma Barranquero <lekktu@gmail.com>
parents: 64236
diff changeset
6853 Lisp_Object window, left_width, right_width, outside_margins;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6854 {
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6855 struct window *w = decode_window (window);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6856
64577
cc42e18c8870 (Fset_window_margins, Fset_window_fringes):
Juanma Barranquero <lekktu@gmail.com>
parents: 64236
diff changeset
6857 if (!NILP (left_width))
cc42e18c8870 (Fset_window_margins, Fset_window_fringes):
Juanma Barranquero <lekktu@gmail.com>
parents: 64236
diff changeset
6858 CHECK_NATNUM (left_width);
cc42e18c8870 (Fset_window_margins, Fset_window_fringes):
Juanma Barranquero <lekktu@gmail.com>
parents: 64236
diff changeset
6859 if (!NILP (right_width))
cc42e18c8870 (Fset_window_margins, Fset_window_fringes):
Juanma Barranquero <lekktu@gmail.com>
parents: 64236
diff changeset
6860 CHECK_NATNUM (right_width);
72663
6e654c485c0a (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
Kim F. Storm <storm@cua.dk>
parents: 72615
diff changeset
6861
72438
d08eb7bd3ca2 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 72437
diff changeset
6862 /* Do nothing on a tty. */
72437
bdd61b05f84f (Fset_window_fringes): Do nothing on a tty.
Nick Roberts <nickrob@snap.net.nz>
parents: 71991
diff changeset
6863 if (FRAME_WINDOW_P (WINDOW_XFRAME (w))
bdd61b05f84f (Fset_window_fringes): Do nothing on a tty.
Nick Roberts <nickrob@snap.net.nz>
parents: 71991
diff changeset
6864 && (!EQ (w->left_fringe_width, left_width)
bdd61b05f84f (Fset_window_fringes): Do nothing on a tty.
Nick Roberts <nickrob@snap.net.nz>
parents: 71991
diff changeset
6865 || !EQ (w->right_fringe_width, right_width)
bdd61b05f84f (Fset_window_fringes): Do nothing on a tty.
Nick Roberts <nickrob@snap.net.nz>
parents: 71991
diff changeset
6866 || !EQ (w->fringes_outside_margins, outside_margins)))
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6867 {
64577
cc42e18c8870 (Fset_window_margins, Fset_window_fringes):
Juanma Barranquero <lekktu@gmail.com>
parents: 64236
diff changeset
6868 w->left_fringe_width = left_width;
cc42e18c8870 (Fset_window_margins, Fset_window_fringes):
Juanma Barranquero <lekktu@gmail.com>
parents: 64236
diff changeset
6869 w->right_fringe_width = right_width;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6870 w->fringes_outside_margins = outside_margins;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6871
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6872 adjust_window_margins (w);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6873
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6874 clear_glyph_matrix (w->current_matrix);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6875 w->window_end_valid = Qnil;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6876
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6877 ++windows_or_buffers_changed;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6878 adjust_glyphs (XFRAME (WINDOW_FRAME (w)));
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6879 }
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6880
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6881 return Qnil;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6882 }
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6883
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6884
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6885 DEFUN ("window-fringes", Fwindow_fringes, Swindow_fringes,
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6886 0, 1, 0,
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6887 doc: /* Get width of fringes of window WINDOW.
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6888 If WINDOW is omitted or nil, use the currently selected window.
53927
d7b95d7f2179 (Fwindow_fringes): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 53703
diff changeset
6889 Value is a list of the form (LEFT-WIDTH RIGHT-WIDTH OUTSIDE-MARGINS). */)
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6890 (window)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6891 Lisp_Object window;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6892 {
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6893 struct window *w = decode_window (window);
72437
bdd61b05f84f (Fset_window_fringes): Do nothing on a tty.
Nick Roberts <nickrob@snap.net.nz>
parents: 71991
diff changeset
6894
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6895 return Fcons (make_number (WINDOW_LEFT_FRINGE_WIDTH (w)),
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6896 Fcons (make_number (WINDOW_RIGHT_FRINGE_WIDTH (w)),
72437
bdd61b05f84f (Fset_window_fringes): Do nothing on a tty.
Nick Roberts <nickrob@snap.net.nz>
parents: 71991
diff changeset
6897 Fcons ((WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
bdd61b05f84f (Fset_window_fringes): Do nothing on a tty.
Nick Roberts <nickrob@snap.net.nz>
parents: 71991
diff changeset
6898 ? Qt : Qnil), Qnil)));
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6899 }
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6900
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6901
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6902
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6903 /***********************************************************************
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6904 Scroll bars
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6905 ***********************************************************************/
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6906
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6907 DEFUN ("set-window-scroll-bars", Fset_window_scroll_bars, Sset_window_scroll_bars,
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6908 2, 4, 0,
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6909 doc: /* Set width and type of scroll bars of window WINDOW.
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6910 If window is nil, set scroll bars of the currently selected window.
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6911 Second parameter WIDTH specifies the pixel width for the scroll bar;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6912 this is automatically adjusted to a multiple of the frame column width.
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6913 Third parameter VERTICAL-TYPE specifies the type of the vertical scroll
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6914 bar: left, right, or nil.
52565
26d1a4665f6c (Fset_window_scroll_bars): Validate the value of `vertical_type'.
Masatake YAMATO <jet@gyve.org>
parents: 52560
diff changeset
6915 If WIDTH is nil, use the frame's scroll-bar width.
68971
f8b092ff513c (Fset_window_scroll_bars): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents: 68724
diff changeset
6916 If VERTICAL-TYPE is t, use the frame's scroll-bar type.
f8b092ff513c (Fset_window_scroll_bars): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents: 68724
diff changeset
6917 Fourth parameter HORIZONTAL-TYPE is currently unused. */)
51223
c1daf1c22f97 (Fset_window_scroll_bars): Fix typo in argument name.
Juanma Barranquero <lekktu@gmail.com>
parents: 51207
diff changeset
6918 (window, width, vertical_type, horizontal_type)
c1daf1c22f97 (Fset_window_scroll_bars): Fix typo in argument name.
Juanma Barranquero <lekktu@gmail.com>
parents: 51207
diff changeset
6919 Lisp_Object window, width, vertical_type, horizontal_type;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6920 {
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6921 struct window *w = decode_window (window);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6922
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6923 if (!NILP (width))
58448
f3a76c43ac80 (Fset_window_scroll_bars): Don't use XINT if it isn't int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58441
diff changeset
6924 {
f3a76c43ac80 (Fset_window_scroll_bars): Don't use XINT if it isn't int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58441
diff changeset
6925 CHECK_NATNUM (width);
f3a76c43ac80 (Fset_window_scroll_bars): Don't use XINT if it isn't int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58441
diff changeset
6926
f3a76c43ac80 (Fset_window_scroll_bars): Don't use XINT if it isn't int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58441
diff changeset
6927 if (XINT (width) == 0)
f3a76c43ac80 (Fset_window_scroll_bars): Don't use XINT if it isn't int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58441
diff changeset
6928 vertical_type = Qnil;
f3a76c43ac80 (Fset_window_scroll_bars): Don't use XINT if it isn't int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58441
diff changeset
6929 }
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6930
78415
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
6931 if (!(NILP (vertical_type)
55027
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
6932 || EQ (vertical_type, Qleft)
52565
26d1a4665f6c (Fset_window_scroll_bars): Validate the value of `vertical_type'.
Masatake YAMATO <jet@gyve.org>
parents: 52560
diff changeset
6933 || EQ (vertical_type, Qright)
26d1a4665f6c (Fset_window_scroll_bars): Validate the value of `vertical_type'.
Masatake YAMATO <jet@gyve.org>
parents: 52560
diff changeset
6934 || EQ (vertical_type, Qt)))
26d1a4665f6c (Fset_window_scroll_bars): Validate the value of `vertical_type'.
Masatake YAMATO <jet@gyve.org>
parents: 52560
diff changeset
6935 error ("Invalid type of vertical scroll bar");
26d1a4665f6c (Fset_window_scroll_bars): Validate the value of `vertical_type'.
Masatake YAMATO <jet@gyve.org>
parents: 52560
diff changeset
6936
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6937 if (!EQ (w->scroll_bar_width, width)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6938 || !EQ (w->vertical_scroll_bar_type, vertical_type))
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6939 {
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6940 w->scroll_bar_width = width;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6941 w->vertical_scroll_bar_type = vertical_type;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6942
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6943 adjust_window_margins (w);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6944
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6945 clear_glyph_matrix (w->current_matrix);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6946 w->window_end_valid = Qnil;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6947
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6948 ++windows_or_buffers_changed;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6949 adjust_glyphs (XFRAME (WINDOW_FRAME (w)));
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6950 }
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6951
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6952 return Qnil;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6953 }
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6954
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6955
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6956 DEFUN ("window-scroll-bars", Fwindow_scroll_bars, Swindow_scroll_bars,
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6957 0, 1, 0,
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6958 doc: /* Get width and type of scroll bars of window WINDOW.
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6959 If WINDOW is omitted or nil, use the currently selected window.
52560
9a8ad8b87f32 (Fwindow_scroll_bars): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
6960 Value is a list of the form (WIDTH COLS VERTICAL-TYPE HORIZONTAL-TYPE).
9a8ad8b87f32 (Fwindow_scroll_bars): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
6961 If WIDTH is nil or TYPE is t, the window is using the frame's corresponding
9a8ad8b87f32 (Fwindow_scroll_bars): Doc fix.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
6962 value. */)
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6963 (window)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6964 Lisp_Object window;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6965 {
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6966 struct window *w = decode_window (window);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6967 return Fcons (make_number ((WINDOW_CONFIG_SCROLL_BAR_WIDTH (w)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6968 ? WINDOW_CONFIG_SCROLL_BAR_WIDTH (w)
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6969 : WINDOW_SCROLL_BAR_AREA_WIDTH (w))),
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6970 Fcons (make_number (WINDOW_SCROLL_BAR_COLS (w)),
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6971 Fcons (w->vertical_scroll_bar_type,
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
6972 Fcons (Qnil, Qnil))));
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6973 }
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6974
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6975
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6976
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6977 /***********************************************************************
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6978 Smooth scrolling
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6979 ***********************************************************************/
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6980
55027
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
6981 DEFUN ("window-vscroll", Fwindow_vscroll, Swindow_vscroll, 0, 2, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6982 doc: /* Return the amount by which WINDOW is scrolled vertically.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
6983 Use the selected window if WINDOW is nil or omitted.
55027
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
6984 Normally, value is a multiple of the canonical character height of WINDOW;
68490
36ac94b7246c (Fother_window, Fwindow_vscroll, Fset_window_vscroll): Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents: 67328
diff changeset
6985 optional second arg PIXELS-P means value is measured in pixels. */)
55027
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
6986 (window, pixels_p)
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
6987 Lisp_Object window, pixels_p;
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6988 {
25549
63deb587dce1 (Fset_window_vscroll): Make window the first argument,
Gerd Moellmann <gerd@gnu.org>
parents: 25546
diff changeset
6989 Lisp_Object result;
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6990 struct frame *f;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6991 struct window *w;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
6992
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6993 if (NILP (window))
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6994 window = selected_window;
25549
63deb587dce1 (Fset_window_vscroll): Make window the first argument,
Gerd Moellmann <gerd@gnu.org>
parents: 25546
diff changeset
6995 else
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
6996 CHECK_WINDOW (window);
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6997 w = XWINDOW (window);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
6998 f = XFRAME (w->frame);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
6999
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7000 if (FRAME_WINDOW_P (f))
55027
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
7001 result = (NILP (pixels_p)
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
7002 ? FRAME_CANON_Y_FROM_PIXEL_Y (f, -w->vscroll)
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
7003 : make_number (-w->vscroll));
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7004 else
25549
63deb587dce1 (Fset_window_vscroll): Make window the first argument,
Gerd Moellmann <gerd@gnu.org>
parents: 25546
diff changeset
7005 result = make_number (0);
63deb587dce1 (Fset_window_vscroll): Make window the first argument,
Gerd Moellmann <gerd@gnu.org>
parents: 25546
diff changeset
7006 return result;
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7007 }
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7008
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7009
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7010 DEFUN ("set-window-vscroll", Fset_window_vscroll, Sset_window_vscroll,
55027
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
7011 2, 3, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7012 doc: /* Set amount by which WINDOW should be scrolled vertically to VSCROLL.
55027
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
7013 WINDOW nil means use the selected window. Normally, VSCROLL is a
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
7014 non-negative multiple of the canonical character height of WINDOW;
68490
36ac94b7246c (Fother_window, Fwindow_vscroll, Fset_window_vscroll): Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents: 67328
diff changeset
7015 optional third arg PIXELS-P non-nil means that VSCROLL is in pixels.
56487
338a1d04223d (Fpos_visible_in_window_p, Fset_window_hscroll)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56456
diff changeset
7016 If PIXELS-P is nil, VSCROLL may have to be rounded so that it
338a1d04223d (Fpos_visible_in_window_p, Fset_window_hscroll)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56456
diff changeset
7017 corresponds to an integral number of pixels. The return value is the
338a1d04223d (Fpos_visible_in_window_p, Fset_window_hscroll)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56456
diff changeset
7018 result of this rounding.
338a1d04223d (Fpos_visible_in_window_p, Fset_window_hscroll)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56456
diff changeset
7019 If PIXELS-P is non-nil, the return value is VSCROLL. */)
55027
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
7020 (window, vscroll, pixels_p)
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
7021 Lisp_Object window, vscroll, pixels_p;
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7022 {
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7023 struct window *w;
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7024 struct frame *f;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
7025
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7026 if (NILP (window))
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7027 window = selected_window;
25549
63deb587dce1 (Fset_window_vscroll): Make window the first argument,
Gerd Moellmann <gerd@gnu.org>
parents: 25546
diff changeset
7028 else
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
7029 CHECK_WINDOW (window);
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40619
diff changeset
7030 CHECK_NUMBER_OR_FLOAT (vscroll);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
7031
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7032 w = XWINDOW (window);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7033 f = XFRAME (w->frame);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7034
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7035 if (FRAME_WINDOW_P (f))
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7036 {
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7037 int old_dy = w->vscroll;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
7038
55027
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
7039 w->vscroll = - (NILP (pixels_p)
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
7040 ? FRAME_LINE_HEIGHT (f) * XFLOATINT (vscroll)
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
7041 : XFLOATINT (vscroll));
25549
63deb587dce1 (Fset_window_vscroll): Make window the first argument,
Gerd Moellmann <gerd@gnu.org>
parents: 25546
diff changeset
7042 w->vscroll = min (w->vscroll, 0);
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7043
59677
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
7044 if (w->vscroll != old_dy)
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
7045 {
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
7046 /* Adjust glyph matrix of the frame if the virtual display
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
7047 area becomes larger than before. */
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
7048 if (w->vscroll < 0 && w->vscroll < old_dy)
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
7049 adjust_glyphs (f);
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
7050
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
7051 /* Prevent redisplay shortcuts. */
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
7052 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
7053 }
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7054 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
7055
55027
91ab946dfd86 (Fpos_visible_in_window_p): Return pixel position if
Kim F. Storm <storm@cua.dk>
parents: 54883
diff changeset
7056 return Fwindow_vscroll (window, pixels_p);
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7057 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
7058
25517
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7059
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7060 /* Call FN for all leaf windows on frame F. FN is called with the
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7061 first argument being a pointer to the leaf window, and with
30362
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
7062 additional argument USER_DATA. Stops when FN returns 0. */
25517
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7063
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7064 void
30362
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
7065 foreach_window (f, fn, user_data)
25517
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7066 struct frame *f;
30362
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
7067 int (* fn) P_ ((struct window *, void *));
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
7068 void *user_data;
25517
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7069 {
70736
6e5b403b5586 (foreach_window): Check WINDOWP (FRAME_ROOT_WINDOW (f)).
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70155
diff changeset
7070 /* Fdelete_frame may set FRAME_ROOT_WINDOW (f) to Qnil. */
6e5b403b5586 (foreach_window): Check WINDOWP (FRAME_ROOT_WINDOW (f)).
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70155
diff changeset
7071 if (WINDOWP (FRAME_ROOT_WINDOW (f)))
6e5b403b5586 (foreach_window): Check WINDOWP (FRAME_ROOT_WINDOW (f)).
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70155
diff changeset
7072 foreach_window_1 (XWINDOW (FRAME_ROOT_WINDOW (f)), fn, user_data);
25517
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7073 }
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7074
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7075
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7076 /* Helper function for foreach_window. Call FN for all leaf windows
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7077 reachable from W. FN is called with the first argument being a
30362
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
7078 pointer to the leaf window, and with additional argument USER_DATA.
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
7079 Stop when FN returns 0. Value is 0 if stopped by FN. */
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
7080
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
7081 static int
30362
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
7082 foreach_window_1 (w, fn, user_data)
25517
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7083 struct window *w;
30362
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
7084 int (* fn) P_ ((struct window *, void *));
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
7085 void *user_data;
25517
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7086 {
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
7087 int cont;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
7088
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
7089 for (cont = 1; w && cont;)
25517
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7090 {
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7091 if (!NILP (w->hchild))
30362
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
7092 cont = foreach_window_1 (XWINDOW (w->hchild), fn, user_data);
25517
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7093 else if (!NILP (w->vchild))
30362
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
7094 cont = foreach_window_1 (XWINDOW (w->vchild), fn, user_data);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
7095 else
30366
8dd313fc287d (foreach_window_1): Fix typo reversing an if-condition.
Gerd Moellmann <gerd@gnu.org>
parents: 30362
diff changeset
7096 cont = fn (w, user_data);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
7097
25517
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7098 w = NILP (w->next) ? 0 : XWINDOW (w->next);
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7099 }
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
7100
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
7101 return cont;
25517
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7102 }
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7103
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7104
39952
17e0900cd156 Comment fix.
Gerd Moellmann <gerd@gnu.org>
parents: 39748
diff changeset
7105 /* Freeze or unfreeze the window start of W unless it is a
30362
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
7106 mini-window or the selected window. FREEZE_P non-null means freeze
25517
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7107 the window start. */
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7108
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
7109 static int
25517
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7110 freeze_window_start (w, freeze_p)
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7111 struct window *w;
30362
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
7112 void *freeze_p;
25517
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7113 {
84376
584ae8393da8 (freeze_window_start): Don't presume selected_window holds a window object.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 84357
diff changeset
7114 if (MINI_WINDOW_P (w)
584ae8393da8 (freeze_window_start): Don't presume selected_window holds a window object.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 84357
diff changeset
7115 || (WINDOWP (selected_window) /* Can be nil in corner cases. */
584ae8393da8 (freeze_window_start): Don't presume selected_window holds a window object.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 84357
diff changeset
7116 && (w == XWINDOW (selected_window)
584ae8393da8 (freeze_window_start): Don't presume selected_window holds a window object.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 84357
diff changeset
7117 || (MINI_WINDOW_P (XWINDOW (selected_window))
584ae8393da8 (freeze_window_start): Don't presume selected_window holds a window object.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 84357
diff changeset
7118 && ! NILP (Vminibuf_scroll_window)
584ae8393da8 (freeze_window_start): Don't presume selected_window holds a window object.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 84357
diff changeset
7119 && w == XWINDOW (Vminibuf_scroll_window)))))
30362
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
7120 freeze_p = NULL;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
7121
30362
fc017b1b2a7d (foreach_window): Instead of a fake variable argument
Gerd Moellmann <gerd@gnu.org>
parents: 30265
diff changeset
7122 w->frozen_window_start_p = freeze_p != NULL;
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
7123 return 1;
25517
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7124 }
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7125
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7126
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7127 /* Freeze or unfreeze the window starts of all leaf windows on frame
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7128 F, except the selected window and a mini-window. FREEZE_P non-zero
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7129 means freeze the window start. */
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7130
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7131 void
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7132 freeze_window_starts (f, freeze_p)
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7133 struct frame *f;
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7134 int freeze_p;
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7135 {
31903
3e0a1f91c149 (freeze_window_starts): Construct last argument for
Gerd Moellmann <gerd@gnu.org>
parents: 31829
diff changeset
7136 foreach_window (f, freeze_window_start, (void *) (freeze_p ? f : 0));
25517
619897099dc4 (foreach_window, foreach_window_1): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25462
diff changeset
7137 }
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7138
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7139
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7140 /***********************************************************************
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7141 Initialization
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7142 ***********************************************************************/
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7143
20777
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7144 /* Return 1 if window configurations C1 and C2
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7145 describe the same state of affairs. This is used by Fequal. */
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7146
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7147 int
21022
52bc6b672a50 (compare_window_configurations): New arg ignore_positions.
Richard M. Stallman <rms@gnu.org>
parents: 20867
diff changeset
7148 compare_window_configurations (c1, c2, ignore_positions)
20777
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7149 Lisp_Object c1, c2;
21022
52bc6b672a50 (compare_window_configurations): New arg ignore_positions.
Richard M. Stallman <rms@gnu.org>
parents: 20867
diff changeset
7150 int ignore_positions;
20777
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7151 {
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7152 register struct save_window_data *d1, *d2;
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7153 struct Lisp_Vector *sw1, *sw2;
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7154 int i;
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7155
71844
632e73258d36 (Fwindow_configuration_frame, Fset_window_configuration):
Kim F. Storm <storm@cua.dk>
parents: 71717
diff changeset
7156 CHECK_WINDOW_CONFIGURATION (c1);
632e73258d36 (Fwindow_configuration_frame, Fset_window_configuration):
Kim F. Storm <storm@cua.dk>
parents: 71717
diff changeset
7157 CHECK_WINDOW_CONFIGURATION (c2);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
7158
20777
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7159 d1 = (struct save_window_data *) XVECTOR (c1);
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7160 d2 = (struct save_window_data *) XVECTOR (c2);
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7161 sw1 = XVECTOR (d1->saved_windows);
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7162 sw2 = XVECTOR (d2->saved_windows);
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7163
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
7164 if (! EQ (d1->frame_cols, d2->frame_cols))
20777
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7165 return 0;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
7166 if (! EQ (d1->frame_lines, d2->frame_lines))
20777
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7167 return 0;
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7168 if (! EQ (d1->frame_menu_bar_lines, d2->frame_menu_bar_lines))
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7169 return 0;
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7170 if (! EQ (d1->selected_frame, d2->selected_frame))
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7171 return 0;
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7172 /* Don't compare the current_window field directly.
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7173 Instead see w1_is_current and w2_is_current, below. */
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7174 if (! EQ (d1->current_buffer, d2->current_buffer))
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7175 return 0;
21022
52bc6b672a50 (compare_window_configurations): New arg ignore_positions.
Richard M. Stallman <rms@gnu.org>
parents: 20867
diff changeset
7176 if (! ignore_positions)
43571
d3b03dea29d4 (Vminibuf_selected_window): New variable.
Kim F. Storm <storm@cua.dk>
parents: 43281
diff changeset
7177 {
d3b03dea29d4 (Vminibuf_selected_window): New variable.
Kim F. Storm <storm@cua.dk>
parents: 43281
diff changeset
7178 if (! EQ (d1->minibuf_scroll_window, d2->minibuf_scroll_window))
d3b03dea29d4 (Vminibuf_selected_window): New variable.
Kim F. Storm <storm@cua.dk>
parents: 43281
diff changeset
7179 return 0;
d3b03dea29d4 (Vminibuf_selected_window): New variable.
Kim F. Storm <storm@cua.dk>
parents: 43281
diff changeset
7180 if (! EQ (d1->minibuf_selected_window, d2->minibuf_selected_window))
d3b03dea29d4 (Vminibuf_selected_window): New variable.
Kim F. Storm <storm@cua.dk>
parents: 43281
diff changeset
7181 return 0;
d3b03dea29d4 (Vminibuf_selected_window): New variable.
Kim F. Storm <storm@cua.dk>
parents: 43281
diff changeset
7182 }
20777
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7183 /* Don't compare the root_window field.
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7184 We don't require the two configurations
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7185 to use the same window object,
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7186 and the two root windows must be equivalent
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7187 if everything else compares equal. */
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7188 if (! EQ (d1->focus_frame, d2->focus_frame))
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7189 return 0;
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7190 if (! EQ (d1->min_width, d2->min_width))
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7191 return 0;
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7192 if (! EQ (d1->min_height, d2->min_height))
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7193 return 0;
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7194
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7195 /* Verify that the two confis have the same number of windows. */
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7196 if (sw1->size != sw2->size)
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7197 return 0;
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7198
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7199 for (i = 0; i < sw1->size; i++)
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7200 {
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7201 struct saved_window *p1, *p2;
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7202 int w1_is_current, w2_is_current;
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7203
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7204 p1 = SAVED_WINDOW_N (sw1, i);
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7205 p2 = SAVED_WINDOW_N (sw2, i);
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7206
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7207 /* Verify that the current windows in the two
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7208 configurations correspond to each other. */
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7209 w1_is_current = EQ (d1->current_window, p1->window);
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7210 w2_is_current = EQ (d2->current_window, p2->window);
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7211
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7212 if (w1_is_current != w2_is_current)
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7213 return 0;
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7214
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7215 /* Verify that the corresponding windows do match. */
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7216 if (! EQ (p1->buffer, p2->buffer))
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7217 return 0;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
7218 if (! EQ (p1->left_col, p2->left_col))
20777
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7219 return 0;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
7220 if (! EQ (p1->top_line, p2->top_line))
20777
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7221 return 0;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
7222 if (! EQ (p1->total_cols, p2->total_cols))
20777
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7223 return 0;
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
7224 if (! EQ (p1->total_lines, p2->total_lines))
20777
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7225 return 0;
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7226 if (! EQ (p1->display_table, p2->display_table))
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7227 return 0;
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7228 if (! EQ (p1->parent, p2->parent))
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7229 return 0;
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7230 if (! EQ (p1->prev, p2->prev))
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7231 return 0;
21022
52bc6b672a50 (compare_window_configurations): New arg ignore_positions.
Richard M. Stallman <rms@gnu.org>
parents: 20867
diff changeset
7232 if (! ignore_positions)
52bc6b672a50 (compare_window_configurations): New arg ignore_positions.
Richard M. Stallman <rms@gnu.org>
parents: 20867
diff changeset
7233 {
52bc6b672a50 (compare_window_configurations): New arg ignore_positions.
Richard M. Stallman <rms@gnu.org>
parents: 20867
diff changeset
7234 if (! EQ (p1->hscroll, p2->hscroll))
52bc6b672a50 (compare_window_configurations): New arg ignore_positions.
Richard M. Stallman <rms@gnu.org>
parents: 20867
diff changeset
7235 return 0;
34747
b17790c2efbf (make_window): Initialize window's min_hscroll.
Gerd Moellmann <gerd@gnu.org>
parents: 34735
diff changeset
7236 if (!EQ (p1->min_hscroll, p2->min_hscroll))
b17790c2efbf (make_window): Initialize window's min_hscroll.
Gerd Moellmann <gerd@gnu.org>
parents: 34735
diff changeset
7237 return 0;
21022
52bc6b672a50 (compare_window_configurations): New arg ignore_positions.
Richard M. Stallman <rms@gnu.org>
parents: 20867
diff changeset
7238 if (! EQ (p1->start_at_line_beg, p2->start_at_line_beg))
52bc6b672a50 (compare_window_configurations): New arg ignore_positions.
Richard M. Stallman <rms@gnu.org>
parents: 20867
diff changeset
7239 return 0;
52bc6b672a50 (compare_window_configurations): New arg ignore_positions.
Richard M. Stallman <rms@gnu.org>
parents: 20867
diff changeset
7240 if (NILP (Fequal (p1->start, p2->start)))
52bc6b672a50 (compare_window_configurations): New arg ignore_positions.
Richard M. Stallman <rms@gnu.org>
parents: 20867
diff changeset
7241 return 0;
52bc6b672a50 (compare_window_configurations): New arg ignore_positions.
Richard M. Stallman <rms@gnu.org>
parents: 20867
diff changeset
7242 if (NILP (Fequal (p1->pointm, p2->pointm)))
52bc6b672a50 (compare_window_configurations): New arg ignore_positions.
Richard M. Stallman <rms@gnu.org>
parents: 20867
diff changeset
7243 return 0;
52bc6b672a50 (compare_window_configurations): New arg ignore_positions.
Richard M. Stallman <rms@gnu.org>
parents: 20867
diff changeset
7244 if (NILP (Fequal (p1->mark, p2->mark)))
52bc6b672a50 (compare_window_configurations): New arg ignore_positions.
Richard M. Stallman <rms@gnu.org>
parents: 20867
diff changeset
7245 return 0;
52bc6b672a50 (compare_window_configurations): New arg ignore_positions.
Richard M. Stallman <rms@gnu.org>
parents: 20867
diff changeset
7246 }
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
7247 if (! EQ (p1->left_margin_cols, p2->left_margin_cols))
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
7248 return 0;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
7249 if (! EQ (p1->right_margin_cols, p2->right_margin_cols))
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
7250 return 0;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
7251 if (! EQ (p1->left_fringe_width, p2->left_fringe_width))
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
7252 return 0;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
7253 if (! EQ (p1->right_fringe_width, p2->right_fringe_width))
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
7254 return 0;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
7255 if (! EQ (p1->fringes_outside_margins, p2->fringes_outside_margins))
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
7256 return 0;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
7257 if (! EQ (p1->scroll_bar_width, p2->scroll_bar_width))
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
7258 return 0;
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
7259 if (! EQ (p1->vertical_scroll_bar_type, p2->vertical_scroll_bar_type))
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
7260 return 0;
20777
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7261 }
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7262
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7263 return 1;
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7264 }
21022
52bc6b672a50 (compare_window_configurations): New arg ignore_positions.
Richard M. Stallman <rms@gnu.org>
parents: 20867
diff changeset
7265
52bc6b672a50 (compare_window_configurations): New arg ignore_positions.
Richard M. Stallman <rms@gnu.org>
parents: 20867
diff changeset
7266 DEFUN ("compare-window-configurations", Fcompare_window_configurations,
52bc6b672a50 (compare_window_configurations): New arg ignore_positions.
Richard M. Stallman <rms@gnu.org>
parents: 20867
diff changeset
7267 Scompare_window_configurations, 2, 2, 0,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7268 doc: /* Compare two window configurations as regards the structure of windows.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7269 This function ignores details such as the values of point and mark
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7270 and scrolling positions. */)
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7271 (x, y)
21022
52bc6b672a50 (compare_window_configurations): New arg ignore_positions.
Richard M. Stallman <rms@gnu.org>
parents: 20867
diff changeset
7272 Lisp_Object x, y;
52bc6b672a50 (compare_window_configurations): New arg ignore_positions.
Richard M. Stallman <rms@gnu.org>
parents: 20867
diff changeset
7273 {
52bc6b672a50 (compare_window_configurations): New arg ignore_positions.
Richard M. Stallman <rms@gnu.org>
parents: 20867
diff changeset
7274 if (compare_window_configurations (x, y, 1))
52bc6b672a50 (compare_window_configurations): New arg ignore_positions.
Richard M. Stallman <rms@gnu.org>
parents: 20867
diff changeset
7275 return Qt;
52bc6b672a50 (compare_window_configurations): New arg ignore_positions.
Richard M. Stallman <rms@gnu.org>
parents: 20867
diff changeset
7276 return Qnil;
52bc6b672a50 (compare_window_configurations): New arg ignore_positions.
Richard M. Stallman <rms@gnu.org>
parents: 20867
diff changeset
7277 }
20777
a9e1b9bf06e3 (compare_window_configurations): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20708
diff changeset
7278
21514
fa9ff387d260 Fix -Wimplicit warnings.
Andreas Schwab <schwab@suse.de>
parents: 21227
diff changeset
7279 void
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7280 init_window_once ()
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7281 {
83008
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83005
diff changeset
7282 struct frame *f = make_initial_frame ();
25676
70c6d3f2f3b9 (Fminibuffer_window): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents: 25591
diff changeset
7283 XSETFRAME (selected_frame, f);
70c6d3f2f3b9 (Fminibuffer_window): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents: 25591
diff changeset
7284 Vterminal_frame = selected_frame;
70c6d3f2f3b9 (Fminibuffer_window): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents: 25591
diff changeset
7285 minibuf_window = f->minibuffer_window;
70c6d3f2f3b9 (Fminibuffer_window): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents: 25591
diff changeset
7286 selected_window = f->selected_window;
70c6d3f2f3b9 (Fminibuffer_window): Change for Lisp_Object
Gerd Moellmann <gerd@gnu.org>
parents: 25591
diff changeset
7287 last_nonminibuf_frame = f;
14445
e73b37519cdc (Fset_window_buffer): Set buffer temporarily around running
Richard M. Stallman <rms@gnu.org>
parents: 14204
diff changeset
7288
e73b37519cdc (Fset_window_buffer): Set buffer temporarily around running
Richard M. Stallman <rms@gnu.org>
parents: 14204
diff changeset
7289 window_initialized = 1;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7290 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7291
21514
fa9ff387d260 Fix -Wimplicit warnings.
Andreas Schwab <schwab@suse.de>
parents: 21227
diff changeset
7292 void
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
7293 init_window ()
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
7294 {
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
7295 Vwindow_list = Qnil;
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
7296 }
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
7297
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
7298 void
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7299 syms_of_window ()
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7300 {
69209
b9ad41f39bf6 * xselect.c (x_catch_errors_unwind): New function.
Chong Yidong <cyd@stupidchicken.com>
parents: 69104
diff changeset
7301 Qscroll_up = intern ("scroll-up");
b9ad41f39bf6 * xselect.c (x_catch_errors_unwind): New function.
Chong Yidong <cyd@stupidchicken.com>
parents: 69104
diff changeset
7302 staticpro (&Qscroll_up);
b9ad41f39bf6 * xselect.c (x_catch_errors_unwind): New function.
Chong Yidong <cyd@stupidchicken.com>
parents: 69104
diff changeset
7303
b9ad41f39bf6 * xselect.c (x_catch_errors_unwind): New function.
Chong Yidong <cyd@stupidchicken.com>
parents: 69104
diff changeset
7304 Qscroll_down = intern ("scroll-down");
b9ad41f39bf6 * xselect.c (x_catch_errors_unwind): New function.
Chong Yidong <cyd@stupidchicken.com>
parents: 69104
diff changeset
7305 staticpro (&Qscroll_down);
b9ad41f39bf6 * xselect.c (x_catch_errors_unwind): New function.
Chong Yidong <cyd@stupidchicken.com>
parents: 69104
diff changeset
7306
25540
2b4bdd114899 (Qwindow_size_fixed): Replaces Qfixed_window_size.
Gerd Moellmann <gerd@gnu.org>
parents: 25517
diff changeset
7307 Qwindow_size_fixed = intern ("window-size-fixed");
2b4bdd114899 (Qwindow_size_fixed): Replaces Qfixed_window_size.
Gerd Moellmann <gerd@gnu.org>
parents: 25517
diff changeset
7308 staticpro (&Qwindow_size_fixed);
61755
71259596d397 (window_size_fixed): Variable deleted.
Richard M. Stallman <rms@gnu.org>
parents: 61635
diff changeset
7309 Fset (Qwindow_size_fixed, Qnil);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49011
diff changeset
7310
17281
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
7311 staticpro (&Qwindow_configuration_change_hook);
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
7312 Qwindow_configuration_change_hook
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
7313 = intern ("window-configuration-change-hook");
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
7314
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7315 Qwindowp = intern ("windowp");
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7316 staticpro (&Qwindowp);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7317
23410
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
7318 Qwindow_configuration_p = intern ("window-configuration-p");
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
7319 staticpro (&Qwindow_configuration_p);
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
7320
2210
22d78dbb3cc7 Rename `live-window-p' to `window-live-p', for consistency with
Jim Blandy <jimb@redhat.com>
parents: 2190
diff changeset
7321 Qwindow_live_p = intern ("window-live-p");
22d78dbb3cc7 Rename `live-window-p' to `window-live-p', for consistency with
Jim Blandy <jimb@redhat.com>
parents: 2190
diff changeset
7322 staticpro (&Qwindow_live_p);
1444
559d2f2119aa * window.c: Try to deal coherently with deleted windows:
Jim Blandy <jimb@redhat.com>
parents: 1345
diff changeset
7323
11405
645e3883da72 (temp_output_buffer_show): Select the chosen window
Richard M. Stallman <rms@gnu.org>
parents: 11307
diff changeset
7324 Qtemp_buffer_show_hook = intern ("temp-buffer-show-hook");
10461
d3dee0c530d6 (Qtemp_buffer_show_hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents: 10373
diff changeset
7325 staticpro (&Qtemp_buffer_show_hook);
d3dee0c530d6 (Qtemp_buffer_show_hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents: 10373
diff changeset
7326
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
7327 staticpro (&Vwindow_list);
43597
8097923cfe85 (syms_of_window): Initialize minibuf_selected_window.
Kim F. Storm <storm@cua.dk>
parents: 43594
diff changeset
7328
8097923cfe85 (syms_of_window): Initialize minibuf_selected_window.
Kim F. Storm <storm@cua.dk>
parents: 43594
diff changeset
7329 minibuf_selected_window = Qnil;
43594
23cddac4d0b7 (minibuf_selected_window): Renamed from
Kim F. Storm <storm@cua.dk>
parents: 43571
diff changeset
7330 staticpro (&minibuf_selected_window);
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
7331
69408
aa89c5390b12 Rename preserve_y to window_scroll_pixel_based_preserve_y.
Luc Teirlinck <teirllm@auburn.edu>
parents: 69342
diff changeset
7332 window_scroll_pixel_based_preserve_y = -1;
69342
12e65aa88734 Declare preserve_y as a static global variable.
Luc Teirlinck <teirllm@auburn.edu>
parents: 69209
diff changeset
7333
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7334 DEFVAR_LISP ("temp-buffer-show-function", &Vtemp_buffer_show_function,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7335 doc: /* Non-nil means call as function to display a help buffer.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7336 The function is called with one argument, the buffer to be displayed.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7337 Used by `with-output-to-temp-buffer'.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7338 If this function is used, then it must do the entire job of showing
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7339 the buffer; `temp-buffer-show-hook' is not run unless this function runs it. */);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7340 Vtemp_buffer_show_function = Qnil;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7341
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7342 DEFVAR_LISP ("display-buffer-function", &Vdisplay_buffer_function,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7343 doc: /* If non-nil, function to call to handle `display-buffer'.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7344 It will receive two args, the buffer and a flag which if non-nil means
56393
8eb84bf840a8 (Fwindow_buffer, Fother_window, Fget_lru_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56174
diff changeset
7345 that the currently selected window is not acceptable.
8eb84bf840a8 (Fwindow_buffer, Fother_window, Fget_lru_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56174
diff changeset
7346 It should choose or create a window, display the specified buffer in it,
8eb84bf840a8 (Fwindow_buffer, Fother_window, Fget_lru_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56174
diff changeset
7347 and return the window.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7348 Commands such as `switch-to-buffer-other-window' and `find-file-other-window'
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7349 work using this function. */);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7350 Vdisplay_buffer_function = Qnil;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7351
34261
c50a8c8171b7 (Veven_window_heights): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 34097
diff changeset
7352 DEFVAR_LISP ("even-window-heights", &Veven_window_heights,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7353 doc: /* *If non-nil, `display-buffer' should even the window heights.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7354 If nil, `display-buffer' will leave the window configuration alone. */);
34261
c50a8c8171b7 (Veven_window_heights): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 34097
diff changeset
7355 Veven_window_heights = Qt;
c50a8c8171b7 (Veven_window_heights): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 34097
diff changeset
7356
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7357 DEFVAR_LISP ("minibuffer-scroll-window", &Vminibuf_scroll_window,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7358 doc: /* Non-nil means it is the window that C-M-v in minibuffer should scroll. */);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7359 Vminibuf_scroll_window = Qnil;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7360
43281
a4ea76de57c9 (Vmode_line_in_non_selected_windows): Removed.
Kim F. Storm <storm@cua.dk>
parents: 43241
diff changeset
7361 DEFVAR_BOOL ("mode-line-in-non-selected-windows", &mode_line_in_non_selected_windows,
43241
5558e7582f1f (Vmode_line_in_non_selected_windows): New variable.
Kim F. Storm <storm@cua.dk>
parents: 42875
diff changeset
7362 doc: /* Non-nil means to use `mode-line-inactive' face in non-selected windows.
43281
a4ea76de57c9 (Vmode_line_in_non_selected_windows): Removed.
Kim F. Storm <storm@cua.dk>
parents: 43241
diff changeset
7363 If the minibuffer is active, the `minibuffer-scroll-window' mode line
a4ea76de57c9 (Vmode_line_in_non_selected_windows): Removed.
Kim F. Storm <storm@cua.dk>
parents: 43241
diff changeset
7364 is displayed in the `mode-line' face. */);
a4ea76de57c9 (Vmode_line_in_non_selected_windows): Removed.
Kim F. Storm <storm@cua.dk>
parents: 43241
diff changeset
7365 mode_line_in_non_selected_windows = 1;
43241
5558e7582f1f (Vmode_line_in_non_selected_windows): New variable.
Kim F. Storm <storm@cua.dk>
parents: 42875
diff changeset
7366
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7367 DEFVAR_LISP ("other-window-scroll-buffer", &Vother_window_scroll_buffer,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7368 doc: /* If non-nil, this is a buffer and \\[scroll-other-window] should scroll its window. */);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7369 Vother_window_scroll_buffer = Qnil;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7370
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
7371 DEFVAR_BOOL ("pop-up-frames", &pop_up_frames,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7372 doc: /* *Non-nil means `display-buffer' should make a separate frame. */);
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
7373 pop_up_frames = 0;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7374
59677
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
7375 DEFVAR_BOOL ("auto-window-vscroll", &auto_window_vscroll_p,
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
7376 doc: /* *Non-nil means to automatically adjust `window-vscroll' to view tall lines. */);
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
7377 auto_window_vscroll_p = 1;
d762442d2c8f (auto_window_vscroll_p): New boolean.
Kim F. Storm <storm@cua.dk>
parents: 59342
diff changeset
7378
30560
e4ba830b426d (display_buffer_reuse_frames): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30446
diff changeset
7379 DEFVAR_BOOL ("display-buffer-reuse-frames", &display_buffer_reuse_frames,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7380 doc: /* *Non-nil means `display-buffer' should reuse frames.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7381 If the buffer in question is already displayed in a frame, raise that frame. */);
30560
e4ba830b426d (display_buffer_reuse_frames): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30446
diff changeset
7382 display_buffer_reuse_frames = 0;
e4ba830b426d (display_buffer_reuse_frames): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 30446
diff changeset
7383
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
7384 DEFVAR_LISP ("pop-up-frame-function", &Vpop_up_frame_function,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7385 doc: /* Function to call to handle automatic new frame creation.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7386 It is called with no arguments and should return a newly created frame.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7387
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7388 A typical value might be `(lambda () (new-frame pop-up-frame-alist))'
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7389 where `pop-up-frame-alist' would hold the default frame parameters. */);
769
1f320a0729f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 735
diff changeset
7390 Vpop_up_frame_function = Qnil;
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7391
7056
0a18af7eb587 Implement special frames for specified buffers.
Richard M. Stallman <rms@gnu.org>
parents: 6982
diff changeset
7392 DEFVAR_LISP ("special-display-buffer-names", &Vspecial_display_buffer_names,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7393 doc: /* *List of buffer names that should have their own special frames.
61871
dd7b3da13b8f (Fsame_window_p, Fspecial_display_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 61755
diff changeset
7394 Displaying a buffer with `display-buffer' or `pop-to-buffer',
dd7b3da13b8f (Fsame_window_p, Fspecial_display_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 61755
diff changeset
7395 if its name is in this list, makes a special frame for it
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7396 using `special-display-function'. See also `special-display-regexps'.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7397
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7398 An element of the list can be a list instead of just a string.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7399 There are two ways to use a list as an element:
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7400 (BUFFER FRAME-PARAMETERS...) (BUFFER FUNCTION OTHER-ARGS...)
56174
7b713bd3dad4 (syms_of_window): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 56089
diff changeset
7401 In the first case, the FRAME-PARAMETERS are pairs of the form
7b713bd3dad4 (syms_of_window): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 56089
diff changeset
7402 \(PARAMETER . VALUE); these parameter values are used to create the frame.
7b713bd3dad4 (syms_of_window): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 56089
diff changeset
7403 In the second case, FUNCTION is called with BUFFER as the first argument,
7b713bd3dad4 (syms_of_window): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 56089
diff changeset
7404 followed by the OTHER-ARGS--it can display BUFFER in any way it likes.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7405 All this is done by the function found in `special-display-function'.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7406
52836
a832ae359532 (Fset_window_margins): Allow only integers as args.
Richard M. Stallman <rms@gnu.org>
parents: 52831
diff changeset
7407 If the specified frame parameters include (same-buffer . t), the
a832ae359532 (Fset_window_margins): Allow only integers as args.
Richard M. Stallman <rms@gnu.org>
parents: 52831
diff changeset
7408 buffer is displayed in the currently selected window. Otherwise, if
a832ae359532 (Fset_window_margins): Allow only integers as args.
Richard M. Stallman <rms@gnu.org>
parents: 52831
diff changeset
7409 they include (same-frame . t), the buffer is displayed in a new window
a832ae359532 (Fset_window_margins): Allow only integers as args.
Richard M. Stallman <rms@gnu.org>
parents: 52831
diff changeset
7410 in the currently selected frame.
a832ae359532 (Fset_window_margins): Allow only integers as args.
Richard M. Stallman <rms@gnu.org>
parents: 52831
diff changeset
7411
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7412 If this variable appears \"not to work\", because you add a name to it
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7413 but that buffer still appears in the selected window, look at the
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7414 values of `same-window-buffer-names' and `same-window-regexps'.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7415 Those variables take precedence over this one. */);
7056
0a18af7eb587 Implement special frames for specified buffers.
Richard M. Stallman <rms@gnu.org>
parents: 6982
diff changeset
7416 Vspecial_display_buffer_names = Qnil;
0a18af7eb587 Implement special frames for specified buffers.
Richard M. Stallman <rms@gnu.org>
parents: 6982
diff changeset
7417
0a18af7eb587 Implement special frames for specified buffers.
Richard M. Stallman <rms@gnu.org>
parents: 6982
diff changeset
7418 DEFVAR_LISP ("special-display-regexps", &Vspecial_display_regexps,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7419 doc: /* *List of regexps saying which buffers should have their own special frames.
61871
dd7b3da13b8f (Fsame_window_p, Fspecial_display_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 61755
diff changeset
7420 When displaying a buffer with `display-buffer' or `pop-to-buffer',
dd7b3da13b8f (Fsame_window_p, Fspecial_display_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 61755
diff changeset
7421 if any regexp in this list matches the buffer name, it makes a
dd7b3da13b8f (Fsame_window_p, Fspecial_display_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 61755
diff changeset
7422 special frame for the buffer by calling `special-display-function'.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7423
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7424 An element of the list can be a list instead of just a string.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7425 There are two ways to use a list as an element:
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7426 (REGEXP FRAME-PARAMETERS...) (REGEXP FUNCTION OTHER-ARGS...)
56174
7b713bd3dad4 (syms_of_window): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 56089
diff changeset
7427 In the first case, the FRAME-PARAMETERS are pairs of the form
7b713bd3dad4 (syms_of_window): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 56089
diff changeset
7428 \(PARAMETER . VALUE); these parameter values are used to create the frame.
7b713bd3dad4 (syms_of_window): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 56089
diff changeset
7429 In the second case, FUNCTION is called with BUFFER as the first argument,
7b713bd3dad4 (syms_of_window): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 56089
diff changeset
7430 followed by the OTHER-ARGS--it can display the buffer in any way it likes.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7431 All this is done by the function found in `special-display-function'.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7432
52836
a832ae359532 (Fset_window_margins): Allow only integers as args.
Richard M. Stallman <rms@gnu.org>
parents: 52831
diff changeset
7433 If the specified frame parameters include (same-buffer . t), the
a832ae359532 (Fset_window_margins): Allow only integers as args.
Richard M. Stallman <rms@gnu.org>
parents: 52831
diff changeset
7434 buffer is displayed in the currently selected window. Otherwise, if
a832ae359532 (Fset_window_margins): Allow only integers as args.
Richard M. Stallman <rms@gnu.org>
parents: 52831
diff changeset
7435 they include (same-frame . t), the buffer is displayed in a new window
a832ae359532 (Fset_window_margins): Allow only integers as args.
Richard M. Stallman <rms@gnu.org>
parents: 52831
diff changeset
7436 in the currently selected frame.
a832ae359532 (Fset_window_margins): Allow only integers as args.
Richard M. Stallman <rms@gnu.org>
parents: 52831
diff changeset
7437
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7438 If this variable appears \"not to work\", because you add a regexp to it
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7439 but the matching buffers still appear in the selected window, look at the
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7440 values of `same-window-buffer-names' and `same-window-regexps'.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7441 Those variables take precedence over this one. */);
7056
0a18af7eb587 Implement special frames for specified buffers.
Richard M. Stallman <rms@gnu.org>
parents: 6982
diff changeset
7442 Vspecial_display_regexps = Qnil;
0a18af7eb587 Implement special frames for specified buffers.
Richard M. Stallman <rms@gnu.org>
parents: 6982
diff changeset
7443
0a18af7eb587 Implement special frames for specified buffers.
Richard M. Stallman <rms@gnu.org>
parents: 6982
diff changeset
7444 DEFVAR_LISP ("special-display-function", &Vspecial_display_function,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7445 doc: /* Function to call to make a new frame for a special buffer.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7446 It is called with two arguments, the buffer and optional buffer specific
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7447 data, and should return a window displaying that buffer.
47973
b75515b80900 (window_loop): For GET_LRU_WINDOW and GET_LARGEST_WINDOW>,
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47865
diff changeset
7448 The default value normally makes a separate frame for the buffer,
b75515b80900 (window_loop): For GET_LRU_WINDOW and GET_LARGEST_WINDOW>,
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47865
diff changeset
7449 using `special-display-frame-alist' to specify the frame parameters.
b75515b80900 (window_loop): For GET_LRU_WINDOW and GET_LARGEST_WINDOW>,
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47865
diff changeset
7450 But if the buffer specific data includes (same-buffer . t) then the
b75515b80900 (window_loop): For GET_LRU_WINDOW and GET_LARGEST_WINDOW>,
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47865
diff changeset
7451 buffer is displayed in the current selected window.
b75515b80900 (window_loop): For GET_LRU_WINDOW and GET_LARGEST_WINDOW>,
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47865
diff changeset
7452 Otherwise if it includes (same-frame . t) then the buffer is displayed in
b75515b80900 (window_loop): For GET_LRU_WINDOW and GET_LARGEST_WINDOW>,
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47865
diff changeset
7453 a new window in the currently selected frame.
b75515b80900 (window_loop): For GET_LRU_WINDOW and GET_LARGEST_WINDOW>,
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47865
diff changeset
7454
b75515b80900 (window_loop): For GET_LRU_WINDOW and GET_LARGEST_WINDOW>,
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 47865
diff changeset
7455 A buffer is special if it is listed in `special-display-buffer-names'
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7456 or matches a regexp in `special-display-regexps'. */);
7056
0a18af7eb587 Implement special frames for specified buffers.
Richard M. Stallman <rms@gnu.org>
parents: 6982
diff changeset
7457 Vspecial_display_function = Qnil;
0a18af7eb587 Implement special frames for specified buffers.
Richard M. Stallman <rms@gnu.org>
parents: 6982
diff changeset
7458
10958
c0d821d95739 (Vsame_window_buffer_names, Vsame_window_regexps): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 10808
diff changeset
7459 DEFVAR_LISP ("same-window-buffer-names", &Vsame_window_buffer_names,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7460 doc: /* *List of buffer names that should appear in the selected window.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7461 Displaying one of these buffers using `display-buffer' or `pop-to-buffer'
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7462 switches to it in the selected window, rather than making it appear
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7463 in some other window.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7464
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7465 An element of the list can be a cons cell instead of just a string.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7466 Then the car must be a string, which specifies the buffer name.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7467 This is for compatibility with `special-display-buffer-names';
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7468 the cdr of the cons cell is ignored.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7469
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7470 See also `same-window-regexps'. */);
10958
c0d821d95739 (Vsame_window_buffer_names, Vsame_window_regexps): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 10808
diff changeset
7471 Vsame_window_buffer_names = Qnil;
c0d821d95739 (Vsame_window_buffer_names, Vsame_window_regexps): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 10808
diff changeset
7472
c0d821d95739 (Vsame_window_buffer_names, Vsame_window_regexps): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 10808
diff changeset
7473 DEFVAR_LISP ("same-window-regexps", &Vsame_window_regexps,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7474 doc: /* *List of regexps saying which buffers should appear in the selected window.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7475 If a buffer name matches one of these regexps, then displaying it
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7476 using `display-buffer' or `pop-to-buffer' switches to it
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7477 in the selected window, rather than making it appear in some other window.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7478
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7479 An element of the list can be a cons cell instead of just a string.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7480 Then the car must be a string, which specifies the buffer name.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7481 This is for compatibility with `special-display-buffer-names';
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7482 the cdr of the cons cell is ignored.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7483
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7484 See also `same-window-buffer-names'. */);
10958
c0d821d95739 (Vsame_window_buffer_names, Vsame_window_regexps): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 10808
diff changeset
7485 Vsame_window_regexps = Qnil;
c0d821d95739 (Vsame_window_buffer_names, Vsame_window_regexps): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 10808
diff changeset
7486
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7487 DEFVAR_BOOL ("pop-up-windows", &pop_up_windows,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7488 doc: /* *Non-nil means display-buffer should make new windows. */);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7489 pop_up_windows = 1;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7490
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7491 DEFVAR_INT ("next-screen-context-lines", &next_screen_context_lines,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7492 doc: /* *Number of lines of continuity when scrolling by screenfuls. */);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7493 next_screen_context_lines = 2;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7494
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7495 DEFVAR_INT ("split-height-threshold", &split_height_threshold,
72615
17955b3a0929 (syms_of_window) <split-height-threshold>:
Eli Zaretskii <eliz@gnu.org>
parents: 72438
diff changeset
7496 doc: /* *A window must be at least this tall to be eligible for splitting
17955b3a0929 (syms_of_window) <split-height-threshold>:
Eli Zaretskii <eliz@gnu.org>
parents: 72438
diff changeset
7497 by `display-buffer'. The value is in line units.
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7498 If there is only one window, it is split regardless of this value. */);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7499 split_height_threshold = 500;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7500
84357
7a92dcd56a24 (Vsplit_window_preferred_function): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 83652
diff changeset
7501 DEFVAR_LISP ("split-window-preferred-function",
7a92dcd56a24 (Vsplit_window_preferred_function): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 83652
diff changeset
7502 &Vsplit_window_preferred_function,
7a92dcd56a24 (Vsplit_window_preferred_function): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 83652
diff changeset
7503 doc: /* Function to use to split a window.
7a92dcd56a24 (Vsplit_window_preferred_function): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 83652
diff changeset
7504 This is used by `display-buffer' to allow the user to choose whether
7a92dcd56a24 (Vsplit_window_preferred_function): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 83652
diff changeset
7505 to split windows horizontally or vertically or some mix of the two.
7a92dcd56a24 (Vsplit_window_preferred_function): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 83652
diff changeset
7506 It is called with a window as single argument and should split it in two
7a92dcd56a24 (Vsplit_window_preferred_function): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 83652
diff changeset
7507 and return the new window. */);
7a92dcd56a24 (Vsplit_window_preferred_function): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 83652
diff changeset
7508 Vsplit_window_preferred_function = intern ("split-window");
7a92dcd56a24 (Vsplit_window_preferred_function): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 83652
diff changeset
7509
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7510 DEFVAR_INT ("window-min-height", &window_min_height,
72615
17955b3a0929 (syms_of_window) <split-height-threshold>:
Eli Zaretskii <eliz@gnu.org>
parents: 72438
diff changeset
7511 doc: /* *Delete any window less than this tall (including its mode line).
17955b3a0929 (syms_of_window) <split-height-threshold>:
Eli Zaretskii <eliz@gnu.org>
parents: 72438
diff changeset
7512 The value is in line units. */);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7513 window_min_height = 4;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7514
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7515 DEFVAR_INT ("window-min-width", &window_min_width,
72615
17955b3a0929 (syms_of_window) <split-height-threshold>:
Eli Zaretskii <eliz@gnu.org>
parents: 72438
diff changeset
7516 doc: /* *Delete any window less than this wide (measured in characters). */);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7517 window_min_width = 10;
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7518
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7519 DEFVAR_LISP ("scroll-preserve-screen-position",
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7520 &Vscroll_preserve_screen_position,
63865
a473419e315e (window_scroll_pixel_based, window_scroll_line_based):
Richard M. Stallman <rms@gnu.org>
parents: 63611
diff changeset
7521 doc: /* *Controls if scroll commands move point to keep its screen line unchanged.
a473419e315e (window_scroll_pixel_based, window_scroll_line_based):
Richard M. Stallman <rms@gnu.org>
parents: 63611
diff changeset
7522 A value of nil means point does not keep its screen position except
a473419e315e (window_scroll_pixel_based, window_scroll_line_based):
Richard M. Stallman <rms@gnu.org>
parents: 63611
diff changeset
7523 at the scroll margin or window boundary respectively.
a473419e315e (window_scroll_pixel_based, window_scroll_line_based):
Richard M. Stallman <rms@gnu.org>
parents: 63611
diff changeset
7524 A value of t means point keeps its screen position if the scroll
a473419e315e (window_scroll_pixel_based, window_scroll_line_based):
Richard M. Stallman <rms@gnu.org>
parents: 63611
diff changeset
7525 command moved it vertically out of the window, e.g. when scrolling
a473419e315e (window_scroll_pixel_based, window_scroll_line_based):
Richard M. Stallman <rms@gnu.org>
parents: 63611
diff changeset
7526 by full screens.
a473419e315e (window_scroll_pixel_based, window_scroll_line_based):
Richard M. Stallman <rms@gnu.org>
parents: 63611
diff changeset
7527 Any other value means point always keeps its screen position. */);
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7528 Vscroll_preserve_screen_position = Qnil;
16980
3da3a2934be5 (scroll_preserve_screen_position): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16751
diff changeset
7529
17281
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
7530 DEFVAR_LISP ("window-configuration-change-hook",
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
7531 &Vwindow_configuration_change_hook,
40103
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7532 doc: /* Functions to call when window configuration changes.
6b389fb978bc Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39958
diff changeset
7533 The selected frame is the one whose configuration has changed. */);
17281
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
7534 Vwindow_configuration_change_hook = Qnil;
4f3c71b28278 (Qwindow_configuration_change_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17226
diff changeset
7535
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7536 defsubr (&Sselected_window);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7537 defsubr (&Sminibuffer_window);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7538 defsubr (&Swindow_minibuffer_p);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7539 defsubr (&Swindowp);
2210
22d78dbb3cc7 Rename `live-window-p' to `window-live-p', for consistency with
Jim Blandy <jimb@redhat.com>
parents: 2190
diff changeset
7540 defsubr (&Swindow_live_p);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7541 defsubr (&Spos_visible_in_window_p);
72955
e7401fd40071 (Fwindow_line_visibility): Remove.
Kim F. Storm <storm@cua.dk>
parents: 72907
diff changeset
7542 defsubr (&Swindow_line_height);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7543 defsubr (&Swindow_buffer);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7544 defsubr (&Swindow_height);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7545 defsubr (&Swindow_width);
78415
73900ddc75ee (window_min_size_2): New function.
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
7546 defsubr (&Swindow_full_width_p);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7547 defsubr (&Swindow_hscroll);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7548 defsubr (&Sset_window_hscroll);
13457
8a1986b2cc76 (Fwindow_redisplay_end_trigger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13418
diff changeset
7549 defsubr (&Swindow_redisplay_end_trigger);
8a1986b2cc76 (Fwindow_redisplay_end_trigger): New function.
Richard M. Stallman <rms@gnu.org>
parents: 13418
diff changeset
7550 defsubr (&Sset_window_redisplay_end_trigger);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7551 defsubr (&Swindow_edges);
51427
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
7552 defsubr (&Swindow_pixel_edges);
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
7553 defsubr (&Swindow_inside_edges);
ac7f678c586d (Fwindow_edges): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 51240
diff changeset
7554 defsubr (&Swindow_inside_pixel_edges);
432
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
7555 defsubr (&Scoordinates_in_window_p);
4d44159f7481 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 362
diff changeset
7556 defsubr (&Swindow_at);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7557 defsubr (&Swindow_point);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7558 defsubr (&Swindow_start);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7559 defsubr (&Swindow_end);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7560 defsubr (&Sset_window_point);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7561 defsubr (&Sset_window_start);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7562 defsubr (&Swindow_dedicated_p);
722
0a2391511b46 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 708
diff changeset
7563 defsubr (&Sset_window_dedicated_p);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7564 defsubr (&Swindow_display_table);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7565 defsubr (&Sset_window_display_table);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7566 defsubr (&Snext_window);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7567 defsubr (&Sprevious_window);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7568 defsubr (&Sother_window);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7569 defsubr (&Sget_lru_window);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7570 defsubr (&Sget_largest_window);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7571 defsubr (&Sget_buffer_window);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7572 defsubr (&Sdelete_other_windows);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7573 defsubr (&Sdelete_windows_on);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7574 defsubr (&Sreplace_buffer_in_windows);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7575 defsubr (&Sdelete_window);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7576 defsubr (&Sset_window_buffer);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7577 defsubr (&Sselect_window);
16390
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
7578 defsubr (&Sspecial_display_p);
77051008303f (Fspecial_display_p, Fsame_window_p): New functions.
Erik Naggum <erik@naggum.no>
parents: 16338
diff changeset
7579 defsubr (&Ssame_window_p);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7580 defsubr (&Sdisplay_buffer);
53143
49489d2151bf (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
Kim F. Storm <storm@cua.dk>
parents: 53129
diff changeset
7581 defsubr (&Sforce_window_update);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7582 defsubr (&Ssplit_window);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7583 defsubr (&Senlarge_window);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7584 defsubr (&Sshrink_window);
67156
33af3a25cca6 (adjust_window_trailing_edge): New function.
Richard M. Stallman <rms@gnu.org>
parents: 66711
diff changeset
7585 defsubr (&Sadjust_window_trailing_edge);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7586 defsubr (&Sscroll_up);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7587 defsubr (&Sscroll_down);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7588 defsubr (&Sscroll_left);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7589 defsubr (&Sscroll_right);
8053
60792df5f81f (Fother_window_for_scrolling): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7663
diff changeset
7590 defsubr (&Sother_window_for_scrolling);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7591 defsubr (&Sscroll_other_window);
43624
a38ac87b3085 (Fminibuffer_selected_window): New function.
Kim F. Storm <storm@cua.dk>
parents: 43620
diff changeset
7592 defsubr (&Sminibuffer_selected_window);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7593 defsubr (&Srecenter);
34416
0d16962724cb (displayed_window_lines): Handle non-newline-terminated final lines properly.
Miles Bader <miles@gnu.org>
parents: 34409
diff changeset
7594 defsubr (&Swindow_text_height);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7595 defsubr (&Smove_to_window_line);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7596 defsubr (&Swindow_configuration_p);
23410
02cc44ea2455 (window_loop): New alternative CHECK_ALL_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents: 22923
diff changeset
7597 defsubr (&Swindow_configuration_frame);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7598 defsubr (&Sset_window_configuration);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7599 defsubr (&Scurrent_window_configuration);
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7600 defsubr (&Ssave_window_excursion);
65908
454a4a463081 (window_tree, Fwindow_tree): Rename fns added 2005-10-04.
Kim F. Storm <storm@cua.dk>
parents: 65826
diff changeset
7601 defsubr (&Swindow_tree);
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7602 defsubr (&Sset_window_margins);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7603 defsubr (&Swindow_margins);
51207
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
7604 defsubr (&Sset_window_fringes);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
7605 defsubr (&Swindow_fringes);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
7606 defsubr (&Sset_window_scroll_bars);
7e176ef34c10 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51049
diff changeset
7607 defsubr (&Swindow_scroll_bars);
24997
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7608 defsubr (&Swindow_vscroll);
5e507b813c1d (Fcoordinates_in_window_p): Rewritten.
Gerd Moellmann <gerd@gnu.org>
parents: 24230
diff changeset
7609 defsubr (&Sset_window_vscroll);
21022
52bc6b672a50 (compare_window_configurations): New arg ignore_positions.
Richard M. Stallman <rms@gnu.org>
parents: 20867
diff changeset
7610 defsubr (&Scompare_window_configurations);
30037
79b4fa5288c3 (Vwindow_list): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 29488
diff changeset
7611 defsubr (&Swindow_list);
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7612 }
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7613
21514
fa9ff387d260 Fix -Wimplicit warnings.
Andreas Schwab <schwab@suse.de>
parents: 21227
diff changeset
7614 void
265
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7615 keys_of_window ()
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7616 {
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7617 initial_define_key (control_x_map, '1', "delete-other-windows");
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7618 initial_define_key (control_x_map, '2', "split-window");
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7619 initial_define_key (control_x_map, '0', "delete-window");
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7620 initial_define_key (control_x_map, 'o', "other-window");
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7621 initial_define_key (control_x_map, '^', "enlarge-window");
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7622 initial_define_key (control_x_map, '<', "scroll-left");
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7623 initial_define_key (control_x_map, '>', "scroll-right");
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7624
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7625 initial_define_key (global_map, Ctl ('V'), "scroll-up");
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7626 initial_define_key (meta_map, Ctl ('V'), "scroll-other-window");
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7627 initial_define_key (meta_map, 'v', "scroll-down");
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7628
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7629 initial_define_key (global_map, Ctl('L'), "recenter");
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7630 initial_define_key (meta_map, 'r', "move-to-window-line");
8df170a4c9d1 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7631 }
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 51674
diff changeset
7632
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 51674
diff changeset
7633 /* arch-tag: 90a9c576-0590-48f1-a5f1-6c96a0452d9f
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 51674
diff changeset
7634 (do not change this comment) */