annotate lisp/gnus/gnus-xmas.el @ 7:c153ca296910

Added tag r19-15b4 for changeset 27bc7f280385
author cvs
date Mon, 13 Aug 2007 08:47:16 +0200
parents ac2d302a0011
children 0293115a14e9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;; gnus-xmas.el --- Gnus functions for XEmacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 ;; Copyright (C) 1995,96 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 ;; Author: Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ;; Keywords: news
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;; This file is part of GNU Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ;; it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; GNU Emacs is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;; GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;; You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;; Boston, MA 02111-1307, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 ;;; Commentary:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 ;;; Code:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 (require 'text-props)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 (eval-when-compile (require 'cl))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 (defvar menu-bar-mode (featurep 'menubar))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 (require 'messagexmas)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 (defvar gnus-xmas-glyph-directory nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 "*Directory where Gnus logos and icons are located.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 If this variable is nil, Gnus will try to locate the directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 automatically.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 (defvar gnus-xmas-logo-color-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 '((flame "#cc3300" "#ff2200")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 (pine "#c0cc93" "#f8ffb8")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 (moss "#a1cc93" "#d2ffb8")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 (irish "#04cc90" "#05ff97")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 (sky "#049acc" "#05deff")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 (tin "#6886cc" "#82b6ff")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 (velvet "#7c68cc" "#8c82ff")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 (grape "#b264cc" "#cf7df")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 (labia "#cc64c2" "#fd7dff")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 (berry "#cc6485" "#ff7db5")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 (neutral "#b4b4b4" "#878787")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 (september "#bf9900" "#ffcc00"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 "Color alist used for the Gnus logo.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 (defvar gnus-xmas-logo-color-style 'september
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 "Color styles used for the Gnus logo.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 (defvar gnus-xmas-logo-colors
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 (cdr (assq gnus-xmas-logo-color-style gnus-xmas-logo-color-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 "Colors used for the Gnus logo.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 (defvar gnus-article-x-face-command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 (if (featurep 'xface)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 'gnus-xmas-article-display-xface
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 "{ echo '/* Width=48, Height=48 */'; uncompface; } | icontopbm | xv -quit -")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 "String or function to be executed to display an X-Face header.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 If it is a string, the command will be executed in a sub-shell
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 asynchronously. The compressed face will be piped to this command.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 ;;; Internal variables.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 ;; Don't warn about these undefined variables.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 (defvar gnus-group-mode-hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 (defvar gnus-summary-mode-hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 (defvar gnus-article-mode-hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 ;;defined in gnus.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 (defvar gnus-active-hashtb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 (defvar gnus-article-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 (defvar gnus-auto-center-summary)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 (defvar gnus-buffer-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 (defvar gnus-current-headers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 (defvar gnus-level-killed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 (defvar gnus-level-zombie)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 (defvar gnus-newsgroup-bookmarks)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 (defvar gnus-newsgroup-dependencies)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 (defvar gnus-newsgroup-selected-overlay)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 (defvar gnus-newsrc-hashtb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 (defvar gnus-read-mark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 (defvar gnus-refer-article-method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 (defvar gnus-reffed-article-number)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 (defvar gnus-unread-mark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 (defvar gnus-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 (defvar gnus-view-pseudos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 (defvar gnus-view-pseudos-separately)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 (defvar gnus-visual)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 (defvar gnus-zombie-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 ;;defined in gnus-msg.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 (defvar gnus-article-copy)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 (defvar gnus-check-before-posting)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 ;;defined in gnus-vis.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 (defvar gnus-article-button-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 (defvar gnus-article-mouse-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 (defvar gnus-summary-selected-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 (defvar gnus-group-reading-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 (defvar gnus-group-group-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 (defvar gnus-group-misc-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 (defvar gnus-summary-article-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 (defvar gnus-summary-thread-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 (defvar gnus-summary-misc-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 (defvar gnus-summary-post-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 (defvar gnus-summary-kill-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 (defvar gnus-article-article-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 (defvar gnus-article-treatment-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 (defvar gnus-mouse-2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 (defvar standard-display-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 (defvar gnus-tree-minimize-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 (defun gnus-xmas-set-text-properties (start end props &optional buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 "You should NEVER use this function. It is ideologically blasphemous.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 It is provided only to ease porting of broken FSF Emacs programs."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 (if (stringp buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 (map-extents (lambda (extent ignored)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 (remove-text-properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 start end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 (list (extent-property extent 'text-prop) nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 buffer start end nil nil 'text-prop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 (gnus-add-text-properties start end props buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 (defun gnus-xmas-highlight-selected-summary ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 ;; Highlight selected article in summary buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 (when gnus-summary-selected-face
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 (if gnus-newsgroup-selected-overlay
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 (delete-extent gnus-newsgroup-selected-overlay))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 (setq gnus-newsgroup-selected-overlay
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 (make-extent (gnus-point-at-bol) (gnus-point-at-eol)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 (set-extent-face gnus-newsgroup-selected-overlay
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 gnus-summary-selected-face)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 (defun gnus-xmas-summary-recenter ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 "\"Center\" point in the summary window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 If `gnus-auto-center-summary' is nil, or the article buffer isn't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 displayed, no centering will be performed."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 ;; Suggested by earle@mahendo.JPL.NASA.GOV (Greg Earle).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 ;; Recenter only when requested. Suggested by popovich@park.cs.columbia.edu.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 (when gnus-auto-center-summary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 (let* ((height (if (fboundp 'window-displayed-height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 (window-displayed-height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 (- (window-height) 2)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 (top (cond ((< height 4) 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 ((< height 7) 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 (t 2)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 (bottom (save-excursion (goto-char (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 (forward-line (- height))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 (window (get-buffer-window (current-buffer))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 (when (get-buffer-window gnus-article-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 ;; Only do recentering when the article buffer is displayed,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 ;; Set the window start to either `bottom', which is the biggest
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 ;; possible valid number, or the second line from the top,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 ;; whichever is the least.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 (set-window-start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 window (min bottom (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 (forward-line (- top)) (point)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 ;; Do horizontal recentering while we're at it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 (when (and (get-buffer-window (current-buffer) t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 (not (eq gnus-auto-center-summary 'vertical)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 (let ((selected (selected-window)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 (select-window (get-buffer-window (current-buffer) t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 (gnus-summary-position-point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 (gnus-horizontal-recenter)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 (select-window selected))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 (defun gnus-xmas-add-hook (hook function &optional append local)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 (add-hook hook function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 (defun gnus-xmas-add-text-properties (start end props &optional object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 (add-text-properties start end props object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 (put-text-property start end 'start-closed nil object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 (defun gnus-xmas-put-text-property (start end prop value &optional object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 (put-text-property start end prop value object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 (put-text-property start end 'start-closed nil object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 (defun gnus-xmas-extent-start-open (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 (map-extents (lambda (extent arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 (set-extent-property extent 'start-open t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 nil point (min (1+ (point)) (point-max))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 (defun gnus-xmas-article-push-button (event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 "Check text under the mouse pointer for a callback function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 If the text under the mouse pointer has a `gnus-callback' property,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 call it with the value of the `gnus-data' text property."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 (interactive "e")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 (set-buffer (window-buffer (event-window event)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 (let* ((pos (event-closest-point event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 (data (get-text-property pos 'gnus-data))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 (fun (get-text-property pos 'gnus-callback)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 (if fun (funcall fun data))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 (defun gnus-xmas-move-overlay (extent start end &optional buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 (set-extent-endpoints extent start end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 ;; Fixed by Christopher Davis <ckd@loiosh.kei.com>.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 (defun gnus-xmas-article-add-button (from to fun &optional data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 "Create a button between FROM and TO with callback FUN and data DATA."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 (and gnus-article-button-face
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 (gnus-overlay-put (gnus-make-overlay from to)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 'face gnus-article-button-face))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 (gnus-add-text-properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 from to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 (nconc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 (and gnus-article-mouse-face
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 (list 'mouse-face gnus-article-mouse-face))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 (list 'gnus-callback fun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 (and data (list 'gnus-data data))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 (list 'highlight t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 (defun gnus-xmas-window-top-edge (&optional window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 (nth 1 (window-pixel-edges window)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 (defun gnus-xmas-tree-minimize ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 (when (and gnus-tree-minimize-window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 (not (one-window-p)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 (let* ((window-min-height 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 (height (1+ (count-lines (point-min) (point-max))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 (min (max (1- window-min-height) height))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 (tot (if (numberp gnus-tree-minimize-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 (min gnus-tree-minimize-window min)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 (win (get-buffer-window (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 (wh (and win (1- (window-height win)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 (when (and win
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 (not (eq tot wh)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 (let ((selected (selected-window)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 (select-window win)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 (enlarge-window (- tot wh))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 (select-window selected))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 ;; Select the lowest window on the frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 (defun gnus-xmas-appt-select-lowest-window ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 (let* ((lowest-window (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 (bottom-edge (car (cdr (cdr (cdr (window-pixel-edges))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 (last-window (previous-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 (window-search t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 (while window-search
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 (let* ((this-window (next-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 (next-bottom-edge (car (cdr (cdr (cdr
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 (window-pixel-edges
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 this-window)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 (if (< bottom-edge next-bottom-edge)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 (setq bottom-edge next-bottom-edge)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 (setq lowest-window this-window)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 (select-window this-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 (if (eq last-window this-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 (select-window lowest-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 (setq window-search nil)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 (defmacro gnus-xmas-menu-add (type &rest menus)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 `(gnus-xmas-menu-add-1 ',type ',menus))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 (put 'gnus-xmas-menu-add 'lisp-indent-function 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 (put 'gnus-xmas-menu-add 'lisp-indent-hook 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 (defun gnus-xmas-menu-add-1 (type menus)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 (when (and menu-bar-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 (gnus-visual-p (intern (format "%s-menu" type)) 'menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 (while menus
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 (easy-menu-add (symbol-value (pop menus))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 (defun gnus-xmas-group-menu-add ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 (gnus-xmas-menu-add group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 gnus-group-reading-menu gnus-group-group-menu gnus-group-misc-menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 (defun gnus-xmas-summary-menu-add ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 (gnus-xmas-menu-add summary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 gnus-summary-misc-menu gnus-summary-kill-menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 gnus-summary-article-menu gnus-summary-thread-menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 gnus-summary-post-menu ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 (defun gnus-xmas-article-menu-add ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 (gnus-xmas-menu-add article
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 gnus-article-article-menu gnus-article-treatment-menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 (defun gnus-xmas-score-menu-add ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 (gnus-xmas-menu-add score
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 gnus-score-menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 (defun gnus-xmas-pick-menu-add ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 (gnus-xmas-menu-add pick
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 gnus-pick-menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 (defun gnus-xmas-binary-menu-add ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 (gnus-xmas-menu-add binary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 gnus-binary-menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 (defun gnus-xmas-tree-menu-add ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 (gnus-xmas-menu-add tree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 gnus-tree-menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 (defun gnus-xmas-server-menu-add ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 (gnus-xmas-menu-add menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 gnus-server-server-menu gnus-server-connections-menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 (defun gnus-xmas-browse-menu-add ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 (gnus-xmas-menu-add browse
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 gnus-browse-menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 (defun gnus-xmas-grouplens-menu-add ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 (gnus-xmas-menu-add grouplens
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 gnus-grouplens-menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 (defun gnus-xmas-read-event-char ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 "Get the next event."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 (let ((event (next-event)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 ;; We junk all non-key events. Is this naughty?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 (while (not (key-press-event-p event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 (setq event (next-event)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 (cons (and (key-press-event-p event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 ; (numberp (event-key event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 (event-to-character event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 event)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 (defun gnus-xmas-group-remove-excess-properties ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 (let ((end (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 (beg (progn (forward-line -1) (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 (remove-text-properties (1+ beg) end '(gnus-group nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 (remove-text-properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 beg end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 '(gnus-topic nil gnus-topic-level nil gnus-topic-visible nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 (goto-char end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 (map-extents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 (lambda (e ma)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 (set-extent-property e 'start-closed t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 (current-buffer) beg end)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 (defun gnus-xmas-topic-remove-excess-properties ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 (let ((end (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 (beg (progn (forward-line -1) (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 (remove-text-properties beg end '(gnus-group nil gnus-unread nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 (remove-text-properties (1+ beg) end '(gnus-topic nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 (goto-char end)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 (defun gnus-xmas-seconds-since-epoch (date)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 "Return a floating point number that says how many seconds have lapsed between Jan 1 12:00:00 1970 and DATE."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 (let* ((tdate (mapcar (lambda (ti) (and ti (string-to-int ti)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 (timezone-parse-date date)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 (ttime (mapcar (lambda (ti) (and ti (string-to-int ti)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 (timezone-parse-time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 (aref (timezone-parse-date date) 3))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 (edate (mapcar (lambda (ti) (and ti (string-to-int ti)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 (timezone-parse-date "Jan 1 12:00:00 1970")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 (tday (- (timezone-absolute-from-gregorian
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 (nth 1 tdate) (nth 2 tdate) (nth 0 tdate))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 (timezone-absolute-from-gregorian
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 (nth 1 edate) (nth 2 edate) (nth 0 edate)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 (+ (nth 2 ttime)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 (* (nth 1 ttime) 60)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 (* (float (nth 0 ttime)) 60 60)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 (* (float tday) 60 60 24))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 (defun gnus-xmas-define ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 (setq gnus-mouse-2 [button2])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 (or (memq 'underline (face-list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 (and (fboundp 'make-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 (funcall (intern "make-face") 'underline)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 ;; Must avoid calling set-face-underline-p directly, because it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 ;; is a defsubst in emacs19, and will make the .elc files non
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 ;; portable!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 (or (face-differs-from-default-p 'underline)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 (funcall (intern "set-face-underline-p") 'underline t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 (fset 'gnus-make-overlay 'make-extent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 (fset 'gnus-overlay-put 'set-extent-property)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 (fset 'gnus-move-overlay 'gnus-xmas-move-overlay)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 (fset 'gnus-overlay-end 'extent-end-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 (fset 'gnus-extent-detached-p 'extent-detached-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 (fset 'gnus-add-text-properties 'gnus-xmas-add-text-properties)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 (fset 'gnus-put-text-property 'gnus-xmas-put-text-property)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 (require 'text-props)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 (if (< emacs-minor-version 14)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 (fset 'gnus-set-text-properties 'gnus-xmas-set-text-properties))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 (or (boundp 'standard-display-table) (setq standard-display-table nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 (defvar gnus-mouse-face-prop 'highlight)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 (unless (fboundp 'encode-time)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 (defun encode-time (sec minute hour day month year &optional zone)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 (let ((seconds
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 (gnus-xmas-seconds-since-epoch
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 (timezone-make-arpa-date
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 year month day (timezone-make-time-string hour minute sec)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 zone))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 (list (floor (/ seconds (expt 2 16)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 (round (mod seconds (expt 2 16)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 (defun gnus-byte-code (func)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 "Return a form that can be `eval'ed based on FUNC."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 (let ((fval (symbol-function func)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 (if (compiled-function-p fval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 (list 'funcall fval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 (cons 'progn (cdr (cdr fval))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 ;; Fix by "jeff (j.d.) sparkes" <jsparkes@bnr.ca>.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 (defvar gnus-display-type (device-class)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 "A symbol indicating the display Emacs is running under.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 The symbol should be one of `color', `grayscale' or `mono'. If Emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 guesses this display attribute wrongly, either set this variable in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 your `~/.emacs' or set the resource `Emacs.displayType' in your
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 `~/.Xdefaults'. See also `gnus-background-mode'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 This is a meta-variable that will affect what default values other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 variables get. You would normally not change this variable, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 pounce directly on the real variables themselves.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 (fset 'gnus-x-color-values
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 (if (fboundp 'x-color-values)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 'x-color-values
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 (lambda (color)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 (color-instance-rgb-components
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 (make-color-instance color)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 (defvar gnus-background-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 (let* ((bg-resource
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 (condition-case ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 (x-get-resource ".backgroundMode" "BackgroundMode" 'string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 (error nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 (params (frame-parameters))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 (color (condition-case ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 (or (assq 'background-color params)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 (color-instance-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 (specifier-instance
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 (face-background 'default))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 (error nil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 (cond (bg-resource (intern (downcase bg-resource)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 ((and color
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 (< (apply '+ (gnus-x-color-values color))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 (/ (apply '+ (gnus-x-color-values "white")) 3)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 'dark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 (t 'light)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 "A symbol indicating the Emacs background brightness.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 The symbol should be one of `light' or `dark'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 If Emacs guesses this frame attribute wrongly, either set this variable in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 your `~/.emacs' or set the resource `Emacs.backgroundMode' in your
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 `~/.Xdefaults'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 See also `gnus-display-type'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 This is a meta-variable that will affect what default values other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 variables get. You would normally not change this variable, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 pounce directly on the real variables themselves.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 (defun gnus-xmas-redefine ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 "Redefine lots of Gnus functions for XEmacs."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 (fset 'gnus-summary-make-display-table 'ignore)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 (fset 'gnus-visual-turn-off-edit-menu 'identity)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 (fset 'gnus-summary-recenter 'gnus-xmas-summary-recenter)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 (fset 'gnus-extent-start-open 'gnus-xmas-extent-start-open)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 (fset 'gnus-article-push-button 'gnus-xmas-article-push-button)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 (fset 'gnus-article-add-button 'gnus-xmas-article-add-button)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 (fset 'gnus-window-top-edge 'gnus-xmas-window-top-edge)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 (fset 'gnus-read-event-char 'gnus-xmas-read-event-char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 (fset 'gnus-group-startup-message 'gnus-xmas-group-startup-message)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 (fset 'gnus-tree-minimize 'gnus-xmas-tree-minimize)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 (fset 'gnus-appt-select-lowest-window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 'gnus-xmas-appt-select-lowest-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 (fset 'gnus-mail-strip-quoted-names 'gnus-xmas-mail-strip-quoted-names)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 (fset 'gnus-make-local-hook 'make-local-variable)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 (fset 'gnus-add-hook 'gnus-xmas-add-hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 (fset 'gnus-character-to-event 'character-to-event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 (fset 'gnus-article-show-hidden-text 'gnus-xmas-article-show-hidden-text)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 (fset 'gnus-mode-line-buffer-identification
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 'gnus-xmas-mode-line-buffer-identification)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 (add-hook 'gnus-group-mode-hook 'gnus-xmas-group-menu-add)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 (add-hook 'gnus-summary-mode-hook 'gnus-xmas-summary-menu-add)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 (add-hook 'gnus-article-mode-hook 'gnus-xmas-article-menu-add)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 (add-hook 'gnus-score-mode-hook 'gnus-xmas-score-menu-add)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 (add-hook 'gnus-pick-mode-hook 'gnus-xmas-pick-menu-add)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 (add-hook 'gnus-tree-mode-hook 'gnus-xmas-tree-menu-add)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 (add-hook 'gnus-binary-mode-hook 'gnus-xmas-binary-menu-add)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 (add-hook 'gnus-grouplens-mode-hook 'gnus-xmas-grouplens-menu-add)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 (add-hook 'gnus-server-mode-hook 'gnus-xmas-server-menu-add)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 (add-hook 'gnus-browse-mode-hook 'gnus-xmas-browse-menu-add)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 (add-hook 'gnus-group-mode-hook 'gnus-xmas-setup-group-toolbar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 (add-hook 'gnus-summary-mode-hook 'gnus-xmas-setup-summary-toolbar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 (when (and (<= emacs-major-version 19)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 (<= emacs-minor-version 13))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
501 (setq gnus-article-x-face-too-ugly (if (eq (device-type) 'tty) "."))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 (fset 'gnus-highlight-selected-summary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 'gnus-xmas-highlight-selected-summary)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 (fset 'gnus-group-remove-excess-properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 'gnus-xmas-group-remove-excess-properties)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 (fset 'gnus-topic-remove-excess-properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 'gnus-xmas-topic-remove-excess-properties)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 (fset 'gnus-mode-line-buffer-identification 'identity)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 (unless (boundp 'shell-command-switch)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 (setq shell-command-switch "-c"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 ;;; XEmacs logo and toolbar.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 (defun gnus-xmas-group-startup-message (&optional x y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 "Insert startup message in current buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 ;; Insert the message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 (setq gnus-xmas-glyph-directory (message-xmas-find-glyph-directory "gnus"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 (let ((logo (and gnus-xmas-glyph-directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 (concat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 (file-name-as-directory gnus-xmas-glyph-directory)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 "gnus."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 (if (featurep 'xpm) "xpm" "xbm"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 (xpm-color-symbols
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 (and (featurep 'xpm)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 (append `(("thing" ,(car gnus-xmas-logo-colors))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 ("shadow" ,(cadr gnus-xmas-logo-colors)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 xpm-color-symbols))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 (if (and (featurep 'xpm)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 (not (equal (device-type) 'tty))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 logo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 (file-exists-p logo))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 (setq logo (make-glyph logo))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 (insert " ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 (set-extent-begin-glyph (make-extent (point) (point)) logo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 (while (not (eobp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 (insert (make-string (/ (max (- (window-width) (or x 35)) 0) 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 ? ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 (forward-line 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 (let* ((pheight (+ 20 (count-lines (point-min) (point-max))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 (wheight (window-height))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 (rest (- wheight pheight)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 (insert (make-string (max 0 (* 2 (/ rest 3))) ?\n))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 (insert
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 (format " %s
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 _ ___ _ _
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 _ ___ __ ___ __ _ ___
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 __ _ ___ __ ___
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 _ ___ _
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 _ _ __ _
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 ___ __ _
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 __ _
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 _ _ _
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 _ _ _
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 _ _ _
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 __ ___
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 _ _ _ _
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 _ _
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 _ _
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 _ _
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 _
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 __
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 ;; And then hack it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 (gnus-indent-rigidly (point-min) (point-max)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 (/ (max (- (window-width) (or x 46)) 0) 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 (forward-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 (let* ((pheight (count-lines (point-min) (point-max)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 (wheight (window-height))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 (rest (- wheight pheight)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 (insert (make-string (max 0 (* 2 (/ rest 3))) ?\n))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 ;; Fontify some.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 (and (search-forward "Praxis" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 (put-text-property (match-beginning 0) (match-end 0) 'face 'bold))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 (let* ((mode-string (gnus-group-set-mode-line)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 (setq modeline-buffer-identification
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 (list (concat gnus-version ": *Group*")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 (set-buffer-modified-p t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 ;;; The toolbar.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 (defvar gnus-use-toolbar (if (featurep 'toolbar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 'default-toolbar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 "*If nil, do not use a toolbar.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 If it is non-nil, it must be a toolbar. The five legal values are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 `default-toolbar', `top-toolbar', `bottom-toolbar',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 `right-toolbar', and `left-toolbar'.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 (defvar gnus-group-toolbar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 '(
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 [gnus-group-get-new-news gnus-group-get-new-news t "Get new news"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 [gnus-group-get-new-news-this-group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 gnus-group-get-new-news-this-group t "Get new news in this group"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 [gnus-group-catchup-current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 gnus-group-catchup-current t "Catchup group"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 [gnus-group-describe-group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 gnus-group-describe-group t "Describe group"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 [gnus-group-kill-group gnus-group-kill-group t "Kill group"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 [gnus-group-exit gnus-group-exit t "Exit Gnus"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 "The group buffer toolbar.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 (defvar gnus-summary-toolbar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 '(
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 [gnus-summary-prev-unread
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 gnus-summary-prev-unread-article t "Prev unread article"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 [gnus-summary-next-unread
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 gnus-summary-next-unread-article t "Next unread article"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 [gnus-summary-post-news
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 gnus-summary-post-news t "Post an article"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 [gnus-summary-followup-with-original
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 gnus-summary-followup-with-original t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 "Post a followup and yank the original"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 [gnus-summary-followup
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 gnus-summary-followup t "Post a followup"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 [gnus-summary-reply-with-original
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 gnus-summary-reply-with-original t "Mail a reply and yank the original"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 [gnus-summary-reply
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 gnus-summary-reply t "Mail a reply"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 [gnus-summary-caesar-message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 gnus-summary-caesar-message t "Rot 13"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 [gnus-uu-decode-uu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 gnus-uu-decode-uu t "Decode uuencoded articles"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 [gnus-summary-save-article-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 gnus-summary-save-article-file t "Save article in file"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 [gnus-summary-save-article
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 gnus-summary-save-article t "Save article"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 [gnus-uu-post-news
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 gnus-uu-post-news t "Post an uuencoded article"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 [gnus-summary-cancel-article
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 gnus-summary-cancel-article t "Cancel article"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 [gnus-summary-catchup-and-exit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 gnus-summary-catchup-and-exit t "Catchup and exit"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 [gnus-summary-exit gnus-summary-exit t "Exit this summary"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 "The summary buffer toolbar.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 (defvar gnus-summary-mail-toolbar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 '(
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 [gnus-summary-prev-unread
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 gnus-summary-prev-unread-article t "Prev unread article"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 [gnus-summary-next-unread
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 gnus-summary-next-unread-article t "Next unread article"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 [gnus-summary-mail-reply gnus-summary-reply t "Reply"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 [gnus-summary-mail-get gnus-mail-get t "Message get"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 [gnus-summary-mail-originate gnus-summary-post-news t "Originate"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 [gnus-summary-mail-save gnus-summary-save-article t "Save"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 [gnus-summary-mail-copy gnus-summary-copy-article t "Copy message"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 ; [gnus-summary-mail-delete gnus-summary-delete-article t "Delete message"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 [gnus-summary-mail-forward gnus-summary-mail-forward t "Forward message"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 ; [gnus-summary-mail-spell gnus-mail-spell t "Spell"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 ; [gnus-summary-mail-help gnus-mail-help t "Message help"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 [gnus-summary-caesar-message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 gnus-summary-caesar-message t "Rot 13"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 [gnus-uu-decode-uu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 gnus-uu-decode-uu t "Decode uuencoded articles"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 [gnus-summary-save-article-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 gnus-summary-save-article-file t "Save article in file"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 [gnus-summary-save-article
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 gnus-summary-save-article t "Save article"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 [gnus-summary-catchup-and-exit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 gnus-summary-catchup-and-exit t "Catchup and exit"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 [gnus-summary-exit gnus-summary-exit t "Exit this summary"]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 "The summary buffer mail toolbar.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 (defun gnus-xmas-setup-group-toolbar ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 (and gnus-use-toolbar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 (message-xmas-setup-toolbar gnus-group-toolbar nil "gnus")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 (set-specifier (symbol-value gnus-use-toolbar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 (cons (current-buffer) gnus-group-toolbar))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 (defun gnus-xmas-setup-summary-toolbar ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 (let ((bar (if (gnus-news-group-p gnus-newsgroup-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 gnus-summary-toolbar gnus-summary-mail-toolbar)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 (and gnus-use-toolbar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 (message-xmas-setup-toolbar bar nil "gnus")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 (set-specifier (symbol-value gnus-use-toolbar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 (cons (current-buffer) bar)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 (defun gnus-xmas-mail-strip-quoted-names (address)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 "Protect mail-strip-quoted-names from NIL input.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 XEmacs compatibility workaround."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 (if (null address)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 (mail-strip-quoted-names address)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 (defun gnus-xmas-call-region (command &rest args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 (apply
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 'call-process-region (point-min) (point-max) command t '(t nil) nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 args))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 (unless (find-face 'gnus-x-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 (copy-face 'default 'gnus-x-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 (set-face-foreground 'gnus-x-face "black")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 (set-face-background 'gnus-x-face "white"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 (defun gnus-xmas-article-display-xface (beg end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 "Display any XFace headers in the current article."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 (let (xface-glyph)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 (if (featurep 'xface)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 (setq xface-glyph
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 (make-glyph (vector 'xface :data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 (concat "X-Face: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 (buffer-substring beg end)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 (let ((cur (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 (gnus-set-work-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 (insert (format "%s" (buffer-substring beg end cur)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 (gnus-xmas-call-region "uncompface")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 (insert "/* Width=48, Height=48 */\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 (gnus-xmas-call-region "icontopbm")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 (gnus-xmas-call-region "ppmtoxpm")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 (setq xface-glyph
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 (make-glyph
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 (vector 'xpm :data (buffer-string )))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 (set-glyph-face xface-glyph 'gnus-x-face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 (re-search-forward "^From:" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 (set-extent-begin-glyph
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 (make-extent (point) (1+ (point))) xface-glyph))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 (defun gnus-xmas-article-show-hidden-text (type &optional hide)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 "Show all hidden text of type TYPE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 If HIDE, hide the text instead."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 (set-buffer gnus-article-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 (let ((buffer-read-only nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 (inhibit-point-motion-hooks t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 (beg (point-min)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 (while (gnus-goto-char (text-property-any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 beg (point-max) 'gnus-type type))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 (setq beg (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 (forward-char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 (if hide
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 (gnus-hide-text beg (point) gnus-hidden-properties)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 (gnus-unhide-text beg (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 (setq beg (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 (save-window-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 (select-window (get-buffer-window (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 (recenter))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 (defun gnus-xmas-mode-line-buffer-identification (line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 (let ((line (car line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 chop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 (if (not (stringp line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 (list line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 (unless (setq chop (string-match ":" line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 (setq chop (/ (length line) 2)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 (list (cons modeline-buffer-id-left-extent (substring line 0 chop))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 (cons modeline-buffer-id-right-extent (substring line chop))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 (provide 'gnus-xmas)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 ;;; gnus-xmas.el ends here