Mercurial > emacs
view lisp/gnus/gnus-audio.el @ 19860:c17fd465ea95 libc-970911 libc-970912 libc-970913 libc-970914 libc-970915 libc-970916 libc-970917 libc-970918 libc-970919 libc-970920 libc-970921 libc-970922 libc-970923 libc-970924 libc-970925 libc-970926 libc-970927 libc-970928 libc-970929 libc-970930 libc-971001 libc-971018 libc-971019 libc-971020 libc-971021 libc-971022 libc-971023 libc-971024 libc-971025 libc-971026 libc-971027 libc-971028 libc-971029 libc-971030 libc-971031 libc-971101 libc-971102 libc-971103 libc-971104 libc-971105 libc-971106 libc-971107 libc-971108 libc-971109 libc-971110 libc-971111 libc-971112 libc-971113 libc-971114 libc-971115 libc-971116 libc-971117 libc-971118 libc-971120 libc-971121 libc-971122 libc-971123 libc-971124 libc-971125 libc-971126 libc-971127 libc-971128 libc-971129 libc-971130 libc-971201 libc-971203 libc-971204 libc-971205 libc-971206 libc-971207 libc-971208 libc-971209 libc-971210 libc-971211 libc-971212 libc-971213 libc-971214 libc-971217 libc-971218 libc-971219 libc-971220 libc-971221 libc-971222 libc-971223 libc-971224 libc-971225 libc-971226 libc-971227 libc-971228 libc-971229 libc-971230 libc-971231 libc-980103 libc-980104 libc-980105 libc-980106 libc-980107 libc-980108 libc-980109 libc-980110 libc-980111 libc-980112 libc-980114 libc-980115 libc-980116 libc-980117 libc-980118 libc-980119 libc-980120 libc-980121 libc-980122 libc-980123 libc-980124 libc-980125 libc-980126 libc-980127 libc-980128
typos.
author | Jeff Law <law@redhat.com> |
---|---|
date | Wed, 10 Sep 1997 21:16:20 +0000 |
parents | e6935c08cf0b |
children | 15fc6acbae7a |
line wrap: on
line source
;;; gnus-audio.el --- Sound effects for Gnus ;; Copyright (C) 1996 Free Software Foundation ;; Author: Steven L. Baur <steve@miranova.com> ;; Keywords: news ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation; either version 2, or (at your option) ;; any later version. ;; GNU Emacs is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with GNU Emacs; see the file COPYING. If not, write to the ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, ;; Boston, MA 02111-1307, USA. ;;; Commentary: ;; This file provides access to sound effects in Gnus. ;; Prerelease: This file is partially stripped to support earcons.el ;; You can safely ignore most of it until Red Gnus. **Evil Laugh** ;;; Code: (when (null (boundp 'running-xemacs)) (defvar running-xemacs (string-match "XEmacs\\|Lucid" emacs-version))) (require 'nnheader) (eval-when-compile (require 'cl)) (defvar gnus-audio-inline-sound (and (fboundp 'device-sound-enabled-p) (device-sound-enabled-p)) "When t, we will not spawn a subprocess to play sounds.") (defvar gnus-audio-directory (nnheader-find-etc-directory "sounds") "The directory containing the Sound Files.") (defvar gnus-audio-au-player "/usr/bin/showaudio" "Executable program for playing sun AU format sound files") (defvar gnus-audio-wav-player "/usr/local/bin/play" "Executable program for playing WAV files") ;;; The following isn't implemented yet. Wait for Red Gnus. ;(defvar gnus-audio-effects-enabled t ; "When t, Gnus will use sound effects.") ;(defvar gnus-audio-enable-hooks nil ; "Functions run when enabling sound effects.") ;(defvar gnus-audio-disable-hooks nil ; "Functions run when disabling sound effects.") ;(defvar gnus-audio-theme-song nil ; "Theme song for Gnus.") ;(defvar gnus-audio-enter-group nil ; "Sound effect played when selecting a group.") ;(defvar gnus-audio-exit-group nil ; "Sound effect played when exiting a group.") ;(defvar gnus-audio-score-group nil ; "Sound effect played when scoring a group.") ;(defvar gnus-audio-busy-sound nil ; "Sound effect played when going into a ... sequence.") ;;;###autoload ;(defun gnus-audio-enable-sound () ; "Enable Sound Effects for Gnus." ; (interactive) ; (setq gnus-audio-effects-enabled t) ; (run-hooks gnus-audio-enable-hooks)) ;;;###autoload ;(defun gnus-audio-disable-sound () ; "Disable Sound Effects for Gnus." ; (interactive) ; (setq gnus-audio-effects-enabled nil) ; (run-hooks gnus-audio-disable-hooks)) ;;;###autoload (defun gnus-audio-play (file) "Play a sound through the speaker." (interactive) (let ((sound-file (if (file-exists-p file) file (concat gnus-audio-directory file)))) (when (file-exists-p sound-file) (if gnus-audio-inline-sound (play-sound-file sound-file) (cond ((string-match "\\.wav$" sound-file) (call-process gnus-audio-wav-player sound-file 0 nil sound-file)) ((string-match "\\.au$" sound-file) (call-process gnus-audio-au-player sound-file 0 nil sound-file))))))) ;;; The following isn't implemented yet, wait for Red Gnus ;(defun gnus-audio-startrek-sounds () ; "Enable sounds from Star Trek the original series." ; (interactive) ; (setq gnus-audio-busy-sound "working.au") ; (setq gnus-audio-enter-group "bulkhead_door.au") ; (setq gnus-audio-exit-group "bulkhead_door.au") ; (setq gnus-audio-score-group "ST_laser.au") ; (setq gnus-audio-theme-song "startrek.au") ; (add-hook 'gnus-select-group-hook 'gnus-audio-startrek-select-group) ; (add-hook 'gnus-exit-group-hook 'gnus-audio-startrek-exit-group)) ;;;*** (defvar gnus-startup-jingle "Tuxedomoon.Jingle4.au" "Name of the Gnus startup jingle file.") (defun gnus-play-jingle () "Play the Gnus startup jingle, unless that's inhibited." (interactive) (gnus-audio-play gnus-startup-jingle)) (provide 'gnus-audio) (run-hooks 'gnus-audio-load-hook) ;;; gnus-audio.el ends here