2002-08-04 18:34:24 -03:00
|
|
|
|
|
|
|
/* ======================== Module _IBCarbon ======================== */
|
|
|
|
|
|
|
|
#include "Python.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include <Carbon/Carbon.h>
|
2003-11-20 09:31:00 -04:00
|
|
|
#include "pymactoolbox.h"
|
2002-08-04 18:34:24 -03:00
|
|
|
|
|
|
|
#ifdef USE_TOOLBOX_OBJECT_GLUE
|
|
|
|
extern int _CFStringRefObj_Convert(PyObject *, CFStringRef *);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
static PyObject *IBCarbon_Error;
|
|
|
|
|
|
|
|
/* ---------------------- Object type IBNibRef ---------------------- */
|
|
|
|
|
|
|
|
PyTypeObject IBNibRef_Type;
|
|
|
|
|
2002-12-19 17:24:35 -04:00
|
|
|
#define IBNibRefObj_Check(x) ((x)->ob_type == &IBNibRef_Type || PyObject_TypeCheck((x), &IBNibRef_Type))
|
2002-08-04 18:34:24 -03:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
2005-07-03 17:59:44 -03:00
|
|
|
|
2002-08-04 18:34:24 -03:00
|
|
|
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-12-23 19:16:25 -04:00
|
|
|
self->ob_type->tp_free((PyObject *)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
|
|
|
|
2002-12-03 19:40:22 -04:00
|
|
|
|
2002-08-04 18:34:24 -03:00
|
|
|
#define IBNibRefObj_compare NULL
|
|
|
|
|
|
|
|
#define IBNibRefObj_repr NULL
|
|
|
|
|
|
|
|
#define IBNibRefObj_hash NULL
|
2002-12-03 19:40:22 -04:00
|
|
|
#define IBNibRefObj_tp_init 0
|
|
|
|
|
|
|
|
#define IBNibRefObj_tp_alloc PyType_GenericAlloc
|
|
|
|
|
2005-07-03 17:59:44 -03:00
|
|
|
static PyObject *IBNibRefObj_tp_new(PyTypeObject *type, PyObject *_args, PyObject *_kwds)
|
2002-12-03 19:40:22 -04:00
|
|
|
{
|
2005-07-03 17:59:44 -03:00
|
|
|
PyObject *_self;
|
2002-12-03 19:40:22 -04:00
|
|
|
IBNibRef itself;
|
|
|
|
char *kw[] = {"itself", 0};
|
|
|
|
|
2005-07-03 17:59:44 -03:00
|
|
|
if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, IBNibRefObj_Convert, &itself)) return NULL;
|
|
|
|
if ((_self = type->tp_alloc(type, 0)) == NULL) return NULL;
|
|
|
|
((IBNibRefObject *)_self)->ob_itself = itself;
|
|
|
|
return _self;
|
2002-12-03 19:40:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#define IBNibRefObj_tp_free PyObject_Del
|
|
|
|
|
2002-08-04 18:34:24 -03:00
|
|
|
|
|
|
|
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 */
|
2002-12-03 19:40:22 -04:00
|
|
|
0, /*tp_as_buffer*/
|
|
|
|
Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE, /* tp_flags */
|
|
|
|
0, /*tp_doc*/
|
|
|
|
0, /*tp_traverse*/
|
|
|
|
0, /*tp_clear*/
|
|
|
|
0, /*tp_richcompare*/
|
|
|
|
0, /*tp_weaklistoffset*/
|
|
|
|
0, /*tp_iter*/
|
|
|
|
0, /*tp_iternext*/
|
2002-11-29 19:40:48 -04:00
|
|
|
IBNibRefObj_methods, /* tp_methods */
|
2002-12-03 19:40:22 -04:00
|
|
|
0, /*tp_members*/
|
2002-11-29 19:40:48 -04:00
|
|
|
IBNibRefObj_getsetlist, /*tp_getset*/
|
2002-12-03 19:40:22 -04:00
|
|
|
0, /*tp_base*/
|
|
|
|
0, /*tp_dict*/
|
|
|
|
0, /*tp_descr_get*/
|
|
|
|
0, /*tp_descr_set*/
|
|
|
|
0, /*tp_dictoffset*/
|
|
|
|
IBNibRefObj_tp_init, /* tp_init */
|
|
|
|
IBNibRefObj_tp_alloc, /* tp_alloc */
|
|
|
|
IBNibRefObj_tp_new, /* tp_new */
|
|
|
|
IBNibRefObj_tp_free, /* tp_free */
|
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;
|
2002-12-23 19:16:25 -04:00
|
|
|
if (PyType_Ready(&IBNibRef_Type) < 0) return;
|
2002-08-04 18:34:24 -03:00
|
|
|
Py_INCREF(&IBNibRef_Type);
|
2002-12-03 19:40:22 -04:00
|
|
|
PyModule_AddObject(m, "IBNibRef", (PyObject *)&IBNibRef_Type);
|
|
|
|
/* Backward-compatible name */
|
|
|
|
Py_INCREF(&IBNibRef_Type);
|
|
|
|
PyModule_AddObject(m, "IBNibRefType", (PyObject *)&IBNibRef_Type);
|
2002-08-04 18:34:24 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ====================== End module _IBCarbon ====================== */
|
|
|
|
|