| 
									
										
										
										
											1996-01-09 17:15:16 +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) | 
					
						
							| 
									
										
										
										
											1996-01-09 17:15:16 +00:00
										 |  |  | from scantools import Scanner | 
					
						
							| 
									
										
										
										
											1996-04-12 16:29:23 +00:00
										 |  |  | from bgenlocations import TOOLBOXDIR | 
					
						
							| 
									
										
										
										
											1996-01-09 17:15:16 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | LONG = "Fonts" | 
					
						
							| 
									
										
										
										
											1998-02-20 16:02:09 +00:00
										 |  |  | SHORT = "fm" | 
					
						
							| 
									
										
										
										
											1996-01-09 17:15:16 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def main(): | 
					
						
							|  |  |  | 	input = "Fonts.h" | 
					
						
							|  |  |  | 	output = SHORT + "gen.py" | 
					
						
							| 
									
										
										
										
											1996-04-12 16:29:23 +00:00
										 |  |  | 	defsoutput = TOOLBOXDIR + LONG + ".py" | 
					
						
							| 
									
										
										
										
											1996-01-09 17:15:16 +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" | 
					
						
							|  |  |  | 		return classname, listname | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	def makeblacklistnames(self): | 
					
						
							|  |  |  | 		return [ | 
					
						
							|  |  |  | 			"OutlineMetrics",	# Too complicated | 
					
						
							| 
									
										
										
										
											1998-02-20 16:02:09 +00:00
										 |  |  | 			"AntiTextIsAntiAliased",	# XXXX Missing from library... | 
					
						
							|  |  |  | 			"AntiTextGetEnabled", | 
					
						
							|  |  |  | 			"AntiTextSetEnabled", | 
					
						
							|  |  |  | 			"AntiTextGetApplicationAware", | 
					
						
							|  |  |  | 			"AntiTextSetApplicationAware", | 
					
						
							| 
									
										
										
										
											2001-06-20 21:29:19 +00:00
										 |  |  | 			# These are tricky: they're not Carbon dependent or anything, but they | 
					
						
							|  |  |  | 			# exist only on 8.6 or later (both in Carbon and Classic). | 
					
						
							|  |  |  | 			# Disabling them is the easiest path. | 
					
						
							|  |  |  | 			'SetAntiAliasedTextEnabled', | 
					
						
							|  |  |  | 			'IsAntiAliasedTextEnabled', | 
					
						
							| 
									
										
										
										
											1996-01-09 17:15:16 +00:00
										 |  |  | 			] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-21 22:07:06 +00:00
										 |  |  | 	def makegreylist(self): | 
					
						
							|  |  |  | 		return [ | 
					
						
							| 
									
										
										
										
											2000-07-14 22:37:27 +00:00
										 |  |  | 			('#if !TARGET_API_MAC_CARBON', [ | 
					
						
							| 
									
										
										
										
											2000-06-21 22:07:06 +00:00
										 |  |  | 				'InitFonts', | 
					
						
							|  |  |  | 				'SetFontLock', | 
					
						
							|  |  |  | 				'FlushFonts', | 
					
						
							|  |  |  | 			])] | 
					
						
							| 
									
										
										
										
											1996-01-09 17:15:16 +00:00
										 |  |  | 	def makeblacklisttypes(self): | 
					
						
							|  |  |  | 		return [ | 
					
						
							|  |  |  | 			"FMInput_ptr",	# Not needed for now | 
					
						
							|  |  |  | 			"FMOutPtr",		# Ditto | 
					
						
							| 
									
										
										
										
											1999-12-12 21:41:51 +00:00
										 |  |  | 			"void_ptr",		# Don't know how to do this right now | 
					
						
							|  |  |  | 			"FontInfo",		# Ditto | 
					
						
							| 
									
										
										
										
											1996-01-09 17:15:16 +00:00
										 |  |  | 			] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	def makerepairinstructions(self): | 
					
						
							|  |  |  | 		return [ | 
					
						
							|  |  |  | 			([('Str255', '*', 'InMode')], [('Str255', '*', 'OutMode')]), | 
					
						
							|  |  |  | 			([('FMetricRecPtr', 'theMetrics', 'InMode')], [('FMetricRecPtr', 'theMetrics', 'OutMode')]), | 
					
						
							|  |  |  | 			] | 
					
						
							|  |  |  | 			 | 
					
						
							| 
									
										
										
										
											2001-01-03 16:44:27 +00:00
										 |  |  | 	def writeinitialdefs(self): | 
					
						
							|  |  |  | 		self.defsfile.write("def FOUR_CHAR_CODE(x): return x\n") | 
					
						
							|  |  |  | 		self.defsfile.write("kNilOptions = 0\n") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-01-09 17:15:16 +00:00
										 |  |  | if __name__ == "__main__": | 
					
						
							|  |  |  | 	main() |