* gnus-xmas.el (gnus-xmas-grouplens-menu-add): Remove.
[gnus] / lisp / gnus-xmas.el
1 ;;; gnus-xmas.el --- Gnus functions for XEmacs
2
3 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
4 ;;        Free Software Foundation, Inc.
5
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;; Keywords: news
8
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
13 ;; the Free Software Foundation; either version 2, or (at your option)
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
22 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
25
26 ;;; Commentary:
27
28 ;;; Code:
29
30 (eval-when-compile
31   (autoload 'gnus-active "gnus" nil nil 'macro)
32   (autoload 'gnus-group-entry "gnus" nil nil 'macro)
33   (autoload 'gnus-info-level "gnus" nil nil 'macro)
34   (autoload 'gnus-info-marks "gnus" nil nil 'macro)
35   (autoload 'gnus-info-method "gnus" nil nil 'macro)
36   (autoload 'gnus-info-score "gnus" nil nil 'macro))
37
38 (require 'text-props)
39 (defvar menu-bar-mode (featurep 'menubar))
40 (require 'messagexmas)
41 (require 'wid-edit)
42 (require 'run-at-time)
43
44 (defgroup gnus-xmas nil
45   "XEmacsoid support for Gnus"
46   :group 'gnus)
47
48 (defcustom gnus-xmas-glyph-directory nil
49   "Directory where Gnus logos and icons are located.
50 If this variable is nil, Gnus will try to locate the directory
51 automatically."
52   :type '(choice (const :tag "autodetect" nil)
53                  directory)
54   :group 'gnus-xmas)
55
56 (unless gnus-xmas-glyph-directory
57   (unless (setq gnus-xmas-glyph-directory
58                 (message-xmas-find-glyph-directory "gnus"))
59     (error "Can't find glyph directory. \
60 Possibly the `etc' directory has not been installed.")))
61
62 ;;; Internal variables.
63
64 ;; Don't warn about these undefined variables.
65
66 ;;defined in gnus.el
67 (defvar gnus-active-hashtb)
68 (defvar gnus-article-buffer)
69 (defvar gnus-auto-center-summary)
70 (defvar gnus-current-headers)
71 (defvar gnus-level-killed)
72 (defvar gnus-level-zombie)
73 (defvar gnus-newsgroup-bookmarks)
74 (defvar gnus-newsgroup-dependencies)
75 (defvar gnus-newsgroup-selected-overlay)
76 (defvar gnus-newsrc-hashtb)
77 (defvar gnus-read-mark)
78 (defvar gnus-refer-article-method)
79 (defvar gnus-reffed-article-number)
80 (defvar gnus-unread-mark)
81 (defvar gnus-version)
82 (defvar gnus-view-pseudos)
83 (defvar gnus-view-pseudos-separately)
84 (defvar gnus-visual)
85 (defvar gnus-zombie-list)
86 ;;defined in gnus-msg.el
87 (defvar gnus-article-copy)
88 (defvar gnus-check-before-posting)
89 ;;defined in gnus-vis.el
90 (defvar gnus-article-button-face)
91 (defvar gnus-article-mouse-face)
92 (defvar gnus-summary-selected-face)
93 (defvar gnus-group-reading-menu)
94 (defvar gnus-group-group-menu)
95 (defvar gnus-group-misc-menu)
96 (defvar gnus-summary-article-menu)
97 (defvar gnus-summary-thread-menu)
98 (defvar gnus-summary-misc-menu)
99 (defvar gnus-summary-post-menu)
100 (defvar gnus-summary-kill-menu)
101 (defvar gnus-article-article-menu)
102 (defvar gnus-article-treatment-menu)
103 (defvar gnus-mouse-2)
104 (defvar standard-display-table)
105 (defvar gnus-tree-minimize-window)
106
107 (defun gnus-xmas-highlight-selected-summary ()
108   ;; Highlight selected article in summary buffer
109   (when gnus-summary-selected-face
110     (when gnus-newsgroup-selected-overlay
111       (delete-extent gnus-newsgroup-selected-overlay))
112     (setq gnus-newsgroup-selected-overlay
113           (make-extent (point-at-bol) (point-at-eol)))
114     (set-extent-face gnus-newsgroup-selected-overlay
115                      gnus-summary-selected-face)))
116
117 (defcustom gnus-xmas-force-redisplay nil
118   "*If non-nil, force a redisplay before recentering the summary buffer.
119 This is ugly, but it works around a bug in `window-displayed-height'."
120   :type 'boolean
121   :group 'gnus-xmas)
122
123 (defun gnus-xmas-switch-horizontal-scrollbar-off ()
124   (when (featurep 'scrollbar)
125     (set-specifier scrollbar-height (cons (current-buffer) 0))))
126
127 (defun gnus-xmas-summary-recenter ()
128   "\"Center\" point in the summary window.
129 If `gnus-auto-center-summary' is nil, or the article buffer isn't
130 displayed, no centering will be performed."
131   ;; Suggested by earle@mahendo.JPL.NASA.GOV (Greg Earle).
132   ;; Recenter only when requested.  Suggested by popovich@park.cs.columbia.edu.
133   ;; Force redisplay to get properly computed window height.
134   (when gnus-xmas-force-redisplay
135     (sit-for 0))
136   (when gnus-auto-center-summary
137     (let* ((height (if (fboundp 'window-displayed-height)
138                        (window-displayed-height)
139                      (- (window-height) 2)))
140            (top (cond ((< height 4) 0)
141                       ((< height 7) 1)
142                       (t (if (numberp gnus-auto-center-summary)
143                              gnus-auto-center-summary
144                            2))))
145            (bottom (save-excursion (goto-char (point-max))
146                                    (forward-line (- height))
147                                    (point)))
148            (window (get-buffer-window (current-buffer))))
149       (when (get-buffer-window gnus-article-buffer)
150         ;; Only do recentering when the article buffer is displayed,
151         ;; Set the window start to either `bottom', which is the biggest
152         ;; possible valid number, or the second line from the top,
153         ;; whichever is the least.
154         ;; NOFORCE parameter suggested by Daniel Pittman <daniel@danann.net>.
155         (set-window-start
156          window (min bottom (save-excursion (forward-line (- top)) (point)))
157          t))
158       ;; Do horizontal recentering while we're at it.
159       (when (and (get-buffer-window (current-buffer) t)
160                  (not (eq gnus-auto-center-summary 'vertical)))
161         (let ((selected (selected-window)))
162           (select-window (get-buffer-window (current-buffer) t))
163           (gnus-summary-position-point)
164           (gnus-horizontal-recenter)
165           (select-window selected))))))
166
167 (defun gnus-xmas-summary-set-display-table ()
168   ;; Setup the display table -- like `gnus-summary-setup-display-table',
169   ;; but done in an XEmacsish way.
170   (let ((table (make-display-table))
171         (i 32))
172     ;; Nix out all the control chars...
173     (while (>= (setq i (1- i)) 0)
174       (aset table i [??]))
175     ;; ... but not newline and cr, of course.  (cr is necessary for the
176     ;; selective display).
177     (aset table ?\n nil)
178     (aset table ?\r nil)
179     ;; We keep TAB as well.
180     (aset table ?\t nil)
181     ;; We nix out any glyphs over 126 below ctl-arrow.
182     (let ((i (if (integerp ctl-arrow) ctl-arrow 160)))
183       (while (>= (setq i (1- i)) 127)
184         (unless (aref table i)
185           (aset table i [??]))))
186     ;; Can't use `set-specifier' because of a bug in 19.14 and earlier
187     (add-spec-to-specifier current-display-table table (current-buffer) nil)))
188
189 (defun gnus-xmas-add-text-properties (start end props &optional object)
190   (add-text-properties start end props object)
191   (put-text-property start end 'start-closed nil object))
192
193 (defun gnus-xmas-put-text-property (start end prop value &optional object)
194   (put-text-property start end prop value object)
195   (put-text-property start end 'start-closed nil object))
196
197 (defun gnus-xmas-extent-start-open (point)
198   (map-extents (lambda (extent arg)
199                  (set-extent-property extent 'start-open t))
200                nil point (min (1+ (point)) (point-max))))
201
202 (defun gnus-xmas-article-push-button (event)
203   "Check text under the mouse pointer for a callback function.
204 If the text under the mouse pointer has a `gnus-callback' property,
205 call it with the value of the `gnus-data' text property."
206   (interactive "e")
207   (set-buffer (window-buffer (event-window event)))
208   (let* ((pos (event-closest-point event))
209          (data (get-text-property pos 'gnus-data))
210          (fun (get-text-property pos 'gnus-callback)))
211     (goto-char pos)
212     (when fun
213       (funcall fun data))))
214
215 (defun gnus-xmas-move-overlay (extent start end &optional buffer)
216   (set-extent-endpoints extent start end buffer))
217
218 (defun gnus-xmas-kill-all-overlays ()
219   "Delete all extents in the current buffer."
220   (map-extents (lambda (extent ignore)
221                  (delete-extent extent)
222                  nil)))
223
224 (defun gnus-xmas-window-top-edge (&optional window)
225   (nth 1 (window-pixel-edges window)))
226
227 (defun gnus-xmas-tree-minimize ()
228   (when (and gnus-tree-minimize-window
229              (not (one-window-p)))
230     (let* ((window-min-height 2)
231            (height (1+ (count-lines (point-min) (point-max))))
232            (min (max (1- window-min-height) height))
233            (tot (if (numberp gnus-tree-minimize-window)
234                     (min gnus-tree-minimize-window min)
235                   min))
236            (win (get-buffer-window (current-buffer)))
237            (wh (and win (1- (window-height win)))))
238       (when (and win
239                  (not (eq tot wh)))
240         (let ((selected (selected-window)))
241           (select-window win)
242           (enlarge-window (- tot wh))
243           (select-window selected))))))
244
245 ;; Select the lowest window on the frame.
246 (defun gnus-xmas-appt-select-lowest-window ()
247   (let* ((lowest-window (selected-window))
248          (bottom-edge (car (cdr (cdr (cdr (window-pixel-edges))))))
249          (last-window (previous-window))
250          (window-search t))
251     (while window-search
252       (let* ((this-window (next-window))
253              (next-bottom-edge (car (cdr (cdr (cdr
254                                                (window-pixel-edges
255                                                 this-window)))))))
256         (when (< bottom-edge next-bottom-edge)
257           (setq bottom-edge next-bottom-edge)
258           (setq lowest-window this-window))
259
260         (select-window this-window)
261         (when (eq last-window this-window)
262           (select-window lowest-window)
263           (setq window-search nil))))))
264
265 (defmacro gnus-xmas-menu-add (type &rest menus)
266   `(gnus-xmas-menu-add-1 ',type ',menus))
267 (put 'gnus-xmas-menu-add 'lisp-indent-function 1)
268
269 (defun gnus-xmas-menu-add-1 (type menus)
270   (when (and menu-bar-mode
271              (gnus-visual-p (intern (format "%s-menu" type)) 'menu))
272     (while menus
273       (easy-menu-add (symbol-value (pop menus))))))
274
275 (defun gnus-xmas-group-menu-add ()
276   (gnus-xmas-menu-add group
277     gnus-group-reading-menu gnus-group-group-menu gnus-group-misc-menu))
278
279 (defun gnus-xmas-summary-menu-add ()
280   (gnus-xmas-menu-add summary
281     gnus-summary-misc-menu gnus-summary-kill-menu
282     gnus-summary-article-menu gnus-summary-thread-menu
283     gnus-summary-post-menu ))
284
285 (defun gnus-xmas-article-menu-add ()
286   (gnus-xmas-menu-add article
287     gnus-article-article-menu gnus-article-treatment-menu
288     gnus-article-post-menu gnus-article-commands-menu))
289
290 (defun gnus-xmas-score-menu-add ()
291   (gnus-xmas-menu-add score
292     gnus-score-menu))
293
294 (defun gnus-xmas-pick-menu-add ()
295   (gnus-xmas-menu-add pick
296     gnus-pick-menu))
297
298 (defun gnus-xmas-topic-menu-add ()
299   (gnus-xmas-menu-add topic
300     gnus-topic-menu))
301
302 (defun gnus-xmas-binary-menu-add ()
303   (gnus-xmas-menu-add binary
304     gnus-binary-menu))
305
306 (defun gnus-xmas-agent-summary-menu-add ()
307   (gnus-xmas-menu-add agent-summary
308     gnus-agent-summary-menu))
309
310 (defun gnus-xmas-agent-group-menu-add ()
311   (gnus-xmas-menu-add agent-group
312     gnus-agent-group-menu))
313
314 (defun gnus-xmas-agent-server-menu-add ()
315   (gnus-xmas-menu-add agent-server
316     gnus-agent-server-menu))
317
318 (defun gnus-xmas-tree-menu-add ()
319   (gnus-xmas-menu-add tree
320     gnus-tree-menu))
321
322 (defun gnus-xmas-draft-menu-add ()
323   (gnus-xmas-menu-add draft
324     gnus-draft-menu))
325
326 (defun gnus-xmas-server-menu-add ()
327   (gnus-xmas-menu-add menu
328     gnus-server-server-menu gnus-server-connections-menu))
329
330 (defun gnus-xmas-browse-menu-add ()
331   (gnus-xmas-menu-add browse
332     gnus-browse-menu))
333
334 (defun gnus-xmas-read-event-char (&optional prompt)
335   "Get the next event."
336   (when prompt
337     (message "%s" prompt))
338   (let ((event (next-command-event)))
339     (sit-for 0)
340     ;; We junk all non-key events.  Is this naughty?
341     (while (not (or (key-press-event-p event)
342                     (button-press-event-p event)))
343       (dispatch-event event)
344       (setq event (next-command-event)))
345     (cons (and (key-press-event-p event)
346                (event-to-character event))
347           event)))
348
349 (defun gnus-xmas-define ()
350   (setq gnus-mouse-2 [button2])
351   (setq gnus-mouse-3 [button3])
352   (setq gnus-widget-button-keymap widget-button-keymap)
353
354   (unless (memq 'underline (face-list))
355     (and (fboundp 'make-face)
356          (funcall (intern "make-face") 'underline)))
357   ;; Must avoid calling set-face-underline-p directly, because it
358   ;; is a defsubst in emacs19, and will make the .elc files non
359   ;; portable!
360   (unless (face-differs-from-default-p 'underline)
361     (funcall (intern "set-face-underline-p") 'underline t))
362
363   (cond
364    ((fboundp 'char-or-char-int-p)
365     ;; Handle both types of marks for XEmacs-20.x.
366     (defalias 'gnus-characterp 'char-or-char-int-p))
367    ;; V19 of XEmacs, probably.
368    (t
369     (defalias 'gnus-characterp 'characterp)))
370
371   (defalias 'gnus-make-overlay 'make-extent)
372   (defalias 'gnus-delete-overlay 'delete-extent)
373   (defalias 'gnus-overlay-put 'set-extent-property)
374   (defalias 'gnus-move-overlay 'gnus-xmas-move-overlay)
375   (defalias 'gnus-overlay-buffer 'extent-object)
376   (defalias 'gnus-overlay-start 'extent-start-position)
377   (defalias 'gnus-overlay-end 'extent-end-position)
378   (defalias 'gnus-kill-all-overlays 'gnus-xmas-kill-all-overlays)
379   (defalias 'gnus-extent-detached-p 'extent-detached-p)
380   (defalias 'gnus-add-text-properties 'gnus-xmas-add-text-properties)
381   (defalias 'gnus-put-text-property 'gnus-xmas-put-text-property)
382   (defalias 'gnus-deactivate-mark 'ignore)
383   (defalias 'gnus-window-edges 'window-pixel-edges)
384   (defalias 'gnus-assq-delete-all 'gnus-xmas-assq-delete-all)
385
386   (unless (boundp 'standard-display-table)
387     (setq standard-display-table nil))
388
389   (defvar gnus-mouse-face-prop 'highlight)
390
391   (defun gnus-byte-code (func)
392     "Return a form that can be `eval'ed based on FUNC."
393     (let ((fval (indirect-function func)))
394       (if (compiled-function-p fval)
395           (list 'funcall fval)
396         (cons 'progn (cdr (cdr fval))))))
397
398   (unless (fboundp 'match-string-no-properties)
399     (defalias 'match-string-no-properties 'match-string))
400
401   (defalias 'gnus-x-color-values
402         (if (fboundp 'x-color-values)
403             'x-color-values
404           (lambda (color)
405             (color-instance-rgb-components
406              (make-color-instance color)))))
407
408   (unless (fboundp 'char-width)
409     (defalias 'char-width (lambda (ch) 1))))
410
411 (defun gnus-xmas-redefine ()
412   "Redefine lots of Gnus functions for XEmacs."
413   (defalias 'gnus-summary-set-display-table 'gnus-xmas-summary-set-display-table)
414   (defalias 'gnus-visual-turn-off-edit-menu 'identity)
415   (defalias 'gnus-summary-recenter 'gnus-xmas-summary-recenter)
416   (defalias 'gnus-extent-start-open 'gnus-xmas-extent-start-open)
417   (defalias 'gnus-article-push-button 'gnus-xmas-article-push-button)
418   (defalias 'gnus-window-top-edge 'gnus-xmas-window-top-edge)
419   (defalias 'gnus-read-event-char 'gnus-xmas-read-event-char)
420   (defalias 'gnus-group-startup-message 'gnus-xmas-group-startup-message)
421   (defalias 'gnus-tree-minimize 'gnus-xmas-tree-minimize)
422   (defalias 'gnus-appt-select-lowest-window
423     'gnus-xmas-appt-select-lowest-window)
424   (defalias 'gnus-mail-strip-quoted-names 'gnus-xmas-mail-strip-quoted-names)
425   (defalias 'gnus-character-to-event 'character-to-event)
426   (defalias 'gnus-mode-line-buffer-identification
427     'gnus-xmas-mode-line-buffer-identification)
428   (defalias 'gnus-key-press-event-p 'key-press-event-p)
429   (defalias 'gnus-region-active-p 'region-active-p)
430   (defalias 'gnus-mark-active-p 'region-exists-p)
431   (defalias 'gnus-annotation-in-region-p 'gnus-xmas-annotation-in-region-p)
432   (defalias 'gnus-mime-button-menu 'gnus-xmas-mime-button-menu)
433   (defalias 'gnus-image-type-available-p 'gnus-xmas-image-type-available-p)
434   (defalias 'gnus-put-image 'gnus-xmas-put-image)
435   (defalias 'gnus-create-image 'gnus-xmas-create-image)
436   (defalias 'gnus-remove-image 'gnus-xmas-remove-image)
437
438   ;; These ones are not defcutom'ed, sometimes not even defvar'ed. They
439   ;; probably should. If that is done, the code below should then be moved
440   ;; where each variable is defined, in order not to mess with user settings.
441   ;; -- didier
442   (add-hook 'gnus-score-mode-hook 'gnus-xmas-score-menu-add)
443   (add-hook 'gnus-binary-mode-hook 'gnus-xmas-binary-menu-add)
444   (add-hook 'gnus-server-mode-hook 'gnus-xmas-server-menu-add)
445   (add-hook 'gnus-browse-mode-hook 'gnus-xmas-browse-menu-add)
446   (add-hook 'gnus-draft-mode-hook 'gnus-xmas-draft-menu-add)
447   (add-hook 'gnus-mailing-list-mode-hook 'gnus-xmas-mailing-list-menu-add))
448
449
450 ;;; XEmacs logo and toolbar.
451
452 (defun gnus-xmas-group-startup-message (&optional x y)
453   "Insert startup message in current buffer."
454   ;; Insert the message.
455   (erase-buffer)
456   (cond
457    ((and (console-on-window-system-p)
458          (or (featurep 'xpm)
459              (featurep 'xbm)))
460     (let* ((logo-xpm (expand-file-name "gnus.xpm" gnus-xmas-glyph-directory))
461            (logo-xbm (expand-file-name "gnus.xbm" gnus-xmas-glyph-directory))
462            (glyph (make-glyph
463                    (cond ((featurep 'xpm)
464                           `[xpm
465                             :file ,logo-xpm
466                             :color-symbols
467                             (("thing" . ,(car gnus-logo-colors))
468                              ("shadow" . ,(cadr gnus-logo-colors))
469                              ("oort" . "#eeeeee")
470                              ("background" . ,(face-background 'default)))])
471                          ((featurep 'xbm)
472                           `[xbm :file ,logo-xbm])
473                          (t [nothing])))))
474       (insert " ")
475       (set-extent-begin-glyph (make-extent (point) (point)) glyph)
476       (goto-char (point-min))
477       (while (not (eobp))
478         (insert (make-string (/ (max (- (window-width) (or x 35)) 0) 2)
479                              ?\ ))
480         (forward-line 1))
481       (setq gnus-simple-splash nil))
482     (goto-char (point-min))
483     (let* ((pheight (+ 20 (count-lines (point-min) (point-max))))
484            (wheight (window-height))
485            (rest (- wheight pheight)))
486       (insert (make-string (max 0 (* 2 (/ rest 3))) ?\n))))
487    (t
488     (insert
489      (format "              %s
490           _    ___ _             _
491           _ ___ __ ___  __    _ ___
492           __   _     ___    __  ___
493               _           ___     _
494              _  _ __             _
495              ___   __            _
496                    __           _
497                     _      _   _
498                    _      _    _
499                       _  _    _
500                   __  ___
501                  _   _ _     _
502                 _   _
503               _    _
504              _    _
505             _
506           __
507
508 "
509              ""))
510     ;; And then hack it.
511     (gnus-indent-rigidly (point-min) (point-max)
512                          (/ (max (- (window-width) (or x 46)) 0) 2))
513     (goto-char (point-min))
514     (forward-line 1)
515     (let* ((pheight (count-lines (point-min) (point-max)))
516            (wheight (window-height))
517            (rest (- wheight pheight)))
518       (insert (make-string (max 0 (* 2 (/ rest 3))) ?\n)))
519     ;; Paint it.
520     (put-text-property (point-min) (point-max) 'face 'gnus-splash-face)))
521   (setq modeline-buffer-identification
522         (list (concat gnus-version ": *Group*")))
523   (set-buffer-modified-p t))
524
525
526 ;;; The toolbar.
527
528 (defcustom gnus-use-toolbar (if (featurep 'toolbar)
529                                 'default-toolbar
530                               nil)
531   "*If nil, do not use a toolbar.
532 If it is non-nil, it must be a toolbar.  The five valid values are
533 `default-toolbar', `top-toolbar', `bottom-toolbar',
534 `right-toolbar', and `left-toolbar'."
535   :type '(choice (const default-toolbar)
536                  (const top-toolbar) (const bottom-toolbar)
537                  (const left-toolbar) (const right-toolbar)
538                  (const :tag "no toolbar" nil))
539   :group 'gnus-xmas)
540
541 (defvar gnus-group-toolbar
542   '([gnus-group-get-new-news gnus-group-get-new-news t "Get new news"]
543     [gnus-group-get-new-news-this-group
544      gnus-group-get-new-news-this-group t "Get new news in this group"]
545     [gnus-group-catchup-current
546      gnus-group-catchup-current t "Catchup group"]
547     [gnus-group-describe-group
548      gnus-group-describe-group t "Describe group"]
549     [gnus-group-unsubscribe gnus-group-unsubscribe t "Unsubscribe group"]
550     [gnus-group-subscribe gnus-group-subscribe t "Subscribe group"]
551     [gnus-group-kill-group gnus-group-kill-group t "Kill group"]
552     [gnus-summary-mail-save
553      gnus-group-save-newsrc t "Save .newsrc files"] ; borrowed icon.
554     [gnus-group-exit gnus-group-exit t "Exit Gnus"])
555   "The group buffer toolbar.")
556
557 (defvar gnus-summary-toolbar
558   '([gnus-summary-prev-unread
559      gnus-summary-prev-page-or-article t "Page up"]
560     [gnus-summary-next-unread
561      gnus-summary-next-page t "Page down"]
562     [gnus-summary-post-news
563      gnus-summary-post-news t "Post an article"]
564     [gnus-summary-followup-with-original
565      gnus-summary-followup-with-original t
566      "Post a followup and yank the original"]
567     [gnus-summary-followup
568      gnus-summary-followup t "Post a followup"]
569     [gnus-summary-reply-with-original
570      gnus-summary-reply-with-original t "Mail a reply and yank the original"]
571     [gnus-summary-reply
572      gnus-summary-reply t "Mail a reply"]
573     [gnus-summary-caesar-message
574      gnus-summary-caesar-message t "Rot 13"]
575     [gnus-uu-decode-uu
576      gnus-uu-decode-uu t "Decode uuencoded articles"]
577     [gnus-summary-save-article-file
578      gnus-summary-save-article-file t "Save article in file"]
579     [gnus-summary-save-article
580      gnus-summary-save-article t "Save article"]
581     [gnus-uu-post-news
582      gnus-uu-post-news t "Post a uuencoded article"]
583     [gnus-summary-cancel-article
584      gnus-summary-cancel-article t "Cancel article"]
585     [gnus-summary-catchup
586      gnus-summary-catchup t "Catchup"]
587     [gnus-summary-catchup-and-exit
588      gnus-summary-catchup-and-exit t "Catchup and exit"]
589     [gnus-summary-exit gnus-summary-exit t "Exit this summary"])
590   "The summary buffer toolbar.")
591
592 (defvar gnus-summary-mail-toolbar
593   '(
594     [gnus-summary-prev-unread
595      gnus-summary-prev-unread-article t "Prev unread article"]
596     [gnus-summary-next-unread
597      gnus-summary-next-unread-article t "Next unread article"]
598     [gnus-summary-mail-reply gnus-summary-reply t "Reply"]
599     [gnus-summary-mail-originate gnus-summary-post-news t "Originate"]
600     [gnus-summary-mail-save gnus-summary-save-article t "Save"]
601     [gnus-summary-mail-copy gnus-summary-copy-article t "Copy message"]
602     [gnus-summary-mail-forward gnus-summary-mail-forward t "Forward message"]
603     [gnus-summary-caesar-message
604      gnus-summary-caesar-message t "Rot 13"]
605     [gnus-uu-decode-uu
606      gnus-uu-decode-uu t "Decode uuencoded articles"]
607     [gnus-summary-save-article-file
608      gnus-summary-save-article-file t "Save article in file"]
609     [gnus-summary-save-article
610      gnus-summary-save-article t "Save article"]
611     [gnus-summary-cancel-article ; usenet : cancellation :: mail : deletion.
612      gnus-summary-delete-article t "Delete message"]
613     [gnus-summary-catchup
614      gnus-summary-catchup t "Catchup"]
615     [gnus-summary-catchup-and-exit
616      gnus-summary-catchup-and-exit t "Catchup and exit"]
617     [gnus-summary-exit gnus-summary-exit t "Exit this summary"])
618   "The summary buffer mail toolbar.")
619
620 (defun gnus-xmas-setup-group-toolbar ()
621   (and gnus-use-toolbar
622        (message-xmas-setup-toolbar gnus-group-toolbar nil "gnus")
623        (set-specifier (symbol-value gnus-use-toolbar)
624                       (cons (current-buffer) gnus-group-toolbar))))
625
626 (defun gnus-xmas-setup-summary-toolbar ()
627   (let ((bar (if (gnus-news-group-p gnus-newsgroup-name)
628                  gnus-summary-toolbar gnus-summary-mail-toolbar)))
629     (and gnus-use-toolbar
630          (message-xmas-setup-toolbar bar nil "gnus")
631          (set-specifier (symbol-value gnus-use-toolbar)
632                         (cons (current-buffer) bar)))))
633
634 (defun gnus-xmas-mail-strip-quoted-names (address)
635   "Protect mail-strip-quoted-names from nil input.
636 XEmacs compatibility workaround."
637   (if (null address)
638       nil
639     (mail-strip-quoted-names address)))
640
641 (defun gnus-xmas-call-region (command &rest args)
642   (apply
643    'call-process-region (point-min) (point-max) command t '(t nil) nil
644    args))
645
646 (defvar gnus-xmas-modeline-left-extent
647   (let ((ext (copy-extent modeline-buffer-id-left-extent)))
648     ext))
649
650 (defvar gnus-xmas-modeline-right-extent
651   (let ((ext (copy-extent modeline-buffer-id-right-extent)))
652     ext))
653
654 (defvar gnus-xmas-modeline-glyph
655   (progn
656     (let* ((file-xpm (expand-file-name "gnus-pointer.xpm"
657                                        gnus-xmas-glyph-directory))
658            (file-xbm (expand-file-name "gnus-pointer.xbm"
659                                        gnus-xmas-glyph-directory))
660            (glyph (make-glyph
661                    ;; Gag gag gag.
662                    (cond ((featurep 'xpm)
663                           ;; Let's try a nifty XPM
664                           `[xpm :file ,file-xpm])
665                          ((featurep 'xbm)
666                           ;; Then a not-so-nifty XBM
667                           `[xbm :file ,file-xbm])
668                          ;; Then the simple string
669                          (t [string :data "Gnus:"])))))
670       (set-glyph-face glyph 'modeline-buffer-id)
671       glyph)))
672
673 (defun gnus-xmas-mode-line-buffer-identification (line)
674   (let ((line (car line))
675         chop)
676     (cond
677      ;; This is some weird type of id.
678      ((not (stringp line))
679       (list line))
680      ;; This is non-standard, so we just pass it through.
681      ((not (string-match "^Gnus:" line))
682       (list line))
683      ;; We have a standard line, so we colorize and glyphize it a bit.
684      (t
685       (setq chop (match-end 0))
686       (list
687        (if gnus-xmas-modeline-glyph
688            (cons gnus-xmas-modeline-left-extent gnus-xmas-modeline-glyph)
689          (cons gnus-xmas-modeline-left-extent (substring line 0 chop)))
690        (cons gnus-xmas-modeline-right-extent (substring line chop)))))))
691
692 (defun gnus-xmas-splash ()
693   (when (eq (device-type) 'x)
694     (gnus-splash)))
695
696 (defun gnus-xmas-annotation-in-region-p (b e)
697   (or (map-extents (lambda (e u) t) nil b e nil nil 'mm t)
698       (if (= b e)
699           (eq (cadr (memq 'gnus-undeletable (text-properties-at b))) t)
700         (text-property-any b e 'gnus-undeletable t))))
701
702 (defun gnus-xmas-mime-button-menu (event prefix)
703   "Construct a context-sensitive menu of MIME commands."
704   (interactive "e\nP")
705   (let ((response (get-popup-menu-response
706                    `("MIME Part"
707                      ,@(mapcar (lambda (c) `[,(caddr c) ,(car c) t])
708                                gnus-mime-button-commands)))))
709     (set-buffer (event-buffer event))
710     (goto-char (event-point event))
711     (funcall (event-function response) (event-object response))))
712
713 (defun gnus-group-add-icon ()
714   "Add an icon to the current line according to `gnus-group-icon-list'."
715   (let* ((p (point))
716          (end (point-at-eol))
717          ;; now find out where the line starts and leave point there.
718          (beg (progn (beginning-of-line) (point))))
719     (save-restriction
720       (narrow-to-region beg end)
721       (goto-char beg)
722       (when (search-forward "==&&==" nil t)
723         (let* ((group (gnus-group-group-name))
724                (entry (gnus-group-entry group))
725                (unread (if (numberp (car entry)) (car entry) 0))
726                (active (gnus-active group))
727                (total (if active (1+ (- (cdr active) (car active))) 0))
728                (info (nth 2 entry))
729                (method (gnus-server-get-method group (gnus-info-method info)))
730                (marked (gnus-info-marks info))
731                (mailp (memq 'mail (assoc (symbol-name
732                                           (car (or method gnus-select-method)))
733                                          gnus-valid-select-methods)))
734                (level (or (gnus-info-level info) gnus-level-killed))
735                (score (or (gnus-info-score info) 0))
736                (ticked (gnus-range-length (cdr (assq 'tick marked))))
737                (group-age (gnus-group-timestamp-delta group))
738                (inhibit-read-only t)
739                (list gnus-group-icon-list)
740                (mystart (match-beginning 0))
741                (myend (match-end 0)))
742           (goto-char (point-min))
743           (while (and list
744                       (not (eval (caar list))))
745             (setq list (cdr list)))
746           (if list
747               (let* ((file (cdar list))
748                      (glyph (gnus-group-icon-create-glyph
749                              (buffer-substring mystart myend)
750                              file)))
751                 (if glyph
752                     (progn
753                       (mapcar 'delete-annotation (annotations-at myend))
754                       (let ((ext (make-extent mystart myend))
755                             (ant (make-annotation glyph myend 'text)))
756                         ;; set text extent params
757                         (set-extent-property ext 'end-open t)
758                         (set-extent-property ext 'start-open t)
759                         (set-extent-property ext 'invisible t)))
760                   (delete-region mystart myend)))
761             (delete-region mystart myend))))
762       (widen))
763     (goto-char p)))
764
765 (defun gnus-group-icon-create-glyph (substring pixmap)
766   "Create a glyph for insertion into a group line."
767   (or
768    (cdr-safe (assoc pixmap gnus-group-icon-cache))
769    (let* ((glyph (make-glyph
770                   (list
771                    (cons 'x
772                          (expand-file-name pixmap gnus-xmas-glyph-directory))
773                    (cons 'mswindows
774                          (expand-file-name pixmap gnus-xmas-glyph-directory))
775                    (cons 'tty substring)))))
776      (setq gnus-group-icon-cache
777            (cons (cons pixmap glyph) gnus-group-icon-cache))
778      (set-glyph-face glyph 'default)
779      glyph)))
780
781 (defun gnus-xmas-mailing-list-menu-add ()
782   (gnus-xmas-menu-add mailing-list
783                       gnus-mailing-list-menu))
784
785 (defun gnus-xmas-image-type-available-p (type)
786   (and window-system
787        (featurep (if (eq type 'pbm) 'xbm type))))
788
789 (defun gnus-xmas-create-image (file &optional type data-p &rest props)
790   (let ((type (if type
791                   (symbol-name type)
792                 (car (last (split-string file "[.]")))))
793         (face (plist-get props :face))
794         glyph)
795     (when (equal type "pbm")
796       (with-temp-buffer
797         (if data-p
798             (insert file)
799           (insert-file-contents-literally file))
800         (shell-command-on-region (point-min) (point-max)
801                                  "ppmtoxpm 2>/dev/null" t)
802         (setq file (buffer-string)
803               type "xpm"
804               data-p t)))
805     (setq glyph
806           (if (equal type "xbm")
807               (make-glyph (list (cons 'x file)))
808             (with-temp-buffer
809               (if data-p
810                   (insert file)
811                 (insert-file-contents-literally file))
812               (make-glyph
813                (vector
814                 (or (intern type)
815                     (mm-image-type-from-buffer))
816                 :data (buffer-string))))))
817     (when face
818       (set-glyph-face glyph face))
819     glyph))
820
821 (defun gnus-xmas-put-image (glyph &optional string category)
822   "Insert STRING, but display GLYPH.
823 Warning: Don't insert text immediately after the image."
824   (let ((begin (point))
825         extent)
826     (if (and (bobp) (not string))
827         (setq string " "))
828     (if string
829         (insert string)
830       (setq begin (1- begin)))
831     (setq extent (make-extent begin (point)))
832     (set-extent-property extent 'gnus-image category)
833     (set-extent-property extent 'duplicable t)
834     (if string
835         (set-extent-property extent 'invisible t))
836     (set-extent-property extent 'end-glyph glyph))
837   glyph)
838
839 (defun gnus-xmas-remove-image (image &optional category)
840   (map-extents
841    (lambda (ext unused)
842      (when (equal (extent-end-glyph ext) image)
843        (set-extent-property ext 'invisible nil)
844        (set-extent-property ext 'end-glyph nil))
845      nil)
846    nil nil nil nil nil 'gnus-image category))
847
848 (defun gnus-xmas-assq-delete-all (key alist)
849   (let ((elem nil))
850     (while (setq elem (assq key alist))
851       (setq alist (delq elem alist)))
852     alist))
853
854 (provide 'gnus-xmas)
855
856 ;;; gnus-xmas.el ends here