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