Japanese translation of message catalog for Sawfish Window-Manager
Révision | 2a2a449f1d12fedfdedca9452b4e2e032bd1ae48 (tree) |
---|---|
l'heure | 2008-09-18 01:14:29 |
Auteur | Janek Kozicki <jkozicki@src....> |
Commiter | Janek Kozicki |
Re-expose tooltip options by Christopher Bratusek. Brings back tooltips-delay tooltips-timeout-delay tooltips-font tooltips-background-color and tooltips-foreground-color to sawfish-ui.
svn path=/branches/sawfish-experimental/; revision=4285
@@ -25,6 +25,11 @@ | ||
25 | 25 | * lisp/sawfish/wm/commands/viewport-linear.jl |
26 | 26 | * lisp/sawfish/wm/autoload.jl: Re-expose viewport bindings by |
27 | 27 | Christopher Bratusek. Return of the Viewport bindings. |
28 | + * lisp/sawfish/wm/ext/tooltips.jl | |
29 | + * lisp/sawfish/wm/util/compat.jl: Re-expose tooltip options by | |
30 | + Christopher Bratusek. Brings back tooltips-delay | |
31 | + tooltips-timeout-delay tooltips-font tooltips-background-color and | |
32 | + tooltips-foreground-color to sawfish-ui. | |
28 | 33 | |
29 | 34 | |
30 | 35 | 2008-08-29 Janek Kozicki <cosurgi@gmail.com> |
@@ -1,5 +1,5 @@ | ||
1 | 1 | ;; tooltips.jl -- display frame-part keymap descriptions |
2 | -;; $Id$ | |
2 | +;; $Id: tooltips.jl,v 1.33 2004/01/06 06:48:02 jsh Exp $ | |
3 | 3 | |
4 | 4 | ;; Copyright (C) 1999 John Harper <john@dcs.warwick.ac.uk> |
5 | 5 |
@@ -31,6 +31,7 @@ | ||
31 | 31 | rep.io.timers |
32 | 32 | sawfish.wm.commands |
33 | 33 | sawfish.wm.custom |
34 | + sawfish.wm.colors | |
34 | 35 | sawfish.wm.misc |
35 | 36 | sawfish.wm.windows |
36 | 37 | sawfish.wm.frames |
@@ -59,20 +60,35 @@ | ||
59 | 60 | :depends tooltips-enabled |
60 | 61 | :group (misc tooltips)) |
61 | 62 | |
62 | - (defvar tooltips-delay 500 | |
63 | - "Number of milliseconds before displaying tooltips.") | |
63 | + (defcustom tooltips-delay 500 | |
64 | + "Number of milliseconds before displaying tooltips." | |
65 | + :type number | |
66 | + :depends tooltips-enabled | |
67 | + :group (misc tooltips)) | |
64 | 68 | |
65 | - (defvar tooltips-timeout-delay 5000 | |
66 | - "Number of milliseconds before removing tooltips.") | |
69 | + (defcustom tooltips-timeout-delay 5000 | |
70 | + "Number of milliseconds before removing tooltips." | |
71 | + :type number | |
72 | + :depends tooltips-enabled | |
73 | + :group (misc tooltips)) | |
67 | 74 | |
68 | - (defvar tooltips-font nil | |
69 | - "Font used to display tooltips, or nil for default.") | |
75 | + (defcustom tooltips-font default-font | |
76 | + "Font used to display tooltips, or nil for default." | |
77 | + :type font | |
78 | + :depends tooltips-enabled | |
79 | + :group (misc tooltips)) | |
70 | 80 | |
71 | - (defvar tooltips-background-color "grey85" | |
72 | - "Color used for the tooltips background") | |
81 | + (defcustom tooltips-background-color "grey85" | |
82 | + "Color used for the tooltips background" | |
83 | + :type color | |
84 | + :depends tooltips-enabled | |
85 | + :group (misc tooltips)) | |
73 | 86 | |
74 | - (defvar tooltips-foreground-color "black" | |
75 | - "Color used for the tooltips foreground") | |
87 | + (defcustom tooltips-foreground-color "black" | |
88 | + "Color used for the tooltips foreground" | |
89 | + :type color | |
90 | + :depends tooltips-enabled | |
91 | + :group (misc tooltips)) | |
76 | 92 | |
77 | 93 | ;;; displaying tooltips |
78 | 94 |
@@ -112,9 +112,6 @@ | ||
112 | 112 | warp-to-selected-windows menus-include-shortcuts |
113 | 113 | configure-auto-gravity configure-ignore-stacking-requests |
114 | 114 | beos-window-menu-simplifies customize-show-symbols |
115 | - tooltips-timeout-enabled tooltips-delay | |
116 | - tooltips-timeout-delay tooltips-font | |
117 | - tooltips-foreground-color tooltips-background-color | |
118 | 115 | move-snap-mode move-snap-ignored-windows |
119 | 116 | move-resize-inhibit-configure move-snap-edges |
120 | 117 | raise-windows-when-unshaded persistent-group-ids |