Japanese translation of message catalog for Sawfish Window-Manager
Revision | 62e1c65b8ce6669445a36e658fac87a15b61ec62 (tree) |
---|---|
Time | 2008-09-18 01:40:04 |
Author | Janek Kozicki <jkozicki@src....> |
Commiter | Janek Kozicki |
Expose warp-pointer by Christopher Bratusek. Add a way to setup the warping functions from withing the UI.
svn path=/branches/sawfish-experimental/; revision=4290
@@ -46,6 +46,9 @@ | ||
46 | 46 | * lisp/sawfish/wm/commands/x-cycle.jl: Warp-if-necessary when cycling |
47 | 47 | by Christopher Bratusek. Add an option allowing to warp the pointer to |
48 | 48 | windows while cycling. |
49 | + * lisp/sawfish/wm/windows.jl: Expose warp-pointer by Christopher | |
50 | + Bratusek. Add a way to setup the warping functions from withing the | |
51 | + UI. | |
49 | 52 | |
50 | 53 | 2008-08-29 Janek Kozicki <cosurgi@gmail.com> |
51 | 54 | * lisp/sawfish/wm/commands/grow-pack.jl |
@@ -70,12 +70,17 @@ | ||
70 | 70 | (defvar ignore-window-input-hint nil |
71 | 71 | "Give focus to windows even when they haven't asked for it.") |
72 | 72 | |
73 | - (defvar warp-to-window-offset (cons -1 -1) | |
74 | - "Offset (%) from window edges when warping pointer. A negative number | |
75 | -means outside the left window edge.") | |
73 | + (defgroup warp "Warping" :group misc) | |
76 | 74 | |
77 | - (defvar warp-to-window-enabled nil | |
78 | - "When false, disable warping the cursor to windows.") | |
75 | + (defcustom warp-to-window-offset (cons -1 -1) | |
76 | + "Offset (%) from window edges when warping pointer." | |
77 | + :type (pair (number 1) (number 1)) | |
78 | + :group (misc warp)) | |
79 | + | |
80 | + (defcustom warp-to-window-enabled nil | |
81 | + "When false, disable warping the cursor to windows." | |
82 | + :type boolean | |
83 | + :group (misc warp)) | |
79 | 84 | |
80 | 85 | (defvar dont-avoid-ignored t |
81 | 86 | "When non-nil, ignored windows aren't avoided by default.") |