;;; emacspeak-apt-utils.el --- speech-enable APT interface ;;; Description: Emacspeak extension to speech-enable APT utilities ;;; Keywords: Emacspeak, apt, Debian Package Manager ;;{{{ LCD Archive entry: ;;; LCD Archive Entry: ;;; emacspeak| T. V. Raman |raman@cs.cornell.edu ;;; A speech interface to Emacs | ;;; $Date: 2007-08-25 18:28:19 -0700 (Sat, 25 Aug 2007) $ | ;;; $Revision: 4531 $ | ;;; Location undetermined ;;; ;;}}} ;;{{{ Copyright: ;;; Initial version: Author: Igor B. Poretsky ;;; ;;; This file is not part of GNU Emacs, but the same permissions apply. ;;; ;;; 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, 675 Mass Ave, Cambridge, MA 02139, USA. ;;}}} ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;{{{ Introduction: ;;; Commentary: ;;; This module speech-enables apt-utils.el ;;; that is included in the debian-el package ;;; and provides a nice interface to searching and browsing ;;; Debian packages. ;;; Code: ;;}}} ;;{{{ required modules (require 'emacspeak-preamble) ;;}}} ;;{{{ Initial setup (defun emacspeak-apt-utils-grab-package-at-point () "Copy package under point to kill ring." (interactive) (unless (eq major-mode 'apt-utils-mode) (error "Not in APT Info buffer.")) (let ((package (apt-utils-package-at))) (emacspeak-auditory-icon 'yank-object) (dtk-speak package) (kill-new package))) (defsubst emacspeak-apt-utils-speak-package-name () "Speak package name at point." (let ((package (apt-utils-package-at))) (put-text-property 0 (length package) 'personality (get-text-property (point) 'personality) package) (dtk-speak package))) (defadvice apt-utils-mode (after emacspeak pre act comp) "Setup Emacspeak extensions" (voice-lock-mode 1) (dtk-set-punctuations 'all) (define-key apt-utils-mode-map "y" 'emacspeak-apt-utils-grab-package-at-point)) ;;}}} ;;{{{ Advice interactive commands to speak. (defadvice apt-utils-show-package (after emacspeak pre act comp) "Provide auditory feedback." (when (interactive-p) (emacspeak-auditory-icon 'open-object))) (defadvice apt-utils-choose-package-link (after emacspeak pre act comp) "Provide auditory feedback." (when (interactive-p) (emacspeak-auditory-icon 'open-object))) (defadvice apt-utils-view-previous-package (after emacspeak pre act comp) "Provide auditory feedback." (when (interactive-p) (emacspeak-auditory-icon 'select-object))) (defadvice apt-utils-search (after emacspeak pre act comp) "Provide auditory feedback." (when (interactive-p) (emacspeak-auditory-icon 'search-hit))) (defadvice apt-utils-search-names-only (after emacspeak pre act comp) "Provide auditory feedback." (when (interactive-p) (emacspeak-auditory-icon 'search-hit))) (defadvice apt-utils-search-grep-dctrl (after emacspeak pre act comp) "Provide auditory feedback." (when (interactive-p) (emacspeak-auditory-icon 'search-hit))) (defadvice apt-utils-search-file-names (after emacspeak pre act comp) "Provide auditory feedback." (when (interactive-p) (emacspeak-auditory-icon 'search-hit))) (defadvice apt-utils-quit (after emacspeak pre act comp) "Provide auditory feedback." (when (interactive-p) (emacspeak-auditory-icon 'close-object) (emacspeak-speak-mode-line))) (defadvice apt-utils-kill-buffer (after emacspeak pre act comp) "Provide auditory feedback." (when (interactive-p) (emacspeak-auditory-icon 'close-object) (emacspeak-speak-mode-line))) (defadvice apt-utils-rebuild-package-lists (after emacspeak pre act comp) "Provide auditory feedback." (when (interactive-p) (emacspeak-auditory-icon 'task-done))) (defadvice apt-utils-toggle-package-info (after emacspeak pre act comp) "Provide auditory feedback." (when (interactive-p) (emacspeak-auditory-icon 'task-done))) (defadvice apt-utils-view-copyright (after emacspeak pre act comp) "Provide auditory feedback." (when (interactive-p) (emacspeak-auditory-icon 'open-object))) (defadvice apt-utils-view-readme (after emacspeak pre act comp) "Provide auditory feedback." (when (interactive-p) (emacspeak-auditory-icon 'open-object))) (defadvice apt-utils-view-debian-readme (after emacspeak pre act comp) "Provide auditory feedback." (when (interactive-p) (emacspeak-auditory-icon 'open-object))) (defadvice apt-utils-view-news (after emacspeak pre act comp) "Provide auditory feedback." (when (interactive-p) (emacspeak-auditory-icon 'open-object))) (defadvice apt-utils-view-debian-news (after emacspeak pre act comp) "Provide auditory feedback." (when (interactive-p) (emacspeak-auditory-icon 'open-object))) (defadvice apt-utils-view-changelog (after emacspeak pre act comp) "Provide auditory feedback." (when (interactive-p) (emacspeak-auditory-icon 'open-object))) (defadvice apt-utils-view-debian-changelog (after emacspeak pre act comp) "Provide auditory feedback." (when (interactive-p) (emacspeak-auditory-icon 'open-object))) (defadvice apt-utils-follow-link (after emacspeak pre act comp) "Provide auditory feedback." (when (interactive-p) (emacspeak-auditory-icon 'open-object))) (defadvice apt-utils-previous-package (after emacspeak pre act comp) "Provide auditory feedback." (when (interactive-p) (emacspeak-auditory-icon 'large-movement))) (defadvice apt-utils-next-package (after emacspeak pre act comp) "Provide auditory feedback." (when (interactive-p) (emacspeak-auditory-icon 'large-movement))) ;;}}} ;;{{{ mapping font faces to personalities (voice-setup-add-map '( (apt-utils-normal-package-face voice-bolden) (apt-utils-virtual-package-face voice-animate) (apt-utils-field-keyword-face voice-animate-extra) (apt-utils-field-contents-face voice-lighten-extra) (apt-utils-description-face voice-smoothen-extra) (apt-utils-version-face voice-lighten) (apt-utils-broken-face voice-bolden-and-animate) )) ;;}}} (provide 'emacspeak-apt-utils) ;;{{{ end of file ;;; local variables: ;;; folded-file: t ;;; byte-compile-dynamic: t ;;; end: ;;}}}