Fix up comment convention on the arch-tag lines.
[bpt/emacs.git] / lisp / gnus / gnus-audio.el
CommitLineData
23f87bed 1;;; gnus-audio.el --- Sound effects for Gnus
e84b4b86 2
b6c2d8c6 3;; Copyright (C) 1996, 2000, 2001, 2002, 2003, 2004,
e3fe4da0 4;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
eec82323
LMI
5
6;; Author: Steven L. Baur <steve@miranova.com>
50e488b1 7;; Keywords: news, mail, multimedia
eec82323
LMI
8
9;; This file is part of GNU Emacs.
10
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
5a9dffec 13;; the Free Software Foundation; either version 3, or (at your option)
eec82323
LMI
14;; any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
22;; along with GNU Emacs; see the file COPYING. If not, write to the
3a35cf56
LK
23;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24;; Boston, MA 02110-1301, USA.
eec82323
LMI
25
26;;; Commentary:
50e488b1 27
eec82323 28;; This file provides access to sound effects in Gnus.
50e488b1 29;; This file is partially stripped to support earcons.el.
eec82323 30
50e488b1 31;;; Code:
eec82323
LMI
32
33(require 'nnheader)
eec82323 34
50e488b1
DL
35(defgroup gnus-audio nil
36 "Playing sound in Gnus."
37 :version "21.1"
38 :group 'gnus-visual
39 :group 'multimedia)
eec82323 40
50e488b1
DL
41(defvar gnus-audio-inline-sound
42 (or (if (fboundp 'device-sound-enabled-p)
43 (device-sound-enabled-p)) ; XEmacs
44 (fboundp 'play-sound)) ; Emacs 21
45 "Non-nil means try to play sounds without using an external program.")
46
47(defcustom gnus-audio-directory (nnheader-find-etc-directory "sounds")
48 "The directory containing the Sound Files."
9b708394 49 :type '(choice directory (const nil))
50e488b1
DL
50 :group 'gnus-audio)
51
23f87bed 52(defcustom gnus-audio-au-player (executable-find "play")
50e488b1
DL
53 "Executable program for playing sun AU format sound files."
54 :group 'gnus-audio
23f87bed 55 :type '(choice file (const nil)))
50e488b1 56
23f87bed 57(defcustom gnus-audio-wav-player (executable-find "play")
50e488b1
DL
58 "Executable program for playing WAV files."
59 :group 'gnus-audio
23f87bed 60 :type '(choice file (const nil)))
eec82323 61
6748645f 62;;; The following isn't implemented yet. Wait for Millennium Gnus.
16409b0b
GM
63;;(defvar gnus-audio-effects-enabled t
64;; "When t, Gnus will use sound effects.")
65;;(defvar gnus-audio-enable-hooks nil
66;; "Functions run when enabling sound effects.")
67;;(defvar gnus-audio-disable-hooks nil
68;; "Functions run when disabling sound effects.")
69;;(defvar gnus-audio-theme-song nil
70;; "Theme song for Gnus.")
71;;(defvar gnus-audio-enter-group nil
72;; "Sound effect played when selecting a group.")
73;;(defvar gnus-audio-exit-group nil
74;; "Sound effect played when exiting a group.")
75;;(defvar gnus-audio-score-group nil
76;; "Sound effect played when scoring a group.")
77;;(defvar gnus-audio-busy-sound nil
78;; "Sound effect played when going into a ... sequence.")
eec82323
LMI
79
80
81;;;###autoload
16409b0b
GM
82;;(defun gnus-audio-enable-sound ()
83;; "Enable Sound Effects for Gnus."
84;; (interactive)
85;; (setq gnus-audio-effects-enabled t)
86;; (gnus-run-hooks gnus-audio-enable-hooks))
eec82323
LMI
87
88;;;###autoload
89 ;(defun gnus-audio-disable-sound ()
16409b0b
GM
90;; "Disable Sound Effects for Gnus."
91;; (interactive)
92;; (setq gnus-audio-effects-enabled nil)
93;; (gnus-run-hooks gnus-audio-disable-hooks))
eec82323
LMI
94
95;;;###autoload
96(defun gnus-audio-play (file)
50e488b1 97 "Play a sound FILE through the speaker."
23f87bed 98 (interactive "fSound file name: ")
eec82323
LMI
99 (let ((sound-file (if (file-exists-p file)
100 file
50e488b1 101 (expand-file-name file gnus-audio-directory))))
eec82323 102 (when (file-exists-p sound-file)
50e488b1
DL
103 (cond ((and gnus-audio-inline-sound
104 (condition-case nil
105 ;; Even if we have audio, we may fail with the
106 ;; wrong sort of sound file.
107 (progn (play-sound-file sound-file)
108 t)
109 (error nil))))
110 ;; If we don't have built-in sound, or playing it failed,
111 ;; try with external program.
112 ((equal "wav" (file-name-extension sound-file))
113 (call-process gnus-audio-wav-player
114 sound-file
115 0
116 nil
117 sound-file))
118 ((equal "au" (file-name-extension sound-file))
119 (call-process gnus-audio-au-player
120 sound-file
121 0
122 nil
123 sound-file))))))
eec82323
LMI
124
125
126;;; The following isn't implemented yet, wait for Red Gnus
16409b0b
GM
127;;(defun gnus-audio-startrek-sounds ()
128;; "Enable sounds from Star Trek the original series."
129;; (interactive)
130;; (setq gnus-audio-busy-sound "working.au")
131;; (setq gnus-audio-enter-group "bulkhead_door.au")
132;; (setq gnus-audio-exit-group "bulkhead_door.au")
133;; (setq gnus-audio-score-group "ST_laser.au")
134;; (setq gnus-audio-theme-song "startrek.au")
135;; (add-hook 'gnus-select-group-hook 'gnus-audio-startrek-select-group)
136;; (add-hook 'gnus-exit-group-hook 'gnus-audio-startrek-exit-group))
eec82323
LMI
137;;;***
138
139(defvar gnus-startup-jingle "Tuxedomoon.Jingle4.au"
140 "Name of the Gnus startup jingle file.")
141
142(defun gnus-play-jingle ()
143 "Play the Gnus startup jingle, unless that's inhibited."
144 (interactive)
145 (gnus-audio-play gnus-startup-jingle))
146
147(provide 'gnus-audio)
148
149(run-hooks 'gnus-audio-load-hook)
150
cbee283d 151;; arch-tag: 6f129e78-3416-4fc9-973f-6cf5ac8d654b
eec82323 152;;; gnus-audio.el ends here