| 
									
										
										
										
											2000-08-20 20:23:58 +00:00
										 |  |  | """
 | 
					
						
							| 
									
										
										
										
											2003-03-29 00:13:17 +00:00
										 |  |  | Package generated from /Applications/Internet Explorer.app | 
					
						
							| 
									
										
										
										
											2000-08-20 20:23:58 +00:00
										 |  |  | """
 | 
					
						
							| 
									
										
										
										
											2008-05-12 21:42:13 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | from warnings import warnpy3k | 
					
						
							| 
									
										
										
										
											2008-07-14 17:42:17 +00:00
										 |  |  | warnpy3k("In 3.x, the Explorer module is removed.", stacklevel=2) | 
					
						
							| 
									
										
										
										
											2008-05-12 21:42:13 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-08-20 20:23:58 +00:00
										 |  |  | import aetools | 
					
						
							| 
									
										
										
										
											2002-04-23 21:08:54 +00:00
										 |  |  | Error = aetools.Error | 
					
						
							|  |  |  | import Standard_Suite | 
					
						
							| 
									
										
										
										
											2000-08-20 20:23:58 +00:00
										 |  |  | import URL_Suite | 
					
						
							|  |  |  | import Netscape_Suite | 
					
						
							| 
									
										
										
										
											2003-03-28 22:07:22 +00:00
										 |  |  | import Microsoft_Internet_Explorer | 
					
						
							|  |  |  | import Web_Browser_Suite | 
					
						
							|  |  |  | import Required_Suite | 
					
						
							| 
									
										
										
										
											2000-08-20 20:23:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | _code_to_module = { | 
					
						
							| 
									
										
										
										
											2003-04-12 22:27:11 +00:00
										 |  |  |     '****' : Standard_Suite, | 
					
						
							|  |  |  |     'GURL' : URL_Suite, | 
					
						
							|  |  |  |     'MOSS' : Netscape_Suite, | 
					
						
							|  |  |  |     'MSIE' : Microsoft_Internet_Explorer, | 
					
						
							|  |  |  |     'WWW!' : Web_Browser_Suite, | 
					
						
							|  |  |  |     'reqd' : Required_Suite, | 
					
						
							| 
									
										
										
										
											2000-08-20 20:23:58 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | _code_to_fullname = { | 
					
						
							| 
									
										
										
										
											2003-04-12 22:27:11 +00:00
										 |  |  |     '****' : ('Explorer.Standard_Suite', 'Standard_Suite'), | 
					
						
							|  |  |  |     'GURL' : ('Explorer.URL_Suite', 'URL_Suite'), | 
					
						
							|  |  |  |     'MOSS' : ('Explorer.Netscape_Suite', 'Netscape_Suite'), | 
					
						
							|  |  |  |     'MSIE' : ('Explorer.Microsoft_Internet_Explorer', 'Microsoft_Internet_Explorer'), | 
					
						
							|  |  |  |     'WWW!' : ('Explorer.Web_Browser_Suite', 'Web_Browser_Suite'), | 
					
						
							|  |  |  |     'reqd' : ('Explorer.Required_Suite', 'Required_Suite'), | 
					
						
							| 
									
										
										
										
											2000-08-20 20:23:58 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-04-23 21:08:54 +00:00
										 |  |  | from Standard_Suite import * | 
					
						
							| 
									
										
										
										
											2000-08-20 20:23:58 +00:00
										 |  |  | from URL_Suite import * | 
					
						
							|  |  |  | from Netscape_Suite import * | 
					
						
							| 
									
										
										
										
											2003-03-28 22:07:22 +00:00
										 |  |  | from Microsoft_Internet_Explorer import * | 
					
						
							|  |  |  | from Web_Browser_Suite import * | 
					
						
							|  |  |  | from Required_Suite import * | 
					
						
							| 
									
										
										
										
											2003-03-23 22:07:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-07 15:53:42 +00:00
										 |  |  | def getbaseclasses(v): | 
					
						
							| 
									
										
										
										
											2003-04-12 22:27:11 +00:00
										 |  |  |     if not getattr(v, '_propdict', None): | 
					
						
							|  |  |  |         v._propdict = {} | 
					
						
							|  |  |  |         v._elemdict = {} | 
					
						
							|  |  |  |         for superclassname in getattr(v, '_superclassnames', []): | 
					
						
							|  |  |  |             superclass = eval(superclassname) | 
					
						
							|  |  |  |             getbaseclasses(superclass) | 
					
						
							|  |  |  |             v._propdict.update(getattr(superclass, '_propdict', {})) | 
					
						
							|  |  |  |             v._elemdict.update(getattr(superclass, '_elemdict', {})) | 
					
						
							|  |  |  |         v._propdict.update(getattr(v, '_privpropdict', {})) | 
					
						
							|  |  |  |         v._elemdict.update(getattr(v, '_privelemdict', {})) | 
					
						
							| 
									
										
										
										
											2002-08-07 15:53:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | import StdSuites | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Set property and element dictionaries now that all classes have been defined | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | getbaseclasses(application) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Indices of types declared in this module | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | _classdeclarations = { | 
					
						
							| 
									
										
										
										
											2003-04-12 22:27:11 +00:00
										 |  |  |     'capp' : application, | 
					
						
							| 
									
										
										
										
											2002-08-07 15:53:42 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2000-08-20 20:23:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-28 22:07:22 +00:00
										 |  |  | class Explorer(Standard_Suite_Events, | 
					
						
							| 
									
										
										
										
											2003-04-12 22:27:11 +00:00
										 |  |  |         URL_Suite_Events, | 
					
						
							|  |  |  |         Netscape_Suite_Events, | 
					
						
							|  |  |  |         Microsoft_Internet_Explorer_Events, | 
					
						
							|  |  |  |         Web_Browser_Suite_Events, | 
					
						
							|  |  |  |         Required_Suite_Events, | 
					
						
							|  |  |  |         aetools.TalkTo): | 
					
						
							|  |  |  |     _signature = 'MSIE' | 
					
						
							| 
									
										
										
										
											2000-08-20 20:23:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-04-12 22:27:11 +00:00
										 |  |  |     _moduleName = 'Explorer' | 
					
						
							| 
									
										
										
										
											2002-08-07 15:53:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-06-13 14:31:19 +00:00
										 |  |  |     _elemdict = application._elemdict | 
					
						
							|  |  |  |     _propdict = application._propdict |