;;; $Id: emacspeak-python.el,v 1.6 1998/02/16 01:58:54 raman Exp $ ;;; $Author: raman $ ;;; Description: Auditory interface to python mode ;;; Keywords: Emacspeak, Speak, Spoken Output, python ;;{{{ LCD Archive entry: ;;; LCD Archive Entry: ;;; emacspeak| T. V. Raman |raman@adobe.com ;;; A speech interface to Emacs | ;;; $Date: 1998/02/16 01:58:54 $ | ;;; $Revision: 1.6 $ | ;;; Location undetermined ;;; ;;}}} ;;{{{ Copyright: ;;; Copyright (c) 1997 by T. V. Raman Adobe Systems Incorporated ;;; 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 'cl) (declaim (optimize (safety 0) (speed 3))) (eval-when (compile) (require 'emacspeak-speak) (require 'voice-lock) (require 'emacspeak-keymap) (require 'emacspeak-sounds)) (eval-when (compile) (require 'emacspeak-fix-interactive)) ;;}}} ;;{{{ Introduction ;;;Speech enable python mode. ;;; If you have python installed ;;; you will find python-mode.el in the Python distribution. ;;; If you dont have python, then you dont need this either. ;;}}} ;;{{{ Advice interactive commands: ;;{{{ electric editing (defadvice py-electric-colon (after emacspeak pre act comp) "Speak what you inserted" (when (interactive-p) (dtk-say " colon "))) (defadvice py-electric-backspace (around emacspeak pre act) "Speak character you're deleting." (cond ((interactive-p ) (dtk-tone 500 30 'force) (and emacspeak-backward-delete-char-speak-deleted-char (emacspeak-speak-this-char (preceding-char ))) ad-do-it (and emacspeak-backward-delete-char-speak-current-char (emacspeak-speak-this-char (preceding-char )))) (t ad-do-it)) ad-return-value) (defadvice py-electric-delete (around emacspeak pre act) "Speak character you're deleting." (cond ((interactive-p ) (dtk-tone 500 30 'force) (and emacspeak-backward-delete-char-speak-deleted-char (emacspeak-speak-this-char (preceding-char ))) ad-do-it (and emacspeak-backward-delete-char-speak-current-char (emacspeak-speak-this-char (preceding-char )))) (t ad-do-it)) ad-return-value) ;;}}} ;;{{{ interactive programming (defadvice py-shell (after emacspeak pre act comp) "Provide auditory feedback" (when (interactive-p) (emacspeak-auditory-icon 'task-done) (message "Launched Python interpreter"))) (defadvice py-clear-queue (after emacspeak pre act comp) "Provide auditory feedback" (when (interactive-p) (emacspeak-auditory-icon 'task-done))) (defadvice py-execute-region (after emacspeak pre act comp) "Provide auditory feedback" (when (interactive-p) (emacspeak-auditory-icon 'task-done))) (defadvice py-execute-buffer (after emacspeak pre act comp) "Provide auditory feedback" (when (interactive-p) (emacspeak-auditory-icon 'task-done))) (defadvice py-goto-exception(after emacspeak pre act comp) "Speak line you moved to" (when (interactive-p) (emacspeak-auditory-icon 'large-movement) (emacspeak-speak-line))) (defadvice py-down-exception(after emacspeak pre act comp) "Speak line you moved to" (when (interactive-p) (emacspeak-auditory-icon 'large-movement) (emacspeak-speak-line))) (defadvice py-up-exception(after emacspeak pre act comp) "Speak line you moved to" (when (interactive-p) (emacspeak-auditory-icon 'large-movement) (emacspeak-speak-line))) ;;}}} ;;{{{ whitespace management and indentation (defadvice py-newline-and-indent(after emacspeak pre act comp) "Speak line so we know current indentation" (when (interactive-p) (emacspeak-speak-line))) (defadvice py-shift-region-left (after emacspeak pre act comp) "Speak number of lines that were shifted" (when (interactive-p) (emacspeak-auditory-icon 'large-movement) (dtk-speak (format "Left shifted block containing %s lines" (count-lines (region-beginning) (region-end)))))) (defadvice py-shift-region-right (after emacspeak pre act comp) "Speak number of lines that were shifted" (when (interactive-p) (dtk-speak (format "Right shifted block containing %s lines" (count-lines (region-beginning) (region-end)))))) (defadvice py-indent-region (after emacspeak pre act comp) "Speak number of lines that were shifted" (when (interactive-p) (emacspeak-auditory-icon 'large-movement) (dtk-speak (format "Indented region containing %s lines" (count-lines (region-beginning) (region-end)))))) (defadvice py-comment-region (after emacspeak pre act comp) "Speak number of lines that were shifted" (when (interactive-p) (dtk-speak (format "Commented block containing %s lines" (count-lines (region-beginning) (region-end)))))) ;;}}} ;;{{{ buffer navigation (defadvice py-previous-statement (after emacspeak pre act comp) "Speak current statement after moving" (when (interactive-p) (emacspeak-speak-line) (emacspeak-auditory-icon 'large-movement))) (defadvice py-next-statement (after emacspeak pre act comp) "Speak current statement after moving" (when (interactive-p) (emacspeak-speak-line) (emacspeak-auditory-icon 'large-movement))) (defadvice py-goto-block-up (after emacspeak pre act comp) "Speak current statement after moving" (when (interactive-p) (emacspeak-speak-line) (emacspeak-auditory-icon 'large-movement))) (defadvice beginning-of-python-def-or-class (after emacspeak pre act comp) "Speak current statement after moving" (when (interactive-p) (emacspeak-speak-line) (emacspeak-auditory-icon 'large-movement))) (defadvice end-of-python-def-or-class (after emacspeak pre act comp) "Speak current statement after moving" (when (interactive-p) (emacspeak-speak-line) (emacspeak-auditory-icon 'large-movement))) (defadvice py-mark-block (after emacspeak pre act comp) "Speak number of lines marked" (when (interactive-p) (dtk-speak (format "Marked block containing %s lines" (count-lines (region-beginning) (region-end)))) (emacspeak-auditory-icon 'mark-object))) (defadvice py-mark-def-or-class (after emacspeak pre act comp) "Speak number of lines marked" (when (interactive-p) (dtk-speak (format "Marked block containing %s lines" (count-lines (region-beginning) (region-end)))) (emacspeak-auditory-icon 'mark-object))) (defadvice py-forward-into-nomenclature(after emacspeak pre act comp) "Speak rest of current word" (when (interactive-p) (emacspeak-speak-word 1))) (defadvice py-backward-into-nomenclature(after emacspeak pre act comp) "Speak rest of current word" (when (interactive-p) (emacspeak-speak-word 1))) ;;}}} ;;{{{ the process buffer (defadvice py-process-filter (around emacspeak pre act) "Make comint in Python speak its output. " (declare (special emacspeak-comint-autospeak)) (let ((prior (point )) (dtk-stop-immediately nil)) ad-do-it (when (and emacspeak-comint-autospeak (window-live-p (get-buffer-window (process-buffer (ad-get-arg 0))))) (condition-case nil (emacspeak-speak-region prior (point )) (error (emacspeak-auditory-icon 'scroll) (dtk-stop )))) ad-return-value)) ;;}}} ;;}}} ;;{{{ Additional navigation (defun emacspeak-py-previous-block() "Move backward to the beginning of the current block. If already at the beginning then move to previous block." (interactive) (let ((start (point))) (beginning-of-python-def-or-class) (unless (eq start (point)) (beginning-of-line) (emacspeak-speak-line) (emacspeak-auditory-icon 'large-movement)))) (defun emacspeak-py-next-block() "Move forward to the beginning of the next block." (interactive) (end-of-python-def-or-class) (skip-syntax-forward " ") (forward-line 1) (beginning-of-line) (emacspeak-speak-line) (emacspeak-auditory-icon 'large-movement)) ;;}}} ;;{{{ hooks (defun emacspeak-python-mode-hook () "Hook added by Emacspeak to python mode" (unless emacspeak-audio-indentation (emacspeak-toggle-audio-indentation))) (add-hook 'py-mode-hook 'emacspeak-python-mode-hook) ;;}}} ;;{{{ voice locking (defvar python-voice-lock-keywords (let ((kw1 (mapconcat 'identity '("and" "assert" "break" "class" "continue" "def" "del" "elif" "else" "except" "exec" "for" "from" "global" "if" "import" "in" "is" "lambda" "not" "or" "pass" "print" "raise" "return" "while" ) "\\|")) (kw2 (mapconcat 'identity '("else:" "except:" "finally:" "try:") "\\|")) ) (list ;; keywords (cons (concat "\\b\\(" kw1 "\\)\\b[ \n\t(]") 1) ;; block introducing keywords with immediately following colons. ;; Yes "except" is in both lists. (cons (concat "\\b\\(" kw2 "\\)[ \n\t(]") 1) ;; classes '("\\bclass[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)" 1 voice-lock-type-personality) ;; functions '("\\bdef[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)" 1 voice-lock-function-name-personality) )) "Additional expressions to voiceify in Python mode.") (voice-lock-set-major-mode-keywords 'python-mode 'python-voice-lock-keywords) ;;}}} ;;{{{ keybindings (progn (declaim (special py-mode-map)) (define-key py-mode-map "\M-a" 'beginning-of-python-def-or-class) (define-key py-mode-map "\M-e" 'end-of-python-def-or-class) (define-key py-mode-map "\M-n" 'py-next-statement) (define-key py-mode-map "\M-p" 'py-previous-statement) (define-key py-mode-map "\C-\M-u" 'py-goto-block-up) (define-key py-mode-map "\C-\M-n" 'emacspeak-py-next-block) (define-key py-mode-map "\C-\M-p" 'emacspeak-py-previous-block) ) ;;}}} (provide 'emacspeak-python ) ;;{{{ end of file ;;; local variables: ;;; folded-file: t ;;; end: ;;}}}