_CarbonEvtmodule.c 64.3 KB
Newer Older
1

2
/* ======================= Module _CarbonEvt ======================== */
3 4 5

#include "Python.h"

6
#ifndef __LP64__
7

8
#include "pymactoolbox.h"
9

10 11
/* Macro to test whether a weak-loaded CFM function exists */
#define PyMac_PRECHECK(rtn) do { if ( &rtn == NULL )  {\
12 13 14 15
        PyErr_SetString(PyExc_NotImplementedError, \
        "Not available in this shared library/OS version"); \
        return NULL; \
    }} while(0)
16

17

18
#include <Carbon/Carbon.h>
19 20 21 22 23 24 25 26 27 28 29 30 31 32

extern int CFStringRef_New(CFStringRef *);

extern int CFStringRef_Convert(PyObject *, CFStringRef *);
extern int CFBundleRef_Convert(PyObject *, CFBundleRef *);

int EventTargetRef_Convert(PyObject *, EventTargetRef *);
PyObject *EventHandlerCallRef_New(EventHandlerCallRef itself);
PyObject *EventRef_New(EventRef itself);

/********** EventTypeSpec *******/
static PyObject*
EventTypeSpec_New(EventTypeSpec *in)
{
33
        return Py_BuildValue("ll", in->eventClass, in->eventKind);
34 35 36 37 38
}

static int
EventTypeSpec_Convert(PyObject *v, EventTypeSpec *out)
{
39 40 41 42
        if (PyArg_Parse(v, "(O&l)",
                        PyMac_GetOSType, &(out->eventClass),
                        &(out->eventKind)))
                return 1;
43
        return 0;
44 45 46 47 48 49
}

/********** end EventTypeSpec *******/

/********** HIPoint *******/

50
#if 0  /* XXX doesn't compile */
51 52 53
static PyObject*
HIPoint_New(HIPoint *in)
{
54
        return Py_BuildValue("ff", in->x, in->y);
55 56 57 58 59
}

static int
HIPoint_Convert(PyObject *v, HIPoint *out)
{
60 61 62
        if (PyArg_ParseTuple(v, "ff", &(out->x), &(out->y)))
                return 1;
        return NULL;
63
}
64
#endif
65 66 67 68 69 70 71 72

/********** end HIPoint *******/

/********** EventHotKeyID *******/

static PyObject*
EventHotKeyID_New(EventHotKeyID *in)
{
73
        return Py_BuildValue("ll", in->signature, in->id);
74 75 76 77 78
}

static int
EventHotKeyID_Convert(PyObject *v, EventHotKeyID *out)
{
79 80
        if (PyArg_ParseTuple(v, "ll", &out->signature, &out->id))
                return 1;
81
        return 0;
82 83 84 85
}

/********** end EventHotKeyID *******/

86
/******** myEventHandler ***********/
87

88
static EventHandlerUPP myEventHandlerUPP;
89

90 91
static pascal OSStatus
myEventHandler(EventHandlerCallRef handlerRef, EventRef event, void *outPyObject) {
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
        PyObject *retValue;
        int status;

        retValue = PyObject_CallFunction((PyObject *)outPyObject, "O&O&",
                                         EventHandlerCallRef_New, handlerRef,
                                         EventRef_New, event);
        if (retValue == NULL) {
                PySys_WriteStderr("Error in event handler callback:\n");
                PyErr_Print();  /* this also clears the error */
                status = noErr; /* complain? how? */
        } else {
                if (retValue == Py_None)
                        status = noErr;
                else if (PyInt_Check(retValue)) {
                        status = PyInt_AsLong(retValue);
                } else
                        status = noErr; /* wrong object type, complain? */
                Py_DECREF(retValue);
        }

        return status;
113 114
}

115
/******** end myEventHandler ***********/
116 117 118 119 120 121 122 123


static PyObject *CarbonEvents_Error;

/* ---------------------- Object type EventRef ---------------------- */

PyTypeObject EventRef_Type;

124
#define EventRef_Check(x) ((x)->ob_type == &EventRef_Type || PyObject_TypeCheck((x), &EventRef_Type))
125 126 127 128 129 130 131 132 133 134 135 136 137 138

typedef struct EventRefObject {
	PyObject_HEAD
	EventRef ob_itself;
} EventRefObject;

PyObject *EventRef_New(EventRef itself)
{
	EventRefObject *it;
	it = PyObject_NEW(EventRefObject, &EventRef_Type);
	if (it == NULL) return NULL;
	it->ob_itself = itself;
	return (PyObject *)it;
}
139

140 141 142 143 144 145 146 147 148 149 150 151 152 153
int EventRef_Convert(PyObject *v, EventRef *p_itself)
{
	if (!EventRef_Check(v))
	{
		PyErr_SetString(PyExc_TypeError, "EventRef required");
		return 0;
	}
	*p_itself = ((EventRefObject *)v)->ob_itself;
	return 1;
}

static void EventRef_dealloc(EventRefObject *self)
{
	/* Cleanup of self->ob_itself goes here */
154
	self->ob_type->tp_free((PyObject *)self);
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
}

static PyObject *EventRef_RetainEvent(EventRefObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	EventRef _rv;
	if (!PyArg_ParseTuple(_args, ""))
		return NULL;
	_rv = RetainEvent(_self->ob_itself);
	_res = Py_BuildValue("O&",
	                     EventRef_New, _rv);
	return _res;
}

static PyObject *EventRef_GetEventRetainCount(EventRefObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	UInt32 _rv;
	if (!PyArg_ParseTuple(_args, ""))
		return NULL;
	_rv = GetEventRetainCount(_self->ob_itself);
	_res = Py_BuildValue("l",
	                     _rv);
	return _res;
}

static PyObject *EventRef_ReleaseEvent(EventRefObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	if (!PyArg_ParseTuple(_args, ""))
		return NULL;
	ReleaseEvent(_self->ob_itself);
	Py_INCREF(Py_None);
	_res = Py_None;
	return _res;
}

static PyObject *EventRef_SetEventParameter(EventRefObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	OSType inName;
	OSType inType;
198 199 200 201
	char *inDataPtr__in__;
	long inDataPtr__len__;
	int inDataPtr__in_len__;
	if (!PyArg_ParseTuple(_args, "O&O&s#",
202 203
	                      PyMac_GetOSType, &inName,
	                      PyMac_GetOSType, &inType,
204
	                      &inDataPtr__in__, &inDataPtr__in_len__))
205
		return NULL;
206
	inDataPtr__len__ = inDataPtr__in_len__;
207 208 209
	_err = SetEventParameter(_self->ob_itself,
	                         inName,
	                         inType,
210
	                         inDataPtr__len__, inDataPtr__in__);
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326
	if (_err != noErr) return PyMac_Error(_err);
	Py_INCREF(Py_None);
	_res = Py_None;
	return _res;
}

static PyObject *EventRef_GetEventClass(EventRefObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	UInt32 _rv;
	if (!PyArg_ParseTuple(_args, ""))
		return NULL;
	_rv = GetEventClass(_self->ob_itself);
	_res = Py_BuildValue("l",
	                     _rv);
	return _res;
}

static PyObject *EventRef_GetEventKind(EventRefObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	UInt32 _rv;
	if (!PyArg_ParseTuple(_args, ""))
		return NULL;
	_rv = GetEventKind(_self->ob_itself);
	_res = Py_BuildValue("l",
	                     _rv);
	return _res;
}

static PyObject *EventRef_GetEventTime(EventRefObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	double _rv;
	if (!PyArg_ParseTuple(_args, ""))
		return NULL;
	_rv = GetEventTime(_self->ob_itself);
	_res = Py_BuildValue("d",
	                     _rv);
	return _res;
}

static PyObject *EventRef_SetEventTime(EventRefObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	double inTime;
	if (!PyArg_ParseTuple(_args, "d",
	                      &inTime))
		return NULL;
	_err = SetEventTime(_self->ob_itself,
	                    inTime);
	if (_err != noErr) return PyMac_Error(_err);
	Py_INCREF(Py_None);
	_res = Py_None;
	return _res;
}

static PyObject *EventRef_IsUserCancelEventRef(EventRefObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	Boolean _rv;
	if (!PyArg_ParseTuple(_args, ""))
		return NULL;
	_rv = IsUserCancelEventRef(_self->ob_itself);
	_res = Py_BuildValue("b",
	                     _rv);
	return _res;
}

static PyObject *EventRef_ConvertEventRefToEventRecord(EventRefObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	Boolean _rv;
	EventRecord outEvent;
	if (!PyArg_ParseTuple(_args, ""))
		return NULL;
	_rv = ConvertEventRefToEventRecord(_self->ob_itself,
	                                   &outEvent);
	_res = Py_BuildValue("bO&",
	                     _rv,
	                     PyMac_BuildEventRecord, &outEvent);
	return _res;
}

static PyObject *EventRef_IsEventInMask(EventRefObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	Boolean _rv;
	UInt16 inMask;
	if (!PyArg_ParseTuple(_args, "H",
	                      &inMask))
		return NULL;
	_rv = IsEventInMask(_self->ob_itself,
	                    inMask);
	_res = Py_BuildValue("b",
	                     _rv);
	return _res;
}

static PyObject *EventRef_SendEventToEventTarget(EventRefObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	EventTargetRef inTarget;
	if (!PyArg_ParseTuple(_args, "O&",
	                      EventTargetRef_Convert, &inTarget))
		return NULL;
	_err = SendEventToEventTarget(_self->ob_itself,
	                              inTarget);
	if (_err != noErr) return PyMac_Error(_err);
	Py_INCREF(Py_None);
	_res = Py_None;
	return _res;
}

327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360
static PyObject *EventRef_GetEventParameter(EventRefObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;

	UInt32 bufferSize;
	EventParamName inName;
	EventParamType inType;
	OSErr _err;
	void * buffer;

	if (!PyArg_ParseTuple(_args, "O&O&", PyMac_GetOSType, &inName, PyMac_GetOSType, &inType))
	      return NULL;

	/* Figure out the size by passing a null buffer to GetEventParameter */
	_err = GetEventParameter(_self->ob_itself, inName, inType, NULL, 0, &bufferSize, NULL);

	if (_err != noErr)
	      return PyMac_Error(_err);
	buffer = PyMem_NEW(char, bufferSize);
	if (buffer == NULL)
	      return PyErr_NoMemory();

	_err = GetEventParameter(_self->ob_itself, inName, inType, NULL, bufferSize, NULL, buffer);

	if (_err != noErr) {
	      PyMem_DEL(buffer);
	      return PyMac_Error(_err);
	}
	_res = Py_BuildValue("s#", buffer, bufferSize);
	PyMem_DEL(buffer);
	return _res;

}

361 362
static PyMethodDef EventRef_methods[] = {
	{"RetainEvent", (PyCFunction)EventRef_RetainEvent, 1,
363
	 PyDoc_STR("() -> (EventRef _rv)")},
364
	{"GetEventRetainCount", (PyCFunction)EventRef_GetEventRetainCount, 1,
365
	 PyDoc_STR("() -> (UInt32 _rv)")},
366
	{"ReleaseEvent", (PyCFunction)EventRef_ReleaseEvent, 1,
367
	 PyDoc_STR("() -> None")},
368
	{"SetEventParameter", (PyCFunction)EventRef_SetEventParameter, 1,
369
	 PyDoc_STR("(OSType inName, OSType inType, Buffer inDataPtr) -> None")},
370
	{"GetEventClass", (PyCFunction)EventRef_GetEventClass, 1,
371
	 PyDoc_STR("() -> (UInt32 _rv)")},
372
	{"GetEventKind", (PyCFunction)EventRef_GetEventKind, 1,
373
	 PyDoc_STR("() -> (UInt32 _rv)")},
374
	{"GetEventTime", (PyCFunction)EventRef_GetEventTime, 1,
375
	 PyDoc_STR("() -> (double _rv)")},
376
	{"SetEventTime", (PyCFunction)EventRef_SetEventTime, 1,
377
	 PyDoc_STR("(double inTime) -> None")},
378
	{"IsUserCancelEventRef", (PyCFunction)EventRef_IsUserCancelEventRef, 1,
379
	 PyDoc_STR("() -> (Boolean _rv)")},
380
	{"ConvertEventRefToEventRecord", (PyCFunction)EventRef_ConvertEventRefToEventRecord, 1,
381
	 PyDoc_STR("() -> (Boolean _rv, EventRecord outEvent)")},
382
	{"IsEventInMask", (PyCFunction)EventRef_IsEventInMask, 1,
383
	 PyDoc_STR("(UInt16 inMask) -> (Boolean _rv)")},
384
	{"SendEventToEventTarget", (PyCFunction)EventRef_SendEventToEventTarget, 1,
385
	 PyDoc_STR("(EventTargetRef inTarget) -> None")},
386
	{"GetEventParameter", (PyCFunction)EventRef_GetEventParameter, 1,
387
	 PyDoc_STR("(EventParamName eventName, EventParamType eventType) -> (String eventParamData)")},
388 389 390
	{NULL, NULL, 0}
};

391
#define EventRef_getsetlist NULL
392

393

394 395 396 397 398
#define EventRef_compare NULL

#define EventRef_repr NULL

#define EventRef_hash NULL
399 400 401 402
#define EventRef_tp_init 0

#define EventRef_tp_alloc PyType_GenericAlloc

403
static PyObject *EventRef_tp_new(PyTypeObject *type, PyObject *_args, PyObject *_kwds)
404
{
405
	PyObject *_self;
406 407 408
	EventRef itself;
	char *kw[] = {"itself", 0};

409 410 411 412
	if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, EventRef_Convert, &itself)) return NULL;
	if ((_self = type->tp_alloc(type, 0)) == NULL) return NULL;
	((EventRefObject *)_self)->ob_itself = itself;
	return _self;
413 414 415 416
}

#define EventRef_tp_free PyObject_Del

417 418

PyTypeObject EventRef_Type = {
419
	PyObject_HEAD_INIT(NULL)
420
	0, /*ob_size*/
421
	"_CarbonEvt.EventRef", /*tp_name*/
422 423 424 425 426
	sizeof(EventRefObject), /*tp_basicsize*/
	0, /*tp_itemsize*/
	/* methods */
	(destructor) EventRef_dealloc, /*tp_dealloc*/
	0, /*tp_print*/
427 428
	(getattrfunc)0, /*tp_getattr*/
	(setattrfunc)0, /*tp_setattr*/
429 430 431 432 433 434
	(cmpfunc) EventRef_compare, /*tp_compare*/
	(reprfunc) EventRef_repr, /*tp_repr*/
	(PyNumberMethods *)0, /* tp_as_number */
	(PySequenceMethods *)0, /* tp_as_sequence */
	(PyMappingMethods *)0, /* tp_as_mapping */
	(hashfunc) EventRef_hash, /*tp_hash*/
435 436 437 438
	0, /*tp_call*/
	0, /*tp_str*/
	PyObject_GenericGetAttr, /*tp_getattro*/
	PyObject_GenericSetAttr, /*tp_setattro */
439 440 441 442 443 444 445 446 447
	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*/
448
	EventRef_methods, /* tp_methods */
449
	0, /*tp_members*/
450
	EventRef_getsetlist, /*tp_getset*/
451 452 453 454 455 456 457 458 459
	0, /*tp_base*/
	0, /*tp_dict*/
	0, /*tp_descr_get*/
	0, /*tp_descr_set*/
	0, /*tp_dictoffset*/
	EventRef_tp_init, /* tp_init */
	EventRef_tp_alloc, /* tp_alloc */
	EventRef_tp_new, /* tp_new */
	EventRef_tp_free, /* tp_free */
460 461 462 463 464 465 466 467 468
};

/* -------------------- End object type EventRef -------------------- */


/* ------------------- Object type EventQueueRef -------------------- */

PyTypeObject EventQueueRef_Type;

469
#define EventQueueRef_Check(x) ((x)->ob_type == &EventQueueRef_Type || PyObject_TypeCheck((x), &EventQueueRef_Type))
470 471 472 473 474 475 476 477 478 479 480 481 482 483

typedef struct EventQueueRefObject {
	PyObject_HEAD
	EventQueueRef ob_itself;
} EventQueueRefObject;

PyObject *EventQueueRef_New(EventQueueRef itself)
{
	EventQueueRefObject *it;
	it = PyObject_NEW(EventQueueRefObject, &EventQueueRef_Type);
	if (it == NULL) return NULL;
	it->ob_itself = itself;
	return (PyObject *)it;
}
484

485 486 487 488 489 490 491 492 493 494 495 496 497 498
int EventQueueRef_Convert(PyObject *v, EventQueueRef *p_itself)
{
	if (!EventQueueRef_Check(v))
	{
		PyErr_SetString(PyExc_TypeError, "EventQueueRef required");
		return 0;
	}
	*p_itself = ((EventQueueRefObject *)v)->ob_itself;
	return 1;
}

static void EventQueueRef_dealloc(EventQueueRefObject *self)
{
	/* Cleanup of self->ob_itself goes here */
499
	self->ob_type->tp_free((PyObject *)self);
500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525
}

static PyObject *EventQueueRef_PostEventToQueue(EventQueueRefObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	EventRef inEvent;
	SInt16 inPriority;
	if (!PyArg_ParseTuple(_args, "O&h",
	                      EventRef_Convert, &inEvent,
	                      &inPriority))
		return NULL;
	_err = PostEventToQueue(_self->ob_itself,
	                        inEvent,
	                        inPriority);
	if (_err != noErr) return PyMac_Error(_err);
	Py_INCREF(Py_None);
	_res = Py_None;
	return _res;
}

static PyObject *EventQueueRef_FlushEventsMatchingListFromQueue(EventQueueRefObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	UInt32 inNumTypes;
526
	EventTypeSpec inList;
527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
	if (!PyArg_ParseTuple(_args, "lO&",
	                      &inNumTypes,
	                      EventTypeSpec_Convert, &inList))
		return NULL;
	_err = FlushEventsMatchingListFromQueue(_self->ob_itself,
	                                        inNumTypes,
	                                        &inList);
	if (_err != noErr) return PyMac_Error(_err);
	Py_INCREF(Py_None);
	_res = Py_None;
	return _res;
}

static PyObject *EventQueueRef_FlushEventQueue(EventQueueRefObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	if (!PyArg_ParseTuple(_args, ""))
		return NULL;
	_err = FlushEventQueue(_self->ob_itself);
	if (_err != noErr) return PyMac_Error(_err);
	Py_INCREF(Py_None);
	_res = Py_None;
	return _res;
}

static PyObject *EventQueueRef_GetNumEventsInQueue(EventQueueRefObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	UInt32 _rv;
	if (!PyArg_ParseTuple(_args, ""))
		return NULL;
	_rv = GetNumEventsInQueue(_self->ob_itself);
	_res = Py_BuildValue("l",
	                     _rv);
	return _res;
}

static PyObject *EventQueueRef_RemoveEventFromQueue(EventQueueRefObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	EventRef inEvent;
	if (!PyArg_ParseTuple(_args, "O&",
	                      EventRef_Convert, &inEvent))
		return NULL;
	_err = RemoveEventFromQueue(_self->ob_itself,
	                            inEvent);
	if (_err != noErr) return PyMac_Error(_err);
	Py_INCREF(Py_None);
	_res = Py_None;
	return _res;
}

static PyObject *EventQueueRef_IsEventInQueue(EventQueueRefObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	Boolean _rv;
	EventRef inEvent;
	if (!PyArg_ParseTuple(_args, "O&",
	                      EventRef_Convert, &inEvent))
		return NULL;
	_rv = IsEventInQueue(_self->ob_itself,
	                     inEvent);
	_res = Py_BuildValue("b",
	                     _rv);
	return _res;
}

static PyMethodDef EventQueueRef_methods[] = {
	{"PostEventToQueue", (PyCFunction)EventQueueRef_PostEventToQueue, 1,
598
	 PyDoc_STR("(EventRef inEvent, SInt16 inPriority) -> None")},
599
	{"FlushEventsMatchingListFromQueue", (PyCFunction)EventQueueRef_FlushEventsMatchingListFromQueue, 1,
600
	 PyDoc_STR("(UInt32 inNumTypes, EventTypeSpec inList) -> None")},
601
	{"FlushEventQueue", (PyCFunction)EventQueueRef_FlushEventQueue, 1,
602
	 PyDoc_STR("() -> None")},
603
	{"GetNumEventsInQueue", (PyCFunction)EventQueueRef_GetNumEventsInQueue, 1,
604
	 PyDoc_STR("() -> (UInt32 _rv)")},
605
	{"RemoveEventFromQueue", (PyCFunction)EventQueueRef_RemoveEventFromQueue, 1,
606
	 PyDoc_STR("(EventRef inEvent) -> None")},
607
	{"IsEventInQueue", (PyCFunction)EventQueueRef_IsEventInQueue, 1,
608
	 PyDoc_STR("(EventRef inEvent) -> (Boolean _rv)")},
609 610 611
	{NULL, NULL, 0}
};

612
#define EventQueueRef_getsetlist NULL
613

614

615 616 617 618 619
#define EventQueueRef_compare NULL

#define EventQueueRef_repr NULL

#define EventQueueRef_hash NULL
620 621 622 623
#define EventQueueRef_tp_init 0

#define EventQueueRef_tp_alloc PyType_GenericAlloc

624
static PyObject *EventQueueRef_tp_new(PyTypeObject *type, PyObject *_args, PyObject *_kwds)
625
{
626
	PyObject *_self;
627 628 629
	EventQueueRef itself;
	char *kw[] = {"itself", 0};

630 631 632 633
	if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, EventQueueRef_Convert, &itself)) return NULL;
	if ((_self = type->tp_alloc(type, 0)) == NULL) return NULL;
	((EventQueueRefObject *)_self)->ob_itself = itself;
	return _self;
634 635 636 637
}

#define EventQueueRef_tp_free PyObject_Del

638 639

PyTypeObject EventQueueRef_Type = {
640
	PyObject_HEAD_INIT(NULL)
641
	0, /*ob_size*/
642
	"_CarbonEvt.EventQueueRef", /*tp_name*/
643 644 645 646 647
	sizeof(EventQueueRefObject), /*tp_basicsize*/
	0, /*tp_itemsize*/
	/* methods */
	(destructor) EventQueueRef_dealloc, /*tp_dealloc*/
	0, /*tp_print*/
648 649
	(getattrfunc)0, /*tp_getattr*/
	(setattrfunc)0, /*tp_setattr*/
650 651 652 653 654 655
	(cmpfunc) EventQueueRef_compare, /*tp_compare*/
	(reprfunc) EventQueueRef_repr, /*tp_repr*/
	(PyNumberMethods *)0, /* tp_as_number */
	(PySequenceMethods *)0, /* tp_as_sequence */
	(PyMappingMethods *)0, /* tp_as_mapping */
	(hashfunc) EventQueueRef_hash, /*tp_hash*/
656 657 658 659
	0, /*tp_call*/
	0, /*tp_str*/
	PyObject_GenericGetAttr, /*tp_getattro*/
	PyObject_GenericSetAttr, /*tp_setattro */
660 661 662 663 664 665 666 667 668
	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*/
669
	EventQueueRef_methods, /* tp_methods */
670
	0, /*tp_members*/
671
	EventQueueRef_getsetlist, /*tp_getset*/
672 673 674 675 676 677 678 679 680
	0, /*tp_base*/
	0, /*tp_dict*/
	0, /*tp_descr_get*/
	0, /*tp_descr_set*/
	0, /*tp_dictoffset*/
	EventQueueRef_tp_init, /* tp_init */
	EventQueueRef_tp_alloc, /* tp_alloc */
	EventQueueRef_tp_new, /* tp_new */
	EventQueueRef_tp_free, /* tp_free */
681 682 683 684 685 686 687 688 689
};

/* ----------------- End object type EventQueueRef ------------------ */


/* -------------------- Object type EventLoopRef -------------------- */

PyTypeObject EventLoopRef_Type;

690
#define EventLoopRef_Check(x) ((x)->ob_type == &EventLoopRef_Type || PyObject_TypeCheck((x), &EventLoopRef_Type))
691 692 693 694 695 696 697 698 699 700 701 702 703 704

typedef struct EventLoopRefObject {
	PyObject_HEAD
	EventLoopRef ob_itself;
} EventLoopRefObject;

PyObject *EventLoopRef_New(EventLoopRef itself)
{
	EventLoopRefObject *it;
	it = PyObject_NEW(EventLoopRefObject, &EventLoopRef_Type);
	if (it == NULL) return NULL;
	it->ob_itself = itself;
	return (PyObject *)it;
}
705

706 707 708 709 710 711 712 713 714 715 716 717 718 719
int EventLoopRef_Convert(PyObject *v, EventLoopRef *p_itself)
{
	if (!EventLoopRef_Check(v))
	{
		PyErr_SetString(PyExc_TypeError, "EventLoopRef required");
		return 0;
	}
	*p_itself = ((EventLoopRefObject *)v)->ob_itself;
	return 1;
}

static void EventLoopRef_dealloc(EventLoopRefObject *self)
{
	/* Cleanup of self->ob_itself goes here */
720
	self->ob_type->tp_free((PyObject *)self);
721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737
}

static PyObject *EventLoopRef_QuitEventLoop(EventLoopRefObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	if (!PyArg_ParseTuple(_args, ""))
		return NULL;
	_err = QuitEventLoop(_self->ob_itself);
	if (_err != noErr) return PyMac_Error(_err);
	Py_INCREF(Py_None);
	_res = Py_None;
	return _res;
}

static PyMethodDef EventLoopRef_methods[] = {
	{"QuitEventLoop", (PyCFunction)EventLoopRef_QuitEventLoop, 1,
738
	 PyDoc_STR("() -> None")},
739 740 741
	{NULL, NULL, 0}
};

742
#define EventLoopRef_getsetlist NULL
743

744

745 746 747 748 749
#define EventLoopRef_compare NULL

#define EventLoopRef_repr NULL

#define EventLoopRef_hash NULL
750 751 752 753
#define EventLoopRef_tp_init 0

#define EventLoopRef_tp_alloc PyType_GenericAlloc

754
static PyObject *EventLoopRef_tp_new(PyTypeObject *type, PyObject *_args, PyObject *_kwds)
755
{
756
	PyObject *_self;
757 758 759
	EventLoopRef itself;
	char *kw[] = {"itself", 0};

760 761 762 763
	if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, EventLoopRef_Convert, &itself)) return NULL;
	if ((_self = type->tp_alloc(type, 0)) == NULL) return NULL;
	((EventLoopRefObject *)_self)->ob_itself = itself;
	return _self;
764 765 766 767
}

#define EventLoopRef_tp_free PyObject_Del

768 769

PyTypeObject EventLoopRef_Type = {
770
	PyObject_HEAD_INIT(NULL)
771
	0, /*ob_size*/
772
	"_CarbonEvt.EventLoopRef", /*tp_name*/
773 774 775 776 777
	sizeof(EventLoopRefObject), /*tp_basicsize*/
	0, /*tp_itemsize*/
	/* methods */
	(destructor) EventLoopRef_dealloc, /*tp_dealloc*/
	0, /*tp_print*/
778 779
	(getattrfunc)0, /*tp_getattr*/
	(setattrfunc)0, /*tp_setattr*/
780 781 782 783 784 785
	(cmpfunc) EventLoopRef_compare, /*tp_compare*/
	(reprfunc) EventLoopRef_repr, /*tp_repr*/
	(PyNumberMethods *)0, /* tp_as_number */
	(PySequenceMethods *)0, /* tp_as_sequence */
	(PyMappingMethods *)0, /* tp_as_mapping */
	(hashfunc) EventLoopRef_hash, /*tp_hash*/
786 787 788 789
	0, /*tp_call*/
	0, /*tp_str*/
	PyObject_GenericGetAttr, /*tp_getattro*/
	PyObject_GenericSetAttr, /*tp_setattro */
790 791 792 793 794 795 796 797 798
	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*/
799
	EventLoopRef_methods, /* tp_methods */
800
	0, /*tp_members*/
801
	EventLoopRef_getsetlist, /*tp_getset*/
802 803 804 805 806 807 808 809 810
	0, /*tp_base*/
	0, /*tp_dict*/
	0, /*tp_descr_get*/
	0, /*tp_descr_set*/
	0, /*tp_dictoffset*/
	EventLoopRef_tp_init, /* tp_init */
	EventLoopRef_tp_alloc, /* tp_alloc */
	EventLoopRef_tp_new, /* tp_new */
	EventLoopRef_tp_free, /* tp_free */
811 812 813 814 815 816 817 818 819
};

/* ------------------ End object type EventLoopRef ------------------ */


/* ----------------- Object type EventLoopTimerRef ------------------ */

PyTypeObject EventLoopTimerRef_Type;

820
#define EventLoopTimerRef_Check(x) ((x)->ob_type == &EventLoopTimerRef_Type || PyObject_TypeCheck((x), &EventLoopTimerRef_Type))
821 822 823 824 825 826 827 828 829 830 831 832 833 834

typedef struct EventLoopTimerRefObject {
	PyObject_HEAD
	EventLoopTimerRef ob_itself;
} EventLoopTimerRefObject;

PyObject *EventLoopTimerRef_New(EventLoopTimerRef itself)
{
	EventLoopTimerRefObject *it;
	it = PyObject_NEW(EventLoopTimerRefObject, &EventLoopTimerRef_Type);
	if (it == NULL) return NULL;
	it->ob_itself = itself;
	return (PyObject *)it;
}
835

836 837 838 839 840 841 842 843 844 845 846 847 848 849
int EventLoopTimerRef_Convert(PyObject *v, EventLoopTimerRef *p_itself)
{
	if (!EventLoopTimerRef_Check(v))
	{
		PyErr_SetString(PyExc_TypeError, "EventLoopTimerRef required");
		return 0;
	}
	*p_itself = ((EventLoopTimerRefObject *)v)->ob_itself;
	return 1;
}

static void EventLoopTimerRef_dealloc(EventLoopTimerRefObject *self)
{
	/* Cleanup of self->ob_itself goes here */
850
	self->ob_type->tp_free((PyObject *)self);
851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883
}

static PyObject *EventLoopTimerRef_RemoveEventLoopTimer(EventLoopTimerRefObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	if (!PyArg_ParseTuple(_args, ""))
		return NULL;
	_err = RemoveEventLoopTimer(_self->ob_itself);
	if (_err != noErr) return PyMac_Error(_err);
	Py_INCREF(Py_None);
	_res = Py_None;
	return _res;
}

static PyObject *EventLoopTimerRef_SetEventLoopTimerNextFireTime(EventLoopTimerRefObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	double inNextFire;
	if (!PyArg_ParseTuple(_args, "d",
	                      &inNextFire))
		return NULL;
	_err = SetEventLoopTimerNextFireTime(_self->ob_itself,
	                                     inNextFire);
	if (_err != noErr) return PyMac_Error(_err);
	Py_INCREF(Py_None);
	_res = Py_None;
	return _res;
}

static PyMethodDef EventLoopTimerRef_methods[] = {
	{"RemoveEventLoopTimer", (PyCFunction)EventLoopTimerRef_RemoveEventLoopTimer, 1,
884
	 PyDoc_STR("() -> None")},
885
	{"SetEventLoopTimerNextFireTime", (PyCFunction)EventLoopTimerRef_SetEventLoopTimerNextFireTime, 1,
886
	 PyDoc_STR("(double inNextFire) -> None")},
887 888 889
	{NULL, NULL, 0}
};

890
#define EventLoopTimerRef_getsetlist NULL
891

892

893 894 895 896 897
#define EventLoopTimerRef_compare NULL

#define EventLoopTimerRef_repr NULL

#define EventLoopTimerRef_hash NULL
898 899 900 901
#define EventLoopTimerRef_tp_init 0

#define EventLoopTimerRef_tp_alloc PyType_GenericAlloc

902
static PyObject *EventLoopTimerRef_tp_new(PyTypeObject *type, PyObject *_args, PyObject *_kwds)
903
{
904
	PyObject *_self;
905 906 907
	EventLoopTimerRef itself;
	char *kw[] = {"itself", 0};

908 909 910 911
	if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, EventLoopTimerRef_Convert, &itself)) return NULL;
	if ((_self = type->tp_alloc(type, 0)) == NULL) return NULL;
	((EventLoopTimerRefObject *)_self)->ob_itself = itself;
	return _self;
912 913 914 915
}

#define EventLoopTimerRef_tp_free PyObject_Del

916 917

PyTypeObject EventLoopTimerRef_Type = {
918
	PyObject_HEAD_INIT(NULL)
919
	0, /*ob_size*/
920
	"_CarbonEvt.EventLoopTimerRef", /*tp_name*/
921 922 923 924 925
	sizeof(EventLoopTimerRefObject), /*tp_basicsize*/
	0, /*tp_itemsize*/
	/* methods */
	(destructor) EventLoopTimerRef_dealloc, /*tp_dealloc*/
	0, /*tp_print*/
926 927
	(getattrfunc)0, /*tp_getattr*/
	(setattrfunc)0, /*tp_setattr*/
928 929 930 931 932 933
	(cmpfunc) EventLoopTimerRef_compare, /*tp_compare*/
	(reprfunc) EventLoopTimerRef_repr, /*tp_repr*/
	(PyNumberMethods *)0, /* tp_as_number */
	(PySequenceMethods *)0, /* tp_as_sequence */
	(PyMappingMethods *)0, /* tp_as_mapping */
	(hashfunc) EventLoopTimerRef_hash, /*tp_hash*/
934 935 936 937
	0, /*tp_call*/
	0, /*tp_str*/
	PyObject_GenericGetAttr, /*tp_getattro*/
	PyObject_GenericSetAttr, /*tp_setattro */
938 939 940 941 942 943 944 945 946
	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*/
947
	EventLoopTimerRef_methods, /* tp_methods */
948
	0, /*tp_members*/
949
	EventLoopTimerRef_getsetlist, /*tp_getset*/
950 951 952 953 954 955 956 957 958
	0, /*tp_base*/
	0, /*tp_dict*/
	0, /*tp_descr_get*/
	0, /*tp_descr_set*/
	0, /*tp_dictoffset*/
	EventLoopTimerRef_tp_init, /* tp_init */
	EventLoopTimerRef_tp_alloc, /* tp_alloc */
	EventLoopTimerRef_tp_new, /* tp_new */
	EventLoopTimerRef_tp_free, /* tp_free */
959 960 961 962 963 964 965 966 967
};

/* --------------- End object type EventLoopTimerRef ---------------- */


/* ------------------ Object type EventHandlerRef ------------------- */

PyTypeObject EventHandlerRef_Type;

968
#define EventHandlerRef_Check(x) ((x)->ob_type == &EventHandlerRef_Type || PyObject_TypeCheck((x), &EventHandlerRef_Type))
969 970 971 972

typedef struct EventHandlerRefObject {
	PyObject_HEAD
	EventHandlerRef ob_itself;
973
	PyObject *ob_callback;
974 975 976 977 978 979 980 981
} EventHandlerRefObject;

PyObject *EventHandlerRef_New(EventHandlerRef itself)
{
	EventHandlerRefObject *it;
	it = PyObject_NEW(EventHandlerRefObject, &EventHandlerRef_Type);
	if (it == NULL) return NULL;
	it->ob_itself = itself;
982
	it->ob_callback = NULL;
983 984
	return (PyObject *)it;
}
985

986 987 988 989 990 991 992 993 994 995 996 997 998
int EventHandlerRef_Convert(PyObject *v, EventHandlerRef *p_itself)
{
	if (!EventHandlerRef_Check(v))
	{
		PyErr_SetString(PyExc_TypeError, "EventHandlerRef required");
		return 0;
	}
	*p_itself = ((EventHandlerRefObject *)v)->ob_itself;
	return 1;
}

static void EventHandlerRef_dealloc(EventHandlerRefObject *self)
{
999 1000 1001 1002
	if (self->ob_itself != NULL) {
		RemoveEventHandler(self->ob_itself);
		Py_DECREF(self->ob_callback);
	}
1003
	self->ob_type->tp_free((PyObject *)self);
1004 1005 1006 1007 1008 1009 1010
}

static PyObject *EventHandlerRef_AddEventTypesToHandler(EventHandlerRefObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	UInt32 inNumTypes;
1011
	EventTypeSpec inList;
1012 1013 1014 1015
	if (_self->ob_itself == NULL) {
		PyErr_SetString(CarbonEvents_Error, "Handler has been removed");
		return NULL;
	}
1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033
	if (!PyArg_ParseTuple(_args, "lO&",
	                      &inNumTypes,
	                      EventTypeSpec_Convert, &inList))
		return NULL;
	_err = AddEventTypesToHandler(_self->ob_itself,
	                              inNumTypes,
	                              &inList);
	if (_err != noErr) return PyMac_Error(_err);
	Py_INCREF(Py_None);
	_res = Py_None;
	return _res;
}

static PyObject *EventHandlerRef_RemoveEventTypesFromHandler(EventHandlerRefObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	UInt32 inNumTypes;
1034
	EventTypeSpec inList;
1035 1036 1037 1038
	if (_self->ob_itself == NULL) {
		PyErr_SetString(CarbonEvents_Error, "Handler has been removed");
		return NULL;
	}
1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051
	if (!PyArg_ParseTuple(_args, "lO&",
	                      &inNumTypes,
	                      EventTypeSpec_Convert, &inList))
		return NULL;
	_err = RemoveEventTypesFromHandler(_self->ob_itself,
	                                   inNumTypes,
	                                   &inList);
	if (_err != noErr) return PyMac_Error(_err);
	Py_INCREF(Py_None);
	_res = Py_None;
	return _res;
}

1052 1053 1054 1055 1056 1057
static PyObject *EventHandlerRef_RemoveEventHandler(EventHandlerRefObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;

	OSStatus _err;
	if (_self->ob_itself == NULL) {
1058 1059
	        PyErr_SetString(CarbonEvents_Error, "Handler has been removed");
	        return NULL;
1060 1061
	}
	if (!PyArg_ParseTuple(_args, ""))
1062
	        return NULL;
1063 1064 1065 1066 1067 1068 1069 1070 1071 1072
	_err = RemoveEventHandler(_self->ob_itself);
	if (_err != noErr) return PyMac_Error(_err);
	_self->ob_itself = NULL;
	Py_DECREF(_self->ob_callback);
	_self->ob_callback = NULL;
	Py_INCREF(Py_None);
	_res = Py_None;
	return _res;
}

1073 1074
static PyMethodDef EventHandlerRef_methods[] = {
	{"AddEventTypesToHandler", (PyCFunction)EventHandlerRef_AddEventTypesToHandler, 1,
1075
	 PyDoc_STR("(UInt32 inNumTypes, EventTypeSpec inList) -> None")},
1076
	{"RemoveEventTypesFromHandler", (PyCFunction)EventHandlerRef_RemoveEventTypesFromHandler, 1,
1077
	 PyDoc_STR("(UInt32 inNumTypes, EventTypeSpec inList) -> None")},
1078
	{"RemoveEventHandler", (PyCFunction)EventHandlerRef_RemoveEventHandler, 1,
1079
	 PyDoc_STR("() -> None")},
1080 1081 1082
	{NULL, NULL, 0}
};

1083
#define EventHandlerRef_getsetlist NULL
1084

1085

1086 1087 1088 1089 1090
#define EventHandlerRef_compare NULL

#define EventHandlerRef_repr NULL

#define EventHandlerRef_hash NULL
1091 1092 1093 1094
#define EventHandlerRef_tp_init 0

#define EventHandlerRef_tp_alloc PyType_GenericAlloc

1095
static PyObject *EventHandlerRef_tp_new(PyTypeObject *type, PyObject *_args, PyObject *_kwds)
1096
{
1097
	PyObject *_self;
1098 1099 1100
	EventHandlerRef itself;
	char *kw[] = {"itself", 0};

1101 1102 1103 1104
	if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, EventHandlerRef_Convert, &itself)) return NULL;
	if ((_self = type->tp_alloc(type, 0)) == NULL) return NULL;
	((EventHandlerRefObject *)_self)->ob_itself = itself;
	return _self;
1105 1106 1107 1108
}

#define EventHandlerRef_tp_free PyObject_Del

1109 1110

PyTypeObject EventHandlerRef_Type = {
1111
	PyObject_HEAD_INIT(NULL)
1112
	0, /*ob_size*/
1113
	"_CarbonEvt.EventHandlerRef", /*tp_name*/
1114 1115 1116 1117 1118
	sizeof(EventHandlerRefObject), /*tp_basicsize*/
	0, /*tp_itemsize*/
	/* methods */
	(destructor) EventHandlerRef_dealloc, /*tp_dealloc*/
	0, /*tp_print*/
1119 1120
	(getattrfunc)0, /*tp_getattr*/
	(setattrfunc)0, /*tp_setattr*/
1121 1122 1123 1124 1125 1126
	(cmpfunc) EventHandlerRef_compare, /*tp_compare*/
	(reprfunc) EventHandlerRef_repr, /*tp_repr*/
	(PyNumberMethods *)0, /* tp_as_number */
	(PySequenceMethods *)0, /* tp_as_sequence */
	(PyMappingMethods *)0, /* tp_as_mapping */
	(hashfunc) EventHandlerRef_hash, /*tp_hash*/
1127 1128 1129 1130
	0, /*tp_call*/
	0, /*tp_str*/
	PyObject_GenericGetAttr, /*tp_getattro*/
	PyObject_GenericSetAttr, /*tp_setattro */
1131 1132 1133 1134 1135 1136 1137 1138 1139
	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*/
1140
	EventHandlerRef_methods, /* tp_methods */
1141
	0, /*tp_members*/
1142
	EventHandlerRef_getsetlist, /*tp_getset*/
1143 1144 1145 1146 1147 1148 1149 1150 1151
	0, /*tp_base*/
	0, /*tp_dict*/
	0, /*tp_descr_get*/
	0, /*tp_descr_set*/
	0, /*tp_dictoffset*/
	EventHandlerRef_tp_init, /* tp_init */
	EventHandlerRef_tp_alloc, /* tp_alloc */
	EventHandlerRef_tp_new, /* tp_new */
	EventHandlerRef_tp_free, /* tp_free */
1152 1153 1154 1155 1156 1157 1158 1159 1160
};

/* ---------------- End object type EventHandlerRef ----------------- */


/* ---------------- Object type EventHandlerCallRef ----------------- */

PyTypeObject EventHandlerCallRef_Type;

1161
#define EventHandlerCallRef_Check(x) ((x)->ob_type == &EventHandlerCallRef_Type || PyObject_TypeCheck((x), &EventHandlerCallRef_Type))
1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175

typedef struct EventHandlerCallRefObject {
	PyObject_HEAD
	EventHandlerCallRef ob_itself;
} EventHandlerCallRefObject;

PyObject *EventHandlerCallRef_New(EventHandlerCallRef itself)
{
	EventHandlerCallRefObject *it;
	it = PyObject_NEW(EventHandlerCallRefObject, &EventHandlerCallRef_Type);
	if (it == NULL) return NULL;
	it->ob_itself = itself;
	return (PyObject *)it;
}
1176

1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190
int EventHandlerCallRef_Convert(PyObject *v, EventHandlerCallRef *p_itself)
{
	if (!EventHandlerCallRef_Check(v))
	{
		PyErr_SetString(PyExc_TypeError, "EventHandlerCallRef required");
		return 0;
	}
	*p_itself = ((EventHandlerCallRefObject *)v)->ob_itself;
	return 1;
}

static void EventHandlerCallRef_dealloc(EventHandlerCallRefObject *self)
{
	/* Cleanup of self->ob_itself goes here */
1191
	self->ob_type->tp_free((PyObject *)self);
1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211
}

static PyObject *EventHandlerCallRef_CallNextEventHandler(EventHandlerCallRefObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	EventRef inEvent;
	if (!PyArg_ParseTuple(_args, "O&",
	                      EventRef_Convert, &inEvent))
		return NULL;
	_err = CallNextEventHandler(_self->ob_itself,
	                            inEvent);
	if (_err != noErr) return PyMac_Error(_err);
	Py_INCREF(Py_None);
	_res = Py_None;
	return _res;
}

static PyMethodDef EventHandlerCallRef_methods[] = {
	{"CallNextEventHandler", (PyCFunction)EventHandlerCallRef_CallNextEventHandler, 1,
1212
	 PyDoc_STR("(EventRef inEvent) -> None")},
1213 1214 1215
	{NULL, NULL, 0}
};

1216
#define EventHandlerCallRef_getsetlist NULL
1217

1218

1219 1220 1221 1222 1223
#define EventHandlerCallRef_compare NULL

#define EventHandlerCallRef_repr NULL

#define EventHandlerCallRef_hash NULL
1224 1225 1226 1227
#define EventHandlerCallRef_tp_init 0

#define EventHandlerCallRef_tp_alloc PyType_GenericAlloc

1228
static PyObject *EventHandlerCallRef_tp_new(PyTypeObject *type, PyObject *_args, PyObject *_kwds)
1229
{
1230
	PyObject *_self;
1231 1232 1233
	EventHandlerCallRef itself;
	char *kw[] = {"itself", 0};

1234 1235 1236 1237
	if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, EventHandlerCallRef_Convert, &itself)) return NULL;
	if ((_self = type->tp_alloc(type, 0)) == NULL) return NULL;
	((EventHandlerCallRefObject *)_self)->ob_itself = itself;
	return _self;
1238 1239 1240 1241
}

#define EventHandlerCallRef_tp_free PyObject_Del

1242 1243

PyTypeObject EventHandlerCallRef_Type = {
1244
	PyObject_HEAD_INIT(NULL)
1245
	0, /*ob_size*/
1246
	"_CarbonEvt.EventHandlerCallRef", /*tp_name*/
1247 1248 1249 1250 1251
	sizeof(EventHandlerCallRefObject), /*tp_basicsize*/
	0, /*tp_itemsize*/
	/* methods */
	(destructor) EventHandlerCallRef_dealloc, /*tp_dealloc*/
	0, /*tp_print*/
1252 1253
	(getattrfunc)0, /*tp_getattr*/
	(setattrfunc)0, /*tp_setattr*/
1254 1255 1256 1257 1258 1259
	(cmpfunc) EventHandlerCallRef_compare, /*tp_compare*/
	(reprfunc) EventHandlerCallRef_repr, /*tp_repr*/
	(PyNumberMethods *)0, /* tp_as_number */
	(PySequenceMethods *)0, /* tp_as_sequence */
	(PyMappingMethods *)0, /* tp_as_mapping */
	(hashfunc) EventHandlerCallRef_hash, /*tp_hash*/
1260 1261 1262 1263
	0, /*tp_call*/
	0, /*tp_str*/
	PyObject_GenericGetAttr, /*tp_getattro*/
	PyObject_GenericSetAttr, /*tp_setattro */
1264 1265 1266 1267 1268 1269 1270 1271 1272
	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*/
1273
	EventHandlerCallRef_methods, /* tp_methods */
1274
	0, /*tp_members*/
1275
	EventHandlerCallRef_getsetlist, /*tp_getset*/
1276 1277 1278 1279 1280 1281 1282 1283 1284
	0, /*tp_base*/
	0, /*tp_dict*/
	0, /*tp_descr_get*/
	0, /*tp_descr_set*/
	0, /*tp_dictoffset*/
	EventHandlerCallRef_tp_init, /* tp_init */
	EventHandlerCallRef_tp_alloc, /* tp_alloc */
	EventHandlerCallRef_tp_new, /* tp_new */
	EventHandlerCallRef_tp_free, /* tp_free */
1285 1286 1287 1288 1289 1290 1291 1292 1293
};

/* -------------- End object type EventHandlerCallRef --------------- */


/* ------------------- Object type EventTargetRef ------------------- */

PyTypeObject EventTargetRef_Type;

1294
#define EventTargetRef_Check(x) ((x)->ob_type == &EventTargetRef_Type || PyObject_TypeCheck((x), &EventTargetRef_Type))
1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308

typedef struct EventTargetRefObject {
	PyObject_HEAD
	EventTargetRef ob_itself;
} EventTargetRefObject;

PyObject *EventTargetRef_New(EventTargetRef itself)
{
	EventTargetRefObject *it;
	it = PyObject_NEW(EventTargetRefObject, &EventTargetRef_Type);
	if (it == NULL) return NULL;
	it->ob_itself = itself;
	return (PyObject *)it;
}
1309

1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323
int EventTargetRef_Convert(PyObject *v, EventTargetRef *p_itself)
{
	if (!EventTargetRef_Check(v))
	{
		PyErr_SetString(PyExc_TypeError, "EventTargetRef required");
		return 0;
	}
	*p_itself = ((EventTargetRefObject *)v)->ob_itself;
	return 1;
}

static void EventTargetRef_dealloc(EventTargetRefObject *self)
{
	/* Cleanup of self->ob_itself goes here */
1324
	self->ob_type->tp_free((PyObject *)self);
1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349
}

static PyObject *EventTargetRef_InstallStandardEventHandler(EventTargetRefObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	if (!PyArg_ParseTuple(_args, ""))
		return NULL;
	_err = InstallStandardEventHandler(_self->ob_itself);
	if (_err != noErr) return PyMac_Error(_err);
	Py_INCREF(Py_None);
	_res = Py_None;
	return _res;
}

static PyObject *EventTargetRef_InstallEventHandler(EventTargetRefObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;

	EventTypeSpec inSpec;
	PyObject *callback;
	EventHandlerRef outRef;
	OSStatus _err;

	if (!PyArg_ParseTuple(_args, "O&O", EventTypeSpec_Convert, &inSpec, &callback))
1350
	        return NULL;
1351

1352
	_err = InstallEventHandler(_self->ob_itself, myEventHandlerUPP, 1, &inSpec, (void *)callback, &outRef);
1353 1354
	if (_err != noErr) return PyMac_Error(_err);

1355 1356
	_res = EventHandlerRef_New(outRef);
	if (_res != NULL) {
1357 1358
	        ((EventHandlerRefObject*)_res)->ob_callback = callback;
	        Py_INCREF(callback);
1359 1360
	}
	return _res;
1361 1362 1363 1364
}

static PyMethodDef EventTargetRef_methods[] = {
	{"InstallStandardEventHandler", (PyCFunction)EventTargetRef_InstallStandardEventHandler, 1,
1365
	 PyDoc_STR("() -> None")},
1366
	{"InstallEventHandler", (PyCFunction)EventTargetRef_InstallEventHandler, 1,
1367
	 PyDoc_STR("(EventTypeSpec inSpec, Method callback) -> (EventHandlerRef outRef)")},
1368 1369 1370
	{NULL, NULL, 0}
};

1371
#define EventTargetRef_getsetlist NULL
1372

1373

1374 1375 1376 1377 1378
#define EventTargetRef_compare NULL

#define EventTargetRef_repr NULL

#define EventTargetRef_hash NULL
1379 1380 1381 1382
#define EventTargetRef_tp_init 0

#define EventTargetRef_tp_alloc PyType_GenericAlloc

1383
static PyObject *EventTargetRef_tp_new(PyTypeObject *type, PyObject *_args, PyObject *_kwds)
1384
{
1385
	PyObject *_self;
1386 1387 1388
	EventTargetRef itself;
	char *kw[] = {"itself", 0};

1389 1390 1391 1392
	if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, EventTargetRef_Convert, &itself)) return NULL;
	if ((_self = type->tp_alloc(type, 0)) == NULL) return NULL;
	((EventTargetRefObject *)_self)->ob_itself = itself;
	return _self;
1393 1394 1395 1396
}

#define EventTargetRef_tp_free PyObject_Del

1397 1398

PyTypeObject EventTargetRef_Type = {
1399
	PyObject_HEAD_INIT(NULL)
1400
	0, /*ob_size*/
1401
	"_CarbonEvt.EventTargetRef", /*tp_name*/
1402 1403 1404 1405 1406
	sizeof(EventTargetRefObject), /*tp_basicsize*/
	0, /*tp_itemsize*/
	/* methods */
	(destructor) EventTargetRef_dealloc, /*tp_dealloc*/
	0, /*tp_print*/
1407 1408
	(getattrfunc)0, /*tp_getattr*/
	(setattrfunc)0, /*tp_setattr*/
1409 1410 1411 1412 1413 1414
	(cmpfunc) EventTargetRef_compare, /*tp_compare*/
	(reprfunc) EventTargetRef_repr, /*tp_repr*/
	(PyNumberMethods *)0, /* tp_as_number */
	(PySequenceMethods *)0, /* tp_as_sequence */
	(PyMappingMethods *)0, /* tp_as_mapping */
	(hashfunc) EventTargetRef_hash, /*tp_hash*/
1415 1416 1417 1418
	0, /*tp_call*/
	0, /*tp_str*/
	PyObject_GenericGetAttr, /*tp_getattro*/
	PyObject_GenericSetAttr, /*tp_setattro */
1419 1420 1421 1422 1423 1424 1425 1426 1427
	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*/
1428
	EventTargetRef_methods, /* tp_methods */
1429
	0, /*tp_members*/
1430
	EventTargetRef_getsetlist, /*tp_getset*/
1431 1432 1433 1434 1435 1436 1437 1438 1439
	0, /*tp_base*/
	0, /*tp_dict*/
	0, /*tp_descr_get*/
	0, /*tp_descr_set*/
	0, /*tp_dictoffset*/
	EventTargetRef_tp_init, /* tp_init */
	EventTargetRef_tp_alloc, /* tp_alloc */
	EventTargetRef_tp_new, /* tp_new */
	EventTargetRef_tp_free, /* tp_free */
1440 1441 1442 1443 1444 1445 1446 1447 1448
};

/* ----------------- End object type EventTargetRef ----------------- */


/* ------------------- Object type EventHotKeyRef ------------------- */

PyTypeObject EventHotKeyRef_Type;

1449
#define EventHotKeyRef_Check(x) ((x)->ob_type == &EventHotKeyRef_Type || PyObject_TypeCheck((x), &EventHotKeyRef_Type))
1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463

typedef struct EventHotKeyRefObject {
	PyObject_HEAD
	EventHotKeyRef ob_itself;
} EventHotKeyRefObject;

PyObject *EventHotKeyRef_New(EventHotKeyRef itself)
{
	EventHotKeyRefObject *it;
	it = PyObject_NEW(EventHotKeyRefObject, &EventHotKeyRef_Type);
	if (it == NULL) return NULL;
	it->ob_itself = itself;
	return (PyObject *)it;
}
1464

1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478
int EventHotKeyRef_Convert(PyObject *v, EventHotKeyRef *p_itself)
{
	if (!EventHotKeyRef_Check(v))
	{
		PyErr_SetString(PyExc_TypeError, "EventHotKeyRef required");
		return 0;
	}
	*p_itself = ((EventHotKeyRefObject *)v)->ob_itself;
	return 1;
}

static void EventHotKeyRef_dealloc(EventHotKeyRefObject *self)
{
	/* Cleanup of self->ob_itself goes here */
1479
	self->ob_type->tp_free((PyObject *)self);
1480 1481
}

1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494
static PyObject *EventHotKeyRef_UnregisterEventHotKey(EventHotKeyRefObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	if (!PyArg_ParseTuple(_args, ""))
		return NULL;
	_err = UnregisterEventHotKey(_self->ob_itself);
	if (_err != noErr) return PyMac_Error(_err);
	Py_INCREF(Py_None);
	_res = Py_None;
	return _res;
}

1495
static PyMethodDef EventHotKeyRef_methods[] = {
1496
	{"UnregisterEventHotKey", (PyCFunction)EventHotKeyRef_UnregisterEventHotKey, 1,
1497
	 PyDoc_STR("() -> None")},
1498 1499 1500
	{NULL, NULL, 0}
};

1501
#define EventHotKeyRef_getsetlist NULL
1502

1503

1504 1505 1506 1507 1508
#define EventHotKeyRef_compare NULL

#define EventHotKeyRef_repr NULL

#define EventHotKeyRef_hash NULL
1509 1510 1511 1512
#define EventHotKeyRef_tp_init 0

#define EventHotKeyRef_tp_alloc PyType_GenericAlloc

1513
static PyObject *EventHotKeyRef_tp_new(PyTypeObject *type, PyObject *_args, PyObject *_kwds)
1514
{
1515
	PyObject *_self;
1516 1517 1518
	EventHotKeyRef itself;
	char *kw[] = {"itself", 0};

1519 1520 1521 1522
	if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, EventHotKeyRef_Convert, &itself)) return NULL;
	if ((_self = type->tp_alloc(type, 0)) == NULL) return NULL;
	((EventHotKeyRefObject *)_self)->ob_itself = itself;
	return _self;
1523 1524 1525 1526
}

#define EventHotKeyRef_tp_free PyObject_Del

1527 1528

PyTypeObject EventHotKeyRef_Type = {
1529
	PyObject_HEAD_INIT(NULL)
1530
	0, /*ob_size*/
1531
	"_CarbonEvt.EventHotKeyRef", /*tp_name*/
1532 1533 1534 1535 1536
	sizeof(EventHotKeyRefObject), /*tp_basicsize*/
	0, /*tp_itemsize*/
	/* methods */
	(destructor) EventHotKeyRef_dealloc, /*tp_dealloc*/
	0, /*tp_print*/
1537 1538
	(getattrfunc)0, /*tp_getattr*/
	(setattrfunc)0, /*tp_setattr*/
1539 1540 1541 1542 1543 1544
	(cmpfunc) EventHotKeyRef_compare, /*tp_compare*/
	(reprfunc) EventHotKeyRef_repr, /*tp_repr*/
	(PyNumberMethods *)0, /* tp_as_number */
	(PySequenceMethods *)0, /* tp_as_sequence */
	(PyMappingMethods *)0, /* tp_as_mapping */
	(hashfunc) EventHotKeyRef_hash, /*tp_hash*/
1545 1546 1547 1548
	0, /*tp_call*/
	0, /*tp_str*/
	PyObject_GenericGetAttr, /*tp_getattro*/
	PyObject_GenericSetAttr, /*tp_setattro */
1549 1550 1551 1552 1553 1554 1555 1556 1557
	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*/
1558
	EventHotKeyRef_methods, /* tp_methods */
1559
	0, /*tp_members*/
1560
	EventHotKeyRef_getsetlist, /*tp_getset*/
1561 1562 1563 1564 1565 1566 1567 1568 1569
	0, /*tp_base*/
	0, /*tp_dict*/
	0, /*tp_descr_get*/
	0, /*tp_descr_set*/
	0, /*tp_dictoffset*/
	EventHotKeyRef_tp_init, /* tp_init */
	EventHotKeyRef_tp_alloc, /* tp_alloc */
	EventHotKeyRef_tp_new, /* tp_new */
	EventHotKeyRef_tp_free, /* tp_free */
1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618
};

/* ----------------- End object type EventHotKeyRef ----------------- */


static PyObject *CarbonEvents_GetCurrentEventLoop(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	EventLoopRef _rv;
	if (!PyArg_ParseTuple(_args, ""))
		return NULL;
	_rv = GetCurrentEventLoop();
	_res = Py_BuildValue("O&",
	                     EventLoopRef_New, _rv);
	return _res;
}

static PyObject *CarbonEvents_GetMainEventLoop(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	EventLoopRef _rv;
	if (!PyArg_ParseTuple(_args, ""))
		return NULL;
	_rv = GetMainEventLoop();
	_res = Py_BuildValue("O&",
	                     EventLoopRef_New, _rv);
	return _res;
}

static PyObject *CarbonEvents_RunCurrentEventLoop(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	double inTimeout;
	if (!PyArg_ParseTuple(_args, "d",
	                      &inTimeout))
		return NULL;
	_err = RunCurrentEventLoop(inTimeout);
	if (_err != noErr) return PyMac_Error(_err);
	Py_INCREF(Py_None);
	_res = Py_None;
	return _res;
}

static PyObject *CarbonEvents_ReceiveNextEvent(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	UInt32 inNumTypes;
1619
	EventTypeSpec inList;
1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675
	double inTimeout;
	Boolean inPullEvent;
	EventRef outEvent;
	if (!PyArg_ParseTuple(_args, "lO&db",
	                      &inNumTypes,
	                      EventTypeSpec_Convert, &inList,
	                      &inTimeout,
	                      &inPullEvent))
		return NULL;
	_err = ReceiveNextEvent(inNumTypes,
	                        &inList,
	                        inTimeout,
	                        inPullEvent,
	                        &outEvent);
	if (_err != noErr) return PyMac_Error(_err);
	_res = Py_BuildValue("O&",
	                     EventRef_New, outEvent);
	return _res;
}

static PyObject *CarbonEvents_GetCurrentEventQueue(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	EventQueueRef _rv;
	if (!PyArg_ParseTuple(_args, ""))
		return NULL;
	_rv = GetCurrentEventQueue();
	_res = Py_BuildValue("O&",
	                     EventQueueRef_New, _rv);
	return _res;
}

static PyObject *CarbonEvents_GetMainEventQueue(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	EventQueueRef _rv;
	if (!PyArg_ParseTuple(_args, ""))
		return NULL;
	_rv = GetMainEventQueue();
	_res = Py_BuildValue("O&",
	                     EventQueueRef_New, _rv);
	return _res;
}

static PyObject *CarbonEvents_GetCurrentEventTime(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	double _rv;
	if (!PyArg_ParseTuple(_args, ""))
		return NULL;
	_rv = GetCurrentEventTime();
	_res = Py_BuildValue("d",
	                     _rv);
	return _res;
}

1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732
static PyObject *CarbonEvents_TrackMouseLocation(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	GrafPtr inPort;
	Point outPt;
	UInt16 outResult;
	if (!PyArg_ParseTuple(_args, "O&",
	                      GrafObj_Convert, &inPort))
		return NULL;
	_err = TrackMouseLocation(inPort,
	                          &outPt,
	                          &outResult);
	if (_err != noErr) return PyMac_Error(_err);
	_res = Py_BuildValue("O&H",
	                     PyMac_BuildPoint, outPt,
	                     outResult);
	return _res;
}

static PyObject *CarbonEvents_TrackMouseLocationWithOptions(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	GrafPtr inPort;
	OptionBits inOptions;
	double inTimeout;
	Point outPt;
	UInt32 outModifiers;
	UInt16 outResult;
	if (!PyArg_ParseTuple(_args, "O&ld",
	                      GrafObj_Convert, &inPort,
	                      &inOptions,
	                      &inTimeout))
		return NULL;
	_err = TrackMouseLocationWithOptions(inPort,
	                                     inOptions,
	                                     inTimeout,
	                                     &outPt,
	                                     &outModifiers,
	                                     &outResult);
	if (_err != noErr) return PyMac_Error(_err);
	_res = Py_BuildValue("O&lH",
	                     PyMac_BuildPoint, outPt,
	                     outModifiers,
	                     outResult);
	return _res;
}

static PyObject *CarbonEvents_TrackMouseRegion(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	GrafPtr inPort;
	RgnHandle inRegion;
	Boolean ioWasInRgn;
	UInt16 outResult;
1733
	if (!PyArg_ParseTuple(_args, "O&O&b",
1734
	                      GrafObj_Convert, &inPort,
1735 1736
	                      ResObj_Convert, &inRegion,
	                      &ioWasInRgn))
1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748
		return NULL;
	_err = TrackMouseRegion(inPort,
	                        inRegion,
	                        &ioWasInRgn,
	                        &outResult);
	if (_err != noErr) return PyMac_Error(_err);
	_res = Py_BuildValue("bH",
	                     ioWasInRgn,
	                     outResult);
	return _res;
}

1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760
static PyObject *CarbonEvents_GetLastUserEventTime(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	double _rv;
	if (!PyArg_ParseTuple(_args, ""))
		return NULL;
	_rv = GetLastUserEventTime();
	_res = Py_BuildValue("d",
	                     _rv);
	return _res;
}

1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789
static PyObject *CarbonEvents_IsMouseCoalescingEnabled(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	Boolean _rv;
	if (!PyArg_ParseTuple(_args, ""))
		return NULL;
	_rv = IsMouseCoalescingEnabled();
	_res = Py_BuildValue("b",
	                     _rv);
	return _res;
}

static PyObject *CarbonEvents_SetMouseCoalescingEnabled(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	Boolean inNewState;
	Boolean outOldState;
	if (!PyArg_ParseTuple(_args, "b",
	                      &inNewState))
		return NULL;
	_err = SetMouseCoalescingEnabled(inNewState,
	                                 &outOldState);
	if (_err != noErr) return PyMac_Error(_err);
	_res = Py_BuildValue("b",
	                     outOldState);
	return _res;
}

1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855
static PyObject *CarbonEvents_GetWindowEventTarget(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	EventTargetRef _rv;
	WindowPtr inWindow;
	if (!PyArg_ParseTuple(_args, "O&",
	                      WinObj_Convert, &inWindow))
		return NULL;
	_rv = GetWindowEventTarget(inWindow);
	_res = Py_BuildValue("O&",
	                     EventTargetRef_New, _rv);
	return _res;
}

static PyObject *CarbonEvents_GetControlEventTarget(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	EventTargetRef _rv;
	ControlHandle inControl;
	if (!PyArg_ParseTuple(_args, "O&",
	                      CtlObj_Convert, &inControl))
		return NULL;
	_rv = GetControlEventTarget(inControl);
	_res = Py_BuildValue("O&",
	                     EventTargetRef_New, _rv);
	return _res;
}

static PyObject *CarbonEvents_GetMenuEventTarget(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	EventTargetRef _rv;
	MenuHandle inMenu;
	if (!PyArg_ParseTuple(_args, "O&",
	                      MenuObj_Convert, &inMenu))
		return NULL;
	_rv = GetMenuEventTarget(inMenu);
	_res = Py_BuildValue("O&",
	                     EventTargetRef_New, _rv);
	return _res;
}

static PyObject *CarbonEvents_GetApplicationEventTarget(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	EventTargetRef _rv;
	if (!PyArg_ParseTuple(_args, ""))
		return NULL;
	_rv = GetApplicationEventTarget();
	_res = Py_BuildValue("O&",
	                     EventTargetRef_New, _rv);
	return _res;
}

static PyObject *CarbonEvents_GetUserFocusEventTarget(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	EventTargetRef _rv;
	if (!PyArg_ParseTuple(_args, ""))
		return NULL;
	_rv = GetUserFocusEventTarget();
	_res = Py_BuildValue("O&",
	                     EventTargetRef_New, _rv);
	return _res;
}

1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867
static PyObject *CarbonEvents_GetEventDispatcherTarget(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	EventTargetRef _rv;
	if (!PyArg_ParseTuple(_args, ""))
		return NULL;
	_rv = GetEventDispatcherTarget();
	_res = Py_BuildValue("O&",
	                     EventTargetRef_New, _rv);
	return _res;
}

1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878
static PyObject *CarbonEvents_RunApplicationEventLoop(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	if (!PyArg_ParseTuple(_args, ""))
		return NULL;
	RunApplicationEventLoop();
	Py_INCREF(Py_None);
	_res = Py_None;
	return _res;
}

1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889
static PyObject *CarbonEvents_QuitApplicationEventLoop(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	if (!PyArg_ParseTuple(_args, ""))
		return NULL;
	QuitApplicationEventLoop();
	Py_INCREF(Py_None);
	_res = Py_None;
	return _res;
}

1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949
static PyObject *CarbonEvents_RunAppModalLoopForWindow(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	WindowPtr inWindow;
	if (!PyArg_ParseTuple(_args, "O&",
	                      WinObj_Convert, &inWindow))
		return NULL;
	_err = RunAppModalLoopForWindow(inWindow);
	if (_err != noErr) return PyMac_Error(_err);
	Py_INCREF(Py_None);
	_res = Py_None;
	return _res;
}

static PyObject *CarbonEvents_QuitAppModalLoopForWindow(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	WindowPtr inWindow;
	if (!PyArg_ParseTuple(_args, "O&",
	                      WinObj_Convert, &inWindow))
		return NULL;
	_err = QuitAppModalLoopForWindow(inWindow);
	if (_err != noErr) return PyMac_Error(_err);
	Py_INCREF(Py_None);
	_res = Py_None;
	return _res;
}

static PyObject *CarbonEvents_BeginAppModalStateForWindow(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	WindowPtr inWindow;
	if (!PyArg_ParseTuple(_args, "O&",
	                      WinObj_Convert, &inWindow))
		return NULL;
	_err = BeginAppModalStateForWindow(inWindow);
	if (_err != noErr) return PyMac_Error(_err);
	Py_INCREF(Py_None);
	_res = Py_None;
	return _res;
}

static PyObject *CarbonEvents_EndAppModalStateForWindow(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	WindowPtr inWindow;
	if (!PyArg_ParseTuple(_args, "O&",
	                      WinObj_Convert, &inWindow))
		return NULL;
	_err = EndAppModalStateForWindow(inWindow);
	if (_err != noErr) return PyMac_Error(_err);
	Py_INCREF(Py_None);
	_res = Py_None;
	return _res;
}

1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046
static PyObject *CarbonEvents_SetUserFocusWindow(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	WindowPtr inWindow;
	if (!PyArg_ParseTuple(_args, "O&",
	                      WinObj_Convert, &inWindow))
		return NULL;
	_err = SetUserFocusWindow(inWindow);
	if (_err != noErr) return PyMac_Error(_err);
	Py_INCREF(Py_None);
	_res = Py_None;
	return _res;
}

static PyObject *CarbonEvents_GetUserFocusWindow(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	WindowPtr _rv;
	if (!PyArg_ParseTuple(_args, ""))
		return NULL;
	_rv = GetUserFocusWindow();
	_res = Py_BuildValue("O&",
	                     WinObj_New, _rv);
	return _res;
}

static PyObject *CarbonEvents_SetWindowDefaultButton(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	WindowPtr inWindow;
	ControlHandle inControl;
	if (!PyArg_ParseTuple(_args, "O&O&",
	                      WinObj_Convert, &inWindow,
	                      CtlObj_Convert, &inControl))
		return NULL;
	_err = SetWindowDefaultButton(inWindow,
	                              inControl);
	if (_err != noErr) return PyMac_Error(_err);
	Py_INCREF(Py_None);
	_res = Py_None;
	return _res;
}

static PyObject *CarbonEvents_SetWindowCancelButton(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	WindowPtr inWindow;
	ControlHandle inControl;
	if (!PyArg_ParseTuple(_args, "O&O&",
	                      WinObj_Convert, &inWindow,
	                      CtlObj_Convert, &inControl))
		return NULL;
	_err = SetWindowCancelButton(inWindow,
	                             inControl);
	if (_err != noErr) return PyMac_Error(_err);
	Py_INCREF(Py_None);
	_res = Py_None;
	return _res;
}

static PyObject *CarbonEvents_GetWindowDefaultButton(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	WindowPtr inWindow;
	ControlHandle outControl;
	if (!PyArg_ParseTuple(_args, "O&",
	                      WinObj_Convert, &inWindow))
		return NULL;
	_err = GetWindowDefaultButton(inWindow,
	                              &outControl);
	if (_err != noErr) return PyMac_Error(_err);
	_res = Py_BuildValue("O&",
	                     CtlObj_New, outControl);
	return _res;
}

static PyObject *CarbonEvents_GetWindowCancelButton(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	WindowPtr inWindow;
	ControlHandle outControl;
	if (!PyArg_ParseTuple(_args, "O&",
	                      WinObj_Convert, &inWindow))
		return NULL;
	_err = GetWindowCancelButton(inWindow,
	                             &outControl);
	if (_err != noErr) return PyMac_Error(_err);
	_res = Py_BuildValue("O&",
	                     CtlObj_New, outControl);
	return _res;
}

2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075
static PyObject *CarbonEvents_RegisterEventHotKey(PyObject *_self, PyObject *_args)
{
	PyObject *_res = NULL;
	OSStatus _err;
	UInt32 inHotKeyCode;
	UInt32 inHotKeyModifiers;
	EventHotKeyID inHotKeyID;
	EventTargetRef inTarget;
	OptionBits inOptions;
	EventHotKeyRef outRef;
	if (!PyArg_ParseTuple(_args, "llO&O&l",
	                      &inHotKeyCode,
	                      &inHotKeyModifiers,
	                      EventHotKeyID_Convert, &inHotKeyID,
	                      EventTargetRef_Convert, &inTarget,
	                      &inOptions))
		return NULL;
	_err = RegisterEventHotKey(inHotKeyCode,
	                           inHotKeyModifiers,
	                           inHotKeyID,
	                           inTarget,
	                           inOptions,
	                           &outRef);
	if (_err != noErr) return PyMac_Error(_err);
	_res = Py_BuildValue("O&",
	                     EventHotKeyRef_New, outRef);
	return _res;
}

2076 2077
static PyMethodDef CarbonEvents_methods[] = {
	{"GetCurrentEventLoop", (PyCFunction)CarbonEvents_GetCurrentEventLoop, 1,
2078
	 PyDoc_STR("() -> (EventLoopRef _rv)")},
2079
	{"GetMainEventLoop", (PyCFunction)CarbonEvents_GetMainEventLoop, 1,
2080
	 PyDoc_STR("() -> (EventLoopRef _rv)")},
2081
	{"RunCurrentEventLoop", (PyCFunction)CarbonEvents_RunCurrentEventLoop, 1,
2082
	 PyDoc_STR("(double inTimeout) -> None")},
2083
	{"ReceiveNextEvent", (PyCFunction)CarbonEvents_ReceiveNextEvent, 1,
2084
	 PyDoc_STR("(UInt32 inNumTypes, EventTypeSpec inList, double inTimeout, Boolean inPullEvent) -> (EventRef outEvent)")},
2085
	{"GetCurrentEventQueue", (PyCFunction)CarbonEvents_GetCurrentEventQueue, 1,
2086
	 PyDoc_STR("() -> (EventQueueRef _rv)")},
2087
	{"GetMainEventQueue", (PyCFunction)CarbonEvents_GetMainEventQueue, 1,
2088
	 PyDoc_STR("() -> (EventQueueRef _rv)")},
2089
	{"GetCurrentEventTime", (PyCFunction)CarbonEvents_GetCurrentEventTime, 1,
2090
	 PyDoc_STR("() -> (double _rv)")},
2091
	{"TrackMouseLocation", (PyCFunction)CarbonEvents_TrackMouseLocation, 1,
2092
	 PyDoc_STR("(GrafPtr inPort) -> (Point outPt, UInt16 outResult)")},
2093
	{"TrackMouseLocationWithOptions", (PyCFunction)CarbonEvents_TrackMouseLocationWithOptions, 1,
2094
	 PyDoc_STR("(GrafPtr inPort, OptionBits inOptions, double inTimeout) -> (Point outPt, UInt32 outModifiers, UInt16 outResult)")},
2095
	{"TrackMouseRegion", (PyCFunction)CarbonEvents_TrackMouseRegion, 1,
2096
	 PyDoc_STR("(GrafPtr inPort, RgnHandle inRegion, Boolean ioWasInRgn) -> (Boolean ioWasInRgn, UInt16 outResult)")},
2097
	{"GetLastUserEventTime", (PyCFunction)CarbonEvents_GetLastUserEventTime, 1,
2098
	 PyDoc_STR("() -> (double _rv)")},
2099 2100 2101 2102
	{"IsMouseCoalescingEnabled", (PyCFunction)CarbonEvents_IsMouseCoalescingEnabled, 1,
	 PyDoc_STR("() -> (Boolean _rv)")},
	{"SetMouseCoalescingEnabled", (PyCFunction)CarbonEvents_SetMouseCoalescingEnabled, 1,
	 PyDoc_STR("(Boolean inNewState) -> (Boolean outOldState)")},
2103
	{"GetWindowEventTarget", (PyCFunction)CarbonEvents_GetWindowEventTarget, 1,
2104
	 PyDoc_STR("(WindowPtr inWindow) -> (EventTargetRef _rv)")},
2105
	{"GetControlEventTarget", (PyCFunction)CarbonEvents_GetControlEventTarget, 1,
2106
	 PyDoc_STR("(ControlHandle inControl) -> (EventTargetRef _rv)")},
2107
	{"GetMenuEventTarget", (PyCFunction)CarbonEvents_GetMenuEventTarget, 1,
2108
	 PyDoc_STR("(MenuHandle inMenu) -> (EventTargetRef _rv)")},
2109
	{"GetApplicationEventTarget", (PyCFunction)CarbonEvents_GetApplicationEventTarget, 1,
2110
	 PyDoc_STR("() -> (EventTargetRef _rv)")},
2111
	{"GetUserFocusEventTarget", (PyCFunction)CarbonEvents_GetUserFocusEventTarget, 1,
2112
	 PyDoc_STR("() -> (EventTargetRef _rv)")},
2113
	{"GetEventDispatcherTarget", (PyCFunction)CarbonEvents_GetEventDispatcherTarget, 1,
2114
	 PyDoc_STR("() -> (EventTargetRef _rv)")},
2115 2116
	{"RunApplicationEventLoop", (PyCFunction)CarbonEvents_RunApplicationEventLoop, 1,
	 PyDoc_STR("() -> None")},
2117
	{"QuitApplicationEventLoop", (PyCFunction)CarbonEvents_QuitApplicationEventLoop, 1,
2118
	 PyDoc_STR("() -> None")},
2119
	{"RunAppModalLoopForWindow", (PyCFunction)CarbonEvents_RunAppModalLoopForWindow, 1,
2120
	 PyDoc_STR("(WindowPtr inWindow) -> None")},
2121
	{"QuitAppModalLoopForWindow", (PyCFunction)CarbonEvents_QuitAppModalLoopForWindow, 1,
2122
	 PyDoc_STR("(WindowPtr inWindow) -> None")},
2123
	{"BeginAppModalStateForWindow", (PyCFunction)CarbonEvents_BeginAppModalStateForWindow, 1,
2124
	 PyDoc_STR("(WindowPtr inWindow) -> None")},
2125
	{"EndAppModalStateForWindow", (PyCFunction)CarbonEvents_EndAppModalStateForWindow, 1,
2126
	 PyDoc_STR("(WindowPtr inWindow) -> None")},
2127
	{"SetUserFocusWindow", (PyCFunction)CarbonEvents_SetUserFocusWindow, 1,
2128
	 PyDoc_STR("(WindowPtr inWindow) -> None")},
2129
	{"GetUserFocusWindow", (PyCFunction)CarbonEvents_GetUserFocusWindow, 1,
2130
	 PyDoc_STR("() -> (WindowPtr _rv)")},
2131
	{"SetWindowDefaultButton", (PyCFunction)CarbonEvents_SetWindowDefaultButton, 1,
2132
	 PyDoc_STR("(WindowPtr inWindow, ControlHandle inControl) -> None")},
2133
	{"SetWindowCancelButton", (PyCFunction)CarbonEvents_SetWindowCancelButton, 1,
2134
	 PyDoc_STR("(WindowPtr inWindow, ControlHandle inControl) -> None")},
2135
	{"GetWindowDefaultButton", (PyCFunction)CarbonEvents_GetWindowDefaultButton, 1,
2136
	 PyDoc_STR("(WindowPtr inWindow) -> (ControlHandle outControl)")},
2137
	{"GetWindowCancelButton", (PyCFunction)CarbonEvents_GetWindowCancelButton, 1,
2138
	 PyDoc_STR("(WindowPtr inWindow) -> (ControlHandle outControl)")},
2139
	{"RegisterEventHotKey", (PyCFunction)CarbonEvents_RegisterEventHotKey, 1,
2140
	 PyDoc_STR("(UInt32 inHotKeyCode, UInt32 inHotKeyModifiers, EventHotKeyID inHotKeyID, EventTargetRef inTarget, OptionBits inOptions) -> (EventHotKeyRef outRef)")},
2141 2142 2143
	{NULL, NULL, 0}
};

2144 2145 2146 2147 2148 2149 2150
#else /* __LP64__ */

static PyMethodDef CarbonEvents_methods[] = {
	{NULL, NULL, 0}
};

#endif /* __LP64__ */
2151 2152 2153



2154
void init_CarbonEvt(void)
2155 2156
{
	PyObject *m;
2157
#ifndef __LP64__
2158
	PyObject *d;
2159
#endif /* !__LP64__ */
2160 2161


2162
	m = Py_InitModule("_CarbonEvt", CarbonEvents_methods);
2163

2164
#ifndef __LP64__
2165
	myEventHandlerUPP = NewEventHandlerUPP(myEventHandler);
2166 2167 2168 2169 2170 2171
	d = PyModule_GetDict(m);
	CarbonEvents_Error = PyMac_GetOSErrException();
	if (CarbonEvents_Error == NULL ||
	    PyDict_SetItemString(d, "Error", CarbonEvents_Error) != 0)
		return;
	EventRef_Type.ob_type = &PyType_Type;
2172
	if (PyType_Ready(&EventRef_Type) < 0) return;
2173
	Py_INCREF(&EventRef_Type);
2174 2175 2176 2177
	PyModule_AddObject(m, "EventRef", (PyObject *)&EventRef_Type);
	/* Backward-compatible name */
	Py_INCREF(&EventRef_Type);
	PyModule_AddObject(m, "EventRefType", (PyObject *)&EventRef_Type);
2178
	EventQueueRef_Type.ob_type = &PyType_Type;
2179
	if (PyType_Ready(&EventQueueRef_Type) < 0) return;
2180
	Py_INCREF(&EventQueueRef_Type);
2181 2182 2183 2184
	PyModule_AddObject(m, "EventQueueRef", (PyObject *)&EventQueueRef_Type);
	/* Backward-compatible name */
	Py_INCREF(&EventQueueRef_Type);
	PyModule_AddObject(m, "EventQueueRefType", (PyObject *)&EventQueueRef_Type);
2185
	EventLoopRef_Type.ob_type = &PyType_Type;
2186
	if (PyType_Ready(&EventLoopRef_Type) < 0) return;
2187
	Py_INCREF(&EventLoopRef_Type);
2188 2189 2190 2191
	PyModule_AddObject(m, "EventLoopRef", (PyObject *)&EventLoopRef_Type);
	/* Backward-compatible name */
	Py_INCREF(&EventLoopRef_Type);
	PyModule_AddObject(m, "EventLoopRefType", (PyObject *)&EventLoopRef_Type);
2192
	EventLoopTimerRef_Type.ob_type = &PyType_Type;
2193
	if (PyType_Ready(&EventLoopTimerRef_Type) < 0) return;
2194
	Py_INCREF(&EventLoopTimerRef_Type);
2195 2196 2197 2198
	PyModule_AddObject(m, "EventLoopTimerRef", (PyObject *)&EventLoopTimerRef_Type);
	/* Backward-compatible name */
	Py_INCREF(&EventLoopTimerRef_Type);
	PyModule_AddObject(m, "EventLoopTimerRefType", (PyObject *)&EventLoopTimerRef_Type);
2199
	EventHandlerRef_Type.ob_type = &PyType_Type;
2200
	if (PyType_Ready(&EventHandlerRef_Type) < 0) return;
2201
	Py_INCREF(&EventHandlerRef_Type);
2202 2203 2204 2205
	PyModule_AddObject(m, "EventHandlerRef", (PyObject *)&EventHandlerRef_Type);
	/* Backward-compatible name */
	Py_INCREF(&EventHandlerRef_Type);
	PyModule_AddObject(m, "EventHandlerRefType", (PyObject *)&EventHandlerRef_Type);
2206
	EventHandlerCallRef_Type.ob_type = &PyType_Type;
2207
	if (PyType_Ready(&EventHandlerCallRef_Type) < 0) return;
2208
	Py_INCREF(&EventHandlerCallRef_Type);
2209 2210 2211 2212
	PyModule_AddObject(m, "EventHandlerCallRef", (PyObject *)&EventHandlerCallRef_Type);
	/* Backward-compatible name */
	Py_INCREF(&EventHandlerCallRef_Type);
	PyModule_AddObject(m, "EventHandlerCallRefType", (PyObject *)&EventHandlerCallRef_Type);
2213
	EventTargetRef_Type.ob_type = &PyType_Type;
2214
	if (PyType_Ready(&EventTargetRef_Type) < 0) return;
2215
	Py_INCREF(&EventTargetRef_Type);
2216 2217 2218 2219
	PyModule_AddObject(m, "EventTargetRef", (PyObject *)&EventTargetRef_Type);
	/* Backward-compatible name */
	Py_INCREF(&EventTargetRef_Type);
	PyModule_AddObject(m, "EventTargetRefType", (PyObject *)&EventTargetRef_Type);
2220
	EventHotKeyRef_Type.ob_type = &PyType_Type;
2221
	if (PyType_Ready(&EventHotKeyRef_Type) < 0) return;
2222
	Py_INCREF(&EventHotKeyRef_Type);
2223 2224 2225 2226
	PyModule_AddObject(m, "EventHotKeyRef", (PyObject *)&EventHotKeyRef_Type);
	/* Backward-compatible name */
	Py_INCREF(&EventHotKeyRef_Type);
	PyModule_AddObject(m, "EventHotKeyRefType", (PyObject *)&EventHotKeyRef_Type);
2227
#endif /* !__LP64__ */
2228 2229
}

2230
/* ===================== End module _CarbonEvt ====================== */
2231