1 ;;; gnus-ems.el --- functions for making Gnus work under different Emacsen
3 ;; Copyright (C) 1995-2013 Free Software Foundation, Inc.
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
31 ;;; Function aliases later to be redefined for XEmacs usage.
33 (defvar gnus-mouse-2
[mouse-2
])
34 (defvar gnus-down-mouse-3
[down-mouse-3
])
35 (defvar gnus-down-mouse-2
[down-mouse-2
])
36 (defvar gnus-widget-button-keymap nil
)
37 (defvar gnus-mode-line-modified
38 (if (featurep 'xemacs
)
43 (autoload 'gnus-xmas-define
"gnus-xmas")
44 (autoload 'gnus-xmas-redefine
"gnus-xmas"))
46 (autoload 'gnus-get-buffer-create
"gnus")
47 (autoload 'nnheader-find-etc-directory
"nnheader")
48 (autoload 'smiley-region
"smiley")
50 (defun gnus-kill-all-overlays ()
51 "Delete all overlays in the current buffer."
52 (let* ((overlayss (overlay-lists))
53 (buffer-read-only nil
)
54 (overlays (delq nil
(nconc (car overlayss
) (cdr overlayss
)))))
56 (delete-overlay (pop overlays
)))))
60 (defun gnus-mule-max-width-function (el max-width
)
61 `(let* ((val (eval (, el
)))
62 (valstr (if (numberp val
)
63 (int-to-string val
) val
)))
64 (if (> (length valstr
) ,max-width
)
65 (truncate-string-to-width valstr
,max-width
)
69 (if (featurep 'xemacs
)
71 (defvar gnus-mouse-face-prop
'mouse-face
72 "Property used for highlighting mouse regions.")))
74 (defvar gnus-tmp-unread
)
75 (defvar gnus-tmp-replied
)
76 (defvar gnus-tmp-score-char
)
77 (defvar gnus-tmp-indentation
)
78 (defvar gnus-tmp-opening-bracket
)
79 (defvar gnus-tmp-lines
)
80 (defvar gnus-tmp-name
)
81 (defvar gnus-tmp-closing-bracket
)
82 (defvar gnus-tmp-subject-or-nil
)
83 (defvar gnus-check-before-posting
)
84 (defvar gnus-mouse-face
)
85 (defvar gnus-group-buffer
)
87 (defun gnus-ems-redefine ()
93 ;; Mule and new Emacs definitions
95 ;; [Note] Now there are three kinds of mule implementations,
96 ;; original MULE, XEmacs/mule and Emacs 20+ including
97 ;; MULE features. Unfortunately these APIs are different. In
98 ;; particular, Emacs (including original Mule) and XEmacs are
99 ;; quite different. However, this version of Gnus doesn't support
100 ;; anything other than XEmacs 20+ and Emacs 20.3+.
102 ;; Predicates to check are following:
103 ;; (boundp 'MULE) is t only if Mule (original; anything older than
104 ;; Mule 2.3) is running.
105 ;; (featurep 'mule) is t when other mule variants are running.
107 ;; It is possible to detect XEmacs/mule by (featurep 'mule) and
108 ;; (featurep 'xemacs). In this case, the implementation for
109 ;; XEmacs/mule may be shareable between XEmacs and XEmacs/mule.
111 (defvar gnus-summary-display-table nil
112 "Display table used in summary mode buffers.")
113 (defalias 'gnus-max-width-function
'gnus-mule-max-width-function
)
115 (when (boundp 'gnus-check-before-posting
)
116 (setq gnus-check-before-posting
118 (delq 'control-chars gnus-check-before-posting
))))
120 (defun gnus-summary-line-format-spec ()
121 (insert gnus-tmp-unread gnus-tmp-replied
122 gnus-tmp-score-char gnus-tmp-indentation
)
127 gnus-tmp-opening-bracket
130 (if (> (length gnus-tmp-name
) 20)
131 (truncate-string-to-width gnus-tmp-name
20)
133 gnus-tmp-closing-bracket
)
135 gnus-mouse-face-prop gnus-mouse-face
)
136 (insert " " gnus-tmp-subject-or-nil
"\n")))))
138 ;; Clone of `appt-select-lowest-window' in appt.el.
139 (defun gnus-select-lowest-window ()
140 "Select the lowest window on the frame."
141 (let ((lowest-window (selected-window))
142 (bottom-edge (nth 3 (window-edges))))
143 (walk-windows (lambda (w)
144 (let ((next-bottom-edge (nth 3 (window-edges w
))))
145 (when (< bottom-edge next-bottom-edge
)
146 (setq bottom-edge next-bottom-edge
148 (select-window lowest-window
)))
150 (defun gnus-region-active-p ()
151 "Say whether the region is active."
152 (and (boundp 'transient-mark-mode
)
154 (boundp 'mark-active
)
157 (defun gnus-mark-active-p ()
158 "Non-nil means the mark and region are currently active in this buffer."
159 mark-active
) ; aliased to region-exists-p in XEmacs.
161 (autoload 'gnus-alive-p
"gnus-util")
162 (autoload 'mm-disable-multibyte
"mm-util")
166 (defun gnus-image-type-available-p (type)
167 (and (fboundp 'image-type-available-p
)
168 (image-type-available-p type
)
169 (if (fboundp 'display-images-p
)
173 (defun gnus-create-image (file &optional type data-p
&rest props
)
174 (let ((face (plist-get props
:face
)))
176 (setq props
(plist-put props
:foreground
(face-foreground face
)))
177 (setq props
(plist-put props
:background
(face-background face
))))
179 (apply 'create-image file type data-p props
))))
181 (defun gnus-put-image (glyph &optional string category
)
182 (let ((point (point)))
183 (insert-image glyph
(or string
" "))
184 (put-text-property point
(point) 'gnus-image-category category
)
186 (put-text-property (1- (point)) (point)
187 'gnus-image-text-deletable t
))
190 (defun gnus-remove-image (image &optional category
)
191 "Remove the image matching IMAGE and CATEGORY found first."
192 (let ((start (point-min))
194 (while (and (not end
)
195 (or (setq val
(get-text-property start
'display
))
197 (next-single-property-change start
'display
))
198 (setq val
(get-text-property start
'display
)))))
199 (setq end
(or (next-single-property-change start
'display
)
201 (if (and (equal val image
)
202 (equal (get-text-property start
'gnus-image-category
)
205 (put-text-property start end
'display nil
)
206 (when (get-text-property start
'gnus-image-text-deletable
)
207 (delete-region start end
)))
208 (unless (= end
(point-max))
212 (defmacro gnus-string-mark-left-to-right
(string)
213 (if (fboundp 'bidi-string-mark-left-to-right
)
214 `(bidi-string-mark-left-to-right ,string
)
218 ;; XEmacs does not have window-inside-pixel-edges
219 (defalias 'gnus-window-inside-pixel-edges
220 (if (fboundp 'window-inside-pixel-edges
)
221 'window-inside-pixel-edges
222 'window-pixel-edges
))
224 (if (fboundp 'set-process-plist
)
226 (defalias 'gnus-set-process-plist
'set-process-plist
)
227 (defalias 'gnus-process-plist
'process-plist
)
228 (defalias 'gnus-process-get
'process-get
)
229 (defalias 'gnus-process-put
'process-put
))
230 (defun gnus-set-process-plist (process plist
)
231 "Replace the plist of PROCESS with PLIST. Returns PLIST."
232 (put 'gnus-process-plist-internal process plist
))
234 (defun gnus-process-plist (process)
235 "Return the plist of PROCESS."
236 ;; This form works but can't prevent the plist data from
237 ;; growing infinitely.
238 ;;(get 'gnus-process-plist-internal process)
239 (let* ((plist (symbol-plist 'gnus-process-plist-internal
))
240 (tem (memq process plist
)))
243 ;; Remove it from the plist data.
247 (setcar plist
(caddr plist
))
248 (setcdr plist
(or (cdddr plist
) '(nil))))
249 (setcdr (nthcdr (- (length plist
) (length tem
) 1) plist
)
252 (defun gnus-process-get (process propname
)
253 "Return the value of PROCESS' PROPNAME property.
254 This is the last value stored with `(gnus-process-put PROCESS PROPNAME VALUE)'."
255 (plist-get (gnus-process-plist process
) propname
))
257 (defun gnus-process-put (process propname value
)
258 "Change PROCESS' PROPNAME property to VALUE.
259 It can be retrieved with `(gnus-process-get PROCESS PROPNAME)'."
260 (gnus-set-process-plist process
261 (plist-put (gnus-process-plist process
)
266 ;;; gnus-ems.el ends here