summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/macosmodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-01-18 23:58:07 (GMT)
committerGuido van Rossum <guido@python.org>1995-01-18 23:58:07 (GMT)
commitf74d4e2a0eeff08357f58e0d36cd97aaf6565b9e (patch)
treedce85a3b61d227017ce1a2d9bfa81ffde712ba75 /Mac/Modules/macosmodule.c
parent8f69179f973b1eb4c29914d73a275a2488132a08 (diff)
downloadcpython-f74d4e2a0eeff08357f58e0d36cd97aaf6565b9e.zip
cpython-f74d4e2a0eeff08357f58e0d36cd97aaf6565b9e.tar.gz
cpython-f74d4e2a0eeff08357f58e0d36cd97aaf6565b9e.tar.bz2
added high level event interface (requires stdwin patch)
Diffstat (limited to 'Mac/Modules/macosmodule.c')
-rw-r--r--Mac/Modules/macosmodule.c102
1 files changed, 99 insertions, 3 deletions
diff --git a/Mac/Modules/macosmodule.c b/Mac/Modules/macosmodule.c
index 344be9a..833ef42 100644
--- a/Mac/Modules/macosmodule.c
+++ b/Mac/Modules/macosmodule.c
@@ -493,15 +493,111 @@ MacOS_SndControl(PyObject *self, PyObject *args)
return Py_BuildValue("(hhl)", c.cmd, c.param1, c.param2);
}
+/*----------------------------------------------------------------------*/
+/* STDWIN High Level Event interface */
+
+#include <EPPC.h>
+#include <Events.h>
+
+#ifdef USE_STDWIN
+
+extern void (*_w_high_level_event_proc)(EventRecord *);
+
+static PyObject *MacOS_HighLevelEventHandler = NULL;
+
+static void
+MacOS_HighLevelEventProc(EventRecord *erp)
+{
+ if (MacOS_HighLevelEventHandler != NULL) {
+ PyObject *args = Py_BuildValue("(s#)", (char *)erp, (int)sizeof(*erp));
+ PyObject *res;
+ if (args == NULL)
+ res = NULL;
+ else {
+ res = PyEval_CallObject(MacOS_HighLevelEventHandler, args);
+ Py_DECREF(args);
+ }
+ if (res == NULL) {
+ fprintf(stderr, "Exception in MacOS_HighLevelEventProc:\n");
+ PyErr_Print();
+ }
+ else
+ Py_DECREF(res);
+ }
+}
+
+static PyObject *
+MacOS_SetHighLevelEventHandler(self, args)
+ PyObject *self;
+ PyObject *args;
+{
+ PyObject *previous = MacOS_HighLevelEventHandler;
+ PyObject *next = NULL;
+ if (!PyArg_ParseTuple(args, "|O", &next))
+ return NULL;
+ if (next == Py_None)
+ next = NULL;
+ Py_INCREF(next);
+ MacOS_HighLevelEventHandler = next;
+ if (next == NULL)
+ _w_high_level_event_proc = NULL;
+ else
+ _w_high_level_event_proc = MacOS_HighLevelEventProc;
+ if (previous == NULL) {
+ Py_INCREF(Py_None);
+ previous = Py_None;
+ }
+ return previous;
+}
+
+#endif /* USE_STDWIN */
+
+static PyObject *
+MacOS_AcceptHighLevelEvent(self, args)
+ PyObject *self;
+ PyObject *args;
+{
+ TargetID sender;
+ unsigned long refcon;
+ Ptr buf;
+ unsigned long len;
+ OSErr err;
+ PyObject *res;
+
+ buf = NULL;
+ len = 0;
+ err = AcceptHighLevelEvent(&sender, &refcon, buf, &len);
+ if (err == bufferIsSmall) {
+ buf = malloc(len);
+ if (buf == NULL)
+ return PyErr_NoMemory();
+ err = AcceptHighLevelEvent(&sender, &refcon, buf, &len);
+ if (err != noErr) {
+ free(buf);
+ return PyErr_Mac(MacOS_Error, (int)err);
+ }
+ }
+ else if (err != noErr)
+ return PyErr_Mac(MacOS_Error, (int)err);
+ res = Py_BuildValue("s#ls#",
+ (char *)&sender, (int)(sizeof sender), refcon, (char *)buf, (int)len);
+ free(buf);
+ return res;
+}
+
static PyMethodDef MacOS_Methods[] = {
+ {"AcceptHighLevelEvent", MacOS_AcceptHighLevelEvent, 1},
{"GetResource", MacOS_GetResource, 1},
- {"GetNamedResource", MacOS_GetNamedResource, 1},
+ {"GetNamedResource", MacOS_GetNamedResource, 1},
{"GetFileType", MacOS_GetFileType, 1},
{"SetFileType", MacOS_SetFileType, 1},
{"SndNewChannel", MacOS_SndNewChannel, 1},
- {"SndPlay", MacOS_SndPlay, 1},
+ {"SndPlay", MacOS_SndPlay, 1},
{"SndControl", MacOS_SndControl, 1},
- {NULL, NULL} /* Sentinel */
+#ifdef USE_STDWIN
+ {"SetHighLevelEventHandler", MacOS_SetHighLevelEventHandler, 1},
+#endif
+ {NULL, NULL} /* Sentinel */
};