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