Refill some long/short copyright headers.
[bpt/emacs.git] / lisp / dframe.el
CommitLineData
7cfc18c4
CY
1;;; dframe --- dedicate frame support modes
2
95df8112 3;; Copyright (C) 1996-2011 Free Software Foundation, Inc.
7cfc18c4
CY
4
5;; Author: Eric M. Ludlam <zappo@gnu.org>
6;; Keywords: file, tags, tools
7cfc18c4
CY
7
8(defvar dframe-version "1.3"
9 "The current version of the dedicated frame library.")
10
11;; This file is part of GNU Emacs.
12
eb3fa2cf 13;; GNU Emacs is free software: you can redistribute it and/or modify
7cfc18c4 14;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
15;; the Free Software Foundation, either version 3 of the License, or
16;; (at your option) any later version.
7cfc18c4
CY
17
18;; GNU Emacs is distributed in the hope that it will be useful,
19;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21;; GNU General Public License for more details.
22
23;; You should have received a copy of the GNU General Public License
eb3fa2cf 24;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
7cfc18c4
CY
25
26;;; Commentary:
27;;
28;; This code was developed and maintained as a part of speedbar since 1996.
29;; It became its own support utility in Aug 2000.
30;;
31;; Dedicated frame mode is an Emacs independent library for supporting
32;; a program/buffer combination that resides in a dedicated frame.
33;; Support of this nature requires several complex interactions with the
34;; user which this library will provide, including:
35;;
36;; * Creation of a frame. Positioned relatively.
37;; Includes a frame cache for User position caching.
38;; * Switching between frames.
39;; * Timed activities using idle-timers
40;; * Frame/buffer killing hooks
41;; * Mouse-3 position relative menu
42;; * Mouse motion, help-echo hacks
5b86d3e4 43;; * Mouse clicking, double clicking, & XEmacs image clicking hack
7cfc18c4
CY
44;; * Mode line hacking
45;; * Utilities for use in a program covering:
46;; o keymap massage for some actions
47;; o working with an associated buffer
48;; o shift-click
49;; o detaching a frame
50;; o focus-shifting & optional frame jumping
51;; o currently active frame.
52;; o message/y-or-n-p
53;; o mouse set point
54;;
55;; To Use:
56;; 1) (require 'dframe)
57;; 2) Variable Setup:
58;; -frame-parameters -- Frame parameters for Emacs.
59;; -frame-plist -- Frame parameters for XEmacs.
60;; -- Not on parameter lists: They can optionally include width
61;; and height. If width or height is not included, then it will
62;; be provided to match the originating frame. In general,
63;; turning off the menu bar, mode line, and minibuffer can
64;; provide a smaller window, or more display area.
65;; -track-mouse-flag -- mouse tracking on/off specific to your tool.
66;; -update-flag -- app toggle for timer use. Init from
67;; `dframe-have-timer-flag'. This is nil for terminals, since
68;; updating a frame in a terminal is not useful to the user.
69;; -key-map -- Your keymap. Call `dframe-update-keymap' on it.
70;; -buffer, -frame, -cached-frame -- Variables used to track your
71;; applications buffer, frame, or frame cache (when hidden). See
72;; `dframe-frame-mode' for details.
73;; -before-delete-hook, -before-popup-hook, -after-create-hook --
74;; Hooks to have called. The `-after-create-hook' probably wants
75;; to call a function which calls `dframe-reposition-frame' in an
76;; appropriate manner.
77;; 3) Function Setup:
78;; your-frame-mode -- function to toggle your app frame on and off.
79;; its tasks are:
80;; a) create a buffer
81;; b) Call `dframe-frame-mode'. (See its doc)
82;; c) If successful (your -frame variable has a value), call
83;; timer setup if applicable.
84;; your-frame-reposition- -- Function to call from after-create-hook to
85;; reposition your frame with `dframe-repsoition-frame'.
86;; your-mode -- Set up the major mode of the buffer for your app.
87;; Set these variables: dframe-track-mouse-function,
88;; dframe-help-echo-function,
89;; dframe-mouse-click-function,
90;; dframe-mouse-position-function.
91;; See speedbar's implementation of these functions.
92;; `speedbar-current-frame', `speedbar-get-focus', `speedbar-message',
93;; `speedbar-y-or-n-p', `speedbar-set-timer', `speedbar-click',
94;; `speedbar-position-cursor-on-line'
95;; 4) Handling mouse clicks, and help text:
96;; dframe-track-mouse, dframe-help-echo-function --
97;; These variables need to be set to functions that display info
98;; based on the mouse's position.
99;; Text propert 'help-echo, set to `dframe-help-echo', which will
100;; call `dframe-help-echo-function'.
101;; Have a `-click' function, it can call `dframe-quick-mouse' for
102;; positioning. If the variable `dframe-power-click' is non-nil,
103;; then `shift' was held down during the click.
104
105;;; Bugs
106;;
107;; * The timer managers doesn't handle multiple different timeouts.
5b86d3e4 108;; * You can't specify continuous timeouts (as opposed to just idle timers.)
7cfc18c4 109
58eb29e5
JB
110(defvar x-pointer-hand2)
111(defvar x-pointer-top-left-arrow)
112
7cfc18c4 113;;; Code:
7cfc18c4
CY
114\f
115;;; Compatibility functions
116;;
78b35906
SM
117(defalias 'dframe-frame-parameter
118 (if (fboundp 'frame-parameter) 'frame-parameter
119 (lambda (frame parameter)
120 "Return FRAME's PARAMETER value."
121 (cdr (assoc parameter (frame-parameters frame))))))
7cfc18c4
CY
122
123\f
124;;; Variables
125;;
126(defgroup dframe nil
127 "Faces used in dframe."
128 :prefix "dframe-"
129 :group 'dframe)
130
5b86d3e4
GM
131(defvar dframe-have-timer-flag (if (fboundp 'display-graphic-p)
132 (display-graphic-p)
133 window-system)
134 "Non-nil means that timers are available for this Emacs.
135This is nil for terminals, since updating a frame in a terminal
136is not useful to the user.")
7cfc18c4
CY
137
138(defcustom dframe-update-speed
5b86d3e4 139 (if (featurep 'xemacs) 2 ; 1 is too obrusive in XEmacs
7cfc18c4 140 1)
78b35906 141 "Idle time in seconds needed before dframe will update itself.
7cfc18c4
CY
142Updates occur to allow dframe to display directory information
143relevant to the buffer you are currently editing."
144 :group 'dframe
145 :type 'integer)
146
147(defcustom dframe-activity-change-focus-flag nil
78b35906 148 "Non-nil means the selected frame will change based on activity.
7cfc18c4
CY
149Thus, if a file is selected for edit, the buffer will appear in the
150selected frame and the focus will change to that frame."
151 :group 'dframe
152 :type 'boolean)
153
154(defcustom dframe-after-select-attached-frame-hook nil
78b35906 155 "Hook run after dframe has selected the attached frame."
7cfc18c4
CY
156 :group 'dframe
157 :type 'hook)
158
159(defvar dframe-track-mouse-function nil
160 "*A function to call when the mouse is moved in the given frame.
161Typically used to display info about the line under the mouse.")
162(make-variable-buffer-local 'dframe-track-mouse-function)
163
164(defvar dframe-help-echo-function nil
165 "*A function to call when help-echo is used in newer versions of Emacs.
166Typically used to display info about the line under the mouse.")
167(make-variable-buffer-local 'dframe-help-echo-function)
168
169(defvar dframe-mouse-click-function nil
170 "*A function to call when the mouse is clicked.
171Valid clicks are mouse 2, our double mouse 1.")
172(make-variable-buffer-local 'dframe-mouse-click-function)
173
174(defvar dframe-mouse-position-function nil
ca68aad8 175 "*A function to call to position the cursor for a mouse click.")
7cfc18c4
CY
176(make-variable-buffer-local 'dframe-mouse-position-function)
177
178(defvar dframe-power-click nil
179 "Never set this by hand. Value is t when S-mouse activity occurs.")
180
181(defvar dframe-timer nil
182 "The dframe timer used for updating the buffer.")
183(make-variable-buffer-local 'dframe-timer)
184
185(defvar dframe-attached-frame nil
186 "The frame which started a frame mode.
187This is the frame from which all interesting activities will go
188for the mode using dframe.")
189(make-variable-buffer-local 'dframe-attached-frame)
190
191(defvar dframe-controlled nil
192 "Is this buffer controlled by a dedicated frame.
193Local to those buffers, as a function called that created it.")
194(make-variable-buffer-local 'dframe-controlled)
195
196(defun dframe-update-keymap (map)
197 "Update the keymap MAP for dframe default bindings."
198 ;; Frame control
199 (define-key map "q" 'dframe-close-frame)
200 (define-key map "Q" 'delete-frame)
201
202 ;; Override switch to buffer to never hack our frame.
203 (substitute-key-definition 'switch-to-buffer
204 'dframe-switch-buffer-attached-frame
205 map global-map)
206
78b35906 207 (if (featurep 'xemacs)
7cfc18c4
CY
208 (progn
209 ;; mouse bindings so we can manipulate the items on each line
210 (define-key map 'button2 'dframe-click)
211 (define-key map '(shift button2) 'dframe-power-click)
212 ;; Info doc fix from Bob Weiner
213 (if (featurep 'infodoc)
214 nil
78b35906 215 (define-key map 'button3 'dframe-popup-kludge))
7cfc18c4
CY
216 )
217
218 ;; mouse bindings so we can manipulate the items on each line
222a6c9b
CY
219 ;; (define-key map [down-mouse-1] 'dframe-double-click)
220 (define-key map [follow-link] 'mouse-face)
7cfc18c4
CY
221 (define-key map [mouse-2] 'dframe-click)
222 ;; This is the power click for new frames, or refreshing a cache
223 (define-key map [S-mouse-2] 'dframe-power-click)
224 ;; This adds a small unecessary visual effect
225 ;;(define-key map [down-mouse-2] 'dframe-quick-mouse)
226
78b35906 227 (define-key map [down-mouse-3] 'dframe-popup-kludge)
7cfc18c4
CY
228
229 ;; This lets the user scroll as if we had a scrollbar... well maybe not
230 (define-key map [mode-line mouse-2] 'dframe-mouse-hscroll)
231 ;; another handy place users might click to get our menu.
232 (define-key map [mode-line down-mouse-1]
78b35906 233 'dframe-popup-kludge)
7cfc18c4
CY
234
235 ;; We can't switch buffers with the buffer mouse menu. Lets hack it.
236 (define-key map [C-down-mouse-1] 'dframe-hack-buffer-menu)
237
238 ;; Lastly, we want to track the mouse. Play here
239 (define-key map [mouse-movement] 'dframe-track-mouse)
240 ))
241
242(defun dframe-live-p (frame)
243 "Return non-nil if FRAME is currently available."
244 (and frame (frame-live-p frame) (frame-visible-p frame)))
245
246(defun dframe-frame-mode (arg frame-var cache-var buffer-var frame-name
247 local-mode-fn
248 &optional
249 parameters
250 delete-hook popup-hook create-hook
251 )
252 "Manage a frame for an application, enabling it when ARG is positive.
253FRAME-VAR is a variable used to cache the frame being used.
254This frame is either resurrected, hidden, killed, etc based on
255the value.
256CACHE-VAR is a variable used to cache a cached frame.
257BUFFER-VAR is a variable used to cache the buffer being used in dframe.
26e98da9 258This buffer will have `dframe-frame-mode' run on it.
7cfc18c4
CY
259FRAME-NAME is the name of the frame to create.
260LOCAL-MODE-FN is the function used to call this one.
261PARAMETERS are frame parameters to apply to this dframe.
262DELETE-HOOK are hooks to run when deleting a frame.
263POPUP-HOOK are hooks to run before showing a frame.
264CREATE-HOOK are hooks to run after creating a frame."
265 ;; toggle frame on and off.
266 (if (not arg) (if (dframe-live-p (symbol-value frame-var))
267 (setq arg -1) (setq arg 1)))
268 ;; Make sure the current buffer is set.
269 (set-buffer (symbol-value buffer-var))
270 ;; turn the frame off on neg number
271 (if (and (numberp arg) (< arg 0))
272 (progn
273 (run-hooks 'delete-hook)
274 (if (and (symbol-value frame-var)
275 (frame-live-p (symbol-value frame-var)))
276 (progn
277 (set cache-var (symbol-value frame-var))
278 (make-frame-invisible (symbol-value frame-var))))
279 (set frame-var nil))
280 ;; Set this as our currently attached frame
281 (setq dframe-attached-frame (selected-frame))
282 (run-hooks 'popup-hook)
283 ;; Updated the buffer passed in to contain all the hacks needed
284 ;; to make it work well in a dedicated window.
78b35906 285 (with-current-buffer (symbol-value buffer-var)
7cfc18c4
CY
286 ;; Declare this buffer a dedicated frame
287 (setq dframe-controlled local-mode-fn)
288
78b35906
SM
289 (if (featurep 'xemacs)
290 (progn
7cfc18c4
CY
291 ;; Hack the XEmacs mouse-motion handler
292 (set (make-local-variable 'mouse-motion-handler)
293 'dframe-track-mouse-xemacs)
294 ;; Hack the double click handler
295 (make-local-variable 'mouse-track-click-hook)
296 (add-hook 'mouse-track-click-hook
297 (lambda (event count)
298 (if (/= (event-button event) 1)
299 nil ; Do normal operations.
300 (cond ((eq count 1)
301 (dframe-quick-mouse event))
302 ((or (eq count 2)
303 (eq count 3))
304 (dframe-click event)
305 (dframe-quick-mouse event)))
306 ;; Don't do normal operations.
307 t))))
308 ;; Enable mouse tracking in emacs
309 (if dframe-track-mouse-function
e8dc1f8c 310 (set (make-local-variable 'track-mouse) t))) ;this could be messy.
78b35906 311;;;; DISABLED: This causes problems for users with multiple frames.
7cfc18c4
CY
312;;;; ;; Set this up special just for the passed in buffer
313;;;; ;; Terminal minibuffer stuff does not require this.
314;;;; (if (and (or (assoc 'minibuffer parameters)
315;;;; ;; XEmacs plist is not an association list
316;;;; (member 'minibuffer parameters))
317;;;; window-system (not (eq window-system 'pc))
318;;;; (null default-minibuffer-frame))
319;;;; (progn
320;;;; (make-local-variable 'default-minibuffer-frame)
321;;;; (setq default-minibuffer-frame dframe-attached-frame))
322;;;; )
323 ;; Override `temp-buffer-show-hook' so that help and such
324 ;; put their stuff into a frame other than our own.
325 ;; Correct use of `temp-buffer-show-function': Bob Weiner
326 (if (and (boundp 'temp-buffer-show-hook)
327 (boundp 'temp-buffer-show-function))
328 (progn (make-local-variable 'temp-buffer-show-hook)
329 (setq temp-buffer-show-hook temp-buffer-show-function)))
330 (make-local-variable 'temp-buffer-show-function)
331 (setq temp-buffer-show-function 'dframe-temp-buffer-show-function)
332 ;; If this buffer is killed, we must make sure that we destroy
333 ;; the frame the dedicated window is in.
334 (add-hook 'kill-buffer-hook `(lambda ()
335 (let ((skilling (boundp 'skilling)))
336 (if skilling
337 nil
338 (if dframe-controlled
339 (progn
340 (funcall dframe-controlled -1)
341 (setq ,buffer-var nil)
342 )))))
343 t t)
344 )
345 ;; Get the frame to work in
346 (if (frame-live-p (symbol-value cache-var))
347 (progn
348 (set frame-var (symbol-value cache-var))
349 (make-frame-visible (symbol-value frame-var))
350 (select-frame (symbol-value frame-var))
351 (set-window-dedicated-p (selected-window) nil)
352 (if (not (eq (current-buffer) (symbol-value buffer-var)))
353 (switch-to-buffer (symbol-value buffer-var)))
354 (set-window-dedicated-p (selected-window) t)
355 (raise-frame (symbol-value frame-var))
356 )
357 (if (frame-live-p (symbol-value frame-var))
358 (raise-frame (symbol-value frame-var))
359 (set frame-var
78b35906 360 (if (featurep 'xemacs)
7cfc18c4
CY
361 ;; Only guess height if it is not specified.
362 (if (member 'height parameters)
363 (make-frame parameters)
364 (make-frame (nconc (list 'height
365 (dframe-needed-height))
366 parameters)))
367 (let* ((mh (dframe-frame-parameter dframe-attached-frame
368 'menu-bar-lines))
369 (paramsa
370 ;; Only add a guessed height if one is not specified
371 ;; in the input parameters.
372 (if (assoc 'height parameters)
373 parameters
374 (append
375 parameters
d7dbc017 376 (list (cons 'height (+ (or mh 0) (frame-height)))))))
7cfc18c4
CY
377 (params
378 ;; Only add a guessed width if one is not specified
379 ;; in the input parameters.
380 (if (assoc 'width parameters)
381 paramsa
382 (append
383 paramsa
384 (list (cons 'width (frame-width))))))
385 (frame
5b86d3e4 386 (if (not (eq window-system 'x))
7cfc18c4
CY
387 (make-frame params)
388 (let ((x-pointer-shape x-pointer-top-left-arrow)
389 (x-sensitive-text-pointer-shape
390 x-pointer-hand2))
391 (make-frame params)))))
392 frame)))
393 ;; Put the buffer into the frame
394 (save-excursion
395 (select-frame (symbol-value frame-var))
396 (switch-to-buffer (symbol-value buffer-var))
397 (set-window-dedicated-p (selected-window) t))
398 ;; Run hooks (like reposition)
399 (run-hooks 'create-hook)
400 ;; Frame name
401 (if (and (or (null window-system) (eq window-system 'pc))
402 (fboundp 'set-frame-name))
403 (save-window-excursion
404 (select-frame (symbol-value frame-var))
405 (set-frame-name frame-name)))
406 ;; On a terminal, raise the frame or the user will
407 ;; be confused.
408 (if (not window-system)
409 (select-frame (symbol-value frame-var)))
410 ))) )
411
412(defun dframe-reposition-frame (new-frame parent-frame location)
413 "Move NEW-FRAME to be relative to PARENT-FRAME.
414LOCATION can be one of 'random, 'left, 'right, 'left-right, or 'top-bottom."
78b35906 415 (if (featurep 'xemacs)
7cfc18c4
CY
416 (dframe-reposition-frame-xemacs new-frame parent-frame location)
417 (dframe-reposition-frame-emacs new-frame parent-frame location)))
418
2a41ed35
GM
419;; Not defined in builds without X, but behind window-system test.
420(declare-function x-display-pixel-width "xfns.c" (&optional terminal))
421(declare-function x-display-pixel-height "xfns.c" (&optional terminal))
422
7cfc18c4
CY
423(defun dframe-reposition-frame-emacs (new-frame parent-frame location)
424 "Move NEW-FRAME to be relative to PARENT-FRAME.
425LOCATION can be one of 'random, 'left-right, 'top-bottom, or
ca68aad8 426a cons cell indicating a position of the form (LEFT . TOP)."
2a41ed35
GM
427 ;; Position dframe.
428 ;; Do no positioning if not on a windowing system,
429 (unless (or (not window-system) (eq window-system 'pc))
430 (let* ((pfx (dframe-frame-parameter parent-frame 'left))
431 (pfy (dframe-frame-parameter parent-frame 'top))
fb0cf781
J
432 (pfw (+ (tool-bar-pixel-width parent-frame)
433 (frame-pixel-width parent-frame)))
2a41ed35
GM
434 (pfh (frame-pixel-height parent-frame))
435 (nfw (frame-pixel-width new-frame))
436 (nfh (frame-pixel-height new-frame))
437 newleft newtop)
7cfc18c4
CY
438 ;; Rebuild pfx,pfy to be absolute positions.
439 (setq pfx (if (not (consp pfx))
440 pfx
441 ;; If pfx is a list, that means we grow
442 ;; from a specific edge of the display.
443 ;; Convert that to the distance from the
444 ;; left side of the display.
445 (if (eq (car pfx) '-)
446 ;; A - means distance from the right edge
447 ;; of the display, or DW - pfx - framewidth
448 (- (x-display-pixel-width) (car (cdr pfx)) pfw)
449 (car (cdr pfx))))
450 pfy (if (not (consp pfy))
451 pfy
452 ;; If pfy is a list, that means we grow
453 ;; from a specific edge of the display.
454 ;; Convert that to the distance from the
455 ;; left side of the display.
456 (if (eq (car pfy) '-)
457 ;; A - means distance from the right edge
458 ;; of the display, or DW - pfx - framewidth
459 (- (x-display-pixel-height) (car (cdr pfy)) pfh)
2a41ed35 460 (car (cdr pfy)))))
7cfc18c4 461 (cond ((eq location 'right)
fb0cf781 462 (setq newleft (+ pfx pfw 10)
7cfc18c4
CY
463 newtop pfy))
464 ((eq location 'left)
8a2c27b9 465 (setq newleft (- pfx 10 nfw)
7cfc18c4
CY
466 newtop pfy))
467 ((eq location 'left-right)
468 (setq newleft
469 ;; Decide which side to put it on. 200 is just a
470 ;; buffer for the left edge of the screen. The
471 ;; extra 10 is just dressings for window
472 ;; decorations.
473 (let* ((left-guess (- pfx 10 nfw))
fb0cf781 474 (right-guess (+ pfx pfw 10))
7cfc18c4
CY
475 (left-margin left-guess)
476 (right-margin (- (x-display-pixel-width)
477 right-guess 5 nfw)))
478 (cond ((>= left-margin 0) left-guess)
479 ((>= right-margin 0) right-guess)
480 ;; otherwise choose side we overlap less
481 ((> left-margin right-margin) 0)
482 (t (- (x-display-pixel-width) nfw 5))))
2a41ed35 483 newtop pfy))
7cfc18c4
CY
484 ((eq location 'top-bottom)
485 (setq newleft pfx
486 newtop
487 ;; Try and guess if we should be on the top or bottom.
488 (let* ((top-guess (- pfy 15 nfh))
489 (bottom-guess (+ pfy 5 pfh))
490 (top-margin top-guess)
491 (bottom-margin (- (x-display-pixel-height)
492 bottom-guess 5 nfh)))
493 (cond ((>= top-margin 0) top-guess)
494 ((>= bottom-margin 0) bottom-guess)
495 ;; Choose a side to overlap the least.
496 ((> top-margin bottom-margin) 0)
2a41ed35 497 (t (- (x-display-pixel-height) nfh 5))))))
7cfc18c4
CY
498 ((consp location)
499 (setq newleft (or (car location) 0)
500 newtop (or (cdr location) 0)))
501 (t nil))
502 (modify-frame-parameters new-frame
2a41ed35
GM
503 (list (cons 'left newleft)
504 (cons 'top newtop))))))
7cfc18c4
CY
505
506(defun dframe-reposition-frame-xemacs (new-frame parent-frame location)
507 "Move NEW-FRAME to be relative to PARENT-FRAME.
508LOCATION can be one of 'random, 'left-right, or 'top-bottom."
509 ;; Not yet implemented
510 )
511
512;; XEmacs function only.
513(defun dframe-needed-height (&optional frame)
514 "The needed height for the tool bar FRAME (in characters)."
515 (or frame (setq frame (selected-frame)))
516 ;; The 1 is the missing modeline/minibuffer
517 (+ 1 (/ (frame-pixel-height frame)
518 ;; This obscure code avoids a byte compiler warning in Emacs.
519 (let ((f 'face-height))
520 (funcall f 'default frame)))))
521
522(defun dframe-detach (frame-var cache-var buffer-var)
523 "Detatch the frame in symbol FRAME-VAR.
524CACHE-VAR and BUFFER-VAR are symbols as in `dframe-frame-mode'"
78b35906 525 (with-current-buffer (symbol-value buffer-var)
7cfc18c4
CY
526 (rename-buffer (buffer-name) t)
527 (let ((oldframe (symbol-value frame-var)))
528 (set buffer-var nil)
529 (set frame-var nil)
530 (set cache-var nil)
78b35906 531 ;; FIXME: Looks very suspicious. Luckily this function is unused.
7cfc18c4
CY
532 (make-variable-buffer-local frame-var)
533 (set frame-var oldframe)
534 )))
535
536;;; Special frame event proxies
537;;
538(if (boundp 'special-event-map)
539 (progn
540 (define-key special-event-map [make-frame-visible]
541 'dframe-handle-make-frame-visible)
542 (define-key special-event-map [iconify-frame]
543 'dframe-handle-iconify-frame)
544 (define-key special-event-map [delete-frame]
545 'dframe-handle-delete-frame))
546 )
547
548(defvar dframe-make-frame-visible-function nil
549 "Function used when a dframe controlled frame is de-iconified.
550The function must take an EVENT.")
551(defvar dframe-iconify-frame-function nil
552 "Function used when a dframe controlled frame is iconified.
553The function must take an EVENT.")
554(defvar dframe-delete-frame-function nil
555 "Function used when a frame attached to a dframe frame is deleted.
556The function must take an EVENT.")
557
558(defun dframe-handle-make-frame-visible (e)
559 "Handle a `make-frame-visible' event.
26e98da9 560Should enable auto-updating if the last state was also enabled.
7cfc18c4
CY
561Argument E is the event making the frame visible."
562 (interactive "e")
563 (let ((f last-event-frame))
564 (if (and (dframe-attached-frame f)
565 dframe-make-frame-visible-function)
566 (funcall dframe-make-frame-visible-function e)
567 )))
568
569(defun dframe-handle-iconify-frame (e)
570 "Handle a `iconify-frame' event.
26e98da9 571Should disable auto-updating if the last state was also enabled.
7cfc18c4
CY
572Argument E is the event iconifying the frame."
573 (interactive "e")
574 (let ((f last-event-frame))
575 (if (and (dframe-attached-frame f)
576 dframe-iconify-frame-function e)
577 (funcall dframe-iconify-frame-function)
578 )))
579
580(defun dframe-handle-delete-frame (e)
581 "Handle `delete-frame' event.
582Argument E is the event deleting the frame."
583 (interactive "e")
584 (let ((fl (frame-list))
585 (sf (selected-frame)))
586 ;; Loop over all frames. If dframe-delete-frame-function is
587 ;; non-nil, call it.
588 (while fl
589 (select-frame (car fl))
590 (if dframe-delete-frame-function
591 (funcall dframe-delete-frame-function e))
592 (setq fl (cdr fl)))
593 (if (frame-live-p sf)
594 (select-frame sf))
595 (handle-delete-frame e)))
596
597
598;;; Utilities
599;;
600(defun dframe-get-focus (frame-var activator &optional hook)
601 "Change frame focus to or from a dedicated frame.
602If the selected frame is not in the symbol FRAME-VAR, then FRAME-VAR
603frame is selected. If the FRAME-VAR is active, then select the
604attached frame. If FRAME-VAR is nil, ACTIVATOR is called to
605created it. HOOK is an optional argument of hooks to run when
26e98da9 606selecting FRAME-VAR."
7cfc18c4
CY
607 (interactive)
608 (if (eq (selected-frame) (symbol-value frame-var))
609 (if (frame-live-p dframe-attached-frame)
610 (dframe-select-attached-frame))
611 ;; make sure we have a frame
612 (if (not (frame-live-p (symbol-value frame-var)))
613 (funcall activator 1))
614 ;; go there
615 (select-frame (symbol-value frame-var))
616 )
617 (other-frame 0)
618 ;; If updates are off, then refresh the frame (they want it now...)
619 (run-hooks 'hook))
620
621
622(defun dframe-close-frame ()
623 "Close the current frame if it is dedicated."
624 (interactive)
625 (if dframe-controlled
626 (let ((b (current-buffer)))
627 (funcall dframe-controlled -1)
628 (kill-buffer b))))
629
630(defun dframe-current-frame (frame-var desired-major-mode)
631 "Return the existing dedicated frame to use.
632FRAME-VAR is the variable storing the currently active dedicated frame.
633If the current frame's buffer uses DESIRED-MAJOR-MODE, then use that frame."
634 (if (not (eq (selected-frame) (symbol-value frame-var)))
635 (if (and (eq major-mode 'desired-major-mode)
636 (get-buffer-window (current-buffer))
637 (window-frame (get-buffer-window (current-buffer))))
638 (window-frame (get-buffer-window (current-buffer)))
639 (symbol-value frame-var))
640 (symbol-value frame-var)))
641
642(defun dframe-attached-frame (&optional frame)
643 "Return the attached frame belonging to the dframe controlled frame FRAME.
644If optional arg FRAME is nil just return `dframe-attached-frame'."
645 (save-excursion
646 (if frame (select-frame frame))
647 dframe-attached-frame))
648
649(defun dframe-select-attached-frame (&optional frame)
26e98da9
JB
650 "Switch to the frame the dframe controlled frame FRAME was started from.
651If optional arg FRAME is nil assume the attached frame is already selected
652and just run the hooks `dframe-after-select-attached-frame-hook'. Return
653the attached frame."
7cfc18c4
CY
654 (let ((frame (dframe-attached-frame frame)))
655 (if frame (select-frame frame))
656 (prog1 frame
657 (run-hooks 'dframe-after-select-attached-frame-hook))))
658
659(defmacro dframe-with-attached-buffer (&rest forms)
660 "Execute FORMS in the attached frame's special buffer.
661Optionally select that frame if necessary."
662 `(save-selected-window
663 ;;(speedbar-set-timer speedbar-update-speed)
664 (dframe-select-attached-frame)
665 ,@forms
666 (dframe-maybee-jump-to-attached-frame)))
667
668(defun dframe-maybee-jump-to-attached-frame ()
669 "Jump to the attached frame ONLY if this was not a mouse event."
670 (when (or (not (dframe-mouse-event-p last-input-event))
671 dframe-activity-change-focus-flag)
672 (dframe-select-attached-frame)
58eb29e5 673 ;; KB: For what is this - raising the frame??
7cfc18c4
CY
674 (other-frame 0)))
675
676
677(defvar dframe-suppress-message-flag nil
678 "Non-nil means that `dframe-message' should just return a string.")
679
680(defun dframe-message (fmt &rest args)
681 "Like message, but for use in a dedicated frame.
682Argument FMT is the format string, and ARGS are the arguments for message."
683 (save-selected-window
684 (if dframe-suppress-message-flag
685 (apply 'format fmt args)
686 (if dframe-attached-frame
687 ;; KB: Here we do not need calling `dframe-select-attached-frame'
688 (select-frame dframe-attached-frame))
689 (apply 'message fmt args))))
690
691(defun dframe-y-or-n-p (prompt)
692 "Like `y-or-n-p', but for use in a dedicated frame.
693Argument PROMPT is the prompt to use."
694 (save-selected-window
695 (if (and ;;default-minibuffer-frame
696 dframe-attached-frame
697 ;;(not (eq default-minibuffer-frame dframe-attached-frame))
698 )
699 ;; KB: Here we do not need calling `dframe-select-attached-frame'
700 (select-frame dframe-attached-frame))
701 (y-or-n-p prompt)))
702\f
703;;; timer management
704;;
705;; Unlike speedbar with a dedicated set of routines, dframe has one master
706;; timer, and all dframe users will use it. At least until I figure out a way
707;; around that problem.
708;;
709;; Advantage 1: Two apps with timer/frames can munge the master list
710;; to make sure they occur in order.
711;; Advantage 2: If a user hits a key between timer functions, we can
712;; interrupt them safely.
713(defvar dframe-client-functions nil
714 "List of client functions using the dframe timer.")
715
716(defun dframe-set-timer (timeout fn &optional null-on-error)
717 "Apply a timer with TIMEOUT, to call FN, or remove a timer if TIMEOUT is nil.
718TIMEOUT is the number of seconds until the dframe controled program
719timer is called again. When TIMEOUT is nil, turn off all timeouts.
720This function must be called from the buffer belonging to the program
721who requested the timer.
722If NULL-ON-ERROR is a symbol, set it to nil if we cannot create a timer."
723 ;; First, fix up our list of client functions
724 (if timeout
725 (add-to-list 'dframe-client-functions fn)
726 (setq dframe-client-functions (delete fn dframe-client-functions)))
727 ;; Now decided what to do about the timout.
728 (if (or
729 ;; We have a timer, restart the timer with the new time.
730 timeout
731 ;; We have a timer, an off is requested, and no client
732 ;; functions are left, shut er down.
733 (and dframe-timer (not timeout) dframe-client-functions))
734 ;; Only call the low level function if we are changing the state.
735 (dframe-set-timer-internal timeout null-on-error)))
736
737(defun dframe-set-timer-internal (timeout &optional null-on-error)
5b86d3e4
GM
738 "Apply a timer with TIMEOUT to call the dframe timer manager."
739 (when dframe-timer
740 (if (featurep 'xemacs)
741 (delete-itimer dframe-timer)
742 (cancel-timer dframe-timer))
743 (setq dframe-timer nil))
744 (when timeout
745 (setq dframe-timer
746 (if (featurep 'xemacs)
747 (start-itimer "dframe" 'dframe-timer-fn
748 timeout timeout t)
749 (run-with-idle-timer timeout t 'dframe-timer-fn)))))
7cfc18c4
CY
750
751(defun dframe-timer-fn ()
752 "Called due to the dframe timer.
753Evaluates all cached timer functions in sequence."
754 (let ((l dframe-client-functions))
755 (while (and l (sit-for 0))
756 (condition-case er
757 (funcall (car l))
758 (error (message "DFRAME TIMER ERROR: %S" er)))
759 (setq l (cdr l)))))
760
761;;; Menu hacking for mouse-3
762;;
763(defconst dframe-pass-event-to-popup-mode-menu
764 (let (max-args)
765 (and (fboundp 'popup-mode-menu)
766 (fboundp 'function-max-args)
767 (setq max-args (function-max-args 'popup-mode-menu))
768 (not (zerop max-args))))
ca68aad8 769 "The EVENT arg to `popup-mode-menu' was introduced in XEmacs 21.4.0.")
7cfc18c4
CY
770
771;; In XEmacs, we make popup menus work on the item over mouse (as
772;; opposed to where the point happens to be.) We attain this by
773;; temporarily moving the point to that place.
774;; Hrvoje Niksic <hniksic@srce.hr>
78b35906
SM
775(defalias 'dframe-popup-kludge
776 (if (featurep 'xemacs)
777 (lambda (event) ; XEmacs.
778 "Pop up a menu related to the clicked on item.
7cfc18c4 779Must be bound to EVENT."
78b35906
SM
780 (interactive "e")
781 (save-excursion
782 (if dframe-pass-event-to-popup-mode-menu
783 (popup-mode-menu event)
784 (goto-char (event-closest-point event))
785 (beginning-of-line)
5ed619e0
GM
786 (forward-char (min 5 (- (line-end-position)
787 (line-beginning-position))))
78b35906
SM
788 (popup-mode-menu))
789 ;; Wait for menu to bail out. `popup-mode-menu' (and other popup
790 ;; menu functions) return immediately.
791 (let (new)
792 (while (not (misc-user-event-p (setq new (next-event))))
793 (dispatch-event new))
794 (dispatch-event new))))
795
796 (lambda (e) ; Emacs.
797 "Pop up a menu related to the clicked on item.
7cfc18c4 798Must be bound to event E."
78b35906
SM
799 (interactive "e")
800 (save-excursion
801 (mouse-set-point e)
802 ;; This gets the cursor where the user can see it.
803 (if (not (bolp)) (forward-char -1))
804 (sit-for 0)
5b86d3e4
GM
805 (if (fboundp 'mouse-menu-major-mode-map)
806 (popup-menu (mouse-menu-major-mode-map) e)
807 (with-no-warnings ; don't warn about obsolete fallback
808 (mouse-major-mode-menu e nil)))))))
7cfc18c4
CY
809
810;;; Interactive user functions for the mouse
811;;
78b35906
SM
812(defalias 'dframe-mouse-event-p
813 (if (featurep 'xemacs)
814 'button-press-event-p
815 (lambda (event)
816 "Return t if the event is a mouse related event."
817 (if (and (listp event)
818 (member (event-basic-type event)
819 '(mouse-1 mouse-2 mouse-3)))
820 t
821 nil))))
7cfc18c4
CY
822
823(defun dframe-track-mouse (event)
824 "For motion EVENT, display info about the current line."
825 (interactive "e")
826 (when (and dframe-track-mouse-function
78b35906 827 (or (featurep 'xemacs) ;; XEmacs always safe?
7cfc18c4
CY
828 (windowp (posn-window (event-end event))) ; Sometimes
829 ; there is no window to jump into.
830 ))
58eb29e5 831
7cfc18c4
CY
832 (funcall dframe-track-mouse-function event)))
833
834(defun dframe-track-mouse-xemacs (event)
835 "For motion EVENT, display info about the current line."
836 (if (functionp (default-value 'mouse-motion-handler))
837 (funcall (default-value 'mouse-motion-handler) event))
838 (if dframe-track-mouse-function
839 (funcall dframe-track-mouse-function event)))
840
841(defun dframe-help-echo (window &optional buffer position)
842 "Display help based context.
843The context is in WINDOW, viewing BUFFER, at POSITION.
844BUFFER and POSITION are optional because XEmacs doesn't use them."
845 (when (and (not dframe-track-mouse-function)
846 (bufferp buffer)
847 dframe-help-echo-function)
848 (let ((dframe-suppress-message-flag t))
849 (with-current-buffer buffer
222a6c9b
CY
850 (save-excursion
851 (if position (goto-char position))
852 (funcall dframe-help-echo-function))))))
7cfc18c4
CY
853
854(defun dframe-mouse-set-point (e)
ca68aad8 855 "Set point based on event E.
7cfc18c4 856Handles clicking on images in XEmacs."
78b35906
SM
857 (if (and (featurep 'xemacs)
858 (save-excursion
859 (save-window-excursion
860 (mouse-set-point e)
861 (event-over-glyph-p e))))
7cfc18c4 862 ;; We are in XEmacs, and clicked on a picture
7cfc18c4
CY
863 (let ((ext (event-glyph-extent e)))
864 ;; This position is back inside the extent where the
865 ;; junk we pushed into the property list lives.
866 (if (extent-end-position ext)
867 (goto-char (1- (extent-end-position ext)))
868 (mouse-set-point e)))
7cfc18c4
CY
869 ;; We are not in XEmacs, OR we didn't click on a picture.
870 (mouse-set-point e)))
871
872(defun dframe-quick-mouse (e)
873 "Since mouse events are strange, this will keep the mouse nicely positioned.
874This should be bound to mouse event E."
875 (interactive "e")
876 (dframe-mouse-set-point e)
877 (if dframe-mouse-position-function
878 (funcall dframe-mouse-position-function)))
879
880(defun dframe-power-click (e)
26e98da9 881 "Activate any dframe mouse click as a power click.
7cfc18c4
CY
882A power click will dispose of cached data (if available) or bring a buffer
883up into a different window.
884This should be bound to mouse event E."
885 (interactive "e")
886 (let ((dframe-power-click t))
887 (select-frame last-event-frame)
888 (dframe-click e)))
889
890(defun dframe-click (e)
891 "Call our clients click function on a user click.
892E is the event causing the click."
893 (interactive "e")
894 (dframe-mouse-set-point e)
895 (when dframe-mouse-click-function
896 ;; On the off chance of buffer switch, or something incorrectly
897 ;; configured.
898 (funcall dframe-mouse-click-function e)))
899
900(defun dframe-double-click (e)
901 "Activate the registered click function on a double click.
902This must be bound to a mouse event.
903This should be bound to mouse event E."
904 (interactive "e")
905 ;; Emacs only. XEmacs handles this via `mouse-track-click-hook'.
906 (cond ((eq (car e) 'down-mouse-1)
907 (dframe-mouse-set-point e))
908 ((eq (car e) 'mouse-1)
909 (dframe-quick-mouse e))
910 ((or (eq (car e) 'double-down-mouse-1)
911 (eq (car e) 'triple-down-mouse-1))
912 (dframe-click e))))
913
914;;; Hacks of normal things.
915;;
916;; Some normal things that happen in one of these dedicated frames
917;; must be handled specially, so that our dedicated frame isn't
918;; messed up.
919(defun dframe-temp-buffer-show-function (buffer)
920 "Placed in the variable `temp-buffer-show-function' in dedicated frames.
921If a user requests help using \\[help-command] <Key> the temp BUFFER will be
922redirected into a window on the attached frame."
923 (if dframe-attached-frame (dframe-select-attached-frame))
924 (pop-to-buffer buffer nil)
925 (other-window -1)
926 ;; Fix for using this hook on some platforms: Bob Weiner
78b35906 927 (cond ((not (featurep 'xemacs))
7cfc18c4
CY
928 (run-hooks 'temp-buffer-show-hook))
929 ((fboundp 'run-hook-with-args)
930 (run-hook-with-args 'temp-buffer-show-hook buffer))
931 ((and (boundp 'temp-buffer-show-hook)
932 (listp temp-buffer-show-hook))
933 (mapcar (function (lambda (hook) (funcall hook buffer)))
934 temp-buffer-show-hook))))
935
936(defun dframe-hack-buffer-menu (e)
937 "Control mouse 1 is buffer menu.
938This hack overrides it so that the right thing happens in the main
939Emacs frame, not in the dedicated frame.
940Argument E is the event causing this activity."
941 (interactive "e")
78b35906
SM
942 (let ((fn (lookup-key global-map (if (featurep 'xemacs)
943 '(control button1)
7cfc18c4
CY
944 [C-down-mouse-1])))
945 (oldbuff (current-buffer))
946 (newbuff nil))
947 (unwind-protect
948 (save-excursion
949 (set-window-dedicated-p (selected-window) nil)
950 (call-interactively fn)
951 (setq newbuff (current-buffer)))
952 (switch-to-buffer oldbuff)
953 (set-window-dedicated-p (selected-window) t))
954 (if (not (eq newbuff oldbuff))
955 (dframe-with-attached-buffer
956 (switch-to-buffer newbuff)))))
957
958(defun dframe-switch-buffer-attached-frame (&optional buffer)
959 "Switch to BUFFER in the attached frame, and raise that frame.
960This overrides the default behavior of `switch-to-buffer' which is
961broken because of the dedicated frame."
962 (interactive)
963 ;; Assume we are in the dedicated frame.
964 (other-frame 1)
965 ;; Now switch buffers
966 (if buffer
967 (switch-to-buffer buffer)
968 (call-interactively 'switch-to-buffer nil nil)))
969
970;; XEmacs: this can be implemented using modeline keymaps, but there
971;; is no use, as we have horizontal scrollbar (as the docstring
972;; hints.)
973(defun dframe-mouse-hscroll (e)
974 "Read a mouse event E from the mode line, and horizontally scroll.
975If the mouse is being clicked on the far left, or far right of the
976mode-line. This is only useful for non-XEmacs."
977 (interactive "e")
978 (let* ((x-point (car (nth 2 (car (cdr e)))))
979 (pixels-per-10-col (/ (* 10 (frame-pixel-width))
980 (frame-width)))
981 (click-col (1+ (/ (* 10 x-point) pixels-per-10-col)))
982 )
983 (cond ((< click-col 3)
984 (scroll-left 2))
985 ((> click-col (- (window-width) 5))
986 (scroll-right 2))
987 (t (dframe-message
988 "Click on the edge of the modeline to scroll left/right")))
989 ))
990
991(provide 'dframe)
992
993;;; dframe.el ends here