* smime.el (from):
[emacs.git] / lisp / gnus / gnus-ems.el
blob79e513b5f051d827edfd905e15f28403269c7fa2
1 ;;; gnus-ems.el --- functions for making Gnus work under different Emacsen
3 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
4 ;; 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;; Keywords: news
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 3, or (at your option)
14 ;; any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
26 ;;; Commentary:
28 ;;; Code:
30 (eval-when-compile
31 (require 'cl)
32 (require 'ring))
34 ;;; Function aliases later to be redefined for XEmacs usage.
36 (defvar gnus-mouse-2 [mouse-2])
37 (defvar gnus-down-mouse-3 [down-mouse-3])
38 (defvar gnus-down-mouse-2 [down-mouse-2])
39 (defvar gnus-widget-button-keymap nil)
40 (defvar gnus-mode-line-modified
41 (if (featurep 'xemacs)
42 '("--**-" . "-----")
43 '("**" "--")))
45 (eval-and-compile
46 (autoload 'gnus-xmas-define "gnus-xmas")
47 (autoload 'gnus-xmas-redefine "gnus-xmas")
48 (autoload 'gnus-get-buffer-create "gnus")
49 (autoload 'nnheader-find-etc-directory "nnheader"))
51 (autoload 'smiley-region "smiley")
53 (defun gnus-kill-all-overlays ()
54 "Delete all overlays in the current buffer."
55 (let* ((overlayss (overlay-lists))
56 (buffer-read-only nil)
57 (overlays (delq nil (nconc (car overlayss) (cdr overlayss)))))
58 (while overlays
59 (delete-overlay (pop overlays)))))
61 ;;; Mule functions.
63 (defun gnus-mule-max-width-function (el max-width)
64 `(let* ((val (eval (, el)))
65 (valstr (if (numberp val)
66 (int-to-string val) val)))
67 (if (> (length valstr) ,max-width)
68 (truncate-string-to-width valstr ,max-width)
69 valstr)))
71 (eval-and-compile
72 (if (featurep 'xemacs)
73 (gnus-xmas-define)
74 (defvar gnus-mouse-face-prop 'mouse-face
75 "Property used for highlighting mouse regions.")))
77 (defvar gnus-tmp-unread)
78 (defvar gnus-tmp-replied)
79 (defvar gnus-tmp-score-char)
80 (defvar gnus-tmp-indentation)
81 (defvar gnus-tmp-opening-bracket)
82 (defvar gnus-tmp-lines)
83 (defvar gnus-tmp-name)
84 (defvar gnus-tmp-closing-bracket)
85 (defvar gnus-tmp-subject-or-nil)
86 (defvar gnus-check-before-posting)
87 (defvar gnus-mouse-face)
88 (defvar gnus-group-buffer)
90 (defun gnus-ems-redefine ()
91 (cond
92 ((featurep 'xemacs)
93 (gnus-xmas-redefine))
95 ((featurep 'mule)
96 ;; Mule and new Emacs definitions
98 ;; [Note] Now there are three kinds of mule implementations,
99 ;; original MULE, XEmacs/mule and Emacs 20+ including
100 ;; MULE features. Unfortunately these APIs are different. In
101 ;; particular, Emacs (including original Mule) and XEmacs are
102 ;; quite different. However, this version of Gnus doesn't support
103 ;; anything other than XEmacs 20+ and Emacs 20.3+.
105 ;; Predicates to check are following:
106 ;; (boundp 'MULE) is t only if Mule (original; anything older than
107 ;; Mule 2.3) is running.
108 ;; (featurep 'mule) is t when other mule variants are running.
110 ;; It is possible to detect XEmacs/mule by (featurep 'mule) and
111 ;; (featurep 'xemacs). In this case, the implementation for
112 ;; XEmacs/mule may be shareable between XEmacs and XEmacs/mule.
114 (defvar gnus-summary-display-table nil
115 "Display table used in summary mode buffers.")
116 (defalias 'gnus-max-width-function 'gnus-mule-max-width-function)
118 (when (boundp 'gnus-check-before-posting)
119 (setq gnus-check-before-posting
120 (delq 'long-lines
121 (delq 'control-chars gnus-check-before-posting))))
123 (defun gnus-summary-line-format-spec ()
124 (insert gnus-tmp-unread gnus-tmp-replied
125 gnus-tmp-score-char gnus-tmp-indentation)
126 (put-text-property
127 (point)
128 (progn
129 (insert
130 gnus-tmp-opening-bracket
131 (format "%4d: %-20s"
132 gnus-tmp-lines
133 (if (> (length gnus-tmp-name) 20)
134 (truncate-string-to-width gnus-tmp-name 20)
135 gnus-tmp-name))
136 gnus-tmp-closing-bracket)
137 (point))
138 gnus-mouse-face-prop gnus-mouse-face)
139 (insert " " gnus-tmp-subject-or-nil "\n")))))
141 ;; Clone of `appt-select-lowest-window' in appt.el.
142 (defun gnus-select-lowest-window ()
143 "Select the lowest window on the frame."
144 (let ((lowest-window (selected-window))
145 (bottom-edge (nth 3 (window-edges))))
146 (walk-windows (lambda (w)
147 (let ((next-bottom-edge (nth 3 (window-edges w))))
148 (when (< bottom-edge next-bottom-edge)
149 (setq bottom-edge next-bottom-edge
150 lowest-window w)))))
151 (select-window lowest-window)))
153 (defun gnus-region-active-p ()
154 "Say whether the region is active."
155 (and (boundp 'transient-mark-mode)
156 transient-mark-mode
157 (boundp 'mark-active)
158 mark-active))
160 (defun gnus-mark-active-p ()
161 "Non-nil means the mark and region are currently active in this buffer."
162 mark-active) ; aliased to region-exists-p in XEmacs.
164 (defun gnus-x-splash ()
165 "Show a splash screen using a pixmap in the current buffer."
166 (interactive)
167 (unless window-system
168 (error "`gnus-x-splash' requires running on the window system"))
169 (switch-to-buffer (gnus-get-buffer-create (if (or (gnus-alive-p)
170 (interactive-p))
171 "*gnus-x-splash*"
172 gnus-group-buffer)))
173 (let ((inhibit-read-only t)
174 (file (nnheader-find-etc-directory "images/gnus/x-splash" t))
175 pixmap fcw fch width height fringes sbars left yoffset top ls)
176 (erase-buffer)
177 (sit-for 0) ;; Necessary for measuring the window size correctly.
178 (when (and file
179 (ignore-errors
180 (let ((coding-system-for-read 'raw-text)
181 default-enable-multibyte-characters)
182 (with-temp-buffer
183 (insert-file-contents file)
184 (goto-char (point-min))
185 (setq pixmap (read (current-buffer)))))))
186 (setq fcw (float (frame-char-width))
187 fch (float (frame-char-height))
188 width (/ (car pixmap) fcw)
189 height (/ (cadr pixmap) fch)
190 fringes (if (fboundp 'window-fringes)
191 (eval '(window-fringes))
192 '(10 11 nil))
193 sbars (frame-parameter nil 'vertical-scroll-bars))
194 (cond ((eq sbars 'right)
195 (setq sbars
196 (cons 0 (/ (or (frame-parameter nil 'scroll-bar-width) 14)
197 fcw))))
198 (sbars
199 (setq sbars
200 (cons (/ (or (frame-parameter nil 'scroll-bar-width) 14)
201 fcw)
202 0)))
204 (setq sbars '(0 . 0))))
205 (setq left (- (* (round (/ (1- (/ (+ (window-width)
206 (car sbars) (cdr sbars)
207 (/ (+ (or (car fringes) 0)
208 (or (cadr fringes) 0))
209 fcw))
210 width))
212 width)
213 (car sbars)
214 (/ (or (car fringes) 0) fcw))
215 yoffset (cadr (window-edges))
216 top (max 0 (- (* (max (if (and tool-bar-mode
217 (not (featurep 'gtk))
218 (eq (frame-first-window)
219 (selected-window)))
220 1 0)
221 (round (/ (1- (/ (+ (1- (window-height))
222 (* 2 yoffset))
223 height))
224 2)))
225 height)
226 yoffset))
227 ls (/ (or line-spacing 0) fch)
228 height (max 0 (- height ls)))
229 (cond ((>= (- top ls) 1)
230 (insert
231 (propertize
233 'display `(space :width 0 :ascent 100))
234 "\n"
235 (propertize
237 'display `(space :width 0 :height ,(- top ls 1) :ascent 100))
238 "\n"))
239 ((> (- top ls) 0)
240 (insert
241 (propertize
243 'display `(space :width 0 :height ,(- top ls) :ascent 100))
244 "\n")))
245 (if (and (> width 0) (> left 0))
246 (insert (propertize
248 'display `(space :width ,left :height ,height :ascent 0)))
249 (setq width (+ width left)))
250 (when (> width 0)
251 (insert (propertize
253 'display `(space :width ,width :height ,height :ascent 0)
254 'face `(gnus-splash :stipple ,pixmap))))
255 (goto-char (if (<= (- top ls) 0) (1- (point)) (point-min)))
256 (redraw-frame (selected-frame))
257 (sit-for 0))))
259 ;;; Image functions.
261 (defun gnus-image-type-available-p (type)
262 (and (fboundp 'image-type-available-p)
263 (image-type-available-p type)
264 (if (fboundp 'display-images-p)
265 (display-images-p)
266 t)))
268 (defun gnus-create-image (file &optional type data-p &rest props)
269 (let ((face (plist-get props :face)))
270 (when face
271 (setq props (plist-put props :foreground (face-foreground face)))
272 (setq props (plist-put props :background (face-background face))))
273 (apply 'create-image file type data-p props)))
275 (defun gnus-put-image (glyph &optional string category)
276 (let ((point (point)))
277 (insert-image glyph (or string " "))
278 (put-text-property point (point) 'gnus-image-category category)
279 (unless string
280 (put-text-property (1- (point)) (point)
281 'gnus-image-text-deletable t))
282 glyph))
284 (defun gnus-remove-image (image &optional category)
285 "Remove the image matching IMAGE and CATEGORY found first."
286 (let ((start (point-min))
287 val end)
288 (while (and (not end)
289 (or (setq val (get-text-property start 'display))
290 (and (setq start
291 (next-single-property-change start 'display))
292 (setq val (get-text-property start 'display)))))
293 (setq end (or (next-single-property-change start 'display)
294 (point-max)))
295 (if (and (equal val image)
296 (equal (get-text-property start 'gnus-image-category)
297 category))
298 (progn
299 (put-text-property start end 'display nil)
300 (when (get-text-property start 'gnus-image-text-deletable)
301 (delete-region start end)))
302 (unless (= end (point-max))
303 (setq start end
304 end nil))))))
306 (provide 'gnus-ems)
308 ;;; arch-tag: e7360b45-14b5-4171-aa39-69a44aed3cdb
309 ;;; gnus-ems.el ends here