Module inputCore :: Class InputManager
[hide private]
[frames] | no frames]

Class InputManager

source code

                   object --+    
                            |    
baseObject.AutoPropertyObject --+
                                |
                               InputManager

Manages functionality related to input from the user. Input includes key presses on the keyboard, as well as key presses on Braille displays, etc.

Nested Classes [hide private]

Inherited from baseObject.AutoPropertyObject: __metaclass__

Instance Methods [hide private]
 
__init__(self)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
executeGesture(self, gesture)
Perform the action associated with a gesture.
source code
 
_handleInputHelp(self, gesture, onlyLog=False) source code
 
loadUserGestureMap(self) source code
 
loadLocaleGestureMap(self) source code
 
emulateGesture(self, gesture)
Convenience method to emulate a gesture.
source code

Inherited from baseObject.AutoPropertyObject: invalidateCache

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Methods [hide private]

Inherited from baseObject.AutoPropertyObject: invalidateCaches

Class Variables [hide private]

Inherited from baseObject.AutoPropertyObject: cachePropertiesByDefault

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

executeGesture(self, gesture)

source code 

Perform the action associated with a gesture.

Parameters:
Raises:

emulateGesture(self, gesture)

source code 

Convenience method to emulate a gesture. First, an attempt will be made to execute the gesture using executeGesture. If that fails, the gesture will be sent to the operating system if possible using InputGesture.send.

Parameters: