Package NVDAObjects :: Package IAccessible :: Module scintilla
[hide private]
[frames] | no frames]

Source Code for Module NVDAObjects.IAccessible.scintilla

 1  #NVDAObjects/IAccessible/scintilla.py 
 2  #A part of NonVisual Desktop Access (NVDA) 
 3  #Copyright (C) 2006-2007 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 winUser 
 8  from . import IAccessible 
 9   
10 -class Scintilla(IAccessible):
11
12 - def _get_name(self):
13 return winUser.getWindowText(self.windowHandle)
14