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