* riece-xemacs.el (riece-run-with-idle-timer): Pass an integer to
[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 (defalias 'riece-set-case-syntax-pair
53   'put-case-table-pair)
54
55 ;;; stolen (and renamed) from gnus-xmas.el.
56 ;;; In GNU Emacs, user can intercept whole mouse tracking events by
57 ;;; assigning [mouse-X].  In XEmacs, however, which causes different
58 ;;; effect, that is, the command assigned to [mouse-X] only catches
59 ;;; button-release events.
60 (defvar riece-mouse-2 [button2])
61
62 ;;; popup-menu compatibility stuff, stolen (and renamed) from
63 ;;; semi-def.el.
64 (defun riece-popup-menu-popup (menu event)
65   (let ((response (get-popup-menu-response menu event)))
66     (if response
67         (funcall (event-function response) (event-object response)))))
68
69 (defalias 'riece-event-buffer 'event-buffer)
70 (defalias 'riece-event-point 'event-point)
71
72 ;;; stolen (and renamed) from gnus-xmas.el.
73 (defalias 'riece-region-active-p 'region-active-p)
74
75 (defalias 'riece-make-overlay 'make-extent)
76 (defalias 'riece-overlay-put 'set-extent-property)
77 (defalias 'riece-overlay-start 'extent-start-position)
78 (defalias 'riece-overlay-buffer 'extent-buffer)
79
80 (defun riece-overlays-in (start end)
81   (extent-list (current-buffer) start end))
82
83 (defalias 'riece-delete-overlay 'delete-extent)
84
85 (defun riece-kill-all-overlays ()
86   "Delete all extents in the current buffer."
87   (map-extents (lambda (extent ignore)
88                  (delete-extent extent)
89                  nil)))
90
91 ;;; stolen (and renamed) from nnheaderxm.el.
92 (defun riece-xemacs-generate-timer-name (&optional prefix)
93   (let ((counter '(0)))
94     (format "%s-%d"
95             (or prefix
96                 "riece-xemacs-timer")
97             (prog1 (car counter)
98               (setcar counter (1+ (car counter)))))))
99
100 (defun riece-run-at-time (time repeat function &rest args)
101   (let ((name (riece-xemacs-generate-timer-name "riece-run-at-time")))
102     (start-itimer
103      name
104      `(lambda ()
105         (,function ,@args))
106      time repeat)
107     name))
108
109 (defun riece-run-with-idle-timer (time repeat function &rest args)
110   (let ((name (riece-xemacs-generate-timer-name "riece-run-with-idle-timer")))
111     (start-itimer
112      name
113      `(lambda ()
114         (,function ,@args))
115      time (if repeat 1) t)
116     name))
117
118 (defalias 'riece-cancel-timer 'delete-itimer)
119
120 (provide 'riece-xemacs)
121
122 ;;; riece-xemacs.el ends here