| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | # Scan <Menus.h>, generating menugen.py. | 
					
						
							| 
									
										
										
										
											1998-04-17 14:07:56 +00:00
										 |  |  | import sys | 
					
						
							|  |  |  | import os | 
					
						
							| 
									
										
										
										
											2002-08-05 15:39:30 +00:00
										 |  |  | from bgenlocations import TOOLBOXDIR, BGENDIR | 
					
						
							| 
									
										
										
										
											1998-04-17 14:07:56 +00:00
										 |  |  | sys.path.append(BGENDIR) | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | from scantools import Scanner | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def main(): | 
					
						
							|  |  |  | 	input = "Menus.h" | 
					
						
							|  |  |  | 	output = "menugen.py" | 
					
						
							| 
									
										
										
										
											1996-04-12 16:29:23 +00:00
										 |  |  | 	defsoutput = TOOLBOXDIR + "Menus.py" | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 	scanner = MyScanner(input, output, defsoutput) | 
					
						
							|  |  |  | 	scanner.scan() | 
					
						
							|  |  |  | 	scanner.close() | 
					
						
							| 
									
										
										
										
											2002-08-15 21:48:16 +00:00
										 |  |  | 	print "=== Testing definitions output code ===" | 
					
						
							|  |  |  | 	execfile(defsoutput, {}, {}) | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 	print "=== Done scanning and generating, now doing 'import menusupport' ===" | 
					
						
							|  |  |  | 	import menusupport | 
					
						
							|  |  |  | 	print "=== Done.  It's up to you to compile Menumodule.c ===" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class MyScanner(Scanner): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	def destination(self, type, name, arglist): | 
					
						
							|  |  |  | 		classname = "Function" | 
					
						
							|  |  |  | 		listname = "functions" | 
					
						
							|  |  |  | 		if arglist: | 
					
						
							|  |  |  | 			t, n, m = arglist[0] | 
					
						
							| 
									
										
										
										
											1995-06-06 13:08:40 +00:00
										 |  |  | 			if t in ("MenuHandle", "MenuRef") and m == "InMode": | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 				classname = "Method" | 
					
						
							|  |  |  | 				listname = "methods" | 
					
						
							|  |  |  | 		return classname, listname | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	def makeblacklistnames(self): | 
					
						
							|  |  |  | 		return [ | 
					
						
							| 
									
										
										
										
											1999-12-12 21:41:51 +00:00
										 |  |  | ##			"IsShowContextualMenuClick", # Can't find it in the library | 
					
						
							|  |  |  | ##			"InitContextualMenus", # ditto | 
					
						
							|  |  |  | 			"GetMenuItemProperty",	# difficult for the moment | 
					
						
							|  |  |  | 			"GetMenuItemPropertySize", | 
					
						
							|  |  |  | 			"SetMenuItemProperty", | 
					
						
							|  |  |  | 			"RemoveMenuItemProperty", | 
					
						
							| 
									
										
										
										
											2000-12-10 23:43:49 +00:00
										 |  |  | 			"SetMenuCommandProperty", | 
					
						
							|  |  |  | 			"GetMenuCommandProperty", | 
					
						
							|  |  |  | 			"GetMenuTitle", # Funny arg/returnvalue | 
					
						
							|  |  |  | 			"SetMenuTitle", | 
					
						
							| 
									
										
										
										
											2001-12-16 20:18:40 +00:00
										 |  |  | 			"SetMenuTitleIcon", # void* | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 			] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-02 21:35:07 +00:00
										 |  |  | 	def makegreylist(self): | 
					
						
							|  |  |  | 		return [ | 
					
						
							| 
									
										
										
										
											2000-07-14 22:37:27 +00:00
										 |  |  | 			('#if !TARGET_API_MAC_CARBON', [ | 
					
						
							| 
									
										
										
										
											2000-06-02 21:35:07 +00:00
										 |  |  | 				'GetMenuItemRefCon2', | 
					
						
							|  |  |  | 				'SetMenuItemRefCon2', | 
					
						
							|  |  |  | 				'EnableItem', | 
					
						
							|  |  |  | 				'DisableItem', | 
					
						
							|  |  |  | 				'CheckItem', | 
					
						
							|  |  |  | 				'CountMItems', | 
					
						
							|  |  |  | 				'OpenDeskAcc', | 
					
						
							|  |  |  | 				'SystemEdit', | 
					
						
							|  |  |  | 				'SystemMenu', | 
					
						
							|  |  |  | 				'SetMenuFlash', | 
					
						
							|  |  |  | 				'InitMenus', | 
					
						
							|  |  |  | 				'InitProcMenu', | 
					
						
							| 
									
										
										
										
											2000-12-10 23:43:49 +00:00
										 |  |  | 			]), | 
					
						
							|  |  |  | 			('#if TARGET_API_MAC_CARBON', [ | 
					
						
							|  |  |  | 				'DisposeMenuBar', | 
					
						
							|  |  |  | 				'DuplicateMenuBar', | 
					
						
							|  |  |  | 				'CreateNewMenu', | 
					
						
							|  |  |  | 				'GetFontFamilyFromMenuSelection', | 
					
						
							|  |  |  | 				'UpdateStandardFontMenu', | 
					
						
							|  |  |  | 				'CreateStandardFontMenu', | 
					
						
							|  |  |  | 				'RemoveMenuCommandProperty', | 
					
						
							|  |  |  | 				'GetMenuCommandPropertySize', | 
					
						
							|  |  |  | 				'IsMenuCommandEnabled', | 
					
						
							|  |  |  | 				'DisableMenuCommand', | 
					
						
							|  |  |  | 				'EnableMenuCommand', | 
					
						
							|  |  |  | 				'GetIndMenuItemWithCommandID', | 
					
						
							|  |  |  | 				'CountMenuItemsWithCommandID', | 
					
						
							|  |  |  | 				'MenuHasEnabledItems', | 
					
						
							|  |  |  | 				'EnableAllMenuItems', | 
					
						
							|  |  |  | 				'DisableAllMenuItems', | 
					
						
							|  |  |  | 				'ChangeMenuItemAttributes', | 
					
						
							|  |  |  | 				'GetMenuItemAttributes', | 
					
						
							|  |  |  | 				'ChangeMenuAttributes', | 
					
						
							|  |  |  | 				'GetMenuAttributes', | 
					
						
							|  |  |  | 				'ChangeMenuItemPropertyAttributes', | 
					
						
							|  |  |  | 				'GetMenuItemPropertyAttributes', | 
					
						
							| 
									
										
										
										
											2001-12-16 20:18:40 +00:00
										 |  |  | 				'AcquireRootMenu', | 
					
						
							|  |  |  | 				'UpdateInvalidMenuItems', | 
					
						
							|  |  |  | 				'InvalidateMenuItems', | 
					
						
							|  |  |  | 				'IsMenuItemInvalid', | 
					
						
							|  |  |  | 				'GetMenuCommandMark', | 
					
						
							|  |  |  | 				'SetMenuCommandMark', | 
					
						
							|  |  |  | 				'GetMenuType', | 
					
						
							|  |  |  | 				'SetMenuItemCommandKey', | 
					
						
							|  |  |  | 				'GetMenuItemCommandKey', | 
					
						
							|  |  |  | 				'SetMenuItemIndent', | 
					
						
							|  |  |  | 				'GetMenuItemIndent', | 
					
						
							|  |  |  | 				'SetMenuItemTextWithCFString', | 
					
						
							|  |  |  | 				'CopyMenuItemTextAsCFString', | 
					
						
							|  |  |  | 				'GetMenuItemHierarchicalMenu', | 
					
						
							|  |  |  | 				'SetMenuItemHierarchicalMenu', | 
					
						
							|  |  |  | 				'SetRootMenu', | 
					
						
							|  |  |  | 				'IsMenuBarInvalid', | 
					
						
							|  |  |  | 				'InvalidateMenuEnabling', | 
					
						
							|  |  |  | 				'InsertMenuItemTextWithCFString', | 
					
						
							|  |  |  | 				'AppendMenuItemTextWithCFString', | 
					
						
							|  |  |  | 				'DeleteMenuItems', | 
					
						
							|  |  |  | 				'CopyMenuItems', | 
					
						
							|  |  |  | 				'IsMenuSizeInvalid', | 
					
						
							|  |  |  | 				'InvalidateMenuSize', | 
					
						
							|  |  |  | 				'SetMenuTitleWithCFString', | 
					
						
							|  |  |  | 				'CopyMenuTitleAsCFString', | 
					
						
							|  |  |  | 				'DuplicateMenu', | 
					
						
							|  |  |  | 				'ReleaseMenu', | 
					
						
							|  |  |  | 				'RetainMenu', | 
					
						
							|  |  |  | 				'GetMenuRetainCount', | 
					
						
							|  |  |  | 				'IsValidMenu', | 
					
						
							| 
									
										
										
										
											2000-06-02 21:35:07 +00:00
										 |  |  | 			])] | 
					
						
							|  |  |  | 			 | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 	def makeblacklisttypes(self): | 
					
						
							|  |  |  | 		return [ | 
					
						
							|  |  |  | 			'MCTableHandle', | 
					
						
							|  |  |  | 			'MCEntryPtr', | 
					
						
							|  |  |  | 			'MCTablePtr', | 
					
						
							| 
									
										
										
										
											1998-04-21 15:23:55 +00:00
										 |  |  | 			'AEDesc_ptr', # For now: doable, but not easy | 
					
						
							|  |  |  | 			'ProcessSerialNumber', # ditto | 
					
						
							| 
									
										
										
										
											2000-12-10 23:43:49 +00:00
										 |  |  | 			"MenuDefSpecPtr", # Too difficult for now | 
					
						
							|  |  |  | 			"MenuDefSpec_ptr", # ditto | 
					
						
							|  |  |  | 			"MenuTrackingData", | 
					
						
							| 
									
										
										
										
											2001-12-16 20:18:40 +00:00
										 |  |  | 			"void_ptr", 	# Don't know yet. | 
					
						
							|  |  |  | 			"EventRef",	# For now, not exported yet. | 
					
						
							|  |  |  | 			"MenuItemDataPtr", # Not yet. | 
					
						
							|  |  |  | 			"MenuItemDataRec_ptr", | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 			] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	def makerepairinstructions(self): | 
					
						
							|  |  |  | 		return [ | 
					
						
							|  |  |  | 			([("Str255", "itemString", "InMode")], | 
					
						
							|  |  |  | 			 [("*", "*", "OutMode")]), | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 			([("void_ptr", "*", "InMode"), ("long", "*", "InMode")], | 
					
						
							|  |  |  | 			 [("InBuffer", "*", "*")]), | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 			([("void", "*", "OutMode"), ("long", "*", "InMode"), | 
					
						
							|  |  |  | 			                            ("long", "*", "OutMode")], | 
					
						
							|  |  |  | 			 [("VarVarOutBuffer", "*", "InOutMode")]), | 
					
						
							| 
									
										
										
										
											2002-01-03 12:16:18 +00:00
										 |  |  | 			([("MenuRef", 'outHierMenu', "OutMode")], | 
					
						
							|  |  |  | 			 [("OptMenuRef", 'outHierMenu', "OutMode")]), | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 			] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-24 10:28:20 +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() |