2010-07-31 06:52:47 +04:00
|
|
|
/*
|
|
|
|
* The Python Imaging Library.
|
|
|
|
*
|
|
|
|
* tkinter hooks
|
|
|
|
*
|
|
|
|
* history:
|
|
|
|
* 99-07-26 fl created
|
|
|
|
* 99-08-15 fl moved to its own support module
|
|
|
|
*
|
|
|
|
* Copyright (c) Secret Labs AB 1999.
|
|
|
|
*
|
|
|
|
* See the README file for information on usage and redistribution.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "Python.h"
|
|
|
|
#include "Imaging.h"
|
|
|
|
|
2016-05-27 01:05:53 +03:00
|
|
|
#include "_tkmini.h"
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
/* must link with Tk/tkImaging.c */
|
|
|
|
extern void TkImaging_Init(Tcl_Interp* interp);
|
2016-05-27 01:05:53 +03:00
|
|
|
extern int load_tkinter_funcs(void);
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
/* copied from _tkinter.c (this isn't as bad as it may seem: for new
|
|
|
|
versions, we use _tkinter's interpaddr hook instead, and all older
|
|
|
|
versions use this structure layout) */
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
PyObject_HEAD
|
|
|
|
Tcl_Interp* interp;
|
|
|
|
} TkappObject;
|
|
|
|
|
2013-07-01 02:42:19 +04:00
|
|
|
static PyObject*
|
2010-07-31 06:52:47 +04:00
|
|
|
_tkinit(PyObject* self, PyObject* args)
|
|
|
|
{
|
|
|
|
Tcl_Interp* interp;
|
|
|
|
|
2013-02-14 06:38:45 +04:00
|
|
|
Py_ssize_t arg;
|
2010-07-31 06:52:47 +04:00
|
|
|
int is_interp;
|
2013-02-14 06:38:45 +04:00
|
|
|
if (!PyArg_ParseTuple(args, "ni", &arg, &is_interp))
|
2010-07-31 06:52:47 +04:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (is_interp)
|
|
|
|
interp = (Tcl_Interp*) arg;
|
|
|
|
else {
|
|
|
|
TkappObject* app;
|
|
|
|
/* Do it the hard way. This will break if the TkappObject
|
|
|
|
layout changes */
|
|
|
|
app = (TkappObject*) arg;
|
|
|
|
interp = app->interp;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This will bomb if interp is invalid... */
|
|
|
|
TkImaging_Init(interp);
|
|
|
|
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
return Py_None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyMethodDef functions[] = {
|
|
|
|
/* Tkinter interface stuff */
|
|
|
|
{"tkinit", (PyCFunction)_tkinit, 1},
|
|
|
|
{NULL, NULL} /* sentinel */
|
|
|
|
};
|
|
|
|
|
2012-10-14 08:47:30 +04:00
|
|
|
#if PY_VERSION_HEX >= 0x03000000
|
|
|
|
PyMODINIT_FUNC
|
|
|
|
PyInit__imagingtk(void) {
|
|
|
|
static PyModuleDef module_def = {
|
|
|
|
PyModuleDef_HEAD_INIT,
|
|
|
|
"_imagingtk", /* m_name */
|
|
|
|
NULL, /* m_doc */
|
|
|
|
-1, /* m_size */
|
|
|
|
functions, /* m_methods */
|
|
|
|
};
|
2016-05-27 01:05:53 +03:00
|
|
|
PyObject *m;
|
|
|
|
m = PyModule_Create(&module_def);
|
|
|
|
return (load_tkinter_funcs() == 0) ? m : NULL;
|
2012-10-14 08:47:30 +04:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
PyMODINIT_FUNC
|
2010-07-31 06:52:47 +04:00
|
|
|
init_imagingtk(void)
|
|
|
|
{
|
|
|
|
Py_InitModule("_imagingtk", functions);
|
2016-05-27 01:05:53 +03:00
|
|
|
load_tkinter_funcs();
|
2010-07-31 06:52:47 +04:00
|
|
|
}
|
2012-10-14 08:47:30 +04:00
|
|
|
#endif
|
|
|
|
|