* riece-history.el (riece-history-requires): New function.
[riece] / lisp / riece-xface.el
1 ;;; riece-xface.el --- display X-Face in IRC buffers
2 ;; Copyright (C) 1998-2003 Daiki Ueno
3
4 ;; Author: Daiki Ueno <ueno@unixuser.org>
5 ;; Created: 1998-09-28
6 ;; Keywords: IRC, riece
7
8 ;; This file is part of Riece.
9
10 ;; This program is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; This program is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;; NOTE: This is an add-on module for Riece.
28
29 ;;; Code:
30
31 (require 'riece-identity)
32 (require 'riece-globals)
33 (require 'riece-display)
34 (eval-when-compile (require 'riece-lsdb))
35
36 (defvar riece-xface-enabled nil)
37
38 (defconst riece-xface-description
39   "Display X-Face in IRC buffers.")
40
41 (defvar lsdb-insert-x-face-function)
42
43 (defun riece-xface-update-user-list-buffer ()
44   (if riece-xface-enabled
45       (riece-scan-property-region
46        'riece-identity (point-min)(point-max)
47        (lambda (start end)
48          (let ((records (riece-lsdb-lookup-records (get-text-property
49                                                     start 'riece-identity)))
50                xface)
51            (while (and records
52                        (null xface))
53              (setq xface (nth 1 (assq 'x-face (car records)))
54                    records (cdr records)))
55            (if (and xface
56                     (not (eq (char-after end) ? )))
57                (let ((inhibit-read-only t)
58                      buffer-read-only)
59                  (goto-char end)
60                  (insert " ")
61                  (funcall lsdb-insert-x-face-function xface))))))))
62
63 (defun riece-xface-requires ()
64   '(riece-lsdb))
65
66 (defun riece-xface-user-list-mode-hook ()
67   (add-hook 'riece-update-buffer-functions
68             'riece-xface-update-user-list-buffer t t))
69
70 (defun riece-xface-insinuate ()
71   (add-hook 'riece-user-list-mode-hook
72             'riece-xface-user-list-mode-hook))
73
74 (defun riece-xface-uninstall ()
75   (remove-hook 'riece-user-list-mode-hook
76                'riece-xface-user-list-mode-hook)
77   (with-current-buffer riece-user-list-buffer
78     (remove-hook 'riece-update-buffer-functions
79                  'riece-xface-update-user-list-buffer t)))
80
81 (defun riece-xface-enable ()
82   (setq riece-xface-enabled t)
83   (if riece-current-channel
84       (riece-emit-signal 'user-list-changed riece-current-channel)))
85
86 (defun riece-xface-disable ()
87   (setq riece-xface-enabled nil)
88   (if riece-current-channel
89       (riece-emit-signal 'user-list-changed riece-current-channel)))
90
91 (provide 'riece-xface)
92
93 ;;; riece-xface.el ends here