;;; emacspeak-bibtex.el --- Speech enable bibtex -- Supports maintaining bibliographies in bibtex format ;;; $Id$ ;;; $Author: tv.raman.tv $ ;;; Description: Emacspeak extension for editting bibtex files ;;; Keywords:emacspeak, audio interface to emacs, bibtex ;;{{{ 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: 4532 $ | ;;; Location undetermined ;;; ;;}}} ;;{{{ Copyright: ;;;Copyright (C) 1995 -- 2009, T. V. Raman ;;; Copyright (c) 1995 by T. V. Raman ;;; All Rights Reserved. ;;; ;;; 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. ;;}}} ;;{{{ required modules (require 'emacspeak-preamble) ;;}}} ;;{{{ Introduction ;;; Speech extensions for bibtex mode. ;;}}} ;;{{{ Advice navigation commands (defadvice bibtex-next-field (after emacspeak pre act comp) "Provide auditory feedback" (when (interactive-p) (emacspeak-auditory-icon 'large-movement) (emacspeak-speak-line))) (defadvice bibtex-find-text (after emacspeak pre act comp) "Provide auditory feedback" (when (interactive-p) (emacspeak-auditory-icon 'button) (emacspeak-speak-line ))) (defadvice end-of-bibtex-entry (after emacspeak pre act comp) "Provide auditory feedback" (when (interactive-p) (emacspeak-auditory-icon 'large-movement) (emacspeak-speak-line) )) (defadvice beginning-of-bibtex-entry (after emacspeak pre act comp) "Provide auditory feedback" (when (interactive-p) (emacspeak-auditory-icon 'large-movement) (emacspeak-speak-line) )) ;;}}} ;;{{{ Advice record editting commands (defadvice bibtex-remove-OPT (after emacspeak pre act comp) "Provide auditory feedback" (when (interactive-p) (emacspeak-auditory-icon 'button) (emacspeak-speak-line))) (defadvice bibtex-empty-field (after emacspeak pre act comp) "Provide auditory feedback" (when (interactive-p) (emacspeak-auditory-icon 'delete-object) (emacspeak-speak-line))) (defadvice bibtex-kill-optional-field (after emacspeak pre act comp) "Provide auditory feedback" (when (interactive-p) (emacspeak-auditory-icon 'delete-object) (emacspeak-speak-line))) (defadvice bibtex-clean-entry (after emacspeak pre act comp) "Provide auditory feedback" (when (interactive-p) (emacspeak-auditory-icon 'task-done) (message "Cleaned up entry"))) ;;}}} ;;{{{ advice record creation ;;; list of commands that are advised: ;'(bibtex-Unpublished ; bibtex-string ; bibtex-TechReport ; bibtex-preamble ; bibtex-Proceedings ; bibtex-PhdThesis ; bibtex-Misc ; bibtex-MastersThesis ; bibtex-Manual ; bibtex-InProceedings ; bibtex-InCollection ; bibtex-InBook ; bibtex-InProceedings ; bibtex-Book ; bibtex-Article) (defadvice bibtex-Unpublished (after emacspeak pre act comp) "Provide auditory feedback" (when (interactive-p) (emacspeak-auditory-icon 'open-object) (emacspeak-speak-line))) (defadvice bibtex-string (after emacspeak pre act comp) "Provide auditory feedback" (when (interactive-p) (emacspeak-auditory-icon 'open-object) (emacspeak-speak-line))) (defadvice bibtex-TechReport (after emacspeak pre act comp) "Provide auditory feedback" (when (interactive-p) (emacspeak-auditory-icon 'open-object) (emacspeak-speak-line))) (defadvice bibtex-preamble (after emacspeak pre act comp) "Provide auditory feedback" (when (interactive-p) (emacspeak-auditory-icon 'open-object) (emacspeak-speak-line))) (defadvice bibtex-Proceedings (after emacspeak pre act comp) "Provide auditory feedback" (when (interactive-p) (emacspeak-auditory-icon 'open-object) (emacspeak-speak-line))) (defadvice bibtex-PhdThesis (after emacspeak pre act comp) "Provide auditory feedback" (when (interactive-p) (emacspeak-auditory-icon 'open-object) (emacspeak-speak-line))) (defadvice bibtex-Misc (after emacspeak pre act comp) "Provide auditory feedback" (when (interactive-p) (emacspeak-auditory-icon 'open-object) (emacspeak-speak-line))) (defadvice bibtex-MastersThesis (after emacspeak pre act comp) "Provide auditory feedback" (when (interactive-p) (emacspeak-auditory-icon 'open-object) (emacspeak-speak-line))) (defadvice bibtex-Manual (after emacspeak pre act comp) "Provide auditory feedback" (when (interactive-p) (emacspeak-auditory-icon 'open-object) (emacspeak-speak-line))) (defadvice bibtex-InProceedings (after emacspeak pre act comp) "Provide auditory feedback" (when (interactive-p) (emacspeak-auditory-icon 'open-object) (emacspeak-speak-line))) (defadvice bibtex-InCollection (after emacspeak pre act comp) "Provide auditory feedback" (when (interactive-p) (emacspeak-auditory-icon 'open-object) (emacspeak-speak-line))) (defadvice bibtex-InBook (after emacspeak pre act comp) "Provide auditory feedback" (when (interactive-p) (emacspeak-auditory-icon 'open-object) (emacspeak-speak-line))) (defadvice bibtex-InProceedings (after emacspeak pre act comp) "Provide auditory feedback" (when (interactive-p) (emacspeak-auditory-icon 'open-object) (emacspeak-speak-line))) (defadvice bibtex-Book (after emacspeak pre act comp) "Provide auditory feedback" (when (interactive-p) (emacspeak-auditory-icon 'open-object) (emacspeak-speak-line))) (defadvice bibtex-Article (after emacspeak pre act comp) "Provide auditory feedback" (when (interactive-p) (emacspeak-auditory-icon 'open-object) (emacspeak-speak-line))) ;;}}} (provide 'emacspeak-bibtex) ;;{{{ emacs local variables ;;; local variables: ;;; folded-file: t ;;; byte-compile-dynamic: t ;;; end: ;;}}}