diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-01-29 13:32:10 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-01-29 13:32:10 (GMT) |
commit | 54c07879094acde53a48f34a99ed904135bbf457 (patch) | |
tree | a1c560f1a812423aaa9f9f3a65541aff1c9a135e /Mac/Modules/menu/Menumodule.c | |
parent | f424f24bbb4231065f646d12d9d90c91f961d51a (diff) | |
download | cpython-54c07879094acde53a48f34a99ed904135bbf457.zip cpython-54c07879094acde53a48f34a99ed904135bbf457.tar.gz cpython-54c07879094acde53a48f34a99ed904135bbf457.tar.bz2 |
Added generators for EnableMenuItem and CheckMenuItem (which have Mac in front of their name in the include files).
Diffstat (limited to 'Mac/Modules/menu/Menumodule.c')
-rw-r--r-- | Mac/Modules/menu/Menumodule.c | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/Mac/Modules/menu/Menumodule.c b/Mac/Modules/menu/Menumodule.c index 7f15330..782b270 100644 --- a/Mac/Modules/menu/Menumodule.c +++ b/Mac/Modules/menu/Menumodule.c @@ -1742,6 +1742,41 @@ static PyObject *MenuObj_InsertMenuItem(_self, _args) return _res; } +static PyObject *MenuObj_EnableMenuItem(_self, _args) + MenuObject *_self; + PyObject *_args; +{ + PyObject *_res = NULL; + UInt16 item; + if (!PyArg_ParseTuple(_args, "H", + &item)) + return NULL; + EnableMenuItem(_self->ob_itself, + item); + Py_INCREF(Py_None); + _res = Py_None; + return _res; +} + +static PyObject *MenuObj_CheckMenuItem(_self, _args) + MenuObject *_self; + PyObject *_args; +{ + PyObject *_res = NULL; + short item; + Boolean checked; + if (!PyArg_ParseTuple(_args, "hb", + &item, + &checked)) + return NULL; + CheckMenuItem(_self->ob_itself, + item, + checked); + Py_INCREF(Py_None); + _res = Py_None; + return _res; +} + static PyMethodDef MenuObj_methods[] = { {"DisposeMenu", (PyCFunction)MenuObj_DisposeMenu, 1, "() -> None"}, @@ -1990,6 +2025,10 @@ static PyMethodDef MenuObj_methods[] = { "(short beforeID) -> None"}, {"InsertMenuItem", (PyCFunction)MenuObj_InsertMenuItem, 1, "(Str255 itemString, short afterItem) -> None"}, + {"EnableMenuItem", (PyCFunction)MenuObj_EnableMenuItem, 1, + "(UInt16 item) -> None"}, + {"CheckMenuItem", (PyCFunction)MenuObj_CheckMenuItem, 1, + "(short item, Boolean checked) -> None"}, {NULL, NULL, 0} }; |