• 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

Revision36a0f3bb798bd62b4687681f96ceb29542756dda (tree)
Time2012-04-06 05:24:32
AuthorChristopher Roy Bratusek <nano@tuxf...>
CommiterChristopher Roy Bratusek

Log Message

Merge branch 'misc-1.9' into local-master

Conflicts:
ChangeLog

Change Summary

Incremental Difference

--- a/ChangeLog
+++ b/ChangeLog
@@ -26,6 +26,8 @@
2626 * scripts/sawfish-about.jl.in: update copyright notice // show
2727 codename in the about-dialog
2828
29+ * lisp/sawfish/cfg/shell.jl: re-align buttons
30+
2931 2012-03-26 Christopher Roy Bratusek <nano@tuxfamily.org>
3032 * lisp/sawfish/wm/ext/match-window.jl
3133 * lisp/sawfish/wm/ext/window-history.jl
--- a/lisp/sawfish/cfg/shell.jl
+++ b/lisp/sawfish/cfg/shell.jl
@@ -57,13 +57,15 @@
5757
5858 (define (initialize-shell)
5959 (let ((vbox (gtk-vbox-new nil box-spacing))
60- (hbox (gtk-hbutton-box-new))
60+ (hbox-a (gtk-hbutton-box-new))
61+ (hbox-b (gtk-hbutton-box-new))
6162 (s-scroller (gtk-scrolled-window-new))
6263 root-container)
6364
6465 (setq main-window (gtk-window-new 'toplevel))
6566
66- (gtk-box-set-homogeneous hbox nil)
67+ (gtk-box-set-homogeneous hbox-a nil)
68+ (gtk-box-set-homogeneous hbox-b nil)
6769 (gtk-window-set-resizable main-window t)
6870 (gtk-window-set-icon-name main-window "sawfish-config")
6971 (gtk-window-set-default-size main-window 550 400)
@@ -120,9 +122,13 @@
120122
121123 (g-signal-connect main-window "delete_event" on-quit)
122124
123- (gtk-box-set-spacing hbox button-box-spacing)
124- (gtk-button-box-set-layout hbox 'center)
125- (gtk-box-pack-end vbox hbox)
125+ (gtk-box-set-spacing hbox-a button-box-spacing)
126+ (gtk-button-box-set-layout hbox-a 'center)
127+ (gtk-box-pack-end vbox hbox-a)
128+
129+ (gtk-box-set-spacing hbox-b button-box-spacing)
130+ (gtk-button-box-set-layout hbox-b 'center)
131+ (gtk-box-pack-end vbox hbox-b)
126132
127133 (g-signal-connect ok-widget "clicked" on-ok)
128134 (g-signal-connect revert-widget "clicked" on-revert)
@@ -154,14 +160,14 @@
154160 (copy-file file (concat "~/.sawfish/themes/" filex))
155161 (sawfish-config-display-info "Only tar-archives can be installed at the moment." nil)))))
156162
157- (gtk-container-add hbox wiki-button)
158- (gtk-container-add hbox install-theme-label)
159- (gtk-container-add hbox install-theme-button)
160- (gtk-container-add hbox doc-button)
161- (gtk-container-add hbox edit-button)
162- (gtk-container-add hbox about-button)
163- (gtk-container-add hbox revert-widget)
164- (gtk-container-add hbox ok-widget)
163+ (gtk-container-add hbox-a wiki-button)
164+ (gtk-container-add hbox-b install-theme-label)
165+ (gtk-container-add hbox-b install-theme-button)
166+ (gtk-container-add hbox-b doc-button)
167+ (gtk-container-add hbox-b edit-button)
168+ (gtk-container-add hbox-a about-button)
169+ (gtk-container-add hbox-a revert-widget)
170+ (gtk-container-add hbox-a ok-widget)
165171
166172 (gtk-container-add root-container vbox)
167173 (gtk-widget-show-all main-window)
--- a/lisp/sawfish/wm/tabs/tabgroup.jl
+++ b/lisp/sawfish/wm/tabs/tabgroup.jl
@@ -276,9 +276,11 @@ sticky, unsticky, fixed-position."
276276 (setq release-window t)
277277 (tab-delete-window-from-tab-groups w)
278278 (setq release-window nil))
279+ (if (window-get win 'iconified) (uniconify-window win))
280+ (if (window-get win 'shaded) (unshade-window win))
279281 (setq tab-refresh-lock nil)
282+ (if (window-get w 'iconified) (uniconify-window w))
280283 (if (window-get w 'shaded) (unshade-window w))
281- (if (window-get win 'shaded) (unshade-window win))
282284 (window-put w 'frame-style group-frame-style)
283285 (window-put w 'type group-frame-type)
284286 (window-put w 'focus-mode group-frame-focus-mode)