| Trees | Indices | Help |
|---|
|
|
1 #appModules/soffice.py 2 #A part of NonVisual Desktop Access (NVDA) 3 #This file is covered by the GNU General Public License. 4 #See the file COPYING for more details. 5 #Copyright (C) 2006-2010 Michael Curran <mick@kulgan.net> 6 7 import appModuleHandler 8 import controlTypes 9 from NVDAObjects.window import Window 10 from NVDAObjects.IAccessible import IAccessible 11132215 #Ignore value changes from an annoying progress bar which is a child of the main window 16 #that keeps moving due to application performance 17 if isinstance(obj,IAccessible) and obj.role==controlTypes.ROLE_PROGRESSBAR: 18 windowParent=Window._get_parent(obj) 19 if windowParent and windowParent.windowClassName=="SWT_Window0": 20 return 21 return nextHandler()
| Trees | Indices | Help |
|---|
| Generated by Epydoc 3.0.1 on Fri Nov 18 17:46:09 2011 | http://epydoc.sourceforge.net |