aboutsummaryrefslogtreecommitdiff
path: root/emms-volume.el
diff options
context:
space:
mode:
authorMartin Schoenmakers <aiviru@diamond-age.net>2006-05-30 22:35:00 +0000
committerMartin Schoenmakers <aiviru@diamond-age.net>2006-05-30 22:35:00 +0000
commita21f33c5dc56e95d8273ab502907a8b81da6a3e9 (patch)
treee919b8e3a1db8198150db17b3256223cd17a4934 /emms-volume.el
parentac9bb221022b60c987f0caab4be4cfcd99a33964 (diff)
Add emms-volume and emms-volume-amixer.
New files: emms-volume.el provides some general volume changing things, including a minor mode to more easily change volume when not in the EMMS buffer. emms-volume-amixer.el is a backend using amixer. darcs-hash:20060530223500-97144-6c3f95ef335a5f100bc2c6d061a82cb5323b2557.gz
Diffstat (limited to 'emms-volume.el')
-rw-r--r--emms-volume.el122
1 files changed, 122 insertions, 0 deletions
diff --git a/emms-volume.el b/emms-volume.el
new file mode 100644
index 0000000..0e8b5d7
--- /dev/null
+++ b/emms-volume.el
@@ -0,0 +1,122 @@
+;;; emms-volume.el --- Volume functions and a minor mode to adjust volume easily
+
+;; Copyright (C) 2006 Free Software Foundation, Inc.
+
+;; Author: Martin Schoenmakers <aiviru@diamond-age.net>
+
+;; This file 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., 51 Franklin St, Fifth Floor,
+;; Boston, MA 02110-1301 USA
+
+;;; Commentary:
+;;
+;; This file provides generally two things:
+;; Generic volume setting functions and some appropriate bindings for EMMS
+;; playlist buffers. These can also be bound to global keys,however, the
+;; second part may be more useful for this. This part provides functions
+;; meant to be bound to a global key (the author uses C-c e + and C-c e -),
+;; which then temporarily activates a minor mode allowing you to change the
+;; volume with just + and -. This mode deactivates a short (configurable)
+;; amount of time after the last volume change. This allows for easier volume
+;; adjustment without getting in the way.
+
+;;; History:
+
+;; May 2006: First stab at writing the minor mode.
+;;
+;; 30 May 2006: Cleanup and restructuring to fit with EMMS.
+
+;;; Todo:
+
+;; Some of this could benefit from adding customize interfaces.
+
+;;; Code:
+
+;; General volume setting related code.
+(defvar emms-volume-raise-function 'emms-volume-amixer-raise
+ "*The function to use to raise the volume.
+If you have your own functions for changing volume, set this and
+ `emms-volume-lower-function' accordingly.")
+
+(defvar emms-volume-lower-function 'emms-volume-amixer-lower
+ "*The function to use to lower the volume.
+If you have your own functions for changing volume, set this and
+ `emms-volume-raise-function' accordingly.")
+
+(defun emms-volume-raise ()
+ "Raise the speaker volume."
+ (interactive)
+ (funcall emms-volume-raise-function))
+
+(defun emms-volume-lower ()
+ "Lower the speaker volume."
+ (interactive)
+ (funcall emms-volume-lower-function))
+
+(define-key emms-playlist-mode-map (kbd "+") 'emms-volume-raise)
+(define-key emms-playlist-mode-map (kbd "-") 'emms-volume-lower)
+
+;; Code specific to the minor mode.
+(define-minor-mode emms-volume-minor-mode
+ "Allows volume setting with + and - after an initial key combo."
+ :global t
+ :init-value nil
+ :lighter " (+/-)"
+ :keymap '(("+" . emms-volume-mode-plus)
+ ("-" . emms-volume-mode-minus)))
+
+(defvar emms-volume-mode-timeout 2
+ "*The timeout in amount of seconds used by `emms-volume-minor-mode'.")
+
+(defvar emms-volume-mode-timer nil
+ "The timer `emms-volume-minor-mode' uses.")
+
+(defun emms-volume-mode-plus ()
+ "Raise volume and enable or extend the `emms-volume-minor-mode' timeout."
+ (interactive)
+ (emms-volume-raise)
+ (emms-volume-mode-start-or-extend))
+
+(defun emms-volume-mode-minus ()
+ "Lower volume and enable or extend the `emms-volume-minor-mode' timeout."
+ (interactive)
+ (emms-volume-lower)
+ (emms-volume-mode-start-or-extend))
+
+(defun emms-volume-mode-disable-timer ()
+ "Disable `emms-volume-minor-mode' timer."
+ (cancel-timer emms-volume-mode-timer)
+ (setq emms-volume-mode-timer nil))
+
+(defun emms-volume-mode-set-timer ()
+ "Set a new `emms-volume-minor-mode' timer."
+ (unless (null emms-volume-mode-timer)
+ (emms-volume-mode-disable-timer))
+ (setq emms-volume-mode-timer (run-at-time emms-volume-mode-timeout
+ nil
+ 'emms-volume-mode-timer-timeout)))
+
+(defun emms-volume-mode-timer-timeout ()
+ "Function to disable `emms-volume-minor-mode' at timeout."
+ (emms-volume-minor-mode -1))
+
+(defun emms-volume-mode-start-or-extend ()
+ "Start `emms-volume-minor-mode' or extend its running time."
+ (when (null emms-volume-minor-mode)
+ (emms-volume-minor-mode 1))
+ (emms-volume-mode-set-timer))
+
+(provide 'emms-volume)
+
+;;; emms-volume.el ends here