Japanese translation of message catalog for Sawfish Window-Manager
Revisão | 269858896c525db67e6b4a35be523563debfa417 (tree) |
---|---|
Hora | 2000-09-29 00:19:02 |
Autor | john <john> |
Commiter | john |
merged bug fixes from HEAD for 0.31.1
@@ -1,11 +1,17 @@ | ||
1 | +2000-09-28 John Harper <john@dcs.warwick.ac.uk> | |
2 | + | |
3 | + * configure.in: version 0.31.1 | |
4 | + | |
5 | + * po/uk.po, po/sv.po, po/pt_BR.po, po/no.po, po/de.po, | |
6 | + po/da.po: updated from cvs.gnome.org (uk: Yuri Syrota, sv: | |
7 | + Johan Dahlin, pt_BR: Rui Miguel Silva Seabra, no: Kjartan | |
8 | + Maraas, de: Christian Meyer, da: Kenneth Christiansen) | |
9 | + | |
1 | 10 | 2000-09-25 John Harper <john@dcs.warwick.ac.uk> |
2 | 11 | |
3 | 12 | * po/fr.po: update from Christian Marillat |
4 | 13 | <marillat.christian@wanadoo.fr> |
5 | 14 | |
6 | - * po/sawfish-xgettext: grok how :tooltip's are embedded into | |
7 | - doc strings of customization options | |
8 | - | |
9 | 15 | 2000-09-20 John Harper <john@dcs.warwick.ac.uk> |
10 | 16 | |
11 | 17 | * configure.in: version 0.31 |
@@ -25,7 +25,7 @@ AC_CONFIG_HEADER(config.h) | ||
25 | 25 | AC_CONFIG_AUX_DIR(etc) |
26 | 26 | |
27 | 27 | dnl Release versioning info |
28 | -version="0.31" | |
28 | +version="0.31.1" | |
29 | 29 | |
30 | 30 | output_files="src/Makefile lisp/Makefile scripts/Makefile themes/Makefile\ |
31 | 31 | lisp/sawfish/ui/Makefile lisp/sawfish/gtk/Makefile sounds/Makefile\ |
@@ -1,41 +1,8 @@ | ||
1 | -2000-09-26 John Harper <john@dcs.warwick.ac.uk> | |
2 | - | |
3 | - * sawfish/wm/commands/x-cycle.jl: don't pass EVENT parameter | |
4 | - between commands. Export cycle-next function | |
5 | - | |
6 | - * sawfish/wm/commands/x-cycle.jl: the reverse key is now used | |
7 | - to cycle one step `backwards'. The cycle-windows function now | |
8 | - has a keyword arg STEP defining the direction (and magnitude) | |
9 | - of cycle steps | |
10 | - | |
11 | - * sawfish/wm/util/decode-events.jl (modifier-keysym-p): new | |
12 | - function | |
13 | - | |
14 | - * sawfish/wm/commands/x-cycle.jl (cycle-windows): add the | |
15 | - modifiers of the invoking event to the cycle-reverse-event when | |
16 | - creating its binding | |
17 | - | |
18 | - * sawfish/wm/util/decode-events.jl (decode-event): use a `do' | |
19 | - statement instead of while and setq | |
20 | - | |
21 | 1 | 2000-09-25 John Harper <john@dcs.warwick.ac.uk> |
22 | 2 | |
23 | - * sawfish/wm/commands/x-cycle.jl (cycle-reverse-event): new | |
24 | - option, the name of the event that causes cycling to reverse | |
25 | - direction. (My rationale is that this is less fiddly to use | |
26 | - than, e.g., making M-S-TAB go backwards, and also is cleaner to | |
27 | - implement) | |
28 | - | |
29 | 3 | * sawfish/wm/misc.jl (current-head): fall back to checking the |
30 | 4 | pointer position if no head is found for the window |
31 | 5 | |
32 | - * sawfish/wm/windows.jl, sawfish/wm/frames.jl, | |
33 | - sawfish/wm/ext/shade-hover.jl: added some :tooltip's | |
34 | - | |
35 | - * sawfish/wm/custom.jl (defcustom): new keyword `:tooltip | |
36 | - STRING'. Embed it into the doc string (following a `\n\n' | |
37 | - marker) | |
38 | - | |
39 | 6 | 2000-09-23 John Harper <john@dcs.warwick.ac.uk> |
40 | 7 | |
41 | 8 | * sawfish/wm/ext/3d-hack.jl: export 3d-make-cube and |
@@ -1,9 +1,3 @@ | ||
1 | -2000-09-25 John Harper <john@dcs.warwick.ac.uk> | |
2 | - | |
3 | - * widget.jl (tooltip-split, tooltip-set): new functions | |
4 | - (make-widget): if the widget advertised that it takes a doc | |
5 | - string, then handle any tooltip embedded in that string | |
6 | - | |
7 | 1 | 2000-09-20 John Harper <john@dcs.warwick.ac.uk> |
8 | 2 | |
9 | 3 | * version 0.31 |
@@ -36,8 +36,6 @@ | ||
36 | 36 | widget-valid-p |
37 | 37 | call-callback |
38 | 38 | make-signal-callback |
39 | - tooltip-split | |
40 | - tooltip-set | |
41 | 39 | set-widget-enabled |
42 | 40 | enable-widget |
43 | 41 | disable-widget |
@@ -46,8 +44,7 @@ | ||
46 | 44 | |
47 | 45 | ((open rep |
48 | 46 | gui.gtk |
49 | - rep.system | |
50 | - rep.regexp) | |
47 | + rep.system) | |
51 | 48 | (access rep.structures)) |
52 | 49 | |
53 | 50 | (defconst box-spacing 4) |
@@ -131,11 +128,7 @@ | ||
131 | 128 | (widget-type-constructor 'unknown)))) |
132 | 129 | (if maker |
133 | 130 | (if (and doc-string (widget-accepts-doc-string-p type)) |
134 | - (let* ((split (tooltip-split doc-string)) | |
135 | - (widget (apply maker callback (car split) (cdr cell)))) | |
136 | - (when (cdr split) | |
137 | - (tooltip-set (widget-gtk-widget widget) (cdr split))) | |
138 | - widget) | |
131 | + (apply maker callback doc-string (cdr cell)) | |
139 | 132 | (apply maker callback (cdr cell))) |
140 | 133 | (error "No widget of type %s" type)))) |
141 | 134 |
@@ -166,23 +159,6 @@ | ||
166 | 159 | (define (make-signal-callback fun) (lambda () (call-callback fun))) |
167 | 160 | |
168 | 161 | |
169 | -;;; tooltip support | |
170 | - | |
171 | - (define tooltips) | |
172 | - | |
173 | - ;; returns (LABEL-STRING . TOOLTIP-STRING-OR-NIL) | |
174 | - (define (tooltip-split doc) | |
175 | - (if (string-match "\n\n\\s*" doc) | |
176 | - (cons (substring doc 0 (match-start)) | |
177 | - (substring doc (match-end))) | |
178 | - (cons doc nil))) | |
179 | - | |
180 | - (define (tooltip-set widget tip-string #!optional (key "Foo")) | |
181 | - (unless tooltips | |
182 | - (setq tooltips (gtk-tooltips-new))) | |
183 | - (gtk-tooltips-set-tip tooltips widget tip-string key)) | |
184 | - | |
185 | - | |
186 | 162 | ;;; Predefined widget constructors |
187 | 163 | |
188 | 164 | (define (make-choice-item changed-callback . options) |
@@ -1,14 +1,3 @@ | ||
1 | -2000-09-25 John Harper <john@dcs.warwick.ac.uk> | |
2 | - | |
3 | - * widgets/keymap.jl (make-keymap:binding-item): add a `Key:' | |
4 | - label to the event widget | |
5 | - | |
6 | - * widgets/event.jl (make-event-item): don't prefix the widget | |
7 | - with a `Key:' label, it's more useful without it | |
8 | - | |
9 | - * layout.jl (document-slot): handle adding any tooltip embedded | |
10 | - in the slots documentation string | |
11 | - | |
12 | 1 | 2000-09-20 John Harper <john@dcs.warwick.ac.uk> |
13 | 2 | |
14 | 3 | * version 0.31 |
@@ -98,26 +98,18 @@ | ||
98 | 98 | (let ((doc (slot-doc slot))) |
99 | 99 | (if (null doc) |
100 | 100 | (slot-gtk-widget slot) |
101 | + (setq doc (remove-newlines doc)) | |
101 | 102 | (let ((hbox (gtk-hbox-new nil box-spacing)) |
102 | - (split (tooltip-split doc))) | |
103 | - (setq doc (remove-newlines (car split))) | |
104 | - (let ((break (if (string-match "\\\\w" doc) | |
105 | - (match-start) | |
106 | - -2))) | |
107 | - (when (> break 0) | |
108 | - (gtk-box-pack-start hbox (make-label (substring doc 0 break)))) | |
109 | - (gtk-box-pack-start hbox (slot-gtk-widget slot)) | |
110 | - (when (< break (length doc)) | |
111 | - (gtk-box-pack-start | |
112 | - hbox (make-label (substring doc (+ break 2))))) | |
113 | - (when (cdr split) | |
114 | - ;; tooltips need a window to receive events.. | |
115 | - (let ((ebox (gtk-event-box-new))) | |
116 | - (gtk-container-add ebox hbox) | |
117 | - (setq hbox ebox)) | |
118 | - (tooltip-set hbox (cdr split))) | |
119 | - (gtk-widget-show-all hbox) | |
120 | - hbox))))) | |
103 | + (break (if (string-match "\\\\w" doc) | |
104 | + (match-start) | |
105 | + -2))) | |
106 | + (when (> break 0) | |
107 | + (gtk-box-pack-start hbox (make-label (substring doc 0 break)))) | |
108 | + (gtk-box-pack-start hbox (slot-gtk-widget slot)) | |
109 | + (when (< break (length doc)) | |
110 | + (gtk-box-pack-start hbox (make-label (substring doc (+ break 2))))) | |
111 | + (gtk-widget-show-all hbox) | |
112 | + hbox)))) | |
121 | 113 | |
122 | 114 | (define (remove-newlines string) |
123 | 115 | (let loop ((point 0) |
@@ -34,6 +34,7 @@ | ||
34 | 34 | (grab (gtk-button-new-with-label (_ "Grab..."))) |
35 | 35 | (hbox (gtk-hbox-new nil box-spacing))) |
36 | 36 | |
37 | + (gtk-box-pack-start hbox (gtk-label-new (_ "Key:"))) | |
37 | 38 | (gtk-container-add hbox entry) |
38 | 39 | (gtk-box-pack-end hbox grab) |
39 | 40 | (gtk-widget-show-all hbox) |
@@ -37,7 +37,8 @@ | ||
37 | 37 | (define (make-keymap-item changed-callback) |
38 | 38 | |
39 | 39 | (define (print x) |
40 | - (let ((command (car x))) | |
40 | + (let ((command (car x)) | |
41 | + (key (cdr x))) | |
41 | 42 | (list (cdr x) |
42 | 43 | (if (consp command) |
43 | 44 | (concat (beautify-symbol-name (command-name command)) |
@@ -81,8 +82,7 @@ | ||
81 | 82 | ;;; widget for editing individual bindings |
82 | 83 | |
83 | 84 | (define (make-keymap:binding-item changed-callback) |
84 | - (make-widget `(pair command (labelled ,(_ "Key:") event) t t) | |
85 | - changed-callback)) | |
85 | + (make-widget '(pair command event t t) changed-callback)) | |
86 | 86 | |
87 | 87 | (define-widget-type 'keymap:binding make-keymap:binding-item) |
88 | 88 |
@@ -68,8 +68,7 @@ | ||
68 | 68 | (export cycle-windows |
69 | 69 | cycle-group |
70 | 70 | cycle-prefix |
71 | - cycle-class | |
72 | - cycle-next) | |
71 | + cycle-class) | |
73 | 72 | |
74 | 73 | (open rep |
75 | 74 | rep.system |
@@ -98,13 +97,6 @@ | ||
98 | 97 | ;;###autoload (defgroup cycle "Window Cycling" :group focus :require sawfish.wm.commands.x-cycle) |
99 | 98 | (defgroup cycle "Window Cycling" :group focus :require sawfish.wm.commands.x-cycle) |
100 | 99 | |
101 | - (defcustom cycle-reverse-event "SPC" | |
102 | - "Reversal key: \\w" | |
103 | - :tooltip "The key used to cycle in the reverse direction. Has the active \ | |
104 | -modifiers added to it." | |
105 | - :group (focus cycle) | |
106 | - :type event) | |
107 | - | |
108 | 100 | (defcustom cycle-show-window-names t |
109 | 101 | "Display window names while cycling through windows." |
110 | 102 | :group (focus cycle) |
@@ -152,34 +144,14 @@ modifiers added to it." | ||
152 | 144 | |
153 | 145 | ;; variables |
154 | 146 | |
155 | - ;; the current window | |
156 | 147 | (define x-cycle-current (make-fluid)) |
157 | - | |
158 | - ;; the original stacking order | |
159 | 148 | (define x-cycle-stacking (make-fluid)) |
160 | - | |
161 | - ;; the list of windows being cycled through | |
162 | 149 | (define x-cycle-windows (make-fluid)) |
163 | 150 | |
164 | 151 | |
165 | 152 | ;;; code |
166 | 153 | |
167 | - (define (forwards lst elt count) | |
168 | - (let ((total (length lst)) | |
169 | - (current (let loop ((rest lst) (i 0)) | |
170 | - (cond ((null rest) 0) | |
171 | - ((eq (car rest) elt) i) | |
172 | - (t (loop (cdr rest) (1+ i))))))) | |
173 | - (nth (mod (+ current count) total) lst))) | |
174 | - | |
175 | - (define (merge-unsorted x y) | |
176 | - (let loop ((rest y) | |
177 | - (out x)) | |
178 | - (cond ((null rest) out) | |
179 | - ((memq (car rest) out) (loop (cdr rest) out)) | |
180 | - (t (loop (cdr rest) (cons (car rest) out)))))) | |
181 | - | |
182 | - (define ((cycle-next count)) | |
154 | + (define (next) | |
183 | 155 | (let ((win (window-order (if cycle-all-workspaces |
184 | 156 | nil |
185 | 157 | current-workspace) |
@@ -205,9 +177,9 @@ modifiers added to it." | ||
205 | 177 | (when (fluid x-cycle-stacking) |
206 | 178 | (restack-windows (fluid x-cycle-stacking)) |
207 | 179 | (fluid-set x-cycle-stacking nil)) |
208 | - (if (fluid x-cycle-current) | |
209 | - (setq win (forwards win (fluid x-cycle-current) count)) | |
210 | - (setq win (car win))) | |
180 | + (when (fluid x-cycle-current) | |
181 | + (setq win (or (cdr (memq (fluid x-cycle-current) win)) win))) | |
182 | + (setq win (car win)) | |
211 | 183 | (fluid-set x-cycle-current win) |
212 | 184 | (when (not (window-get win 'sticky)) |
213 | 185 | (select-workspace (nearest-workspace-with-window |
@@ -230,14 +202,13 @@ modifiers added to it." | ||
230 | 202 | |
231 | 203 | (define (x-cycle-exit) (throw 'x-cycle-exit t)) |
232 | 204 | |
233 | - (define (cycle-windows #!optional windows (step +1)) | |
205 | + (define (cycle-windows event #!optional windows) | |
234 | 206 | "Cycle through all windows in order of recent selections." |
235 | 207 | (let ((tail-command nil)) |
236 | 208 | (let-fluids ((x-cycle-current nil) |
237 | 209 | (x-cycle-stacking nil) |
238 | 210 | (x-cycle-windows (or windows t))) |
239 | - (let* ((event (current-event)) | |
240 | - (decoded (decode-event event)) | |
211 | + (let* ((decoded (decode-event event)) | |
241 | 212 | (modifier-keys (apply append (mapcar modifier->keysyms |
242 | 213 | (nth 1 decoded)))) |
243 | 214 | (eval-modifier-events t) |
@@ -264,8 +235,7 @@ modifiers added to it." | ||
264 | 235 | (unbound-key-hook |
265 | 236 | (list (lambda () |
266 | 237 | (let ((ev (decode-event (current-event)))) |
267 | - (unless (or (memq 'release (nth 1 ev)) | |
268 | - (modifier-keysym-p (nth 2 ev))) | |
238 | + (unless (memq 'release (nth 1 ev)) | |
269 | 239 | ;; want to search the usual keymaps |
270 | 240 | (setq override-keymap nil) |
271 | 241 | (setq tail-command (lookup-event-binding |
@@ -282,21 +252,7 @@ modifiers added to it." | ||
282 | 252 | this-command)) |
283 | 253 | |
284 | 254 | ;; Use the event that invoked us to contruct the keymap |
285 | - (bind-keys override-keymap event (cycle-next step)) | |
286 | - | |
287 | - ;; add the reverse key | |
288 | - (when cycle-reverse-event | |
289 | - (condition-case nil | |
290 | - ;; merge the modifiers of the cycle-reverse-event | |
291 | - ;; and the decoded current-event | |
292 | - (let* ((in (decode-event (lookup-event cycle-reverse-event))) | |
293 | - (out (encode-event (list (car in) | |
294 | - (merge-unsorted (cadr in) | |
295 | - (cadr decoded)) | |
296 | - (caddr in))))) | |
297 | - (bind-keys override-keymap out (cycle-next (- step)))) | |
298 | - (error nil))) | |
299 | - | |
255 | + (bind-keys override-keymap event next) | |
300 | 256 | (mapc (lambda (k) |
301 | 257 | (bind-keys override-keymap |
302 | 258 | (encode-event `(key (release any) ,k)) x-cycle-exit)) |
@@ -308,7 +264,7 @@ modifiers added to it." | ||
308 | 264 | (progn |
309 | 265 | (catch 'x-cycle-exit |
310 | 266 | ;; do the first step |
311 | - ((cycle-next step)) | |
267 | + (next) | |
312 | 268 | (recursive-edit)) |
313 | 269 | (when (fluid x-cycle-current) |
314 | 270 | (display-window (fluid x-cycle-current)))) |
@@ -324,13 +280,13 @@ modifiers added to it." | ||
324 | 280 | |
325 | 281 | ;;; variants |
326 | 282 | |
327 | - (define (cycle-group w #!optional (step +1)) | |
283 | + (define (cycle-group event w) | |
328 | 284 | "Cycle through all windows in the same group as the current window." |
329 | 285 | (let ((windows (windows-in-group w))) |
330 | 286 | (when windows |
331 | - (cycle-windows windows step)))) | |
287 | + (cycle-windows event windows)))) | |
332 | 288 | |
333 | - (define (cycle-prefix w #!optional (step +1)) | |
289 | + (define (cycle-prefix event w) | |
334 | 290 | "Cycle through all windows whose names match the leading colon-delimited |
335 | 291 | prefix of the current window." |
336 | 292 | (when (string-match "^([^:]+)\\s*:" (window-name w)) |
@@ -340,18 +296,18 @@ prefix of the current window." | ||
340 | 296 | (lambda (x) |
341 | 297 | (string-match re (window-name x)))))) |
342 | 298 | (when windows |
343 | - (cycle-windows windows step))))) | |
299 | + (cycle-windows event windows))))) | |
344 | 300 | |
345 | - (define (cycle-class w #!optional (step +1)) | |
301 | + (define (cycle-class event w) | |
346 | 302 | "Cycle through all windows with the same class as the current window." |
347 | 303 | (let ((class (window-class w))) |
348 | 304 | (let ((windows (filter-windows (lambda (x) |
349 | 305 | (equal (window-class x) class))))) |
350 | 306 | (when windows |
351 | - (cycle-windows windows step))))) | |
307 | + (cycle-windows event windows))))) | |
352 | 308 | |
353 | 309 | ;;###autoload |
354 | - (define-command 'cycle-windows cycle-windows) | |
355 | - (define-command 'cycle-group cycle-group #:spec "%W") | |
356 | - (define-command 'cycle-prefix cycle-prefix #:spec "%W") | |
357 | - (define-command 'cycle-class cycle-class #:spec "%W")) | |
310 | + (define-command 'cycle-windows cycle-windows #:spec "e") | |
311 | + (define-command 'cycle-group cycle-group #:spec "e\n%W") | |
312 | + (define-command 'cycle-prefix cycle-prefix #:spec "e\n%W") | |
313 | + (define-command 'cycle-class cycle-class #:spec "e\n%W")) |
@@ -138,13 +138,9 @@ custom-set and custom-get may be used to translate data types to the | ||
138 | 138 | string representation required by some widget types. custom-widget may |
139 | 139 | construct the widget definition passed to the ui backend." |
140 | 140 | |
141 | - (let* ((cell (memq ':tooltip keys)) | |
142 | - (tooltip (cadr cell))) | |
143 | - (when cell | |
144 | - (setq keys (delq (car cell) (delq (cadr cell) keys)))) | |
145 | - `(progn | |
146 | - (defvar ,symbol ,value ,(if tooltip (concat doc "\n\n" tooltip) doc)) | |
147 | - (custom-declare-variable ',symbol ,(custom-quote-keys keys))))) | |
141 | + `(progn | |
142 | + (defvar ,symbol ,value ,doc) | |
143 | + (custom-declare-variable ',symbol ,(custom-quote-keys keys)))) | |
148 | 144 | |
149 | 145 | (defmacro defgroup (symbol doc #!rest keys) |
150 | 146 | "Declare a new custom group called SYMBOL, with English name DOC. The |
@@ -38,8 +38,8 @@ | ||
38 | 38 | :require sawfish.wm.ext.shade-hover) |
39 | 39 | |
40 | 40 | (defcustom shade-hover-mode nil |
41 | - "Enable shade-hover mode." | |
42 | - :tooltip "(Temporarily unshades windows while the mouse pointer is over them.)" | |
41 | + "Enable shade-hover mode. | |
42 | +(Temporarily unshade windows while pointer is over them.)" | |
43 | 43 | :group (focus shade-hover) |
44 | 44 | :type boolean |
45 | 45 | :user-level novice |
@@ -170,9 +170,8 @@ that overrides settings set elsewhere.") | ||
170 | 170 | (shaded-transient . shaped-transient) |
171 | 171 | (icon . shaped-transient) |
172 | 172 | (dock . icon)) |
173 | - "Frame type fallbacks." | |
174 | - :tooltip "Associate frame types with type to try if the theme doesn't \ | |
175 | -implement the requested type." | |
173 | + "Associate frame types with type to try if the theme doesn't implement the | |
174 | +requested type." | |
176 | 175 | :type (alist ((symbol default shaped transient |
177 | 176 | shaped-transient icon doc) "From") |
178 | 177 | ((symbol default shaped transient |
@@ -236,7 +235,7 @@ deciding which frame type to ask a theme to generate.") | ||
236 | 235 | :after-set (lambda () (after-setting-frame-option))) |
237 | 236 | |
238 | 237 | (defcustom default-bevel-percent nil |
239 | - "Bevel intensity: \\wpercent." | |
238 | + "Intensity of bevels: \\wpercent." | |
240 | 239 | :group appearance |
241 | 240 | :type (number 0 100) |
242 | 241 | :user-level expert |
@@ -25,7 +25,6 @@ | ||
25 | 25 | encode-event |
26 | 26 | string->keysym |
27 | 27 | modifier->keysyms |
28 | - modifier-keysym-p | |
29 | 28 | should-grab-button-event-p) |
30 | 29 | |
31 | 30 | (open rep |
@@ -41,14 +40,15 @@ cell). The symbolic description has the form `(TYPE MODIFIER-LIST ACTION)'." | ||
41 | 40 | |
42 | 41 | (decode-mods |
43 | 42 | (lambda () |
44 | - (let ((out '())) | |
45 | - (do ((i 0 (1+ i))) | |
46 | - ((= i 13)) | |
43 | + (let (i out) | |
44 | + (setq i 0) | |
45 | + (while (< i 13) | |
47 | 46 | (when (not (zerop (logand mods (lsh 1 i)))) |
48 | 47 | (setq out (cons (aref [shift lock control mod-1 mod-2 |
49 | 48 | mod-3 mod-4 mod-5 button-1 |
50 | 49 | button-2 button-3 button-4 |
51 | - button-5] i) out)))) | |
50 | + button-5] i) out))) | |
51 | + (setq i (1+ i))) | |
52 | 52 | (when (not (zerop (logand mods (lsh 1 20)))) |
53 | 53 | (setq out (cons 'meta out))) |
54 | 54 | (when (not (zerop (logand mods (lsh 1 21)))) |
@@ -125,14 +125,6 @@ representing the X11 keysyms that may generate the modifier." | ||
125 | 125 | '(Control_L Control_R)) |
126 | 126 | (t (error "Unknown modifier: %s" modifier)))) |
127 | 127 | |
128 | - (define (modifier-keysym-p keysym) | |
129 | - "Returns true if KEYSYM is a modifier keysym." | |
130 | - (or (memq keysym '(Shift_L Shift_R Control_L Control_R)) | |
131 | - (member (symbol-name keysym) alt-keysyms) | |
132 | - (member (symbol-name keysym) meta-keysyms) | |
133 | - (member (symbol-name keysym) hyper-keysyms) | |
134 | - (member (symbol-name keysym) super-keysyms))) | |
135 | - | |
136 | 128 | (define (should-grab-button-event-p event keymap) |
137 | 129 | (let* ((decoded (decode-event event)) |
138 | 130 | (variants (mapcar (lambda (action) |
@@ -60,23 +60,20 @@ | ||
60 | 60 | |
61 | 61 | (defcustom ignore-window-input-hint t |
62 | 62 | "Give focus to windows even when they haven't asked for it." |
63 | - :tooltip "Windows should set the `accepts input' hint in their WM_HINTS | |
64 | -property to show if they require the focus or not. Many windows don't do | |
65 | -this, hence this option." | |
66 | 63 | :type boolean |
67 | 64 | :user-level expert |
68 | 65 | :group focus) |
69 | 66 | |
70 | 67 | (defcustom warp-to-window-x-offset -1 |
71 | - "Offset (%) from left window edge when warping pointer." | |
72 | - :tooltip "A negative number means outside the left window edge." | |
68 | + "Offset (%) from left window edge when warping pointer. | |
69 | +A negative number means outside the left window edge." | |
73 | 70 | :type (number -65536 65535) |
74 | 71 | :user-level expert |
75 | 72 | :group focus) |
76 | 73 | |
77 | 74 | (defcustom warp-to-window-y-offset -1 |
78 | - "Offset (%) from top window edge when warping pointer." | |
79 | - :tooltip "A negative number means outside the top window edge." | |
75 | + "Offset (%) from top window edge when warping pointer. | |
76 | +A negative number means outside the top window edge." | |
80 | 77 | :type (number -65536 65535) |
81 | 78 | :user-level expert |
82 | 79 | :group focus) |
@@ -88,8 +85,8 @@ this, hence this option." | ||
88 | 85 | "When non-nil, any unspecified windows are avoided by default.") |
89 | 86 | |
90 | 87 | (defcustom uniquify-name-format "%s [%d]" |
91 | - "Format to create unique window names." | |
92 | - :tooltip "Has two arguments (NAME INDEX) applied to it." | |
88 | + "Format to create unique window names. Has two arguments (NAME INDEX) | |
89 | +applied to it." | |
93 | 90 | :type string |
94 | 91 | :user-level expert |
95 | 92 | :group misc) |
@@ -6,6 +6,28 @@ This lists the user-visible changes made to Sawfish, and which releases | ||
6 | 6 | they occurred between. For more detailed information see the |
7 | 7 | @file{ChangeLog} files in the Sawfish source tree. |
8 | 8 | |
9 | +@heading 0.31.1 | |
10 | + | |
11 | +@itemize @bullet | |
12 | + | |
13 | +@item Translation updates: da (Kenneth Christiansen), de (Christian | |
14 | +Meyer), no (Kjartan Maraas), pt_BR (Rui Miguel Silva Seabra), sv (Johan | |
15 | +Dahlin), uk (Yuri Syrota) | |
16 | + | |
17 | +@item Bug fixes: | |
18 | + | |
19 | +@itemize @minus | |
20 | +@item Fixed typos in @code{sawfish.wm.gnome.integration} and | |
21 | +@code{sawfish-themer} (Christian Marillat) | |
22 | + | |
23 | +@item Fixed bug when building on Tru64 (John H. Palmieri) | |
24 | + | |
25 | +@item Remember to check return value when initializing Imlib | |
26 | +@end itemize | |
27 | + | |
28 | +@end itemize | |
29 | + | |
30 | + | |
9 | 31 | @heading 0.31 |
10 | 32 | |
11 | 33 | @itemize @bullet |
@@ -5,31 +5,3 @@ gnome-i18n/extra-po/sawfish directory on cvs.gnome.org | ||
5 | 5 | |
6 | 6 | (I try to synchronize with that before each release) |
7 | 7 | |
8 | - | |
9 | -Notes about strings | |
10 | -=================== | |
11 | - | |
12 | -Sawfish uses some embedded control codes in strings (mostly in the | |
13 | -configurator labels): | |
14 | - | |
15 | -`\\w' | |
16 | - | |
17 | -Marks where the widget will be inserted into the string. Often used | |
18 | -with entry box and popup menu widgets to put the selected phrase in the | |
19 | -middle of the label. If no `\\w' token exists the label is put before | |
20 | -the widget. | |
21 | - | |
22 | -`\n\n' | |
23 | - | |
24 | -A double newline separates a widget's label from its (optional) | |
25 | -tooltip. Be sure to preserve both newline characters! | |
26 | - | |
27 | -In po files this is usually formatted like: | |
28 | - | |
29 | - msgid "" | |
30 | - "Label.\n" | |
31 | - "\n" | |
32 | - "Tooltip." | |
33 | - msgstr "" | |
34 | - | |
35 | - |
@@ -34,13 +34,8 @@ exec rep "$0" "$@" | ||
34 | 34 | (define (helper form) |
35 | 35 | (case (car form) |
36 | 36 | ((defcustom) |
37 | - (let ((doc (nth 3 form)) | |
38 | - (keys (nthcdr 4 form))) | |
39 | - (let ((tooltip (cadr (memq ':tooltip keys)))) | |
40 | - (when tooltip | |
41 | - (setq doc (concat doc "\n\n" tooltip)))) | |
42 | - (when (stringp doc) | |
43 | - (register doc)))) | |
37 | + (when (stringp (nth 3 form)) | |
38 | + (register (nth 3 form)))) | |
44 | 39 | |
45 | 40 | ((defgroup) |
46 | 41 | (let ((real-name (nth 3 form))) |
@@ -1,3 +1,9 @@ | ||
1 | +2000-09-28 John Harper <john@dcs.warwick.ac.uk> | |
2 | + | |
3 | + * fake-libexec: patch from John H. Palmieri | |
4 | + <palmieri@math.washington.edu> to link to libfoo.so as well as | |
5 | + foo.la (for Tru64?) | |
6 | + | |
1 | 7 | 2000-09-22 John Harper <john@dcs.warwick.ac.uk> |
2 | 8 | |
3 | 9 | * images.c (images_init): check return value of imlib_init () |