Mercurial > emacs
annotate lisp/strokes.el @ 93515:e30128d84c76
Convert to utf-8.
Fix typos; remove duplicate entries.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Tue, 01 Apr 2008 10:53:49 +0000 |
parents | 107ccd98fa12 |
children | 606f2d163a64 1e3a407766b9 |
rev | line source |
---|---|
19347 | 1 ;;; strokes.el --- control Emacs through mouse strokes |
19345 | 2 |
74442 | 3 ;; Copyright (C) 1997, 2000, 2001, 2002, 2003, 2004, |
79721 | 4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
19345 | 5 |
27975
ede0e764fc12
Change maintainer's mail address.
Gerd Moellmann <gerd@gnu.org>
parents:
19897
diff
changeset
|
6 ;; Author: David Bakhash <cadet@alum.mit.edu> |
45103 | 7 ;; Maintainer: FSF |
19345 | 8 ;; Keywords: lisp, mouse, extensions |
9 | |
10 ;; This file is part of GNU Emacs. | |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; it under the terms of the GNU General Public License as published by | |
78236
9355f9b7bbff
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75347
diff
changeset
|
14 ;; the Free Software Foundation; either version 3, or (at your option) |
19345 | 15 ;; any later version. |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64091 | 24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
25 ;; Boston, MA 02110-1301, USA. | |
19345 | 26 |
27 ;;; Commentary: | |
28 | |
29 ;; This is the strokes package. It is intended to allow the user to | |
30 ;; control Emacs by means of mouse strokes. Once strokes is loaded, you | |
31 ;; can always get help be invoking `strokes-help': | |
32 | |
33 ;; > M-x strokes-help | |
34 | |
35 ;; and you can learn how to use the package. A mouse stroke, for now, | |
46116 | 36 ;; can be defined as holding the shift key and the middle button, for |
37 ;; instance, and then moving the mouse in whatever pattern you wish, | |
38 ;; which you have set Emacs to understand as mapping to a given | |
39 ;; command. For example, you may wish the have a mouse stroke that | |
40 ;; looks like a capital `C' which means `copy-region-as-kill'. Treat | |
41 ;; strokes just like you do key bindings. For example, Emacs sets key | |
42 ;; bindings globally with the `global-set-key' command. Likewise, you | |
43 ;; can do | |
19345 | 44 |
46116 | 45 ;; > M-x strokes-global-set-stroke |
19345 | 46 |
47 ;; to interactively program in a stroke. It would be wise to set the | |
48 ;; first one to this very command, so that from then on, you invoke | |
46116 | 49 ;; `strokes-global-set-stroke' with a stroke. Likewise, there may |
50 ;; eventually be a `strokes-local-set-stroke' command, also analogous | |
51 ;; to `local-set-key'. | |
19345 | 52 |
53 ;; You can always unset the last stroke definition with the command | |
54 | |
55 ;; > M-x strokes-unset-last-stroke | |
56 | |
57 ;; and the last stroke that was added to `strokes-global-map' will be | |
58 ;; removed. | |
59 | |
60 ;; Other analogies between strokes and key bindings are as follows: | |
61 | |
62 ;; 1) To describe a stroke binding, you can type | |
63 | |
46116 | 64 ;; > M-x strokes-describe-stroke |
19345 | 65 |
66 ;; analogous to `describe-key'. It's also wise to have a stroke, | |
67 ;; like an `h', for help, or a `?', mapped to `describe-stroke'. | |
68 | |
69 ;; 2) stroke bindings are set internally through the Lisp function | |
46116 | 70 ;; `strokes-define-stroke', similar to the `define-key' function. |
71 ;; some examples for a 3x3 stroke grid would be | |
19345 | 72 |
46116 | 73 ;; (strokes-define-stroke c-mode-stroke-map |
19345 | 74 ;; '((0 . 0) (1 . 1) (2 . 2)) |
75 ;; 'kill-region) | |
46116 | 76 ;; (strokes-define-stroke strokes-global-map |
19345 | 77 ;; '((0 . 0) (0 . 1) (0 . 2) (1 . 2) (2 . 2)) |
78 ;; 'list-buffers) | |
79 | |
80 ;; however, if you would probably just have the user enter in the | |
81 ;; stroke interactively and then set the stroke to whatever he/she | |
54598
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
82 ;; entered. The Lisp function to interactively read a stroke is |
19345 | 83 ;; `strokes-read-stroke'. This is especially helpful when you're |
84 ;; on a fast computer that can handle a 9x9 stroke grid. | |
85 | |
86 ;; NOTE: only global stroke bindings are currently implemented, | |
87 ;; however mode- and buffer-local stroke bindings may eventually | |
88 ;; be implemented in a future version. | |
89 | |
90 ;; The important variables to be aware of for this package are listed | |
91 ;; below. They can all be altered through the customizing package via | |
92 | |
93 ;; > M-x customize | |
94 | |
95 ;; and customizing the group named `strokes'. You can also read | |
96 ;; documentation on the variables there. | |
97 | |
98 ;; `strokes-minimum-match-score' (determines the threshold of error that | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
99 ;; makes a stroke acceptable or unacceptable. If your strokes aren't |
19345 | 100 ;; matching, then you should raise this variable. |
101 | |
102 ;; `strokes-grid-resolution' (determines the grid dimensions that you use | |
103 ;; when defining/reading strokes. The finer the grid your computer can | |
104 ;; handle, the more you can do, but even a 3x3 grid is pretty cool.) | |
43233
ae3e8c9e9b87
(strokes-do-stroke, strokes-do-complex-stroke): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents:
41603
diff
changeset
|
105 ;; The default value (9) should be fine for most decent computers. |
19345 | 106 ;; NOTE: This variable should not be set to a number less than 3. |
107 | |
108 ;; `strokes-display-strokes-buffer' will allow you to hide the strokes | |
109 ;; buffer when doing simple strokes. This is a speedup for slow | |
110 ;; computers as well as people who don't want to see their strokes. | |
111 | |
112 ;; If you find that your mouse is accelerating too fast, you can | |
46116 | 113 ;; execute an X command to slow it down. A good possibility is |
19345 | 114 |
115 ;; % xset m 5/4 8 | |
116 | |
117 ;; which seems, heuristically, to work okay, without much disruption. | |
118 | |
119 ;; Whenever you load in the strokes package, you will be able to save | |
120 ;; what you've done upon exiting Emacs. You can also do | |
121 | |
46116 | 122 ;; > M-x strokes-prompt-user-save-strokes |
19345 | 123 |
124 ;; and it will save your strokes in ~/.strokes, or you may wish to change | |
125 ;; this by setting the variable `strokes-file'. | |
126 | |
127 ;; Note that internally, all of the routines that are part of this | |
128 ;; package are able to deal with complex strokes, as they are a superset | |
129 ;; of simple strokes. However, the default of this package will map | |
46116 | 130 ;; S-mouse-2 to the command `strokes-do-stroke', and M-mouse-2 to |
131 ;; `strokes-do-complex-stroke'. Complex strokes are terminated | |
132 ;; with mouse button 3. | |
19345 | 133 |
46116 | 134 ;; You can also toggle between strokes mode by simple typing |
19345 | 135 |
136 ;; > M-x strokes-mode | |
137 | |
46116 | 138 ;; I hope that, with the help of others, this package will be useful |
139 ;; in entering in pictographic-like language text using the mouse | |
140 ;; (i.e. Korean). Japanese and Chinese are a bit trickier, but I'm | |
141 ;; sure that with help it can be done. The next version will allow | |
142 ;; the user to enter strokes which "remove the pencil from the paper" | |
143 ;; so to speak, so one character can have multiple strokes. | |
19345 | 144 |
73277
f878c9ca9676
(defgroup strokes): Remove invalid url-link.
Eli Zaretskii <eliz@gnu.org>
parents:
68651
diff
changeset
|
145 ;; NOTE (Oct 7, 2006): The URLs below seem to be invalid!!! |
f878c9ca9676
(defgroup strokes): Remove invalid url-link.
Eli Zaretskii <eliz@gnu.org>
parents:
68651
diff
changeset
|
146 |
19345 | 147 ;; You can read more about strokes at: |
148 | |
149 ;; http://www.mit.edu/people/cadet/strokes-help.html | |
150 | |
151 ;; If you're interested in using strokes for writing English into Emacs | |
152 ;; using strokes, then you'll want to read about it on the web page above | |
153 ;; or just download from http://www.mit.edu/people/cadet/strokes-abc.el, | |
154 ;; which is nothing but a file with some helper commands for inserting | |
155 ;; alphanumerics and punctuation. | |
156 | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
157 ;; Great thanks to Rob Ristroph for his generosity in letting me use |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
158 ;; his PC to develop this, Jason Johnson for his help in algorithms, |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
159 ;; Euna Kim for her help in Korean, and massive thanks to the helpful |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
160 ;; guys on the help instance on athena (zeno, jered, amu, gsstark, |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
161 ;; ghudson, etc) Special thanks to Steve Baur, Kyle Jones, and Hrvoje |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
162 ;; Niksic for all their help. And special thanks to Dave Gillespie |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
163 ;; for all the elisp help--he is responsible for helping me use the cl |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
164 ;; macros at (near) max speed. |
19345 | 165 |
166 ;; Tasks: (what I'm getting ready for future version)... | |
46116 | 167 ;; 2) use 'strokes-read-complex-stroke for Korean, etc. |
19345 | 168 ;; 4) buffer-local 'strokes-local-map, and mode-stroke-maps would be nice |
169 ;; 6) add some hooks, like `strokes-read-stroke-hook' | |
170 ;; 7) See what people think of the factory settings. Should I change | |
171 ;; them? They're all pretty arbitrary in a way. I guess they | |
172 ;; should be minimal, but computers are getting lots faster, and | |
173 ;; if I choose the defaults too conservatively, then strokes will | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
174 ;; surely disappoint some people on decent machines (until they |
19345 | 175 ;; figure out M-x customize). I need feedback. |
176 ;; Other: I always have the most beta version of strokes, so if you | |
177 ;; want it just let me know. | |
178 | |
52778 | 179 ;; Fixme: Use pbm instead of xpm for pixmaps to work generally. |
180 | |
19345 | 181 ;;; Code: |
182 | |
183 ;;; Requirements and provisions... | |
184 | |
185 (autoload 'mail-position-on-field "sendmail") | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
186 (eval-when-compile (require 'cl)) |
19345 | 187 |
188 ;;; Constants... | |
189 | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
190 (defconst strokes-lift :strokes-lift |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
191 "Symbol representing a stroke lift event for complex strokes. |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
192 Complex strokes are those which contain two or more simple strokes.") |
19345 | 193 |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
194 (defconst strokes-xpm-header "/* XPM */ |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
195 static char * stroke_xpm[] = { |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
196 /* width height ncolors cpp [x_hot y_hot] */ |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
197 \"33 33 9 1 26 23\", |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
198 /* colors */ |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
199 \" c none s none\", |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
200 \"* c #000000 s foreground\", |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
201 \"R c #FFFF00000000\", |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
202 \"O c #FFFF80000000\", |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
203 \"Y c #FFFFFFFF0000\", |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
204 \"G c #0000FFFF0000\", |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
205 \"B c #00000000FFFF\", |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
206 \"P c #FFFF0000FFFF\", |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
207 \". c #45458B8B0000\", |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
208 /* pixels */\n" |
46116 | 209 "The header to all xpm buffers created by strokes.") |
19345 | 210 |
211 ;;; user variables... | |
212 | |
213 (defgroup strokes nil | |
64023
22c5a8628828
(strokes): Finish `defgroup' description with period.
Juanma Barranquero <lekktu@gmail.com>
parents:
63219
diff
changeset
|
214 "Control Emacs through mouse strokes." |
46116 | 215 :link '(emacs-commentary-link "strokes") |
19345 | 216 :group 'mouse) |
217 | |
218 (defcustom strokes-modeline-string " Strokes" | |
46116 | 219 "*Modeline identification when Strokes mode is on \(default is \" Strokes\"\)." |
19345 | 220 :type 'string |
221 :group 'strokes) | |
222 | |
223 (defcustom strokes-character ?@ | |
224 "*Character used when drawing strokes in the strokes buffer. | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
225 \(The default is `@', which works well.\)" |
19345 | 226 :type 'character |
227 :group 'strokes) | |
228 | |
229 (defcustom strokes-minimum-match-score 1000 | |
230 "*Minimum score for a stroke to be considered a possible match. | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
231 Setting this variable to 0 would require a perfectly precise match. |
19345 | 232 The default value is 1000, but it's mostly dependent on how precisely |
233 you manage to replicate your user-defined strokes. It also depends on | |
234 the value of `strokes-grid-resolution', since a higher grid resolution | |
235 will correspond to more sample points, and thus more distance | |
236 measurements. Usually, this is not a problem since you first set | |
237 `strokes-grid-resolution' based on what your computer seems to be able | |
46116 | 238 to handle (though the defaults are usually more than sufficient), and |
19345 | 239 then you can set `strokes-minimum-match-score' to something that works |
240 for you. The only purpose of this variable is to insure that if you | |
241 do a bogus stroke that really doesn't match any of the predefined | |
242 ones, then strokes should NOT pick the one that came closest." | |
243 :type 'integer | |
244 :group 'strokes) | |
245 | |
246 (defcustom strokes-grid-resolution 9 | |
247 "*Integer defining dimensions of the stroke grid. | |
64551
dc55ec2be671
(strokes-load-hook): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
248 The grid is a square grid, where `strokes-grid-resolution' defaults to |
19345 | 249 `9', making a 9x9 grid whose coordinates go from (0 . 0) on the top |
64551
dc55ec2be671
(strokes-load-hook): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
250 left to ((strokes-grid-resolution - 1) . (strokes-grid-resolution - 1)) |
19345 | 251 on the bottom right. The greater the resolution, the more intricate |
252 your strokes can be. | |
253 NOTE: This variable should be odd and MUST NOT be less than 3 and need | |
254 not be greater than 33, which is the resolution of the pixmaps. | |
255 WARNING: Changing the value of this variable will gravely affect the | |
256 strokes you have already programmed in. You should try to | |
257 figure out what it should be based on your needs and on how | |
258 quick the particular platform(s) you're operating on, and | |
259 only then start programming in your custom strokes." | |
260 :type 'integer | |
261 :group 'strokes) | |
262 | |
30540
ed5f60298be9
(strokes-file): Run the file name through
Eli Zaretskii <eliz@gnu.org>
parents:
27975
diff
changeset
|
263 (defcustom strokes-file (convert-standard-filename "~/.strokes") |
64551
dc55ec2be671
(strokes-load-hook): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
264 "*File containing saved strokes for Strokes mode (default is ~/.strokes)." |
19345 | 265 :type 'file |
266 :group 'strokes) | |
267 | |
46116 | 268 (defvar strokes-buffer-name " *strokes*" |
269 "The name of the buffer that the strokes take place in.") | |
19345 | 270 |
271 (defcustom strokes-use-strokes-buffer t | |
272 "*If non-nil, the strokes buffer is used and strokes are displayed. | |
273 If nil, strokes will be read the same, however the user will not be | |
274 able to see the strokes. This be helpful for people who don't like | |
275 the delay in switching to the strokes buffer." | |
276 :type 'boolean | |
277 :group 'strokes) | |
278 | |
279 ;;; internal variables... | |
280 | |
281 (defvar strokes-window-configuration nil | |
282 "The special window configuration used when entering strokes. | |
283 This is set properly in the function `strokes-update-window-configuration'.") | |
284 | |
285 (defvar strokes-last-stroke nil | |
286 "Last stroke entered by the user. | |
287 Its value gets set every time the function | |
288 `strokes-fill-stroke' gets called, | |
64551
dc55ec2be671
(strokes-load-hook): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
289 since that is the best time to set the variable.") |
19345 | 290 |
291 (defvar strokes-global-map '() | |
292 "Association list of strokes and their definitions. | |
293 Each entry is (STROKE . COMMAND) where STROKE is itself a list of | |
294 coordinates (X . Y) where X and Y are lists of positions on the | |
295 normalized stroke grid, with the top left at (0 . 0). COMMAND is the | |
64551
dc55ec2be671
(strokes-load-hook): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
296 corresponding interactive function.") |
19345 | 297 |
298 (defvar strokes-load-hook nil | |
64551
dc55ec2be671
(strokes-load-hook): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
299 "Functions to be called when Strokes is loaded.") |
19345 | 300 |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
301 ;;; ### NOT IMPLEMENTED YET ### |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
302 ;;(defvar edit-strokes-menu |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
303 ;; '("Edit-Strokes" |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
304 ;; ["Add stroke..." strokes-global-set-stroke t] |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
305 ;; ["Delete stroke..." strokes-edit-delete-stroke t] |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
306 ;; ["Change stroke" strokes-smaller t] |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
307 ;; ["Change definition" strokes-larger t] |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
308 ;; ["[Re]List Strokes chronologically" strokes-list-strokes t] |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
309 ;; ["[Re]List Strokes alphabetically" strokes-list-strokes t] |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
310 ;; ["Quit" strokes-edit-quit t] |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
311 ;; )) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
312 |
19345 | 313 ;;; Macros... |
314 | |
46116 | 315 ;; unused |
316 ;; (defmacro strokes-while-inhibiting-garbage-collector (&rest forms) | |
317 ;; "Execute FORMS without interference from the garbage collector." | |
318 ;; `(let ((gc-cons-threshold 134217727)) | |
319 ;; ,@forms)) | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
320 |
19345 | 321 (defsubst strokes-click-p (stroke) |
322 "Non-nil if STROKE is really click." | |
19347 | 323 (< (length stroke) 2)) |
19345 | 324 |
325 ;;; old, but worked pretty good (just in case)... | |
326 ;;(defmacro strokes-define-stroke (stroke-map stroke def) | |
327 ;; "Add STROKE to STROKE-MAP alist with given command DEF" | |
19347 | 328 ;; (list 'if (list '< (list 'length stroke) 2) |
19345 | 329 ;; (list 'error |
330 ;; "That's a click, not a stroke. See `strokes-click-command'") | |
331 ;; (list 'setq stroke-map (list 'cons (list 'cons stroke def) | |
332 ;; (list 'remassoc stroke stroke-map))))) | |
333 | |
334 (defsubst strokes-remassoc (key list) | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
335 (let (elt) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
336 (while (setq elt (assoc key list)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
337 (setq list (delete elt list)))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
338 list) |
19345 | 339 |
340 (defmacro strokes-define-stroke (stroke-map stroke def) | |
341 "Add STROKE to STROKE-MAP alist with given command DEF." | |
342 `(if (strokes-click-p ,stroke) | |
46116 | 343 (error "That's a click, not a stroke") |
19345 | 344 (setq ,stroke-map (cons (cons ,stroke ,def) |
345 (strokes-remassoc ,stroke ,stroke-map))))) | |
346 | |
347 (defsubst strokes-square (x) | |
46116 | 348 "Return the square of the number X." |
19345 | 349 (* x x)) |
350 | |
351 (defsubst strokes-distance-squared (p1 p2) | |
352 "Gets the distance (squared) between to points P1 and P2. | |
353 P1 and P2 are cons cells in the form (X . Y)." | |
354 (let ((x1 (car p1)) | |
355 (y1 (cdr p1)) | |
356 (x2 (car p2)) | |
357 (y2 (cdr p2))) | |
358 (+ (strokes-square (- x2 x1)) | |
359 (strokes-square (- y2 y1))))) | |
360 | |
361 ;;; Functions... | |
362 | |
363 (defsubst strokes-mouse-event-p (event) | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
364 (and (consp event) (symbolp (car event)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
365 (or (eq (car event) 'mouse-movement) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
366 (memq 'click (get (car event) 'event-symbol-elements)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
367 (memq 'down (get (car event) 'event-symbol-elements)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
368 (memq 'drag (get (car event) 'event-symbol-elements))))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
369 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
370 (defsubst strokes-button-press-event-p (event) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
371 (and (consp event) (symbolp (car event)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
372 (memq 'down (get (car event) 'event-symbol-elements)))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
373 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
374 (defsubst strokes-button-release-event-p (event) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
375 (and (consp event) (symbolp (car event)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
376 (or (memq 'click (get (car event) 'event-symbol-elements)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
377 (memq 'drag (get (car event) 'event-symbol-elements))))) |
19345 | 378 |
379 (defun strokes-event-closest-point-1 (window &optional line) | |
380 "Return position of start of line LINE in WINDOW. | |
381 If LINE is nil, return the last position visible in WINDOW." | |
382 (let* ((total (- (window-height window) | |
383 (if (window-minibuffer-p window) | |
384 0 1))) | |
385 (distance (or line total))) | |
386 (save-excursion | |
387 (goto-char (window-start window)) | |
388 (if (= (vertical-motion distance) distance) | |
389 (if (not line) | |
390 (forward-char -1))) | |
391 (point)))) | |
392 | |
393 (defun strokes-event-closest-point (event &optional start-window) | |
394 "Return the nearest position to where EVENT ended its motion. | |
395 This is computed for the window where EVENT's motion started, | |
46116 | 396 or for window START-WINDOW if that is specified." |
19345 | 397 (or start-window (setq start-window (posn-window (event-start event)))) |
398 (if (eq start-window (posn-window (event-end event))) | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
399 (if (eq (posn-point (event-end event)) 'vertical-line) |
19345 | 400 (strokes-event-closest-point-1 start-window |
401 (cdr (posn-col-row (event-end event)))) | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
402 (if (eq (posn-point (event-end event)) 'mode-line) |
19345 | 403 (strokes-event-closest-point-1 start-window) |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
404 (posn-point (event-end event)))) |
19345 | 405 ;; EVENT ended in some other window. |
406 (let* ((end-w (posn-window (event-end event))) | |
407 (end-w-top) | |
408 (w-top (nth 1 (window-edges start-window)))) | |
409 (setq end-w-top | |
410 (if (windowp end-w) | |
411 (nth 1 (window-edges end-w)) | |
412 (/ (cdr (posn-x-y (event-end event))) | |
19347 | 413 (frame-char-height end-w)))) |
19345 | 414 (if (>= end-w-top w-top) |
415 (strokes-event-closest-point-1 start-window) | |
416 (window-start start-window))))) | |
417 | |
418 (defun strokes-lift-p (object) | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
419 "Return non-nil if OBJECT is a stroke-lift." |
19345 | 420 (eq object strokes-lift)) |
421 | |
422 (defun strokes-unset-last-stroke () | |
423 "Undo the last stroke definition." | |
424 (interactive) | |
425 (let ((command (cdar strokes-global-map))) | |
19347 | 426 (if (y-or-n-p |
46116 | 427 (format "Really delete last stroke definition, defined to `%s'? " |
19345 | 428 command)) |
429 (progn | |
430 (setq strokes-global-map (cdr strokes-global-map)) | |
431 (message "That stroke has been deleted")) | |
432 (message "Nothing done")))) | |
433 | |
434 ;;;###autoload | |
435 (defun strokes-global-set-stroke (stroke command) | |
436 "Interactively give STROKE the global binding as COMMAND. | |
437 Operated just like `global-set-key', except for strokes. | |
438 COMMAND is a symbol naming an interactively-callable function. STROKE | |
439 is a list of sampled positions on the stroke grid as described in the | |
54598
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
440 documentation for the `strokes-define-stroke' function. |
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
441 |
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
442 See also `strokes-global-set-stroke-string'." |
19345 | 443 (interactive |
444 (list | |
445 (and (or strokes-mode (strokes-mode t)) | |
446 (strokes-read-complex-stroke | |
46116 | 447 "Draw with mouse button 1 (or 2). End with button 3...")) |
448 (read-command "Command to map stroke to: "))) | |
19345 | 449 (strokes-define-stroke strokes-global-map stroke command)) |
450 | |
54598
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
451 (defun strokes-global-set-stroke-string (stroke string) |
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
452 "Interactively give STROKE the global binding as STRING. |
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
453 Operated just like `global-set-key', except for strokes. STRING |
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
454 is a string to be inserted by the stroke. STROKE is a list of |
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
455 sampled positions on the stroke grid as described in the |
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
456 documentation for the `strokes-define-stroke' function. |
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
457 |
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
458 Compare `strokes-global-set-stroke'." |
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
459 (interactive |
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
460 (list |
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
461 (and (or strokes-mode (strokes-mode t)) |
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
462 (strokes-read-complex-stroke |
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
463 "Draw with mouse button 1 (or 2). End with button 3...")) |
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
464 (read-string "String to map stroke to: "))) |
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
465 (strokes-define-stroke strokes-global-map stroke string)) |
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
466 |
19345 | 467 ;;(defun global-unset-stroke (stroke); FINISH THIS DEFUN! |
468 ;; "delete all strokes matching STROKE from `strokes-global-map', | |
469 ;; letting the user input | |
470 ;; the stroke with the mouse" | |
471 ;; (interactive | |
472 ;; (list | |
473 ;; (strokes-read-stroke "Enter the stroke you want to delete..."))) | |
474 ;; (strokes-define-stroke 'strokes-global-map stroke command)) | |
475 | |
476 (defun strokes-get-grid-position (stroke-extent position &optional grid-resolution) | |
46116 | 477 "Map POSITION to a new grid position. |
64551
dc55ec2be671
(strokes-load-hook): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
478 Do so based on its STROKE-EXTENT and GRID-RESOLUTION. |
19345 | 479 STROKE-EXTENT as a list \(\(XMIN . YMIN\) \(XMAX . YMAX\)\). |
480 If POSITION is a `strokes-lift', then it is itself returned. | |
64551
dc55ec2be671
(strokes-load-hook): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
481 Optional GRID-RESOLUTION may be used in place of `strokes-grid-resolution'. |
46116 | 482 The grid is a square whose dimension is [0,GRID-RESOLUTION)." |
19345 | 483 (cond ((consp position) ; actual pixel location |
484 (let ((grid-resolution (or grid-resolution strokes-grid-resolution)) | |
485 (x (car position)) | |
486 (y (cdr position)) | |
487 (xmin (caar stroke-extent)) | |
488 (ymin (cdar stroke-extent)) | |
489 ;; the `1+' is there to insure that the | |
490 ;; formula evaluates correctly at the boundaries | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
491 (xmax (1+ (car (cadr stroke-extent)))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
492 (ymax (1+ (cdr (cadr stroke-extent))))) |
19345 | 493 (cons (floor (* grid-resolution |
494 (/ (float (- x xmin)) | |
495 (- xmax xmin)))) | |
496 (floor (* grid-resolution | |
497 (/ (float (- y ymin)) | |
498 (- ymax ymin))))))) | |
499 ((strokes-lift-p position) ; stroke lift | |
500 strokes-lift))) | |
501 | |
502 (defun strokes-get-stroke-extent (pixel-positions) | |
46116 | 503 "From a list of absolute PIXEL-POSITIONS, return absolute spatial extent. |
19345 | 504 The return value is a list ((XMIN . YMIN) (XMAX . YMAX))." |
505 (if pixel-positions | |
506 (let ((xmin (caar pixel-positions)) | |
507 (xmax (caar pixel-positions)) | |
508 (ymin (cdar pixel-positions)) | |
509 (ymax (cdar pixel-positions)) | |
510 (rest (cdr pixel-positions))) | |
511 (while rest | |
512 (if (consp (car rest)) | |
513 (let ((x (caar rest)) | |
514 (y (cdar rest))) | |
515 (if (< x xmin) | |
516 (setq xmin x)) | |
517 (if (> x xmax) | |
518 (setq xmax x)) | |
519 (if (< y ymin) | |
520 (setq ymin y)) | |
521 (if (> y ymax) | |
522 (setq ymax y)))) | |
523 (setq rest (cdr rest))) | |
524 (let ((delta-x (- xmax xmin)) | |
525 (delta-y (- ymax ymin))) | |
526 (if (> delta-x delta-y) | |
527 (setq ymin (- ymin | |
528 (/ (- delta-x delta-y) | |
529 2)) | |
530 ymax (+ ymax | |
531 (/ (- delta-x delta-y) | |
532 2))) | |
533 (setq xmin (- xmin | |
534 (/ (- delta-y delta-x) | |
535 2)) | |
536 xmax (+ xmax | |
537 (/ (- delta-y delta-x) | |
538 2)))) | |
539 (list (cons xmin ymin) | |
540 (cons xmax ymax)))) | |
541 nil)) | |
542 | |
543 (defun strokes-eliminate-consecutive-redundancies (entries) | |
46116 | 544 "Return a list with no consecutive redundant entries." |
19345 | 545 ;; defun a grande vitesse grace a Dave G. |
546 (loop for element on entries | |
547 if (not (equal (car element) (cadr element))) | |
548 collect (car element))) | |
549 ;; (loop for element on entries | |
550 ;; nconc (if (not (equal (car el) (cadr el))) | |
551 ;; (list (car el))))) | |
552 ;; yet another (orig) way of doing it... | |
553 ;; (if entries | |
554 ;; (let* ((current (car entries)) | |
555 ;; (rest (cdr entries)) | |
556 ;; (non-redundant-list (list current)) | |
557 ;; (next nil)) | |
558 ;; (while rest | |
559 ;; (setq next (car rest)) | |
560 ;; (if (equal current next) | |
561 ;; (setq rest (cdr rest)) | |
562 ;; (setq non-redundant-list (cons next non-redundant-list) | |
563 ;; current next | |
564 ;; rest (cdr rest)))) | |
565 ;; (nreverse non-redundant-list)) | |
566 ;; nil)) | |
567 | |
568 (defun strokes-renormalize-to-grid (positions &optional grid-resolution) | |
569 "Map POSITIONS to a new grid whose dimensions are based on GRID-RESOLUTION. | |
570 POSITIONS is a list of positions and stroke-lifts. | |
64551
dc55ec2be671
(strokes-load-hook): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
571 Optional GRID-RESOLUTION may be used in place of `strokes-grid-resolution'. |
46116 | 572 The grid is a square whose dimension is [0,GRID-RESOLUTION)." |
19345 | 573 (or grid-resolution (setq grid-resolution strokes-grid-resolution)) |
574 (let ((stroke-extent (strokes-get-stroke-extent positions))) | |
575 (mapcar (function | |
576 (lambda (pos) | |
577 (strokes-get-grid-position stroke-extent pos grid-resolution))) | |
578 positions))) | |
579 | |
580 (defun strokes-fill-stroke (unfilled-stroke &optional force) | |
581 "Fill in missing grid locations in the list of UNFILLED-STROKE. | |
582 If FORCE is non-nil, then fill the stroke even if it's `stroke-click'. | |
583 NOTE: This is where the global variable `strokes-last-stroke' is set." | |
584 (setq strokes-last-stroke ; this is global | |
585 (if (and (strokes-click-p unfilled-stroke) | |
586 (not force)) | |
587 unfilled-stroke | |
588 (loop for grid-locs on unfilled-stroke | |
589 nconc (let* ((current (car grid-locs)) | |
590 (current-is-a-point-p (consp current)) | |
591 (next (cadr grid-locs)) | |
592 (next-is-a-point-p (consp next)) | |
593 (both-are-points-p (and current-is-a-point-p | |
594 next-is-a-point-p)) | |
595 (x1 (and current-is-a-point-p | |
596 (car current))) | |
597 (y1 (and current-is-a-point-p | |
598 (cdr current))) | |
599 (x2 (and next-is-a-point-p | |
600 (car next))) | |
601 (y2 (and next-is-a-point-p | |
602 (cdr next))) | |
603 (delta-x (and both-are-points-p | |
604 (- x2 x1))) | |
605 (delta-y (and both-are-points-p | |
606 (- y2 y1))) | |
607 (slope (and both-are-points-p | |
608 (if (zerop delta-x) | |
609 nil ; undefined vertical slope | |
610 (/ (float delta-y) | |
611 delta-x))))) | |
612 (cond ((not both-are-points-p) | |
613 (list current)) | |
46116 | 614 ((null slope) ; undefined vertical slope |
19345 | 615 (if (>= delta-y 0) |
616 (loop for y from y1 below y2 | |
617 collect (cons x1 y)) | |
618 (loop for y from y1 above y2 | |
619 collect (cons x1 y)))) | |
620 ((zerop slope) ; (= y1 y2) | |
621 (if (>= delta-x 0) | |
622 (loop for x from x1 below x2 | |
623 collect (cons x y1)) | |
624 (loop for x from x1 above x2 | |
625 collect (cons x y1)))) | |
626 ((>= (abs delta-x) (abs delta-y)) | |
627 (if (> delta-x 0) | |
628 (loop for x from x1 below x2 | |
629 collect (cons x | |
630 (+ y1 | |
631 (round (* slope | |
632 (- x x1)))))) | |
633 (loop for x from x1 above x2 | |
634 collect (cons x | |
635 (+ y1 | |
636 (round (* slope | |
637 (- x x1)))))))) | |
638 (t ; (< (abs delta-x) (abs delta-y)) | |
639 (if (> delta-y 0) | |
640 (loop for y from y1 below y2 | |
641 collect (cons (+ x1 | |
642 (round (/ (- y y1) | |
643 slope))) | |
644 y)) | |
645 (loop for y from y1 above y2 | |
646 collect (cons (+ x1 | |
647 (round (/ (- y y1) | |
648 slope))) | |
649 y)))))))))) | |
650 | |
651 (defun strokes-rate-stroke (stroke1 stroke2) | |
46116 | 652 "Rates STROKE1 with STROKE2 and return a score based on a distance metric. |
19345 | 653 Note: the rating is an error rating, and therefore, a return of 0 |
654 represents a perfect match. Also note that the order of stroke | |
655 arguments is order-independent for the algorithm used here." | |
656 (if (and stroke1 stroke2) | |
657 (let ((rest1 (cdr stroke1)) | |
658 (rest2 (cdr stroke2)) | |
659 (err (strokes-distance-squared (car stroke1) | |
660 (car stroke2)))) | |
661 (while (and rest1 rest2) | |
662 (while (and (consp (car rest1)) | |
663 (consp (car rest2))) | |
664 (setq err (+ err | |
665 (strokes-distance-squared (car rest1) | |
666 (car rest2))) | |
667 stroke1 rest1 | |
668 stroke2 rest2 | |
669 rest1 (cdr stroke1) | |
670 rest2 (cdr stroke2))) | |
671 (cond ((and (strokes-lift-p (car rest1)) | |
672 (strokes-lift-p (car rest2))) | |
673 (setq rest1 (cdr rest1) | |
674 rest2 (cdr rest2))) | |
675 ((strokes-lift-p (car rest2)) | |
676 (while (consp (car rest1)) | |
677 (setq err (+ err | |
678 (strokes-distance-squared (car rest1) | |
679 (car stroke2))) | |
680 rest1 (cdr rest1)))) | |
681 ((strokes-lift-p (car rest1)) | |
682 (while (consp (car rest2)) | |
683 (setq err (+ err | |
684 (strokes-distance-squared (car stroke1) | |
685 (car rest2))) | |
686 rest2 (cdr rest2)))))) | |
687 (if (null rest2) | |
688 (while (consp (car rest1)) | |
689 (setq err (+ err | |
690 (strokes-distance-squared (car rest1) | |
691 (car stroke2))) | |
692 rest1 (cdr rest1)))) | |
693 (if (null rest1) | |
694 (while (consp (car rest2)) | |
695 (setq err (+ err | |
696 (strokes-distance-squared (car stroke1) | |
697 (car rest2))) | |
698 rest2 (cdr rest2)))) | |
699 (if (or (strokes-lift-p (car rest1)) | |
700 (strokes-lift-p (car rest2))) | |
701 (setq err nil) | |
702 err)) | |
703 nil)) | |
704 | |
705 (defun strokes-match-stroke (stroke stroke-map) | |
46116 | 706 "Find the best matching command of STROKE in STROKE-MAP. |
19345 | 707 Returns the corresponding match as (COMMAND . SCORE)." |
708 (if (and stroke stroke-map) | |
709 (let ((score (strokes-rate-stroke stroke (caar stroke-map))) | |
710 (command (cdar stroke-map)) | |
711 (map (cdr stroke-map))) | |
712 (while map | |
713 (let ((newscore (strokes-rate-stroke stroke (caar map)))) | |
714 (if (or (and newscore score (< newscore score)) | |
715 (and newscore (null score))) | |
716 (setq score newscore | |
717 command (cdar map))) | |
718 (setq map (cdr map)))) | |
719 (if score | |
720 (cons command score) | |
721 nil)) | |
722 nil)) | |
723 | |
724 ;;;###autoload | |
725 (defun strokes-read-stroke (&optional prompt event) | |
726 "Read a simple stroke (interactively) and return the stroke. | |
727 Optional PROMPT in minibuffer displays before and during stroke reading. | |
728 This function will display the stroke interactively as it is being | |
729 entered in the strokes buffer if the variable | |
730 `strokes-use-strokes-buffer' is non-nil. | |
64551
dc55ec2be671
(strokes-load-hook): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
731 Optional EVENT is acceptable as the starting event of the stroke." |
19345 | 732 (save-excursion |
19347 | 733 (let ((pix-locs nil) |
734 (grid-locs nil) | |
735 (safe-to-draw-p nil)) | |
736 (if strokes-use-strokes-buffer | |
737 ;; switch to the strokes buffer and | |
738 ;; display the stroke as it's being read | |
739 (save-window-excursion | |
740 (set-window-configuration strokes-window-configuration) | |
741 (when prompt | |
65582
4d1085b02d64
Message format spec fixes (1)
Deepak Goel <deego@gnufans.org>
parents:
64993
diff
changeset
|
742 (message "%s" prompt) |
19347 | 743 (setq event (read-event)) |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
744 (or (strokes-button-press-event-p event) |
19347 | 745 (error "You must draw with the mouse"))) |
746 (unwind-protect | |
747 (track-mouse | |
748 (or event (setq event (read-event) | |
749 safe-to-draw-p t)) | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
750 (while (not (strokes-button-release-event-p event)) |
19347 | 751 (if (strokes-mouse-event-p event) |
752 (let ((point (strokes-event-closest-point event))) | |
753 (if (and point safe-to-draw-p) | |
754 ;; we can draw that point | |
755 (progn | |
756 (goto-char point) | |
46116 | 757 (subst-char-in-region point (1+ point) |
64023
22c5a8628828
(strokes): Finish `defgroup' description with period.
Juanma Barranquero <lekktu@gmail.com>
parents:
63219
diff
changeset
|
758 ?\s strokes-character)) |
19347 | 759 ;; otherwise, we can start drawing the next time... |
760 (setq safe-to-draw-p t)) | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
761 (push (cdr (mouse-pixel-position)) |
19347 | 762 pix-locs))) |
763 (setq event (read-event))))) | |
764 ;; protected | |
765 ;; clean up strokes buffer and then bury it. | |
766 (when (equal (buffer-name) strokes-buffer-name) | |
46116 | 767 (subst-char-in-region (point-min) (point-max) |
64023
22c5a8628828
(strokes): Finish `defgroup' description with period.
Juanma Barranquero <lekktu@gmail.com>
parents:
63219
diff
changeset
|
768 strokes-character ?\s) |
19347 | 769 (goto-char (point-min)) |
770 (bury-buffer)))) | |
771 ;; Otherwise, don't use strokes buffer and read stroke silently | |
772 (when prompt | |
65582
4d1085b02d64
Message format spec fixes (1)
Deepak Goel <deego@gnufans.org>
parents:
64993
diff
changeset
|
773 (message "%s" prompt) |
19347 | 774 (setq event (read-event)) |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
775 (or (strokes-button-press-event-p event) |
19347 | 776 (error "You must draw with the mouse"))) |
777 (track-mouse | |
778 (or event (setq event (read-event))) | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
779 (while (not (strokes-button-release-event-p event)) |
19347 | 780 (if (strokes-mouse-event-p event) |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
781 (push (cdr (mouse-pixel-position)) |
19347 | 782 pix-locs)) |
783 (setq event (read-event)))) | |
784 (setq grid-locs (strokes-renormalize-to-grid (nreverse pix-locs))) | |
46116 | 785 (strokes-fill-stroke |
786 (strokes-eliminate-consecutive-redundancies grid-locs))))) | |
19345 | 787 |
788 ;;;###autoload | |
789 (defun strokes-read-complex-stroke (&optional prompt event) | |
790 "Read a complex stroke (interactively) and return the stroke. | |
791 Optional PROMPT in minibuffer displays before and during stroke reading. | |
792 Note that a complex stroke allows the user to pen-up and pen-down. This | |
46116 | 793 is implemented by allowing the user to paint with button 1 or button 2 and |
794 then complete the stroke with button 3. | |
64551
dc55ec2be671
(strokes-load-hook): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
795 Optional EVENT is acceptable as the starting event of the stroke." |
19345 | 796 (save-excursion |
797 (save-window-excursion | |
19347 | 798 (set-window-configuration strokes-window-configuration) |
799 (let ((pix-locs nil) | |
800 (grid-locs nil)) | |
801 (if prompt | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
802 (while (not (strokes-button-press-event-p event)) |
65582
4d1085b02d64
Message format spec fixes (1)
Deepak Goel <deego@gnufans.org>
parents:
64993
diff
changeset
|
803 (message "%s" prompt) |
19347 | 804 (setq event (read-event)))) |
805 (unwind-protect | |
806 (track-mouse | |
807 (or event (setq event (read-event))) | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
808 (while (not (and (strokes-button-press-event-p event) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
809 (eq 'mouse-3 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
810 (car (get (car event) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
811 'event-symbol-elements))))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
812 (while (not (strokes-button-release-event-p event)) |
19347 | 813 (if (strokes-mouse-event-p event) |
814 (let ((point (strokes-event-closest-point event))) | |
815 (when point | |
816 (goto-char point) | |
46116 | 817 (subst-char-in-region point (1+ point) |
64023
22c5a8628828
(strokes): Finish `defgroup' description with period.
Juanma Barranquero <lekktu@gmail.com>
parents:
63219
diff
changeset
|
818 ?\s strokes-character)) |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
819 (push (cdr (mouse-pixel-position)) |
19347 | 820 pix-locs))) |
821 (setq event (read-event))) | |
822 (push strokes-lift pix-locs) | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
823 (while (not (strokes-button-press-event-p event)) |
19347 | 824 (setq event (read-event)))) |
825 ;; ### KLUDGE! ### sit and wait | |
826 ;; for some useless event to | |
827 ;; happen to fix the minibuffer bug. | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
828 (while (not (strokes-button-release-event-p (read-event)))) |
19347 | 829 (setq pix-locs (nreverse (cdr pix-locs)) |
830 grid-locs (strokes-renormalize-to-grid pix-locs)) | |
831 (strokes-fill-stroke | |
832 (strokes-eliminate-consecutive-redundancies grid-locs))) | |
833 ;; protected | |
834 (when (equal (buffer-name) strokes-buffer-name) | |
46116 | 835 (subst-char-in-region (point-min) (point-max) |
64023
22c5a8628828
(strokes): Finish `defgroup' description with period.
Juanma Barranquero <lekktu@gmail.com>
parents:
63219
diff
changeset
|
836 strokes-character ?\s) |
19347 | 837 (goto-char (point-min)) |
838 (bury-buffer))))))) | |
19345 | 839 |
840 (defun strokes-execute-stroke (stroke) | |
841 "Given STROKE, execute the command which corresponds to it. | |
842 The command will be executed provided one exists for that stroke, | |
843 based on the variable `strokes-minimum-match-score'. | |
844 If no stroke matches, nothing is done and return value is nil." | |
845 (let* ((match (strokes-match-stroke stroke strokes-global-map)) | |
846 (command (car match)) | |
847 (score (cdr match))) | |
46116 | 848 (cond ((and match (<= score strokes-minimum-match-score)) |
19345 | 849 (message "%s" command) |
850 (command-execute command)) | |
851 ((null strokes-global-map) | |
852 (if (file-exists-p strokes-file) | |
19347 | 853 (and (y-or-n-p |
19345 | 854 (format "No strokes loaded. Load `%s'? " |
855 strokes-file)) | |
856 (strokes-load-user-strokes)) | |
46116 | 857 (error "No strokes defined; use `strokes-global-set-stroke'"))) |
19345 | 858 (t |
859 (error | |
860 "No stroke matches; see variable `strokes-minimum-match-score'") | |
861 nil)))) | |
862 | |
863 ;;;###autoload | |
864 (defun strokes-do-stroke (event) | |
43233
ae3e8c9e9b87
(strokes-do-stroke, strokes-do-complex-stroke): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents:
41603
diff
changeset
|
865 "Read a simple stroke from the user and then execute its command. |
19345 | 866 This must be bound to a mouse event." |
867 (interactive "e") | |
868 (or strokes-mode (strokes-mode t)) | |
869 (strokes-execute-stroke (strokes-read-stroke nil event))) | |
870 | |
871 ;;;###autoload | |
872 (defun strokes-do-complex-stroke (event) | |
43233
ae3e8c9e9b87
(strokes-do-stroke, strokes-do-complex-stroke): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents:
41603
diff
changeset
|
873 "Read a complex stroke from the user and then execute its command. |
19345 | 874 This must be bound to a mouse event." |
875 (interactive "e") | |
876 (or strokes-mode (strokes-mode t)) | |
877 (strokes-execute-stroke (strokes-read-complex-stroke nil event))) | |
878 | |
879 ;;;###autoload | |
880 (defun strokes-describe-stroke (stroke) | |
881 "Displays the command which STROKE maps to, reading STROKE interactively." | |
882 (interactive | |
883 (list | |
884 (strokes-read-complex-stroke | |
46116 | 885 "Enter stroke to describe; end with button 3..."))) |
19345 | 886 (let* ((match (strokes-match-stroke stroke strokes-global-map)) |
46116 | 887 (command (car match)) |
19345 | 888 (score (cdr match))) |
46116 | 889 (if (and match |
890 (<= score strokes-minimum-match-score)) | |
19345 | 891 (message "That stroke maps to `%s'" command) |
892 (message "That stroke is undefined")) | |
893 (sleep-for 1))) ; helpful for recursive edits | |
894 | |
895 ;;;###autoload | |
19347 | 896 (defun strokes-help () |
64551
dc55ec2be671
(strokes-load-hook): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
897 "Get instruction on using the Strokes package." |
19347 | 898 (interactive) |
46116 | 899 (with-output-to-temp-buffer "*Help with Strokes*" |
900 (princ | |
64551
dc55ec2be671
(strokes-load-hook): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
901 (substitute-command-keys |
dc55ec2be671
(strokes-load-hook): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
902 "This is help for the strokes package. |
19345 | 903 |
19347 | 904 ------------------------------------------------------------ |
19345 | 905 |
19347 | 906 ** Strokes... |
19345 | 907 |
19347 | 908 The strokes package allows you to define strokes, made with |
909 the mouse or other pointer device, that Emacs can interpret as | |
910 corresponding to commands, and then executes the commands. It does | |
911 character recognition, so you don't have to worry about getting it | |
912 right every time. | |
19345 | 913 |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
914 Strokes also allows you to compose documents graphically. You can |
43233
ae3e8c9e9b87
(strokes-do-stroke, strokes-do-complex-stroke): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents:
41603
diff
changeset
|
915 fully edit documents in Chinese, Japanese, etc. based on Emacs |
46116 | 916 strokes. Once you've done so, you can ASCII compress-and-encode them |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
917 and then safely save them for later use, send letters to friends |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
918 \(using Emacs, of course). Strokes will later decode these documents, |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
919 extracting the strokes for editing use once again, so the editing |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
920 cycle can continue. |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
921 |
19347 | 922 Strokes are easy to program and fun to use. To start strokes going, |
923 you'll want to put the following line in your .emacs file as mentioned | |
924 in the commentary to strokes.el. | |
925 | |
926 This will load strokes when and only when you start Emacs on a window | |
927 system, with a mouse or other pointer device defined. | |
19345 | 928 |
19347 | 929 To toggle strokes-mode, you just do |
930 | |
931 > M-x strokes-mode | |
19345 | 932 |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
933 ** Strokes for controlling the behavior of Emacs... |
19345 | 934 |
19347 | 935 When you're ready to start defining strokes, just use the command |
19345 | 936 |
46116 | 937 > M-x strokes-global-set-stroke |
19345 | 938 |
19347 | 939 You will see a ` *strokes*' buffer which is waiting for you to enter in |
46116 | 940 your stroke. When you enter in the stroke, you draw with button 1 or |
941 button 2, and then end with button 3. Next, you enter in the command | |
19347 | 942 which will be executed when that stroke is invoked. Simple as that. |
943 For now, try to define a stroke to copy a region. This is a popular | |
944 edit command, so type | |
19345 | 945 |
46116 | 946 > M-x strokes-global-set-stroke |
19345 | 947 |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
948 Then, in the ` *strokes*' buffer, draw the letter `C' (for `copy') |
19347 | 949 and then, when it asks you to enter the command to map that to, type |
950 | |
951 > copy-region-as-kill | |
19345 | 952 |
19347 | 953 That's about as hard as it gets. |
46116 | 954 Remember: paint with button 1 or button 2 and then end with button 3. |
19345 | 955 |
19347 | 956 If ever you want to know what a certain strokes maps to, then do |
19345 | 957 |
46116 | 958 > M-x strokes-describe-stroke |
19345 | 959 |
19347 | 960 and you can enter in any arbitrary stroke. Remember: The strokes |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
961 package lets you program in simple and complex (multi-lift) strokes. |
19347 | 962 The only difference is how you *invoke* the two. You will most likely |
963 use simple strokes, as complex strokes were developed for | |
46116 | 964 Chinese/Japanese/Korean. So the shifted middle mouse button (S-mouse-2) will |
965 invoke the command `strokes-do-stroke'. | |
19345 | 966 |
19347 | 967 If ever you define a stroke which you don't like, then you can unset |
968 it with the command | |
19345 | 969 |
19347 | 970 > M-x strokes-unset-last-stroke |
19345 | 971 |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
972 You can always get an idea of what your current strokes look like with |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
973 the command |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
974 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
975 > M-x strokes-list-strokes |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
976 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
977 Your strokes will be displayed in alphabetical order (based on command |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
978 names) and the beginning of each simple stroke will be marked by a |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
979 color dot. Since you may have several simple strokes in a complex |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
980 stroke, the dot colors are arranged in the rainbow color sequence, |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
981 `ROYGBIV'. If you want a listing of your strokes from most recent |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
982 down, then use a prefix argument: |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
983 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
984 > C-u M-x strokes-list-strokes |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
985 |
19347 | 986 Your strokes are stored as you enter them. They get saved in a file |
987 called ~/.strokes, along with other strokes configuration variables. | |
988 You can change this location by setting the variable `strokes-file'. | |
989 You will be prompted to save them when you exit Emacs, or you can save | |
990 them with | |
19345 | 991 |
64551
dc55ec2be671
(strokes-load-hook): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
992 > M-x strokes-prompt-user-save-strokes |
19345 | 993 |
19347 | 994 Your strokes get loaded automatically when you enable `strokes-mode'. |
995 You can also load in your user-defined strokes with | |
19345 | 996 |
46116 | 997 > M-x strokes-load-user-strokes |
19345 | 998 |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
999 ** Strokes for pictographic editing... |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1000 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1001 If you'd like to create graphical files with strokes, you'll have to |
46116 | 1002 be running a version of Emacs with XPM support. You use the binding |
1003 to `strokes-compose-complex-stroke' to start drawing your strokes. | |
1004 These are just complex strokes, and thus continue drawing with mouse-1 | |
1005 or mouse-2 and end with mouse-3. Then the stroke image gets inserted | |
1006 into the buffer. You treat it somewhat like any other character, | |
1007 which you can copy, paste, delete, move, etc. When all is done, you | |
1008 may want to send the file, or save it. This is done with | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1009 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1010 > M-x strokes-encode-buffer |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1011 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1012 Likewise, to decode the strokes from a strokes-encoded buffer you do |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1013 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1014 > M-x strokes-decode-buffer |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1015 |
19347 | 1016 ** A few more important things... |
19345 | 1017 |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1018 o The command `strokes-do-complex-stroke' is invoked with M-mouse-2, |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1019 so that you can execute complex strokes (i.e. with more than one lift) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1020 if preferred. |
19345 | 1021 |
19347 | 1022 o Strokes are a bit computer-dependent in that they depend somewhat on |
1023 the speed of the computer you're working on. This means that you | |
1024 may have to tweak some variables. You can read about them in the | |
46116 | 1025 commentary of `strokes.el'. Better to just use \\[apropos] and read their |
19347 | 1026 docstrings. All variables/functions start with `strokes'. The one |
1027 variable which many people wanted to see was | |
1028 `strokes-use-strokes-buffer' which allows the user to use strokes | |
1029 silently--without displaying the strokes. All variables can be set | |
64551
dc55ec2be671
(strokes-load-hook): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
1030 by customizing the group `strokes' via \\[customize-group].")) |
46116 | 1031 (set-buffer standard-output) |
46327
4d662e939eab
(strokes-help): Call print-help-return-message
Richard M. Stallman <rms@gnu.org>
parents:
46116
diff
changeset
|
1032 (help-mode) |
4d662e939eab
(strokes-help): Call print-help-return-message
Richard M. Stallman <rms@gnu.org>
parents:
46116
diff
changeset
|
1033 (print-help-return-message))) |
19345 | 1034 |
46116 | 1035 (defalias 'strokes-report-bug 'report-emacs-bug) |
19345 | 1036 |
1037 (defsubst strokes-fill-current-buffer-with-whitespace () | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1038 "Erase the contents of the current buffer and fill it with whitespace." |
19345 | 1039 (erase-buffer) |
1040 (loop repeat (frame-height) do | |
64023
22c5a8628828
(strokes): Finish `defgroup' description with period.
Juanma Barranquero <lekktu@gmail.com>
parents:
63219
diff
changeset
|
1041 (insert-char ?\s (1- (frame-width))) |
19345 | 1042 (newline)) |
1043 (goto-char (point-min))) | |
1044 | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1045 (defun strokes-window-configuration-changed-p () |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1046 "Non-nil if the `strokes-window-configuration' frame properties changed. |
46116 | 1047 This is based on the last time `strokes-window-configuration' was updated." |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1048 (compare-window-configurations (current-window-configuration) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1049 strokes-window-configuration)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1050 |
19345 | 1051 (defun strokes-update-window-configuration () |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1052 "Ensure that `strokes-window-configuration' is up-to-date." |
19345 | 1053 (interactive) |
1054 (let ((current-window (selected-window))) | |
1055 (cond ((or (window-minibuffer-p current-window) | |
1056 (window-dedicated-p current-window)) | |
1057 ;; don't try to update strokes window configuration | |
1058 ;; if window is dedicated or a minibuffer | |
1059 nil) | |
1060 ((or (interactive-p) | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1061 (not (buffer-live-p (get-buffer strokes-buffer-name))) |
19345 | 1062 (null strokes-window-configuration)) |
1063 ;; create `strokes-window-configuration' from scratch... | |
1064 (save-excursion | |
1065 (save-window-excursion | |
1066 (get-buffer-create strokes-buffer-name) | |
1067 (set-window-buffer current-window strokes-buffer-name) | |
1068 (delete-other-windows) | |
1069 (fundamental-mode) | |
1070 (auto-save-mode 0) | |
1071 (if (featurep 'font-lock) | |
1072 (font-lock-mode 0)) | |
1073 (abbrev-mode 0) | |
1074 (buffer-disable-undo (current-buffer)) | |
1075 (setq truncate-lines nil) | |
1076 (strokes-fill-current-buffer-with-whitespace) | |
1077 (setq strokes-window-configuration (current-window-configuration)) | |
1078 (bury-buffer)))) | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1079 ((strokes-window-configuration-changed-p) ; simple update |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1080 ;; update the strokes-window-configuration for this |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1081 ;; specific frame... |
19345 | 1082 (save-excursion |
1083 (save-window-excursion | |
1084 (set-window-buffer current-window strokes-buffer-name) | |
1085 (delete-other-windows) | |
1086 (strokes-fill-current-buffer-with-whitespace) | |
1087 (setq strokes-window-configuration (current-window-configuration)) | |
1088 (bury-buffer))))))) | |
1089 | |
1090 ;;;###autoload | |
1091 (defun strokes-load-user-strokes () | |
1092 "Load user-defined strokes from file named by `strokes-file'." | |
1093 (interactive) | |
1094 (cond ((and (file-exists-p strokes-file) | |
1095 (file-readable-p strokes-file)) | |
1096 (load-file strokes-file)) | |
1097 ((interactive-p) | |
1098 (error "Trouble loading user-defined strokes; nothing done")) | |
1099 (t | |
1100 (message "No user-defined strokes, sorry")))) | |
1101 | |
1102 (defun strokes-prompt-user-save-strokes () | |
1103 "Save user-defined strokes to file named by `strokes-file'." | |
1104 (interactive) | |
1105 (save-excursion | |
1106 (let ((current strokes-global-map)) | |
1107 (unwind-protect | |
1108 (progn | |
1109 (setq strokes-global-map nil) | |
1110 (strokes-load-user-strokes) | |
1111 (if (and (not (equal current strokes-global-map)) | |
1112 (or (interactive-p) | |
43233
ae3e8c9e9b87
(strokes-do-stroke, strokes-do-complex-stroke): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents:
41603
diff
changeset
|
1113 (yes-or-no-p "Save your strokes? "))) |
19345 | 1114 (progn |
1115 (require 'pp) ; pretty-print variables | |
1116 (message "Saving strokes in %s..." strokes-file) | |
1117 (get-buffer-create "*saved-strokes*") | |
1118 (set-buffer "*saved-strokes*") | |
1119 (erase-buffer) | |
1120 (emacs-lisp-mode) | |
1121 (goto-char (point-min)) | |
41570
7456b3a795c4
(strokes-prompt-user-save-strokes): Use insert instead of insert-string.
Pavel Janík <Pavel@Janik.cz>
parents:
31640
diff
changeset
|
1122 (insert |
46116 | 1123 ";; -*- emacs-lisp -*-\n") |
41570
7456b3a795c4
(strokes-prompt-user-save-strokes): Use insert instead of insert-string.
Pavel Janík <Pavel@Janik.cz>
parents:
31640
diff
changeset
|
1124 (insert (format ";;; saved strokes for %s, as of %s\n\n" |
41603
4c61a8ae179d
Fix indentation of previous change.
Richard M. Stallman <rms@gnu.org>
parents:
41570
diff
changeset
|
1125 (user-full-name) |
4c61a8ae179d
Fix indentation of previous change.
Richard M. Stallman <rms@gnu.org>
parents:
41570
diff
changeset
|
1126 (format-time-string "%B %e, %Y" nil))) |
19345 | 1127 (message "Saving strokes in %s..." strokes-file) |
46116 | 1128 (insert (format "(setq strokes-global-map\n'%s)" |
41603
4c61a8ae179d
Fix indentation of previous change.
Richard M. Stallman <rms@gnu.org>
parents:
41570
diff
changeset
|
1129 (pp current))) |
19345 | 1130 (message "Saving strokes in %s..." strokes-file) |
1131 (indent-region (point-min) (point-max) nil) | |
1132 (write-region (point-min) | |
1133 (point-max) | |
1134 strokes-file)) | |
1135 (message "(no changes need to be saved)"))) | |
1136 ;; protected | |
1137 (if (get-buffer "*saved-strokes*") | |
1138 (kill-buffer (get-buffer "*saved-strokes*"))) | |
1139 (setq strokes-global-map current))))) | |
1140 | |
1141 (defun strokes-toggle-strokes-buffer (&optional arg) | |
1142 "Toggle the use of the strokes buffer. | |
46116 | 1143 In other words, toggle the variable `strokes-use-strokes-buffer'. |
19345 | 1144 With ARG, use strokes buffer if and only if ARG is positive or true. |
1145 Returns value of `strokes-use-strokes-buffer'." | |
1146 (interactive "P") | |
1147 (setq strokes-use-strokes-buffer | |
1148 (if arg (> (prefix-numeric-value arg) 0) | |
1149 (not strokes-use-strokes-buffer)))) | |
1150 | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1151 (defun strokes-xpm-for-stroke (&optional stroke bufname b/w-only) |
46116 | 1152 "Create an XPM pixmap for the given STROKE in buffer ` *strokes-xpm*'. |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1153 If STROKE is not supplied, then `strokes-last-stroke' will be used. |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1154 Optional BUFNAME to name something else. |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1155 The pixmap will contain time information via rainbow dot colors |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1156 where each individual strokes begins. |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1157 Optional B/W-ONLY non-nil will create a mono pixmap, not intended |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1158 for trying to figure out the order of strokes, but rather for reading |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1159 the stroke as a character in some language." |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1160 (interactive) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1161 (save-excursion |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1162 (let ((buf (get-buffer-create (or bufname " *strokes-xpm*"))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1163 (stroke (strokes-eliminate-consecutive-redundancies |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1164 (strokes-fill-stroke |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1165 (strokes-renormalize-to-grid (or stroke |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1166 strokes-last-stroke) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1167 31)))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1168 (lift-flag t) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1169 (rainbow-chars (list ?R ?O ?Y ?G ?B ?P))) ; ROYGBIV w/o indigo |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1170 (set-buffer buf) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1171 (erase-buffer) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1172 (insert strokes-xpm-header) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1173 (loop repeat 33 do |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1174 (insert ?\") |
64023
22c5a8628828
(strokes): Finish `defgroup' description with period.
Juanma Barranquero <lekktu@gmail.com>
parents:
63219
diff
changeset
|
1175 (insert-char ?\s 33) |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1176 (insert "\",") |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1177 (newline) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1178 finally |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1179 (forward-line -1) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1180 (end-of-line) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1181 (insert "}\n")) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1182 (loop for point in stroke |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1183 for x = (car-safe point) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1184 for y = (cdr-safe point) do |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1185 (cond ((consp point) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1186 ;; draw a point, and possibly a starting-point |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1187 (if (and lift-flag (not b/w-only)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1188 ;; mark starting point with the appropriate color |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1189 (let ((char (or (car rainbow-chars) ?\.))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1190 (loop for i from 0 to 2 do |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1191 (loop for j from 0 to 2 do |
46116 | 1192 (goto-line (+ 16 i y)) |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1193 (forward-char (+ 1 j x)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1194 (delete-char 1) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1195 (insert char))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1196 (setq rainbow-chars (cdr rainbow-chars) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1197 lift-flag nil)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1198 ;; Otherwise, just plot the point... |
46116 | 1199 (goto-line (+ 17 y)) |
1200 (forward-char (+ 2 x)) | |
64023
22c5a8628828
(strokes): Finish `defgroup' description with period.
Juanma Barranquero <lekktu@gmail.com>
parents:
63219
diff
changeset
|
1201 (subst-char-in-region (point) (1+ (point)) ?\s ?\*))) |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1202 ((strokes-lift-p point) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1203 ;; a lift--tell the loop to X out the next point... |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1204 (setq lift-flag t)))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1205 (when (interactive-p) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1206 (pop-to-buffer " *strokes-xpm*") |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1207 ;; (xpm-mode 1) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1208 (goto-char (point-min)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1209 (put-image (create-image (buffer-string) 'xpm t :ascent 100) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1210 (line-end-position)))))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1211 |
46116 | 1212 ;;; Strokes Edit stuff... ### NOT IMPLEMENTED YET ### |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1213 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1214 ;;(defun strokes-edit-quit () |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1215 ;; (interactive) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1216 ;; (or (one-window-p t 0) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1217 ;; (delete-window)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1218 ;; (kill-buffer "*Strokes List*")) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1219 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1220 ;;(define-derived-mode edit-strokes-mode list-mode |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1221 ;; "Edit-Strokes" |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1222 ;; "Major mode for `edit-strokes' and `list-strokes' buffers. |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1223 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1224 ;;Editing commands: |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1225 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1226 ;;\\{edit-strokes-mode-map}" |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1227 ;; (setq truncate-lines nil |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1228 ;; auto-show-mode nil ; don't want problems here either |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1229 ;; mode-popup-menu edit-strokes-menu) ; what about extent-specific stuff? |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1230 ;; (and (featurep 'menubar) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1231 ;; current-menubar |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1232 ;; (set (make-local-variable 'current-menubar) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1233 ;; (copy-sequence current-menubar)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1234 ;; (add-submenu nil edit-strokes-menu))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1235 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1236 ;;(let ((map edit-strokes-mode-map)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1237 ;; (define-key map "<" 'beginning-of-buffer) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1238 ;; (define-key map ">" 'end-of-buffer) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1239 ;; ;; (define-key map "c" 'strokes-copy-other-face) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1240 ;; ;; (define-key map "C" 'strokes-copy-this-face) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1241 ;; ;; (define-key map "s" 'strokes-smaller) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1242 ;; ;; (define-key map "l" 'strokes-larger) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1243 ;; ;; (define-key map "b" 'strokes-bold) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1244 ;; ;; (define-key map "i" 'strokes-italic) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1245 ;; (define-key map "e" 'strokes-list-edit) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1246 ;; ;; (define-key map "f" 'strokes-font) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1247 ;; ;; (define-key map "u" 'strokes-underline) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1248 ;; ;; (define-key map "t" 'strokes-truefont) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1249 ;; ;; (define-key map "F" 'strokes-foreground) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1250 ;; ;; (define-key map "B" 'strokes-background) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1251 ;; ;; (define-key map "D" 'strokes-doc-string) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1252 ;; (define-key map "a" 'strokes-global-set-stroke) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1253 ;; (define-key map "d" 'strokes-list-delete-stroke) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1254 ;; ;; (define-key map "n" 'strokes-list-next) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1255 ;; ;; (define-key map "p" 'strokes-list-prev) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1256 ;; ;; (define-key map " " 'strokes-list-next) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1257 ;; ;; (define-key map "\C-?" 'strokes-list-prev) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1258 ;; (define-key map "g" 'strokes-list-strokes) ; refresh display |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1259 ;; (define-key map "q" 'strokes-edit-quit) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1260 ;; (define-key map [(control c) (control c)] 'bury-buffer)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1261 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1262 ;;;;;###autoload |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1263 ;;(defun strokes-edit-strokes (&optional chronological strokes-map) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1264 ;; ;; ### DEAL WITH THE 2nd ARGUMENT ISSUE! ### |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1265 ;; "Edit strokes in a pop-up buffer containing strokes and their definitions. |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1266 ;;If STROKES-MAP is not given, `strokes-global-map' will be used instead. |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1267 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1268 ;;Editing commands: |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1269 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1270 ;;\\{edit-faces-mode-map}" |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1271 ;; (interactive "P") |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1272 ;; (pop-to-buffer (get-buffer-create "*Strokes List*")) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1273 ;; (reset-buffer (current-buffer)) ; handy function from minibuf.el |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1274 ;; (setq strokes-map (or strokes-map |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1275 ;; strokes-global-map |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1276 ;; (progn |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1277 ;; (strokes-load-user-strokes) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1278 ;; strokes-global-map))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1279 ;; (or chronological |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1280 ;; (setq strokes-map (sort (copy-sequence strokes-map) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1281 ;; 'strokes-alphabetic-lessp))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1282 ;; ;; (push-window-configuration) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1283 ;; (insert |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1284 ;; "Command Stroke\n" |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1285 ;; "------- ------") |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1286 ;; (loop for def in strokes-map |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1287 ;; for i from 0 to (1- (length strokes-map)) do |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1288 ;; (let ((stroke (car def)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1289 ;; (command-name (symbol-name (cdr def)))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1290 ;; (strokes-xpm-for-stroke stroke " *strokes-xpm*") |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1291 ;; (newline 2) |
64023
22c5a8628828
(strokes): Finish `defgroup' description with period.
Juanma Barranquero <lekktu@gmail.com>
parents:
63219
diff
changeset
|
1292 ;; (insert-char ?\s 45) |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1293 ;; (beginning-of-line) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1294 ;; (insert command-name) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1295 ;; (beginning-of-line) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1296 ;; (forward-char 45) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1297 ;; (set (intern (format "strokes-list-annotation-%d" i)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1298 ;; (make-annotation (make-glyph |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1299 ;; (list |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1300 ;; (vector 'xpm |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1301 ;; :data (buffer-substring |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1302 ;; (point-min " *strokes-xpm*") |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1303 ;; (point-max " *strokes-xpm*") |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1304 ;; " *strokes-xpm*")) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1305 ;; [string :data "[Stroke]"])) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1306 ;; (point) 'text)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1307 ;; (set-annotation-data (symbol-value (intern (format "strokes-list-annotation-%d" i))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1308 ;; def)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1309 ;; finally do (kill-region (1+ (point)) (point-max))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1310 ;; (edit-strokes-mode) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1311 ;; (goto-char (point-min))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1312 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1313 ;;;;;###autoload |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1314 ;;(defalias 'edit-strokes 'strokes-edit-strokes) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1315 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1316 (eval-when-compile (defvar view-mode-map)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1317 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1318 ;;;###autoload |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1319 (defun strokes-list-strokes (&optional chronological strokes-map) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1320 "Pop up a buffer containing an alphabetical listing of strokes in STROKES-MAP. |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1321 With CHRONOLOGICAL prefix arg \(\\[universal-argument]\) list strokes |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1322 chronologically by command name. |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1323 If STROKES-MAP is not given, `strokes-global-map' will be used instead." |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1324 (interactive "P") |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1325 (setq strokes-map (or strokes-map |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1326 strokes-global-map |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1327 (progn |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1328 (strokes-load-user-strokes) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1329 strokes-global-map))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1330 (if (not chronological) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1331 ;; then alphabetize the strokes based on command names... |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1332 (setq strokes-map (sort (copy-sequence strokes-map) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1333 (function strokes-alphabetic-lessp)))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1334 (let ((config (current-window-configuration))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1335 (set-buffer (get-buffer-create "*Strokes List*")) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1336 (setq buffer-read-only nil) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1337 (erase-buffer) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1338 (insert |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1339 "Command Stroke\n" |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1340 "------- ------") |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1341 (loop for def in strokes-map do |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1342 (let ((stroke (car def)) |
54598
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
1343 (command-name (if (symbolp (cdr def)) |
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
1344 (symbol-name (cdr def)) |
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
1345 (prin1-to-string (cdr def))))) |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1346 (strokes-xpm-for-stroke stroke " *strokes-xpm*") |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1347 (newline 2) |
64023
22c5a8628828
(strokes): Finish `defgroup' description with period.
Juanma Barranquero <lekktu@gmail.com>
parents:
63219
diff
changeset
|
1348 (insert-char ?\s 45) |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1349 (beginning-of-line) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1350 (insert command-name) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1351 (beginning-of-line) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1352 (forward-char 45) |
54598
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
1353 (insert-image |
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
1354 (create-image (with-current-buffer " *strokes-xpm*" |
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
1355 (buffer-string)) |
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
1356 'xpm t |
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
1357 :color-symbols |
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
1358 `(("foreground" |
4ca4b1218e81
(strokes-global-set-stroke-string): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52778
diff
changeset
|
1359 . ,(frame-parameter nil 'foreground-color)))))) |
57546
84c10e765f2b
(strokes-list-strokes): Don't try to delete char at eob.
Richard M. Stallman <rms@gnu.org>
parents:
54598
diff
changeset
|
1360 finally do (unless (eobp) |
84c10e765f2b
(strokes-list-strokes): Don't try to delete char at eob.
Richard M. Stallman <rms@gnu.org>
parents:
54598
diff
changeset
|
1361 (kill-region (1+ (point)) (point-max)))) |
43233
ae3e8c9e9b87
(strokes-do-stroke, strokes-do-complex-stroke): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents:
41603
diff
changeset
|
1362 (view-buffer "*Strokes List*" nil) |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1363 (set (make-local-variable 'view-mode-map) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1364 (let ((map (copy-keymap view-mode-map))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1365 (define-key map "q" `(lambda () |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1366 (interactive) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1367 (View-quit) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1368 (set-window-configuration ,config))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1369 map)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1370 (goto-char (point-min)))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1371 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1372 (defun strokes-alphabetic-lessp (stroke1 stroke2) |
79290
38be7cabc3fb
(strokes-alphabetic-lessp): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
78492
diff
changeset
|
1373 "Return t if STROKE1's command name precedes STROKE2's in lexicographic order." |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1374 (let ((command-name-1 (symbol-name (cdr stroke1))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1375 (command-name-2 (symbol-name (cdr stroke2)))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1376 (string-lessp command-name-1 command-name-2))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1377 |
46116 | 1378 (defvar strokes-mode-map |
1379 (let ((map (make-sparse-keymap))) | |
1380 (define-key map [(shift down-mouse-2)] 'strokes-do-stroke) | |
1381 (define-key map [(meta down-mouse-2)] 'strokes-do-complex-stroke) | |
1382 map)) | |
1383 | |
19345 | 1384 ;;;###autoload |
46116 | 1385 (define-minor-mode strokes-mode |
1386 "Toggle Strokes global minor mode.\\<strokes-mode-map> | |
1387 With ARG, turn strokes on if and only if ARG is positive. | |
1388 Strokes are pictographic mouse gestures which invoke commands. | |
1389 Strokes are invoked with \\[strokes-do-stroke]. You can define | |
1390 new strokes with \\[strokes-global-set-stroke]. See also | |
1391 \\[strokes-do-complex-stroke] for `complex' strokes. | |
19345 | 1392 |
1393 To use strokes for pictographic editing, such as Chinese/Japanese, use | |
46116 | 1394 \\[strokes-compose-complex-stroke], which draws strokes and inserts them. |
1395 Encode/decode your strokes with \\[strokes-encode-buffer], | |
1396 \\[strokes-decode-buffer]. | |
19345 | 1397 |
46116 | 1398 \\{strokes-mode-map}" |
1399 nil strokes-modeline-string strokes-mode-map | |
1400 :group 'strokes :global t | |
1401 (cond ((not (display-mouse-p)) | |
1402 (error "Can't use Strokes without a mouse")) | |
1403 (strokes-mode ; turn on strokes | |
1404 (and (file-exists-p strokes-file) | |
1405 (null strokes-global-map) | |
1406 (strokes-load-user-strokes)) | |
1407 (add-hook 'kill-emacs-query-functions | |
1408 'strokes-prompt-user-save-strokes) | |
1409 (add-hook 'select-frame-hook | |
1410 'strokes-update-window-configuration) | |
1411 (strokes-update-window-configuration)) | |
1412 (t ; turn off strokes | |
1413 (if (get-buffer strokes-buffer-name) | |
1414 (kill-buffer (get-buffer strokes-buffer-name))) | |
1415 (remove-hook 'select-frame-hook | |
1416 'strokes-update-window-configuration)))) | |
1417 | |
19345 | 1418 |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1419 ;;;; strokes-xpm stuff (later may be separate)... |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1420 |
46116 | 1421 ;; This is the stuff that will eventually be used for composing letters in |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1422 ;; any language, compression, decompression, graphics, editing, etc. |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1423 |
63219
cf36e45beb9c
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-383
Miles Bader <miles@gnu.org>
parents:
57743
diff
changeset
|
1424 (defface strokes-char '((t (:background "lightgray"))) |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1425 "Face for strokes characters." |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1426 :version "21.1" |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1427 :group 'strokes) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1428 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1429 (put 'strokes 'char-table-extra-slots 0) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1430 (defconst strokes-char-table (make-char-table 'strokes) ; |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1431 "The table which stores values for the character keys.") |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1432 (aset strokes-char-table ?0 0) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1433 (aset strokes-char-table ?1 1) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1434 (aset strokes-char-table ?2 2) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1435 (aset strokes-char-table ?3 3) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1436 (aset strokes-char-table ?4 4) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1437 (aset strokes-char-table ?5 5) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1438 (aset strokes-char-table ?6 6) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1439 (aset strokes-char-table ?7 7) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1440 (aset strokes-char-table ?8 8) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1441 (aset strokes-char-table ?9 9) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1442 (aset strokes-char-table ?a 10) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1443 (aset strokes-char-table ?b 11) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1444 (aset strokes-char-table ?c 12) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1445 (aset strokes-char-table ?d 13) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1446 (aset strokes-char-table ?e 14) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1447 (aset strokes-char-table ?f 15) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1448 (aset strokes-char-table ?g 16) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1449 (aset strokes-char-table ?h 17) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1450 (aset strokes-char-table ?i 18) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1451 (aset strokes-char-table ?j 19) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1452 (aset strokes-char-table ?k 20) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1453 (aset strokes-char-table ?l 21) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1454 (aset strokes-char-table ?m 22) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1455 (aset strokes-char-table ?n 23) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1456 (aset strokes-char-table ?o 24) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1457 (aset strokes-char-table ?p 25) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1458 (aset strokes-char-table ?q 26) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1459 (aset strokes-char-table ?r 27) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1460 (aset strokes-char-table ?s 28) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1461 (aset strokes-char-table ?t 29) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1462 (aset strokes-char-table ?u 30) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1463 (aset strokes-char-table ?v 31) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1464 (aset strokes-char-table ?w 32) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1465 (aset strokes-char-table ?x 33) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1466 (aset strokes-char-table ?y 34) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1467 (aset strokes-char-table ?z 35) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1468 (aset strokes-char-table ?A 36) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1469 (aset strokes-char-table ?B 37) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1470 (aset strokes-char-table ?C 38) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1471 (aset strokes-char-table ?D 39) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1472 (aset strokes-char-table ?E 40) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1473 (aset strokes-char-table ?F 41) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1474 (aset strokes-char-table ?G 42) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1475 (aset strokes-char-table ?H 43) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1476 (aset strokes-char-table ?I 44) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1477 (aset strokes-char-table ?J 45) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1478 (aset strokes-char-table ?K 46) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1479 (aset strokes-char-table ?L 47) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1480 (aset strokes-char-table ?M 48) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1481 (aset strokes-char-table ?N 49) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1482 (aset strokes-char-table ?O 50) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1483 (aset strokes-char-table ?P 51) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1484 (aset strokes-char-table ?Q 52) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1485 (aset strokes-char-table ?R 53) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1486 (aset strokes-char-table ?S 54) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1487 (aset strokes-char-table ?T 55) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1488 (aset strokes-char-table ?U 56) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1489 (aset strokes-char-table ?V 57) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1490 (aset strokes-char-table ?W 58) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1491 (aset strokes-char-table ?X 59) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1492 (aset strokes-char-table ?Y 60) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1493 (aset strokes-char-table ?Z 61) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1494 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1495 (defconst strokes-base64-chars |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1496 ;; I wanted to make this a vector of individual like (vector ?0 |
46116 | 1497 ;; ?1 ?2 ...), but `concat' refuses to accept single |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1498 ;; characters. |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1499 (vector "0" "1" "2" "3" "4" "5" "6" "7" "8" "9" |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1500 "a" "b" "c" "d" "e" "f" "g" "h" "i" "j" "k" "l" "m" "n" "o" |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1501 "p" "q" "r" "s" "t" "u" "v" "w" "x" "y" "z" "A" "B" "C" "D" |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1502 "E" "F" "G" "H" "I" "J" "K" "L" "M" "N" "O" "P" "Q" "R" "S" |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1503 "T" "U" "V" "W" "X" "Y" "Z") |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1504 ;; (vector [?0] [?1] [?2] [?3] [?4] [?5] [?6] [?7] [?8] [?9] |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1505 ;; [?a] [?b] [?c] [?d] [?e] [?f] [?g] [?h] [?i] [?j] |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1506 ;; [?k] [?l] [?m] [?n] [?o] [?p] [?q] [?r] [?s] [?t] |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1507 ;; [?u] [?v] [?w] [?x] [?y] [?z] |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1508 ;; [?A] [?B] [?C] [?D] [?E] [?F] [?G] [?H] [?I] [?J] |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1509 ;; [?K] [?L] [?M] [?N] [?O] [?P] [?Q] [?R] [?S] [?T] |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1510 ;; [?U] [?V] [?W] [?X] [?Y] [?Z]) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1511 "Character vector for fast lookup of base-64 encoding of numbers in [0,61].") |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1512 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1513 (defsubst strokes-xpm-char-on-p (char) |
46116 | 1514 "Non-nil if CHAR represents an `on' bit in the XPM." |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1515 (eq char ?*)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1516 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1517 (defsubst strokes-xpm-char-bit-p (char) |
46116 | 1518 "Non-nil if CHAR represents an `on' or `off' bit in the XPM." |
64023
22c5a8628828
(strokes): Finish `defgroup' description with period.
Juanma Barranquero <lekktu@gmail.com>
parents:
63219
diff
changeset
|
1519 (or (eq char ?\s) |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1520 (eq char ?*))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1521 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1522 ;;(defsubst strokes-xor (a b) ### Should I make this an inline function? ### |
78492
7c8949dbfa0d
Replace `iff' in doc-strings and comments.
Glenn Morris <rgm@gnu.org>
parents:
78236
diff
changeset
|
1523 ;; "T if one and only one of A and B is non-nil; otherwise, returns nil. |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1524 ;;NOTE: Don't use this as a numeric xor since it treats all non-nil |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1525 ;; values as t including `0' (zero)." |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1526 ;; (eq (null a) (not (null b)))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1527 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1528 (defsubst strokes-xpm-encode-length-as-string (length) |
46116 | 1529 "Given some LENGTH in [0,62) do a fast lookup of its encoding." |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1530 (aref strokes-base64-chars length)) |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46327
diff
changeset
|
1531 |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1532 (defsubst strokes-xpm-decode-char (character) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1533 "Given a CHARACTER, do a fast lookup to find its corresponding integer value." |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1534 (aref strokes-char-table character)) |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46327
diff
changeset
|
1535 |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1536 (defun strokes-xpm-to-compressed-string (&optional xpm-buffer) |
46116 | 1537 "Convert XPM in XPM-BUFFER to compressed string representing the stroke. |
1538 XPM-BUFFER defaults to ` *strokes-xpm*'." | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1539 (save-excursion |
46116 | 1540 (set-buffer (setq xpm-buffer (or xpm-buffer " *strokes-xpm*"))) |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1541 (goto-char (point-min)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1542 (search-forward "/* pixels */") ; skip past header junk |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1543 (forward-char 2) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1544 ;; a note for below: |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1545 ;; the `current-char' is the char being counted -- NOT the char at (point) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1546 ;; which happens to be called `char-at-point' |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1547 (let ((compressed-string "+/") ; initialize the output |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1548 (count 0) ; keep a current count of |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1549 ; `current-char' |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1550 (last-char-was-on-p t) ; last entered stream |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1551 ; represented `on' bits |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1552 (current-char-is-on-p nil) ; current stream represents `on' bits |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1553 (char-at-point (char-after))) ; read the first char |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1554 (while (not (eq char-at-point ?})) ; a `}' denotes the |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1555 ; end of the pixmap |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1556 (cond ((zerop count) ; must restart counting |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1557 ;; check to see if the `char-at-point' is an actual pixmap bit |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1558 (when (strokes-xpm-char-bit-p char-at-point) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1559 (setq count 1 |
46116 | 1560 current-char-is-on-p (strokes-xpm-char-on-p char-at-point))) |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1561 (forward-char 1)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1562 ((= count 61) ; maximum single char's |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1563 ; encoding length |
46116 | 1564 (setq compressed-string |
1565 (concat compressed-string | |
1566 ;; add a zero-length encoding when | |
1567 ;; necessary | |
1568 (when (eq last-char-was-on-p | |
1569 current-char-is-on-p) | |
1570 ;; "0" | |
1571 (strokes-xpm-encode-length-as-string 0)) | |
1572 (strokes-xpm-encode-length-as-string 61)) | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1573 last-char-was-on-p current-char-is-on-p |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1574 count 0)) ; note that we just set |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1575 ; count=0 and *don't* advance |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1576 ; (point) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1577 ((strokes-xpm-char-bit-p char-at-point) ; an actual xpm bit |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1578 (if (eq current-char-is-on-p |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1579 (strokes-xpm-char-on-p char-at-point)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1580 ;; yet another of the same bit-type, so we continue |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1581 ;; counting... |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1582 (progn |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1583 (incf count) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1584 (forward-char 1)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1585 ;; otherwise, it's the opposite bit-type, so we do a |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1586 ;; write and then restart count ### NOTE (for myself |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1587 ;; to be aware of) ### I really should advance |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1588 ;; (point) in this case instead of letting another |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1589 ;; iteration go through and letting the case: count=0 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1590 ;; take care of this stuff for me. That's why |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1591 ;; there's no (forward-char 1) below. |
46116 | 1592 (setq compressed-string |
1593 (concat compressed-string | |
1594 ;; add a zero-length encoding when | |
1595 ;; necessary | |
1596 (when (eq last-char-was-on-p | |
1597 current-char-is-on-p) | |
1598 ;; "0" | |
1599 (strokes-xpm-encode-length-as-string 0)) | |
1600 (strokes-xpm-encode-length-as-string count)) | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1601 count 0 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1602 last-char-was-on-p current-char-is-on-p))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1603 (t ; ELSE it's some other useless |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1604 ; char, like `"' or `,' |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1605 (forward-char 1))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1606 (setq char-at-point (char-after))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1607 (concat compressed-string |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1608 (when (> count 0) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1609 (concat (when (eq last-char-was-on-p |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1610 current-char-is-on-p) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1611 ;; "0" |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1612 (strokes-xpm-encode-length-as-string 0)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1613 (strokes-xpm-encode-length-as-string count))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1614 "/")))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1615 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1616 ;;;###autoload |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1617 (defun strokes-decode-buffer (&optional buffer force) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1618 "Decode stroke strings in BUFFER and display their corresponding glyphs. |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1619 Optional BUFFER defaults to the current buffer. |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1620 Optional FORCE non-nil will ignore the buffer's read-only status." |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1621 (interactive) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1622 ;; (interactive "*bStrokify buffer: ") |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1623 (save-excursion |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1624 (set-buffer (setq buffer (get-buffer (or buffer (current-buffer))))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1625 (when (or (not buffer-read-only) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1626 force |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1627 inhibit-read-only |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1628 (y-or-n-p |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1629 (format "Buffer %s is read-only. Strokify anyway? " buffer))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1630 (let ((inhibit-read-only t)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1631 (message "Strokifying %s..." buffer) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1632 (goto-char (point-min)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1633 (let (ext string image) |
46116 | 1634 ;; The comment below is what I'd have to do if I wanted to |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1635 ;; deal with random newlines in the midst of the compressed |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1636 ;; strings. If I do this, I'll also have to change |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1637 ;; `strokes-xpm-to-compress-string' to deal with the newline, |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1638 ;; and possibly other whitespace stuff. YUCK! |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1639 ;; (while (re-search-forward "\\+/\\(\\w\\|\\)+/" nil t nil (get-buffer buffer)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1640 (while (with-current-buffer buffer |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1641 (when (re-search-forward "\\+/\\(\\w+\\)/" nil t nil) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1642 (setq string (match-string 1)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1643 (goto-char (match-end 0)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1644 (replace-match " ") |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1645 t)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1646 (strokes-xpm-for-compressed-string string " *strokes-xpm*") |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1647 (setq image (create-image (with-current-buffer " *strokes-xpm*" |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1648 (buffer-string)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1649 'xpm t)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1650 (insert-image image |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1651 (propertize " " |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1652 'type 'stroke-glyph |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1653 'stroke-glyph image |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1654 'data string)))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1655 (message "Strokifying %s...done" buffer))))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1656 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1657 (defun strokes-encode-buffer (&optional buffer force) |
46116 | 1658 "Convert the glyphs in BUFFER to their base-64 ASCII representations. |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1659 Optional BUFFER defaults to the current buffer. |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1660 Optional FORCE non-nil will ignore the buffer's read-only status." |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1661 ;; ### NOTE !!! ### (for me) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1662 ;; For later on, you can/should make the inserted strings atomic |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1663 ;; extents, so that the users have a clue that they shouldn't be |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1664 ;; editing inside them. Plus, if you make them extents, you can |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1665 ;; very easily just hide the glyphs, so if you unstrokify, and the |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1666 ;; restrokify, then those that already are glyphed don't need to be |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1667 ;; re-calculated, etc. It's just nicer that way. The only things |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1668 ;; to worry about is cleanup (i.e. do the glyphs get gc'd when the |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1669 ;; buffer is killed? |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1670 ;; (interactive "*bUnstrokify buffer: ") |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1671 (interactive) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1672 (save-excursion |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1673 (set-buffer (setq buffer (or buffer (current-buffer)))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1674 (when (or (not buffer-read-only) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1675 force |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1676 inhibit-read-only |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1677 (y-or-n-p |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1678 (format "Buffer %s is read-only. Encode anyway? " buffer))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1679 (message "Encoding strokes in %s..." buffer) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1680 ;; (map-extents |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1681 ;; (lambda (ext buf) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1682 ;; (when (eq (extent-property ext 'type) 'stroke-glyph) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1683 ;; (goto-char (extent-start-position ext)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1684 ;; (delete-char 1) ; ### What the hell do I do here? ### |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1685 ;; (insert "+/" (extent-property ext 'data) "/") |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1686 ;; (delete-extent ext)))))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1687 (let ((inhibit-read-only t) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1688 (start nil) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1689 glyph) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1690 (while (or (and (bobp) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1691 (get-text-property (point) 'type)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1692 (setq start (next-single-property-change (point) 'type))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1693 (when (eq 'stroke-glyph (get-text-property (point) 'type)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1694 (goto-char start) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1695 (setq start (point-marker) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1696 glyph (get-text-property start 'display)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1697 (insert "+/" (get-text-property (point) 'data) ?/) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1698 (delete-char 1) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1699 (add-text-properties start (point) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1700 (list 'type 'stroke-string |
63219
cf36e45beb9c
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-383
Miles Bader <miles@gnu.org>
parents:
57743
diff
changeset
|
1701 'face 'strokes-char |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1702 'stroke-glyph glyph |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1703 'display nil)))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1704 (message "Encoding strokes in %s...done" buffer))))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1705 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1706 (defun strokes-xpm-for-compressed-string (compressed-string &optional bufname) |
46116 | 1707 "Convert the stroke represented by COMPRESSED-STRING into an XPM. |
1708 Store XPM in buffer BUFNAME if supplied \(default is ` *strokes-xpm*'\)" | |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1709 (save-excursion |
46116 | 1710 (or bufname (setq bufname " *strokes-xpm*")) |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1711 (set-buffer (get-buffer-create bufname)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1712 (erase-buffer) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1713 (insert compressed-string) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1714 (goto-char (point-min)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1715 (let ((current-char-is-on-p nil)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1716 (while (not (eobp)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1717 (insert-char |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1718 (if current-char-is-on-p |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1719 ?* |
64023
22c5a8628828
(strokes): Finish `defgroup' description with period.
Juanma Barranquero <lekktu@gmail.com>
parents:
63219
diff
changeset
|
1720 ?\s) |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1721 (strokes-xpm-decode-char (char-after))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1722 (delete-char 1) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1723 (setq current-char-is-on-p (not current-char-is-on-p))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1724 (goto-char (point-min)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1725 (loop repeat 33 do |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1726 (insert ?\") |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1727 (forward-char 33) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1728 (insert "\",\n")) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1729 (goto-char (point-min)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1730 (insert strokes-xpm-header)))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1731 |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1732 ;;;###autoload |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1733 (defun strokes-compose-complex-stroke () |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1734 ;; ### NOTE !!! ### |
46116 | 1735 ;; Even though we don't have lexical scoping, it's somewhat ugly how I |
31640
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1736 ;; pass around variables in the global name space. I can/should |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1737 ;; change this. |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1738 "Read a complex stroke and insert its glyph into the current buffer." |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1739 (interactive "*") |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1740 (let ((strokes-grid-resolution 33)) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1741 (strokes-read-complex-stroke) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1742 (strokes-xpm-for-stroke nil " *strokes-xpm*" t) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1743 (insert (strokes-xpm-to-compressed-string " *strokes-xpm*")) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1744 (strokes-decode-buffer) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1745 ;; strokes-decode-buffer does a save-excursion. |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1746 (forward-char))) |
27d41d6ec45d
Sync with maintainer's current version with changes
Dave Love <fx@gnu.org>
parents:
30540
diff
changeset
|
1747 |
85835
f3bfe76fe370
(strokes-alphabetic-lessp): Simplify. Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
78492
diff
changeset
|
1748 (defun strokes-unload-function () |
f3bfe76fe370
(strokes-alphabetic-lessp): Simplify. Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
78492
diff
changeset
|
1749 "Unload the Strokes library." |
46116 | 1750 (strokes-mode -1) |
85835
f3bfe76fe370
(strokes-alphabetic-lessp): Simplify. Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
78492
diff
changeset
|
1751 ;; continue standard unloading |
f3bfe76fe370
(strokes-alphabetic-lessp): Simplify. Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
78492
diff
changeset
|
1752 nil) |
57546
84c10e765f2b
(strokes-list-strokes): Don't try to delete char at eob.
Richard M. Stallman <rms@gnu.org>
parents:
54598
diff
changeset
|
1753 |
46116 | 1754 (run-hooks 'strokes-load-hook) |
19345 | 1755 (provide 'strokes) |
1756 | |
52401 | 1757 ;;; arch-tag: 8377f60e-43fb-467a-bbcd-2774f91f833e |
19345 | 1758 ;;; strokes.el ends here |