Docstring keymaps checked.
[bpt/emacs.git] / lisp / textmodes / picture.el
CommitLineData
55535639 1;;; picture.el --- "Picture mode" -- editing using quarter-plane screen model
6594deb0 2
3731a850
TTN
3;; Copyright (C) 1985, 1994, 2002, 2003, 2004,
4;; 2005 Free Software Foundation, Inc.
3a801d0c 5
e5167999
ER
6;; Author: K. Shane Hartman
7;; Maintainer: FSF
82168689 8;; Keywords: convenience wp
695d13c7
BP
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
e5167999 14;; the Free Software Foundation; either version 2, or (at your option)
695d13c7
BP
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
b578f267 23;; along with GNU Emacs; see the file COPYING. If not, write to the
4fc5845f
LK
24;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25;; Boston, MA 02110-1301, USA.
695d13c7 26
edbd2f74
ER
27;;; Commentary:
28
eaae8106 29;; This code provides the picture-mode commands documented in the Emacs
edbd2f74
ER
30;; manual. The screen is treated as a semi-infinite quarter-plane with
31;; support for rectangle operations and `etch-a-sketch' character
32;; insertion in any of eight directions.
33
e5167999 34;;; Code:
695d13c7 35
d1ebc62e 36(defgroup picture nil
381194d0 37 "Picture mode --- editing using quarter-plane screen model."
d1ebc62e
SE
38 :prefix "picture-"
39 :group 'editing)
40
41(defcustom picture-rectangle-ctl ?+
42 "*Character `picture-draw-rectangle' uses for top left corners."
43 :type 'character
44 :group 'picture)
45(defcustom picture-rectangle-ctr ?+
46 "*Character `picture-draw-rectangle' uses for top right corners."
47 :type 'character
48 :group 'picture)
49(defcustom picture-rectangle-cbr ?+
50 "*Character `picture-draw-rectangle' uses for bottom right corners."
51 :type 'character
52 :group 'picture)
53(defcustom picture-rectangle-cbl ?+
54 "*Character `picture-draw-rectangle' uses for bottom left corners."
55 :type 'character
56 :group 'picture)
57(defcustom picture-rectangle-v ?|
58 "*Character `picture-draw-rectangle' uses for vertical lines."
59 :type 'character
60 :group 'picture)
61(defcustom picture-rectangle-h ?-
62 "*Character `picture-draw-rectangle' uses for horizontal lines."
63 :type 'character
64 :group 'picture)
65
695d13c7 66
695d13c7
BP
67;; Picture Movement Commands
68
2697c1f3
KH
69;; When a cursor is on a wide-column character (e.g. Chinese,
70;; Japanese, Korean), this variable tells the desired current column
71;; which may be different from (current-column).
72(defvar picture-desired-column 0)
73
74;; If the value of picture-desired-column is far from the current
75;; column, or if the arg ADJUST-TO-CURRENT is non-nil, set it to the
76;; current column. Return the current column.
77(defun picture-update-desired-column (adjust-to-current)
78 (let ((current-column (current-column)))
79 (if (or adjust-to-current
80 (< picture-desired-column (1- current-column))
81 (> picture-desired-column (1+ current-column)))
82 (setq picture-desired-column current-column))
83 current-column))
84
ca9c7579
ER
85(defun picture-beginning-of-line (&optional arg)
86 "Position point at the beginning of the line.
87With ARG not nil, move forward ARG - 1 lines first.
88If scan reaches end of buffer, stop there without error."
89 (interactive "P")
90 (if arg (forward-line (1- (prefix-numeric-value arg))))
91 (beginning-of-line)
5f6a0375 92 (setq picture-desired-column 0))
ca9c7579 93
695d13c7
BP
94(defun picture-end-of-line (&optional arg)
95 "Position point after last non-blank character on current line.
96With ARG not nil, move forward ARG - 1 lines first.
97If scan reaches end of buffer, stop there without error."
98 (interactive "P")
99 (if arg (forward-line (1- (prefix-numeric-value arg))))
100 (beginning-of-line)
ca9c7579 101 (skip-chars-backward " \t" (prog1 (point) (end-of-line)))
5f6a0375 102 (setq picture-desired-column (current-column)))
695d13c7 103
bac8c2e7 104(defun picture-forward-column (arg &optional interactive)
695d13c7
BP
105 "Move cursor right, making whitespace if necessary.
106With argument, move that many columns."
bac8c2e7 107 (interactive "p\nd")
4855897e
RS
108 (let (deactivate-mark)
109 (picture-update-desired-column interactive)
110 (setq picture-desired-column (max 0 (+ picture-desired-column arg)))
111 (let ((current-column (move-to-column picture-desired-column t)))
112 (if (and (> current-column picture-desired-column)
113 (< arg 0))
114 ;; It seems that we have just tried to move to the right
115 ;; column of a multi-column character.
116 (forward-char -1)))))
695d13c7 117
bac8c2e7 118(defun picture-backward-column (arg &optional interactive)
695d13c7
BP
119 "Move cursor left, making whitespace if necessary.
120With argument, move that many columns."
bac8c2e7
RS
121 (interactive "p\nd")
122 (picture-update-desired-column interactive)
ad8fb8ae 123 (picture-forward-column (- arg)))
695d13c7
BP
124
125(defun picture-move-down (arg)
126 "Move vertically down, making whitespace if necessary.
127With argument, move that many lines."
128 (interactive "p")
4855897e
RS
129 (let (deactivate-mark)
130 (picture-update-desired-column nil)
131 (picture-newline arg)
132 (let ((current-column (move-to-column picture-desired-column t)))
133 (if (> current-column picture-desired-column)
134 (forward-char -1)))))
695d13c7 135
99b3bc61 136(defvar picture-vertical-step 0
695d13c7
BP
137 "Amount to move vertically after text character in Picture mode.")
138
99b3bc61 139(defvar picture-horizontal-step 1
695d13c7
BP
140 "Amount to move horizontally after text character in Picture mode.")
141
142(defun picture-move-up (arg)
143 "Move vertically up, making whitespace if necessary.
144With argument, move that many lines."
145 (interactive "p")
2697c1f3 146 (picture-update-desired-column nil)
695d13c7
BP
147 (picture-move-down (- arg)))
148
149(defun picture-movement-right ()
150 "Move right after self-inserting character in Picture mode."
151 (interactive)
152 (picture-set-motion 0 1))
153
154(defun picture-movement-left ()
155 "Move left after self-inserting character in Picture mode."
156 (interactive)
157 (picture-set-motion 0 -1))
158
159(defun picture-movement-up ()
160 "Move up after self-inserting character in Picture mode."
161 (interactive)
162 (picture-set-motion -1 0))
163
164(defun picture-movement-down ()
165 "Move down after self-inserting character in Picture mode."
166 (interactive)
167 (picture-set-motion 1 0))
168
2697c1f3
KH
169(defun picture-movement-nw (&optional arg)
170 "Move up and left after self-inserting character in Picture mode.
171With prefix argument, move up and two-column left."
172 (interactive "P")
173 (picture-set-motion -1 (if arg -2 -1)))
695d13c7 174
2697c1f3
KH
175(defun picture-movement-ne (&optional arg)
176 "Move up and right after self-inserting character in Picture mode.
177With prefix argument, move up and two-column right."
178 (interactive "P")
179 (picture-set-motion -1 (if arg 2 1)))
695d13c7 180
2697c1f3
KH
181(defun picture-movement-sw (&optional arg)
182 "Move down and left after self-inserting character in Picture mode.
183With prefix argument, move down and two-column left."
184 (interactive "P")
185 (picture-set-motion 1 (if arg -2 -1)))
695d13c7 186
2697c1f3
KH
187(defun picture-movement-se (&optional arg)
188 "Move down and right after self-inserting character in Picture mode.
189With prefix argument, move down and two-column right."
190 (interactive "P")
191 (picture-set-motion 1 (if arg 2 1)))
695d13c7
BP
192
193(defun picture-set-motion (vert horiz)
194 "Set VERTICAL and HORIZONTAL increments for movement in Picture mode.
195The mode line is updated to reflect the current direction."
196 (setq picture-vertical-step vert
197 picture-horizontal-step horiz)
198 (setq mode-name
199 (format "Picture:%s"
2697c1f3
KH
200 (nth (+ 2 (% horiz 3) (* 5 (1+ (% vert 2))))
201 '(wnw nw up ne ene Left left none right Right
202 wsw sw down se ese))))
00dbaf0a 203 (force-mode-line-update)
695d13c7
BP
204 (message ""))
205
206(defun picture-move ()
207 "Move in direction of `picture-vertical-step' and `picture-horizontal-step'."
2697c1f3
KH
208 (if (/= picture-vertical-step 0)
209 (picture-move-down picture-vertical-step))
210 (if (/= picture-horizontal-step 0)
211 (picture-forward-column picture-horizontal-step)))
695d13c7
BP
212
213(defun picture-motion (arg)
214 "Move point in direction of current picture motion in Picture mode.
215With ARG do it that many times. Useful for delineating rectangles in
216conjunction with diagonal picture motion.
217Do \\[command-apropos] picture-movement to see commands which control motion."
218 (interactive "p")
219 (picture-move-down (* arg picture-vertical-step))
220 (picture-forward-column (* arg picture-horizontal-step)))
221
222(defun picture-motion-reverse (arg)
223 "Move point in direction opposite of current picture motion in Picture mode.
224With ARG do it that many times. Useful for delineating rectangles in
225conjunction with diagonal picture motion.
15693bc3 226Do \\[command-apropos] picture-movement to see commands which control motion."
695d13c7
BP
227 (interactive "p")
228 (picture-motion (- arg)))
229
15693bc3
JPW
230(defun picture-mouse-set-point (event)
231 "Move point to the position clicked on, making whitespace if necessary."
232 (interactive "e")
233 (let* ((pos (posn-col-row (event-start event)))
234 (x (car pos))
235 (y (cdr pos))
236 (current-row (count-lines (window-start) (line-beginning-position))))
237 (unless (equal x (current-column))
238 (picture-forward-column (- x (current-column))))
239 (unless (equal y current-row)
240 (picture-move-down (- y current-row)))))
241
695d13c7
BP
242\f
243;; Picture insertion and deletion.
244
d792910f 245(defun picture-insert (ch arg)
2697c1f3
KH
246 (let* ((width (char-width ch))
247 ;; We must be sure that the succeeding insertion won't delete
248 ;; the just inserted character.
249 (picture-horizontal-step
250 (if (and (= picture-vertical-step 0)
251 (> width 1)
252 (< (abs picture-horizontal-step) 2))
253 (* picture-horizontal-step 2)
254 picture-horizontal-step)))
255 (while (> arg 0)
256 (setq arg (1- arg))
257 (if (/= picture-desired-column (current-column))
5ed5b2c2 258 (move-to-column picture-desired-column t))
2697c1f3
KH
259 (let ((col (+ picture-desired-column width)))
260 (or (eolp)
261 (let ((pos (point)))
5ed5b2c2 262 (move-to-column col t)
2697c1f3
KH
263 (delete-region pos (point)))))
264 (insert ch)
265 (forward-char -1)
266 (picture-move))))
d792910f 267
695d13c7
BP
268(defun picture-self-insert (arg)
269 "Insert this character in place of character previously at the cursor.
270The cursor then moves in the direction you previously specified
271with the commands `picture-movement-right', `picture-movement-up', etc.
272Do \\[command-apropos] `picture-movement' to see those commands."
273 (interactive "p")
2697c1f3 274 (picture-update-desired-column (not (eq this-command last-command)))
d792910f 275 (picture-insert last-command-event arg)) ; Always a character in this case.
695d13c7
BP
276
277(defun picture-clear-column (arg)
278 "Clear out ARG columns after point without moving."
279 (interactive "p")
2697c1f3
KH
280 (let* ((original-col (current-column))
281 (target-col (max 0 (+ original-col arg)))
282 pos)
5ed5b2c2 283 (move-to-column target-col t)
2697c1f3
KH
284 (setq pos (point))
285 (move-to-column original-col)
286 (delete-region pos (point))
695d13c7 287 (save-excursion
2697c1f3
KH
288 (indent-to (max target-col original-col))))
289 (setq picture-desired-column (current-column)))
695d13c7
BP
290
291(defun picture-backward-clear-column (arg)
292 "Clear out ARG columns before point, moving back over them."
293 (interactive "p")
294 (picture-clear-column (- arg)))
295
296(defun picture-clear-line (arg)
297 "Clear out rest of line; if at end of line, advance to next line.
298Cleared-out line text goes into the kill ring, as do newlines that are
299advanced over. With argument, clear out (and save in kill ring) that
300many lines."
301 (interactive "P")
302 (if arg
303 (progn
304 (setq arg (prefix-numeric-value arg))
305 (kill-line arg)
306 (newline (if (> arg 0) arg (- arg))))
307 (if (looking-at "[ \t]*$")
308 (kill-ring-save (point) (progn (forward-line 1) (point)))
309 (kill-region (point) (progn (end-of-line) (point))))))
310
311(defun picture-newline (arg)
312 "Move to the beginning of the following line.
313With argument, moves that many lines (up, if negative argument);
314always moves to the beginning of a line."
315 (interactive "p")
316 (if (< arg 0)
317 (forward-line arg)
318 (while (> arg 0)
319 (end-of-line)
320 (if (eobp) (newline) (forward-char 1))
5f6a0375 321 (setq arg (1- arg)))))
695d13c7
BP
322
323(defun picture-open-line (arg)
324 "Insert an empty line after the current line.
325With positive argument insert that many lines."
326 (interactive "p")
327 (save-excursion
328 (end-of-line)
5f6a0375 329 (open-line arg)))
695d13c7
BP
330
331(defun picture-duplicate-line ()
332 "Insert a duplicate of the current line, below it."
333 (interactive)
334 (save-excursion
335 (let ((contents
336 (buffer-substring
337 (progn (beginning-of-line) (point))
338 (progn (picture-newline 1) (point)))))
339 (forward-line -1)
340 (insert contents))))
341
5c927015
RS
342;; Like replace-match, but overwrites.
343(defun picture-replace-match (newtext fixedcase literal)
344 (let (ocolumn change pos)
345 (goto-char (setq pos (match-end 0)))
346 (setq ocolumn (current-column))
347 ;; Make the replacement and undo it, to see how it changes the length.
348 (let ((buffer-undo-list nil)
349 list1)
350 (replace-match newtext fixedcase literal)
351 (setq change (- (current-column) ocolumn))
352 (setq list1 buffer-undo-list)
353 (while list1
354 (setq list1 (primitive-undo 1 list1))))
355 (goto-char pos)
356 (if (> change 0)
357 (delete-region (point)
358 (progn
d792910f 359 (move-to-column (+ change (current-column)) t)
5c927015
RS
360 (point))))
361 (replace-match newtext fixedcase literal)
362 (if (< change 0)
a64dc04f 363 (insert-char ?\s (- change)))))
695d13c7
BP
364\f
365;; Picture Tabs
366
d1ebc62e
SE
367(defcustom picture-tab-chars "!-~"
368 "*A character set which controls behavior of commands.
695d13c7
BP
369\\[picture-set-tab-stops] and \\[picture-tab-search]. It is NOT a
370regular expression, any regexp special characters will be quoted.
371It defines a set of \"interesting characters\" to look for when setting
372\(or searching for) tab stops, initially \"!-~\" (all printing characters).
373For example, suppose that you are editing a table which is formatted thus:
374| foo | bar + baz | 23 *
375| bubbles | and + etc | 97 *
376and that `picture-tab-chars' is \"|+*\". Then invoking
377\\[picture-set-tab-stops] on either of the previous lines would result
378in the following tab stops
379 : : : :
380Another example - \"A-Za-z0-9\" would produce the tab stops
381 : : : :
382
383Note that if you want the character `-' to be in the set, it must be
384included in a range or else appear in a context where it cannot be
385taken for indicating a range (e.g. \"-A-Z\" declares the set to be the
386letters `A' through `Z' and the character `-'). If you want the
387character `\\' in the set it must be preceded by itself: \"\\\\\".
388
389The command \\[picture-tab-search] is defined to move beneath (or to) a
d1ebc62e
SE
390character belonging to this set independent of the tab stops list."
391 :type 'string
392 :group 'picture)
695d13c7
BP
393
394(defun picture-set-tab-stops (&optional arg)
395 "Set value of `tab-stop-list' according to context of this line.
396This controls the behavior of \\[picture-tab]. A tab stop is set at
397every column occupied by an \"interesting character\" that is preceded
398by whitespace. Interesting characters are defined by the variable
399`picture-tab-chars', see its documentation for an example of usage.
400With ARG, just (re)set `tab-stop-list' to its default value. The tab
401stops computed are displayed in the minibuffer with `:' at each stop."
402 (interactive "P")
403 (save-excursion
404 (let (tabs)
405 (if arg
406 (setq tabs (default-value 'tab-stop-list))
407 (let ((regexp (concat "[ \t]+[" (regexp-quote picture-tab-chars) "]")))
408 (beginning-of-line)
409 (let ((bol (point)))
410 (end-of-line)
411 (while (re-search-backward regexp bol t)
412 (skip-chars-forward " \t")
413 (setq tabs (cons (current-column) tabs)))
414 (if (null tabs)
55535639 415 (error "No characters in set %s on this line"
695d13c7
BP
416 (regexp-quote picture-tab-chars))))))
417 (setq tab-stop-list tabs)
418 (let ((blurb (make-string (1+ (nth (1- (length tabs)) tabs)) ?\ )))
419 (while tabs
420 (aset blurb (car tabs) ?:)
421 (setq tabs (cdr tabs)))
422 (message blurb)))))
423
424(defun picture-tab-search (&optional arg)
425 "Move to column beneath next interesting char in previous line.
426With ARG move to column occupied by next interesting character in this
427line. The character must be preceded by whitespace.
428\"interesting characters\" are defined by variable `picture-tab-chars'.
429If no such character is found, move to beginning of line."
430 (interactive "P")
431 (let ((target (current-column)))
432 (save-excursion
433 (if (and (not arg)
434 (progn
435 (beginning-of-line)
436 (skip-chars-backward
437 (concat "^" (regexp-quote picture-tab-chars))
438 (point-min))
439 (not (bobp))))
440 (move-to-column target))
441 (if (re-search-forward
442 (concat "[ \t]+[" (regexp-quote picture-tab-chars) "]")
443 (save-excursion (end-of-line) (point))
444 'move)
445 (setq target (1- (current-column)))
446 (setq target nil)))
447 (if target
d792910f 448 (move-to-column target t)
695d13c7
BP
449 (beginning-of-line))))
450
451(defun picture-tab (&optional arg)
452 "Tab transparently (just move point) to next tab stop.
453With prefix arg, overwrite the traversed text with spaces. The tab stop
454list can be changed by \\[picture-set-tab-stops] and \\[edit-tab-stops].
455See also documentation for variable `picture-tab-chars'."
456 (interactive "P")
457 (let* ((opoint (point)))
458 (move-to-tab-stop)
459 (if arg
460 (let (indent-tabs-mode
461 (column (current-column)))
462 (delete-region opoint (point))
463 (indent-to column)))))
464\f
465;; Picture Rectangles
466
238b647a 467(defvar picture-killed-rectangle nil
695d13c7
BP
468 "Rectangle killed or copied by \\[picture-clear-rectangle] in Picture mode.
469The contents can be retrieved by \\[picture-yank-rectangle]")
470
471(defun picture-clear-rectangle (start end &optional killp)
472 "Clear and save rectangle delineated by point and mark.
473The rectangle is saved for yanking by \\[picture-yank-rectangle] and replaced
474with whitespace. The previously saved rectangle, if any, is lost. With
475prefix argument, the rectangle is actually killed, shifting remaining text."
476 (interactive "r\nP")
477 (setq picture-killed-rectangle (picture-snarf-rectangle start end killp)))
478
479(defun picture-clear-rectangle-to-register (start end register &optional killp)
480 "Clear rectangle delineated by point and mark into REGISTER.
481The rectangle is saved in REGISTER and replaced with whitespace. With
482prefix argument, the rectangle is actually killed, shifting remaining text."
483 (interactive "r\ncRectangle to register: \nP")
484 (set-register register (picture-snarf-rectangle start end killp)))
485
486(defun picture-snarf-rectangle (start end &optional killp)
487 (let ((column (current-column))
488 (indent-tabs-mode nil))
489 (prog1 (save-excursion
490 (if killp
491 (delete-extract-rectangle start end)
492 (prog1 (extract-rectangle start end)
493 (clear-rectangle start end))))
d792910f 494 (move-to-column column t))))
695d13c7
BP
495
496(defun picture-yank-rectangle (&optional insertp)
497 "Overlay rectangle saved by \\[picture-clear-rectangle]
498The rectangle is positioned with upper left corner at point, overwriting
499existing text. With prefix argument, the rectangle is inserted instead,
500shifting existing text. Leaves mark at one corner of rectangle and
501point at the other (diagonally opposed) corner."
502 (interactive "P")
503 (if (not (consp picture-killed-rectangle))
55535639 504 (error "No rectangle saved")
695d13c7
BP
505 (picture-insert-rectangle picture-killed-rectangle insertp)))
506
2ee658c3
RS
507(defun picture-yank-at-click (click arg)
508 "Insert the last killed rectangle at the position clicked on.
509Also move point to one end of the text thus inserted (normally the end).
510Prefix arguments are interpreted as with \\[yank].
511If `mouse-yank-at-point' is non-nil, insert at point
512regardless of where you click."
513 (interactive "e\nP")
514 (or mouse-yank-at-point (mouse-set-point click))
515 (picture-yank-rectangle arg))
516
695d13c7
BP
517(defun picture-yank-rectangle-from-register (register &optional insertp)
518 "Overlay rectangle saved in REGISTER.
519The rectangle is positioned with upper left corner at point, overwriting
520existing text. With prefix argument, the rectangle is
521inserted instead, shifting existing text. Leaves mark at one corner
522of rectangle and point at the other (diagonally opposed) corner."
523 (interactive "cRectangle from register: \nP")
524 (let ((rectangle (get-register register)))
525 (if (not (consp rectangle))
55535639 526 (error "Register %c does not contain a rectangle" register)
695d13c7
BP
527 (picture-insert-rectangle rectangle insertp))))
528
529(defun picture-insert-rectangle (rectangle &optional insertp)
530 "Overlay RECTANGLE with upper left corner at point.
531Optional argument INSERTP, if non-nil causes RECTANGLE to be inserted.
532Leaves the region surrounding the rectangle."
533 (let ((indent-tabs-mode nil))
534 (if (not insertp)
535 (save-excursion
536 (delete-rectangle (point)
537 (progn
538 (picture-forward-column (length (car rectangle)))
539 (picture-move-down (1- (length rectangle)))
540 (point)))))
541 (push-mark)
542 (insert-rectangle rectangle)))
543
d792910f
RS
544(defun picture-current-line ()
545 "Return the vertical position of point. Top line is 1."
546 (+ (count-lines (point-min) (point))
547 (if (= (current-column) 0) 1 0)))
548
549(defun picture-draw-rectangle (start end)
550 "Draw a rectangle around region."
551 (interactive "*r") ; start will be less than end
552 (let* ((sl (picture-current-line))
553 (sc (current-column))
554 (pvs picture-vertical-step)
555 (phs picture-horizontal-step)
556 (c1 (progn (goto-char start) (current-column)))
557 (r1 (picture-current-line))
558 (c2 (progn (goto-char end) (current-column)))
559 (r2 (picture-current-line))
560 (right (max c1 c2))
561 (left (min c1 c2))
562 (top (min r1 r2))
563 (bottom (max r1 r2)))
564 (goto-line top)
5ed5b2c2 565 (move-to-column left t)
2697c1f3 566 (picture-update-desired-column t)
d792910f
RS
567
568 (picture-movement-right)
569 (picture-insert picture-rectangle-ctl 1)
2697c1f3 570 (picture-insert picture-rectangle-h (- right picture-desired-column))
d792910f
RS
571
572 (picture-movement-down)
573 (picture-insert picture-rectangle-ctr 1)
574 (picture-insert picture-rectangle-v (- bottom (picture-current-line)))
575
576 (picture-movement-left)
577 (picture-insert picture-rectangle-cbr 1)
2697c1f3 578 (picture-insert picture-rectangle-h (- picture-desired-column left))
d792910f
RS
579
580 (picture-movement-up)
581 (picture-insert picture-rectangle-cbl 1)
582 (picture-insert picture-rectangle-v (- (picture-current-line) top))
583
584 (picture-set-motion pvs phs)
585 (goto-line sl)
586 (move-to-column sc t)))
587
695d13c7
BP
588\f
589;; Picture Keymap, entry and exit points.
590
2137e978 591(defvar picture-mode-map nil)
695d13c7 592
ca9c7579 593(defun picture-substitute (oldfun newfun)
e70cccc0 594 (define-key picture-mode-map (vector 'remap oldfun) newfun))
ca9c7579 595
695d13c7 596(if (not picture-mode-map)
0ad0f28f 597 (progn
2697c1f3 598 (setq picture-mode-map (make-keymap))
0ad0f28f 599 (picture-substitute 'self-insert-command 'picture-self-insert)
2ae00b00
RS
600 (picture-substitute 'completion-separator-self-insert-command
601 'picture-self-insert)
602 (picture-substitute 'completion-separator-self-insert-autofilling
603 'picture-self-insert)
ca9c7579
ER
604 (picture-substitute 'forward-char 'picture-forward-column)
605 (picture-substitute 'backward-char 'picture-backward-column)
606 (picture-substitute 'delete-char 'picture-clear-column)
47bad81c 607 ;; There are two possibilities for what is normally on DEL.
ca9c7579 608 (picture-substitute 'backward-delete-char-untabify 'picture-backward-clear-column)
47bad81c 609 (picture-substitute 'delete-backward-char 'picture-backward-clear-column)
ca9c7579
ER
610 (picture-substitute 'kill-line 'picture-clear-line)
611 (picture-substitute 'open-line 'picture-open-line)
612 (picture-substitute 'newline 'picture-newline)
0ad0f28f 613 (picture-substitute 'newline-and-indent 'picture-duplicate-line)
ca9c7579
ER
614 (picture-substitute 'next-line 'picture-move-down)
615 (picture-substitute 'previous-line 'picture-move-up)
616 (picture-substitute 'beginning-of-line 'picture-beginning-of-line)
617 (picture-substitute 'end-of-line 'picture-end-of-line)
15693bc3 618 (picture-substitute 'mouse-set-point 'picture-mouse-set-point)
ca9c7579 619
695d13c7 620 (define-key picture-mode-map "\C-c\C-d" 'delete-char)
695d13c7
BP
621 (define-key picture-mode-map "\e\t" 'picture-toggle-tab-state)
622 (define-key picture-mode-map "\t" 'picture-tab)
623 (define-key picture-mode-map "\e\t" 'picture-tab-search)
624 (define-key picture-mode-map "\C-c\t" 'picture-set-tab-stops)
625 (define-key picture-mode-map "\C-c\C-k" 'picture-clear-rectangle)
626 (define-key picture-mode-map "\C-c\C-w" 'picture-clear-rectangle-to-register)
627 (define-key picture-mode-map "\C-c\C-y" 'picture-yank-rectangle)
628 (define-key picture-mode-map "\C-c\C-x" 'picture-yank-rectangle-from-register)
d792910f 629 (define-key picture-mode-map "\C-c\C-r" 'picture-draw-rectangle)
695d13c7
BP
630 (define-key picture-mode-map "\C-c\C-c" 'picture-mode-exit)
631 (define-key picture-mode-map "\C-c\C-f" 'picture-motion)
632 (define-key picture-mode-map "\C-c\C-b" 'picture-motion-reverse)
633 (define-key picture-mode-map "\C-c<" 'picture-movement-left)
634 (define-key picture-mode-map "\C-c>" 'picture-movement-right)
635 (define-key picture-mode-map "\C-c^" 'picture-movement-up)
636 (define-key picture-mode-map "\C-c." 'picture-movement-down)
637 (define-key picture-mode-map "\C-c`" 'picture-movement-nw)
638 (define-key picture-mode-map "\C-c'" 'picture-movement-ne)
639 (define-key picture-mode-map "\C-c/" 'picture-movement-sw)
ffe2923b
JL
640 (define-key picture-mode-map "\C-c\\" 'picture-movement-se)
641 (define-key picture-mode-map [(control ?c) left] 'picture-movement-left)
642 (define-key picture-mode-map [(control ?c) right] 'picture-movement-right)
643 (define-key picture-mode-map [(control ?c) up] 'picture-movement-up)
644 (define-key picture-mode-map [(control ?c) down] 'picture-movement-down)
645 (define-key picture-mode-map [(control ?c) home] 'picture-movement-nw)
646 (define-key picture-mode-map [(control ?c) prior] 'picture-movement-ne)
647 (define-key picture-mode-map [(control ?c) end] 'picture-movement-sw)
648 (define-key picture-mode-map [(control ?c) next] 'picture-movement-se)))
695d13c7 649
d1ebc62e 650(defcustom picture-mode-hook nil
ca9c7579 651 "If non-nil, its value is called on entry to Picture mode.
d1ebc62e
SE
652Picture mode is invoked by the command \\[picture-mode]."
653 :type 'hook
654 :group 'picture)
695d13c7 655
c4fc49b6
RS
656(defvar picture-mode-old-local-map)
657(defvar picture-mode-old-mode-name)
658(defvar picture-mode-old-major-mode)
b9911289 659(defvar picture-mode-old-truncate-lines)
c4fc49b6 660
7229064d 661;;;###autoload
ca9c7579 662(defun picture-mode ()
695d13c7
BP
663 "Switch to Picture mode, in which a quarter-plane screen model is used.
664Printing characters replace instead of inserting themselves with motion
665afterwards settable by these commands:
666 C-c < Move left after insertion.
667 C-c > Move right after insertion.
668 C-c ^ Move up after insertion.
669 C-c . Move down after insertion.
670 C-c ` Move northwest (nw) after insertion.
671 C-c ' Move northeast (ne) after insertion.
672 C-c / Move southwest (sw) after insertion.
673 C-c \\ Move southeast (se) after insertion.
2697c1f3
KH
674 C-u C-c ` Move westnorthwest (wnw) after insertion.
675 C-u C-c ' Move eastnortheast (ene) after insertion.
676 C-u C-c / Move westsouthwest (wsw) after insertion.
677 C-u C-c \\ Move eastsoutheast (ese) after insertion.
695d13c7
BP
678The current direction is displayed in the mode line. The initial
679direction is right. Whitespace is inserted and tabs are changed to
680spaces when required by movement. You can move around in the buffer
681with these commands:
ca9c7579
ER
682 \\[picture-move-down] Move vertically to SAME column in previous line.
683 \\[picture-move-up] Move vertically to SAME column in next line.
684 \\[picture-end-of-line] Move to column following last non-whitespace character.
685 \\[picture-forward-column] Move right inserting spaces if required.
686 \\[picture-backward-column] Move left changing tabs to spaces if required.
695d13c7
BP
687 C-c C-f Move in direction of current picture motion.
688 C-c C-b Move in opposite direction of current picture motion.
689 Return Move to beginning of next line.
690You can edit tabular text with these commands:
691 M-Tab Move to column beneath (or at) next interesting character.
692 `Indents' relative to a previous line.
693 Tab Move to next stop in tab stop list.
694 C-c Tab Set tab stops according to context of this line.
695 With ARG resets tab stops to default (global) value.
696 See also documentation of variable picture-tab-chars
697 which defines \"interesting character\". You can manually
698 change the tab stop list with command \\[edit-tab-stops].
699You can manipulate text with these commands:
700 C-d Clear (replace) ARG columns after point without moving.
701 C-c C-d Delete char at point - the command normally assigned to C-d.
ca9c7579
ER
702 \\[picture-backward-clear-column] Clear (replace) ARG columns before point, moving back over them.
703 \\[picture-clear-line] Clear ARG lines, advancing over them. The cleared
695d13c7 704 text is saved in the kill ring.
ca9c7579 705 \\[picture-open-line] Open blank line(s) beneath current line.
695d13c7
BP
706You can manipulate rectangles with these commands:
707 C-c C-k Clear (or kill) a rectangle and save it.
708 C-c C-w Like C-c C-k except rectangle is saved in named register.
709 C-c C-y Overlay (or insert) currently saved rectangle at point.
710 C-c C-x Like C-c C-y except rectangle is taken from named register.
d792910f 711 C-c C-r Draw a rectangular box around mark and point.
695d13c7
BP
712 \\[copy-rectangle-to-register] Copies a rectangle to a register.
713 \\[advertised-undo] Can undo effects of rectangle overlay commands
93ebab23 714 if invoked soon enough.
695d13c7
BP
715You can return to the previous mode with:
716 C-c C-c Which also strips trailing whitespace from every line.
717 Stripping is suppressed by supplying an argument.
718
e444e0d6 719Entry to this mode calls the value of `picture-mode-hook' if non-nil.
695d13c7
BP
720
721Note that Picture mode commands will work outside of Picture mode, but
722they are not defaultly assigned to keys."
723 (interactive)
ca9c7579 724 (if (eq major-mode 'picture-mode)
55535639 725 (error "You are already editing a picture")
e444e0d6 726 (set (make-local-variable 'picture-mode-old-local-map) (current-local-map))
695d13c7 727 (use-local-map picture-mode-map)
e444e0d6
SM
728 (set (make-local-variable 'picture-mode-old-mode-name) mode-name)
729 (set (make-local-variable 'picture-mode-old-major-mode) major-mode)
ca9c7579 730 (setq major-mode 'picture-mode)
e444e0d6
SM
731 (set (make-local-variable 'picture-killed-rectangle) nil)
732 (set (make-local-variable 'tab-stop-list) (default-value 'tab-stop-list))
733 (set (make-local-variable 'picture-tab-chars)
734 (default-value 'picture-tab-chars))
695d13c7
BP
735 (make-local-variable 'picture-vertical-step)
736 (make-local-variable 'picture-horizontal-step)
e444e0d6 737 (set (make-local-variable 'picture-mode-old-truncate-lines) truncate-lines)
ca9c7579 738 (setq truncate-lines t)
695d13c7 739 (picture-set-motion 0 1)
ca9c7579 740
e0dad66e
RS
741 ;; edit-picture-hook is what we used to run, picture-mode-hook is in doc.
742 (run-hooks 'edit-picture-hook 'picture-mode-hook)
d55235bb
KH
743 (message "Type %s in this buffer to return it to %s mode."
744 (substitute-command-keys "\\[picture-mode-exit]")
745 picture-mode-old-mode-name)))
695d13c7 746
6503cec3 747;;;###autoload
ca9c7579 748(defalias 'edit-picture 'picture-mode)
695d13c7
BP
749
750(defun picture-mode-exit (&optional nostrip)
2137e978 751 "Undo `picture-mode' and return to previous major mode.
695d13c7
BP
752With no argument strips whitespace from end of every line in Picture buffer
753 otherwise just return to previous mode."
754 (interactive "P")
ca9c7579 755 (if (not (eq major-mode 'picture-mode))
55535639 756 (error "You aren't editing a Picture")
eaae8106 757 (if (not nostrip) (delete-trailing-whitespace))
695d13c7
BP
758 (setq mode-name picture-mode-old-mode-name)
759 (use-local-map picture-mode-old-local-map)
760 (setq major-mode picture-mode-old-major-mode)
761 (kill-local-variable 'tab-stop-list)
b9911289 762 (setq truncate-lines picture-mode-old-truncate-lines)
00dbaf0a 763 (force-mode-line-update)))
695d13c7 764
49116ac0
JB
765(provide 'picture)
766
ab5796a9 767;;; arch-tag: e452d08d-a470-4fbf-896e-ea276698d1ca
6594deb0 768;;; picture.el ends here