2000-08-20 17:23:58 -03:00
|
|
|
"""
|
2002-04-23 18:08:54 -03:00
|
|
|
Package generated from Moes:Applications (Mac OS 9):Internet Explorer 5:Internet Explorer
|
2000-08-20 17:23:58 -03:00
|
|
|
Resource aete resid 0
|
|
|
|
"""
|
|
|
|
import aetools
|
2002-04-23 18:08:54 -03:00
|
|
|
Error = aetools.Error
|
|
|
|
import Required_Suite
|
|
|
|
import Standard_Suite
|
2000-08-20 17:23:58 -03:00
|
|
|
import Web_Browser_Suite
|
|
|
|
import URL_Suite
|
|
|
|
import Microsoft_Internet_Explorer
|
|
|
|
import Netscape_Suite
|
|
|
|
|
|
|
|
|
|
|
|
_code_to_module = {
|
2002-04-23 18:08:54 -03:00
|
|
|
'reqd' : Required_Suite,
|
|
|
|
'****' : Standard_Suite,
|
2000-08-20 17:23:58 -03:00
|
|
|
'WWW!' : Web_Browser_Suite,
|
|
|
|
'GURL' : URL_Suite,
|
|
|
|
'MSIE' : Microsoft_Internet_Explorer,
|
|
|
|
'MOSS' : Netscape_Suite,
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_code_to_fullname = {
|
2002-04-23 18:08:54 -03:00
|
|
|
'reqd' : ('Explorer.Required_Suite', 'Required_Suite'),
|
|
|
|
'****' : ('Explorer.Standard_Suite', 'Standard_Suite'),
|
2000-08-20 17:23:58 -03:00
|
|
|
'WWW!' : ('Explorer.Web_Browser_Suite', 'Web_Browser_Suite'),
|
|
|
|
'GURL' : ('Explorer.URL_Suite', 'URL_Suite'),
|
|
|
|
'MSIE' : ('Explorer.Microsoft_Internet_Explorer', 'Microsoft_Internet_Explorer'),
|
|
|
|
'MOSS' : ('Explorer.Netscape_Suite', 'Netscape_Suite'),
|
|
|
|
}
|
|
|
|
|
2002-04-23 18:08:54 -03:00
|
|
|
from Required_Suite import *
|
|
|
|
from Standard_Suite import *
|
2000-08-20 17:23:58 -03:00
|
|
|
from Web_Browser_Suite import *
|
|
|
|
from URL_Suite import *
|
|
|
|
from Microsoft_Internet_Explorer import *
|
|
|
|
from Netscape_Suite import *
|
|
|
|
|
|
|
|
|
2002-04-23 18:08:54 -03:00
|
|
|
class Explorer(Required_Suite_Events,
|
|
|
|
Standard_Suite_Events,
|
|
|
|
Web_Browser_Suite_Events,
|
2000-08-20 17:23:58 -03:00
|
|
|
URL_Suite_Events,
|
|
|
|
Microsoft_Internet_Explorer_Events,
|
|
|
|
Netscape_Suite_Events,
|
|
|
|
aetools.TalkTo):
|
|
|
|
_signature = 'MSIE'
|
|
|
|
|