1995-01-30 07:53:55 -04:00
|
|
|
|
|
|
|
/* ========================== Module Menu =========================== */
|
|
|
|
|
|
|
|
#include "Python.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define SystemSevenOrLater 1
|
|
|
|
|
|
|
|
#include "macglue.h"
|
|
|
|
#include <Memory.h>
|
|
|
|
#include <Dialogs.h>
|
|
|
|
#include <Menus.h>
|
|
|
|
#include <Controls.h>
|
|
|
|
|
|
|
|
extern PyObject *ResObj_New(Handle);
|
|
|
|
extern int ResObj_Convert(PyObject *, Handle *);
|
1995-12-12 11:02:03 -04:00
|
|
|
extern PyObject *OptResObj_New(Handle);
|
|
|
|
extern int OptResObj_Convert(PyObject *, Handle *);
|
1995-01-30 07:53:55 -04:00
|
|
|
|
|
|
|
extern PyObject *WinObj_New(WindowPtr);
|
|
|
|
extern int WinObj_Convert(PyObject *, WindowPtr *);
|
1995-12-12 11:02:03 -04:00
|
|
|
extern PyTypeObject Window_Type;
|
|
|
|
#define WinObj_Check(x) ((x)->ob_type == &Window_Type)
|
1995-01-30 07:53:55 -04:00
|
|
|
|
|
|
|
extern PyObject *DlgObj_New(DialogPtr);
|
|
|
|
extern int DlgObj_Convert(PyObject *, DialogPtr *);
|
|
|
|
extern PyTypeObject Dialog_Type;
|
|
|
|
#define DlgObj_Check(x) ((x)->ob_type == &Dialog_Type)
|
|
|
|
|
|
|
|
extern PyObject *MenuObj_New(MenuHandle);
|
|
|
|
extern int MenuObj_Convert(PyObject *, MenuHandle *);
|
|
|
|
|
|
|
|
extern PyObject *CtlObj_New(ControlHandle);
|
|
|
|
extern int CtlObj_Convert(PyObject *, ControlHandle *);
|
|
|
|
|
1995-12-12 11:02:03 -04:00
|
|
|
extern PyObject *GrafObj_New(GrafPtr);
|
|
|
|
extern int GrafObj_Convert(PyObject *, GrafPtr *);
|
|
|
|
|
|
|
|
extern PyObject *BMObj_New(BitMapPtr);
|
|
|
|
extern int BMObj_Convert(PyObject *, BitMapPtr *);
|
|
|
|
|
1995-01-30 07:53:55 -04:00
|
|
|
extern PyObject *WinObj_WhichWindow(WindowPtr);
|
|
|
|
|
1995-03-19 18:42:51 -04:00
|
|
|
#include <Devices.h> /* Defines OpenDeskAcc in universal headers */
|
1995-01-30 07:53:55 -04:00
|
|
|
#include <Menus.h>
|
|
|
|
|
|
|
|
#define resNotFound -192 /* Can't include <Errors.h> because of Python's "errors.h" */
|
|
|
|
|
1999-02-07 10:02:03 -04:00
|
|
|
#define as_Menu(h) ((MenuHandle)h)
|
|
|
|
|
1995-01-30 07:53:55 -04:00
|
|
|
static PyObject *Menu_Error;
|
|
|
|
|
|
|
|
/* ------------------------ Object type Menu ------------------------ */
|
|
|
|
|
|
|
|
PyTypeObject Menu_Type;
|
|
|
|
|
|
|
|
#define MenuObj_Check(x) ((x)->ob_type == &Menu_Type)
|
|
|
|
|
|
|
|
typedef struct MenuObject {
|
|
|
|
PyObject_HEAD
|
|
|
|
MenuHandle ob_itself;
|
|
|
|
} MenuObject;
|
|
|
|
|
|
|
|
PyObject *MenuObj_New(itself)
|
1995-03-10 10:42:57 -04:00
|
|
|
MenuHandle itself;
|
1995-01-30 07:53:55 -04:00
|
|
|
{
|
|
|
|
MenuObject *it;
|
|
|
|
it = PyObject_NEW(MenuObject, &Menu_Type);
|
|
|
|
if (it == NULL) return NULL;
|
|
|
|
it->ob_itself = itself;
|
|
|
|
return (PyObject *)it;
|
|
|
|
}
|
|
|
|
MenuObj_Convert(v, p_itself)
|
|
|
|
PyObject *v;
|
|
|
|
MenuHandle *p_itself;
|
|
|
|
{
|
|
|
|
if (!MenuObj_Check(v))
|
|
|
|
{
|
|
|
|
PyErr_SetString(PyExc_TypeError, "Menu required");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
*p_itself = ((MenuObject *)v)->ob_itself;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void MenuObj_dealloc(self)
|
|
|
|
MenuObject *self;
|
|
|
|
{
|
|
|
|
/* Cleanup of self->ob_itself goes here */
|
|
|
|
PyMem_DEL(self);
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *MenuObj_DisposeMenu(_self, _args)
|
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
if (!PyArg_ParseTuple(_args, ""))
|
|
|
|
return NULL;
|
|
|
|
DisposeMenu(_self->ob_itself);
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1998-04-21 12:23:55 -03:00
|
|
|
static PyObject *MenuObj_MacAppendMenu(_self, _args)
|
1995-01-30 07:53:55 -04:00
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
Str255 data;
|
|
|
|
if (!PyArg_ParseTuple(_args, "O&",
|
|
|
|
PyMac_GetStr255, data))
|
|
|
|
return NULL;
|
1998-04-21 12:23:55 -03:00
|
|
|
MacAppendMenu(_self->ob_itself,
|
|
|
|
data);
|
1995-01-30 07:53:55 -04:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *MenuObj_InsertResMenu(_self, _args)
|
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
ResType theType;
|
|
|
|
short afterItem;
|
|
|
|
if (!PyArg_ParseTuple(_args, "O&h",
|
|
|
|
PyMac_GetOSType, &theType,
|
|
|
|
&afterItem))
|
|
|
|
return NULL;
|
|
|
|
InsertResMenu(_self->ob_itself,
|
|
|
|
theType,
|
|
|
|
afterItem);
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1998-04-21 12:23:55 -03:00
|
|
|
static PyObject *MenuObj_MacInsertMenu(_self, _args)
|
1995-01-30 07:53:55 -04:00
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
short beforeID;
|
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
|
|
|
&beforeID))
|
|
|
|
return NULL;
|
1998-04-21 12:23:55 -03:00
|
|
|
MacInsertMenu(_self->ob_itself,
|
|
|
|
beforeID);
|
1995-01-30 07:53:55 -04:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1998-02-20 12:02:09 -04:00
|
|
|
static PyObject *MenuObj_AppendResMenu(_self, _args)
|
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
ResType theType;
|
|
|
|
if (!PyArg_ParseTuple(_args, "O&",
|
|
|
|
PyMac_GetOSType, &theType))
|
|
|
|
return NULL;
|
|
|
|
AppendResMenu(_self->ob_itself,
|
|
|
|
theType);
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1998-04-21 12:23:55 -03:00
|
|
|
static PyObject *MenuObj_MacInsertMenuItem(_self, _args)
|
1995-01-30 07:53:55 -04:00
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
Str255 itemString;
|
|
|
|
short afterItem;
|
|
|
|
if (!PyArg_ParseTuple(_args, "O&h",
|
|
|
|
PyMac_GetStr255, itemString,
|
|
|
|
&afterItem))
|
|
|
|
return NULL;
|
1998-04-21 12:23:55 -03:00
|
|
|
MacInsertMenuItem(_self->ob_itself,
|
|
|
|
itemString,
|
|
|
|
afterItem);
|
1995-01-30 07:53:55 -04:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1995-06-06 10:08:40 -03:00
|
|
|
static PyObject *MenuObj_DeleteMenuItem(_self, _args)
|
1995-01-30 07:53:55 -04:00
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
short item;
|
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
|
|
|
&item))
|
|
|
|
return NULL;
|
1995-06-06 10:08:40 -03:00
|
|
|
DeleteMenuItem(_self->ob_itself,
|
|
|
|
item);
|
1995-01-30 07:53:55 -04:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1995-06-06 10:08:40 -03:00
|
|
|
static PyObject *MenuObj_SetMenuItemText(_self, _args)
|
1995-01-30 07:53:55 -04:00
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
short item;
|
|
|
|
Str255 itemString;
|
|
|
|
if (!PyArg_ParseTuple(_args, "hO&",
|
|
|
|
&item,
|
|
|
|
PyMac_GetStr255, itemString))
|
|
|
|
return NULL;
|
1995-06-06 10:08:40 -03:00
|
|
|
SetMenuItemText(_self->ob_itself,
|
|
|
|
item,
|
|
|
|
itemString);
|
1995-01-30 07:53:55 -04:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1995-06-06 10:08:40 -03:00
|
|
|
static PyObject *MenuObj_GetMenuItemText(_self, _args)
|
1995-01-30 07:53:55 -04:00
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
short item;
|
|
|
|
Str255 itemString;
|
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
|
|
|
&item))
|
|
|
|
return NULL;
|
1995-06-06 10:08:40 -03:00
|
|
|
GetMenuItemText(_self->ob_itself,
|
|
|
|
item,
|
|
|
|
itemString);
|
1995-01-30 07:53:55 -04:00
|
|
|
_res = Py_BuildValue("O&",
|
|
|
|
PyMac_BuildStr255, itemString);
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1998-02-20 12:02:09 -04:00
|
|
|
static PyObject *MenuObj_SetItemMark(_self, _args)
|
1995-01-30 07:53:55 -04:00
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
short item;
|
1998-02-20 12:02:09 -04:00
|
|
|
CharParameter markChar;
|
|
|
|
if (!PyArg_ParseTuple(_args, "hh",
|
|
|
|
&item,
|
|
|
|
&markChar))
|
1995-01-30 07:53:55 -04:00
|
|
|
return NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
SetItemMark(_self->ob_itself,
|
|
|
|
item,
|
|
|
|
markChar);
|
1995-01-30 07:53:55 -04:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1998-02-20 12:02:09 -04:00
|
|
|
static PyObject *MenuObj_GetItemMark(_self, _args)
|
1995-01-30 07:53:55 -04:00
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
short item;
|
1998-02-20 12:02:09 -04:00
|
|
|
CharParameter markChar;
|
1995-01-30 07:53:55 -04:00
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
|
|
|
&item))
|
|
|
|
return NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
GetItemMark(_self->ob_itself,
|
|
|
|
item,
|
|
|
|
&markChar);
|
|
|
|
_res = Py_BuildValue("h",
|
|
|
|
markChar);
|
1995-01-30 07:53:55 -04:00
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1998-02-20 12:02:09 -04:00
|
|
|
static PyObject *MenuObj_SetItemCmd(_self, _args)
|
1995-01-30 07:53:55 -04:00
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
short item;
|
1998-02-20 12:02:09 -04:00
|
|
|
CharParameter cmdChar;
|
1995-01-30 07:53:55 -04:00
|
|
|
if (!PyArg_ParseTuple(_args, "hh",
|
|
|
|
&item,
|
1998-02-20 12:02:09 -04:00
|
|
|
&cmdChar))
|
1995-01-30 07:53:55 -04:00
|
|
|
return NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
SetItemCmd(_self->ob_itself,
|
|
|
|
item,
|
|
|
|
cmdChar);
|
1995-01-30 07:53:55 -04:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1998-02-20 12:02:09 -04:00
|
|
|
static PyObject *MenuObj_GetItemCmd(_self, _args)
|
1995-01-30 07:53:55 -04:00
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
short item;
|
1998-02-20 12:02:09 -04:00
|
|
|
CharParameter cmdChar;
|
1995-01-30 07:53:55 -04:00
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
|
|
|
&item))
|
|
|
|
return NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
GetItemCmd(_self->ob_itself,
|
|
|
|
item,
|
|
|
|
&cmdChar);
|
1995-01-30 07:53:55 -04:00
|
|
|
_res = Py_BuildValue("h",
|
1998-02-20 12:02:09 -04:00
|
|
|
cmdChar);
|
1995-01-30 07:53:55 -04:00
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *MenuObj_SetItemIcon(_self, _args)
|
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
short item;
|
|
|
|
short iconIndex;
|
|
|
|
if (!PyArg_ParseTuple(_args, "hh",
|
|
|
|
&item,
|
|
|
|
&iconIndex))
|
|
|
|
return NULL;
|
|
|
|
SetItemIcon(_self->ob_itself,
|
|
|
|
item,
|
|
|
|
iconIndex);
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *MenuObj_GetItemIcon(_self, _args)
|
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
short item;
|
|
|
|
short iconIndex;
|
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
|
|
|
&item))
|
|
|
|
return NULL;
|
|
|
|
GetItemIcon(_self->ob_itself,
|
|
|
|
item,
|
|
|
|
&iconIndex);
|
|
|
|
_res = Py_BuildValue("h",
|
|
|
|
iconIndex);
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *MenuObj_SetItemStyle(_self, _args)
|
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
short item;
|
1998-02-25 11:45:21 -04:00
|
|
|
StyleParameter chStyle;
|
1995-01-30 07:53:55 -04:00
|
|
|
if (!PyArg_ParseTuple(_args, "hh",
|
|
|
|
&item,
|
|
|
|
&chStyle))
|
|
|
|
return NULL;
|
|
|
|
SetItemStyle(_self->ob_itself,
|
|
|
|
item,
|
|
|
|
chStyle);
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *MenuObj_GetItemStyle(_self, _args)
|
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
short item;
|
1995-06-09 17:56:31 -03:00
|
|
|
Style chStyle;
|
1995-01-30 07:53:55 -04:00
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
|
|
|
&item))
|
|
|
|
return NULL;
|
|
|
|
GetItemStyle(_self->ob_itself,
|
|
|
|
item,
|
|
|
|
&chStyle);
|
|
|
|
_res = Py_BuildValue("b",
|
|
|
|
chStyle);
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *MenuObj_CalcMenuSize(_self, _args)
|
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
if (!PyArg_ParseTuple(_args, ""))
|
|
|
|
return NULL;
|
|
|
|
CalcMenuSize(_self->ob_itself);
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1998-02-20 12:02:09 -04:00
|
|
|
static PyObject *MenuObj_DisableItem(_self, _args)
|
1995-01-30 07:53:55 -04:00
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
short item;
|
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
|
|
|
&item))
|
|
|
|
return NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
DisableItem(_self->ob_itself,
|
|
|
|
item);
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
1995-01-30 07:53:55 -04:00
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1998-02-20 12:02:09 -04:00
|
|
|
static PyObject *MenuObj_EnableItem(_self, _args)
|
1995-01-30 07:53:55 -04:00
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
short item;
|
1998-02-20 12:02:09 -04:00
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
|
|
|
&item))
|
1995-01-30 07:53:55 -04:00
|
|
|
return NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
EnableItem(_self->ob_itself,
|
|
|
|
item);
|
1995-01-30 07:53:55 -04:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *MenuObj_PopUpMenuSelect(_self, _args)
|
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
long _rv;
|
|
|
|
short top;
|
|
|
|
short left;
|
|
|
|
short popUpItem;
|
|
|
|
if (!PyArg_ParseTuple(_args, "hhh",
|
|
|
|
&top,
|
|
|
|
&left,
|
|
|
|
&popUpItem))
|
|
|
|
return NULL;
|
|
|
|
_rv = PopUpMenuSelect(_self->ob_itself,
|
|
|
|
top,
|
|
|
|
left,
|
|
|
|
popUpItem);
|
|
|
|
_res = Py_BuildValue("l",
|
|
|
|
_rv);
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1998-02-20 12:02:09 -04:00
|
|
|
static PyObject *MenuObj_CheckItem(_self, _args)
|
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
short item;
|
|
|
|
Boolean checked;
|
|
|
|
if (!PyArg_ParseTuple(_args, "hb",
|
|
|
|
&item,
|
|
|
|
&checked))
|
|
|
|
return NULL;
|
|
|
|
CheckItem(_self->ob_itself,
|
|
|
|
item,
|
|
|
|
checked);
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *MenuObj_CountMItems(_self, _args)
|
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
short _rv;
|
|
|
|
if (!PyArg_ParseTuple(_args, ""))
|
|
|
|
return NULL;
|
|
|
|
_rv = CountMItems(_self->ob_itself);
|
|
|
|
_res = Py_BuildValue("h",
|
|
|
|
_rv);
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1995-06-06 10:08:40 -03:00
|
|
|
static PyObject *MenuObj_InsertFontResMenu(_self, _args)
|
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
short afterItem;
|
|
|
|
short scriptFilter;
|
|
|
|
if (!PyArg_ParseTuple(_args, "hh",
|
|
|
|
&afterItem,
|
|
|
|
&scriptFilter))
|
|
|
|
return NULL;
|
|
|
|
InsertFontResMenu(_self->ob_itself,
|
|
|
|
afterItem,
|
|
|
|
scriptFilter);
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *MenuObj_InsertIntlResMenu(_self, _args)
|
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
ResType theType;
|
|
|
|
short afterItem;
|
|
|
|
short scriptFilter;
|
|
|
|
if (!PyArg_ParseTuple(_args, "O&hh",
|
|
|
|
PyMac_GetOSType, &theType,
|
|
|
|
&afterItem,
|
|
|
|
&scriptFilter))
|
|
|
|
return NULL;
|
|
|
|
InsertIntlResMenu(_self->ob_itself,
|
|
|
|
theType,
|
|
|
|
afterItem,
|
|
|
|
scriptFilter);
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1998-02-20 12:02:09 -04:00
|
|
|
static PyObject *MenuObj_SetMenuItemCommandID(_self, _args)
|
1995-06-18 17:17:27 -03:00
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
OSErr _err;
|
|
|
|
SInt16 inItem;
|
|
|
|
UInt32 inCommandID;
|
|
|
|
if (!PyArg_ParseTuple(_args, "hl",
|
|
|
|
&inItem,
|
|
|
|
&inCommandID))
|
|
|
|
return NULL;
|
|
|
|
_err = SetMenuItemCommandID(_self->ob_itself,
|
|
|
|
inItem,
|
|
|
|
inCommandID);
|
|
|
|
if (_err != noErr) return PyMac_Error(_err);
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
1995-06-18 17:17:27 -03:00
|
|
|
}
|
|
|
|
|
1998-02-20 12:02:09 -04:00
|
|
|
static PyObject *MenuObj_GetMenuItemCommandID(_self, _args)
|
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
OSErr _err;
|
|
|
|
SInt16 inItem;
|
|
|
|
UInt32 outCommandID;
|
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
|
|
|
&inItem))
|
|
|
|
return NULL;
|
|
|
|
_err = GetMenuItemCommandID(_self->ob_itself,
|
|
|
|
inItem,
|
|
|
|
&outCommandID);
|
|
|
|
if (_err != noErr) return PyMac_Error(_err);
|
|
|
|
_res = Py_BuildValue("l",
|
|
|
|
outCommandID);
|
|
|
|
return _res;
|
|
|
|
}
|
1995-01-30 07:53:55 -04:00
|
|
|
|
1998-02-20 12:02:09 -04:00
|
|
|
static PyObject *MenuObj_SetMenuItemModifiers(_self, _args)
|
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
1995-01-30 07:53:55 -04:00
|
|
|
{
|
1998-02-20 12:02:09 -04:00
|
|
|
PyObject *_res = NULL;
|
|
|
|
OSErr _err;
|
|
|
|
SInt16 inItem;
|
|
|
|
UInt8 inModifiers;
|
|
|
|
if (!PyArg_ParseTuple(_args, "hb",
|
|
|
|
&inItem,
|
|
|
|
&inModifiers))
|
|
|
|
return NULL;
|
|
|
|
_err = SetMenuItemModifiers(_self->ob_itself,
|
|
|
|
inItem,
|
|
|
|
inModifiers);
|
|
|
|
if (_err != noErr) return PyMac_Error(_err);
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
1995-01-30 07:53:55 -04:00
|
|
|
}
|
|
|
|
|
1998-02-20 12:02:09 -04:00
|
|
|
static PyObject *MenuObj_GetMenuItemModifiers(_self, _args)
|
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
OSErr _err;
|
|
|
|
SInt16 inItem;
|
|
|
|
UInt8 outModifiers;
|
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
|
|
|
&inItem))
|
|
|
|
return NULL;
|
|
|
|
_err = GetMenuItemModifiers(_self->ob_itself,
|
|
|
|
inItem,
|
|
|
|
&outModifiers);
|
|
|
|
if (_err != noErr) return PyMac_Error(_err);
|
|
|
|
_res = Py_BuildValue("b",
|
|
|
|
outModifiers);
|
|
|
|
return _res;
|
|
|
|
}
|
1995-01-30 07:53:55 -04:00
|
|
|
|
1998-02-20 12:02:09 -04:00
|
|
|
static PyObject *MenuObj_SetMenuItemIconHandle(_self, _args)
|
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
OSErr _err;
|
|
|
|
SInt16 inItem;
|
|
|
|
UInt8 inIconType;
|
|
|
|
Handle inIconHandle;
|
|
|
|
if (!PyArg_ParseTuple(_args, "hbO&",
|
|
|
|
&inItem,
|
|
|
|
&inIconType,
|
|
|
|
ResObj_Convert, &inIconHandle))
|
|
|
|
return NULL;
|
|
|
|
_err = SetMenuItemIconHandle(_self->ob_itself,
|
|
|
|
inItem,
|
|
|
|
inIconType,
|
|
|
|
inIconHandle);
|
|
|
|
if (_err != noErr) return PyMac_Error(_err);
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
1995-01-30 07:53:55 -04:00
|
|
|
|
1998-02-20 12:02:09 -04:00
|
|
|
static PyObject *MenuObj_GetMenuItemIconHandle(_self, _args)
|
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
OSErr _err;
|
|
|
|
SInt16 inItem;
|
|
|
|
UInt8 outIconType;
|
|
|
|
Handle outIconHandle;
|
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
|
|
|
&inItem))
|
|
|
|
return NULL;
|
|
|
|
_err = GetMenuItemIconHandle(_self->ob_itself,
|
|
|
|
inItem,
|
|
|
|
&outIconType,
|
|
|
|
&outIconHandle);
|
|
|
|
if (_err != noErr) return PyMac_Error(_err);
|
|
|
|
_res = Py_BuildValue("bO&",
|
|
|
|
outIconType,
|
|
|
|
ResObj_New, outIconHandle);
|
|
|
|
return _res;
|
|
|
|
}
|
1995-01-30 07:53:55 -04:00
|
|
|
|
1998-02-20 12:02:09 -04:00
|
|
|
static PyObject *MenuObj_SetMenuItemTextEncoding(_self, _args)
|
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
OSErr _err;
|
|
|
|
SInt16 inItem;
|
|
|
|
TextEncoding inScriptID;
|
|
|
|
if (!PyArg_ParseTuple(_args, "hl",
|
|
|
|
&inItem,
|
|
|
|
&inScriptID))
|
|
|
|
return NULL;
|
|
|
|
_err = SetMenuItemTextEncoding(_self->ob_itself,
|
|
|
|
inItem,
|
|
|
|
inScriptID);
|
|
|
|
if (_err != noErr) return PyMac_Error(_err);
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
1995-01-30 07:53:55 -04:00
|
|
|
|
1998-02-20 12:02:09 -04:00
|
|
|
static PyObject *MenuObj_GetMenuItemTextEncoding(_self, _args)
|
|
|
|
MenuObject *_self;
|
1995-06-06 10:08:40 -03:00
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
OSErr _err;
|
|
|
|
SInt16 inItem;
|
|
|
|
TextEncoding outScriptID;
|
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
|
|
|
&inItem))
|
1995-06-06 10:08:40 -03:00
|
|
|
return NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
_err = GetMenuItemTextEncoding(_self->ob_itself,
|
|
|
|
inItem,
|
|
|
|
&outScriptID);
|
|
|
|
if (_err != noErr) return PyMac_Error(_err);
|
|
|
|
_res = Py_BuildValue("l",
|
|
|
|
outScriptID);
|
1995-06-06 10:08:40 -03:00
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1998-02-20 12:02:09 -04:00
|
|
|
static PyObject *MenuObj_SetMenuItemHierarchicalID(_self, _args)
|
|
|
|
MenuObject *_self;
|
1995-01-30 07:53:55 -04:00
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
OSErr _err;
|
|
|
|
SInt16 inItem;
|
|
|
|
SInt16 inHierID;
|
|
|
|
if (!PyArg_ParseTuple(_args, "hh",
|
|
|
|
&inItem,
|
|
|
|
&inHierID))
|
1995-01-30 07:53:55 -04:00
|
|
|
return NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
_err = SetMenuItemHierarchicalID(_self->ob_itself,
|
|
|
|
inItem,
|
|
|
|
inHierID);
|
|
|
|
if (_err != noErr) return PyMac_Error(_err);
|
1995-01-30 07:53:55 -04:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1998-02-20 12:02:09 -04:00
|
|
|
static PyObject *MenuObj_GetMenuItemHierarchicalID(_self, _args)
|
|
|
|
MenuObject *_self;
|
1995-01-30 07:53:55 -04:00
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
OSErr _err;
|
|
|
|
SInt16 inItem;
|
|
|
|
SInt16 outHierID;
|
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
|
|
|
&inItem))
|
1995-01-30 07:53:55 -04:00
|
|
|
return NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
_err = GetMenuItemHierarchicalID(_self->ob_itself,
|
|
|
|
inItem,
|
|
|
|
&outHierID);
|
|
|
|
if (_err != noErr) return PyMac_Error(_err);
|
|
|
|
_res = Py_BuildValue("h",
|
|
|
|
outHierID);
|
1995-01-30 07:53:55 -04:00
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1998-02-20 12:02:09 -04:00
|
|
|
static PyObject *MenuObj_SetMenuItemFontID(_self, _args)
|
|
|
|
MenuObject *_self;
|
1995-01-30 07:53:55 -04:00
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
OSErr _err;
|
|
|
|
SInt16 inItem;
|
|
|
|
SInt16 inFontID;
|
|
|
|
if (!PyArg_ParseTuple(_args, "hh",
|
|
|
|
&inItem,
|
|
|
|
&inFontID))
|
|
|
|
return NULL;
|
|
|
|
_err = SetMenuItemFontID(_self->ob_itself,
|
|
|
|
inItem,
|
|
|
|
inFontID);
|
|
|
|
if (_err != noErr) return PyMac_Error(_err);
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *MenuObj_GetMenuItemFontID(_self, _args)
|
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
OSErr _err;
|
|
|
|
SInt16 inItem;
|
|
|
|
SInt16 outFontID;
|
1995-01-30 07:53:55 -04:00
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
1998-02-20 12:02:09 -04:00
|
|
|
&inItem))
|
1995-01-30 07:53:55 -04:00
|
|
|
return NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
_err = GetMenuItemFontID(_self->ob_itself,
|
|
|
|
inItem,
|
|
|
|
&outFontID);
|
|
|
|
if (_err != noErr) return PyMac_Error(_err);
|
|
|
|
_res = Py_BuildValue("h",
|
|
|
|
outFontID);
|
1995-01-30 07:53:55 -04:00
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1998-02-20 12:02:09 -04:00
|
|
|
static PyObject *MenuObj_SetMenuItemRefCon(_self, _args)
|
|
|
|
MenuObject *_self;
|
1995-01-30 07:53:55 -04:00
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
OSErr _err;
|
|
|
|
SInt16 inItem;
|
|
|
|
UInt32 inRefCon;
|
|
|
|
if (!PyArg_ParseTuple(_args, "hl",
|
|
|
|
&inItem,
|
|
|
|
&inRefCon))
|
1995-01-30 07:53:55 -04:00
|
|
|
return NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
_err = SetMenuItemRefCon(_self->ob_itself,
|
|
|
|
inItem,
|
|
|
|
inRefCon);
|
|
|
|
if (_err != noErr) return PyMac_Error(_err);
|
1995-01-30 07:53:55 -04:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1998-02-20 12:02:09 -04:00
|
|
|
static PyObject *MenuObj_GetMenuItemRefCon(_self, _args)
|
|
|
|
MenuObject *_self;
|
1995-01-30 07:53:55 -04:00
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
OSErr _err;
|
|
|
|
SInt16 inItem;
|
|
|
|
UInt32 outRefCon;
|
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
|
|
|
&inItem))
|
1995-01-30 07:53:55 -04:00
|
|
|
return NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
_err = GetMenuItemRefCon(_self->ob_itself,
|
|
|
|
inItem,
|
|
|
|
&outRefCon);
|
|
|
|
if (_err != noErr) return PyMac_Error(_err);
|
|
|
|
_res = Py_BuildValue("l",
|
|
|
|
outRefCon);
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *MenuObj_SetMenuItemRefCon2(_self, _args)
|
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
OSErr _err;
|
|
|
|
SInt16 inItem;
|
|
|
|
UInt32 inRefCon2;
|
|
|
|
if (!PyArg_ParseTuple(_args, "hl",
|
|
|
|
&inItem,
|
|
|
|
&inRefCon2))
|
|
|
|
return NULL;
|
|
|
|
_err = SetMenuItemRefCon2(_self->ob_itself,
|
|
|
|
inItem,
|
|
|
|
inRefCon2);
|
|
|
|
if (_err != noErr) return PyMac_Error(_err);
|
1995-01-30 07:53:55 -04:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1998-02-20 12:02:09 -04:00
|
|
|
static PyObject *MenuObj_GetMenuItemRefCon2(_self, _args)
|
|
|
|
MenuObject *_self;
|
1995-01-30 07:53:55 -04:00
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
OSErr _err;
|
|
|
|
SInt16 inItem;
|
|
|
|
UInt32 outRefCon2;
|
1995-01-30 07:53:55 -04:00
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
1998-02-20 12:02:09 -04:00
|
|
|
&inItem))
|
1995-01-30 07:53:55 -04:00
|
|
|
return NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
_err = GetMenuItemRefCon2(_self->ob_itself,
|
|
|
|
inItem,
|
|
|
|
&outRefCon2);
|
|
|
|
if (_err != noErr) return PyMac_Error(_err);
|
|
|
|
_res = Py_BuildValue("l",
|
|
|
|
outRefCon2);
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *MenuObj_SetMenuItemKeyGlyph(_self, _args)
|
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
OSErr _err;
|
|
|
|
SInt16 inItem;
|
|
|
|
SInt16 inGlyph;
|
|
|
|
if (!PyArg_ParseTuple(_args, "hh",
|
|
|
|
&inItem,
|
|
|
|
&inGlyph))
|
|
|
|
return NULL;
|
|
|
|
_err = SetMenuItemKeyGlyph(_self->ob_itself,
|
|
|
|
inItem,
|
|
|
|
inGlyph);
|
|
|
|
if (_err != noErr) return PyMac_Error(_err);
|
1995-01-30 07:53:55 -04:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1998-02-20 12:02:09 -04:00
|
|
|
static PyObject *MenuObj_GetMenuItemKeyGlyph(_self, _args)
|
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
OSErr _err;
|
|
|
|
SInt16 inItem;
|
|
|
|
SInt16 outGlyph;
|
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
|
|
|
&inItem))
|
|
|
|
return NULL;
|
|
|
|
_err = GetMenuItemKeyGlyph(_self->ob_itself,
|
|
|
|
inItem,
|
|
|
|
&outGlyph);
|
|
|
|
if (_err != noErr) return PyMac_Error(_err);
|
|
|
|
_res = Py_BuildValue("h",
|
|
|
|
outGlyph);
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *MenuObj_as_Resource(_self, _args)
|
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
|
|
|
|
return ResObj_New((Handle)_self->ob_itself);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
1998-04-24 07:28:20 -03:00
|
|
|
static PyObject *MenuObj_AppendMenu(_self, _args)
|
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
Str255 data;
|
|
|
|
if (!PyArg_ParseTuple(_args, "O&",
|
|
|
|
PyMac_GetStr255, data))
|
|
|
|
return NULL;
|
|
|
|
AppendMenu(_self->ob_itself,
|
|
|
|
data);
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *MenuObj_InsertMenu(_self, _args)
|
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
short beforeID;
|
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
|
|
|
&beforeID))
|
|
|
|
return NULL;
|
|
|
|
InsertMenu(_self->ob_itself,
|
|
|
|
beforeID);
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *MenuObj_InsertMenuItem(_self, _args)
|
|
|
|
MenuObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
Str255 itemString;
|
|
|
|
short afterItem;
|
|
|
|
if (!PyArg_ParseTuple(_args, "O&h",
|
|
|
|
PyMac_GetStr255, itemString,
|
|
|
|
&afterItem))
|
|
|
|
return NULL;
|
|
|
|
InsertMenuItem(_self->ob_itself,
|
|
|
|
itemString,
|
|
|
|
afterItem);
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1998-02-20 12:02:09 -04:00
|
|
|
static PyMethodDef MenuObj_methods[] = {
|
|
|
|
{"DisposeMenu", (PyCFunction)MenuObj_DisposeMenu, 1,
|
|
|
|
"() -> None"},
|
1998-04-21 12:23:55 -03:00
|
|
|
{"MacAppendMenu", (PyCFunction)MenuObj_MacAppendMenu, 1,
|
1998-02-20 12:02:09 -04:00
|
|
|
"(Str255 data) -> None"},
|
|
|
|
{"InsertResMenu", (PyCFunction)MenuObj_InsertResMenu, 1,
|
|
|
|
"(ResType theType, short afterItem) -> None"},
|
1998-04-21 12:23:55 -03:00
|
|
|
{"MacInsertMenu", (PyCFunction)MenuObj_MacInsertMenu, 1,
|
1998-02-20 12:02:09 -04:00
|
|
|
"(short beforeID) -> None"},
|
|
|
|
{"AppendResMenu", (PyCFunction)MenuObj_AppendResMenu, 1,
|
|
|
|
"(ResType theType) -> None"},
|
1998-04-21 12:23:55 -03:00
|
|
|
{"MacInsertMenuItem", (PyCFunction)MenuObj_MacInsertMenuItem, 1,
|
1998-02-20 12:02:09 -04:00
|
|
|
"(Str255 itemString, short afterItem) -> None"},
|
|
|
|
{"DeleteMenuItem", (PyCFunction)MenuObj_DeleteMenuItem, 1,
|
|
|
|
"(short item) -> None"},
|
|
|
|
{"SetMenuItemText", (PyCFunction)MenuObj_SetMenuItemText, 1,
|
|
|
|
"(short item, Str255 itemString) -> None"},
|
|
|
|
{"GetMenuItemText", (PyCFunction)MenuObj_GetMenuItemText, 1,
|
|
|
|
"(short item) -> (Str255 itemString)"},
|
|
|
|
{"SetItemMark", (PyCFunction)MenuObj_SetItemMark, 1,
|
|
|
|
"(short item, CharParameter markChar) -> None"},
|
|
|
|
{"GetItemMark", (PyCFunction)MenuObj_GetItemMark, 1,
|
|
|
|
"(short item) -> (CharParameter markChar)"},
|
|
|
|
{"SetItemCmd", (PyCFunction)MenuObj_SetItemCmd, 1,
|
|
|
|
"(short item, CharParameter cmdChar) -> None"},
|
|
|
|
{"GetItemCmd", (PyCFunction)MenuObj_GetItemCmd, 1,
|
|
|
|
"(short item) -> (CharParameter cmdChar)"},
|
|
|
|
{"SetItemIcon", (PyCFunction)MenuObj_SetItemIcon, 1,
|
|
|
|
"(short item, short iconIndex) -> None"},
|
|
|
|
{"GetItemIcon", (PyCFunction)MenuObj_GetItemIcon, 1,
|
|
|
|
"(short item) -> (short iconIndex)"},
|
|
|
|
{"SetItemStyle", (PyCFunction)MenuObj_SetItemStyle, 1,
|
1998-02-25 11:45:21 -04:00
|
|
|
"(short item, StyleParameter chStyle) -> None"},
|
1998-02-20 12:02:09 -04:00
|
|
|
{"GetItemStyle", (PyCFunction)MenuObj_GetItemStyle, 1,
|
|
|
|
"(short item) -> (Style chStyle)"},
|
|
|
|
{"CalcMenuSize", (PyCFunction)MenuObj_CalcMenuSize, 1,
|
|
|
|
"() -> None"},
|
|
|
|
{"DisableItem", (PyCFunction)MenuObj_DisableItem, 1,
|
|
|
|
"(short item) -> None"},
|
|
|
|
{"EnableItem", (PyCFunction)MenuObj_EnableItem, 1,
|
|
|
|
"(short item) -> None"},
|
|
|
|
{"PopUpMenuSelect", (PyCFunction)MenuObj_PopUpMenuSelect, 1,
|
|
|
|
"(short top, short left, short popUpItem) -> (long _rv)"},
|
|
|
|
{"CheckItem", (PyCFunction)MenuObj_CheckItem, 1,
|
|
|
|
"(short item, Boolean checked) -> None"},
|
|
|
|
{"CountMItems", (PyCFunction)MenuObj_CountMItems, 1,
|
|
|
|
"() -> (short _rv)"},
|
|
|
|
{"InsertFontResMenu", (PyCFunction)MenuObj_InsertFontResMenu, 1,
|
|
|
|
"(short afterItem, short scriptFilter) -> None"},
|
|
|
|
{"InsertIntlResMenu", (PyCFunction)MenuObj_InsertIntlResMenu, 1,
|
|
|
|
"(ResType theType, short afterItem, short scriptFilter) -> None"},
|
|
|
|
{"SetMenuItemCommandID", (PyCFunction)MenuObj_SetMenuItemCommandID, 1,
|
|
|
|
"(SInt16 inItem, UInt32 inCommandID) -> None"},
|
|
|
|
{"GetMenuItemCommandID", (PyCFunction)MenuObj_GetMenuItemCommandID, 1,
|
|
|
|
"(SInt16 inItem) -> (UInt32 outCommandID)"},
|
|
|
|
{"SetMenuItemModifiers", (PyCFunction)MenuObj_SetMenuItemModifiers, 1,
|
|
|
|
"(SInt16 inItem, UInt8 inModifiers) -> None"},
|
|
|
|
{"GetMenuItemModifiers", (PyCFunction)MenuObj_GetMenuItemModifiers, 1,
|
|
|
|
"(SInt16 inItem) -> (UInt8 outModifiers)"},
|
|
|
|
{"SetMenuItemIconHandle", (PyCFunction)MenuObj_SetMenuItemIconHandle, 1,
|
|
|
|
"(SInt16 inItem, UInt8 inIconType, Handle inIconHandle) -> None"},
|
|
|
|
{"GetMenuItemIconHandle", (PyCFunction)MenuObj_GetMenuItemIconHandle, 1,
|
|
|
|
"(SInt16 inItem) -> (UInt8 outIconType, Handle outIconHandle)"},
|
|
|
|
{"SetMenuItemTextEncoding", (PyCFunction)MenuObj_SetMenuItemTextEncoding, 1,
|
|
|
|
"(SInt16 inItem, TextEncoding inScriptID) -> None"},
|
|
|
|
{"GetMenuItemTextEncoding", (PyCFunction)MenuObj_GetMenuItemTextEncoding, 1,
|
|
|
|
"(SInt16 inItem) -> (TextEncoding outScriptID)"},
|
|
|
|
{"SetMenuItemHierarchicalID", (PyCFunction)MenuObj_SetMenuItemHierarchicalID, 1,
|
|
|
|
"(SInt16 inItem, SInt16 inHierID) -> None"},
|
|
|
|
{"GetMenuItemHierarchicalID", (PyCFunction)MenuObj_GetMenuItemHierarchicalID, 1,
|
|
|
|
"(SInt16 inItem) -> (SInt16 outHierID)"},
|
|
|
|
{"SetMenuItemFontID", (PyCFunction)MenuObj_SetMenuItemFontID, 1,
|
|
|
|
"(SInt16 inItem, SInt16 inFontID) -> None"},
|
|
|
|
{"GetMenuItemFontID", (PyCFunction)MenuObj_GetMenuItemFontID, 1,
|
|
|
|
"(SInt16 inItem) -> (SInt16 outFontID)"},
|
|
|
|
{"SetMenuItemRefCon", (PyCFunction)MenuObj_SetMenuItemRefCon, 1,
|
|
|
|
"(SInt16 inItem, UInt32 inRefCon) -> None"},
|
|
|
|
{"GetMenuItemRefCon", (PyCFunction)MenuObj_GetMenuItemRefCon, 1,
|
|
|
|
"(SInt16 inItem) -> (UInt32 outRefCon)"},
|
|
|
|
{"SetMenuItemRefCon2", (PyCFunction)MenuObj_SetMenuItemRefCon2, 1,
|
|
|
|
"(SInt16 inItem, UInt32 inRefCon2) -> None"},
|
|
|
|
{"GetMenuItemRefCon2", (PyCFunction)MenuObj_GetMenuItemRefCon2, 1,
|
|
|
|
"(SInt16 inItem) -> (UInt32 outRefCon2)"},
|
|
|
|
{"SetMenuItemKeyGlyph", (PyCFunction)MenuObj_SetMenuItemKeyGlyph, 1,
|
|
|
|
"(SInt16 inItem, SInt16 inGlyph) -> None"},
|
|
|
|
{"GetMenuItemKeyGlyph", (PyCFunction)MenuObj_GetMenuItemKeyGlyph, 1,
|
|
|
|
"(SInt16 inItem) -> (SInt16 outGlyph)"},
|
|
|
|
{"as_Resource", (PyCFunction)MenuObj_as_Resource, 1,
|
|
|
|
"Return this Menu as a Resource"},
|
1998-04-24 07:28:20 -03:00
|
|
|
{"AppendMenu", (PyCFunction)MenuObj_AppendMenu, 1,
|
|
|
|
"(Str255 data) -> None"},
|
|
|
|
{"InsertMenu", (PyCFunction)MenuObj_InsertMenu, 1,
|
|
|
|
"(short beforeID) -> None"},
|
|
|
|
{"InsertMenuItem", (PyCFunction)MenuObj_InsertMenuItem, 1,
|
|
|
|
"(Str255 itemString, short afterItem) -> None"},
|
1998-02-20 12:02:09 -04:00
|
|
|
{NULL, NULL, 0}
|
|
|
|
};
|
|
|
|
|
|
|
|
PyMethodChain MenuObj_chain = { MenuObj_methods, NULL };
|
|
|
|
|
|
|
|
static PyObject *MenuObj_getattr(self, name)
|
|
|
|
MenuObject *self;
|
|
|
|
char *name;
|
|
|
|
{
|
|
|
|
return Py_FindMethodInChain(&MenuObj_chain, (PyObject *)self, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define MenuObj_setattr NULL
|
|
|
|
|
|
|
|
PyTypeObject Menu_Type = {
|
|
|
|
PyObject_HEAD_INIT(&PyType_Type)
|
|
|
|
0, /*ob_size*/
|
|
|
|
"Menu", /*tp_name*/
|
|
|
|
sizeof(MenuObject), /*tp_basicsize*/
|
|
|
|
0, /*tp_itemsize*/
|
|
|
|
/* methods */
|
|
|
|
(destructor) MenuObj_dealloc, /*tp_dealloc*/
|
|
|
|
0, /*tp_print*/
|
|
|
|
(getattrfunc) MenuObj_getattr, /*tp_getattr*/
|
|
|
|
(setattrfunc) MenuObj_setattr, /*tp_setattr*/
|
|
|
|
};
|
|
|
|
|
|
|
|
/* ---------------------- End object type Menu ---------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
static PyObject *Menu_GetMBarHeight(_self, _args)
|
1995-01-30 07:53:55 -04:00
|
|
|
PyObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
short _rv;
|
1995-01-30 07:53:55 -04:00
|
|
|
if (!PyArg_ParseTuple(_args, ""))
|
|
|
|
return NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
_rv = GetMBarHeight();
|
|
|
|
_res = Py_BuildValue("h",
|
|
|
|
_rv);
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *Menu_InitMenus(_self, _args)
|
|
|
|
PyObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
if (!PyArg_ParseTuple(_args, ""))
|
|
|
|
return NULL;
|
|
|
|
InitMenus();
|
1995-01-30 07:53:55 -04:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1998-02-20 12:02:09 -04:00
|
|
|
static PyObject *Menu_NewMenu(_self, _args)
|
1995-01-30 07:53:55 -04:00
|
|
|
PyObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
MenuHandle _rv;
|
|
|
|
short menuID;
|
|
|
|
Str255 menuTitle;
|
|
|
|
if (!PyArg_ParseTuple(_args, "hO&",
|
|
|
|
&menuID,
|
|
|
|
PyMac_GetStr255, menuTitle))
|
1995-01-30 07:53:55 -04:00
|
|
|
return NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
_rv = NewMenu(menuID,
|
|
|
|
menuTitle);
|
1995-01-30 07:53:55 -04:00
|
|
|
_res = Py_BuildValue("O&",
|
1998-02-20 12:02:09 -04:00
|
|
|
MenuObj_New, _rv);
|
1995-01-30 07:53:55 -04:00
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1998-04-21 12:23:55 -03:00
|
|
|
static PyObject *Menu_MacGetMenu(_self, _args)
|
1995-01-30 07:53:55 -04:00
|
|
|
PyObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
MenuHandle _rv;
|
|
|
|
short resourceID;
|
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
|
|
|
&resourceID))
|
1995-01-30 07:53:55 -04:00
|
|
|
return NULL;
|
1998-04-21 12:23:55 -03:00
|
|
|
_rv = MacGetMenu(resourceID);
|
1995-01-30 07:53:55 -04:00
|
|
|
_res = Py_BuildValue("O&",
|
1998-02-20 12:02:09 -04:00
|
|
|
MenuObj_New, _rv);
|
1995-01-30 07:53:55 -04:00
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1998-04-21 12:23:55 -03:00
|
|
|
static PyObject *Menu_MacDeleteMenu(_self, _args)
|
1995-01-30 07:53:55 -04:00
|
|
|
PyObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
short menuID;
|
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
|
|
|
&menuID))
|
1995-01-30 07:53:55 -04:00
|
|
|
return NULL;
|
1998-04-21 12:23:55 -03:00
|
|
|
MacDeleteMenu(menuID);
|
1995-01-30 07:53:55 -04:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *Menu_MenuKey(_self, _args)
|
|
|
|
PyObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
long _rv;
|
1998-02-20 12:02:09 -04:00
|
|
|
CharParameter ch;
|
1995-01-30 07:53:55 -04:00
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
|
|
|
&ch))
|
|
|
|
return NULL;
|
|
|
|
_rv = MenuKey(ch);
|
|
|
|
_res = Py_BuildValue("l",
|
|
|
|
_rv);
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *Menu_HiliteMenu(_self, _args)
|
|
|
|
PyObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
short menuID;
|
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
|
|
|
&menuID))
|
|
|
|
return NULL;
|
|
|
|
HiliteMenu(menuID);
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1995-06-06 10:08:40 -03:00
|
|
|
static PyObject *Menu_GetMenuHandle(_self, _args)
|
1995-01-30 07:53:55 -04:00
|
|
|
PyObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
MenuHandle _rv;
|
|
|
|
short menuID;
|
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
|
|
|
&menuID))
|
|
|
|
return NULL;
|
1995-06-06 10:08:40 -03:00
|
|
|
_rv = GetMenuHandle(menuID);
|
1995-01-30 07:53:55 -04:00
|
|
|
_res = Py_BuildValue("O&",
|
|
|
|
MenuObj_New, _rv);
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *Menu_FlashMenuBar(_self, _args)
|
|
|
|
PyObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
short menuID;
|
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
|
|
|
&menuID))
|
|
|
|
return NULL;
|
|
|
|
FlashMenuBar(menuID);
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1998-02-20 12:02:09 -04:00
|
|
|
static PyObject *Menu_MenuChoice(_self, _args)
|
1995-01-30 07:53:55 -04:00
|
|
|
PyObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
long _rv;
|
|
|
|
if (!PyArg_ParseTuple(_args, ""))
|
1995-01-30 07:53:55 -04:00
|
|
|
return NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
_rv = MenuChoice();
|
|
|
|
_res = Py_BuildValue("l",
|
|
|
|
_rv);
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *Menu_DeleteMCEntries(_self, _args)
|
|
|
|
PyObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
short menuID;
|
|
|
|
short menuItem;
|
|
|
|
if (!PyArg_ParseTuple(_args, "hh",
|
|
|
|
&menuID,
|
|
|
|
&menuItem))
|
|
|
|
return NULL;
|
|
|
|
DeleteMCEntries(menuID,
|
|
|
|
menuItem);
|
1995-01-30 07:53:55 -04:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1998-04-21 12:23:55 -03:00
|
|
|
static PyObject *Menu_MacDrawMenuBar(_self, _args)
|
1995-01-30 07:53:55 -04:00
|
|
|
PyObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
if (!PyArg_ParseTuple(_args, ""))
|
1995-01-30 07:53:55 -04:00
|
|
|
return NULL;
|
1998-04-21 12:23:55 -03:00
|
|
|
MacDrawMenuBar();
|
1998-02-20 12:02:09 -04:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *Menu_InvalMenuBar(_self, _args)
|
|
|
|
PyObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
if (!PyArg_ParseTuple(_args, ""))
|
|
|
|
return NULL;
|
|
|
|
InvalMenuBar();
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
1995-01-30 07:53:55 -04:00
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *Menu_InitProcMenu(_self, _args)
|
|
|
|
PyObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
short resID;
|
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
|
|
|
&resID))
|
|
|
|
return NULL;
|
|
|
|
InitProcMenu(resID);
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1998-02-20 12:02:09 -04:00
|
|
|
static PyObject *Menu_GetMenuBar(_self, _args)
|
1995-01-30 07:53:55 -04:00
|
|
|
PyObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
Handle _rv;
|
1995-01-30 07:53:55 -04:00
|
|
|
if (!PyArg_ParseTuple(_args, ""))
|
|
|
|
return NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
_rv = GetMenuBar();
|
|
|
|
_res = Py_BuildValue("O&",
|
|
|
|
ResObj_New, _rv);
|
1995-01-30 07:53:55 -04:00
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1998-02-20 12:02:09 -04:00
|
|
|
static PyObject *Menu_SetMenuBar(_self, _args)
|
1995-01-30 07:53:55 -04:00
|
|
|
PyObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
Handle menuList;
|
|
|
|
if (!PyArg_ParseTuple(_args, "O&",
|
|
|
|
ResObj_Convert, &menuList))
|
1995-01-30 07:53:55 -04:00
|
|
|
return NULL;
|
1998-02-20 12:02:09 -04:00
|
|
|
SetMenuBar(menuList);
|
1995-06-06 10:08:40 -03:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *Menu_SystemEdit(_self, _args)
|
|
|
|
PyObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
Boolean _rv;
|
|
|
|
short editCmd;
|
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
|
|
|
&editCmd))
|
|
|
|
return NULL;
|
|
|
|
_rv = SystemEdit(editCmd);
|
|
|
|
_res = Py_BuildValue("b",
|
|
|
|
_rv);
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *Menu_SystemMenu(_self, _args)
|
|
|
|
PyObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
long menuResult;
|
|
|
|
if (!PyArg_ParseTuple(_args, "l",
|
|
|
|
&menuResult))
|
|
|
|
return NULL;
|
|
|
|
SystemMenu(menuResult);
|
1995-01-30 07:53:55 -04:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1998-02-20 12:02:09 -04:00
|
|
|
static PyObject *Menu_GetNewMBar(_self, _args)
|
|
|
|
PyObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
Handle _rv;
|
|
|
|
short menuBarID;
|
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
|
|
|
&menuBarID))
|
|
|
|
return NULL;
|
|
|
|
_rv = GetNewMBar(menuBarID);
|
|
|
|
_res = Py_BuildValue("O&",
|
|
|
|
ResObj_New, _rv);
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *Menu_ClearMenuBar(_self, _args)
|
|
|
|
PyObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
if (!PyArg_ParseTuple(_args, ""))
|
|
|
|
return NULL;
|
|
|
|
ClearMenuBar();
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *Menu_SetMenuFlash(_self, _args)
|
|
|
|
PyObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
short count;
|
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
|
|
|
&count))
|
|
|
|
return NULL;
|
|
|
|
SetMenuFlash(count);
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *Menu_MenuSelect(_self, _args)
|
|
|
|
PyObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
long _rv;
|
|
|
|
Point startPt;
|
|
|
|
if (!PyArg_ParseTuple(_args, "O&",
|
|
|
|
PyMac_GetPoint, &startPt))
|
|
|
|
return NULL;
|
|
|
|
_rv = MenuSelect(startPt);
|
|
|
|
_res = Py_BuildValue("l",
|
|
|
|
_rv);
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *Menu_MenuEvent(_self, _args)
|
|
|
|
PyObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
UInt32 _rv;
|
|
|
|
EventRecord inEvent;
|
|
|
|
if (!PyArg_ParseTuple(_args, "O&",
|
|
|
|
PyMac_GetEventRecord, &inEvent))
|
|
|
|
return NULL;
|
|
|
|
_rv = MenuEvent(&inEvent);
|
|
|
|
_res = Py_BuildValue("l",
|
|
|
|
_rv);
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1995-03-19 18:42:51 -04:00
|
|
|
static PyObject *Menu_OpenDeskAcc(_self, _args)
|
|
|
|
PyObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
Str255 name;
|
|
|
|
if (!PyArg_ParseTuple(_args, "O&",
|
|
|
|
PyMac_GetStr255, name))
|
|
|
|
return NULL;
|
|
|
|
OpenDeskAcc(name);
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1999-02-07 10:02:03 -04:00
|
|
|
static PyObject *Menu_as_Menu(_self, _args)
|
|
|
|
PyObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
MenuHandle _rv;
|
|
|
|
Handle h;
|
|
|
|
if (!PyArg_ParseTuple(_args, "O&",
|
|
|
|
ResObj_Convert, &h))
|
|
|
|
return NULL;
|
|
|
|
_rv = as_Menu(h);
|
|
|
|
_res = Py_BuildValue("O&",
|
|
|
|
MenuObj_New, _rv);
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1998-04-24 07:28:20 -03:00
|
|
|
static PyObject *Menu_GetMenu(_self, _args)
|
|
|
|
PyObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
MenuHandle _rv;
|
|
|
|
short resourceID;
|
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
|
|
|
&resourceID))
|
|
|
|
return NULL;
|
|
|
|
_rv = GetMenu(resourceID);
|
|
|
|
_res = Py_BuildValue("O&",
|
|
|
|
MenuObj_New, _rv);
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *Menu_DeleteMenu(_self, _args)
|
|
|
|
PyObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
short menuID;
|
|
|
|
if (!PyArg_ParseTuple(_args, "h",
|
|
|
|
&menuID))
|
|
|
|
return NULL;
|
|
|
|
DeleteMenu(menuID);
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *Menu_DrawMenuBar(_self, _args)
|
|
|
|
PyObject *_self;
|
|
|
|
PyObject *_args;
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
if (!PyArg_ParseTuple(_args, ""))
|
|
|
|
return NULL;
|
|
|
|
DrawMenuBar();
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
1995-01-30 07:53:55 -04:00
|
|
|
static PyMethodDef Menu_methods[] = {
|
1995-06-06 10:08:40 -03:00
|
|
|
{"GetMBarHeight", (PyCFunction)Menu_GetMBarHeight, 1,
|
|
|
|
"() -> (short _rv)"},
|
1995-01-30 07:53:55 -04:00
|
|
|
{"InitMenus", (PyCFunction)Menu_InitMenus, 1,
|
|
|
|
"() -> None"},
|
|
|
|
{"NewMenu", (PyCFunction)Menu_NewMenu, 1,
|
|
|
|
"(short menuID, Str255 menuTitle) -> (MenuHandle _rv)"},
|
1998-04-21 12:23:55 -03:00
|
|
|
{"MacGetMenu", (PyCFunction)Menu_MacGetMenu, 1,
|
1995-01-30 07:53:55 -04:00
|
|
|
"(short resourceID) -> (MenuHandle _rv)"},
|
1998-04-21 12:23:55 -03:00
|
|
|
{"MacDeleteMenu", (PyCFunction)Menu_MacDeleteMenu, 1,
|
1995-01-30 07:53:55 -04:00
|
|
|
"(short menuID) -> None"},
|
|
|
|
{"MenuKey", (PyCFunction)Menu_MenuKey, 1,
|
1998-02-20 12:02:09 -04:00
|
|
|
"(CharParameter ch) -> (long _rv)"},
|
1995-01-30 07:53:55 -04:00
|
|
|
{"HiliteMenu", (PyCFunction)Menu_HiliteMenu, 1,
|
|
|
|
"(short menuID) -> None"},
|
1995-06-06 10:08:40 -03:00
|
|
|
{"GetMenuHandle", (PyCFunction)Menu_GetMenuHandle, 1,
|
1995-01-30 07:53:55 -04:00
|
|
|
"(short menuID) -> (MenuHandle _rv)"},
|
|
|
|
{"FlashMenuBar", (PyCFunction)Menu_FlashMenuBar, 1,
|
|
|
|
"(short menuID) -> None"},
|
|
|
|
{"MenuChoice", (PyCFunction)Menu_MenuChoice, 1,
|
|
|
|
"() -> (long _rv)"},
|
1995-06-06 10:08:40 -03:00
|
|
|
{"DeleteMCEntries", (PyCFunction)Menu_DeleteMCEntries, 1,
|
1995-01-30 07:53:55 -04:00
|
|
|
"(short menuID, short menuItem) -> None"},
|
1998-04-21 12:23:55 -03:00
|
|
|
{"MacDrawMenuBar", (PyCFunction)Menu_MacDrawMenuBar, 1,
|
1998-02-20 12:02:09 -04:00
|
|
|
"() -> None"},
|
|
|
|
{"InvalMenuBar", (PyCFunction)Menu_InvalMenuBar, 1,
|
|
|
|
"() -> None"},
|
|
|
|
{"InitProcMenu", (PyCFunction)Menu_InitProcMenu, 1,
|
|
|
|
"(short resID) -> None"},
|
|
|
|
{"GetMenuBar", (PyCFunction)Menu_GetMenuBar, 1,
|
|
|
|
"() -> (Handle _rv)"},
|
|
|
|
{"SetMenuBar", (PyCFunction)Menu_SetMenuBar, 1,
|
|
|
|
"(Handle menuList) -> None"},
|
1995-06-06 10:08:40 -03:00
|
|
|
{"SystemEdit", (PyCFunction)Menu_SystemEdit, 1,
|
|
|
|
"(short editCmd) -> (Boolean _rv)"},
|
|
|
|
{"SystemMenu", (PyCFunction)Menu_SystemMenu, 1,
|
|
|
|
"(long menuResult) -> None"},
|
1998-02-20 12:02:09 -04:00
|
|
|
{"GetNewMBar", (PyCFunction)Menu_GetNewMBar, 1,
|
|
|
|
"(short menuBarID) -> (Handle _rv)"},
|
|
|
|
{"ClearMenuBar", (PyCFunction)Menu_ClearMenuBar, 1,
|
|
|
|
"() -> None"},
|
|
|
|
{"SetMenuFlash", (PyCFunction)Menu_SetMenuFlash, 1,
|
|
|
|
"(short count) -> None"},
|
|
|
|
{"MenuSelect", (PyCFunction)Menu_MenuSelect, 1,
|
|
|
|
"(Point startPt) -> (long _rv)"},
|
|
|
|
{"MenuEvent", (PyCFunction)Menu_MenuEvent, 1,
|
|
|
|
"(EventRecord inEvent) -> (UInt32 _rv)"},
|
1995-03-19 18:42:51 -04:00
|
|
|
{"OpenDeskAcc", (PyCFunction)Menu_OpenDeskAcc, 1,
|
|
|
|
"(Str255 name) -> None"},
|
1999-02-07 10:02:03 -04:00
|
|
|
{"as_Menu", (PyCFunction)Menu_as_Menu, 1,
|
|
|
|
"(Handle h) -> (MenuHandle _rv)"},
|
1998-04-24 07:28:20 -03:00
|
|
|
{"GetMenu", (PyCFunction)Menu_GetMenu, 1,
|
|
|
|
"(short resourceID) -> (MenuHandle _rv)"},
|
|
|
|
{"DeleteMenu", (PyCFunction)Menu_DeleteMenu, 1,
|
|
|
|
"(short menuID) -> None"},
|
|
|
|
{"DrawMenuBar", (PyCFunction)Menu_DrawMenuBar, 1,
|
|
|
|
"() -> None"},
|
1995-01-30 07:53:55 -04:00
|
|
|
{NULL, NULL, 0}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void initMenu()
|
|
|
|
{
|
|
|
|
PyObject *m;
|
|
|
|
PyObject *d;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
m = Py_InitModule("Menu", Menu_methods);
|
|
|
|
d = PyModule_GetDict(m);
|
|
|
|
Menu_Error = PyMac_GetOSErrException();
|
|
|
|
if (Menu_Error == NULL ||
|
|
|
|
PyDict_SetItemString(d, "Error", Menu_Error) != 0)
|
|
|
|
Py_FatalError("can't initialize Menu.Error");
|
1997-09-20 14:40:22 -03:00
|
|
|
Menu_Type.ob_type = &PyType_Type;
|
|
|
|
Py_INCREF(&Menu_Type);
|
|
|
|
if (PyDict_SetItemString(d, "MenuType", (PyObject *)&Menu_Type) != 0)
|
|
|
|
Py_FatalError("can't initialize MenuType");
|
1995-01-30 07:53:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ======================== End module Menu ========================= */
|
|
|
|
|