| 
									
										
										
										
											2001-06-19 21:37:33 +00:00
										 |  |  | # copyright 1996-2001 Just van Rossum, Letterror. just@letterror.com | 
					
						
							| 
									
										
										
										
											1999-01-30 22:39:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # keep this (__main__) as clean as possible, since we are using  | 
					
						
							|  |  |  | # it like the "normal" interpreter. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-06-19 21:37:33 +00:00
										 |  |  | __version__ = '1.0.1' | 
					
						
							| 
									
										
										
										
											1999-01-30 22:39:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def init(): | 
					
						
							|  |  |  | 	import MacOS | 
					
						
							|  |  |  | 	MacOS.EnableAppswitch(-1) | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2001-08-25 12:15:04 +00:00
										 |  |  | 	from Carbon import Qd, QuickDraw | 
					
						
							| 
									
										
										
										
											1999-01-30 22:39:17 +00:00
										 |  |  | 	Qd.SetCursor(Qd.GetCursor(QuickDraw.watchCursor).data) | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2001-08-25 12:15:04 +00:00
										 |  |  | 	from Carbon import Res | 
					
						
							|  |  |  | 	import sys, os | 
					
						
							| 
									
										
										
										
											1999-01-30 22:39:17 +00:00
										 |  |  | 	try: | 
					
						
							|  |  |  | 		Res.GetResource('DITL', 468) | 
					
						
							|  |  |  | 	except Res.Error: | 
					
						
							|  |  |  | 		# we're not an applet | 
					
						
							| 
									
										
										
										
											1999-02-26 21:19:50 +00:00
										 |  |  | 		Res.FSpOpenResFile(os.path.join(sys.exec_prefix, ":Mac:Tools:IDE:PythonIDE.rsrc"), 1) | 
					
						
							|  |  |  | 		Res.FSpOpenResFile(os.path.join(sys.exec_prefix, ":Mac:Tools:IDE:Widgets.rsrc"), 1) | 
					
						
							| 
									
										
										
										
											1999-01-31 23:17:56 +00:00
										 |  |  | 		ide_path = os.path.join(sys.exec_prefix, ":Mac:Tools:IDE") | 
					
						
							| 
									
										
										
										
											1999-01-30 22:39:17 +00:00
										 |  |  | 	else: | 
					
						
							|  |  |  | 		# we're an applet | 
					
						
							| 
									
										
										
										
											1999-01-30 23:49:45 +00:00
										 |  |  | 		try: | 
					
						
							|  |  |  | 			Res.GetResource('CURS', 468) | 
					
						
							|  |  |  | 		except Res.Error: | 
					
						
							| 
									
										
										
										
											1999-02-26 21:19:50 +00:00
										 |  |  | 			Res.FSpOpenResFile(os.path.join(sys.exec_prefix, ":Mac:Tools:IDE:Widgets.rsrc"), 1) | 
					
						
							| 
									
										
										
										
											1999-01-31 23:17:56 +00:00
										 |  |  | 			ide_path = os.path.join(sys.exec_prefix, ":Mac:Tools:IDE") | 
					
						
							| 
									
										
										
										
											1999-01-30 23:49:45 +00:00
										 |  |  | 		else: | 
					
						
							|  |  |  | 			# we're a full blown applet | 
					
						
							| 
									
										
										
										
											1999-01-31 23:17:56 +00:00
										 |  |  | 			ide_path = sys.argv[0] | 
					
						
							|  |  |  | 	if ide_path not in sys.path: | 
					
						
							|  |  |  | 		sys.path.insert(0, ide_path) | 
					
						
							| 
									
										
										
										
											1999-01-30 22:39:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | init() | 
					
						
							|  |  |  | del init | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import PythonIDEMain |