|
Handles raw input using AT-SPI event generation.
Authors: David Malcolm <dmalcolm@redhat.com>, Zack Cerza <zcerza@redhat.com>
|
Functions
|
|
absoluteMotion
click
doubleClick
drag
press
relativeMotion
release
|
|
|
absoluteMotion
|
absoluteMotion ( x, y )
Synthesize mouse absolute motion to (x,y)
|
|
|
click
|
click (
x,
y,
button=1,
)
Synthesize a mouse button click at (x,y)
|
|
|
doubleClick
|
doubleClick (
x,
y,
button=1,
)
Synthesize a mouse button double-click at (x,y)
|
|
|
drag
|
drag (
fromXY,
toXY,
button=1,
)
Synthesize a mouse press, drag, and release on the screen.
Wraps atspi.EventGenerator.drag, but with logging and delays.
|
|
|
press
|
press (
x,
y,
button=1,
)
Synthesize a mouse button press at (x,y)
|
|
|
relativeMotion
|
relativeMotion ( x, y )
|
|
|
release
|
release (
x,
y,
button=1,
)
Synthesize a mouse button release at (x,y)
|
|