annotate lisp/ediff/ediff-wind.el @ 16:0293115a14e9 r19-15b91

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