* riece-keyword.el (riece-keywords): Change custom spec.
[riece] / lisp / riece-xemacs.el
1 ;;; riece-xemacs.el --- XEmacs specific functions
2 ;; Copyright (C) 1998-2003 Daiki Ueno
3
4 ;; Author: Daiki Ueno <ueno@unixuser.org>
5 ;; Keywords: emulation
6
7 ;; This file is part of Riece.
8
9 ;; This program 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 ;; This program 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 ;;; Code:
25
26 (defun riece-xemacs-hide-modeline ()
27   "Remove modeline from current window."
28   (set-specifier has-modeline-p nil (current-buffer)))
29
30 (when (featurep 'scrollbar)
31   (defun riece-xemacs-hide-scrollbars ()
32     (if (boundp 'horizontal-scrollbar-visible-p)
33         (set-specifier horizontal-scrollbar-visible-p nil (current-buffer))
34       (if (boundp 'scrollbar-height)
35           (set-specifier scrollbar-height 0 (current-buffer)))))
36   (add-hook 'riece-user-list-mode-hook 'riece-xemacs-hide-scrollbars)
37   (add-hook 'riece-channel-list-mode-hook 'riece-xemacs-hide-scrollbars))
38
39 (add-hook 'riece-user-list-mode-hook 'riece-xemacs-hide-modeline)
40 (add-hook 'riece-channel-list-mode-hook 'riece-xemacs-hide-modeline)
41
42 (defun riece-xemacs-simplify-modeline-format ()
43   "Remove unnecessary information from `modeline-format'."
44   (setq modeline-format
45         (remrassq 'modeline-modified
46                   (delq 'modeline-multibyte-status
47                         (copy-sequence mode-line-format)))))
48
49 (defalias 'riece-simplify-mode-line-format
50   'riece-xemacs-simplify-modeline-format)
51
52 (if (fboundp 'put-case-table-pair)
53     (defalias 'riece-set-case-syntax-pair
54       'put-case-table-pair)
55   ;; In XEmacs 21.1, case-table is a list of strings.
56   (defun riece-set-case-syntax-pair (uc lc case-table)
57     (aset (car case-table) (char-to-int uc) lc)
58     (if (nth 1 case-table)
59         (aset (nth 1 case-table) (char-to-int lc) uc))
60     (if (nth 2 case-table)
61         (aset (nth 2 case-table) (char-to-int uc) lc))))
62
63 (if (fboundp 'copy-case-table)
64     (defalias 'riece-copy-case-table 'copy-case-table)
65   ;; In XEmacs 21.1, case-table is a list of strings.
66   (defun riece-copy-case-table (case-table)
67     (mapcar #'copy-sequence case-table)))
68
69 ;;; stolen (and renamed) from gnus-xmas.el.
70 ;;; In GNU Emacs, user can intercept whole mouse tracking events by
71 ;;; assigning [mouse-X].  In XEmacs, however, which causes different
72 ;;; effect, that is, the command assigned to [mouse-X] only catches
73 ;;; button-release events.
74 (defvar riece-mouse-2 [button2])
75
76 ;;; popup-menu compatibility stuff, stolen (and renamed) from
77 ;;; semi-def.el.
78 (defun riece-popup-menu-popup (menu event)
79   (let ((response (get-popup-menu-response menu event)))
80     (if response
81         (funcall (event-function response) (event-object response)))))
82
83 (defalias 'riece-event-buffer 'event-buffer)
84 (defalias 'riece-event-point 'event-point)
85
86 ;;; stolen (and renamed) from gnus-xmas.el.
87 (defalias 'riece-region-active-p 'region-active-p)
88
89 (defalias 'riece-make-overlay 'make-extent)
90 (defalias 'riece-overlay-put 'set-extent-property)
91 (defalias 'riece-overlay-start 'extent-start-position)
92 (defalias 'riece-overlay-buffer 'extent-buffer)
93
94 (defun riece-overlays-in (start end)
95   (extent-list (current-buffer) start end))
96
97 (defalias 'riece-delete-overlay 'delete-extent)
98
99 (defun riece-kill-all-overlays ()
100   "Delete all extents in the current buffer."
101   (map-extents (lambda (extent ignore)
102                  (delete-extent extent)
103                  nil)))
104
105 ;;; stolen (and renamed) from nnheaderxm.el.
106 (defun riece-xemacs-generate-timer-name (&optional prefix)
107   (let ((counter '(0)))
108     (format "%s-%d"
109             (or prefix
110                 "riece-xemacs-timer")
111             (prog1 (car counter)
112               (setcar counter (1+ (car counter)))))))
113
114 (defun riece-run-at-time (time repeat function &rest args)
115   (let ((name (riece-xemacs-generate-timer-name "riece-run-at-time")))
116     (start-itimer
117      name
118      `(lambda ()
119         (,function ,@args))
120      time repeat)
121     name))
122
123 (defun riece-run-with-idle-timer (time repeat function &rest args)
124   (let ((name (riece-xemacs-generate-timer-name "riece-run-with-idle-timer")))
125     (start-itimer
126      name
127      `(lambda ()
128         (,function ,@args))
129      time (if repeat 1) t)
130     name))
131
132 (defalias 'riece-cancel-timer 'delete-itimer)
133
134 (provide 'riece-xemacs)
135
136 ;;; riece-xemacs.el ends here