9b3e2cb88486eaf0cc6dcacc57eb55d67bde0fc7
[elisp/gnus.git-] / lisp / gnus-ems.el
1 ;;; gnus-ems.el --- functions for making Semi-gnus work under different Emacsen
2 ;; Copyright (C) 1995,96,97,98 Free Software Foundation, Inc.
3
4 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
5 ;;         Tatsuya Ichikawa <t-ichi@niagara.shiojiri.ne.jp>
6 ;; Keywords: news
7
8 ;; This file is part of GNU Emacs.
9
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 2, or (at your option)
13 ;; any later version.
14
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.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;;; Code:
28
29 (eval-when-compile (require 'cl))
30
31 ;;; Function aliases later to be redefined for XEmacs usage.
32
33 (defvar gnus-xemacs (string-match "XEmacs\\|Lucid" emacs-version)
34   "Non-nil if running under XEmacs.")
35
36 (defvar gnus-mouse-2 [mouse-2])
37 (defvar gnus-mouse-3 [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 (or gnus-xemacs
42           (< emacs-major-version 20))
43       '("--**-" . "-----")
44     '("**" "--")))
45
46 (eval-and-compile
47   (autoload 'gnus-xmas-define "gnus-xmas")
48   (autoload 'gnus-xmas-redefine "gnus-xmas")
49   (autoload 'appt-select-lowest-window "appt"))
50
51 (or (fboundp 'mail-file-babyl-p)
52     (fset 'mail-file-babyl-p 'rmail-file-p))
53
54 ;;; Mule functions.
55
56 (defun gnus-mule-cite-add-face (number prefix face)
57   ;; At line NUMBER, ignore PREFIX and add FACE to the rest of the line.
58   (when face
59     (let ((inhibit-point-motion-hooks t)
60           from to)
61       (goto-line number)
62       (unless (eobp)            ; Sometimes things become confused (broken).
63         (forward-char (chars-in-string prefix))
64         (skip-chars-forward " \t")
65         (setq from (point))
66         (end-of-line 1)
67         (skip-chars-backward " \t")
68         (setq to (point))
69         (when (< from to)
70           (push (setq overlay (gnus-make-overlay from to))
71                 gnus-cite-overlay-list)
72           (gnus-overlay-put (gnus-make-overlay from to) 'face face))))))
73
74 (defvar gnus-mule-bitmap-image-file nil)
75 (defun gnus-mule-group-startup-message (&optional x y)
76   "Insert startup message in current buffer."
77   ;; Insert the message.
78   (erase-buffer)
79   (insert
80    (if (featurep 'bitmap)
81      (format "              %s
82
83 "
84              "" (if (and (stringp gnus-mule-bitmap-image-file)
85                          (file-exists-p gnus-mule-bitmap-image-file))
86                     (insert-file gnus-mule-bitmap-image-file)))
87      (format "              %s
88           _    ___ _             _
89           _ ___ __ ___  __    _ ___
90           __   _     ___    __  ___
91               _           ___     _
92              _  _ __             _
93              ___   __            _
94                    __           _
95                     _      _   _
96                    _      _    _
97                       _  _    _
98                   __  ___
99                  _   _ _     _
100                 _   _
101               _    _
102              _    _
103             _
104           __
105
106 "
107              "")))
108   ;; And then hack it.
109   (gnus-indent-rigidly (point-min) (point-max)
110                        (/ (max (- (window-width) (or x 46)) 0) 2))
111   (goto-char (point-min))
112   (forward-line 1)
113   (let* ((pheight (count-lines (point-min) (point-max)))
114          (wheight (window-height))
115          (rest (- wheight pheight)))
116     (insert (make-string (max 0 (* 2 (/ rest 3))) ?\n)))
117   ;; Fontify some.
118   (put-text-property (point-min) (point-max) 'face 'gnus-splash-face)
119   (goto-char (point-min))
120   (setq mode-line-buffer-identification (concat " " gnus-version))
121   (setq gnus-simple-splash t)
122   (set-buffer-modified-p t))
123
124 (defun gnus-encode-coding-string (string system)
125   string)
126
127 (defun gnus-decode-coding-string (string system)
128   string)
129
130 (eval-and-compile
131   (if (string-match "XEmacs\\|Lucid" emacs-version)
132       nil
133
134     (defvar gnus-mouse-face-prop 'mouse-face
135       "Property used for highlighting mouse regions."))
136
137   (cond
138    ((string-match "XEmacs\\|Lucid" emacs-version)
139     (gnus-xmas-define))
140
141    ((or (not (boundp 'emacs-minor-version))
142         (and (< emacs-major-version 20)
143              (< emacs-minor-version 30)))
144     ;; Remove the `intangible' prop.
145     (let ((props (and (boundp 'gnus-hidden-properties)
146                       gnus-hidden-properties)))
147       (while (and props (not (eq (car (cdr props)) 'intangible)))
148         (setq props (cdr props)))
149       (when props
150         (setcdr props (cdr (cdr (cdr props))))))
151     (unless (fboundp 'buffer-substring-no-properties)
152       (defun buffer-substring-no-properties (beg end)
153         (format "%s" (buffer-substring beg end)))))
154
155    ((boundp 'MULE)
156     (provide 'gnusutil))))
157
158 (eval-and-compile
159   (cond
160    ((not window-system)
161     (defun gnus-dummy-func (&rest args))
162     (let ((funcs '(mouse-set-point set-face-foreground
163                                    set-face-background x-popup-menu)))
164       (while funcs
165         (unless (fboundp (car funcs))
166           (fset (car funcs) 'gnus-dummy-func))
167         (setq funcs (cdr funcs)))))))
168
169 (eval-and-compile
170   (let ((case-fold-search t))
171     (cond
172      ((string-match "windows-nt\\|os/2\\|emx" (symbol-name system-type))
173       (setq nnheader-file-name-translation-alist
174             (append nnheader-file-name-translation-alist
175                     '((?: . ?_)
176                       (?+ . ?-))))))))
177
178 (defvar gnus-tmp-unread)
179 (defvar gnus-tmp-replied)
180 (defvar gnus-tmp-score-char)
181 (defvar gnus-tmp-indentation)
182 (defvar gnus-tmp-opening-bracket)
183 (defvar gnus-tmp-lines)
184 (defvar gnus-tmp-name)
185 (defvar gnus-tmp-closing-bracket)
186 (defvar gnus-tmp-subject-or-nil)
187
188 (defun gnus-ems-redefine ()
189   (cond
190    ((string-match "XEmacs\\|Lucid" emacs-version)
191     (gnus-xmas-redefine))
192
193    ((featurep 'mule)
194     ;; Mule and new Emacs definitions
195
196     ;; [Note] Now there are three kinds of mule implementations,
197     ;; original MULE, XEmacs/mule and beta version of Emacs including
198     ;; some mule features. Unfortunately these API are different. In
199     ;; particular, Emacs (including original MULE) and XEmacs are
200     ;; quite different.
201     ;; Predicates to check are following:
202     ;; (boundp 'MULE) is t only if MULE (original; anything older than
203     ;;                     Mule 2.3) is running.
204     ;; (featurep 'mule) is t when every mule variants are running.
205
206     ;; These implementations may be able to share between original
207     ;; MULE and beta version of new Emacs. In addition, it is able to
208     ;; detect XEmacs/mule by (featurep 'mule) and to check variable
209     ;; `emacs-version'. In this case, implementation for XEmacs/mule
210     ;; may be able to share between XEmacs and XEmacs/mule.
211
212     (defvar gnus-summary-display-table nil
213       "Display table used in summary mode buffers.")
214     (fset 'gnus-summary-set-display-table (lambda ()))
215     (fset 'gnus-encode-coding-string 'encode-coding-string)
216     (fset 'gnus-decode-coding-string 'decode-coding-string)
217
218     (if (fboundp 'truncate-string-to-width)
219         (fset 'gnus-truncate-string 'truncate-string-to-width)
220       (fset 'gnus-truncate-string 'truncate-string))
221
222     (defun gnus-tilde-max-form (el max-width)
223       "Return a form that limits EL to MAX-WIDTH."
224       (let ((max (abs max-width)))
225         (if (symbolp el)
226             `(if (> (string-width ,el) ,max)
227                  ,(if (< max-width 0)
228                       `(gnus-truncate-string
229                         ,el (string-width ,el)
230                         (- (string-width ,el) ,max))
231                     `(gnus-truncate-string ,el ,max))
232                ,el)
233           `(let ((val (eval ,el)))
234              (if (> (string-width val) ,max)
235                  ,(if (< max-width 0)
236                       `(gnus-truncate-string
237                         val (string-width val)
238                         (- (string-width val) ,max))
239                     `(gnus-truncate-string val ,max))
240                val)))))
241
242     (defun gnus-tilde-cut-form (el cut-width)
243       "Return a form that cuts CUT-WIDTH off of EL."
244       (let ((cut (abs cut-width)))
245         (if (symbolp el)
246             `(if (> (string-width ,el) ,cut)
247                  ,(if (< cut-width 0)
248                       `(gnus-truncate-string
249                         ,el (- (string-width ,el) ,cut))
250                     `(gnus-truncate-string
251                       ,el (- (string-width ,el) ,cut) ,cut))
252                ,el)
253           `(let ((val (eval ,el)))
254              (if (> (string-width val) ,cut)
255                  ,(if (< cut-width 0)
256                       `(gnus-truncate-string
257                         val (- (string-width val) ,cut))
258                     `(gnus-truncate-string
259                       val (- (string-width val) ,cut) ,cut))
260                val)))))
261
262     (when window-system
263       (require 'path-util)
264       (if (module-installed-p 'bitmap)
265           (fset 'gnus-group-startup-message 'gnus-mule-group-startup-message)
266         ))
267
268     (when (boundp 'gnus-check-before-posting)
269       (setq gnus-check-before-posting
270             (delq 'long-lines
271                   (delq 'control-chars gnus-check-before-posting))))
272
273     (when (fboundp 'chars-in-string)
274       (fset 'gnus-cite-add-face 'gnus-mule-cite-add-face))
275
276     )))
277
278 (defun gnus-region-active-p ()
279   "Say whether the region is active."
280   (and (boundp 'transient-mark-mode)
281        transient-mark-mode
282        (boundp 'mark-active)
283        mark-active))
284
285 (defun gnus-add-minor-mode (mode name map)
286   (if (fboundp 'add-minor-mode)
287       (add-minor-mode mode name map)
288     (set (make-local-variable mode) t)
289     (unless (assq mode minor-mode-alist)
290       (push `(,mode ,name) minor-mode-alist))
291     (unless (assq mode minor-mode-map-alist)
292       (push (cons mode map)
293             minor-mode-map-alist))))
294
295 (defun gnus-x-splash ()
296   "Show a splash screen using a pixmap in the current buffer."
297   (let ((dir (nnheader-find-etc-directory "gnus"))
298         pixmap file height beg i)
299     (save-excursion
300       (switch-to-buffer (gnus-get-buffer-create gnus-group-buffer))
301       (let ((buffer-read-only nil))
302         (erase-buffer)
303         (when (and dir
304                    (file-exists-p (setq file (concat dir "x-splash"))))
305           (with-temp-file nil
306             (insert-file-contents file)
307             (goto-char (point-min))
308             (ignore-errors
309               (setq pixmap (read (current-buffer))))))
310         (when pixmap
311           (erase-buffer)
312           (unless (facep 'gnus-splash)
313             (make-face 'gnus-splash))
314           (setq height (/ (car pixmap) (frame-char-height))
315                 width (/ (cadr pixmap) (frame-char-width)))
316           (set-face-foreground 'gnus-splash "ForestGreen")
317           (set-face-stipple 'gnus-splash pixmap)
318           (insert-char ?\n (* (/ (window-height) 2 height) height))
319           (setq i height)
320           (while (> i 0)
321             (insert-char ?  (* (+ (/ (window-width) 2 width) 1) width))
322             (setq beg (point))
323             (insert-char ?  width)
324             (set-text-properties beg (point) '(face gnus-splash))
325             (insert "\n")
326             (decf i))
327           (goto-char (point-min))
328           (sit-for 0))))))
329
330 (if (fboundp 'split-string)
331     (fset 'gnus-split-string 'split-string)
332   (defun gnus-split-string (string pattern)
333     "Return a list of substrings of STRING which are separated by PATTERN."
334     (let (parts (start 0))
335       (while (string-match pattern string start)
336         (setq parts (cons (substring string start (match-beginning 0)) parts)
337               start (match-end 0)))
338       (nreverse (cons (substring string start) parts)))))
339
340 (provide 'gnus-ems)
341
342 ;; Local Variables:
343 ;; byte-compile-warnings: '(redefine callargs)
344 ;; End:
345
346 ;;; gnus-ems.el ends here