Update my email address.
[emacs.git] / lisp / erc / erc-fill.el
blob6a5f80f7fd811bf33cd69b4421ce9bdeb073e40e
1 ;;; erc-fill.el --- Filling IRC messages in various ways
3 ;; Copyright (C) 2001, 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
5 ;; Author: Andreas Fuchs <asf@void.at>
6 ;; Mario Lang <mlang@delysid.org>
7 ;; URL: http://www.emacswiki.org/cgi-bin/wiki.pl?ErcFilling
9 ;; This file is part of GNU Emacs.
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.
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.
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., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
26 ;;; Commentary:
28 ;; This package implements filling of messages sent and received. Use
29 ;; `erc-fill-mode' to switch it on. Customize `erc-fill-function' to
30 ;; change the style.
32 ;;; Code:
34 (require 'erc)
35 (require 'erc-stamp); for the timestamp stuff
37 (defgroup erc-fill nil
38 "Filling means to reformat long lines in different ways."
39 :group 'erc)
41 ;;;###autoload (autoload 'erc-fill-mode "erc-fill" nil t)
42 (erc-define-minor-mode erc-fill-mode
43 "Toggle ERC fill mode.
44 With numeric arg, turn ERC fill mode on if and only if arg is
45 positive. In ERC fill mode, messages in the channel buffers are
46 filled."
47 nil nil nil
48 :global t :group 'erc-fill
49 (if erc-fill-mode
50 (erc-fill-enable)
51 (erc-fill-disable)))
53 (defun erc-fill-enable ()
54 "Setup hooks for `erc-fill-mode'."
55 (interactive)
56 (add-hook 'erc-insert-modify-hook 'erc-fill)
57 (add-hook 'erc-send-modify-hook 'erc-fill))
59 (defun erc-fill-disable ()
60 "Cleanup hooks, disable `erc-fill-mode'."
61 (interactive)
62 (remove-hook 'erc-insert-modify-hook 'erc-fill)
63 (remove-hook 'erc-send-modify-hook 'erc-fill))
65 (defcustom erc-fill-prefix nil
66 "Values used as `fill-prefix' for `erc-fill-variable'.
67 nil means fill with space, a string means fill with this string."
68 :group 'erc-fill
69 :type '(choice (const nil) string))
71 (defcustom erc-fill-function 'erc-fill-variable
72 "Function to use for filling messages.
74 Variable Filling with an `erc-fill-prefix' of nil:
76 <shortnick> this is a very very very long message with no
77 meaning at all
79 Variable Filling with an `erc-fill-prefix' of four spaces:
81 <shortnick> this is a very very very long message with no
82 meaning at all
84 Static Filling with `erc-fill-static-center' of 27:
86 <shortnick> foo bar baz
87 <a-very-long-nick> foo bar baz quuuuux
88 <shortnick> this is a very very very long message with no
89 meaning at all
91 These two styles are implemented using `erc-fill-variable' and
92 `erc-fill-static'. You can, of course, define your own filling
93 function. Narrowing to the region in question is in effect while your
94 function is called."
95 :group 'erc-fill
96 :type '(choice (const :tag "Variable Filling" erc-fill-variable)
97 (const :tag "Static Filling" erc-fill-static)
98 function))
100 (defcustom erc-fill-static-center 27
101 "Column around which all statically filled messages will be
102 centered. This column denotes the point where the ' ' character
103 between <nickname> and the entered text will be put, thus aligning
104 nick names right and text left."
105 :group 'erc-fill
106 :type 'integer)
108 (defcustom erc-fill-variable-maximum-indentation 17
109 "If we indent a line after a long nick, don't indent more then this
110 characters. Set to nil to disable."
111 :group 'erc-fill
112 :type 'integer)
114 (defcustom erc-fill-column 78
115 "The column at which a filled paragraph is broken."
116 :group 'erc-fill
117 :type 'integer)
119 ;;;###autoload
120 (defun erc-fill ()
121 "Fill a region using the function referenced in `erc-fill-function'.
122 You can put this on `erc-insert-modify-hook' and/or `erc-send-modify-hook'."
123 (unless (erc-string-invisible-p (buffer-substring (point-min) (point-max)))
124 (when erc-fill-function
125 (funcall erc-fill-function))))
127 (defun erc-fill-static ()
128 "Fills a text such that messages start at column `erc-fill-static-center'."
129 (save-match-data
130 (goto-char (point-min))
131 (looking-at "^\\(\\S-+\\)")
132 (let ((nick (match-string 1)))
133 (let ((fill-column (- erc-fill-column (erc-timestamp-offset)))
134 (fill-prefix (make-string erc-fill-static-center 32)))
135 (insert (make-string (max 0 (- erc-fill-static-center
136 (length nick) 1))
137 32))
138 (erc-fill-regarding-timestamp))
139 (erc-restore-text-properties))))
141 (defun erc-fill-variable ()
142 "Fill from `point-min' to `point-max'."
143 (let ((fill-prefix erc-fill-prefix)
144 (fill-column (or erc-fill-column fill-column)))
145 (goto-char (point-min))
146 (if fill-prefix
147 (let ((first-line-offset (make-string (erc-timestamp-offset) 32)))
148 (insert first-line-offset)
149 (fill-region (point-min) (point-max) t t)
150 (goto-char (point-min))
151 (delete-char (length first-line-offset)))
152 (save-match-data
153 (let* ((nickp (looking-at "^\\(\\S-+\\)"))
154 (nick (if nickp
155 (match-string 1)
156 ""))
157 (fill-column (- erc-fill-column (erc-timestamp-offset)))
158 (fill-prefix (make-string (min (+ 1 (length nick))
159 (- fill-column 1)
160 (or erc-fill-variable-maximum-indentation
161 fill-column))
162 32)))
163 (erc-fill-regarding-timestamp))))
164 (erc-restore-text-properties)))
166 (defun erc-fill-regarding-timestamp ()
167 "Fills a text such that messages start at column `erc-fill-static-center'."
168 (fill-region (point-min) (point-max) t t)
169 (goto-char (point-min))
170 (forward-line)
171 (indent-rigidly (point) (point-max) (erc-timestamp-offset)))
173 (defun erc-timestamp-offset ()
174 "Get length of timestamp if inserted left."
175 (if (and (boundp 'erc-timestamp-format)
176 erc-timestamp-format
177 (eq erc-insert-timestamp-function 'erc-insert-timestamp-left)
178 (not erc-hide-timestamps))
179 (length (format-time-string erc-timestamp-format))
182 (defun erc-restore-text-properties ()
183 "Restore the property 'erc-parsed for the region."
184 (let* ((parsed-posn (text-property-not-all (point-min) (point-max)
185 'erc-parsed nil))
186 (parsed-prop (when parsed-posn
187 (get-text-property parsed-posn 'erc-parsed))))
188 (put-text-property (point-min) (point-max) 'erc-parsed parsed-prop)))
190 (provide 'erc-fill)
192 ;;; erc-fill.el ends here
193 ;; Local Variables:
194 ;; indent-tabs-mode: nil
195 ;; End:
197 ;; arch-tag: 89224581-c2c2-4e26-92e5-e3a390dc516a