*** empty log message ***
[gnus] / lisp / gnus-ems.el
1 ;;; gnus-ems.el --- functions for making Gnus work under different Emacsen
2 ;; Copyright (C) 1995,96 Free Software Foundation, Inc.
3
4 ;; Author: Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
5 ;; Keywords: news
6
7 ;; This file is part of GNU Emacs.
8
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
12 ;; any later version.
13
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 ;; GNU General Public License for more details.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ;; Boston, MA 02111-1307, USA.
23
24 ;;; Commentary:
25
26 ;;; Code:
27
28 (eval-when-compile (require 'cl))
29
30 (defvar gnus-xemacs (string-match "XEmacs\\|Lucid" emacs-version)
31   "Non-nil if running under XEmacs.")
32
33 (defvar gnus-mouse-2 [mouse-2])
34 (defvar gnus-down-mouse-2 [down-mouse-2])
35
36 (eval-and-compile 
37   (autoload 'gnus-xmas-define "gnus-xmas")
38   (autoload 'gnus-xmas-redefine "gnus-xmas")
39   (autoload 'appt-select-lowest-window "appt.el"))
40
41 (or (fboundp 'mail-file-babyl-p)
42     (fset 'mail-file-babyl-p 'rmail-file-p))
43
44 ;;; Mule functions.
45
46 (defun gnus-mule-cite-add-face (number prefix face)
47   ;; At line NUMBER, ignore PREFIX and add FACE to the rest of the line.
48   (when face
49     (let ((inhibit-point-motion-hooks t)
50           from to)
51       (goto-line number)
52       (if (boundp 'MULE)
53           (forward-char (chars-in-string prefix))
54         (forward-char (length prefix)))
55       (skip-chars-forward " \t")
56       (setq from (point))
57       (end-of-line 1)
58       (skip-chars-backward " \t")
59       (setq to (point))
60       (when (< from to)
61         (gnus-overlay-put (gnus-make-overlay from to) 'face face)))))
62
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 valstr (, max-width))
69          valstr))))
70
71 (eval-and-compile
72   (if gnus-xemacs
73       nil
74
75     (defvar gnus-mouse-face-prop 'mouse-face
76       "Property used for highlighting mouse regions.")
77
78     (defvar gnus-article-x-face-command
79       "{ echo '/* Width=48, Height=48 */'; uncompface; } | icontopbm | xv -quit -"
80       "String or function to be executed to display an X-Face header.
81 If it is a string, the command will be executed in a sub-shell
82 asynchronously.  The compressed face will be piped to this command.")
83 )
84
85   (cond 
86    ((string-match "XEmacs\\|Lucid" emacs-version)
87     (gnus-xmas-define))
88
89    ((or (not (boundp 'emacs-minor-version))
90         (< emacs-minor-version 30))
91     ;; Remove the `intangible' prop.
92     (let ((props (and (boundp 'gnus-hidden-properties)
93                       gnus-hidden-properties)))
94       (while (and props (not (eq (car (cdr props)) 'intangible)))
95         (setq props (cdr props)))
96       (when props
97         (setcdr props (cdr (cdr (cdr props))))))
98     (unless (fboundp 'buffer-substring-no-properties)
99       (defun buffer-substring-no-properties (beg end)
100         (format "%s" (buffer-substring beg end)))))
101    
102    ((boundp 'MULE)
103     (provide 'gnusutil))))
104
105 (eval-and-compile
106   (cond
107    ((not window-system)
108     (defun gnus-dummy-func (&rest args))
109     (let ((funcs '(mouse-set-point set-face-foreground
110                                    set-face-background x-popup-menu)))
111       (while funcs
112         (unless (fboundp (car funcs))
113           (fset (car funcs) 'gnus-dummy-func))
114         (setq funcs (cdr funcs))))))
115   (unless (fboundp 'file-regular-p)
116     (defun file-regular-p (file)
117       (and (not (file-directory-p file))
118            (not (file-symlink-p file))
119            (file-exists-p file))))
120   (unless (fboundp 'face-list)
121     (defun face-list (&rest args))))
122
123 (eval-and-compile
124   (let ((case-fold-search t))
125     (cond
126      ((string-match "windows-nt\\|os/2\\|emx" (format "%s" system-type))
127       (setq nnheader-file-name-translation-alist
128             (append nnheader-file-name-translation-alist
129                     '((?: . ?_)
130                       (?+ . ?-))))))))
131
132 (defvar gnus-tmp-unread)
133 (defvar gnus-tmp-replied)
134 (defvar gnus-tmp-score-char)
135 (defvar gnus-tmp-indentation)
136 (defvar gnus-tmp-opening-bracket)
137 (defvar gnus-tmp-lines)
138 (defvar gnus-tmp-name)
139 (defvar gnus-tmp-closing-bracket)
140 (defvar gnus-tmp-subject-or-nil)
141
142 (defun gnus-ems-redefine ()
143   (cond 
144    ((string-match "XEmacs\\|Lucid" emacs-version)
145     (gnus-xmas-redefine))
146
147    ((boundp 'MULE)
148     ;; Mule definitions
149     (defalias 'gnus-truncate-string 'truncate-string)
150
151     (defvar gnus-summary-display-table nil
152       "Display table used in summary mode buffers.")
153     (fset 'gnus-cite-add-face 'gnus-mule-cite-add-face)
154     (fset 'gnus-max-width-function 'gnus-mule-max-width-function)
155     
156     (when (boundp 'gnus-check-before-posting)
157       (setq gnus-check-before-posting
158             (delq 'long-lines
159                   (delq 'control-chars gnus-check-before-posting))))
160
161     (defun gnus-summary-line-format-spec ()
162       (insert gnus-tmp-unread gnus-tmp-replied 
163               gnus-tmp-score-char gnus-tmp-indentation)
164       (put-text-property
165        (point)
166        (progn
167          (insert 
168           gnus-tmp-opening-bracket 
169           (format "%4d: %-20s" 
170                   gnus-tmp-lines 
171                   (if (> (length gnus-tmp-name) 20)
172                       (truncate-string gnus-tmp-name 20)
173                     gnus-tmp-name))
174           gnus-tmp-closing-bracket)
175          (point))
176        gnus-mouse-face-prop gnus-mouse-face)
177       (insert " " gnus-tmp-subject-or-nil "\n"))
178     )))
179
180
181 (provide 'gnus-ems)
182
183 ;; Local Variables:
184 ;; byte-compile-warnings: '(redefine callargs)
185 ;; End:
186
187 ;;; gnus-ems.el ends here