Japanese translation of message catalog for Sawfish Window-Manager
Revision | 47c4d4a98fc1599636a83ffc5c3926a08b9a73d5 (tree) |
---|---|
Time | 2012-04-06 04:50:05 |
Author | Christopher Roy Bratusek <nano@tuxf...> |
Commiter | Christopher Roy Bratusek |
Merge branch 'edge-actions-1.9' into local-master
Conflicts:
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 | + | |
1 | 5 | 2012-03-26 Christopher Roy Bratusek <nano@tuxfamily.org> |
2 | 6 | * lisp/sawfish/wm/ext/match-window.jl |
3 | 7 | * lisp/sawfish/wm/ext/window-history.jl |
@@ -21,12 +21,12 @@ | ||
21 | 21 | (define-structure sawfish.wm.edge.misc |
22 | 22 | |
23 | 23 | (export maximize-action |
24 | - expose-action) | |
24 | + expose-action) | |
25 | 25 | |
26 | 26 | (open rep |
27 | - rep | |
28 | 27 | rep.system |
29 | 28 | sawfish.wm.windows |
29 | + sawfish.wm.commands | |
30 | 30 | sawfish.wm.events |
31 | 31 | sawfish.wm.state.maximize |
32 | 32 | sawfish.wm.ext.expose) |
@@ -10,8 +10,9 @@ | ||
10 | 10 | (define-structure sawfish.wm.ext.expose |
11 | 11 | |
12 | 12 | (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) | |
15 | 16 | |
16 | 17 | (open rep |
17 | 18 | rep.data |
@@ -41,7 +42,7 @@ an extra column should be used.") | ||
41 | 42 | (defvar bottom-panel-height 0 |
42 | 43 | "This var will be considered when using tile commands offered by hqw-util") |
43 | 44 | |
44 | - (define-command 'expose-windows-vertically | |
45 | + (define (expose-windows-vertically) | |
45 | 46 | (lambda () |
46 | 47 | (let ( |
47 | 48 | (wins (workspace-windows current-workspace))) |
@@ -49,7 +50,7 @@ an extra column should be used.") | ||
49 | 50 | #:top-left-corner `(0 . ,top-panel-height) |
50 | 51 | #:height-for-tile (- (screen-height) (+ top-panel-height bottom-panel-height)))))) |
51 | 52 | |
52 | - (define-command 'expose-windows-horizontally | |
53 | + (define (expose-windows-horizontally) | |
53 | 54 | (lambda () |
54 | 55 | (let ( |
55 | 56 | (wins (workspace-windows current-workspace))) |
@@ -72,9 +73,9 @@ an extra column should be used.") | ||
72 | 73 | (or (filter-windows window-on-current-workspace-viewport-p) |
73 | 74 | (filter-windows window-on-current-head-viewport-p)))) |
74 | 75 | (len (length windows)) |
75 | - (border-width (- (car (window-frame-dimensions (car windows))) | |
76 | + (border-width (- (car (window-frame-dimensions (car windows))) | |
76 | 77 | (car (window-dimensions (car windows))))) |
77 | - (border-height (- (cdr (window-frame-dimensions (car windows))) | |
78 | + (border-height (- (cdr (window-frame-dimensions (car windows))) | |
78 | 79 | (cdr (window-dimensions (car windows))))) |
79 | 80 | (width-step (ceiling (/ width-for-tile |
80 | 81 | len))) |
@@ -98,4 +99,4 @@ an extra column should be used.") | ||
98 | 99 | ((null wins) ) |
99 | 100 | (move-resize-window-to w x y win-width win-height)))) |
100 | 101 | |
101 | - (define-command 'expose-windows expose-windows)) | |
102 | + (define-command 'expose-windows expose-windows)) |