From: Jack Jansen Date: Sun, 18 Jun 1995 20:16:33 +0000 (+0000) Subject: Added as_Resource() method to convert ctl object to res object X-Git-Tag: v1.3b1~270 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5d56f4b4034476ae65412277175aa5254eb741cb;p=thirdparty%2FPython%2Fcpython.git Added as_Resource() method to convert ctl object to res object --- diff --git a/Mac/Modules/ctl/Ctlmodule.c b/Mac/Modules/ctl/Ctlmodule.c index ed37de0744ff..7267cd7880f8 100644 --- a/Mac/Modules/ctl/Ctlmodule.c +++ b/Mac/Modules/ctl/Ctlmodule.c @@ -432,6 +432,16 @@ static PyObject *CtlObj_GetControlReference(_self, _args) return _res; } +static PyObject *CtlObj_as_Resource(_self, _args) + ControlObject *_self; + PyObject *_args; +{ + PyObject *_res = NULL; + + return ResObj_New((Handle)_self->ob_itself); + +} + static PyMethodDef CtlObj_methods[] = { {"DisposeControl", (PyCFunction)CtlObj_DisposeControl, 1, "() -> None"}, @@ -477,6 +487,8 @@ static PyMethodDef CtlObj_methods[] = { "(SInt32 data) -> None"}, {"GetControlReference", (PyCFunction)CtlObj_GetControlReference, 1, "() -> (SInt32 _rv)"}, + {"as_Resource", (PyCFunction)CtlObj_as_Resource, 1, + "Return this Control as a Resource"}, {NULL, NULL, 0} }; diff --git a/Mac/Modules/ctl/ctledit.py b/Mac/Modules/ctl/ctledit.py new file mode 100644 index 000000000000..d8770122d8ce --- /dev/null +++ b/Mac/Modules/ctl/ctledit.py @@ -0,0 +1,8 @@ +as_resource_body = """ +return ResObj_New((Handle)_self->ob_itself); +""" + +f = ManualGenerator("as_Resource", as_resource_body) +f.docstring = lambda : "Return this Control as a Resource" + +methods.append(f) diff --git a/Mac/Modules/ctl/ctlsupport.py b/Mac/Modules/ctl/ctlsupport.py index 245a7253503b..a8b45a582063 100644 --- a/Mac/Modules/ctl/ctlsupport.py +++ b/Mac/Modules/ctl/ctlsupport.py @@ -82,6 +82,7 @@ Method = OSErrMethodGenerator functions = [] methods = [] execfile(INPUTFILE) +execfile('ctledit.py') # add the populated lists to the generator groups for f in functions: module.add(f)