* lisp/simple.el (special-mode-map): Bind "h" to `describe-mode';
[bpt/emacs.git] / lisp / erc / erc-list.el
CommitLineData
5e56b3fb
MO
1;;; erc-list.el --- /list support for ERC
2
73b0cd50 3;; Copyright (C) 2008-2011 Free Software Foundation, Inc.
5e56b3fb
MO
4
5;; Author: Tom Tromey <tromey@redhat.com>
6;; Version: 0.1
7;; Keywords: comm
8
eb3fa2cf 9;; This file is part of GNU Emacs.
5e56b3fb 10
eb3fa2cf 11;; GNU Emacs is free software: you can redistribute it and/or modify
5e56b3fb 12;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
5e56b3fb 15
eb3fa2cf 16;; GNU Emacs is distributed in the hope that it will be useful,
5e56b3fb
MO
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
eb3fa2cf 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
5e56b3fb
MO
23
24;;; Commentary:
25
26;; This file provides nice support for /list in ERC.
27
28;;; Code:
29
30(require 'erc)
31
32;; This is implicitly the width of the channel name column. Pick
33;; something small enough that the topic has a chance of being
34;; readable, but long enough that most channel names won't make for
35;; strange formatting.
36(defconst erc-list-nusers-column 25)
37
38;; Width of the number-of-users column.
39(defconst erc-list-topic-column (+ erc-list-nusers-column 10))
40
41;; The list buffer. This is buffer local in the server buffer.
42(defvar erc-list-buffer nil)
43
44;; The argument to the last "/list". This is buffer local in the
45;; server buffer.
46(defvar erc-list-last-argument nil)
47
48;; The server buffer corresponding to the list buffer. This is buffer
49;; local in the list buffer.
50(defvar erc-list-server-buffer nil)
51
52;; Define module:
53;;;###autoload (autoload 'erc-list-mode "erc-list")
54(define-erc-module list nil
55 "List channels nicely in a separate buffer."
56 ((remove-hook 'erc-server-321-functions 'erc-server-321-message)
57 (remove-hook 'erc-server-322-functions 'erc-server-322-message))
58 ((erc-with-all-buffers-of-server nil
59 #'erc-open-server-buffer-p
60 (remove-hook 'erc-server-322-functions 'erc-list-handle-322 t))
61 (add-hook 'erc-server-321-functions 'erc-server-321-message t)
62 (add-hook 'erc-server-322-functions 'erc-server-322-message t)))
63
64;; Format a record for display.
65(defun erc-list-make-string (channel users topic)
66 (concat
67 channel
68 (erc-propertize " "
69 'display (list 'space :align-to erc-list-nusers-column)
70 'face 'fixed-pitch)
71 users
72 (erc-propertize " "
73 'display (list 'space :align-to erc-list-topic-column)
74 'face 'fixed-pitch)
75 topic))
76
77;; Insert a record into the list buffer.
78(defun erc-list-insert-item (channel users topic)
79 (save-excursion
80 (let ((buffer-read-only nil))
81 (goto-char (point-max))
82 (insert (erc-list-make-string channel users topic) "\n"))))
83
84(defun erc-list-join ()
85 "Join the irc channel named on this line."
86 (interactive)
87 (unless (eobp)
88 (beginning-of-line)
89 (unless (looking-at "\\([&#+!][^ \n]+\\)")
90 (error "Not looking at channel name?"))
91 (let ((chan (match-string 1)))
92 (with-current-buffer erc-list-server-buffer
93 (erc-join-channel chan)))))
94
95(defun erc-list-kill ()
96 "Kill the current ERC list buffer."
97 (interactive)
98 (kill-buffer (current-buffer)))
99
100(defun erc-list-revert ()
101 "Refresh the list of channels."
102 (interactive)
103 (with-current-buffer erc-list-server-buffer
104 (erc-cmd-LIST erc-list-last-argument)))
105
106(defun erc-list-menu-sort-by-column (&optional e)
107 "Sort the channel list by the column clicked on."
108 (interactive (list last-input-event))
109 (if e (mouse-select-window e))
110 (let* ((pos (event-start e))
111 (obj (posn-object pos))
112 (col (if obj
113 (get-text-property (cdr obj) 'column-number (car obj))
114 (get-text-property (posn-point pos) 'column-number))))
115 (let ((buffer-read-only nil))
116 (if (= col 1)
117 (sort-fields col (point-min) (point-max))
118 (sort-numeric-fields col (point-min) (point-max))))))
119
abef340a 120(defvar erc-list-menu-sort-button-map
5e56b3fb
MO
121 (let ((map (make-sparse-keymap)))
122 (define-key map [header-line mouse-1] 'erc-list-menu-sort-by-column)
123 (define-key map [follow-link] 'mouse-face)
abef340a
SS
124 map)
125 "Local keymap for ERC list menu mode sorting buttons.")
5e56b3fb
MO
126
127;; Helper function that makes a buttonized column header.
128(defun erc-list-button (title column)
129 (erc-propertize title
130 'column-number column
131 'help-echo "mouse-1: sort by column"
132 'mouse-face 'highlight
133 'keymap erc-list-menu-sort-button-map))
134
abef340a 135(define-derived-mode erc-list-menu-mode special-mode "ERC-List"
5e56b3fb
MO
136 "Major mode for editing a list of irc channels."
137 (setq header-line-format
138 (concat
139 (erc-propertize " "
140 'display '(space :align-to 0)
141 'face 'fixed-pitch)
142 (erc-list-make-string (erc-list-button "Channel" 1)
143 (erc-list-button "# Users" 2)
144 "Topic")))
145 (setq truncate-lines t))
146
147(put 'erc-list-menu-mode 'mode-class 'special)
148
abef340a
SS
149(define-key erc-list-menu-mode-map "k" 'erc-list-kill)
150(define-key erc-list-menu-mode-map "j" 'erc-list-join)
151(define-key erc-list-menu-mode-map "g" 'erc-list-revert)
152(define-key erc-list-menu-mode-map "n" 'next-line)
153(define-key erc-list-menu-mode-map "p" 'previous-line)
154
5e56b3fb
MO
155;; Handle a "322" response. This response tells us about a single
156;; channel.
157(defun erc-list-handle-322 (proc parsed)
158 (let* ((args (cdr (erc-response.command-args parsed)))
159 (channel (car args))
160 (nusers (car (cdr args)))
161 (topic (erc-response.contents parsed)))
162 (when (buffer-live-p erc-list-buffer)
163 (with-current-buffer erc-list-buffer
164 (erc-list-insert-item channel nusers topic))))
165 ;; Don't let another hook run.
166 t)
167
168;; Helper function to install our 322 handler and make our buffer.
169(defun erc-list-install-322-handler (server-buffer)
170 (with-current-buffer server-buffer
171 ;; Arrange for 322 responses to insert into our buffer.
172 (add-hook 'erc-server-322-functions 'erc-list-handle-322 t t)
173 ;; Arrange for 323 (end of list) to end this.
174 (erc-once-with-server-event
175 323
176 '(progn
177 (remove-hook 'erc-server-322-functions 'erc-list-handle-322 t)))
178 ;; Find the list buffer, empty it, and display it.
179 (set (make-local-variable 'erc-list-buffer)
180 (get-buffer-create (concat "*Channels of "
181 erc-server-announced-name
182 "*")))
183 (with-current-buffer erc-list-buffer
184 (erc-list-menu-mode)
185 (setq buffer-read-only nil)
186 (erase-buffer)
187 (set (make-local-variable 'erc-list-server-buffer) server-buffer)
188 (setq buffer-read-only t))
189 (pop-to-buffer erc-list-buffer))
190 t)
191
192;; The main entry point.
193(defun erc-cmd-LIST (&optional line)
194 "Show a listing of channels on the current server in a separate window.
195
196If LINE is specified, include it with the /LIST command. It
197should usually be one or more channels, separated by commas.
198
199Please note that this function only works with IRC servers which conform
200to RFC and send the LIST header (#321) at start of list transmission."
201 (erc-with-server-buffer
202 (set (make-local-variable 'erc-list-last-argument) line)
203 (erc-once-with-server-event
204 321
205 (list 'progn
206 (list 'erc-list-install-322-handler (current-buffer)))))
207 (erc-server-send (concat "LIST :" (or (and line (substring line 1))
208 ""))))
209(put 'erc-cmd-LIST 'do-not-parse-args t)
210
211;;; erc-list.el ends here
212;;
213;; Local Variables:
214;; indent-tabs-mode: t
215;; tab-width: 8
216;; End:
f187f57d 217