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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
|
########################################################################
#
# File: EmUtils.pm
#
# Purpose: High-level utilities for scripting the Palm OS
# Emulator
#
# Description: This file contains the following useful utilities:
#
# Wait
# Wait for a signal from the Emulator.
#
# TapPen
# Tap the pen at the given x,y location.
#
# TapButton
# Tap the pen on the button with the given name.
#
# ClipperGoToURL
# Launches the web clipping application with a given URL.
#
########################################################################
package EmUtils;
use strict;
use vars qw(@ISA @EXPORT);
use EmFunctions; # EvtEnqueuePenPoint, etc.
use HostControl; # HostSignalWait, HostSignalResume, etc.
use Exporter;
@ISA = qw(Exporter);
@EXPORT = qw(
Wait
Resume
TapPen TapPenSync
TapButton TapButtonSync
EnterKey EnterKeySync
ClipperGoToURL
);
########################################################################
#
# FUNCTION: Wait
#
# DESCRIPTION: Wait for a signal from the Palm OS Emulator.
#
# PARAMETERS: timeout in milliseconds.
#
# RETURNED: List containing the HostSignalResume error code
# and the number of the signalled event.
#
########################################################################
sub Wait
{
my $timeout = $_[0];
if (not defined $timeout)
{
$timeout = 0x7fffffff;
}
my ($err, $signal) = HostSignalWait ($timeout);
die "Didn't hear back from Poser, stopped" if ($err != 0);
($err, $signal);
}
########################################################################
#
# FUNCTION: Resume
#
# DESCRIPTION: Resume the Palm OS Emulator after it paused itself
# after sending a signal.
#
# PARAMETERS: none.
#
# RETURNED: Nothing.
#
########################################################################
sub Resume
{
HostSignalResume ();
}
########################################################################
#
# FUNCTION: TapPen
#
# DESCRIPTION: Simulate a tap at the given location, then wait for
# the next null event.
#
# PARAMETERS: x, y coordinates.
#
# RETURNED: Nothing.
#
########################################################################
sub TapPen
{
EvtEnqueuePenPoint ({x => 256 - $_[0], y => 256 - $_[1]});
EvtEnqueuePenPoint ({x => -1, y => -1});
}
sub TapPenSync
{
Wait ();
TapPen (@_);
Resume ();
}
########################################################################
#
# FUNCTION: TapButton
#
# DESCRIPTION: Simulate a tap on the named button, then wait for
# the next null event.
#
# PARAMETERS: Name of the button to tap on.
#
# RETURNED: Nothing.
#
########################################################################
sub TapButton
{
my ($button_name) = @_;
my($ii);
my ($form) = FrmGetActiveForm();
my ($num_objects) = FrmGetNumberOfObjects($form);
for $ii (0..$num_objects - 1)
{
my ($object_type) = FrmGetObjectType($form, $ii);
if ($object_type == EmFunctions::frmControlObj)
{
my ($obj_ptr) = FrmGetObjectPtr ($form, $ii);
my ($address, $label) = CtlGetLabel($obj_ptr);
if ($label eq $button_name)
{
my (%bounds) = FrmGetObjectBounds($form, $ii);
my ($x, $y) = ( $bounds{left} + $bounds{width} / 2,
$bounds{top} + $bounds{height} / 2);
($x, $y) = WinWindowToDisplayPt ($x, $y);
TapPen ($x, $y);
last; # break out of the for loop.
}
}
}
}
sub TapButtonSync
{
Wait ();
TapButton (@_);
Resume ();
}
########################################################################
#
# FUNCTION: EnterKey
#
# DESCRIPTION: Enter a key, then wait for the next null event.
#
# PARAMETERS: WChar asciiChar, UInt16 keycode, UInt16 modifiers
#
# RETURNED: Nothing.
#
########################################################################
sub EnterKey
{
EvtEnqueueKey($_[0], $_[1], $_[2]);
}
sub EnterKeySync
{
Wait ();
EnterKey (@_);
Resume ();
}
########################################################################
#
# FUNCTION: ClipperGoToURL
#
# AUTHOR: Flash Sheridan, based on C code by David Fedor
#
# DESCRIPTION: Launches Clipper to view the given URL.
#
# PARAMETERS: URL string
#
# RETURNS: An OS error code; zero means no error.
#
########################################################################
sub ClipperGoToURL
{
my $url = $_[0] . "\0";
my $sysAppLaunchCmdGoToURL = 54;
my($ClipperID);
#ifndef PUBLIC_STUFF_STRIPPED
$ClipperID = (DmFindDatabase (0, "Web Browser"));
#endif // PUBLIC_STUFF_STRIPPED
$ClipperID = DmFindDatabase (0, "Clipper") if not $ClipperID;
die "Clipper not found" unless $ClipperID;
my $cmdPB = MemPtrNew (length ($url));
EmRPC::WriteBlock ($cmdPB, $url);
MemPtrSetOwner($cmdPB, 0);
SysUIAppSwitch (0, $ClipperID, $sysAppLaunchCmdGoToURL, $cmdPB);
}
1;
|