Package AccessEngine :: Package AEConstants :: Module Input
[hide private]
[frames] | no frames]

Module Input

source code

Input related constants.


Author: Peter Parente

Organization: IBM Corporation

Copyright: Copyright (c) 2005, 2007 IBM Corporation

License:

The BSD License

All rights reserved. This program and the accompanying materials are made available under the terms of the BSD license which accompanies this distribution, and is available at http://www.opensource.org/licenses/bsd-license.php

Variables [hide private]
integer CMD_GESTURE = -1
Constant that represents an input command gesture.
dictionary INPUT_COMMAND_NAMES = dict([(value, name.lower() [4:]) for nam...
A reverse mapping from command constants to string command names
integer FILTER_ALL
Input filter mode used in filtering keyboard gestures, all gestures are acted upon in this case.
integer FILTER_HANDLED
Input filter mode used in filtering keyboard gestures, filtered gesture is acted upon in this case.
integer FILTER_NONE
Input filter mode used in filtering keyboard gestures, no filtering in this case.
Variables Details [hide private]

INPUT_COMMAND_NAMES

A reverse mapping from command constants to string command names
Type:
dictionary
Value:
dict([(value, name.lower() [4:]) for name, value in locals().items() i\
f name.startswith('CMD_')])