| Trees | Indices | Help |
|---|
|
|
1 #appModules/firefox.py 2 #A part of NonVisual Desktop Access (NVDA) 3 #Copyright (C) 2006-2008 NVDA Contributors <http://www.nvda-project.org/> 4 #This file is covered by the GNU General Public License. 5 #See the file COPYING for more details. 6 7 import appModuleHandler 8 import controlTypes 9 import api 10 import speech 11 import winUser 12142716 if obj.role == controlTypes.ROLE_DOCUMENT and controlTypes.STATE_BUSY in obj.states and winUser.isWindowVisible(obj.windowHandle) and obj.isInForeground: 17 statusBar = api.getStatusBar() 18 if statusBar: 19 statusText = api.getStatusBarText(statusBar) 20 speech.cancelSpeech() 21 speech.speakMessage(controlTypes.speechStateLabels[controlTypes.STATE_BUSY]) 22 speech.speakMessage(statusText) 23 return 24 nextHandler()25 26 event_gainFocus = event_stateChange
| Trees | Indices | Help |
|---|
| Generated by Epydoc 3.0.1 on Fri Nov 18 17:46:09 2011 | http://epydoc.sourceforge.net |