| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | # This script generates a Python interface for an Apple Macintosh Manager. | 
					
						
							|  |  |  | # It uses the "bgen" package to generate C code. | 
					
						
							|  |  |  | # The function specifications are generated by scanning the mamager's header file, | 
					
						
							|  |  |  | # using the "scantools" package (customized for this particular manager). | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import string | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Declarations that change for each manager | 
					
						
							| 
									
										
										
										
											2004-07-18 06:16:08 +00:00
										 |  |  | MACHEADERFILE = 'Menus.h'               # The Apple header file | 
					
						
							|  |  |  | MODNAME = '_Menu'                       # The name of the module | 
					
						
							|  |  |  | OBJECTNAME = 'Menu'                     # The basic name of the objects used here | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # The following is *usually* unchanged but may still require tuning | 
					
						
							| 
									
										
										
										
											2004-07-18 06:16:08 +00:00
										 |  |  | MODPREFIX = 'Menu'                      # The prefix for module-wide routines | 
					
						
							|  |  |  | OBJECTTYPE = OBJECTNAME + 'Handle'      # The C type used to represent them | 
					
						
							|  |  |  | OBJECTPREFIX = MODPREFIX + 'Obj'        # The prefix for object methods | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | INPUTFILE = string.lower(MODPREFIX) + 'gen.py' # The file generated by the scanner | 
					
						
							| 
									
										
										
										
											1995-03-19 22:42:51 +00:00
										 |  |  | EXTRAFILE = string.lower(MODPREFIX) + 'edit.py' # A similar file but hand-made | 
					
						
							| 
									
										
										
										
											2004-07-18 06:16:08 +00:00
										 |  |  | OUTPUTFILE = MODNAME + "module.c"       # The file generated by this program | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | from macsupport import * | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Create the type objects | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MenuHandle = OpaqueByValueType(OBJECTTYPE, OBJECTPREFIX) | 
					
						
							| 
									
										
										
										
											1995-06-06 13:08:40 +00:00
										 |  |  | MenuRef = MenuHandle | 
					
						
							| 
									
										
										
										
											2002-01-02 14:48:36 +00:00
										 |  |  | OptMenuRef = OpaqueByValueType(OBJECTTYPE, "Opt" + OBJECTPREFIX) | 
					
						
							| 
									
										
										
										
											1999-12-23 14:32:06 +00:00
										 |  |  | Handle = OpaqueByValueType("Handle", "ResObj") | 
					
						
							| 
									
										
										
										
											2000-12-10 23:43:49 +00:00
										 |  |  | MenuBarHandle = OpaqueByValueType("MenuBarHandle", "ResObj") | 
					
						
							|  |  |  | MenuID = Type("MenuID", "h") | 
					
						
							|  |  |  | MenuItemIndex = Type("MenuItemIndex", "h") | 
					
						
							| 
									
										
										
										
											2001-12-16 20:18:40 +00:00
										 |  |  | MenuItemID = Type("MenuItemID", "l") | 
					
						
							| 
									
										
										
										
											2000-12-10 23:43:49 +00:00
										 |  |  | MenuCommand = Type("MenuCommand", "l") | 
					
						
							|  |  |  | MenuAttributes = Type("MenuAttributes", "l") | 
					
						
							|  |  |  | MenuItemAttributes = Type("MenuItemAttributes", "l") | 
					
						
							| 
									
										
										
										
											1995-06-06 13:08:40 +00:00
										 |  |  | unsigned_char = Type('unsigned char', 'b') | 
					
						
							| 
									
										
										
										
											2000-12-10 23:43:49 +00:00
										 |  |  | FMFontFamily = Type("FMFontFamily", "h") | 
					
						
							|  |  |  | FMFontStyle = Type("FMFontStyle", "h") | 
					
						
							| 
									
										
										
										
											2001-12-16 20:18:40 +00:00
										 |  |  | UniChar = Type("UniChar", "h") | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | includestuff = includestuff + """
 | 
					
						
							| 
									
										
										
										
											2001-05-22 21:56:42 +00:00
										 |  |  | #include <Carbon/Carbon.h> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-05-17 21:58:34 +00:00
										 |  |  | #ifdef USE_TOOLBOX_OBJECT_GLUE | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern PyObject *_MenuObj_New(MenuHandle); | 
					
						
							|  |  |  | extern int _MenuObj_Convert(PyObject *, MenuHandle *); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define MenuObj_New _MenuObj_New | 
					
						
							| 
									
										
										
										
											2004-07-18 06:16:08 +00:00
										 |  |  | #define MenuObj_Convert _MenuObj_Convert | 
					
						
							| 
									
										
										
										
											2001-05-17 21:58:34 +00:00
										 |  |  | #endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-02-07 14:02:03 +00:00
										 |  |  | #define as_Menu(h) ((MenuHandle)h) | 
					
						
							| 
									
										
										
										
											1999-12-23 14:32:06 +00:00
										 |  |  | #define as_Resource(h) ((Handle)h) | 
					
						
							| 
									
										
										
										
											2002-01-02 14:48:36 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-02 14:59:03 +00:00
										 |  |  | /* Alternative version of MenuObj_New, which returns None for NULL argument */ | 
					
						
							| 
									
										
										
										
											2002-01-02 14:48:36 +00:00
										 |  |  | PyObject *OptMenuObj_New(MenuRef itself) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-07-18 06:16:08 +00:00
										 |  |  |         if (itself == NULL) { | 
					
						
							|  |  |  |                 Py_INCREF(Py_None); | 
					
						
							|  |  |  |                 return Py_None; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return MenuObj_New(itself); | 
					
						
							| 
									
										
										
										
											2002-01-02 14:48:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-02 14:59:03 +00:00
										 |  |  | /* Alternative version of MenuObj_Convert, which returns NULL for a None argument */ | 
					
						
							| 
									
										
										
										
											2002-01-02 14:48:36 +00:00
										 |  |  | int OptMenuObj_Convert(PyObject *v, MenuRef *p_itself) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-07-18 06:16:08 +00:00
										 |  |  |         if ( v == Py_None ) { | 
					
						
							|  |  |  |                 *p_itself = NULL; | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return MenuObj_Convert(v, p_itself); | 
					
						
							| 
									
										
										
										
											2002-01-02 14:48:36 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-05-17 21:58:34 +00:00
										 |  |  | initstuff = initstuff + """
 | 
					
						
							| 
									
										
										
										
											2004-07-18 06:16:08 +00:00
										 |  |  |         PyMac_INIT_TOOLBOX_OBJECT_NEW(MenuHandle, MenuObj_New); | 
					
						
							|  |  |  |         PyMac_INIT_TOOLBOX_OBJECT_CONVERT(MenuHandle, MenuObj_Convert); | 
					
						
							| 
									
										
										
										
											2001-05-17 21:58:34 +00:00
										 |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-03 23:40:22 +00:00
										 |  |  | class MyObjectDefinition(PEP253Mixin, GlobalObjectDefinition): | 
					
						
							| 
									
										
										
										
											2004-07-18 06:16:08 +00:00
										 |  |  |     pass | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Create the generator groups and link them | 
					
						
							|  |  |  | module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff) | 
					
						
							|  |  |  | object = MyObjectDefinition(OBJECTNAME, OBJECTPREFIX, OBJECTTYPE) | 
					
						
							|  |  |  | module.addobject(object) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Create the generator classes used to populate the lists | 
					
						
							| 
									
										
										
										
											2001-11-30 14:16:36 +00:00
										 |  |  | Function = OSErrWeakLinkFunctionGenerator | 
					
						
							|  |  |  | Method = OSErrWeakLinkMethodGenerator | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Create and populate the lists | 
					
						
							|  |  |  | functions = [] | 
					
						
							|  |  |  | methods = [] | 
					
						
							|  |  |  | execfile(INPUTFILE) | 
					
						
							| 
									
										
										
										
											1995-03-19 22:42:51 +00:00
										 |  |  | execfile(EXTRAFILE) | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # add the populated lists to the generator groups | 
					
						
							|  |  |  | for f in functions: module.add(f) | 
					
						
							|  |  |  | for f in methods: object.add(f) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # generate output (open the output file as late as possible) | 
					
						
							|  |  |  | SetOutputFileName(OUTPUTFILE) | 
					
						
							|  |  |  | module.generate() |