1996-06-26 15:26:04 -03:00
|
|
|
|
/***********************************************************
|
|
|
|
|
Copyright (C) 1994 Steen Lumholt.
|
|
|
|
|
Copyright 1994-1995 by Stichting Mathematisch Centrum, Amsterdam,
|
|
|
|
|
The Netherlands.
|
|
|
|
|
|
|
|
|
|
All Rights Reserved
|
|
|
|
|
|
1996-10-25 11:44:06 -03:00
|
|
|
|
Permission to use, copy, modify, and distribute this software and its
|
|
|
|
|
documentation for any purpose and without fee is hereby granted,
|
1996-06-26 15:26:04 -03:00
|
|
|
|
provided that the above copyright notice appear in all copies and that
|
1996-10-25 11:44:06 -03:00
|
|
|
|
both that copyright notice and this permission notice appear in
|
1996-06-26 15:26:04 -03:00
|
|
|
|
supporting documentation, and that the names of Stichting Mathematisch
|
1996-10-25 11:44:06 -03:00
|
|
|
|
Centrum or CWI or Corporation for National Research Initiatives or
|
|
|
|
|
CNRI not be used in advertising or publicity pertaining to
|
|
|
|
|
distribution of the software without specific, written prior
|
|
|
|
|
permission.
|
1996-06-26 15:26:04 -03:00
|
|
|
|
|
1996-10-25 11:44:06 -03:00
|
|
|
|
While CWI is the initial source for this software, a modified version
|
|
|
|
|
is made available by the Corporation for National Research Initiatives
|
|
|
|
|
(CNRI) at the Internet address ftp://ftp.python.org.
|
|
|
|
|
|
|
|
|
|
STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
|
|
|
|
|
REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
|
MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
|
|
|
|
|
CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
|
|
|
|
|
DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
|
|
|
|
|
PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
|
|
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
|
PERFORMANCE OF THIS SOFTWARE.
|
1996-06-26 15:26:04 -03:00
|
|
|
|
|
|
|
|
|
******************************************************************/
|
|
|
|
|
|
|
|
|
|
/* _tkinter.c -- Interface to libtk.a and libtcl.a. */
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1996-08-13 18:10:16 -03:00
|
|
|
|
/* TCL/TK VERSION INFO:
|
|
|
|
|
|
|
|
|
|
Unix:
|
|
|
|
|
This should work with any version from Tcl 4.0 / Tck 7.4.
|
|
|
|
|
Do not use older versions.
|
|
|
|
|
|
|
|
|
|
Mac and Windows:
|
|
|
|
|
Use Tcl 4.1p1 / Tk 7.5p1 or possibly newer.
|
|
|
|
|
It does not seem to work reliably with the original 4.1/7.5
|
|
|
|
|
release. (4.0/7.4 were never released for these platforms.)
|
|
|
|
|
*/
|
|
|
|
|
|
1995-09-22 20:49:28 -03:00
|
|
|
|
#include "Python.h"
|
1996-08-08 16:09:53 -03:00
|
|
|
|
#include <ctype.h>
|
1995-09-22 20:49:28 -03:00
|
|
|
|
|
1996-08-20 17:49:56 -03:00
|
|
|
|
#ifdef macintosh
|
|
|
|
|
#define MAC_TCL
|
|
|
|
|
#endif
|
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
#include <tcl.h>
|
|
|
|
|
#include <tk.h>
|
|
|
|
|
|
1996-07-31 16:51:15 -03:00
|
|
|
|
extern char *Py_GetProgramName ();
|
1994-07-07 06:25:12 -03:00
|
|
|
|
|
1995-09-22 20:49:28 -03:00
|
|
|
|
/* Internal declarations from tkInt.h. */
|
|
|
|
|
#if (TK_MAJOR_VERSION*1000 + TK_MINOR_VERSION) >= 4001
|
|
|
|
|
extern int Tk_GetNumMainWindows();
|
|
|
|
|
#else
|
1994-06-20 04:49:28 -03:00
|
|
|
|
extern int tk_NumMainWindows;
|
1995-09-22 20:49:28 -03:00
|
|
|
|
#define Tk_GetNumMainWindows() (tk_NumMainWindows)
|
1996-02-25 00:46:40 -04:00
|
|
|
|
#define NEED_TKCREATEMAINWINDOW 1
|
1995-09-22 20:49:28 -03:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if TK_MAJOR_VERSION < 4
|
1994-07-07 06:25:12 -03:00
|
|
|
|
extern struct { Tk_Window win; } *tkMainWindowList;
|
1995-09-22 20:49:28 -03:00
|
|
|
|
#endif
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1996-02-25 00:50:29 -04:00
|
|
|
|
#ifdef macintosh
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
** Additional cruft needed by Tcl/Tk on the Mac.
|
1996-08-08 16:09:53 -03:00
|
|
|
|
** This is for Tcl 7.5 and Tk 4.1 (patch release 1).
|
1996-02-25 00:50:29 -04:00
|
|
|
|
*/
|
|
|
|
|
|
1996-08-13 18:10:16 -03:00
|
|
|
|
/* ckfree() expects a char* */
|
1996-08-08 16:09:53 -03:00
|
|
|
|
#define FREECAST (char *)
|
|
|
|
|
|
1996-02-25 00:50:29 -04:00
|
|
|
|
#include <Events.h> /* For EventRecord */
|
|
|
|
|
|
|
|
|
|
typedef int (*TclMacConvertEventPtr) Py_PROTO((EventRecord *eventPtr));
|
|
|
|
|
void TclMacSetEventProc Py_PROTO((TclMacConvertEventPtr procPtr));
|
|
|
|
|
int TkMacConvertEvent Py_PROTO((EventRecord *eventPtr));
|
|
|
|
|
|
|
|
|
|
staticforward int PyMacConvertEvent Py_PROTO((EventRecord *eventPtr));
|
|
|
|
|
|
|
|
|
|
#endif /* macintosh */
|
|
|
|
|
|
1996-08-08 16:09:53 -03:00
|
|
|
|
#ifndef FREECAST
|
1996-08-13 18:10:16 -03:00
|
|
|
|
#define FREECAST (char *)
|
1996-08-08 16:09:53 -03:00
|
|
|
|
#endif
|
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
/**** Tkapp Object Declaration ****/
|
|
|
|
|
|
|
|
|
|
staticforward PyTypeObject Tkapp_Type;
|
|
|
|
|
|
|
|
|
|
typedef struct
|
1997-01-15 20:15:11 -04:00
|
|
|
|
{
|
|
|
|
|
PyObject_HEAD
|
|
|
|
|
Tcl_Interp *interp;
|
1996-02-25 00:46:40 -04:00
|
|
|
|
#ifdef NEED_TKCREATEMAINWINDOW
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Tk_Window tkwin;
|
1996-02-25 00:46:40 -04:00
|
|
|
|
#endif
|
1997-01-15 20:15:11 -04:00
|
|
|
|
}
|
1994-06-20 04:49:28 -03:00
|
|
|
|
TkappObject;
|
|
|
|
|
|
|
|
|
|
#define Tkapp_Check(v) ((v)->ob_type == &Tkapp_Type)
|
1996-02-25 00:46:40 -04:00
|
|
|
|
#ifdef NEED_TKCREATEMAINWINDOW
|
1994-06-20 04:49:28 -03:00
|
|
|
|
#define Tkapp_Tkwin(v) (((TkappObject *) (v))->tkwin)
|
1996-02-25 00:46:40 -04:00
|
|
|
|
#endif
|
1994-06-20 04:49:28 -03:00
|
|
|
|
#define Tkapp_Interp(v) (((TkappObject *) (v))->interp)
|
|
|
|
|
#define Tkapp_Result(v) (((TkappObject *) (v))->interp->result)
|
|
|
|
|
|
|
|
|
|
#define DEBUG_REFCNT(v) (printf ("DEBUG: id=%p, refcnt=%i\n", \
|
1997-01-15 20:15:11 -04:00
|
|
|
|
(void *) v, ((PyObject *) v)->ob_refcnt))
|
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
/**** Error Handling ****/
|
|
|
|
|
|
|
|
|
|
static PyObject *Tkinter_TclError;
|
1994-07-07 06:25:12 -03:00
|
|
|
|
static int quitMainLoop = 0;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
static int errorInCmd = 0;
|
|
|
|
|
static PyObject *excInCmd;
|
|
|
|
|
static PyObject *valInCmd;
|
1995-01-02 15:30:30 -04:00
|
|
|
|
static PyObject *trbInCmd;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
static PyObject *
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Tkinter_Error(v)
|
|
|
|
|
PyObject *v;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyErr_SetString(Tkinter_TclError, Tkapp_Result(v));
|
|
|
|
|
return NULL;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
int
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PythonCmd_Error(interp)
|
|
|
|
|
Tcl_Interp *interp;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
errorInCmd = 1;
|
|
|
|
|
PyErr_Fetch(&excInCmd, &valInCmd, &trbInCmd);
|
|
|
|
|
return TCL_ERROR;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
|
|
|
|
/**** Utils ****/
|
1994-06-20 04:49:28 -03:00
|
|
|
|
static char *
|
1997-01-15 20:15:11 -04:00
|
|
|
|
AsString(value, tmp)
|
|
|
|
|
PyObject *value;
|
|
|
|
|
PyObject *tmp;
|
|
|
|
|
{
|
|
|
|
|
if (PyString_Check (value))
|
|
|
|
|
return PyString_AsString (value);
|
|
|
|
|
else {
|
|
|
|
|
PyObject *v = PyObject_Str(value);
|
|
|
|
|
PyList_Append(tmp, v);
|
|
|
|
|
Py_DECREF(v);
|
|
|
|
|
return PyString_AsString(v);
|
|
|
|
|
}
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
#define ARGSZ 64
|
|
|
|
|
|
|
|
|
|
static char *
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Merge(args)
|
|
|
|
|
PyObject *args;
|
|
|
|
|
{
|
|
|
|
|
PyObject *tmp = NULL;
|
|
|
|
|
char *argvStore[ARGSZ];
|
|
|
|
|
char **argv = NULL;
|
|
|
|
|
int fvStore[ARGSZ];
|
|
|
|
|
int *fv = NULL;
|
|
|
|
|
int argc = 0, i;
|
|
|
|
|
char *res = NULL;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (!(tmp = PyList_New(0)))
|
|
|
|
|
return NULL;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
argv = argvStore;
|
|
|
|
|
fv = fvStore;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (args == NULL)
|
|
|
|
|
argc = 0;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
else if (!PyTuple_Check(args)) {
|
|
|
|
|
argc = 1;
|
|
|
|
|
fv[0] = 0;
|
|
|
|
|
argv[0] = AsString(args, tmp);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
argc = PyTuple_Size(args);
|
|
|
|
|
|
|
|
|
|
if (argc > ARGSZ) {
|
|
|
|
|
argv = (char **)ckalloc(argc * sizeof (char *));
|
|
|
|
|
fv = (int *)ckalloc(argc * sizeof (int));
|
|
|
|
|
if (argv == NULL || fv == NULL) {
|
|
|
|
|
PyErr_NoMemory();
|
|
|
|
|
goto finally;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < argc; i++) {
|
|
|
|
|
PyObject *v = PyTuple_GetItem(args, i);
|
|
|
|
|
if (PyTuple_Check(v)) {
|
|
|
|
|
fv[i] = 1;
|
|
|
|
|
if (!(argv[i] = Merge(v)))
|
|
|
|
|
goto finally;
|
|
|
|
|
}
|
|
|
|
|
else if (v == Py_None) {
|
|
|
|
|
argc = i;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
fv[i] = 0;
|
|
|
|
|
argv[i] = AsString(v, tmp);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
res = Tcl_Merge(argc, argv);
|
|
|
|
|
|
|
|
|
|
finally:
|
|
|
|
|
for (i = 0; i < argc; i++)
|
|
|
|
|
if (fv[i]) {
|
|
|
|
|
ckfree(argv[i]);
|
|
|
|
|
}
|
|
|
|
|
if (argv != argvStore)
|
|
|
|
|
ckfree(FREECAST argv);
|
|
|
|
|
if (fv != fvStore)
|
|
|
|
|
ckfree(FREECAST fv);
|
|
|
|
|
|
|
|
|
|
Py_DECREF(tmp);
|
|
|
|
|
return res;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
static PyObject *
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Split(self, list)
|
|
|
|
|
PyObject *self;
|
|
|
|
|
char *list;
|
|
|
|
|
{
|
|
|
|
|
int argc;
|
|
|
|
|
char **argv;
|
|
|
|
|
PyObject *v;
|
|
|
|
|
|
|
|
|
|
if (list == NULL) {
|
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
|
return Py_None;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (Tcl_SplitList(Tkapp_Interp(self), list, &argc, &argv) == TCL_ERROR)
|
|
|
|
|
{
|
|
|
|
|
/* Not a list.
|
|
|
|
|
* Could be a quoted string containing funnies, e.g. {"}.
|
|
|
|
|
* Return the string itself.
|
|
|
|
|
*/
|
|
|
|
|
PyErr_Clear();
|
|
|
|
|
return PyString_FromString(list);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (argc == 0)
|
|
|
|
|
v = PyString_FromString("");
|
|
|
|
|
else if (argc == 1)
|
|
|
|
|
v = PyString_FromString(argv[0]);
|
|
|
|
|
else if ((v = PyTuple_New (argc)) != NULL) {
|
|
|
|
|
int i;
|
|
|
|
|
PyObject *w;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < argc; i++) {
|
|
|
|
|
if ((w = Split(self, argv[i])) == NULL) {
|
|
|
|
|
Py_DECREF(v);
|
|
|
|
|
v = NULL;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
PyTuple_SetItem(v, i, w);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
ckfree (FREECAST argv);
|
|
|
|
|
return v;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
/**** Tkapp Object ****/
|
|
|
|
|
|
|
|
|
|
#ifndef WITH_APPINIT
|
|
|
|
|
int
|
|
|
|
|
Tcl_AppInit (interp)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Tcl_Interp *interp;
|
|
|
|
|
{
|
|
|
|
|
Tk_Window main;
|
1996-02-25 00:46:40 -04:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
main = Tk_MainWindow(interp);
|
|
|
|
|
if (Tcl_Init(interp) == TCL_ERROR) {
|
|
|
|
|
fprintf(stderr, "Tcl_Init error: %s\n", interp->result);
|
|
|
|
|
return TCL_ERROR;
|
|
|
|
|
}
|
|
|
|
|
if (Tk_Init(interp) == TCL_ERROR) {
|
|
|
|
|
fprintf(stderr, "Tk_Init error: %s\n", interp->result);
|
|
|
|
|
return TCL_ERROR;
|
|
|
|
|
}
|
|
|
|
|
return TCL_OK;
|
|
|
|
|
}
|
1994-06-20 04:49:28 -03:00
|
|
|
|
#endif /* !WITH_APPINIT */
|
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
/* Initialize the Tk application; see the `main' function in
|
1997-01-15 20:15:11 -04:00
|
|
|
|
* `tkMain.c'.
|
|
|
|
|
*/
|
1994-06-20 04:49:28 -03:00
|
|
|
|
static TkappObject *
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Tkapp_New(screenName, baseName, className, interactive)
|
|
|
|
|
char *screenName;
|
|
|
|
|
char *baseName;
|
|
|
|
|
char *className;
|
|
|
|
|
int interactive;
|
|
|
|
|
{
|
|
|
|
|
TkappObject *v;
|
|
|
|
|
char *argv0;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
v = PyObject_NEW(TkappObject, &Tkapp_Type);
|
|
|
|
|
if (v == NULL)
|
|
|
|
|
return NULL;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
v->interp = Tcl_CreateInterp();
|
1996-02-25 00:46:40 -04:00
|
|
|
|
|
|
|
|
|
#ifdef NEED_TKCREATEMAINWINDOW
|
1997-01-15 20:15:11 -04:00
|
|
|
|
v->tkwin = Tk_CreateMainWindow(v->interp, screenName,
|
|
|
|
|
baseName, className);
|
|
|
|
|
if (v->tkwin == NULL)
|
|
|
|
|
return (TkappObject *)Tkinter_Error((PyObject *) v);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Tk_GeometryRequest(v->tkwin, 200, 200);
|
1996-02-25 00:46:40 -04:00
|
|
|
|
#endif
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (screenName != NULL)
|
|
|
|
|
Tcl_SetVar2(v->interp, "env", "DISPLAY",
|
|
|
|
|
screenName, TCL_GLOBAL_ONLY);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (interactive)
|
|
|
|
|
Tcl_SetVar(v->interp, "tcl_interactive", "1", TCL_GLOBAL_ONLY);
|
|
|
|
|
else
|
|
|
|
|
Tcl_SetVar(v->interp, "tcl_interactive", "0", TCL_GLOBAL_ONLY);
|
|
|
|
|
|
|
|
|
|
/* This is used to get the application class for Tk 4.1 and up */
|
|
|
|
|
argv0 = (char*)ckalloc(strlen(className) + 1);
|
|
|
|
|
if (!argv0) {
|
|
|
|
|
PyErr_NoMemory();
|
|
|
|
|
Py_DECREF(v);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
strcpy(argv0, className);
|
|
|
|
|
if (isupper(argv0[0]))
|
|
|
|
|
argv0[0] = tolower(argv0[0]);
|
|
|
|
|
Tcl_SetVar(v->interp, "argv0", argv0, TCL_GLOBAL_ONLY);
|
|
|
|
|
ckfree(argv0);
|
1996-08-08 16:09:53 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (Tcl_AppInit(v->interp) != TCL_OK)
|
|
|
|
|
return (TkappObject *)Tkinter_Error(v);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
return v;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
/** Tcl Eval **/
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Tkapp_Call(self, args)
|
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
char *cmd = Merge(args);
|
|
|
|
|
PyObject *res = NULL;
|
|
|
|
|
|
|
|
|
|
if (!cmd)
|
|
|
|
|
PyErr_SetString(Tkinter_TclError, "merge failed");
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
else if (Tcl_Eval(Tkapp_Interp(self), cmd) == TCL_ERROR)
|
|
|
|
|
res = Tkinter_Error(self);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
else
|
|
|
|
|
res = PyString_FromString(Tkapp_Result(self));
|
|
|
|
|
|
|
|
|
|
if (cmd)
|
|
|
|
|
ckfree(cmd);
|
|
|
|
|
|
|
|
|
|
return res;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
static PyObject *
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Tkapp_GlobalCall(self, args)
|
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
|
|
|
|
{
|
|
|
|
|
char *cmd = Merge(args);
|
|
|
|
|
PyObject *res = NULL;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!cmd)
|
|
|
|
|
PyErr_SetString(Tkinter_TclError, "merge failed");
|
|
|
|
|
|
|
|
|
|
else if (Tcl_GlobalEval(Tkapp_Interp(self), cmd) == TCL_ERROR)
|
|
|
|
|
res = Tkinter_Error(self);
|
|
|
|
|
else
|
|
|
|
|
res = PyString_FromString(Tkapp_Result(self));
|
|
|
|
|
|
|
|
|
|
if (cmd)
|
|
|
|
|
ckfree(cmd);
|
|
|
|
|
|
|
|
|
|
return res;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Tkapp_Eval(self, args)
|
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
char *script;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (!PyArg_Parse (args, "s", &script))
|
|
|
|
|
return NULL;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (Tcl_Eval(Tkapp_Interp(self), script) == TCL_ERROR)
|
|
|
|
|
return Tkinter_Error(self);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
return PyString_FromString(Tkapp_Result(self));
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Tkapp_GlobalEval(self, args)
|
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
char *script;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (!PyArg_Parse(args, "s", &script))
|
|
|
|
|
return NULL;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (Tcl_GlobalEval(Tkapp_Interp(self), script) == TCL_ERROR)
|
|
|
|
|
return Tkinter_Error (self);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
return PyString_FromString(Tkapp_Result(self));
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
Tkapp_EvalFile (self, args)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
char *fileName;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (!PyArg_Parse(args, "s", &fileName))
|
|
|
|
|
return NULL;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (Tcl_EvalFile(Tkapp_Interp(self), fileName) == TCL_ERROR)
|
|
|
|
|
return Tkinter_Error (self);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
return PyString_FromString(Tkapp_Result(self));
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Tkapp_Record(self, args)
|
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
char *script;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (!PyArg_Parse(args, "s", &script))
|
|
|
|
|
return NULL;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (TCL_ERROR == Tcl_RecordAndEval(Tkapp_Interp(self),
|
|
|
|
|
script, TCL_NO_EVAL))
|
|
|
|
|
return Tkinter_Error (self);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
return PyString_FromString(Tkapp_Result(self));
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Tkapp_AddErrorInfo(self, args)
|
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
char *msg;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (!PyArg_Parse (args, "s", &msg))
|
|
|
|
|
return NULL;
|
|
|
|
|
Tcl_AddErrorInfo(Tkapp_Interp(self), msg);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
|
return Py_None;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
/** Tcl Variable **/
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
1997-01-15 20:15:11 -04:00
|
|
|
|
SetVar(self, args, flags)
|
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
|
|
|
|
int flags;
|
|
|
|
|
{
|
|
|
|
|
char *name1, *name2, *ok;
|
|
|
|
|
PyObject *newValue;
|
|
|
|
|
PyObject *tmp = PyList_New(0);
|
|
|
|
|
|
|
|
|
|
if (!tmp)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
if (PyArg_Parse(args, "(sO)", &name1, &newValue))
|
|
|
|
|
/* XXX Merge? */
|
|
|
|
|
ok = Tcl_SetVar(Tkapp_Interp (self), name1,
|
|
|
|
|
AsString (newValue, tmp), flags);
|
|
|
|
|
|
|
|
|
|
else if (PyArg_Parse(args, "(ssO)", &name1, &name2, &newValue))
|
|
|
|
|
ok = Tcl_SetVar2(Tkapp_Interp (self), name1, name2,
|
|
|
|
|
AsString (newValue, tmp), flags);
|
|
|
|
|
else {
|
|
|
|
|
Py_DECREF (tmp);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
Py_DECREF (tmp);
|
|
|
|
|
|
|
|
|
|
if (!ok)
|
|
|
|
|
return Tkinter_Error(self);
|
|
|
|
|
|
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
|
return Py_None;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
Tkapp_SetVar (self, args)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
return SetVar(self, args, TCL_LEAVE_ERR_MSG);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
Tkapp_GlobalSetVar (self, args)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
return SetVar(self, args, TCL_LEAVE_ERR_MSG | TCL_GLOBAL_ONLY);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
static PyObject *
|
|
|
|
|
GetVar (self, args, flags)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
|
|
|
|
int flags;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
char *name1, *name2, *s;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (PyArg_Parse(args, "s", &name1))
|
|
|
|
|
s = Tcl_GetVar(Tkapp_Interp (self), name1, flags);
|
|
|
|
|
|
|
|
|
|
else if (PyArg_Parse(args, "(ss)", &name1, &name2))
|
|
|
|
|
s = Tcl_GetVar2(Tkapp_Interp(self), name1, name2, flags);
|
|
|
|
|
else
|
|
|
|
|
return NULL;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (s == NULL)
|
|
|
|
|
return Tkinter_Error(self);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
return PyString_FromString (s);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
Tkapp_GetVar (self, args)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
return GetVar(self, args, TCL_LEAVE_ERR_MSG);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
Tkapp_GlobalGetVar (self, args)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
return GetVar(self, args, TCL_LEAVE_ERR_MSG | TCL_GLOBAL_ONLY);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
static PyObject *
|
|
|
|
|
UnsetVar (self, args, flags)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
|
|
|
|
int flags;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
char *name1, *name2;
|
|
|
|
|
int code;
|
|
|
|
|
|
|
|
|
|
if (PyArg_Parse(args, "s", &name1))
|
|
|
|
|
code = Tcl_UnsetVar(Tkapp_Interp (self), name1, flags);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
else if (PyArg_Parse(args, "(ss)", &name1, &name2))
|
|
|
|
|
code = Tcl_UnsetVar2(Tkapp_Interp(self), name1, name2, flags);
|
|
|
|
|
else
|
|
|
|
|
return NULL;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (code == TCL_ERROR)
|
|
|
|
|
return Tkinter_Error (self);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
|
return Py_None;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
Tkapp_UnsetVar (self, args)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
return UnsetVar(self, args, TCL_LEAVE_ERR_MSG);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
Tkapp_GlobalUnsetVar (self, args)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
return UnsetVar(self, args, TCL_LEAVE_ERR_MSG | TCL_GLOBAL_ONLY);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
/** Tcl to Python **/
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
Tkapp_GetInt (self, args)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
char *s;
|
|
|
|
|
int v;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (!PyArg_Parse(args, "s", &s))
|
|
|
|
|
return NULL;
|
|
|
|
|
if (Tcl_GetInt(Tkapp_Interp (self), s, &v) == TCL_ERROR)
|
|
|
|
|
return Tkinter_Error(self);
|
|
|
|
|
return Py_BuildValue("i", v);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
Tkapp_GetDouble (self, args)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
char *s;
|
|
|
|
|
double v;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (!PyArg_Parse(args, "s", &s))
|
|
|
|
|
return NULL;
|
|
|
|
|
if (Tcl_GetDouble(Tkapp_Interp (self), s, &v) == TCL_ERROR)
|
|
|
|
|
return Tkinter_Error(self);
|
|
|
|
|
return Py_BuildValue("d", v);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
Tkapp_GetBoolean (self, args)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
char *s;
|
|
|
|
|
int v;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (!PyArg_Parse(args, "s", &s))
|
|
|
|
|
return NULL;
|
|
|
|
|
if (Tcl_GetBoolean(Tkapp_Interp (self), s, &v) == TCL_ERROR)
|
|
|
|
|
return Tkinter_Error (self);
|
|
|
|
|
return Py_BuildValue("i", v);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
Tkapp_ExprString (self, args)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
char *s;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (!PyArg_Parse(args, "s", &s))
|
|
|
|
|
return NULL;
|
|
|
|
|
if (Tcl_ExprString (Tkapp_Interp (self), s) == TCL_ERROR)
|
|
|
|
|
return Tkinter_Error(self);
|
|
|
|
|
return Py_BuildValue("s", Tkapp_Result(self));
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
Tkapp_ExprLong (self, args)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
char *s;
|
|
|
|
|
long v;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (!PyArg_Parse(args, "s", &s))
|
|
|
|
|
return NULL;
|
|
|
|
|
if (Tcl_ExprLong(Tkapp_Interp(self), s, &v) == TCL_ERROR)
|
|
|
|
|
return Tkinter_Error(self);
|
|
|
|
|
return Py_BuildValue("l", v);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
Tkapp_ExprDouble (self, args)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
char *s;
|
|
|
|
|
double v;
|
1997-02-14 18:59:58 -04:00
|
|
|
|
int retval;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (!PyArg_Parse(args, "s", &s))
|
|
|
|
|
return NULL;
|
1997-02-14 18:59:58 -04:00
|
|
|
|
PyFPE_START_PROTECT("Tkapp_ExprDouble", return 0)
|
|
|
|
|
retval = Tcl_ExprDouble (Tkapp_Interp (self), s, &v);
|
1997-03-14 00:32:50 -04:00
|
|
|
|
PyFPE_END_PROTECT(retval)
|
1997-02-14 18:59:58 -04:00
|
|
|
|
if (retval == TCL_ERROR)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
return Tkinter_Error(self);
|
|
|
|
|
return Py_BuildValue("d", v);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
Tkapp_ExprBoolean (self, args)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
char *s;
|
|
|
|
|
int v;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (!PyArg_Parse(args, "s", &s))
|
|
|
|
|
return NULL;
|
|
|
|
|
if (Tcl_ExprBoolean(Tkapp_Interp(self), s, &v) == TCL_ERROR)
|
|
|
|
|
return Tkinter_Error(self);
|
|
|
|
|
return Py_BuildValue("i", v);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
static PyObject *
|
|
|
|
|
Tkapp_SplitList (self, args)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
char *list;
|
|
|
|
|
int argc;
|
|
|
|
|
char **argv;
|
|
|
|
|
PyObject *v;
|
|
|
|
|
int i;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (!PyArg_Parse(args, "s", &list))
|
|
|
|
|
return NULL;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (Tcl_SplitList(Tkapp_Interp(self), list, &argc, &argv) == TCL_ERROR)
|
|
|
|
|
return Tkinter_Error(self);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (!(v = PyTuple_New(argc)))
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < argc; i++) {
|
|
|
|
|
PyObject *s = PyString_FromString(argv[i]);
|
|
|
|
|
if (!s || PyTuple_SetItem(v, i, s)) {
|
|
|
|
|
Py_DECREF(v);
|
|
|
|
|
v = NULL;
|
|
|
|
|
goto finally;
|
|
|
|
|
}
|
|
|
|
|
}
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
finally:
|
|
|
|
|
ckfree(FREECAST argv);
|
|
|
|
|
return v;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
Tkapp_Split (self, args)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
char *list;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (!PyArg_Parse(args, "s", &list))
|
|
|
|
|
return NULL;
|
|
|
|
|
return Split(self, list);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
Tkapp_Merge (self, args)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
char *s = Merge(args);
|
|
|
|
|
PyObject *res = NULL;
|
|
|
|
|
|
|
|
|
|
if (s) {
|
|
|
|
|
res = PyString_FromString(s);
|
|
|
|
|
ckfree(s);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
PyErr_SetString(Tkinter_TclError, "merge failed");
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
return res;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
/** Tcl Command **/
|
|
|
|
|
|
|
|
|
|
/* This is the Tcl command that acts as a wrapper for Python
|
1997-01-15 20:15:11 -04:00
|
|
|
|
* function or method.
|
|
|
|
|
*/
|
1994-06-20 04:49:28 -03:00
|
|
|
|
static int
|
|
|
|
|
PythonCmd (clientData, interp, argc, argv)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
ClientData clientData; /* Is (self, func) */
|
|
|
|
|
Tcl_Interp *interp;
|
|
|
|
|
int argc;
|
|
|
|
|
char *argv[];
|
|
|
|
|
{
|
|
|
|
|
PyObject *self, *func, *arg, *res, *tmp;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
/* TBD: no error checking here since we know, via the
|
|
|
|
|
* Tkapp_CreateCommand() that the client data is a two-tuple
|
|
|
|
|
*/
|
|
|
|
|
self = PyTuple_GetItem((PyObject *) clientData, 0);
|
|
|
|
|
func = PyTuple_GetItem((PyObject *) clientData, 1);
|
|
|
|
|
|
|
|
|
|
/* Create argument list (argv1, ..., argvN) */
|
|
|
|
|
if (!(arg = PyTuple_New(argc - 1)))
|
|
|
|
|
return PythonCmd_Error(interp);
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < (argc - 1); i++) {
|
|
|
|
|
PyObject *s = PyString_FromString(argv[i + 1]);
|
|
|
|
|
if (!s || PyTuple_SetItem(arg, i, s)) {
|
|
|
|
|
Py_DECREF(arg);
|
|
|
|
|
PythonCmd_Error(interp);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
res = PyEval_CallObject(func, arg);
|
|
|
|
|
Py_DECREF(arg);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (res == NULL)
|
|
|
|
|
return PythonCmd_Error(interp);
|
1994-07-07 06:25:12 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (!(tmp = PyList_New(0))) {
|
|
|
|
|
Py_DECREF(res);
|
|
|
|
|
return PythonCmd_Error(interp);
|
|
|
|
|
}
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Tcl_SetResult(Tkapp_Interp(self), AsString(res, tmp), TCL_VOLATILE);
|
|
|
|
|
Py_DECREF(res);
|
|
|
|
|
Py_DECREF(tmp);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
return TCL_OK;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
PythonCmdDelete (clientData)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
ClientData clientData; /* Is (self, func) */
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Py_DECREF((PyObject *) clientData);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
static PyObject *
|
|
|
|
|
Tkapp_CreateCommand (self, args)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
char *cmdName;
|
|
|
|
|
PyObject *data;
|
|
|
|
|
PyObject *func;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
/* Args is: (cmdName, func) */
|
|
|
|
|
if (!PyTuple_Check(args)
|
|
|
|
|
|| !(PyTuple_Size(args) == 2)
|
|
|
|
|
|| !PyString_Check(PyTuple_GetItem(args, 0))
|
|
|
|
|
|| !PyCallable_Check(PyTuple_GetItem(args, 1)))
|
|
|
|
|
{
|
|
|
|
|
PyErr_SetString (PyExc_TypeError, "bad argument list");
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
cmdName = PyString_AsString(PyTuple_GetItem(args, 0));
|
|
|
|
|
func = PyTuple_GetItem(args, 1);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
data = PyTuple_New(2); /* ClientData is: (self, func) */
|
|
|
|
|
if (!data)
|
|
|
|
|
return NULL;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Py_INCREF(self);
|
|
|
|
|
PyTuple_SetItem(data, 0, self);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Py_INCREF(func);
|
|
|
|
|
PyTuple_SetItem(data, 1, func);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Tcl_CreateCommand(Tkapp_Interp (self), cmdName, PythonCmd,
|
|
|
|
|
(ClientData) data, PythonCmdDelete);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
|
return Py_None;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
static PyObject *
|
|
|
|
|
Tkapp_DeleteCommand (self, args)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
|
|
|
|
{
|
|
|
|
|
char *cmdName;
|
|
|
|
|
|
|
|
|
|
if (!PyArg_Parse(args, "s", &cmdName))
|
|
|
|
|
return NULL;
|
|
|
|
|
if (Tcl_DeleteCommand(Tkapp_Interp(self), cmdName) == -1)
|
|
|
|
|
{
|
|
|
|
|
PyErr_SetString(Tkinter_TclError, "can't delete Tcl command");
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
|
return Py_None;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
/** File Handler **/
|
|
|
|
|
|
1995-01-10 16:56:29 -04:00
|
|
|
|
static void
|
1994-06-20 04:49:28 -03:00
|
|
|
|
FileHandler (clientData, mask)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
ClientData clientData; /* Is: (func, file) */
|
|
|
|
|
int mask;
|
|
|
|
|
{
|
|
|
|
|
PyObject *func, *file, *arg, *res;
|
|
|
|
|
|
|
|
|
|
func = PyTuple_GetItem((PyObject *) clientData, 0);
|
|
|
|
|
file = PyTuple_GetItem((PyObject *) clientData, 1);
|
|
|
|
|
|
|
|
|
|
arg = Py_BuildValue("(Oi)", file, (long) mask);
|
|
|
|
|
res = PyEval_CallObject(func, arg);
|
|
|
|
|
Py_DECREF (arg);
|
|
|
|
|
|
|
|
|
|
if (res == NULL) {
|
|
|
|
|
errorInCmd = 1;
|
|
|
|
|
PyErr_Fetch(&excInCmd, &valInCmd, &trbInCmd);
|
|
|
|
|
}
|
|
|
|
|
Py_XDECREF(res);
|
1994-08-09 11:15:19 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
GetFileNo (file)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
/* Either an int >= 0 or an object with a
|
|
|
|
|
*.fileno() method that returns an int >= 0
|
|
|
|
|
*/
|
|
|
|
|
PyObject *file;
|
1994-08-09 11:15:19 -03:00
|
|
|
|
{
|
1995-01-10 16:56:29 -04:00
|
|
|
|
PyObject *meth, *args, *res;
|
1994-08-09 11:15:19 -03:00
|
|
|
|
int id;
|
|
|
|
|
if (PyInt_Check(file)) {
|
|
|
|
|
id = PyInt_AsLong(file);
|
|
|
|
|
if (id < 0)
|
|
|
|
|
PyErr_SetString(PyExc_ValueError, "invalid file id");
|
|
|
|
|
return id;
|
|
|
|
|
}
|
|
|
|
|
args = PyTuple_New(0);
|
|
|
|
|
if (args == NULL)
|
|
|
|
|
return -1;
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
|
|
|
|
meth = PyObject_GetAttrString(file, "fileno");
|
|
|
|
|
if (meth == NULL) {
|
|
|
|
|
Py_DECREF(args);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
1994-08-09 11:15:19 -03:00
|
|
|
|
res = PyEval_CallObject(meth, args);
|
|
|
|
|
Py_DECREF(args);
|
|
|
|
|
Py_DECREF(meth);
|
|
|
|
|
if (res == NULL)
|
|
|
|
|
return -1;
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
1994-08-09 11:15:19 -03:00
|
|
|
|
if (PyInt_Check(res))
|
|
|
|
|
id = PyInt_AsLong(res);
|
|
|
|
|
else
|
|
|
|
|
id = -1;
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
1994-08-09 11:15:19 -03:00
|
|
|
|
if (id < 0)
|
|
|
|
|
PyErr_SetString(PyExc_ValueError,
|
|
|
|
|
"invalid fileno() return value");
|
|
|
|
|
Py_DECREF(res);
|
|
|
|
|
return id;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
|
|
|
|
static PyObject* Tkapp_ClientDataDict = NULL;
|
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
static PyObject *
|
|
|
|
|
Tkapp_CreateFileHandler (self, args)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args; /* Is (file, mask, func) */
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *file, *func, *data;
|
|
|
|
|
PyObject *idkey;
|
|
|
|
|
int mask, id;
|
1996-05-16 14:17:31 -03:00
|
|
|
|
#if (TK_MAJOR_VERSION*1000 + TK_MINOR_VERSION) >= 4001
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Tcl_File tfile;
|
1996-05-16 14:17:31 -03:00
|
|
|
|
#endif
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (!Tkapp_ClientDataDict) {
|
|
|
|
|
if (!(Tkapp_ClientDataDict = PyDict_New()))
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!PyArg_Parse(args, "(OiO)", &file, &mask, &func))
|
|
|
|
|
return NULL;
|
|
|
|
|
id = GetFileNo(file);
|
|
|
|
|
if (id < 0)
|
|
|
|
|
return NULL;
|
|
|
|
|
if (!PyCallable_Check(func)) {
|
|
|
|
|
PyErr_SetString (PyExc_TypeError, "bad argument list");
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (!(idkey = PyInt_FromLong(id)))
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
/* ClientData is: (func, file) */
|
|
|
|
|
data = Py_BuildValue ("(OO)", func, file);
|
|
|
|
|
if (!data || PyDict_SetItem(Tkapp_ClientDataDict, idkey, data)) {
|
|
|
|
|
Py_DECREF(idkey);
|
|
|
|
|
Py_XDECREF(data);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
Py_DECREF(idkey);
|
1994-06-27 04:59:42 -03:00
|
|
|
|
|
1996-05-16 14:17:31 -03:00
|
|
|
|
#if (TK_MAJOR_VERSION*1000 + TK_MINOR_VERSION) >= 4001
|
1996-09-11 20:31:42 -03:00
|
|
|
|
#ifdef MS_WINDOWS
|
1997-01-15 20:15:11 -04:00
|
|
|
|
/* We assume this is a socket... */
|
|
|
|
|
tfile = Tcl_GetFile((ClientData)id, TCL_WIN_SOCKET);
|
1996-06-26 15:26:04 -03:00
|
|
|
|
#else
|
1997-01-15 20:15:11 -04:00
|
|
|
|
tfile = Tcl_GetFile((ClientData)id, TCL_UNIX_FD);
|
1996-06-26 15:26:04 -03:00
|
|
|
|
#endif
|
1997-01-15 20:15:11 -04:00
|
|
|
|
/* Ought to check for null Tcl_File object... */
|
|
|
|
|
Tcl_CreateFileHandler(tfile, mask, FileHandler, (ClientData) data);
|
1996-05-16 14:17:31 -03:00
|
|
|
|
#else
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Tk_CreateFileHandler(id, mask, FileHandler, (ClientData) data);
|
1996-05-16 14:17:31 -03:00
|
|
|
|
#endif
|
1997-01-15 20:15:11 -04:00
|
|
|
|
/* XXX fileHandlerDict */
|
|
|
|
|
Py_INCREF (Py_None);
|
|
|
|
|
return Py_None;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
static PyObject *
|
|
|
|
|
Tkapp_DeleteFileHandler (self, args)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args; /* Args: file */
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *file;
|
|
|
|
|
PyObject *idkey;
|
|
|
|
|
PyObject *data;
|
|
|
|
|
int id;
|
1996-05-16 14:17:31 -03:00
|
|
|
|
#if (TK_MAJOR_VERSION*1000 + TK_MINOR_VERSION) >= 4001
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Tcl_File tfile;
|
1996-05-16 14:17:31 -03:00
|
|
|
|
#endif
|
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (!PyArg_Parse(args, "O", &file))
|
|
|
|
|
return NULL;
|
|
|
|
|
id = GetFileNo(file);
|
|
|
|
|
if (id < 0)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
if (!(idkey = PyInt_FromLong(id)))
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
/* find and free the object created in the
|
|
|
|
|
* Tkapp_CreateFileHandler() call
|
|
|
|
|
*/
|
|
|
|
|
data = PyDict_GetItem(Tkapp_ClientDataDict, idkey);
|
|
|
|
|
Py_XDECREF(data);
|
|
|
|
|
PyDict_DelItem(Tkapp_ClientDataDict, idkey);
|
|
|
|
|
Py_DECREF(idkey);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1996-05-16 14:17:31 -03:00
|
|
|
|
#if (TK_MAJOR_VERSION*1000 + TK_MINOR_VERSION) >= 4001
|
1996-09-11 20:31:42 -03:00
|
|
|
|
#ifdef MS_WINDOWS
|
1997-01-15 20:15:11 -04:00
|
|
|
|
/* We assume this is a socket... */
|
|
|
|
|
tfile = Tcl_GetFile((ClientData)id, TCL_WIN_SOCKET);
|
1996-06-26 15:26:04 -03:00
|
|
|
|
#else
|
1997-01-15 20:15:11 -04:00
|
|
|
|
tfile = Tcl_GetFile((ClientData)id, TCL_UNIX_FD);
|
1996-06-26 15:26:04 -03:00
|
|
|
|
#endif
|
1997-01-15 20:15:11 -04:00
|
|
|
|
/* Ought to check for null Tcl_File object... */
|
|
|
|
|
Tcl_DeleteFileHandler(tfile);
|
1996-05-16 14:17:31 -03:00
|
|
|
|
#else
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Tk_DeleteFileHandler(id);
|
1996-05-16 14:17:31 -03:00
|
|
|
|
#endif
|
1997-01-15 20:15:11 -04:00
|
|
|
|
/* XXX fileHandlerDict */
|
|
|
|
|
Py_INCREF (Py_None);
|
|
|
|
|
return Py_None;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
1994-11-10 18:50:21 -04:00
|
|
|
|
/**** Tktt Object (timer token) ****/
|
|
|
|
|
|
|
|
|
|
staticforward PyTypeObject Tktt_Type;
|
|
|
|
|
|
|
|
|
|
typedef struct
|
1997-01-15 20:15:11 -04:00
|
|
|
|
{
|
|
|
|
|
PyObject_HEAD
|
|
|
|
|
Tk_TimerToken token;
|
|
|
|
|
PyObject *func;
|
|
|
|
|
}
|
1994-11-10 18:50:21 -04:00
|
|
|
|
TkttObject;
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
Tktt_DeleteTimerHandler (self, args)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
|
|
|
|
{
|
|
|
|
|
TkttObject *v = (TkttObject *)self;
|
|
|
|
|
|
|
|
|
|
if (!PyArg_Parse(args, ""))
|
|
|
|
|
return NULL;
|
|
|
|
|
if (v->func != NULL) {
|
|
|
|
|
Tk_DeleteTimerHandler(v->token);
|
|
|
|
|
PyMem_DEL(v->func);
|
|
|
|
|
v->func = NULL;
|
|
|
|
|
}
|
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
|
return Py_None;
|
1994-11-10 18:50:21 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyMethodDef Tktt_methods[] =
|
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
{"deletetimerhandler", Tktt_DeleteTimerHandler},
|
|
|
|
|
{NULL, NULL}
|
1994-11-10 18:50:21 -04:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static TkttObject *
|
|
|
|
|
Tktt_New (token, func)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Tk_TimerToken token;
|
|
|
|
|
PyObject *func;
|
1994-11-10 18:50:21 -04:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
TkttObject *v;
|
1994-11-10 18:50:21 -04:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
v = PyObject_NEW(TkttObject, &Tktt_Type);
|
|
|
|
|
if (v == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
v->token = token;
|
|
|
|
|
v->func = func;
|
|
|
|
|
Py_INCREF(v->func);
|
|
|
|
|
return v;
|
1994-11-10 18:50:21 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
Tktt_Dealloc (self)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
1994-11-10 18:50:21 -04:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyMem_DEL (self);
|
1994-11-10 18:50:21 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
Tktt_Print (self, fp, flags)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
FILE *fp;
|
|
|
|
|
int flags;
|
1994-11-10 18:50:21 -04:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
TkttObject *v = (TkttObject *)self;
|
1994-11-10 18:50:21 -04:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
fprintf(fp, "<tktimertoken at 0x%lx%s>", (long)v,
|
|
|
|
|
v->func == NULL ? ", handler deleted" : "");
|
|
|
|
|
return 0;
|
1994-11-10 18:50:21 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
Tktt_GetAttr (self, name)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
char *name;
|
1994-11-10 18:50:21 -04:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
return Py_FindMethod(Tktt_methods, self, name);
|
1994-11-10 18:50:21 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyTypeObject Tktt_Type =
|
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject_HEAD_INIT (NULL)
|
|
|
|
|
0, /*ob_size */
|
|
|
|
|
"tktimertoken", /*tp_name */
|
|
|
|
|
sizeof (TkttObject), /*tp_basicsize */
|
|
|
|
|
0, /*tp_itemsize */
|
|
|
|
|
Tktt_Dealloc, /*tp_dealloc */
|
|
|
|
|
Tktt_Print, /*tp_print */
|
|
|
|
|
Tktt_GetAttr, /*tp_getattr */
|
|
|
|
|
0, /*tp_setattr */
|
|
|
|
|
0, /*tp_compare */
|
|
|
|
|
0, /*tp_repr */
|
|
|
|
|
0, /*tp_as_number */
|
|
|
|
|
0, /*tp_as_sequence */
|
|
|
|
|
0, /*tp_as_mapping */
|
|
|
|
|
0, /*tp_hash */
|
1994-11-10 18:50:21 -04:00
|
|
|
|
};
|
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
|
|
|
|
|
1994-11-10 18:50:21 -04:00
|
|
|
|
/** Timer Handler **/
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
TimerHandler (clientData)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
ClientData clientData;
|
|
|
|
|
{
|
|
|
|
|
PyObject *func = (PyObject *)clientData;
|
|
|
|
|
PyObject *res = PyEval_CallObject(func, NULL);
|
|
|
|
|
|
|
|
|
|
if (res == NULL) {
|
|
|
|
|
errorInCmd = 1;
|
|
|
|
|
PyErr_Fetch(&excInCmd, &valInCmd, &trbInCmd);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
Py_DECREF(res);
|
1994-11-10 18:50:21 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
Tkapp_CreateTimerHandler (self, args)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args; /* Is (milliseconds, func) */
|
|
|
|
|
{
|
|
|
|
|
int milliseconds;
|
|
|
|
|
PyObject *func;
|
|
|
|
|
Tk_TimerToken token;
|
|
|
|
|
|
|
|
|
|
if (!PyArg_Parse(args, "(iO)", &milliseconds, &func))
|
|
|
|
|
return NULL;
|
|
|
|
|
if (!PyCallable_Check(func)) {
|
|
|
|
|
PyErr_SetString (PyExc_TypeError, "bad argument list");
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
token = Tk_CreateTimerHandler(milliseconds, TimerHandler,
|
|
|
|
|
(ClientData)func);
|
|
|
|
|
|
|
|
|
|
return (PyObject *) Tktt_New(token, func);
|
1994-11-10 18:50:21 -04:00
|
|
|
|
}
|
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
/** Event Loop **/
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
Tkapp_MainLoop (self, args)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
int threshold = 0;
|
1994-11-10 18:50:21 -04:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (!PyArg_ParseTuple(args, "|i", &threshold))
|
|
|
|
|
return NULL;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
quitMainLoop = 0;
|
|
|
|
|
while (Tk_GetNumMainWindows() > threshold &&
|
|
|
|
|
!quitMainLoop &&
|
|
|
|
|
!errorInCmd)
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
/* XXX Ought to check for other signals! */
|
|
|
|
|
if (PyOS_InterruptOccurred()) {
|
|
|
|
|
PyErr_SetNone(PyExc_KeyboardInterrupt);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
Tk_DoOneEvent(0);
|
|
|
|
|
}
|
|
|
|
|
quitMainLoop = 0;
|
|
|
|
|
|
|
|
|
|
if (errorInCmd) {
|
|
|
|
|
errorInCmd = 0;
|
|
|
|
|
PyErr_Restore(excInCmd, valInCmd, trbInCmd);
|
|
|
|
|
excInCmd = valInCmd = trbInCmd = NULL;
|
|
|
|
|
return NULL;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
|
return Py_None;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
1995-01-10 13:42:51 -04:00
|
|
|
|
static PyObject *
|
|
|
|
|
Tkapp_DoOneEvent (self, args)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
1995-01-10 13:42:51 -04:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
int flags = TK_ALL_EVENTS;
|
|
|
|
|
int rv;
|
1995-01-10 13:42:51 -04:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (!PyArg_ParseTuple(args, "|i", &flags))
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
rv = Tk_DoOneEvent(flags);
|
|
|
|
|
return Py_BuildValue("i", rv);
|
1995-01-10 13:42:51 -04:00
|
|
|
|
}
|
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
static PyObject *
|
|
|
|
|
Tkapp_Quit (self, args)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (!PyArg_Parse(args, ""))
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
quitMainLoop = 1;
|
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
|
return Py_None;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
/**** Tkapp Method List ****/
|
|
|
|
|
|
|
|
|
|
static PyMethodDef Tkapp_methods[] =
|
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
{"call", Tkapp_Call},
|
|
|
|
|
{"globalcall", Tkapp_GlobalCall},
|
|
|
|
|
{"eval", Tkapp_Eval},
|
|
|
|
|
{"globaleval", Tkapp_GlobalEval},
|
|
|
|
|
{"evalfile", Tkapp_EvalFile},
|
|
|
|
|
{"record", Tkapp_Record},
|
|
|
|
|
{"adderrorinfo", Tkapp_AddErrorInfo},
|
|
|
|
|
{"setvar", Tkapp_SetVar},
|
|
|
|
|
{"globalsetvar", Tkapp_GlobalSetVar},
|
|
|
|
|
{"getvar", Tkapp_GetVar},
|
|
|
|
|
{"globalgetvar", Tkapp_GlobalGetVar},
|
|
|
|
|
{"unsetvar", Tkapp_UnsetVar},
|
|
|
|
|
{"globalunsetvar", Tkapp_GlobalUnsetVar},
|
|
|
|
|
{"getint", Tkapp_GetInt},
|
|
|
|
|
{"getdouble", Tkapp_GetDouble},
|
|
|
|
|
{"getboolean", Tkapp_GetBoolean},
|
|
|
|
|
{"exprstring", Tkapp_ExprString},
|
|
|
|
|
{"exprlong", Tkapp_ExprLong},
|
|
|
|
|
{"exprdouble", Tkapp_ExprDouble},
|
|
|
|
|
{"exprboolean", Tkapp_ExprBoolean},
|
|
|
|
|
{"splitlist", Tkapp_SplitList},
|
|
|
|
|
{"split", Tkapp_Split},
|
|
|
|
|
{"merge", Tkapp_Merge},
|
|
|
|
|
{"createcommand", Tkapp_CreateCommand},
|
|
|
|
|
{"deletecommand", Tkapp_DeleteCommand},
|
|
|
|
|
{"createfilehandler", Tkapp_CreateFileHandler},
|
|
|
|
|
{"deletefilehandler", Tkapp_DeleteFileHandler},
|
|
|
|
|
{"createtimerhandler", Tkapp_CreateTimerHandler},
|
|
|
|
|
{"mainloop", Tkapp_MainLoop, 1},
|
|
|
|
|
{"dooneevent", Tkapp_DoOneEvent, 1},
|
|
|
|
|
{"quit", Tkapp_Quit},
|
|
|
|
|
{NULL, NULL}
|
1994-06-20 04:49:28 -03:00
|
|
|
|
};
|
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
/**** Tkapp Type Methods ****/
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
Tkapp_Dealloc (self)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1996-02-25 00:46:40 -04:00
|
|
|
|
#ifdef NEED_TKCREATEMAINWINDOW
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Tk_DestroyWindow (Tkapp_Tkwin (self));
|
1996-02-25 00:46:40 -04:00
|
|
|
|
#endif
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Tcl_DeleteInterp (Tkapp_Interp (self));
|
|
|
|
|
PyMem_DEL (self);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
Tkapp_GetAttr (self, name)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
char *name;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
return Py_FindMethod (Tkapp_methods, self, name);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyTypeObject Tkapp_Type =
|
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject_HEAD_INIT (NULL)
|
|
|
|
|
0, /*ob_size */
|
|
|
|
|
"tkapp", /*tp_name */
|
|
|
|
|
sizeof (TkappObject), /*tp_basicsize */
|
|
|
|
|
0, /*tp_itemsize */
|
|
|
|
|
Tkapp_Dealloc, /*tp_dealloc */
|
|
|
|
|
0, /*tp_print */
|
|
|
|
|
Tkapp_GetAttr, /*tp_getattr */
|
|
|
|
|
0, /*tp_setattr */
|
|
|
|
|
0, /*tp_compare */
|
|
|
|
|
0, /*tp_repr */
|
|
|
|
|
0, /*tp_as_number */
|
|
|
|
|
0, /*tp_as_sequence */
|
|
|
|
|
0, /*tp_as_mapping */
|
|
|
|
|
0, /*tp_hash */
|
1994-06-20 04:49:28 -03:00
|
|
|
|
};
|
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
/**** Tkinter Module ****/
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
Tkinter_Create (self, args)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *self;
|
|
|
|
|
PyObject *args;
|
|
|
|
|
{
|
|
|
|
|
char *screenName = NULL;
|
|
|
|
|
char *baseName = NULL;
|
|
|
|
|
char *className = NULL;
|
|
|
|
|
int interactive = 0;
|
|
|
|
|
|
|
|
|
|
baseName = strrchr(Py_GetProgramName (), '/');
|
|
|
|
|
if (baseName != NULL)
|
|
|
|
|
baseName++;
|
|
|
|
|
else
|
|
|
|
|
baseName = Py_GetProgramName();
|
|
|
|
|
className = "Tk";
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (!PyArg_ParseTuple(args, "|zssi",
|
|
|
|
|
&screenName, &baseName, &className,
|
|
|
|
|
&interactive))
|
|
|
|
|
return NULL;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
return (PyObject *) Tkapp_New(screenName, baseName, className,
|
|
|
|
|
interactive);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static PyMethodDef moduleMethods[] =
|
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
{"create", Tkinter_Create, 1},
|
|
|
|
|
{"createfilehandler", Tkapp_CreateFileHandler, 0},
|
|
|
|
|
{"deletefilehandler", Tkapp_DeleteFileHandler, 0},
|
|
|
|
|
{"createtimerhandler", Tkapp_CreateTimerHandler, 0},
|
|
|
|
|
{"mainloop", Tkapp_MainLoop, 1},
|
|
|
|
|
{"dooneevent", Tkapp_DoOneEvent, 1},
|
|
|
|
|
{"quit", Tkapp_Quit},
|
|
|
|
|
{NULL, NULL}
|
1994-06-20 04:49:28 -03:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#ifdef WITH_READLINE
|
|
|
|
|
static int
|
|
|
|
|
EventHook ()
|
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
/* XXX Reset tty */
|
|
|
|
|
if (errorInCmd) {
|
|
|
|
|
errorInCmd = 0;
|
|
|
|
|
PyErr_Restore(excInCmd, valInCmd, trbInCmd);
|
|
|
|
|
excInCmd = valInCmd = trbInCmd = NULL;
|
|
|
|
|
PyErr_Print();
|
|
|
|
|
}
|
|
|
|
|
if (Tk_GetNumMainWindows() > 0)
|
|
|
|
|
Tk_DoOneEvent(TK_DONT_WAIT);
|
|
|
|
|
return 0;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
|
|
|
|
#endif /* WITH_READLINE */
|
|
|
|
|
|
1994-07-07 06:25:12 -03:00
|
|
|
|
static void
|
|
|
|
|
Tkinter_Cleanup ()
|
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
/* This segfault with Tk 4.0 beta and seems unnecessary there as
|
|
|
|
|
* well */
|
|
|
|
|
|
1995-02-07 11:41:02 -04:00
|
|
|
|
#if TK_MAJOR_VERSION < 4
|
1997-01-15 20:15:11 -04:00
|
|
|
|
/* XXX rl_deprep_terminal is static, damned! */
|
|
|
|
|
while (tkMainWindowList != 0)
|
|
|
|
|
Tk_DestroyWindow(tkMainWindowList->win);
|
1995-02-07 11:41:02 -04:00
|
|
|
|
#endif
|
1994-07-07 06:25:12 -03:00
|
|
|
|
}
|
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
|
|
|
|
/* all errors will be checked in one fell swoop in init_tkinter() */
|
|
|
|
|
static void
|
|
|
|
|
ins_long(d, name, val)
|
|
|
|
|
PyObject *d;
|
|
|
|
|
char *name;
|
|
|
|
|
long val;
|
|
|
|
|
{
|
|
|
|
|
PyObject *v = PyInt_FromLong(val);
|
|
|
|
|
if (v) {
|
|
|
|
|
PyDict_SetItemString(d, name, v);
|
|
|
|
|
Py_DECREF(v);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
static void
|
|
|
|
|
ins_string(d, name, val)
|
|
|
|
|
PyObject *d;
|
|
|
|
|
char *name;
|
|
|
|
|
char *val;
|
|
|
|
|
{
|
|
|
|
|
PyObject *v = PyString_FromString(val);
|
|
|
|
|
if (v) {
|
|
|
|
|
PyDict_SetItemString(d, name, v);
|
|
|
|
|
Py_DECREF(v);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
void
|
1996-02-12 20:11:37 -04:00
|
|
|
|
init_tkinter ()
|
1994-06-20 04:49:28 -03:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
static inited = 0;
|
1994-07-07 06:25:12 -03:00
|
|
|
|
|
1994-06-20 04:49:28 -03:00
|
|
|
|
#ifdef WITH_READLINE
|
1997-01-15 20:15:11 -04:00
|
|
|
|
extern int (*rl_event_hook) ();
|
1994-06-20 04:49:28 -03:00
|
|
|
|
#endif /* WITH_READLINE */
|
1997-01-15 20:15:11 -04:00
|
|
|
|
PyObject *m, *d;
|
|
|
|
|
|
|
|
|
|
Tkapp_Type.ob_type = &PyType_Type;
|
|
|
|
|
Tktt_Type.ob_type = &PyType_Type;
|
|
|
|
|
|
|
|
|
|
m = Py_InitModule("_tkinter", moduleMethods);
|
|
|
|
|
|
|
|
|
|
d = PyModule_GetDict(m);
|
|
|
|
|
Tkinter_TclError = Py_BuildValue("s", "TclError");
|
|
|
|
|
PyDict_SetItemString(d, "TclError", Tkinter_TclError);
|
|
|
|
|
|
|
|
|
|
ins_long(d, "READABLE", TK_READABLE);
|
|
|
|
|
ins_long(d, "WRITABLE", TK_WRITABLE);
|
|
|
|
|
ins_long(d, "EXCEPTION", TK_EXCEPTION);
|
|
|
|
|
ins_long(d, "X_EVENTS", TK_X_EVENTS);
|
|
|
|
|
ins_long(d, "FILE_EVENTS", TK_FILE_EVENTS);
|
|
|
|
|
ins_long(d, "TIMER_EVENTS", TK_TIMER_EVENTS);
|
|
|
|
|
ins_long(d, "IDLE_EVENTS", TK_IDLE_EVENTS);
|
|
|
|
|
ins_long(d, "ALL_EVENTS", TK_ALL_EVENTS);
|
|
|
|
|
ins_long(d, "DONT_WAIT", TK_DONT_WAIT);
|
|
|
|
|
ins_string(d, "TK_VERSION", TK_VERSION);
|
|
|
|
|
ins_string(d, "TCL_VERSION", TCL_VERSION);
|
1994-06-20 04:49:28 -03:00
|
|
|
|
|
|
|
|
|
#ifdef WITH_READLINE
|
1997-01-15 20:15:11 -04:00
|
|
|
|
rl_event_hook = EventHook;
|
1994-06-20 04:49:28 -03:00
|
|
|
|
#endif /* WITH_READLINE */
|
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (!inited) {
|
|
|
|
|
inited = 1;
|
|
|
|
|
if (Py_AtExit(Tkinter_Cleanup) != 0)
|
|
|
|
|
fprintf(stderr,
|
|
|
|
|
"Tkinter: warning: cleanup procedure not registered\n");
|
|
|
|
|
}
|
1994-07-07 06:25:12 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (PyErr_Occurred())
|
|
|
|
|
Py_FatalError ("can't initialize module _tkinter");
|
1995-10-31 12:15:12 -04:00
|
|
|
|
#ifdef macintosh
|
1997-01-15 20:15:11 -04:00
|
|
|
|
TclMacSetEventProc(PyMacConvertEvent);
|
1996-02-25 00:50:29 -04:00
|
|
|
|
#if GENERATINGCFM
|
1997-01-15 20:15:11 -04:00
|
|
|
|
mac_addlibresources();
|
1996-02-25 00:50:29 -04:00
|
|
|
|
#endif /* GENERATINGCFM */
|
|
|
|
|
#endif /* macintosh */
|
1994-06-20 04:49:28 -03:00
|
|
|
|
}
|
1995-09-22 20:49:28 -03:00
|
|
|
|
|
1996-02-25 00:50:29 -04:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
|
1995-09-22 20:49:28 -03:00
|
|
|
|
#ifdef macintosh
|
1996-02-25 00:46:40 -04:00
|
|
|
|
|
|
|
|
|
/*
|
1996-02-25 00:50:29 -04:00
|
|
|
|
** Anyone who embeds Tcl/Tk on the Mac must define panic().
|
1996-02-25 00:46:40 -04:00
|
|
|
|
*/
|
|
|
|
|
|
1995-09-22 20:49:28 -03:00
|
|
|
|
void
|
|
|
|
|
panic(char * format, ...)
|
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
va_list varg;
|
1995-09-22 20:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
va_start(varg, format);
|
1995-09-22 20:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
vfprintf(stderr, format, varg);
|
|
|
|
|
(void) fflush(stderr);
|
1995-09-22 20:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
va_end(varg);
|
1995-09-22 20:49:28 -03:00
|
|
|
|
|
1997-01-15 20:15:11 -04:00
|
|
|
|
Py_FatalError("Tcl/Tk panic");
|
1995-09-22 20:49:28 -03:00
|
|
|
|
}
|
1996-02-25 00:46:40 -04:00
|
|
|
|
|
1996-02-25 00:50:29 -04:00
|
|
|
|
/*
|
|
|
|
|
** Pass events to SIOUX before passing them to Tk.
|
|
|
|
|
*/
|
1996-02-25 00:46:40 -04:00
|
|
|
|
|
1996-02-25 00:50:29 -04:00
|
|
|
|
static int
|
|
|
|
|
PyMacConvertEvent(eventPtr)
|
1997-01-15 20:15:11 -04:00
|
|
|
|
EventRecord *eventPtr;
|
1995-11-14 06:34:45 -04:00
|
|
|
|
{
|
1997-01-15 20:15:11 -04:00
|
|
|
|
if (SIOUXHandleOneEvent(eventPtr))
|
|
|
|
|
return 0; /* Nothing happened to the Tcl event queue */
|
|
|
|
|
return TkMacConvertEvent(eventPtr);
|
1995-11-14 06:34:45 -04:00
|
|
|
|
}
|
|
|
|
|
|
1996-02-25 00:50:29 -04:00
|
|
|
|
#if GENERATINGCFM
|
1996-02-25 00:46:40 -04:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
** Additional Mac specific code for dealing with shared libraries.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <Resources.h>
|
|
|
|
|
#include <CodeFragments.h>
|
|
|
|
|
|
|
|
|
|
static int loaded_from_shlib = 0;
|
|
|
|
|
static FSSpec library_fss;
|
1995-09-22 20:49:28 -03:00
|
|
|
|
|
1995-10-31 12:15:12 -04:00
|
|
|
|
/*
|
|
|
|
|
** If this module is dynamically loaded the following routine should
|
|
|
|
|
** be the init routine. It takes care of adding the shared library to
|
|
|
|
|
** the resource-file chain, so that the tk routines can find their
|
|
|
|
|
** resources.
|
|
|
|
|
*/
|
|
|
|
|
OSErr pascal
|
1997-04-29 12:49:04 -03:00
|
|
|
|
init_tkinter_shlib(CFragInitBlockPtr data)
|
1995-10-31 12:15:12 -04:00
|
|
|
|
{
|
1996-08-26 11:37:15 -03:00
|
|
|
|
__initialize();
|
1995-10-31 12:15:12 -04:00
|
|
|
|
if ( data == nil ) return noErr;
|
1997-04-29 12:49:04 -03:00
|
|
|
|
if ( data->fragLocator.where == kDataForkCFragLocator ) {
|
1995-10-31 12:15:12 -04:00
|
|
|
|
library_fss = *data->fragLocator.u.onDisk.fileSpec;
|
|
|
|
|
loaded_from_shlib = 1;
|
1997-04-29 12:49:04 -03:00
|
|
|
|
} else if ( data->fragLocator.where == kResourceCFragLocator ) {
|
1995-10-31 12:15:12 -04:00
|
|
|
|
library_fss = *data->fragLocator.u.inSegs.fileSpec;
|
|
|
|
|
loaded_from_shlib = 1;
|
|
|
|
|
}
|
|
|
|
|
return noErr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
** Insert the library resources into the search path. Put them after
|
|
|
|
|
** the resources from the application. Again, we ignore errors.
|
|
|
|
|
*/
|
1996-02-25 00:46:40 -04:00
|
|
|
|
static
|
1995-10-31 12:15:12 -04:00
|
|
|
|
mac_addlibresources()
|
|
|
|
|
{
|
|
|
|
|
if ( !loaded_from_shlib )
|
|
|
|
|
return;
|
|
|
|
|
(void)FSpOpenResFile(&library_fss, fsRdPerm);
|
|
|
|
|
}
|
|
|
|
|
|
1996-02-25 00:50:29 -04:00
|
|
|
|
#endif /* GENERATINGCFM */
|
|
|
|
|
#endif /* macintosh */
|