| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | # Scan an Apple header file, generating a Python file of generator calls. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-17 14:07:56 +00:00
										 |  |  | import sys | 
					
						
							|  |  |  | import os | 
					
						
							|  |  |  | BGENDIR=os.path.join(sys.prefix, ':Tools:bgen:bgen') | 
					
						
							|  |  |  | sys.path.append(BGENDIR) | 
					
						
							| 
									
										
										
										
											1995-06-06 12:55:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | from scantools import Scanner | 
					
						
							| 
									
										
										
										
											1996-04-12 16:29:23 +00:00
										 |  |  | from bgenlocations import TOOLBOXDIR | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | LONG = "Dialogs" | 
					
						
							|  |  |  | SHORT = "dlg" | 
					
						
							|  |  |  | OBJECT = "DialogPtr" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def main(): | 
					
						
							|  |  |  | 	input = LONG + ".h" | 
					
						
							|  |  |  | 	output = SHORT + "gen.py" | 
					
						
							| 
									
										
										
										
											1996-04-12 16:29:23 +00:00
										 |  |  | 	defsoutput = TOOLBOXDIR + LONG + ".py" | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 	scanner = MyScanner(input, output, defsoutput) | 
					
						
							|  |  |  | 	scanner.scan() | 
					
						
							|  |  |  | 	scanner.close() | 
					
						
							|  |  |  | 	print "=== Done scanning and generating, now importing the generated code... ===" | 
					
						
							|  |  |  | 	exec "import " + SHORT + "support" | 
					
						
							|  |  |  | 	print "=== Done.  It's up to you to compile it now! ===" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class MyScanner(Scanner): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	def destination(self, type, name, arglist): | 
					
						
							|  |  |  | 		classname = "Function" | 
					
						
							|  |  |  | 		listname = "functions" | 
					
						
							|  |  |  | 		if arglist: | 
					
						
							|  |  |  | 			t, n, m = arglist[0] | 
					
						
							| 
									
										
										
										
											1995-06-06 12:55:40 +00:00
										 |  |  | 			if t in ("DialogPtr", "DialogRef") and m == "InMode": | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 				classname = "Method" | 
					
						
							|  |  |  | 				listname = "methods" | 
					
						
							|  |  |  | 		return classname, listname | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	def makeblacklistnames(self): | 
					
						
							|  |  |  | 		return [ | 
					
						
							|  |  |  | 			'InitDialogs', | 
					
						
							|  |  |  | 			'ErrorSound', | 
					
						
							|  |  |  | 			# Dialogs are disposed when the object is deleted | 
					
						
							|  |  |  | 			'CloseDialog', | 
					
						
							|  |  |  | 			'DisposDialog', | 
					
						
							|  |  |  | 			'DisposeDialog', | 
					
						
							| 
									
										
										
										
											1995-02-19 15:59:49 +00:00
										 |  |  | 			'UpdtDialog', | 
					
						
							|  |  |  | 			'CouldAlert', | 
					
						
							|  |  |  | 			'FreeAlert', | 
					
						
							|  |  |  | 			'CouldDialog', | 
					
						
							|  |  |  | 			'FreeDialog', | 
					
						
							| 
									
										
										
										
											1995-06-06 12:55:40 +00:00
										 |  |  | 			'GetStdFilterProc', | 
					
						
							| 
									
										
										
										
											1998-04-21 15:23:55 +00:00
										 |  |  | 			'GetDialogParent', | 
					
						
							| 
									
										
										
										
											1999-12-12 21:41:51 +00:00
										 |  |  | ##			# Can't find these in the CW Pro 3 libraries | 
					
						
							| 
									
										
										
										
											1998-04-21 15:23:55 +00:00
										 |  |  | 			'SetDialogMovableModal', | 
					
						
							|  |  |  | 			'GetDialogControlNotificationProc', | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 			] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	def makeblacklisttypes(self): | 
					
						
							|  |  |  | 		return [ | 
					
						
							| 
									
										
										
										
											1998-02-20 16:02:09 +00:00
										 |  |  | 			"AlertStdAlertParamPtr",	# Too much work, for now | 
					
						
							| 
									
										
										
										
											1998-04-21 15:23:55 +00:00
										 |  |  | 			"QTModelessCallbackProcPtr", | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 			] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	def makerepairinstructions(self): | 
					
						
							|  |  |  | 		return [ | 
					
						
							|  |  |  | 			([("Str255", "*", "InMode")], | 
					
						
							|  |  |  | 			 [("*", "*", "OutMode")]), | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 			([("void_ptr", "*", "InMode"), ("long", "*", "InMode")], | 
					
						
							|  |  |  | 			 [("InBuffer", "*", "*")]), | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 			([("void", "*", "OutMode"), ("long", "*", "InMode"), | 
					
						
							|  |  |  | 			                            ("long", "*", "OutMode")], | 
					
						
							|  |  |  | 			 [("VarVarOutBuffer", "*", "InOutMode")]), | 
					
						
							| 
									
										
										
										
											1995-08-17 14:30:52 +00:00
										 |  |  | 			  | 
					
						
							|  |  |  | 			# GetDialogItem return handle is optional | 
					
						
							|  |  |  | 			([("Handle", "item", "OutMode")], | 
					
						
							|  |  |  | 			 [("OptHandle", "item", "OutMode")]), | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 			 | 
					
						
							|  |  |  | 			# NewDialog ETC. | 
					
						
							|  |  |  | 			([("void", "*", "OutMode")], | 
					
						
							|  |  |  | 			 [("NullStorage", "*", "InMode")]), | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 			([("DialogPtr", "*", "OutMode")], | 
					
						
							|  |  |  | 			 [("ExistingDialogPtr", "*", "*")]), | 
					
						
							| 
									
										
										
										
											1995-06-06 12:55:40 +00:00
										 |  |  | 			([("DialogRef", "*", "OutMode")], | 
					
						
							|  |  |  | 			 [("ExistingDialogPtr", "*", "*")]), | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 			] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-12-12 21:41:51 +00:00
										 |  |  | 	def writeinitialdefs(self): | 
					
						
							|  |  |  | 		self.defsfile.write("def FOUR_CHAR_CODE(x): return x\n") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | if __name__ == "__main__": | 
					
						
							|  |  |  | 	main() |