X11SimulateKeyInput.mesa
Copyright Ó 1993 by Xerox Corporation. All rights reserved.
Created by Christian Jacobi, April 27, 1993
Christian Jacobi, April 27, 1993 5:26 pm PDT
Simulate key events from Ascii text.
DIRECTORY
Rope USING [ROPE],
Xl USING [Connection, currentTime, TimeStamp];
X11SimulateKeyInput: CEDAR DEFINITIONS ~ BEGIN
Send:
PROC [c: Xl.Connection, text: Rope.
ROPE, time: Xl.TimeStamp ¬ Xl.currentTime];
Tries to send the text to the window with the input focus using simulated key events.
END.