unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#10165: [PATCH] Allow setting corner in mouse avoidance mode.
@ 2011-11-30  5:58 Thierry Volpiatto
  2011-11-30  6:05 ` Thierry Volpiatto
  2011-11-30  9:32 ` Juri Linkov
  0 siblings, 2 replies; 27+ messages in thread
From: Thierry Volpiatto @ 2011-11-30  5:58 UTC (permalink / raw)
  To: 10165

[-- Attachment #1: Type: text/plain, Size: 387 bytes --]


> Hi all,
> there was nothing except modifying function
> `mouse-avoidance-banish-destination' to set in which corner mouse is
> banish.
> This patch allow setting this through
> `mouse-avoidance-banish-destination' user variable like this:
> (left . top) or (right . bottom) etc...

Thanks.  We're in feature freeze---please file this in the bug database
so it doesn't get forgotten.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: mouse-avoidance-banish-destination --]
[-- Type: text/x-diff, Size: 1894 bytes --]

# HG changeset patch
# User Thierry Volpiatto <thierry.volpiatto@gmail.com>
# Date 1322632617 -3600
# Node ID 885228e9f341f392fc6886bf2855a66c5bdba6c5
# Parent  c511f9c3f7a2cab8b3684b2f1ea4782176988ac6
* lisp/avoid.el:  Allow setting in which corner banish move the mouse.
(mouse-avoidance-banish-destination): New user variable, a cons pair to specify banish corner position.
(mouse-avoidance-banish-destination): Set destination according to mouse-avoidance-banish-destination value.

diff --git a/lisp/avoid.el b/lisp/avoid.el
--- a/lisp/avoid.el
+++ b/lisp/avoid.el
@@ -115,6 +115,11 @@
   :type 'integer
   :group 'avoid)
 
+(defcustom mouse-avoidance-banish-destination '(left . top)
+  "Set the position to which Mouse Avoidance mode `banish' moves the mouse."
+  :group 'avoid
+  :type 'list)
+
 ;; Internal variables
 (defvar mouse-avoidance-state nil)
 (defvar mouse-avoidance-pointer-shapes nil)
@@ -183,10 +188,18 @@
 
 (defun mouse-avoidance-banish-destination ()
   "The position to which Mouse Avoidance mode `banish' moves the mouse.
-You can redefine this if you want the mouse banished to a different corner."
-  (let* ((pos (window-edges)))
-    (cons (- (nth 2 pos) 2)
-	  (nth 1 pos))))
+If you want the mouse banished to a different corner set
+`mouse-avoidance-banish-destination' as you need."
+  (let* ((pos     (loop for v in (window-edges)
+                        for k in '(left top right bottom)
+                        collect (cons k v)))
+         (side    (car mouse-avoidance-banish-destination))
+         (up-down (cdr mouse-avoidance-banish-destination))
+         (fn      (case side
+                    (left '+)
+                    (right '-))))
+    (cons (funcall fn (assoc-default side pos) 2)
+	  (assoc-default up-down pos))))
 
 (defun mouse-avoidance-banish-mouse ()
   ;; Put the mouse pointer in the upper-right corner of the current frame.

[-- Attachment #3: Type: text/plain, Size: 83 bytes --]


-- 
  Thierry
Get my Gnupg key:
gpg --keyserver pgp.mit.edu --recv-keys 59F29997 

^ permalink raw reply	[flat|nested] 27+ messages in thread

end of thread, other threads:[~2012-04-14  5:14 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-30  5:58 bug#10165: [PATCH] Allow setting corner in mouse avoidance mode Thierry Volpiatto
2011-11-30  6:05 ` Thierry Volpiatto
2011-11-30  9:32 ` Juri Linkov
2011-11-30 10:31   ` Thierry Volpiatto
2011-11-30 17:40     ` Thierry Volpiatto
2011-12-01  7:48       ` Juri Linkov
2011-12-01  8:45         ` Thierry Volpiatto
2011-12-02  7:30         ` Thierry Volpiatto
2011-12-02  7:36           ` Thierry Volpiatto
2011-12-02 10:52             ` Juri Linkov
2011-12-02 11:24               ` Thierry Volpiatto
2011-12-02 17:07                 ` Juri Linkov
2011-12-02 17:35                   ` Thierry Volpiatto
2011-12-03  8:58                     ` Thierry Volpiatto
2011-12-03  9:26                       ` Thierry Volpiatto
2011-12-05 10:52                         ` Juri Linkov
2011-12-05 18:06                           ` Thierry Volpiatto
2011-12-07 17:30                             ` Juri Linkov
2011-12-07 18:04                               ` Thierry Volpiatto
2011-12-07 19:52                                 ` Juri Linkov
2011-12-08  6:33                                   ` Thierry Volpiatto
2011-12-08 20:20                                     ` Stefan Monnier
2012-04-12 20:04                                     ` Lars Magne Ingebrigtsen
2012-04-12 21:12                                       ` Thierry Volpiatto
2012-04-13 15:19                                       ` Thierry Volpiatto
2012-04-13 21:13                                         ` Lars Ingebrigtsen
2012-04-14  5:14                                           ` Thierry Volpiatto

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).