• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Japanese translation of message catalog for Sawfish Window-Manager


コミットメタ情報

リビジョン62e1c65b8ce6669445a36e658fac87a15b61ec62 (tree)
日時2008-09-18 01:40:04
作者Janek Kozicki <jkozicki@src....>
コミッター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

変更サマリ

差分

--- a/ChangeLog
+++ b/ChangeLog
@@ -46,6 +46,9 @@
4646 * lisp/sawfish/wm/commands/x-cycle.jl: Warp-if-necessary when cycling
4747 by Christopher Bratusek. Add an option allowing to warp the pointer to
4848 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.
4952
5053 2008-08-29 Janek Kozicki <cosurgi@gmail.com>
5154 * lisp/sawfish/wm/commands/grow-pack.jl
--- a/lisp/sawfish/wm/windows.jl
+++ b/lisp/sawfish/wm/windows.jl
@@ -70,12 +70,17 @@
7070 (defvar ignore-window-input-hint nil
7171 "Give focus to windows even when they haven't asked for it.")
7272
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)
7674
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))
7984
8085 (defvar dont-avoid-ignored t
8186 "When non-nil, ignored windows aren't avoided by default.")