summaryrefslogtreecommitdiffstats
path: root/Mac/Lib/test
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1995-07-29 15:34:25 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1995-07-29 15:34:25 (GMT)
commit5968badb65df9e53ab73ae79a614d97d61fe6b45 (patch)
treedd2972069b9b5dc342503d600009b8e5b9e8df31 /Mac/Lib/test
parent39fe80b7da29fa86468d203d28ee0a7c126e7ddf (diff)
downloadcpython-5968badb65df9e53ab73ae79a614d97d61fe6b45.zip
cpython-5968badb65df9e53ab73ae79a614d97d61fe6b45.tar.gz
cpython-5968badb65df9e53ab73ae79a614d97d61fe6b45.tar.bz2
- Use new names
- Use AEInteractWithUser
Diffstat (limited to 'Mac/Lib/test')
-rw-r--r--Mac/Lib/test/echo.py19
1 files changed, 13 insertions, 6 deletions
diff --git a/Mac/Lib/test/echo.py b/Mac/Lib/test/echo.py
index d48434f..4549000 100644
--- a/Mac/Lib/test/echo.py
+++ b/Mac/Lib/test/echo.py
@@ -33,6 +33,11 @@ import EasyDialogs
kHighLevelEvent = 23 # Not defined anywhere for Python yet?
+def mymessage(str):
+ err = AE.AEInteractWithUser(kAEDefaultTimeout)
+ if err:
+ print str
+ EasyDialogs.Message(str)
def main():
echo = EchoServer()
@@ -46,18 +51,20 @@ def main():
class EchoServer:
- suites = ['aevt', 'core']
+ #suites = ['aevt', 'core', 'reqd']
+ suites = ['****']
def __init__(self):
self.active = 0
for suite in self.suites:
AE.AEInstallEventHandler(suite, typeWildCard, self.aehandler)
+ print (suite, typeWildCard, self.aehandler)
self.active = 1
self.appleid = 1
Menu.ClearMenuBar()
self.applemenu = applemenu = Menu.NewMenu(self.appleid, "\024")
applemenu.AppendMenu("All about echo...;(-")
- applemenu.AddResMenu('DRVR')
+ applemenu.AppendResMenu('DRVR')
applemenu.InsertMenu(0)
Menu.DrawMenuBar()
@@ -88,10 +95,10 @@ class EchoServer:
try:
AE.AEProcessAppleEvent(event)
except AE.Error, err:
- EasyDialogs.Message(msg + "\015AEProcessAppleEvent error: %s" % str(err))
+ mymessage(msg + "\015AEProcessAppleEvent error: %s" % str(err))
traceback.print_exc()
else:
- EasyDialogs.Message(msg + "\015OK!")
+ mymessage(msg + "\015OK!")
elif what == keyDown:
c = chr(message & charCodeMask)
if c == '.' and modifiers & cmdKey:
@@ -105,7 +112,7 @@ class EchoServer:
item = result & 0xffff # Lo word
if id == self.appleid:
if item == 1:
- EasyDialogs.Message("Echo -- echo AppleEvents")
+ mymessage("Echo -- echo AppleEvents")
elif item > 1:
name = self.applemenu.GetItem(item)
Qd.OpenDeskAcc(name)
@@ -114,7 +121,7 @@ class EchoServer:
## MacOS.HandleEvent(event)
def aehandler(self, request, reply):
- print "Apple Event",
+ print "Apple Event!"
parameters, attributes = aetools.unpackevent(request)
print "class =", `attributes['evcl'].type`,
print "id =", `attributes['evid'].type`