| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | # This script generates the Dialogs interface for Python. | 
					
						
							|  |  |  | # It uses the "bgen" package to generate C code. | 
					
						
							|  |  |  | # It execs the file dlggen.py which contain the function definitions | 
					
						
							|  |  |  | # (dlggen.py was generated by dlgscan.py, scanning the <Dialogs.h> header file). | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from macsupport import * | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Create the type objects | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | DialogPtr = OpaqueByValueType("DialogPtr", "DlgObj") | 
					
						
							| 
									
										
										
										
											1995-06-06 12:55:40 +00:00
										 |  |  | DialogRef = DialogPtr | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-12-12 15:02:03 +00:00
										 |  |  | # An OptHandle is either a handle or None (in case NULL is passed in). | 
					
						
							|  |  |  | # This is needed for GetDialogItem(). | 
					
						
							|  |  |  | OptHandle = OpaqueByValueType("Handle", "OptResObj") | 
					
						
							| 
									
										
										
										
											1995-08-17 14:30:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | ModalFilterProcPtr = InputOnlyType("PyObject*", "O") | 
					
						
							| 
									
										
										
										
											2001-02-20 22:27:43 +00:00
										 |  |  | ModalFilterProcPtr.passInput = lambda name: "Dlg_PassFilterProc(%s)" % name | 
					
						
							| 
									
										
										
										
											1995-06-06 12:55:40 +00:00
										 |  |  | ModalFilterUPP = ModalFilterProcPtr | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-04-10 14:48:19 +00:00
										 |  |  | RgnHandle = OpaqueByValueType("RgnHandle", "ResObj") | 
					
						
							| 
									
										
										
										
											2000-12-10 23:43:49 +00:00
										 |  |  | TEHandle = OpaqueByValueType("TEHandle", "ResObj") | 
					
						
							|  |  |  | CGrafPtr = OpaqueByValueType("CGrafPtr", "GrafObj") | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | DITLMethod = Type("DITLMethod", "h") | 
					
						
							| 
									
										
										
										
											1998-02-20 16:02:09 +00:00
										 |  |  | DialogItemIndex = Type("DialogItemIndex", "h") | 
					
						
							|  |  |  | DialogItemType = Type("DialogItemType", "h") | 
					
						
							|  |  |  | DialogItemIndexZeroBased = Type("DialogItemIndexZeroBased", "h") | 
					
						
							|  |  |  | AlertType = Type("AlertType", "h") | 
					
						
							|  |  |  | StringPtr = Str255 | 
					
						
							| 
									
										
										
										
											2000-07-07 13:09:35 +00:00
										 |  |  | EventMask = Type("EventMask", "H") | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | includestuff = includestuff + """
 | 
					
						
							| 
									
										
										
										
											2001-05-22 21:56:42 +00:00
										 |  |  | #ifdef WITHOUT_FRAMEWORKS | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | #include <Dialogs.h> | 
					
						
							| 
									
										
										
										
											2001-05-22 21:56:42 +00:00
										 |  |  | #else | 
					
						
							|  |  |  | #include <Carbon/Carbon.h> | 
					
						
							|  |  |  | #endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-05-17 21:58:34 +00:00
										 |  |  | #ifdef USE_TOOLBOX_OBJECT_GLUE | 
					
						
							|  |  |  | extern PyObject *_DlgObj_New(DialogRef); | 
					
						
							|  |  |  | extern PyObject *_DlgObj_WhichDialog(DialogRef); | 
					
						
							|  |  |  | extern int _DlgObj_Convert(PyObject *, DialogRef *); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define DlgObj_New _DlgObj_New | 
					
						
							|  |  |  | #define DlgObj_WhichDialog _DlgObj_WhichDialog | 
					
						
							|  |  |  | #define DlgObj_Convert _DlgObj_Convert | 
					
						
							|  |  |  | #endif | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-11-05 16:16:39 +00:00
										 |  |  | #if !ACCESSOR_CALLS_ARE_FUNCTIONS && UNIVERSAL_INTERFACES_VERSION < 0x340 | 
					
						
							| 
									
										
										
										
											2000-12-10 23:43:49 +00:00
										 |  |  | #define GetDialogTextEditHandle(dlg) (((DialogPeek)(dlg))->textH) | 
					
						
							|  |  |  | #define SetPortDialogPort(dlg) SetPort(dlg) | 
					
						
							|  |  |  | #define GetDialogPort(dlg) ((CGrafPtr)(dlg)) | 
					
						
							|  |  |  | #define GetDialogFromWindow(win) ((DialogRef)(win)) | 
					
						
							|  |  |  | #endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | /* XXX Shouldn't this be a stack? */ | 
					
						
							|  |  |  | static PyObject *Dlg_FilterProc_callback = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static pascal Boolean Dlg_UnivFilterProc(DialogPtr dialog, | 
					
						
							|  |  |  |                                          EventRecord *event, | 
					
						
							|  |  |  |                                          short *itemHit) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	Boolean rv; | 
					
						
							|  |  |  | 	PyObject *args, *res; | 
					
						
							|  |  |  | 	PyObject *callback = Dlg_FilterProc_callback; | 
					
						
							|  |  |  | 	if (callback == NULL) | 
					
						
							|  |  |  | 		return 0; /* Default behavior */ | 
					
						
							|  |  |  | 	Dlg_FilterProc_callback = NULL; /* We'll restore it when call successful */ | 
					
						
							| 
									
										
										
										
											2001-02-06 16:14:54 +00:00
										 |  |  | 	args = Py_BuildValue("O&O&", DlgObj_WhichDialog, dialog, PyMac_BuildEventRecord, event); | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 	if (args == NULL) | 
					
						
							|  |  |  | 		res = NULL; | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		res = PyEval_CallObject(callback, args); | 
					
						
							|  |  |  | 		Py_DECREF(args); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (res == NULL) { | 
					
						
							| 
									
										
										
										
											1998-10-12 20:53:15 +00:00
										 |  |  | 		PySys_WriteStderr("Exception in Dialog Filter\\n"); | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 		PyErr_Print(); | 
					
						
							|  |  |  | 		*itemHit = -1; /* Fake return item */ | 
					
						
							|  |  |  | 		return 1; /* We handled it */ | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		Dlg_FilterProc_callback = callback; | 
					
						
							|  |  |  | 		if (PyInt_Check(res)) { | 
					
						
							|  |  |  | 			*itemHit = PyInt_AsLong(res); | 
					
						
							|  |  |  | 			rv = 1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			rv = PyObject_IsTrue(res); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	Py_DECREF(res); | 
					
						
							|  |  |  | 	return rv; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-20 22:27:43 +00:00
										 |  |  | static ModalFilterUPP | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | Dlg_PassFilterProc(PyObject *callback) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PyObject *tmp = Dlg_FilterProc_callback; | 
					
						
							| 
									
										
										
										
											2001-02-20 22:27:43 +00:00
										 |  |  | 	static ModalFilterUPP UnivFilterUpp = NULL; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 	Dlg_FilterProc_callback = NULL; | 
					
						
							|  |  |  | 	if (callback == Py_None) { | 
					
						
							|  |  |  | 		Py_XDECREF(tmp); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	Py_INCREF(callback); | 
					
						
							|  |  |  | 	Dlg_FilterProc_callback = callback; | 
					
						
							|  |  |  | 	Py_XDECREF(tmp); | 
					
						
							| 
									
										
										
										
											2001-02-20 22:27:43 +00:00
										 |  |  | 	if ( UnivFilterUpp == NULL ) | 
					
						
							|  |  |  | 		UnivFilterUpp = NewModalFilterUPP(&Dlg_UnivFilterProc); | 
					
						
							|  |  |  | 	return UnivFilterUpp; | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-07-10 15:47:48 +00:00
										 |  |  | static PyObject *Dlg_UserItemProc_callback = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static pascal void Dlg_UnivUserItemProc(DialogPtr dialog, | 
					
						
							|  |  |  |                                          short item) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PyObject *args, *res; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (Dlg_UserItemProc_callback == NULL) | 
					
						
							|  |  |  | 		return; /* Default behavior */ | 
					
						
							|  |  |  | 	Dlg_FilterProc_callback = NULL; /* We'll restore it when call successful */ | 
					
						
							| 
									
										
										
										
											2001-02-06 16:14:54 +00:00
										 |  |  | 	args = Py_BuildValue("O&h", DlgObj_WhichDialog, dialog, item); | 
					
						
							| 
									
										
										
										
											1998-07-10 15:47:48 +00:00
										 |  |  | 	if (args == NULL) | 
					
						
							|  |  |  | 		res = NULL; | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		res = PyEval_CallObject(Dlg_UserItemProc_callback, args); | 
					
						
							|  |  |  | 		Py_DECREF(args); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (res == NULL) { | 
					
						
							| 
									
										
										
										
											1998-10-12 20:53:15 +00:00
										 |  |  | 		PySys_WriteStderr("Exception in Dialog UserItem proc\\n"); | 
					
						
							| 
									
										
										
										
											1998-07-10 15:47:48 +00:00
										 |  |  | 		PyErr_Print(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	Py_XDECREF(res); | 
					
						
							|  |  |  | 	return; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-06 16:14:54 +00:00
										 |  |  | #if 0 | 
					
						
							| 
									
										
										
										
											2000-08-25 22:25:54 +00:00
										 |  |  | /* | 
					
						
							|  |  |  | ** Treating DialogObjects as WindowObjects is (I think) illegal under Carbon. | 
					
						
							|  |  |  | ** However, as they are still identical under MacOS9 Carbon this is a problem, even | 
					
						
							|  |  |  | ** if we neatly call GetDialogWindow() at the right places: there's one refcon field | 
					
						
							|  |  |  | ** and it points to the DialogObject, so WinObj_WhichWindow will smartly return the | 
					
						
							|  |  |  | ** dialog object, and therefore we still don't have a WindowObject. | 
					
						
							|  |  |  | ** I'll leave the chaining code in place for now, with this comment to warn the | 
					
						
							|  |  |  | ** unsuspecting victims (i.e. me, probably, in a few weeks:-) | 
					
						
							|  |  |  | */ | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | extern PyMethodChain WinObj_chain; | 
					
						
							| 
									
										
										
										
											2000-08-25 22:25:54 +00:00
										 |  |  | #endif | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | finalstuff = finalstuff + """
 | 
					
						
							|  |  |  | /* Return the WindowPtr corresponding to a DialogObject */ | 
					
						
							| 
									
										
										
										
											2001-05-17 21:58:34 +00:00
										 |  |  | #if 0 | 
					
						
							| 
									
										
										
										
											2000-08-25 22:25:54 +00:00
										 |  |  | WindowPtr | 
					
						
							| 
									
										
										
										
											2001-05-22 21:56:42 +00:00
										 |  |  | DlgObj_ConvertToWindow(PyObject *self) | 
					
						
							| 
									
										
										
										
											2000-08-25 22:25:54 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	if ( DlgObj_Check(self) ) | 
					
						
							|  |  |  | 		return GetDialogWindow(((DialogObject *)self)->ob_itself); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-05-17 21:58:34 +00:00
										 |  |  | #endif | 
					
						
							| 
									
										
										
										
											2001-02-06 16:14:54 +00:00
										 |  |  | /* Return the object corresponding to the dialog, or None */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							| 
									
										
										
										
											2001-05-22 21:56:42 +00:00
										 |  |  | DlgObj_WhichDialog(DialogPtr d) | 
					
						
							| 
									
										
										
										
											2001-02-06 16:14:54 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	PyObject *it; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	if (d == NULL) { | 
					
						
							|  |  |  | 		it = Py_None; | 
					
						
							|  |  |  | 		Py_INCREF(it); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		WindowPtr w = GetDialogWindow(d); | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 		it = (PyObject *) GetWRefCon(w); | 
					
						
							|  |  |  | 		if (it == NULL || ((DialogObject *)it)->ob_itself != d || !DlgObj_Check(it)) { | 
					
						
							|  |  |  | #if 0 | 
					
						
							|  |  |  | 			/* Should do this, but we don't have an ob_freeit for dialogs yet. */ | 
					
						
							|  |  |  | 			it = WinObj_New(w); | 
					
						
							|  |  |  | 			((WindowObject *)it)->ob_freeit = NULL; | 
					
						
							|  |  |  | #else | 
					
						
							|  |  |  | 			it = Py_None; | 
					
						
							|  |  |  | 			Py_INCREF(it); | 
					
						
							|  |  |  | #endif | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			Py_INCREF(it); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return it; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-05-17 21:58:34 +00:00
										 |  |  | initstuff = initstuff + """
 | 
					
						
							| 
									
										
										
										
											2001-05-22 21:56:42 +00:00
										 |  |  | 	PyMac_INIT_TOOLBOX_OBJECT_NEW(DialogPtr, DlgObj_New); | 
					
						
							|  |  |  | 	PyMac_INIT_TOOLBOX_OBJECT_NEW(DialogPtr, DlgObj_WhichDialog); | 
					
						
							|  |  |  | 	PyMac_INIT_TOOLBOX_OBJECT_CONVERT(DialogPtr, DlgObj_Convert); | 
					
						
							| 
									
										
										
										
											2001-05-17 21:58:34 +00:00
										 |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Define a class which specializes our object definition | 
					
						
							|  |  |  | class MyObjectDefinition(GlobalObjectDefinition): | 
					
						
							|  |  |  | 	def __init__(self, name, prefix = None, itselftype = None): | 
					
						
							|  |  |  | 		GlobalObjectDefinition.__init__(self, name, prefix, itselftype) | 
					
						
							| 
									
										
										
										
											2000-08-25 22:25:54 +00:00
										 |  |  | ## This won't work in Carbon, so we disable it for all MacPythons:-( | 
					
						
							|  |  |  | ## But see the comment above:-(( | 
					
						
							| 
									
										
										
										
											2001-02-06 16:14:54 +00:00
										 |  |  | ##		self.basechain = "&WinObj_chain" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 	def outputInitStructMembers(self): | 
					
						
							|  |  |  | 		GlobalObjectDefinition.outputInitStructMembers(self) | 
					
						
							| 
									
										
										
										
											2000-06-02 21:35:07 +00:00
										 |  |  | 		Output("SetWRefCon(GetDialogWindow(itself), (long)it);") | 
					
						
							| 
									
										
										
										
											2001-02-06 16:14:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 	def outputCheckNewArg(self): | 
					
						
							|  |  |  | 		Output("if (itself == NULL) return Py_None;") | 
					
						
							| 
									
										
										
										
											2001-02-06 16:14:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 	def outputCheckConvertArg(self): | 
					
						
							|  |  |  | 		Output("if (v == Py_None) { *p_itself = NULL; return 1; }") | 
					
						
							|  |  |  | 		Output("if (PyInt_Check(v)) { *p_itself = (DialogPtr)PyInt_AsLong(v);") | 
					
						
							|  |  |  | 		Output("                      return 1; }") | 
					
						
							| 
									
										
										
										
											2001-02-06 16:14:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	def outputCompare(self): | 
					
						
							|  |  |  | 		Output() | 
					
						
							| 
									
										
										
										
											2001-05-22 21:56:42 +00:00
										 |  |  | 		Output("static int %s_compare(%s *self, %s *other)", self.prefix, self.objecttype, self.objecttype) | 
					
						
							| 
									
										
										
										
											2001-02-06 16:14:54 +00:00
										 |  |  | 		OutLbrace() | 
					
						
							|  |  |  | 		Output("if ( self->ob_itself > other->ob_itself ) return 1;") | 
					
						
							|  |  |  | 		Output("if ( self->ob_itself < other->ob_itself ) return -1;") | 
					
						
							|  |  |  | 		Output("return 0;") | 
					
						
							|  |  |  | 		OutRbrace() | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 	def outputHash(self): | 
					
						
							|  |  |  | 		Output() | 
					
						
							| 
									
										
										
										
											2001-05-22 21:56:42 +00:00
										 |  |  | 		Output("static int %s_hash(%s *self)", self.prefix, self.objecttype) | 
					
						
							| 
									
										
										
										
											2001-02-06 16:14:54 +00:00
										 |  |  | 		OutLbrace() | 
					
						
							|  |  |  | 		Output("return (int)self->ob_itself;") | 
					
						
							|  |  |  | 		OutRbrace() | 
					
						
							|  |  |  | 		 | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | 	def outputFreeIt(self, itselfname): | 
					
						
							|  |  |  | 		Output("DisposeDialog(%s);", itselfname) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Create the generator groups and link them | 
					
						
							| 
									
										
										
										
											2001-08-23 13:51:46 +00:00
										 |  |  | module = MacModule('_Dlg', 'Dlg', includestuff, finalstuff, initstuff) | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | object = MyObjectDefinition('Dialog', 'DlgObj', 'DialogPtr') | 
					
						
							|  |  |  | module.addobject(object) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Create the generator classes used to populate the lists | 
					
						
							|  |  |  | Function = OSErrFunctionGenerator | 
					
						
							|  |  |  | Method = OSErrMethodGenerator | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Create and populate the lists | 
					
						
							|  |  |  | functions = [] | 
					
						
							|  |  |  | methods = [] | 
					
						
							|  |  |  | execfile("dlggen.py") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # add the populated lists to the generator groups | 
					
						
							|  |  |  | for f in functions: module.add(f) | 
					
						
							|  |  |  | for f in methods: object.add(f) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-09-23 15:48:46 +00:00
										 |  |  | # Some methods that are currently macro's in C, but will be real routines | 
					
						
							|  |  |  | # in MacOS 8. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-12-10 23:43:49 +00:00
										 |  |  | ##f = Method(ExistingWindowPtr, 'GetDialogWindow', (DialogRef, 'dialog', InMode)) | 
					
						
							|  |  |  | ##object.add(f) | 
					
						
							|  |  |  | ##f = Method(SInt16, 'GetDialogDefaultItem', (DialogRef, 'dialog', InMode)) | 
					
						
							|  |  |  | ##object.add(f) | 
					
						
							|  |  |  | ##f = Method(SInt16, 'GetDialogCancelItem', (DialogRef, 'dialog', InMode)) | 
					
						
							|  |  |  | ##object.add(f) | 
					
						
							|  |  |  | ##f = Method(SInt16, 'GetDialogKeyboardFocusItem', (DialogRef, 'dialog', InMode)) | 
					
						
							|  |  |  | ##object.add(f) | 
					
						
							| 
									
										
										
										
											2000-06-02 21:35:07 +00:00
										 |  |  | f = Method(void, 'SetGrafPortOfDialog', (DialogRef, 'dialog', InMode),  | 
					
						
							| 
									
										
										
										
											2000-07-14 22:37:27 +00:00
										 |  |  | 	condition='#if !TARGET_API_MAC_CARBON') | 
					
						
							| 
									
										
										
										
											1996-09-23 15:48:46 +00:00
										 |  |  | object.add(f) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-07-10 15:47:48 +00:00
										 |  |  | setuseritembody = """
 | 
					
						
							|  |  |  | 	PyObject *new = NULL; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	if (!PyArg_ParseTuple(_args, "|O", &new)) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (Dlg_UserItemProc_callback && new && new != Py_None) { | 
					
						
							|  |  |  | 		PyErr_SetString(Dlg_Error, "Another UserItemProc is already installed"); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2001-02-20 22:27:43 +00:00
										 |  |  | 	if (new == NULL || new == Py_None) { | 
					
						
							| 
									
										
										
										
											1998-07-10 15:47:48 +00:00
										 |  |  | 		new = NULL; | 
					
						
							|  |  |  | 		_res = Py_None; | 
					
						
							|  |  |  | 		Py_INCREF(Py_None); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		Py_INCREF(new); | 
					
						
							| 
									
										
										
										
											2001-05-22 21:56:42 +00:00
										 |  |  | 		_res = Py_BuildValue("O&", ResObj_New, (Handle)NewUserItemUPP(Dlg_UnivUserItemProc)); | 
					
						
							| 
									
										
										
										
											1998-07-10 15:47:48 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	Dlg_UserItemProc_callback = new; | 
					
						
							|  |  |  | 	return _res; | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  | f = ManualGenerator("SetUserItemHandler", setuseritembody) | 
					
						
							|  |  |  | module.add(f) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | # generate output | 
					
						
							| 
									
										
										
										
											2001-08-23 13:51:46 +00:00
										 |  |  | SetOutputFileName('_Dlgmodule.c') | 
					
						
							| 
									
										
										
										
											1995-01-30 11:53:55 +00:00
										 |  |  | module.generate() |