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