2002-08-04 18:34:24 -03:00
|
|
|
|
|
|
|
/* ======================== Module _IBCarbon ======================== */
|
|
|
|
|
|
|
|
#include "Python.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef WITHOUT_FRAMEWORKS
|
|
|
|
#include <IBCarbonRuntime.h>
|
|
|
|
#else
|
|
|
|
#include <Carbon/Carbon.h>
|
|
|
|
#endif /* WITHOUT_FRAMEWORKS */
|
|
|
|
#include "macglue.h"
|
|
|
|
|
|
|
|
#ifdef USE_TOOLBOX_OBJECT_GLUE
|
|
|
|
extern int _CFStringRefObj_Convert(PyObject *, CFStringRef *);
|
|
|
|
//#define CFStringRefObj_Convert _CFStringRefObj_Convert
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//extern int CFBundleRefObj_Convert(PyObject *, CFBundleRef *); // need to wrap CFBundle
|
|
|
|
|
|
|
|
|
|
|
|
static PyObject *IBCarbon_Error;
|
|
|
|
|
|
|
|
/* ---------------------- Object type IBNibRef ---------------------- */
|
|
|
|
|
|
|
|
PyTypeObject IBNibRef_Type;
|
|
|
|
|
|
|
|
#define IBNibRefObj_Check(x) ((x)->ob_type == &IBNibRef_Type)
|
|
|
|
|
|
|
|
typedef struct IBNibRefObject {
|
|
|
|
PyObject_HEAD
|
|
|
|
IBNibRef ob_itself;
|
|
|
|
} IBNibRefObject;
|
|
|
|
|
|
|
|
PyObject *IBNibRefObj_New(IBNibRef itself)
|
|
|
|
{
|
|
|
|
IBNibRefObject *it;
|
|
|
|
it = PyObject_NEW(IBNibRefObject, &IBNibRef_Type);
|
|
|
|
if (it == NULL) return NULL;
|
|
|
|
it->ob_itself = itself;
|
|
|
|
return (PyObject *)it;
|
|
|
|
}
|
|
|
|
int IBNibRefObj_Convert(PyObject *v, IBNibRef *p_itself)
|
|
|
|
{
|
|
|
|
if (!IBNibRefObj_Check(v))
|
|
|
|
{
|
|
|
|
PyErr_SetString(PyExc_TypeError, "IBNibRef required");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
*p_itself = ((IBNibRefObject *)v)->ob_itself;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void IBNibRefObj_dealloc(IBNibRefObject *self)
|
|
|
|
{
|
|
|
|
DisposeNibReference(self->ob_itself);
|
2002-08-04 18:59:37 -03:00
|
|
|
PyObject_Del(self);
|
2002-08-04 18:34:24 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *IBNibRefObj_CreateWindowFromNib(IBNibRefObject *_self, PyObject *_args)
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
OSStatus _err;
|
|
|
|
CFStringRef inName;
|
|
|
|
WindowPtr outWindow;
|
|
|
|
if (!PyArg_ParseTuple(_args, "O&",
|
|
|
|
CFStringRefObj_Convert, &inName))
|
|
|
|
return NULL;
|
|
|
|
_err = CreateWindowFromNib(_self->ob_itself,
|
|
|
|
inName,
|
|
|
|
&outWindow);
|
|
|
|
if (_err != noErr) return PyMac_Error(_err);
|
|
|
|
_res = Py_BuildValue("O&",
|
|
|
|
WinObj_New, outWindow);
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *IBNibRefObj_CreateMenuFromNib(IBNibRefObject *_self, PyObject *_args)
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
OSStatus _err;
|
|
|
|
CFStringRef inName;
|
|
|
|
MenuHandle outMenuRef;
|
|
|
|
if (!PyArg_ParseTuple(_args, "O&",
|
|
|
|
CFStringRefObj_Convert, &inName))
|
|
|
|
return NULL;
|
|
|
|
_err = CreateMenuFromNib(_self->ob_itself,
|
|
|
|
inName,
|
|
|
|
&outMenuRef);
|
|
|
|
if (_err != noErr) return PyMac_Error(_err);
|
|
|
|
_res = Py_BuildValue("O&",
|
|
|
|
MenuObj_New, outMenuRef);
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *IBNibRefObj_CreateMenuBarFromNib(IBNibRefObject *_self, PyObject *_args)
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
OSStatus _err;
|
|
|
|
CFStringRef inName;
|
|
|
|
Handle outMenuBar;
|
|
|
|
if (!PyArg_ParseTuple(_args, "O&",
|
|
|
|
CFStringRefObj_Convert, &inName))
|
|
|
|
return NULL;
|
|
|
|
_err = CreateMenuBarFromNib(_self->ob_itself,
|
|
|
|
inName,
|
|
|
|
&outMenuBar);
|
|
|
|
if (_err != noErr) return PyMac_Error(_err);
|
|
|
|
_res = Py_BuildValue("O&",
|
|
|
|
ResObj_New, outMenuBar);
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *IBNibRefObj_SetMenuBarFromNib(IBNibRefObject *_self, PyObject *_args)
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
OSStatus _err;
|
|
|
|
CFStringRef inName;
|
|
|
|
if (!PyArg_ParseTuple(_args, "O&",
|
|
|
|
CFStringRefObj_Convert, &inName))
|
|
|
|
return NULL;
|
|
|
|
_err = SetMenuBarFromNib(_self->ob_itself,
|
|
|
|
inName);
|
|
|
|
if (_err != noErr) return PyMac_Error(_err);
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
_res = Py_None;
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyMethodDef IBNibRefObj_methods[] = {
|
|
|
|
{"CreateWindowFromNib", (PyCFunction)IBNibRefObj_CreateWindowFromNib, 1,
|
2002-08-16 06:09:31 -03:00
|
|
|
PyDoc_STR("(CFStringRef inName) -> (WindowPtr outWindow)")},
|
2002-08-04 18:34:24 -03:00
|
|
|
{"CreateMenuFromNib", (PyCFunction)IBNibRefObj_CreateMenuFromNib, 1,
|
2002-08-16 06:09:31 -03:00
|
|
|
PyDoc_STR("(CFStringRef inName) -> (MenuHandle outMenuRef)")},
|
2002-08-04 18:34:24 -03:00
|
|
|
{"CreateMenuBarFromNib", (PyCFunction)IBNibRefObj_CreateMenuBarFromNib, 1,
|
2002-08-16 06:09:31 -03:00
|
|
|
PyDoc_STR("(CFStringRef inName) -> (Handle outMenuBar)")},
|
2002-08-04 18:34:24 -03:00
|
|
|
{"SetMenuBarFromNib", (PyCFunction)IBNibRefObj_SetMenuBarFromNib, 1,
|
2002-08-16 06:09:31 -03:00
|
|
|
PyDoc_STR("(CFStringRef inName) -> None")},
|
2002-08-04 18:34:24 -03:00
|
|
|
{NULL, NULL, 0}
|
|
|
|
};
|
|
|
|
|
2002-11-29 19:40:48 -04:00
|
|
|
#define IBNibRefObj_getsetlist NULL
|
2002-08-04 18:34:24 -03:00
|
|
|
|
|
|
|
#define IBNibRefObj_compare NULL
|
|
|
|
|
|
|
|
#define IBNibRefObj_repr NULL
|
|
|
|
|
|
|
|
#define IBNibRefObj_hash NULL
|
|
|
|
|
|
|
|
PyTypeObject IBNibRef_Type = {
|
|
|
|
PyObject_HEAD_INIT(NULL)
|
|
|
|
0, /*ob_size*/
|
|
|
|
"_IBCarbon.IBNibRef", /*tp_name*/
|
|
|
|
sizeof(IBNibRefObject), /*tp_basicsize*/
|
|
|
|
0, /*tp_itemsize*/
|
|
|
|
/* methods */
|
|
|
|
(destructor) IBNibRefObj_dealloc, /*tp_dealloc*/
|
|
|
|
0, /*tp_print*/
|
2002-11-29 19:40:48 -04:00
|
|
|
(getattrfunc)0, /*tp_getattr*/
|
|
|
|
(setattrfunc)0, /*tp_setattr*/
|
2002-08-04 18:34:24 -03:00
|
|
|
(cmpfunc) IBNibRefObj_compare, /*tp_compare*/
|
|
|
|
(reprfunc) IBNibRefObj_repr, /*tp_repr*/
|
|
|
|
(PyNumberMethods *)0, /* tp_as_number */
|
|
|
|
(PySequenceMethods *)0, /* tp_as_sequence */
|
|
|
|
(PyMappingMethods *)0, /* tp_as_mapping */
|
|
|
|
(hashfunc) IBNibRefObj_hash, /*tp_hash*/
|
2002-11-29 19:40:48 -04:00
|
|
|
0, /*tp_call*/
|
|
|
|
0, /*tp_str*/
|
|
|
|
PyObject_GenericGetAttr, /*tp_getattro*/
|
|
|
|
PyObject_GenericSetAttr, /*tp_setattro */
|
|
|
|
0, /*outputHook_tp_as_buffer*/
|
|
|
|
0, /*outputHook_tp_flags*/
|
|
|
|
0, /*outputHook_tp_doc*/
|
|
|
|
0, /*outputHook_tp_traverse*/
|
|
|
|
0, /*outputHook_tp_clear*/
|
|
|
|
0, /*outputHook_tp_richcompare*/
|
|
|
|
0, /*outputHook_tp_weaklistoffset*/
|
|
|
|
0, /*outputHook_tp_iter*/
|
|
|
|
0, /*outputHook_tp_iternext*/
|
|
|
|
IBNibRefObj_methods, /* tp_methods */
|
|
|
|
0, /*outputHook_tp_members*/
|
|
|
|
IBNibRefObj_getsetlist, /*tp_getset*/
|
|
|
|
0, /*outputHook_tp_base*/
|
2002-08-04 18:34:24 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
/* -------------------- End object type IBNibRef -------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
static PyObject *IBCarbon_CreateNibReference(PyObject *_self, PyObject *_args)
|
|
|
|
{
|
|
|
|
PyObject *_res = NULL;
|
|
|
|
OSStatus _err;
|
|
|
|
CFStringRef inNibName;
|
|
|
|
IBNibRef outNibRef;
|
|
|
|
if (!PyArg_ParseTuple(_args, "O&",
|
|
|
|
CFStringRefObj_Convert, &inNibName))
|
|
|
|
return NULL;
|
|
|
|
_err = CreateNibReference(inNibName,
|
|
|
|
&outNibRef);
|
|
|
|
if (_err != noErr) return PyMac_Error(_err);
|
|
|
|
_res = Py_BuildValue("O&",
|
|
|
|
IBNibRefObj_New, outNibRef);
|
|
|
|
return _res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyMethodDef IBCarbon_methods[] = {
|
|
|
|
{"CreateNibReference", (PyCFunction)IBCarbon_CreateNibReference, 1,
|
2002-08-16 06:09:31 -03:00
|
|
|
PyDoc_STR("(CFStringRef inNibName) -> (IBNibRef outNibRef)")},
|
2002-08-04 18:34:24 -03:00
|
|
|
{NULL, NULL, 0}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void init_IBCarbon(void)
|
|
|
|
{
|
|
|
|
PyObject *m;
|
|
|
|
PyObject *d;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
m = Py_InitModule("_IBCarbon", IBCarbon_methods);
|
|
|
|
d = PyModule_GetDict(m);
|
|
|
|
IBCarbon_Error = PyMac_GetOSErrException();
|
|
|
|
if (IBCarbon_Error == NULL ||
|
|
|
|
PyDict_SetItemString(d, "Error", IBCarbon_Error) != 0)
|
|
|
|
return;
|
|
|
|
IBNibRef_Type.ob_type = &PyType_Type;
|
|
|
|
Py_INCREF(&IBNibRef_Type);
|
|
|
|
if (PyDict_SetItemString(d, "IBNibRefType", (PyObject *)&IBNibRef_Type) != 0)
|
|
|
|
Py_FatalError("can't initialize IBNibRefType");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ====================== End module _IBCarbon ====================== */
|
|
|
|
|