Merged from emacs@sv.gnu.org
[bpt/emacs.git] / lisp / rect.el
CommitLineData
e8af40ee 1;;; rect.el --- rectangle functions for GNU Emacs
6594deb0 2
0d30b337 3;; Copyright (C) 1985, 1999, 2000, 2001, 2002, 2003, 2004
aaef169d 4;; 2005, 2006 Free Software Foundation, Inc.
9750e079 5
aa01bed1 6;; Maintainer: Didier Verna <didier@xemacs.org>
d7b4d18f 7;; Keywords: internal
4821e2af 8
a2535589
JA
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
e5167999 13;; the Free Software Foundation; either version 2, or (at your option)
a2535589
JA
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
b578f267 22;; along with GNU Emacs; see the file COPYING. If not, write to the
086add15
LK
23;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24;; Boston, MA 02110-1301, USA.
a2535589 25
edbd2f74
ER
26;;; Commentary:
27
e037c34c 28;; This package provides the operations on rectangles that are documented
edbd2f74
ER
29;; in the Emacs manual.
30
e417c66f 31;; ### NOTE: this file has been almost completely rewritten by Didier Verna
aa01bed1 32;; <didier@xemacs.org> in July 1999. The purpose of this rewrite is to be less
e417c66f
RS
33;; intrusive and fill lines with whitespaces only when needed. A few functions
34;; are untouched though, as noted above their definition.
35
36
4821e2af 37;;; Code:
a2535589 38
e40261d0 39;;;###autoload
e417c66f 40(defun move-to-column-force (column &optional flag)
92e30637 41 "If COLUMN is within a multi-column character, replace it by spaces and tab.
e417c66f
RS
42As for `move-to-column', passing anything but nil or t in FLAG will move to
43the desired column only if the line is long enough."
b9e81d0a 44 (move-to-column column (or flag t)))
df2801ec
JB
45
46;;;###autoload
92e30637 47(make-obsolete 'move-to-column-force 'move-to-column "21.2")
e40261d0 48
e417c66f 49;; not used any more --dv
3d1b9783
RS
50;; extract-rectangle-line stores lines into this list
51;; to accumulate them for extract-rectangle and delete-extract-rectangle.
52(defvar operate-on-rectangle-lines)
53
74be0ade 54;; ### NOTE: this function is untouched, but not used anymore apart from
e417c66f 55;; `delete-whitespace-rectangle'. `apply-on-rectangle' is used instead. --dv
a2535589
JA
56(defun operate-on-rectangle (function start end coerce-tabs)
57 "Call FUNCTION for each line of rectangle with corners at START, END.
58If COERCE-TABS is non-nil, convert multi-column characters
59that span the starting or ending columns on any line
60to multiple spaces before calling FUNCTION.
61FUNCTION is called with three arguments:
62 position of start of segment of this line within the rectangle,
63 number of columns that belong to rectangle but are before that position,
64 number of columns that belong to rectangle but are after point.
65Point is at the end of the segment of this line within the rectangle."
66 (let (startcol startlinepos endcol endlinepos)
67 (save-excursion
68 (goto-char start)
69 (setq startcol (current-column))
70 (beginning-of-line)
71 (setq startlinepos (point)))
72 (save-excursion
73 (goto-char end)
74 (setq endcol (current-column))
75 (forward-line 1)
76 (setq endlinepos (point-marker)))
77 (if (< endcol startcol)
08ce70d1 78 (setq startcol (prog1 endcol (setq endcol startcol))))
bc8ea543
RS
79 (save-excursion
80 (goto-char startlinepos)
81 (while (< (point) endlinepos)
82 (let (startpos begextra endextra)
e40261d0 83 (if coerce-tabs
b9e81d0a 84 (move-to-column startcol t)
e40261d0 85 (move-to-column startcol))
bc8ea543
RS
86 (setq begextra (- (current-column) startcol))
87 (setq startpos (point))
e40261d0 88 (if coerce-tabs
b9e81d0a 89 (move-to-column endcol t)
e40261d0 90 (move-to-column endcol))
daabd795
RS
91 ;; If we overshot, move back one character
92 ;; so that endextra will be positive.
93 (if (and (not coerce-tabs) (> (current-column) endcol))
94 (backward-char 1))
bc8ea543
RS
95 (setq endextra (- endcol (current-column)))
96 (if (< begextra 0)
97 (setq endextra (+ endextra begextra)
98 begextra 0))
99 (funcall function startpos begextra endextra))
100 (forward-line 1)))
a2535589
JA
101 (- endcol startcol)))
102
e417c66f
RS
103;; The replacement for `operate-on-rectangle' -- dv
104(defun apply-on-rectangle (function start end &rest args)
105 "Call FUNCTION for each line of rectangle with corners at START, END.
106FUNCTION is called with two arguments: the start and end columns of the
e037c34c 107rectangle, plus ARGS extra arguments. Point is at the beginning of line when
e417c66f
RS
108the function is called."
109 (let (startcol startpt endcol endpt)
110 (save-excursion
111 (goto-char start)
112 (setq startcol (current-column))
113 (beginning-of-line)
114 (setq startpt (point))
115 (goto-char end)
116 (setq endcol (current-column))
117 (forward-line 1)
118 (setq endpt (point-marker))
119 ;; ensure the start column is the left one.
120 (if (< endcol startcol)
121 (let ((col startcol))
122 (setq startcol endcol endcol col)))
123 ;; start looping over lines
124 (goto-char startpt)
125 (while (< (point) endpt)
126 (apply function startcol endcol args)
127 (forward-line 1)))
128 ))
129
130(defun delete-rectangle-line (startcol endcol fill)
b29b5c24 131 (when (= (move-to-column startcol (if fill t 'coerce)) startcol)
b9e81d0a
SM
132 (delete-region (point)
133 (progn (move-to-column endcol 'coerce)
134 (point)))))
e417c66f
RS
135
136(defun delete-extract-rectangle-line (startcol endcol lines fill)
137 (let ((pt (point-at-eol)))
b29b5c24 138 (if (< (move-to-column startcol (if fill t 'coerce)) startcol)
e417c66f
RS
139 (setcdr lines (cons (spaces-string (- endcol startcol))
140 (cdr lines)))
141 ;; else
142 (setq pt (point))
b9e81d0a 143 (move-to-column endcol t)
5c831ccd 144 (setcdr lines (cons (filter-buffer-substring pt (point) t) (cdr lines))))
e417c66f
RS
145 ))
146
147;; ### NOTE: this is actually the only function that needs to do complicated
148;; stuff like what's happening in `operate-on-rectangle', because the buffer
149;; might be read-only. --dv
150(defun extract-rectangle-line (startcol endcol lines)
151 (let (start end begextra endextra line)
152 (move-to-column startcol)
153 (setq start (point)
154 begextra (- (current-column) startcol))
155 (move-to-column endcol)
156 (setq end (point)
157 endextra (- endcol (current-column)))
158 (setq line (buffer-substring start (point)))
159 (if (< begextra 0)
160 (setq endextra (+ endextra begextra)
161 begextra 0))
162 (if (< endextra 0)
163 (setq endextra 0))
164 (goto-char start)
a2535589
JA
165 (while (search-forward "\t" end t)
166 (let ((width (- (current-column)
167 (save-excursion (forward-char -1)
168 (current-column)))))
169 (setq line (concat (substring line 0 (- (point) end 1))
170 (spaces-string width)
e417c66f
RS
171 (substring line (+ (length line)
172 (- (point) end)))))))
a2535589
JA
173 (if (or (> begextra 0) (> endextra 0))
174 (setq line (concat (spaces-string begextra)
175 line
176 (spaces-string endextra))))
e417c66f 177 (setcdr lines (cons line (cdr lines)))))
a2535589
JA
178
179(defconst spaces-strings
180 '["" " " " " " " " " " " " " " " " "])
181
e417c66f 182;; this one is untouched --dv
a2535589
JA
183(defun spaces-string (n)
184 (if (<= n 8) (aref spaces-strings n)
185 (let ((val ""))
186 (while (> n 8)
187 (setq val (concat " " val)
188 n (- n 8)))
189 (concat val (aref spaces-strings n)))))
f1180544 190
f9f9507e 191;;;###autoload
e417c66f 192(defun delete-rectangle (start end &optional fill)
e037c34c
DL
193 "Delete (don't save) text in the region-rectangle.
194The same range of columns is deleted in each line starting with the
195line where the region begins and ending with the line where the region
196ends.
197
198When called from a program the rectangle's corners are START and END.
199With a prefix (or a FILL) argument, also fill lines where nothing has
200to be deleted."
201 (interactive "*r\nP")
e417c66f 202 (apply-on-rectangle 'delete-rectangle-line start end fill))
a2535589 203
f9f9507e 204;;;###autoload
e417c66f 205(defun delete-extract-rectangle (start end &optional fill)
7db6139a 206 "Delete the contents of the rectangle with corners at START and END.
e037c34c 207Return it as a list of strings, one for each line of the rectangle.
e417c66f 208
e037c34c 209When called from a program the rectangle's corners are START and END.
e417c66f
RS
210With an optional FILL argument, also fill lines where nothing has to be
211deleted."
212 (let ((lines (list nil)))
213 (apply-on-rectangle 'delete-extract-rectangle-line start end lines fill)
214 (nreverse (cdr lines))))
a2535589 215
f9f9507e 216;;;###autoload
a2535589 217(defun extract-rectangle (start end)
e037c34c
DL
218 "Return the contents of the rectangle with corners at START and END.
219Return it as a list of strings, one for each line of the rectangle."
e417c66f
RS
220 (let ((lines (list nil)))
221 (apply-on-rectangle 'extract-rectangle-line start end lines)
222 (nreverse (cdr lines))))
a2535589
JA
223
224(defvar killed-rectangle nil
e037c34c 225 "Rectangle for `yank-rectangle' to insert.")
a2535589 226
f9f9507e 227;;;###autoload
e417c66f 228(defun kill-rectangle (start end &optional fill)
e037c34c
DL
229 "Delete the region-rectangle and save it as the last killed one.
230
231When called from a program the rectangle's corners are START and END.
232You might prefer to use `delete-extract-rectangle' from a program.
e417c66f
RS
233
234With a prefix (or a FILL) argument, also fill lines where nothing has to be
5c831ccd
EZ
235deleted.
236
237If the buffer is read-only, Emacs will beep and refrain from deleting
238the rectangle, but put it in the kill ring anyway. This means that
239you can use this command to copy text from a read-only buffer.
240\(If the variable `kill-read-only-ok' is non-nil, then this won't
241even beep.)"
242 (interactive "r\nP")
243 (condition-case nil
244 (setq killed-rectangle (delete-extract-rectangle start end fill))
245 ((buffer-read-only text-read-only)
246 (setq killed-rectangle (extract-rectangle start end))
247 (if kill-read-only-ok
248 (progn (message "Read only text copied to kill ring") nil)
249 (barf-if-buffer-read-only)
250 (signal 'text-read-only (list (current-buffer)))))))
e417c66f
RS
251
252;; this one is untouched --dv
f9f9507e 253;;;###autoload
a2535589
JA
254(defun yank-rectangle ()
255 "Yank the last killed rectangle with upper left corner at point."
e037c34c 256 (interactive "*")
a2535589
JA
257 (insert-rectangle killed-rectangle))
258
e417c66f 259;; this one is untoutched --dv
f9f9507e 260;;;###autoload
a2535589
JA
261(defun insert-rectangle (rectangle)
262 "Insert text of RECTANGLE with upper left corner at point.
573f9b32
RS
263RECTANGLE's first line is inserted at point, its second
264line is inserted at a point vertically under point, etc.
23317eac
RS
265RECTANGLE should be a list of strings.
266After this command, the mark is at the upper left corner
267and point is at the lower right corner."
a2535589
JA
268 (let ((lines rectangle)
269 (insertcolumn (current-column))
270 (first t))
23317eac 271 (push-mark)
a2535589
JA
272 (while lines
273 (or first
274 (progn
275 (forward-line 1)
276 (or (bolp) (insert ?\n))
b9e81d0a 277 (move-to-column insertcolumn t)))
a2535589 278 (setq first nil)
afa0467f 279 (insert-for-yank (car lines))
a2535589
JA
280 (setq lines (cdr lines)))))
281
f9f9507e 282;;;###autoload
e417c66f 283(defun open-rectangle (start end &optional fill)
e037c34c
DL
284 "Blank out the region-rectangle, shifting text right.
285
286The text previously in the region is not overwritten by the blanks,
287but instead winds up to the right of the rectangle.
e417c66f 288
e037c34c 289When called from a program the rectangle's corners are START and END.
e417c66f
RS
290With a prefix (or a FILL) argument, fill with blanks even if there is no text
291on the right side of the rectangle."
e037c34c 292 (interactive "*r\nP")
e417c66f 293 (apply-on-rectangle 'open-rectangle-line start end fill)
08ce70d1 294 (goto-char start))
a2535589 295
e417c66f 296(defun open-rectangle-line (startcol endcol fill)
b29b5c24 297 (when (= (move-to-column startcol (if fill t 'coerce)) startcol)
74be0ade
DL
298 (unless (and (not fill)
299 (= (point) (point-at-eol)))
300 (indent-to endcol))))
e417c66f
RS
301
302(defun delete-whitespace-rectangle-line (startcol endcol fill)
b29b5c24 303 (when (= (move-to-column startcol (if fill t 'coerce)) startcol)
e417c66f 304 (unless (= (point) (point-at-eol))
35f901fa 305 (delete-region (point) (progn (skip-syntax-forward " ") (point))))))
a2535589 306
b3a4edce
MR
307;;;###autoload
308(defalias 'close-rectangle 'delete-whitespace-rectangle) ;; Old name
309
ecb079ed 310;;;###autoload
e417c66f 311(defun delete-whitespace-rectangle (start end &optional fill)
ecb079ed
RS
312 "Delete all whitespace following a specified column in each line.
313The left edge of the rectangle specifies the position in each line
314at which whitespace deletion should begin. On each line in the
e417c66f 315rectangle, all continuous whitespace starting at that column is deleted.
ecb079ed 316
e037c34c 317When called from a program the rectangle's corners are START and END.
e417c66f 318With a prefix (or a FILL) argument, also fill too short lines."
e037c34c 319 (interactive "*r\nP")
e417c66f
RS
320 (apply-on-rectangle 'delete-whitespace-rectangle-line start end fill))
321
322;; not used any more --dv
3d1b9783
RS
323;; string-rectangle uses this variable to pass the string
324;; to string-rectangle-line.
325(defvar string-rectangle-string)
b9e81d0a 326(defvar string-rectangle-history nil)
197615f3 327(defun string-rectangle-line (startcol endcol string delete)
b9e81d0a 328 (move-to-column startcol t)
197615f3
DL
329 (if delete
330 (delete-rectangle-line startcol endcol nil))
e417c66f 331 (insert string))
131ca136 332
852eeeaf 333;;;###autoload
35f901fa
GM
334(defun string-rectangle (start end string)
335 "Replace rectangle contents with STRING on each line.
336The length of STRING need not be the same as the rectangle width.
337
338Called from a program, takes three args; START, END and STRING."
b9e81d0a
SM
339 (interactive
340 (progn (barf-if-buffer-read-only)
341 (list
342 (region-beginning)
343 (region-end)
5b76833f 344 (read-string (format "String rectangle (default %s): "
b9e81d0a
SM
345 (or (car string-rectangle-history) ""))
346 nil 'string-rectangle-history
347 (car string-rectangle-history)))))
197615f3 348 (apply-on-rectangle 'string-rectangle-line start end string t))
852eeeaf 349
0c54cd99 350;;;###autoload
35f901fa
GM
351(defalias 'replace-rectangle 'string-rectangle)
352
353;;;###autoload
354(defun string-insert-rectangle (start end string)
355 "Insert STRING on each line of region-rectangle, shifting text right.
356
357When called from a program, the rectangle's corners are START and END.
358The left edge of the rectangle specifies the column for insertion.
359This command does not delete or overwrite any existing text."
b9e81d0a
SM
360 (interactive
361 (progn (barf-if-buffer-read-only)
362 (list
363 (region-beginning)
364 (region-end)
5b76833f 365 (read-string (format "String insert rectangle (default %s): "
b9e81d0a
SM
366 (or (car string-rectangle-history) ""))
367 nil 'string-rectangle-history
368 (car string-rectangle-history)))))
35f901fa
GM
369 (apply-on-rectangle 'string-rectangle-line start end string nil))
370
f9f9507e 371;;;###autoload
e417c66f 372(defun clear-rectangle (start end &optional fill)
e037c34c
DL
373 "Blank out the region-rectangle.
374The text previously in the region is overwritten with blanks.
e417c66f 375
e037c34c 376When called from a program the rectangle's corners are START and END.
e417c66f
RS
377With a prefix (or a FILL) argument, also fill with blanks the parts of the
378rectangle which were empty."
e037c34c 379 (interactive "*r\nP")
e417c66f
RS
380 (apply-on-rectangle 'clear-rectangle-line start end fill))
381
382(defun clear-rectangle-line (startcol endcol fill)
7dfee029 383 (let ((pt (point-at-eol)))
b29b5c24 384 (when (= (move-to-column startcol (if fill t 'coerce)) startcol)
e417c66f
RS
385 (if (and (not fill)
386 (<= (save-excursion (goto-char pt) (current-column)) endcol))
387 (delete-region (point) pt)
388 ;; else
389 (setq pt (point))
b9e81d0a 390 (move-to-column endcol t)
7dfee029 391 (setq endcol (current-column))
e417c66f 392 (delete-region pt (point))
7dfee029 393 (indent-to endcol)))))
a2535589 394
08ce70d1 395(provide 'rect)
6594deb0 396
ab5796a9 397;;; arch-tag: 178847b3-1f50-4b03-83de-a6e911cc1d16
6594deb0 398;;; rect.el ends here