• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

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

Japanese translation of message catalog for Sawfish Window-Manager


Commit MetaInfo

Revision47c4d4a98fc1599636a83ffc5c3926a08b9a73d5 (tree)
Time2012-04-06 04:50:05
AuthorChristopher Roy Bratusek <nano@tuxf...>
CommiterChristopher Roy Bratusek

Log Message

Merge branch 'edge-actions-1.9' into local-master

Conflicts:
ChangeLog

Change Summary

Incremental Difference

--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
1+2012-04-05 Christopher Roy Bratusek <nano@tuxfamily.org>
2+ * lisp/sawfish/wm/ext/expose.jl
3+ * lisp/sawfish/wm/edge/misc.jl: fixup expose action
4+
15 2012-03-26 Christopher Roy Bratusek <nano@tuxfamily.org>
26 * lisp/sawfish/wm/ext/match-window.jl
37 * lisp/sawfish/wm/ext/window-history.jl
--- a/lisp/sawfish/wm/edge/misc.jl
+++ b/lisp/sawfish/wm/edge/misc.jl
@@ -21,12 +21,12 @@
2121 (define-structure sawfish.wm.edge.misc
2222
2323 (export maximize-action
24- expose-action)
24+ expose-action)
2525
2626 (open rep
27- rep
2827 rep.system
2928 sawfish.wm.windows
29+ sawfish.wm.commands
3030 sawfish.wm.events
3131 sawfish.wm.state.maximize
3232 sawfish.wm.ext.expose)
--- a/lisp/sawfish/wm/ext/expose.jl
+++ b/lisp/sawfish/wm/ext/expose.jl
@@ -10,8 +10,9 @@
1010 (define-structure sawfish.wm.ext.expose
1111
1212 (export expose-windows
13- expose-windows-action
14- window-never-expose-p)
13+ expose-windows-vertically
14+ expose-windows-horizontally
15+ window-never-expose-p)
1516
1617 (open rep
1718 rep.data
@@ -41,7 +42,7 @@ an extra column should be used.")
4142 (defvar bottom-panel-height 0
4243 "This var will be considered when using tile commands offered by hqw-util")
4344
44- (define-command 'expose-windows-vertically
45+ (define (expose-windows-vertically)
4546 (lambda ()
4647 (let (
4748 (wins (workspace-windows current-workspace)))
@@ -49,7 +50,7 @@ an extra column should be used.")
4950 #:top-left-corner `(0 . ,top-panel-height)
5051 #:height-for-tile (- (screen-height) (+ top-panel-height bottom-panel-height))))))
5152
52- (define-command 'expose-windows-horizontally
53+ (define (expose-windows-horizontally)
5354 (lambda ()
5455 (let (
5556 (wins (workspace-windows current-workspace)))
@@ -72,9 +73,9 @@ an extra column should be used.")
7273 (or (filter-windows window-on-current-workspace-viewport-p)
7374 (filter-windows window-on-current-head-viewport-p))))
7475 (len (length windows))
75- (border-width (- (car (window-frame-dimensions (car windows)))
76+ (border-width (- (car (window-frame-dimensions (car windows)))
7677 (car (window-dimensions (car windows)))))
77- (border-height (- (cdr (window-frame-dimensions (car windows)))
78+ (border-height (- (cdr (window-frame-dimensions (car windows)))
7879 (cdr (window-dimensions (car windows)))))
7980 (width-step (ceiling (/ width-for-tile
8081 len)))
@@ -98,4 +99,4 @@ an extra column should be used.")
9899 ((null wins) )
99100 (move-resize-window-to w x y win-width win-height))))
100101
101- (define-command 'expose-windows expose-windows))
102+ (define-command 'expose-windows expose-windows))