*** empty log message ***
[bpt/emacs.git] / lisp / term / sun-mouse.el
1 ;;; sun-mouse.el --- mouse handling for Sun windows
2
3 ;; Author: Jeff Peck
4 ;; Maintainer: FSF
5 ;; Last-Modified: 14 Jul 1992
6
7 ;; Copyright (C) 1987 Free Software Foundation, Inc.
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to
23 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24
25 ;;; Commentary:
26
27 ;;; Jeff Peck, Sun Microsystems, Jan 1987.
28 ;;; Original idea by Stan Jefferson
29
30 ;;;
31 ;;; Modelled after the GNUEMACS keymap interface.
32 ;;;
33 ;;; User Functions:
34 ;;; make-mousemap, copy-mousemap,
35 ;;; define-mouse, global-set-mouse, local-set-mouse,
36 ;;; use-global-mousemap, use-local-mousemap,
37 ;;; mouse-lookup, describe-mouse-bindings
38 ;;;
39 ;;; Options:
40 ;;; extra-click-wait, scrollbar-width
41 ;;;
42
43 ;;; Code:
44
45 (defvar extra-click-wait 150
46 "*Number of milliseconds to wait for an extra click.
47 Set this to zero if you don't want chords or double clicks.")
48
49 (defvar scrollbar-width 5
50 "*The character width of the scrollbar.
51 The cursor is deemed to be in the right edge scrollbar if it is this near the
52 right edge, and more than two chars past the end of the indicated line.
53 Setting to nil limits the scrollbar to the edge or vertical dividing bar.")
54 \f
55 ;;;
56 ;;; Mousemaps
57 ;;;
58 (defun make-mousemap ()
59 "Returns a new mousemap."
60 (cons 'mousemap nil))
61
62 (defun copy-mousemap (mousemap)
63 "Return a copy of mousemap."
64 (copy-alist mousemap))
65
66 (defun define-mouse (mousemap mouse-list def)
67 "Args MOUSEMAP, MOUSE-LIST, DEF. Define MOUSE-LIST in MOUSEMAP as DEF.
68 MOUSE-LIST is a list of atoms specifing a mouse hit according to these rules:
69 * One of these atoms specifies the active region of the definition.
70 text, scrollbar, modeline, minibuffer
71 * One or two or these atoms specify the button or button combination.
72 left, middle, right, double
73 * Any combination of these atoms specify the active shift keys.
74 control, shift, meta
75 * With a single unshifted button, you can add
76 up
77 to indicate an up-click.
78 The atom `double' is used with a button designator to denote a double click.
79 Two button chords are denoted by listing the two buttons.
80 See sun-mouse-handler for the treatment of the form DEF."
81 (mousemap-set (mouse-list-to-mouse-code mouse-list) mousemap def))
82
83 (defun global-set-mouse (mouse-list def)
84 "Give MOUSE-EVENT-LIST a local definition of DEF.
85 See define-mouse for a description of MOUSE-EVENT-LIST and DEF.
86 Note that if MOUSE-EVENT-LIST has a local definition in the current buffer,
87 that local definition will continue to shadow any global definition."
88 (interactive "xMouse event: \nxDefinition: ")
89 (define-mouse current-global-mousemap mouse-list def))
90
91 (defun local-set-mouse (mouse-list def)
92 "Give MOUSE-EVENT-LIST a local definition of DEF.
93 See define-mouse for a description of the arguments.
94 The definition goes in the current buffer's local mousemap.
95 Normally buffers in the same major mode share a local mousemap."
96 (interactive "xMouse event: \nxDefinition: ")
97 (if (null current-local-mousemap)
98 (setq current-local-mousemap (make-mousemap)))
99 (define-mouse current-local-mousemap mouse-list def))
100
101 (defun use-global-mousemap (mousemap)
102 "Selects MOUSEMAP as the global mousemap."
103 (setq current-global-mousemap mousemap))
104
105 (defun use-local-mousemap (mousemap)
106 "Selects MOUSEMAP as the local mousemap.
107 nil for MOUSEMAP means no local mousemap."
108 (setq current-local-mousemap mousemap))
109
110 \f
111 ;;;
112 ;;; Interface to the Mouse encoding defined in Emacstool.c
113 ;;;
114 ;;; Called when mouse-prefix is sent to emacs, additional
115 ;;; information is read in as a list (button x y time-delta)
116 ;;;
117 ;;; First, some generally useful functions:
118 ;;;
119
120 (defun logtest (x y)
121 "True if any bits set in X are also set in Y.
122 Just like the Common Lisp function of the same name."
123 (not (zerop (logand x y))))
124
125
126 ;;;
127 ;;; Hit accessors.
128 ;;;
129
130 (defconst sm::ButtonBits 7) ; Lowest 3 bits.
131 (defconst sm::ShiftmaskBits 56) ; Second lowest 3 bits (56 = 63 - 7).
132 (defconst sm::DoubleBits 64) ; Bit 7.
133 (defconst sm::UpBits 128) ; Bit 8.
134
135 ;;; All the useful code bits
136 (defmacro sm::hit-code (hit)
137 (` (nth 0 (, hit))))
138 ;;; The button, or buttons if a chord.
139 (defmacro sm::hit-button (hit)
140 (` (logand sm::ButtonBits (nth 0 (, hit)))))
141 ;;; The shift, control, and meta flags.
142 (defmacro sm::hit-shiftmask (hit)
143 (` (logand sm::ShiftmaskBits (nth 0 (, hit)))))
144 ;;; Set if a double click (but not a chord).
145 (defmacro sm::hit-double (hit)
146 (` (logand sm::DoubleBits (nth 0 (, hit)))))
147 ;;; Set on button release (as opposed to button press).
148 (defmacro sm::hit-up (hit)
149 (` (logand sm::UpBits (nth 0 (, hit)))))
150 ;;; Screen x position.
151 (defmacro sm::hit-x (hit) (list 'nth 1 hit))
152 ;;; Screen y position.
153 (defmacro sm::hit-y (hit) (list 'nth 2 hit))
154 ;;; Millisconds since last hit.
155 (defmacro sm::hit-delta (hit) (list 'nth 3 hit))
156
157 (defmacro sm::hit-up-p (hit) ; A predicate.
158 (` (not (zerop (sm::hit-up (, hit))))))
159
160 ;;;
161 ;;; Loc accessors. for sm::window-xy
162 ;;;
163 (defmacro sm::loc-w (loc) (list 'nth 0 loc))
164 (defmacro sm::loc-x (loc) (list 'nth 1 loc))
165 (defmacro sm::loc-y (loc) (list 'nth 2 loc))
166
167 (defmacro eval-in-buffer (buffer &rest forms)
168 "Macro to switches to BUFFER, evaluates FORMS, returns to original buffer."
169 ;; When you don't need the complete window context of eval-in-window
170 (` (let ((StartBuffer (current-buffer)))
171 (unwind-protect
172 (progn
173 (set-buffer (, buffer))
174 (,@ forms))
175 (set-buffer StartBuffer)))))
176
177 (put 'eval-in-buffer 'lisp-indent-function 1)
178
179 ;;; this is used extensively by sun-fns.el
180 ;;;
181 (defmacro eval-in-window (window &rest forms)
182 "Switch to WINDOW, evaluate FORMS, return to original window."
183 (` (let ((OriginallySelectedWindow (selected-window)))
184 (unwind-protect
185 (progn
186 (select-window (, window))
187 (,@ forms))
188 (select-window OriginallySelectedWindow)))))
189 (put 'eval-in-window 'lisp-indent-function 1)
190
191 ;;;
192 ;;; handy utility, generalizes window_loop
193 ;;;
194
195 ;;; It's a macro (and does not evaluate its arguments).
196 (defmacro eval-in-windows (form &optional yesmini)
197 "Switches to each window and evaluates FORM. Optional argument
198 YESMINI says to include the minibuffer as a window.
199 This is a macro, and does not evaluate its arguments."
200 (` (let ((OriginallySelectedWindow (selected-window)))
201 (unwind-protect
202 (while (progn
203 (, form)
204 (not (eq OriginallySelectedWindow
205 (select-window
206 (next-window nil (, yesmini)))))))
207 (select-window OriginallySelectedWindow)))))
208 (put 'eval-in-window 'lisp-indent-function 0)
209
210 (defun move-to-loc (x y)
211 "Move cursor to window location X, Y.
212 Handles wrapped and horizontally scrolled lines correctly."
213 (move-to-window-line y)
214 ;; window-line-end expects this to return the window column it moved to.
215 (let ((cc (current-column))
216 (nc (move-to-column
217 (if (zerop (window-hscroll))
218 (+ (current-column)
219 (min (- (window-width) 2) ; To stay on the line.
220 x))
221 (+ (window-hscroll) -1
222 (min (1- (window-width)) ; To stay on the line.
223 x))))))
224 (- nc cc)))
225
226
227 (defun minibuffer-window-p (window)
228 "True iff this WINDOW is minibuffer."
229 (= (frame-height)
230 (nth 3 (window-edges window)) ; The bottom edge.
231 ))
232
233 \f
234 (defun sun-mouse-handler (&optional hit)
235 "Evaluates the function or list associated with a mouse hit.
236 Expecting to read a hit, which is a list: (button x y delta).
237 A form bound to button by define-mouse is found by mouse-lookup.
238 The variables: *mouse-window*, *mouse-x*, *mouse-y* are bound.
239 If the form is a symbol (symbolp), it is funcall'ed with *mouse-window*,
240 *mouse-x*, and *mouse-y* as arguments; if the form is a list (listp),
241 the form is eval'ed; if the form is neither of these, it is an error.
242 Returns nil."
243 (interactive)
244 (if (null hit) (setq hit (sm::combined-hits)))
245 (let ((loc (sm::window-xy (sm::hit-x hit) (sm::hit-y hit))))
246 (let ((*mouse-window* (sm::loc-w loc))
247 (*mouse-x* (sm::loc-x loc))
248 (*mouse-y* (sm::loc-y loc))
249 (mouse-code (mouse-event-code hit loc)))
250 (let ((form (eval-in-buffer (window-buffer *mouse-window*)
251 (mouse-lookup mouse-code))))
252 (cond ((null form)
253 (if (not (sm::hit-up-p hit)) ; undefined up hits are ok.
254 (error "Undefined mouse event: %s"
255 (prin1-to-string
256 (mouse-code-to-mouse-list mouse-code)))))
257 ((symbolp form)
258 (setq this-command form)
259 (funcall form *mouse-window* *mouse-x* *mouse-y*))
260 ((listp form)
261 (setq this-command (car form))
262 (eval form))
263 (t
264 (error "Mouse action must be symbol or list, but was: %s"
265 form))))))
266 ;; Don't let 'sun-mouse-handler get on last-command,
267 ;; since this function should be transparent.
268 (if (eq this-command 'sun-mouse-handler)
269 (setq this-command last-command))
270 ;; (message (prin1-to-string this-command)) ; to see what your buttons did
271 nil)
272
273 (defun sm::combined-hits ()
274 "Read and return next mouse-hit, include possible double click"
275 (let ((hit1 (mouse-hit-read)))
276 (if (not (sm::hit-up-p hit1)) ; Up hits dont start doubles or chords.
277 (let ((hit2 (mouse-second-hit extra-click-wait)))
278 (if hit2 ; we cons'd it, we can smash it.
279 ; (setf (sm::hit-code hit1) (logior (sm::hit-code hit1) ...))
280 (setcar hit1 (logior (sm::hit-code hit1)
281 (sm::hit-code hit2)
282 (if (= (sm::hit-button hit1)
283 (sm::hit-button hit2))
284 sm::DoubleBits 0))))))
285 hit1))
286
287 (defun mouse-hit-read ()
288 "Read mouse-hit list from keyboard. Like (read 'read-char),
289 but that uses minibuffer, and mucks up last-command."
290 (let ((char-list nil) (char nil))
291 (while (not (equal 13 ; Carriage return.
292 (prog1 (setq char (read-char))
293 (setq char-list (cons char char-list))))))
294 (read (mapconcat 'char-to-string (nreverse char-list) ""))
295 ))
296
297 ;;; Second Click Hackery....
298 ;;; if prefix is not mouse-prefix, need a way to unread the char...
299 ;;; or else have mouse flush input queue, or else need a peek at next char.
300
301 ;;; There is no peek, but since one character can be unread, we only
302 ;;; have to flush the queue when the command after a mouse click
303 ;;; starts with mouse-prefix1 (see below).
304 ;;; Something to do later: We could buffer the read commands and
305 ;;; execute them ourselves after doing the mouse command (using
306 ;;; lookup-key ??).
307
308 (defvar mouse-prefix1 24 ; C-x
309 "First char of mouse-prefix. Used to detect double clicks and chords.")
310
311 (defvar mouse-prefix2 0 ; C-@
312 "Second char of mouse-prefix. Used to detect double clicks and chords.")
313
314
315 (defun mouse-second-hit (hit-wait)
316 "Returns the next mouse hit occurring within HIT-WAIT milliseconds."
317 (if (sit-for-millisecs hit-wait) nil ; No input within hit-wait millisecs.
318 (let ((pc1 (read-char)))
319 (if (or (not (equal pc1 mouse-prefix1))
320 (sit-for-millisecs 3)) ; a mouse prefix will have second char
321 (progn (setq unread-command-char pc1) ; Can get away with one unread.
322 nil) ; Next input not mouse event.
323 (let ((pc2 (read-char)))
324 (if (not (equal pc2 mouse-prefix2))
325 (progn (setq unread-command-char pc1) ; put back the ^X
326 ;;; Too bad can't do two: (setq unread-command-char (list pc1 pc2))
327 (ding) ; user will have to retype that pc2.
328 nil) ; This input is not a mouse event.
329 ;; Next input has mouse prefix and is within time limit.
330 (let ((new-hit (mouse-hit-read))) ; Read the new hit.
331 (if (sm::hit-up-p new-hit) ; Ignore up events when timing.
332 (mouse-second-hit (- hit-wait (sm::hit-delta new-hit)))
333 new-hit ; New down hit within limit, return it.
334 ))))))))
335 \f
336 (defun sm::window-xy (x y)
337 "Find window containing screen coordinates X and Y.
338 Returns list (window x y) where x and y are relative to window."
339 (or
340 (catch 'found
341 (eval-in-windows
342 (let ((we (window-edges (selected-window))))
343 (let ((le (nth 0 we))
344 (te (nth 1 we))
345 (re (nth 2 we))
346 (be (nth 3 we)))
347 (if (= re (frame-width))
348 ;; include the continuation column with this window
349 (setq re (1+ re)))
350 (if (= be (frame-height))
351 ;; include partial line at bottom of frame with this window
352 ;; id est, if window is not multple of char size.
353 (setq be (1+ be)))
354
355 (if (and (>= x le) (< x re)
356 (>= y te) (< y be))
357 (throw 'found
358 (list (selected-window) (- x le) (- y te))))))
359 t)) ; include minibuffer in eval-in-windows
360 ;;If x,y from a real mouse click, we shouldn't get here.
361 (list nil x y)
362 ))
363
364 (defun sm::window-region (loc)
365 "Parse LOC into a region symbol.
366 Returns one of (text scrollbar modeline minibuffer)"
367 (let ((w (sm::loc-w loc))
368 (x (sm::loc-x loc))
369 (y (sm::loc-y loc)))
370 (let ((right (1- (window-width w)))
371 (bottom (1- (window-height w))))
372 (cond ((minibuffer-window-p w) 'minibuffer)
373 ((>= y bottom) 'modeline)
374 ((>= x right) 'scrollbar)
375 ;; far right column (window seperator) is always a scrollbar
376 ((and scrollbar-width
377 ;; mouse within scrollbar-width of edge.
378 (>= x (- right scrollbar-width))
379 ;; mouse a few chars past the end of line.
380 (>= x (+ 2 (window-line-end w x y))))
381 'scrollbar)
382 (t 'text)))))
383
384 (defun window-line-end (w x y)
385 "Return WINDOW column (ignore X) containing end of line Y"
386 (eval-in-window w (save-excursion (move-to-loc (frame-width) y))))
387 \f
388 ;;;
389 ;;; The encoding of mouse events into a mousemap.
390 ;;; These values must agree with coding in emacstool:
391 ;;;
392 (defconst sm::keyword-alist
393 '((left . 1) (middle . 2) (right . 4)
394 (shift . 8) (control . 16) (meta . 32) (double . 64) (up . 128)
395 (text . 256) (scrollbar . 512) (modeline . 1024) (minibuffer . 2048)
396 ))
397
398 (defun mouse-event-code (hit loc)
399 "Maps MOUSE-HIT and LOC into a mouse-code."
400 ;;;Region is a code for one of text, modeline, scrollbar, or minibuffer.
401 (logior (sm::hit-code hit)
402 (mouse-region-to-code (sm::window-region loc))))
403
404 (defun mouse-region-to-code (region)
405 "Returns partial mouse-code for specified REGION."
406 (cdr (assq region sm::keyword-alist)))
407
408 (defun mouse-list-to-mouse-code (mouse-list)
409 "Map a MOUSE-LIST to a mouse-code."
410 (apply 'logior
411 (mapcar (function (lambda (x)
412 (cdr (assq x sm::keyword-alist))))
413 mouse-list)))
414
415 (defun mouse-code-to-mouse-list (mouse-code)
416 "Map a MOUSE-CODE to a mouse-list."
417 (apply 'nconc (mapcar
418 (function (lambda (x)
419 (if (logtest mouse-code (cdr x))
420 (list (car x)))))
421 sm::keyword-alist)))
422
423 (defun mousemap-set (code mousemap value)
424 (let* ((alist (cdr mousemap))
425 (assq-result (assq code alist)))
426 (if assq-result
427 (setcdr assq-result value)
428 (setcdr mousemap (cons (cons code value) alist)))))
429
430 (defun mousemap-get (code mousemap)
431 (cdr (assq code (cdr mousemap))))
432
433 (defun mouse-lookup (mouse-code)
434 "Look up MOUSE-EVENT and return the definition. nil means undefined."
435 (or (mousemap-get mouse-code current-local-mousemap)
436 (mousemap-get mouse-code current-global-mousemap)))
437
438 ;;;
439 ;;; I (jpeck) don't understand the utility of the next four functions
440 ;;; ask Steven Greenbaum <froud@kestrel>
441 ;;;
442 (defun mouse-mask-lookup (mask list)
443 "Args MASK (a bit mask) and LIST (a list of (code . form) pairs).
444 Returns a list of elements of LIST whose code or'ed with MASK is non-zero."
445 (let ((result nil))
446 (while list
447 (if (logtest mask (car (car list)))
448 (setq result (cons (car list) result)))
449 (setq list (cdr list)))
450 result))
451
452 (defun mouse-union (l l-unique)
453 "Return the union of list of mouse (code . form) pairs L and L-UNIQUE,
454 where L-UNIQUE is considered to be union'ized already."
455 (let ((result l-unique))
456 (while l
457 (let ((code-form-pair (car l)))
458 (if (not (assq (car code-form-pair) result))
459 (setq result (cons code-form-pair result))))
460 (setq l (cdr l)))
461 result))
462
463 (defun mouse-union-first-prefered (l1 l2)
464 "Return the union of lists of mouse (code . form) pairs L1 and L2,
465 based on the code's, with preference going to elements in L1."
466 (mouse-union l2 (mouse-union l1 nil)))
467
468 (defun mouse-code-function-pairs-of-region (region)
469 "Return a list of (code . function) pairs, where each code is
470 currently set in the REGION."
471 (let ((mask (mouse-region-to-code region)))
472 (mouse-union-first-prefered
473 (mouse-mask-lookup mask (cdr current-local-mousemap))
474 (mouse-mask-lookup mask (cdr current-global-mousemap))
475 )))
476 \f
477 ;;;
478 ;;; Functions for DESCRIBE-MOUSE-BINDINGS
479 ;;; And other mouse documentation functions
480 ;;; Still need a good procedure to print out a help sheet in readable format.
481 ;;;
482
483 (defun one-line-doc-string (function)
484 "Returns first line of documentation string for FUNCTION.
485 If there is no documentation string, then the string
486 \"No documentation\" is returned."
487 (while (consp function) (setq function (car function)))
488 (let ((doc (documentation function)))
489 (if (null doc)
490 "No documentation."
491 (string-match "^.*$" doc)
492 (substring doc 0 (match-end 0)))))
493
494 (defun print-mouse-format (binding)
495 (princ (car binding))
496 (princ ": ")
497 (mapcar (function
498 (lambda (mouse-list)
499 (princ mouse-list)
500 (princ " ")))
501 (cdr binding))
502 (terpri)
503 (princ " ")
504 (princ (one-line-doc-string (car binding)))
505 (terpri)
506 )
507
508 (defun print-mouse-bindings (region)
509 "Prints mouse-event bindings for REGION."
510 (mapcar 'print-mouse-format (sm::event-bindings region)))
511
512 (defun sm::event-bindings (region)
513 "Returns an alist of (function . (mouse-list1 ... mouse-listN)) for REGION,
514 where each mouse-list is bound to the function in REGION."
515 (let ((mouse-bindings (mouse-code-function-pairs-of-region region))
516 (result nil))
517 (while mouse-bindings
518 (let* ((code-function-pair (car mouse-bindings))
519 (current-entry (assoc (cdr code-function-pair) result)))
520 (if current-entry
521 (setcdr current-entry
522 (cons (mouse-code-to-mouse-list (car code-function-pair))
523 (cdr current-entry)))
524 (setq result (cons (cons (cdr code-function-pair)
525 (list (mouse-code-to-mouse-list
526 (car code-function-pair))))
527 result))))
528 (setq mouse-bindings (cdr mouse-bindings))
529 )
530 result))
531
532 (defun describe-mouse-bindings ()
533 "Lists all current mouse-event bindings."
534 (interactive)
535 (with-output-to-temp-buffer "*Help*"
536 (princ "Text Region") (terpri)
537 (princ "---- ------") (terpri)
538 (print-mouse-bindings 'text) (terpri)
539 (princ "Modeline Region") (terpri)
540 (princ "-------- ------") (terpri)
541 (print-mouse-bindings 'modeline) (terpri)
542 (princ "Scrollbar Region") (terpri)
543 (princ "--------- ------") (terpri)
544 (print-mouse-bindings 'scrollbar)))
545
546 (defun describe-mouse-briefly (mouse-list)
547 "Print a short description of the function bound to MOUSE-LIST."
548 (interactive "xDescibe mouse list briefly: ")
549 (let ((function (mouse-lookup (mouse-list-to-mouse-code mouse-list))))
550 (if function
551 (message "%s runs the command %s" mouse-list function)
552 (message "%s is undefined" mouse-list))))
553
554 (defun mouse-help-menu (function-and-binding)
555 (cons (prin1-to-string (car function-and-binding))
556 (menu-create ; Two sub-menu items of form ("String" . nil)
557 (list (list (one-line-doc-string (car function-and-binding)))
558 (list (prin1-to-string (cdr function-and-binding)))))))
559
560 (defun mouse-help-region (w x y &optional region)
561 "Displays a menu of mouse functions callable in this region."
562 (let* ((region (or region (sm::window-region (list w x y))))
563 (mlist (mapcar (function mouse-help-menu)
564 (sm::event-bindings region)))
565 (menu (menu-create (cons (list (symbol-name region)) mlist)))
566 (item (sun-menu-evaluate w 0 y menu))
567 )))
568 \f
569 ;;;
570 ;;; Menu interface functions
571 ;;;
572 ;;; use defmenu, because this interface is subject to change
573 ;;; really need a menu-p, but we use vectorp and the context...
574 ;;;
575 (defun menu-create (items)
576 "Functional form for defmenu, given a list of ITEMS returns a menu.
577 Each ITEM is a (STRING . VALUE) pair."
578 (apply 'vector items)
579 )
580
581 (defmacro defmenu (menu &rest itemlist)
582 "Defines MENU to be a menu, the ITEMS are (STRING . VALUE) pairs.
583 See sun-menu-evaluate for interpretation of ITEMS."
584 (list 'defconst menu (funcall 'menu-create itemlist))
585 )
586
587 (defun sun-menu-evaluate (*menu-window* *menu-x* *menu-y* menu)
588 "Display a pop-up menu in WINDOW at X Y and evaluate selected item
589 of MENU. MENU (or its symbol-value) should be a menu defined by defmenu.
590 A menu ITEM is a (STRING . FORM) pair;
591 the FORM associated with the selected STRING is evaluated,
592 and the resulting value is returned. Generally these FORMs are
593 evaluated for their side-effects rather than their values.
594 If the selected form is a menu or a symbol whose value is a menu,
595 then it is displayed and evaluated as a pullright menu item.
596 If the the FORM of the first ITEM is nil, the STRING of the item
597 is used as a label for the menu, i.e. it's inverted and not selectible."
598
599 (if (symbolp menu) (setq menu (symbol-value menu)))
600 (eval (sun-menu-internal *menu-window* *menu-x* *menu-y* 4 menu)))
601
602 (defun sun-get-frame-data (code)
603 "Sends the tty-sub-window escape sequence CODE to terminal,
604 and returns a cons of the two numbers in returned escape sequence.
605 That is it returns (cons <car> <cdr>) from \"\\E[n;<car>;<cdr>t\".
606 CODE values: 13 = Tool-Position, 14 = Size-in-Pixels, 18 = Size-in-Chars."
607 (send-string-to-terminal (concat "\033[" (int-to-string code) "t"))
608 (let (char str x y)
609 (while (not (equal 116 (setq char (read-char)))) ; #\t = 116
610 (setq str (cons char str)))
611 (setq str (mapconcat 'char-to-string (nreverse str) ""))
612 (string-match ";[0-9]*" str)
613 (setq y (substring str (1+ (match-beginning 0)) (match-end 0)))
614 (setq str (substring str (match-end 0)))
615 (string-match ";[0-9]*" str)
616 (setq x (substring str (1+ (match-beginning 0)) (match-end 0)))
617 (cons (string-to-int y) (string-to-int x))))
618
619 (defun sm::font-size ()
620 "Returns font size in pixels: (cons Ysize Xsize)"
621 (let ((pix (sun-get-frame-data 14)) ; returns size in pixels
622 (chr (sun-get-frame-data 18))) ; returns size in chars
623 (cons (/ (car pix) (car chr)) (/ (cdr pix) (cdr chr)))))
624
625 (defvar sm::menu-kludge-x nil
626 "Cached frame-to-window X-Offset for sm::menu-kludge")
627 (defvar sm::menu-kludge-y nil
628 "Cached frame-to-window Y-Offset for sm::menu-kludge")
629
630 (defun sm::menu-kludge ()
631 "If sunfns.c uses <Menu_Base_Kludge> this function must be here!"
632 (or sm::menu-kludge-y
633 (let ((fs (sm::font-size)))
634 (setq sm::menu-kludge-y (+ 8 (car fs)) ; a title line and borders
635 sm::menu-kludge-x 4))) ; best values depend on .defaults/Menu
636 (let ((wl (sun-get-frame-data 13))) ; returns frame location
637 (cons (+ (car wl) sm::menu-kludge-y)
638 (+ (cdr wl) sm::menu-kludge-x))))
639 \f
640 ;;;
641 ;;; Function interface to selection/region
642 ;;; primative functions are defined in sunfns.c
643 ;;;
644 (defun sun-yank-selection ()
645 "Set mark and yank the contents of the current sunwindows selection
646 into the current buffer at point."
647 (interactive "*")
648 (set-mark-command nil)
649 (insert-string (sun-get-selection)))
650
651 (defun sun-select-region (beg end)
652 "Set the sunwindows selection to the region in the current buffer."
653 (interactive "r")
654 (sun-set-selection (buffer-substring beg end)))
655
656 ;;;
657 ;;; Support for emacstool
658 ;;; This closes the window instead of stopping emacs.
659 ;;;
660 (defun suspend-emacstool (&optional stuffstring)
661 "If running under as a detached process emacstool,
662 you don't want to suspend (there is no way to resume),
663 just close the window, and wait for reopening."
664 (interactive)
665 (run-hooks 'suspend-hook)
666 (if stuffstring (send-string-to-terminal stuffstring))
667 (send-string-to-terminal "\033[2t") ; To close EmacsTool window.
668 (run-hooks 'suspend-resume-hook))
669 ;;;
670 ;;; initialize mouse maps
671 ;;;
672
673 (make-variable-buffer-local 'current-local-mousemap)
674 (setq-default current-local-mousemap nil)
675 (defvar current-global-mousemap (make-mousemap))
676
677 (provide 'sun-mouse)
678
679 ;;; sun-mouse.el ends here