a56b4fab2eb4ef0fb50af7604f69fe45a30472d7
[riece] / lisp / riece-highlight.el
1 ;;; riece-highlight.el --- highlight 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 ;;; Code:
26
27 (require 'riece-globals)
28 (require 'riece-options)                ;riece-channel-list-buffer-mode
29 (require 'riece-identity)               ;riece-format-identity
30 (require 'font-lock)
31
32 (defgroup riece-highlight nil
33   "Highlight your IRC buffer"
34   :tag "Highlight"
35   :prefix "riece-"
36   :group 'riece)
37
38 (defgroup riece-highlight-faces nil
39   "Faces for highlight your IRC buffer"
40   :tag "Faces"
41   :prefix "riece-highlight-"
42   :group 'riece-highlight)
43
44 (defface riece-dialogue-change-face
45   '((((class color)
46       (background dark))
47      (:foreground "cyan" :bold t))
48     (((class color)
49       (background light))
50      (:foreground "RoyalBlue" :bold t))
51     (t
52      (:bold t)))
53   "Face used for displaying \"*** Change:\" line"
54   :group 'riece-highlight-faces)
55 (defvar riece-dialogue-change-face 'riece-dialogue-change-face)
56
57 (defface riece-dialogue-notice-face
58   '((((class color)
59       (background dark))
60      (:foreground "green2" :bold t))
61     (((class color)
62       (background light))
63      (:foreground "MidnightBlue" :bold t))
64     (t
65      (:bold t)))
66   "Face used for displaying \"*** Notice:\" line"
67   :group 'riece-highlight-faces)
68 (defvar riece-dialogue-notice-face 'riece-dialogue-notice-face)
69
70 (defface riece-dialogue-wallops-face
71   '((((class color)
72       (background dark))
73      (:foreground "yellow" :bold t))
74     (((class color)
75       (background light))
76      (:foreground "blue4" :bold t))
77     (t
78      (:bold t)))
79   "Face used for displaying \"*** Wallops:\" line"
80   :group 'riece-highlight-faces)
81 (defvar riece-dialogue-wallops-face 'riece-dialogue-wallops-face)
82
83 (defface riece-dialogue-error-face
84   '((((class color)
85       (background dark))
86      (:foreground "cornflower blue" :bold t))
87     (((class color)
88       (background light))
89      (:foreground "DarkGreen"))
90     (t
91      (:bold t)))
92   "Face used for displaying \"*** Error:\" line"
93   :group 'riece-highlight-faces)
94 (defvar riece-dialogue-error-face 'riece-dialogue-error-face)
95
96 (defface riece-dialogue-info-face
97   '((((class color)
98       (background dark))
99      (:foreground "PaleTurquoise" :bold t))
100     (((class color)
101       (background light))
102      (:foreground "RoyalBlue"))
103     (t
104      (:bold t)))
105   "Face used for displaying \"*** Info:\" line"
106   :group 'riece-highlight-faces)
107 (defvar riece-dialogue-info-face 'riece-dialogue-info-face)
108
109 (defface riece-dialogue-server-face
110   '((((class color)
111       (background dark))
112      (:foreground "Gray70"))
113     (((class color)
114       (background light))
115      (:foreground "DimGray"))
116     (t
117      (:bold t)))
118   "Face used for displaying \"(from server)\" extent."
119   :group 'riece-highlight-faces)
120 (defvar riece-dialogue-server-face 'riece-dialogue-server-face)
121
122 (defface riece-dialogue-prefix-face
123   '((((class color)
124       (background dark))
125      (:foreground "moccasin"))
126     (((class color)
127       (background light))
128      (:foreground "firebrick"))
129     (t
130      (:bold nil)))
131   "Face used for displaying \"<nick>\" extent"
132   :group 'riece-highlight-faces)
133 (defvar riece-dialogue-prefix-face 'riece-dialogue-prefix-face)
134
135 (defcustom riece-dialogue-font-lock-keywords
136   (append
137    (list (list (concat "^" riece-time-prefix-regexp
138                        "\\(<[^>]+>\\|>[^<]+<\\|([^)]+)\\|{[^}]+}\\|=[^=]+=\\)")
139                '(1 riece-dialogue-prefix-face append t)))
140    ;; set property to the whole line
141    (mapcar
142     (lambda (line)
143       (cons
144        (concat
145         "^" riece-time-prefix-regexp "\\("
146         (regexp-quote
147          (symbol-value (intern (format "riece-%s-prefix" line))))
148         ".*\\)$")
149        (list 1 (intern (format "riece-dialogue-%s-face" line)) t t)))
150     '(change notice wallops error info))
151    (list (list "(from [^)]+)$" 0 riece-dialogue-server-face t)))
152   "Default expressions to highlight in riece-dialogue-mode."
153   :type '(repeat (list string))
154   :group 'riece-highlight)
155
156 (defface riece-channel-list-default-face
157   '((t ()))
158   "Face used for displaying channels."
159   :group 'riece-highlight-faces)
160 (defvar riece-channel-list-default-face 'riece-channel-list-default-face)
161
162 (defface riece-channel-list-current-face
163   '((((class color)
164       (background dark))
165      (:foreground "PaleTurquoise" :underline t))
166     (((class color)
167       (background light))
168      (:foreground "ForestGreen" :underline t))
169     (t
170      ()))
171   "Face used for displaying the current channel."
172   :group 'riece-highlight-faces)
173 (defvar riece-channel-list-current-face 'riece-channel-list-current-face)
174
175 (defcustom riece-channel-list-mark-face-alist
176   '((?* . riece-channel-list-current-face))
177   "An alist mapping marks on riece-channel-list-buffer to faces."
178   :type 'list
179   :group 'riece-highlight)
180
181 (defcustom riece-channel-list-font-lock-keywords
182   '(("^[ 0-9][0-9]:\\(.\\)\\(.*\\)"
183      (2 (or (cdr (assq (aref (match-string 1) 0)
184                        riece-channel-list-mark-face-alist))
185             riece-channel-list-default-face))))
186   "Default expressions to highlight in riece-channel-list-mode."
187   :type '(repeat (list string))
188   :group 'riece-highlight)
189
190 (defun riece-dialogue-schedule-turn-on-font-lock ()
191   (add-hook 'riece-channel-mode-hook
192             'riece-dialogue-turn-on-font-lock)
193   (add-hook 'riece-others-mode-hook
194             'riece-dialogue-turn-on-font-lock)
195   (add-hook 'riece-dialogue-mode-hook
196             'riece-dialogue-turn-on-font-lock))
197
198 (defun riece-channel-list-schedule-turn-on-font-lock ()
199   (add-hook 'riece-channel-list-mode-hook
200             'riece-channel-list-turn-on-font-lock))
201
202 (defvar font-lock-support-mode)
203 (defun riece-dialogue-turn-on-font-lock ()
204   (make-local-variable 'font-lock-defaults)
205   (setq font-lock-defaults '(riece-dialogue-font-lock-keywords t))
206   (make-local-variable 'font-lock-verbose)
207   (setq font-lock-verbose nil)
208   (when (boundp 'font-lock-support-mode)
209     (make-local-variable 'font-lock-support-mode)
210     (setq font-lock-support-mode nil))
211   (make-local-hook 'font-lock-mode-hook)
212   (setq font-lock-mode-hook nil)
213   (turn-on-font-lock)
214   (make-local-hook 'after-change-functions)
215   (add-hook 'after-change-functions
216             'riece-dialogue-hide-prefix nil 'local))
217
218 (defun riece-dialogue-hide-prefix (start end length)
219   (save-excursion
220     (goto-char start)
221     (if (looking-at riece-prefix-regexp)
222         (put-text-property (match-beginning 1) (match-end 1) 'invisible t))))
223
224 (defun riece-channel-list-turn-on-font-lock ()
225   (make-local-variable 'font-lock-defaults)
226   (setq font-lock-defaults '(riece-channel-list-font-lock-keywords t))
227   (make-local-variable 'font-lock-verbose)
228   (setq font-lock-verbose nil)
229   (when (boundp 'font-lock-support-mode)
230     (make-local-variable 'font-lock-support-mode)
231     (setq font-lock-support-mode nil))
232   (make-local-hook 'font-lock-mode-hook)
233   (setq font-lock-mode-hook nil)
234   (turn-on-font-lock))
235
236 (defun riece-highlight-insinuate ()
237   (put 'riece-channel-mode 'font-lock-defaults
238        '(riece-dialogue-font-lock-keywords t))
239   (put 'riece-others-mode 'font-lock-defaults
240        '(riece-dialogue-font-lock-keywords t))
241   (put 'riece-dialogue-mode 'font-lock-defaults
242        '(riece-dialogue-font-lock-keywords t))
243   (add-hook 'riece-after-load-startup-hook
244             'riece-dialogue-schedule-turn-on-font-lock)
245   (put 'riece-channel-list-mode 'font-lock-defaults
246        '(riece-channel-list-font-lock-keywords t))
247   (add-hook 'riece-after-load-startup-hook
248             'riece-channel-list-schedule-turn-on-font-lock))
249
250 (provide 'riece-highlight)
251
252 ;;; riece-highlight.el ends here