annotate lisp/ediff/ediff-wind.el @ 78:c7528f8e288d r20-0b34

Import from CVS: tag r20-0b34
author cvs
date Mon, 13 Aug 2007 09:05:42 +0200
parents 131b0175ea99
children 1ce6082ce73f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;; ediff-wind.el --- window manipulation utilities
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
3 ;; Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ;; Author: Michael Kifer <kifer@cs.sunysb.edu>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;; This file is part of GNU Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ;; it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; GNU Emacs is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;; GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;; You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;; Boston, MA 02111-1307, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 ;;; Code:
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
25
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
26 (require 'ediff-init)
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
27 ;;(if ediff-xemacs-p
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
28 ;; (nil) (require 'ediff-tbar)
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
29 (defun ediff-compute-toolbar-width () 0)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 ;; Compiler pacifier
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 (defvar icon-title-format)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 (defvar top-toolbar-height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 (defvar bottom-toolbar-height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 (defvar left-toolbar-height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 (defvar right-toolbar-height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 (defvar left-toolbar-width)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 (defvar right-toolbar-width)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 (defvar default-menubar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 (defvar frame-icon-title-format)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 ;; end pacifier
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 (defvar ediff-window-setup-function (if (ediff-window-display-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 'ediff-setup-windows-multiframe
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 'ediff-setup-windows-plain)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 "*Function called to set up windows.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 Ediff provides a choice of two functions: ediff-setup-windows-plain, for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 doing everything in one frame, and ediff-setup-windows-multiframe,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 which sets the control panel in a separate frame. Also, if the latter
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 function detects that one of the buffers A/B is seen in some other frame,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 it will try to keep that buffer in that frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 If you don't like the two functions provided---write your own one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 The basic guidelines:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 1. It should leave the control buffer current and the control window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 selected.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 2. It should set ediff-window-A, ediff-window-B, ediff-window-C,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 and ediff-control-window to contain window objects that display
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 the corresponding buffers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 3. It should accept the following arguments:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 buffer-A, buffer-B, buffer-C, control-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 Buffer C may not be used in jobs that compare only two buffers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 If you plan to do something fancy, take a close look at how the two
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 provided functions are written.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 ;; indicates if we are in a multiframe setup
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 (ediff-defvar-local ediff-multiframe nil "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 ;; Share of the frame occupied by the merge window (buffer C)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 (ediff-defvar-local ediff-merge-window-share 0.45 "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 ;; The control window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 (ediff-defvar-local ediff-control-window nil "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 ;; Official window for buffer A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 (ediff-defvar-local ediff-window-A nil "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 ;; Official window for buffer B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 (ediff-defvar-local ediff-window-B nil "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 ;; Official window for buffer C
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 (ediff-defvar-local ediff-window-C nil "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 ;; Ediff's window configuration.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 ;; Used to minimize the need to rearrange windows.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 (ediff-defvar-local ediff-window-config-saved "" "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 (defvar ediff-split-window-function 'split-window-vertically
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 "*The function used to split the main window between buffer-A and buffer-B.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 You can set it to a horizontal split instead of the default vertical split
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 by setting this variable to `split-window-horizontally'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 You can also have your own function to do fancy splits.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 This variable has no effect when buffer-A/B are shown in different frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 In this case, Ediff will use those frames to display these buffers.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 (defvar ediff-merge-split-window-function 'split-window-horizontally
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 "*The function used to split the main window between buffer-A and buffer-B.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 You can set it to a vertical split instead of the default horizontal split
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 by setting this variable to `split-window-vertically'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 You can also have your own function to do fancy splits.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 This variable has no effect when buffer-A/B/C are shown in different frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 In this case, Ediff will use those frames to display these buffers.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 (defconst ediff-control-frame-parameters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 (list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 '(name . "Ediff")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 ;;'(unsplittable . t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 '(minibuffer . nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 '(user-position . t) ; Emacs only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 '(vertical-scroll-bars . nil) ; Emacs only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 '(scrollbar-width . 0) ; XEmacs only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 '(menu-bar-lines . 0) ; Emacs only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 ;; don't lower and auto-raise
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 '(auto-lower . nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 '(auto-raise . t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 ;; this blocks queries from window manager as to where to put
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 ;; ediff's control frame. we put the frame outside the display,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 ;; so the initial frame won't jump all over the screen
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 (cons 'top (if (fboundp 'ediff-display-pixel-height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 (1+ (ediff-display-pixel-height))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 3000))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 (cons 'left (if (fboundp 'ediff-display-pixel-width)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 (1+ (ediff-display-pixel-width))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 3000))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 "Frame parameters for displaying Ediff Control Panel.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 Do not specify width and height here. These are computed automatically.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 ;; position of the mouse; used to decide whether to warp the mouse into ctl
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 ;; frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 (ediff-defvar-local ediff-mouse-pixel-position nil "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 ;; not used for now
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 (defvar ediff-mouse-pixel-threshold 30
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 "If the user moves mouse more than this many pixels, Ediff won't warp mouse into control window.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 (defvar ediff-grab-mouse t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 "*If t, Ediff will always grab the mouse and put it in the control frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 If 'maybe, Ediff will do it sometimes, but not after operations that require
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 relatively long time. If nil, the mouse will be entirely user's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 responsibility.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 (defvar ediff-control-frame-position-function 'ediff-make-frame-position
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 "Function to call to determine the desired location for the control panel.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 Expects three parameters: the control buffer, the desired width and height
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 of the control frame. It returns an association list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 of the form \(\(top . <position>\) \(left . <position>\)\)")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 (defvar ediff-control-frame-upward-shift (if ediff-xemacs-p 42 14)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 "*The upward shift of control frame from the top of buffer A's frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 Measured in pixels.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 This is used by the default control frame positioning function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 `ediff-make-frame-position'. This variable is provided for easy
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 customization of the default.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 (defvar ediff-narrow-control-frame-leftward-shift (if ediff-xemacs-p 7 3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 "*The leftward shift of control frame from the right edge of buf A's frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 Measured in characters.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 This is used by the default control frame positioning function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 `ediff-make-frame-position' to adjust the position of the control frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 when it shows the short menu. This variable is provided for easy
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 customization of the default.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 (defvar ediff-wide-control-frame-rightward-shift 7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 "*The rightward shift of control frame from the left edge of buf A's frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 Measured in characters.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 This is used by the default control frame positioning function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 `ediff-make-frame-position' to adjust the position of the control frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 when it shows the full menu. This variable is provided for easy
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 customization of the default.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 ;; Wide frame display
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 ;; t means Ediff is using wide display
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 (ediff-defvar-local ediff-wide-display-p nil "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 ;; keeps frame config for toggling wide display
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 (ediff-defvar-local ediff-wide-display-orig-parameters nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 "Frame parameters to be restored when the user wants to toggle the wide
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 display off.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 (ediff-defvar-local ediff-wide-display-frame nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 "Frame to be used for wide display.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 (ediff-defvar-local ediff-make-wide-display-function 'ediff-make-wide-display
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 "The value is a function that is called to create a wide display.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 The function is called without arguments. It should resize the frame in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 which buffers A, B, and C are to be displayed, and it should save the old
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 frame parameters in `ediff-wide-display-orig-parameters'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 The variable `ediff-wide-display-frame' should be set to contain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 the frame used for the wide display.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 ;; Frame used for the control panel in a windowing system.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 (ediff-defvar-local ediff-control-frame nil "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 (defvar ediff-prefer-iconified-control-frame nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 "*If t, keep control panel iconified when help message is off.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 This has effect only on a windowing system.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 If t, hitting `?' to toggle control panel off iconifies it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 This is only useful in Emacs and only for certain kinds of window managers,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 such as TWM and its derivatives, since the window manager must permit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 keyboard input to go into icons. XEmacs completely ignores keyboard input
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 into icons, regardless of the window manager.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 ;;; Functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 (defun ediff-get-window-by-clicking (wind prev-wind wind-number)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 (let (event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 (message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 "Select windows by clicking. Please click on Window %d " wind-number)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 (while (not (ediff-mouse-event-p (setq event (ediff-read-event))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 (if (sit-for 1) ; if sequence of events, wait till the final word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 (beep 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 (message "Please click on Window %d " wind-number))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 (ediff-read-event) ; discard event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 (setq wind (if ediff-xemacs-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 (event-window event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 (posn-window (event-start event))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 ;; Select the lowest window on the frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 (defun ediff-select-lowest-window ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 (if ediff-xemacs-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 (select-window (frame-lowest-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 (let* ((lowest-window (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 (bottom-edge (car (cdr (cdr (cdr (window-edges))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 (last-window (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 (other-window -1) (selected-window)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 (window-search t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 (while window-search
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 (let* ((this-window (next-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 (next-bottom-edge
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 (car (cdr (cdr (cdr (window-edges this-window)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 (if (< bottom-edge next-bottom-edge)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 (setq bottom-edge next-bottom-edge)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 (setq lowest-window this-window)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 (select-window this-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 (if (eq last-window this-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 (select-window lowest-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 (setq window-search nil))))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 ;;; Common window setup routines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 ;; Set up the window configuration. If POS is given, set the points to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 ;; the beginnings of the buffers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 ;; When 3way comparison is added, this will have to choose the appropriate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 ;; setup function based on ediff-job-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 (defun ediff-setup-windows (buffer-A buffer-B buffer-C control-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 ;; Make sure we are not in the minibuffer window when we try to delete
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 ;; all other windows.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 (run-hooks 'ediff-before-setup-windows-hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 (if (eq (selected-window) (minibuffer-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 (other-window 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 ;; in case user did a no-no on a tty
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 (or (ediff-window-display-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 (setq ediff-window-setup-function 'ediff-setup-windows-plain))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 (or (ediff-keep-window-config control-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 (funcall
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 (ediff-eval-in-buffer control-buffer ediff-window-setup-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 buffer-A buffer-B buffer-C control-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 (run-hooks 'ediff-after-setup-windows-hook))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 ;; Just set up 3 windows.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 ;; Usually used without windowing systems
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 ;; With windowing, we want to use dedicated frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 (defun ediff-setup-windows-plain (buffer-A buffer-B buffer-C control-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 (ediff-eval-in-buffer control-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 (setq ediff-multiframe nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 (if ediff-merge-job
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 (ediff-setup-windows-plain-merge
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 buffer-A buffer-B buffer-C control-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 (ediff-setup-windows-plain-compare
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 buffer-A buffer-B buffer-C control-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 (defun ediff-setup-windows-plain-merge (buf-A buf-B buf-C control-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 ;; skip dedicated and unsplittable frames
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 (ediff-destroy-control-frame control-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 (let ((window-min-height 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 split-window-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 merge-window-share merge-window-lines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 wind-A wind-B wind-C)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 (ediff-eval-in-buffer control-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 (setq merge-window-share ediff-merge-window-share
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 ;; this lets us have local versions of ediff-split-window-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 split-window-function ediff-split-window-function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 (delete-other-windows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 (split-window-vertically)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 (ediff-select-lowest-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 (ediff-setup-control-buffer control-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 ;; go to the upper window and split it betw A, B, and possibly C
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 (other-window 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 (setq merge-window-lines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 (max 2 (round (* (window-height) merge-window-share))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 (switch-to-buffer buf-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 (setq wind-A (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 ;; XEmacs used to have a lot of trouble with display
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 ;; It did't set things right unless we tell it to sit still
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 ;; 19.12 seems ok.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 ;;(if ediff-xemacs-p (sit-for 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 (split-window-vertically (max 2 (- (window-height) merge-window-lines)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 (if (eq (selected-window) wind-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 (other-window 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 (setq wind-C (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 (switch-to-buffer buf-C)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 (select-window wind-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 (funcall split-window-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 (if (eq (selected-window) wind-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 (other-window 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 (switch-to-buffer buf-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 (setq wind-B (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 (ediff-eval-in-buffer control-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 (setq ediff-window-A wind-A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 ediff-window-B wind-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 ediff-window-C wind-C))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 (ediff-select-lowest-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 (ediff-setup-control-buffer control-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 ;; This function handles all comparison jobs, including 3way jobs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 (defun ediff-setup-windows-plain-compare (buf-A buf-B buf-C control-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 ;; skip dedicated and unsplittable frames
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 (ediff-destroy-control-frame control-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 (let ((window-min-height 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 split-window-function wind-width-or-height
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 three-way-comparison
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 wind-A-start wind-B-start wind-A wind-B wind-C)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 (ediff-eval-in-buffer control-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 (setq wind-A-start (ediff-overlay-start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 (ediff-get-value-according-to-buffer-type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 'A ediff-narrow-bounds))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 wind-B-start (ediff-overlay-start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 (ediff-get-value-according-to-buffer-type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 'B ediff-narrow-bounds))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 ;; this lets us have local versions of ediff-split-window-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 split-window-function ediff-split-window-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 three-way-comparison ediff-3way-comparison-job))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 (delete-other-windows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 (split-window-vertically)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 (ediff-select-lowest-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 (ediff-setup-control-buffer control-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 ;; go to the upper window and split it betw A, B, and possibly C
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 (other-window 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 (switch-to-buffer buf-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 (setq wind-A (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 (if three-way-comparison
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 (setq wind-width-or-height
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 (/ (if (eq split-window-function 'split-window-vertically)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 (window-height wind-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 (window-width wind-A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 3)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 ;; XEmacs used to have a lot of trouble with display
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 ;; It did't set things right unless we told it to sit still
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 ;; 19.12 seems ok.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 ;;(if ediff-xemacs-p (sit-for 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 (funcall split-window-function wind-width-or-height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 (if (eq (selected-window) wind-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 (other-window 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 (switch-to-buffer buf-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 (setq wind-B (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 (if three-way-comparison
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 (funcall split-window-function) ; equally
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 (if (eq (selected-window) wind-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 (other-window 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 (switch-to-buffer buf-C)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 (setq wind-C (selected-window))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 (ediff-eval-in-buffer control-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 (setq ediff-window-A wind-A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 ediff-window-B wind-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 ediff-window-C wind-C))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 ;; It is unlikely that we will want to implement 3way window comparison.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 ;; So, only buffers A and B are used here.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 (if ediff-windows-job
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 (set-window-start wind-A wind-A-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 (set-window-start wind-B wind-B-start)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 (ediff-select-lowest-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 (ediff-setup-control-buffer control-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 ;; dispatch an appropriate window setup function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 (defun ediff-setup-windows-multiframe (buf-A buf-B buf-C control-buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 (ediff-eval-in-buffer control-buf
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 (setq ediff-multiframe t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 (if ediff-merge-job
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 (ediff-setup-windows-multiframe-merge buf-A buf-B buf-C control-buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 (ediff-setup-windows-multiframe-compare buf-A buf-B buf-C control-buf)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 (defun ediff-setup-windows-multiframe-merge (buf-A buf-B buf-C control-buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 ;;; Algorithm:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 ;;; 1. Never use frames that have dedicated windows in them---it is bad to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 ;;; destroy dedicated windows.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 ;;; 2. If A and B are in the same frame but C's frame is different--- use one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 ;;; frame for A and B and use a separate frame for C.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 ;;; 3. If C's frame is non-existent, then: if the first suitable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 ;;; non-dedicated frame is different from A&B's, then use it for C.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 ;;; Otherwise, put A,B, and C in one frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 ;;; 4. If buffers A, B, C are is separate frames, use them to display these
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 ;;; buffers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 ;; Skip dedicated or iconified frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 ;; Unsplittable frames are taken care of later.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 (ediff-skip-unsuitable-frames 'ok-unsplittable)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 (let* ((window-min-height 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 (wind-A (ediff-get-visible-buffer-window buf-A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 (wind-B (ediff-get-visible-buffer-window buf-B))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 (wind-C (ediff-get-visible-buffer-window buf-C))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 (frame-A (if wind-A (window-frame wind-A)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 (frame-B (if wind-B (window-frame wind-B)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 (frame-C (if wind-C (window-frame wind-C)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 ;; on wide display, do things in one frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 (force-one-frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 (ediff-eval-in-buffer control-buf ediff-wide-display-p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 ;; this lets us have local versions of ediff-split-window-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 (split-window-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 (ediff-eval-in-buffer control-buf ediff-split-window-function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 (orig-wind (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 (orig-frame (selected-frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 (use-same-frame (or force-one-frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 ;; A and C must be in one frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 (eq frame-A (or frame-C orig-frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 ;; B and C must be in one frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 (eq frame-B (or frame-C orig-frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 ;; A or B is not visible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 (not (frame-live-p frame-A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 (not (frame-live-p frame-B))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 ;; A or B is not suitable for display
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 (not (ediff-window-ok-for-display wind-A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 (not (ediff-window-ok-for-display wind-B))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 ;; A and B in the same frame, and no good frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 ;; for C
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 (and (eq frame-A frame-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 (not (frame-live-p frame-C)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 ;; use-same-frame-for-AB implies wind A and B are ok for display
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 (use-same-frame-for-AB (and (not use-same-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 (eq frame-A frame-B)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 (merge-window-share (ediff-eval-in-buffer control-buf
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 ediff-merge-window-share))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 merge-window-lines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 designated-minibuffer-frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 done-A done-B done-C)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 ;; buf-A on its own
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 (if (and (window-live-p wind-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 (null use-same-frame) ; implies wind-A is suitable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 (null use-same-frame-for-AB))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 (progn ; bug A on its own
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 ;; buffer buf-A is seen in live wind-A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 (select-window wind-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 (delete-other-windows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 (setq wind-A (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 (setq done-A t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 ;; buf-B on its own
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 (if (and (window-live-p wind-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 (null use-same-frame) ; implies wind-B is suitable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 (null use-same-frame-for-AB))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 (progn ; buf B on its own
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 ;; buffer buf-B is seen in live wind-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 (select-window wind-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 (delete-other-windows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 (setq wind-B (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 (setq done-B t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 ;; buf-C on its own
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 (if (and (window-live-p wind-C)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 (ediff-window-ok-for-display wind-C)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 (null use-same-frame)) ; buf C on its own
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 ;; buffer buf-C is seen in live wind-C
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 (select-window wind-C)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 (delete-other-windows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 (setq wind-C (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 (setq done-C t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 (if (and use-same-frame-for-AB ; implies wind A and B are suitable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 (window-live-p wind-A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 ;; wind-A must already be displaying buf-A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 (select-window wind-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 (delete-other-windows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 (setq wind-A (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 (funcall split-window-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 (if (eq (selected-window) wind-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 (other-window 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 (switch-to-buffer buf-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 (setq wind-B (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 (setq done-A t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 done-B t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 (if use-same-frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 (let ((window-min-height 1))
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
518 ;; avoid dedicated and non-splittable windows
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
519 (ediff-skip-unsuitable-frames)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 (delete-other-windows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 (setq merge-window-lines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 (max 2 (round (* (window-height) merge-window-share))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 (switch-to-buffer buf-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 (setq wind-A (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 (split-window-vertically
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 (max 2 (- (window-height) merge-window-lines)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 (if (eq (selected-window) wind-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 (other-window 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 (setq wind-C (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 (switch-to-buffer buf-C)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 (select-window wind-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 (funcall split-window-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 (if (eq (selected-window) wind-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 (other-window 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 (switch-to-buffer buf-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 (setq wind-B (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 (setq done-A t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 done-B t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 done-C t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 (or done-A ; Buf A to be set in its own frame,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 ;;; or it was set before because use-same-frame = 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 ;; Buf-A was not set up yet as it wasn't visible,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 ;; and use-same-frame = nil, use-same-frame-for-AB = nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 (select-window orig-wind)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 (delete-other-windows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 (switch-to-buffer buf-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 (setq wind-A (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 (or done-B ; Buf B to be set in its own frame,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 ;;; or it was set before because use-same-frame = 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 ;; Buf-B was not set up yet as it wasn't visible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 ;; and use-same-frame = nil, use-same-frame-for-AB = nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 (select-window orig-wind)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 (delete-other-windows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 (switch-to-buffer buf-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 (setq wind-B (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 (or done-C ; Buf C to be set in its own frame,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 ;;; or it was set before because use-same-frame = 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 ;; Buf-C was not set up yet as it wasn't visible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 ;; and use-same-frame = nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 (select-window orig-wind)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 (delete-other-windows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 (switch-to-buffer buf-C)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 (setq wind-C (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 (ediff-eval-in-buffer control-buf
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 (setq ediff-window-A wind-A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 ediff-window-B wind-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 ediff-window-C wind-C)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 (setq frame-A (window-frame ediff-window-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 designated-minibuffer-frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 (window-frame (minibuffer-window frame-A))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 (ediff-setup-control-frame control-buf designated-minibuffer-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 ;; Window setup for all comparison jobs, including 3way comparisons
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 (defun ediff-setup-windows-multiframe-compare (buf-A buf-B buf-C control-buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 ;;; Algorithm:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 ;;; If a buffer is seen in a frame, use that frame for that buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 ;;; If it is not seen, use the current frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 ;;; If both buffers are not seen, they share the current frame. If one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 ;;; of the buffers is not seen, it is placed in the current frame (where
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 ;;; ediff started). If that frame is displaying the other buffer, it is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 ;;; shared between the two buffers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 ;;; However, if we decide to put both buffers in one frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 ;;; and the selected frame isn't splittable, we create a new frame and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 ;;; put both buffers there, event if one of this buffers is visible in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 ;;; another frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 ;; Skip dedicated or iconified frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 ;; Unsplittable frames are taken care of later.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 (ediff-skip-unsuitable-frames 'ok-unsplittable)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 (let* ((window-min-height 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 (wind-A (ediff-get-visible-buffer-window buf-A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 (wind-B (ediff-get-visible-buffer-window buf-B))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 (wind-C (ediff-get-visible-buffer-window buf-C))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 (frame-A (if wind-A (window-frame wind-A)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 (frame-B (if wind-B (window-frame wind-B)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 (frame-C (if wind-C (window-frame wind-C)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 (ctl-frame-exists-p (ediff-eval-in-buffer control-buf
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 (frame-live-p ediff-control-frame)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 ;; on wide display, do things in one frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 (force-one-frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 (ediff-eval-in-buffer control-buf ediff-wide-display-p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 ;; this lets us have local versions of ediff-split-window-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 (split-window-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 (ediff-eval-in-buffer control-buf ediff-split-window-function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 (three-way-comparison
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 (ediff-eval-in-buffer control-buf ediff-3way-comparison-job))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 (orig-wind (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 (use-same-frame (or force-one-frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 (eq frame-A frame-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 (not (ediff-window-ok-for-display wind-A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 (not (ediff-window-ok-for-display wind-B))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 (if three-way-comparison
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 (or (eq frame-A frame-C)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 (eq frame-B frame-C)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 (not (ediff-window-ok-for-display wind-C))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 (not (frame-live-p frame-A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 (not (frame-live-p frame-B))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 (not (frame-live-p frame-C))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 (and (not (frame-live-p frame-B))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 (or ctl-frame-exists-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 (eq frame-A (selected-frame))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 (and (not (frame-live-p frame-A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 (or ctl-frame-exists-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 (eq frame-B (selected-frame))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 wind-A-start wind-B-start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 designated-minibuffer-frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 done-A done-B done-C)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 (ediff-eval-in-buffer control-buf
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 (setq wind-A-start (ediff-overlay-start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 (ediff-get-value-according-to-buffer-type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 'A ediff-narrow-bounds))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 wind-B-start (ediff-overlay-start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 (ediff-get-value-according-to-buffer-type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 'B ediff-narrow-bounds))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 (if (and (window-live-p wind-A) (null use-same-frame)) ; buf-A on its own
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 ;; buffer buf-A is seen in live wind-A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 (select-window wind-A) ; must be displaying buf-A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 (delete-other-windows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 (setq wind-A (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 (setq done-A t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 (if (and (window-live-p wind-B) (null use-same-frame)) ; buf B on its own
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 ;; buffer buf-B is seen in live wind-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 (select-window wind-B) ; must be displaying buf-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 (delete-other-windows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 (setq wind-B (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 (setq done-B t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 (if (and (window-live-p wind-C) (null use-same-frame)) ; buf C on its own
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 ;; buffer buf-C is seen in live wind-C
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 (select-window wind-C) ; must be displaying buf-C
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 (delete-other-windows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 (setq wind-C (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 (setq done-C t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 (if use-same-frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 (let (wind-width-or-height) ; this affects 3way setups only
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
681 ;; avoid dedicated and non-splittable windows
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
682 (ediff-skip-unsuitable-frames)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 (delete-other-windows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 (switch-to-buffer buf-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 (setq wind-A (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 (if three-way-comparison
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 (setq wind-width-or-height
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 (/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 (if (eq split-window-function 'split-window-vertically)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 (window-height wind-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 (window-width wind-A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 3)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 (funcall split-window-function wind-width-or-height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 (if (eq (selected-window) wind-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 (other-window 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 (switch-to-buffer buf-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 (setq wind-B (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 (if three-way-comparison
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 (funcall split-window-function) ; equally
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 (if (memq (selected-window) (list wind-A wind-B))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 (other-window 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 (switch-to-buffer buf-C)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 (setq wind-C (selected-window))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 (setq done-A t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 done-B t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 done-C t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 (or done-A ; Buf A to be set in its own frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 ;;; or it was set before because use-same-frame = 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 ;; Buf-A was not set up yet as it wasn't visible,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 ;; and use-same-frame = nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 (select-window orig-wind)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 (delete-other-windows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 (switch-to-buffer buf-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 (setq wind-A (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 (or done-B ; Buf B to be set in its own frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 ;;; or it was set before because use-same-frame = 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 ;; Buf-B was not set up yet as it wasn't visible,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 ;; and use-same-frame = nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 (select-window orig-wind)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 (delete-other-windows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 (switch-to-buffer buf-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 (setq wind-B (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 (if three-way-comparison
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 (or done-C ; Buf C to be set in its own frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 ;;; or it was set before because use-same-frame = 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 ;; Buf-C was not set up yet as it wasn't visible,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 ;; and use-same-frame = nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 (select-window orig-wind)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 (delete-other-windows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 (switch-to-buffer buf-C)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 (setq wind-C (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 )))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 (ediff-eval-in-buffer control-buf
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 (setq ediff-window-A wind-A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 ediff-window-B wind-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 ediff-window-C wind-C)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 (setq frame-A (window-frame ediff-window-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 designated-minibuffer-frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 (window-frame (minibuffer-window frame-A))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 ;; It is unlikely that we'll implement a version of ediff-windows that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 ;; would compare 3 windows at once. So, we don't use buffer C here.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 (if ediff-windows-job
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 (set-window-start wind-A wind-A-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 (set-window-start wind-B wind-B-start)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 (ediff-setup-control-frame control-buf designated-minibuffer-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 ;; skip unsplittable frames and frames that have dedicated windows.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 ;; create a new splittable frame if none is found
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 (defun ediff-skip-unsuitable-frames (&optional ok-unsplittable)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 (if (ediff-window-display-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 (let (last-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 (while (and (not (eq (selected-window) last-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 (or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 (ediff-frame-has-dedicated-windows (selected-frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 (ediff-frame-iconified-p (selected-frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 (< (frame-height (selected-frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 (* 3 window-min-height))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 (if ok-unsplittable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 (ediff-frame-unsplittable-p (selected-frame)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 ;; remember where started
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 (or last-window (setq last-window (selected-window)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 ;; try new window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 (other-window 1 t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 (if (eq (selected-window) last-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 ;; fed up, no appropriate frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 (select-frame (make-frame '((unsplittable)))))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 (defun ediff-frame-has-dedicated-windows (frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 (let ((cur-fr (selected-frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 ans)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 (select-frame frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 (walk-windows
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 (function (lambda (wind)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 (if (window-dedicated-p wind)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 (setq ans t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 'ignore-minibuffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 (select-frame cur-fr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 ans))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 ;; window is ok, if it is only one window on the frame, not counting the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 ;; minibuffer, or none of the frame's windows is dedicated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 ;; The idea is that it is bad to destroy dedicated windows while creating an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 ;; ediff window setup
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 (defun ediff-window-ok-for-display (wind)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 (and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 (window-live-p wind)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 (or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 ;; only one window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 (eq wind (next-window wind 'ignore-minibuffer (window-frame wind)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 ;; none is dedicated
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 (not (ediff-frame-has-dedicated-windows (window-frame wind)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 )))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 ;; Prepare or refresh control frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 (defun ediff-setup-control-frame (ctl-buffer designated-minibuffer-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 (let ((window-min-height 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 ctl-frame-iconified-p dont-iconify-ctl-frame deiconify-ctl-frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 ctl-frame old-ctl-frame lines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 ;; user-grabbed-mouse
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 fheight fwidth adjusted-parameters)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 (ediff-eval-in-buffer ctl-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 (if ediff-xemacs-p (set-buffer-menubar nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 ;;(setq user-grabbed-mouse (ediff-user-grabbed-mouse))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 (run-hooks 'ediff-before-setup-control-frame-hook))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 (setq old-ctl-frame (ediff-eval-in-buffer ctl-buffer ediff-control-frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 (ediff-eval-in-buffer ctl-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 (setq ctl-frame (if (frame-live-p old-ctl-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 old-ctl-frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 (make-frame ediff-control-frame-parameters))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 ediff-control-frame ctl-frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 (setq ctl-frame-iconified-p (ediff-frame-iconified-p ctl-frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 (select-frame ctl-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 (if (window-dedicated-p (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 (delete-other-windows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 (switch-to-buffer ctl-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 ;; must be before ediff-setup-control-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 ;; just a precaution--we should be in ctl-buffer already
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 (ediff-eval-in-buffer ctl-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 (make-local-variable 'frame-title-format)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 (make-local-variable 'frame-icon-title-format) ; XEmacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 (make-local-variable 'icon-title-format)) ; Emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 (ediff-setup-control-buffer ctl-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 (setq dont-iconify-ctl-frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 (not (string= ediff-help-message ediff-brief-help-message)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 (setq deiconify-ctl-frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 (and (eq this-command 'ediff-toggle-help)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 dont-iconify-ctl-frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 ;; 1 more line for the modeline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 (setq lines (1+ (count-lines (point-min) (point-max)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 fheight lines
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
859 fwidth (max (+ (ediff-help-message-line-length) 2)
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
860 (ediff-compute-toolbar-width))
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
861 adjusted-parameters (append (list
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
862 ;; possibly change surrogate minibuffer
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
863 (cons 'minibuffer
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
864 (minibuffer-window
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
865 designated-minibuffer-frame))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
866 (cons 'width fwidth)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
867 (cons 'height fheight))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
868 (funcall
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
869 ediff-control-frame-position-function
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
870 ctl-buffer fwidth fheight)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 (if ediff-use-long-help-message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 (setq adjusted-parameters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 (cons '(auto-raise . nil) adjusted-parameters)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 ;; In XEmacs, buffer menubar needs to be killed before frame parameters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 ;; are changed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 (if ediff-xemacs-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 (set-specifier top-toolbar-height (list ctl-frame 0))
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
880 (set-specifier bottom-toolbar-height (list ctl-frame 0))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 (set-specifier left-toolbar-width (list ctl-frame 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 (set-specifier right-toolbar-width (list ctl-frame 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 ;; Under OS/2 (emx) we have to call modify frame parameters twice, in order
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 ;; to make sure that at least once we do it for non-iconified frame. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 ;; appears that in the OS/2 port of Emacs, one can't modify frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 ;; parameters of iconified frames. As a precaution, we do likewise for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 ;; windows-nt.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 (if (memq system-type '(emx windows-nt windows-95))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 (modify-frame-parameters ctl-frame adjusted-parameters))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
893 (goto-char (point-min))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
894
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 (modify-frame-parameters ctl-frame adjusted-parameters)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 (make-frame-visible ctl-frame)
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
897 (ediff-make-bottom-toolbar) ; no effect if the toolbar is not requested
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
898
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 ;; This works around a bug in 19.25 and earlier. There, if frame gets
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 ;; iconified, the current buffer changes to that of the frame that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 ;; becomes exposed as a result of this iconification.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 ;; So, we make sure the current buffer doesn't change.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 (select-frame ctl-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 (ediff-refresh-control-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 (cond ((and ediff-prefer-iconified-control-frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 (not ctl-frame-iconified-p) (not dont-iconify-ctl-frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 (iconify-frame ctl-frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 ((or deiconify-ctl-frame (not ctl-frame-iconified-p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 (raise-frame ctl-frame)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 (set-window-dedicated-p (selected-window) t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 ;; synchronize so the cursor will move to control frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 ;; per RMS suggestion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 (if (ediff-window-display-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 (let ((count 7))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 (sit-for .1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 (while (and (not (frame-visible-p ctl-frame)) (> count 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 (setq count (1- count))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 (sit-for .3))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 (or (ediff-frame-iconified-p ctl-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 ;; don't warp the mouse, unless ediff-grab-mouse = t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 (ediff-reset-mouse ctl-frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 (or (eq this-command 'ediff-quit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 (not (eq ediff-grab-mouse t)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 (if ediff-xemacs-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 (ediff-eval-in-buffer ctl-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 (make-local-hook 'select-frame-hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 (add-hook 'select-frame-hook 'ediff-xemacs-select-frame-hook nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 (ediff-eval-in-buffer ctl-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 (run-hooks 'ediff-after-setup-control-frame-hook))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 (defun ediff-destroy-control-frame (ctl-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 (ediff-eval-in-buffer ctl-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 (if (and (ediff-window-display-p) (frame-live-p ediff-control-frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 (let ((ctl-frame ediff-control-frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 (if ediff-xemacs-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 (set-buffer-menubar default-menubar))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 (setq ediff-control-frame nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 (delete-frame ctl-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 )))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 (ediff-skip-unsuitable-frames)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 ;;(ediff-reset-mouse nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 ;; finds a good place to clip control frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 (defun ediff-make-frame-position (ctl-buffer ctl-frame-width ctl-frame-height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 (ediff-eval-in-buffer ctl-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 (let* ((frame-A (window-frame ediff-window-A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 (frame-A-parameters (frame-parameters frame-A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 (frame-A-top (eval (cdr (assoc 'top frame-A-parameters))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 (frame-A-left (eval (cdr (assoc 'left frame-A-parameters))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 (frame-A-width (frame-width frame-A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 (ctl-frame ediff-control-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 horizontal-adjustment upward-adjustment
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 ctl-frame-top ctl-frame-left)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 ;; Multiple control frames are clipped based on the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 ;; ediff-control-buffer-number. This is done in order not to obscure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 ;; other active control panels.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 (setq horizontal-adjustment (* 2 ediff-control-buffer-number)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 upward-adjustment (* -14 ediff-control-buffer-number))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 (setq ctl-frame-top
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 (- frame-A-top upward-adjustment ediff-control-frame-upward-shift)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 ctl-frame-left
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 (+ frame-A-left
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 (if ediff-use-long-help-message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 (* (ediff-frame-char-width ctl-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 (+ ediff-wide-control-frame-rightward-shift
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 horizontal-adjustment))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 (- (* frame-A-width (ediff-frame-char-width frame-A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 (* (ediff-frame-char-width ctl-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 (+ ctl-frame-width
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 ediff-narrow-control-frame-leftward-shift
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 horizontal-adjustment))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 (setq ctl-frame-top
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 (min ctl-frame-top
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 (- (ediff-display-pixel-height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 (* 2 ctl-frame-height
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 (ediff-frame-char-height ctl-frame))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 ctl-frame-left
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 (min ctl-frame-left
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 (- (ediff-display-pixel-width)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 (* ctl-frame-width (ediff-frame-char-width ctl-frame)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 ;; keep ctl frame within the visible bounds
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 (setq ctl-frame-top (max ctl-frame-top 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 ctl-frame-left (max ctl-frame-left 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 (list (cons 'top ctl-frame-top)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 (cons 'left ctl-frame-left))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 )))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 (defun ediff-xemacs-select-frame-hook ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 (if (and (equal (selected-frame) ediff-control-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 (not ediff-use-long-help-message))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 (raise-frame ediff-control-frame)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 (defun ediff-make-wide-display ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 "Construct an alist of parameters for the wide display.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 Saves the old frame parameters in `ediff-wide-display-orig-parameters'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 The frame to be resized is kept in `ediff-wide-display-frame'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 This function modifies only the left margin and the width of the display.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 It assumes that it is called from within the control buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 (if (not (fboundp 'ediff-display-pixel-width))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 (error "Can't determine display width."))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 (let* ((frame-A (window-frame ediff-window-A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 (frame-A-params (frame-parameters frame-A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 (cw (ediff-frame-char-width frame-A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 (wd (- (/ (ediff-display-pixel-width) cw) 5)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 (setq ediff-wide-display-orig-parameters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 (list (cons 'left (max 0 (eval (cdr (assoc 'left frame-A-params)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 (cons 'width (cdr (assoc 'width frame-A-params))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 ediff-wide-display-frame frame-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 (modify-frame-parameters frame-A (list (cons 'left cw)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 (cons 'width wd)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 ;; Revise the mode line to display which difference we have selected
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 ;; Also resets modelines of buffers A/B, since they may be clobbered by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 ;; anothe invocations of Ediff.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 (defun ediff-refresh-mode-lines ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 (let (buf-A-state-diff buf-B-state-diff buf-C-state-diff buf-C-state-merge)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 (if (ediff-valid-difference-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 (setq
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 buf-C-state-diff (ediff-get-state-of-diff ediff-current-difference 'C)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 buf-C-state-merge (ediff-get-state-of-merge ediff-current-difference)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 buf-A-state-diff (ediff-get-state-of-diff ediff-current-difference 'A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 buf-B-state-diff (ediff-get-state-of-diff ediff-current-difference 'B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 buf-A-state-diff (if buf-A-state-diff
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 (format "[%s] " buf-A-state-diff)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 buf-B-state-diff (if buf-B-state-diff
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 (format "[%s] " buf-B-state-diff)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 buf-C-state-diff (if (and (ediff-buffer-live-p ediff-buffer-C)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 (or buf-C-state-diff buf-C-state-merge))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 (format "[%s%s%s] "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 (or buf-C-state-diff "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 (if buf-C-state-merge
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 (concat " " buf-C-state-merge)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 (if (ediff-get-state-of-ancestor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 ediff-current-difference)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 " AncestorEmpty"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 (setq buf-A-state-diff ""
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 buf-B-state-diff ""
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 buf-C-state-diff ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 ;; control buffer format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 (setq mode-line-format
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
1064 (list (if (ediff-narrow-control-frame-p) " " "-- ")
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
1065 mode-line-buffer-identification
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
1066 " Quick Help"))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 ;; control buffer id
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 (setq mode-line-buffer-identification
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 (if (ediff-narrow-control-frame-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 (ediff-make-narrow-control-buffer-id 'skip-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 (ediff-make-wide-control-buffer-id)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 ;; Force mode-line redisplay
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 (force-mode-line-update)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 (if (and (ediff-window-display-p) (frame-live-p ediff-control-frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 (ediff-refresh-control-frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 (ediff-eval-in-buffer ediff-buffer-A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 (setq ediff-diff-status buf-A-state-diff)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 (ediff-strip-mode-line-format)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 (setq mode-line-format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 (list " A: " 'ediff-diff-status mode-line-format))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 (force-mode-line-update))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 (ediff-eval-in-buffer ediff-buffer-B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 (setq ediff-diff-status buf-B-state-diff)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 (ediff-strip-mode-line-format)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 (setq mode-line-format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 (list " B: " 'ediff-diff-status mode-line-format))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 (force-mode-line-update))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 (if ediff-3way-job
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 (ediff-eval-in-buffer ediff-buffer-C
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 (setq ediff-diff-status buf-C-state-diff)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 (ediff-strip-mode-line-format)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 (setq mode-line-format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 (list " C: " 'ediff-diff-status mode-line-format))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 (force-mode-line-update)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 (if (ediff-buffer-live-p ediff-ancestor-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 (ediff-eval-in-buffer ediff-ancestor-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 (ediff-strip-mode-line-format)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 ;; we keep the second dummy string in the mode line format of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 ;; ancestor, since for other buffers Ediff prepends 2 strings and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 ;; ediff-strip-mode-line-format expects that.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 (setq mode-line-format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 (list " Ancestor: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 (cond ((not (stringp buf-C-state-merge))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 ((string-match "prefer-A" buf-C-state-merge)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 "[=diff(B)] ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 ((string-match "prefer-B" buf-C-state-merge)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 "[=diff(A)] ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 (t ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 mode-line-format))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 (defun ediff-refresh-control-frame ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 (if ediff-emacs-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 ;; set frame/icon titles for Emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 (modify-frame-parameters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 ediff-control-frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 (list (cons 'title (ediff-make-base-title))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 (cons 'icon-name (ediff-make-narrow-control-buffer-id))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 ;; set frame/icon titles for XEmacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 (setq frame-title-format (ediff-make-base-title)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 frame-icon-title-format (ediff-make-narrow-control-buffer-id))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 ;; force an update of the frame title
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 (modify-frame-parameters ediff-control-frame '(()))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 (defun ediff-make-narrow-control-buffer-id (&optional skip-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 (concat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 (if skip-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 " "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 (ediff-make-base-title))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 (cond ((< ediff-current-difference 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 (format " _/%d" ediff-number-of-differences))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 ((>= ediff-current-difference ediff-number-of-differences)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 (format " $/%d" ediff-number-of-differences))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 (format " %d/%d"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 (1+ ediff-current-difference)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 ediff-number-of-differences)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 (defun ediff-make-base-title ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 (concat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 (cdr (assoc 'name ediff-control-frame-parameters))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 ediff-control-buffer-suffix))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 (defun ediff-make-wide-control-buffer-id ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 (cond ((< ediff-current-difference 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 (list (format "%%b At start of %d diffs"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 ediff-number-of-differences)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 ((>= ediff-current-difference ediff-number-of-differences)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 (list (format "%%b At end of %d diffs"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 ediff-number-of-differences)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 (list (format "%%b diff %d of %d"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 (1+ ediff-current-difference)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 ediff-number-of-differences)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 ;; If buff is not live, return nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 (defun ediff-get-visible-buffer-window (buff)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 (if (ediff-buffer-live-p buff)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 (if ediff-xemacs-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 (get-buffer-window buff t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 (get-buffer-window buff 'visible))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 ;;; Functions to decide when to redraw windows
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 (defun ediff-keep-window-config (control-buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 (and (eq control-buf (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 (/= (buffer-size) 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 (ediff-eval-in-buffer control-buf
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 (let ((ctl-wind ediff-control-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 (A-wind ediff-window-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 (B-wind ediff-window-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 (C-wind ediff-window-C))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 (and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 (ediff-window-visible-p A-wind)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 (ediff-window-visible-p B-wind)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 ;; if buffer C is defined then take it into account
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 (or (not ediff-3way-job)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 (ediff-window-visible-p C-wind))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 (eq (window-buffer A-wind) ediff-buffer-A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 (eq (window-buffer B-wind) ediff-buffer-B)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 (or (not ediff-3way-job)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 (eq (window-buffer C-wind) ediff-buffer-C))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 (string= ediff-window-config-saved
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
1194 (format "%S%S%S%S%S%S%S"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 ctl-wind A-wind B-wind C-wind
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 ediff-split-window-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 (ediff-multiframe-setup-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 ediff-wide-display-p)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 ;;; Local Variables:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 ;;; eval: (put 'ediff-defvar-local 'lisp-indent-hook 'defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 ;;; eval: (put 'ediff-eval-in-buffer 'lisp-indent-hook 1)
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
1204 ;;; eval: (put 'ediff-eval-in-buffer 'edebug-form-spec '(form body))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 ;;; End:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
1207 (provide 'ediff-wind)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
1208
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
1209
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 ;;; ediff-wind.el ends here