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