- Authors:
-
Peter Parente,
Scott Haeger
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
|
|
LAYER_FOCUS = 0
|
|
|
LAYER_TIER = 1
|
|
|
LAYER_BACKGROUND = 2
|
|
|
LAYERS_ALL = [LAYER_FOCUS, LAYER_TIER, LAYER_BACKGROUND]
|
|
|
LAYER_NAMES = ['focus', 'tier', 'background']
|
|
|
EXEC_NORMAL = 0
|
|
|
EXEC_HIGH = 1
|
|
|
EXEC_IMMEDIATE = 2
|
|
integer
|
EVENT_OBJECT_BOUNDS = 0
Bounds on an object changed
|
|
integer
|
EVENT_VISIBLE_DATA = 1
Visible data on the screen changed in some manner
|
|
integer
|
EVENT_TEXT_BOUNDS = 2
Bounds on a body of text changed
|
|
integer
|
EVENT_MOUSE_MOVE = 0
Mouse pointer moved
|
|
integer
|
EVENT_MOUSE_PRESS = 1
Mouse button clicked
|
|
integer
|
EVENT_MOUSE_RELEASE = 2
Mouse button released
|
|
integer
|
EVENT_ACTIVE_ITEM_SELECT = 0
Active item changed inside a container-like object
|
|
integer
|
EVENT_ADD_ITEM_SELECT = 1
A new item was added to a selection
|
|
integer
|
EVENT_REMOVE_ITEM_SELECT = 2
An item was removed from a selection
|
|
integer
|
EVENT_CHANGE_TEXT_SELECT = 3
A string of text was added or removed from a selection
|
|
integer
|
EVENT_VIEW_LOST = 0
View was lost by deactivating it
|
|
integer
|
EVENT_VIEW_GAINED = 1
View was gained by activating it
|
|
integer
|
EVENT_VIEW_STARTUP = 2
View was identified at LSR startup
|
|
integer
|
EVENT_VIEW_FIRST_GAINED = 3
View was gained by activating it during LSR startup
|
|
string
|
EVENT_SYNTHMOUSE_B1P = 'b1p'
Synthesized mouse button 1 press.
|
|
string
|
EVENT_SYNTHMOUSE_B1R = 'b1r'
Synthesized mouse button 1 release.
|
|
string
|
EVENT_SYNTHMOUSE_B1C = 'b1c'
Synthesized mouse button 1 click.
|
|
string
|
EVENT_SYNTHMOUSE_B1D = 'b1d'
Synthesized mouse button 1 double-click.
|
|
string
|
EVENT_SYNTHMOUSE_B2P = 'b2p'
Synthesized mouse button 2 press.
|
|
string
|
EVENT_SYNTHMOUSE_B2R = 'b2r'
Synthesized mouse button 2 release.
|
|
string
|
EVENT_SYNTHMOUSE_B2C = 'b2c'
Synthesized mouse button 2 click.
|
|
string
|
EVENT_SYNTHMOUSE_B2D = 'b2d'
Synthesized mouse button 2 double-click.
|
|
string
|
EVENT_SYNTHMOUSE_B3P = 'b3p'
Synthesized mouse button 3 press.
|
|
string
|
EVENT_SYNTHMOUSE_B3R = 'b3r'
Synthesized mouse button 3 release.
|
|
string
|
EVENT_SYNTHMOUSE_B3C = 'b3c'
Synthesized mouse button 3 click.
|
|
string
|
EVENT_SYNTHMOUSE_B3D = 'b3d'
Synthesized mouse button 3 double-click.
|
|
string
|
EVENT_SYNTHMOUSE_ABS = 'abs'
Move mouse pointer to absolute screen position.
|
|
string
|
EVENT_SYNTHMOUSE_REL = 'rel'
Move mouse pointer to relative screen position.
|