Package brailleDisplayDrivers :: Module noBraille
[hide private]
[frames] | no frames]

Source Code for Module brailleDisplayDrivers.noBraille

 1  #brailleDisplayDrivers/noBraille.py 
 2  #A part of NonVisual Desktop Access (NVDA) 
 3  #Copyright (C) 2006-2009 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 braille 
8 9 -class BrailleDisplayDriver(braille.BrailleDisplayDriver):
10 """A dummy braille display driver used to disable braille in NVDA. 11 """ 12 name = "noBraille" 13 description = _("No braille") 14 15 @classmethod
16 - def check(cls):
17 return True
18