summaryrefslogtreecommitdiff
path: root/ipl/gprocs/evplay.icn
blob: 9eb1eeb63ee3de60d402d9dd27ca5427aaf29236 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
############################################################################
#
#	File:     evplay.icn
#
#	Subject:  Procedure to "play back" recorded window events
#
#	Author:   Ralph E. Griswold
#
#	Date:     July 15, 1995
#
############################################################################
#
#   This file is in the public domain.
#
############################################################################
#
#  evplay(win) reads a window event history file (such as produced by
#  evrecord()), and puts an event on the event queue for the given window.
#  If the global identifier EventFile is nonnull, it is used as the
#  event history; otherwise standard input is used.
#
############################################################################
#
#  Requires:  Version 9 graphics
#
############################################################################
#
#  Links:  ivalue
#
############################################################################

link ivalue

global EventFile

procedure evplay(win)
   local event1, event2, event3

   /EventFile := &input

   event1 := ivalue(read(EventFile)) | fail
   event2 := ivalue(read(EventFile)) | stop("*** short event history")
   event3 := ivalue(read(EventFile)) | stop("*** short event history")

   put(Pending(win), event1, event2, event3)

   return

end