| 
									
										
										
										
											1996-06-26 18:26:04 +00:00
										 |  |  |  | /***********************************************************
 | 
					
						
							|  |  |  |  | Copyright (C) 1994 Steen Lumholt. | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |                         All Rights Reserved | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | ******************************************************************/ | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /* _tkinter.c -- Interface to libtk.a and libtcl.a. */ | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-13 21:10:16 +00:00
										 |  |  |  | /* TCL/TK VERSION INFO:
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	Only Tcl/Tk 8.2 and later are supported.  Older versions are not | 
					
						
							|  |  |  |  | 	supported.  (Use Python 2.2 if you cannot upgrade your Tcl/Tk | 
					
						
							| 
									
										
										
										
											2000-03-28 20:07:05 +00:00
										 |  |  |  | 	libraries.) | 
					
						
							|  |  |  |  | */ | 
					
						
							| 
									
										
										
										
											1997-07-19 19:57:42 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-28 20:07:05 +00:00
										 |  |  |  | /* XXX Further speed-up ideas, involving Tcl 8.0 features:
 | 
					
						
							| 
									
										
										
										
											1998-04-29 16:22:14 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |    - Register a new Tcl type, "Python callable", which can be called more | 
					
						
							|  |  |  |  |    efficiently and passed to Tcl_EvalObj() directly (if this is possible). | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-13 21:10:16 +00:00
										 |  |  |  | */ | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-09-22 23:49:28 +00:00
										 |  |  |  | #include "Python.h"
 | 
					
						
							| 
									
										
										
										
											1996-08-08 19:09:53 +00:00
										 |  |  |  | #include <ctype.h>
 | 
					
						
							| 
									
										
										
										
											1995-09-22 23:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | #ifdef WITH_THREAD
 | 
					
						
							| 
									
										
										
										
											1998-10-01 20:42:43 +00:00
										 |  |  |  | #include "pythread.h"
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | #endif
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-29 01:28:40 +00:00
										 |  |  |  | #ifdef MS_WINDOWS
 | 
					
						
							|  |  |  |  | #include <windows.h>
 | 
					
						
							|  |  |  |  | #endif
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-04 00:33:13 +00:00
										 |  |  |  | /* Allow using this code in Python 2.[12] */ | 
					
						
							|  |  |  |  | #ifndef PyDoc_STRVAR
 | 
					
						
							| 
									
										
										
										
											2003-01-21 21:52:57 +00:00
										 |  |  |  | #define PyDoc_STRVAR(name,str) static char name[] = str
 | 
					
						
							| 
									
										
										
										
											2003-01-04 00:33:13 +00:00
										 |  |  |  | #endif
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | #ifndef PyMODINIT_FUNC
 | 
					
						
							| 
									
										
										
										
											2003-01-04 08:54:59 +00:00
										 |  |  |  | #define PyMODINIT_FUNC void
 | 
					
						
							| 
									
										
										
										
											2003-01-04 00:33:13 +00:00
										 |  |  |  | #endif
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-30 08:26:04 +00:00
										 |  |  |  | #ifndef PyBool_Check
 | 
					
						
							|  |  |  |  | #define PyBool_Check(o)       0
 | 
					
						
							|  |  |  |  | #define PyBool_FromLong       PyInt_FromLong
 | 
					
						
							|  |  |  |  | #endif
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-01 18:08:06 +00:00
										 |  |  |  | /* Starting with Tcl 8.4, many APIs offer const-correctness.  Unfortunately,
 | 
					
						
							|  |  |  |  |    making _tkinter correct for this API means to break earlier | 
					
						
							|  |  |  |  |    versions. USE_COMPAT_CONST allows to make _tkinter work with both 8.4 and | 
					
						
							|  |  |  |  |    earlier versions. Once Tcl releases before 8.4 don't need to be supported | 
					
						
							|  |  |  |  |    anymore, this should go. */ | 
					
						
							|  |  |  |  | #define USE_COMPAT_CONST
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | /* If Tcl is compiled for threads, we must also define TCL_THREAD. We define
 | 
					
						
							|  |  |  |  |    it always; if Tcl is not threaded, the thread functions in | 
					
						
							|  |  |  |  |    Tcl are empty.  */ | 
					
						
							|  |  |  |  | #define TCL_THREADS
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-12-09 23:15:56 +00:00
										 |  |  |  | #ifdef TK_FRAMEWORK
 | 
					
						
							|  |  |  |  | #include <Tcl/tcl.h>
 | 
					
						
							|  |  |  |  | #include <Tk/tk.h>
 | 
					
						
							|  |  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | #include <tcl.h>
 | 
					
						
							|  |  |  |  | #include <tk.h>
 | 
					
						
							| 
									
										
										
										
											2001-12-09 23:15:56 +00:00
										 |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-31 20:30:46 +00:00
										 |  |  |  | /* For Tcl 8.2 and 8.3, CONST* is not defined (except on Cygwin). */ | 
					
						
							| 
									
										
										
										
											2002-12-30 18:14:15 +00:00
										 |  |  |  | #ifndef CONST84_RETURN
 | 
					
						
							|  |  |  |  | #define CONST84_RETURN
 | 
					
						
							| 
									
										
										
										
											2002-12-31 20:30:46 +00:00
										 |  |  |  | #undef CONST
 | 
					
						
							| 
									
										
										
										
											2002-12-30 18:14:15 +00:00
										 |  |  |  | #define CONST
 | 
					
						
							|  |  |  |  | #endif
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-01 19:29:02 +00:00
										 |  |  |  | #define TKMAJORMINOR (TK_MAJOR_VERSION*1000 + TK_MINOR_VERSION)
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-01 17:48:31 +00:00
										 |  |  |  | #if TKMAJORMINOR < 8002
 | 
					
						
							|  |  |  |  | #error "Tk older than 8.2 not supported"
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | #endif
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-01 18:50:56 +00:00
										 |  |  |  | /* Unicode conversion assumes that Tcl_UniChar is two bytes.
 | 
					
						
							|  |  |  |  |    We cannot test this directly, so we test UTF-8 size instead, | 
					
						
							|  |  |  |  |    expecting that TCL_UTF_MAX is changed if Tcl ever supports | 
					
						
							| 
									
										
										
										
											2003-04-16 20:34:55 +00:00
										 |  |  |  |    either UTF-16 or UCS-4.   | 
					
						
							|  |  |  |  |    Redhat 8 sets TCL_UTF_MAX to 6, and uses wchar_t for  | 
					
						
							|  |  |  |  |    Tcl_Unichar. This is also ok as long as Python uses UCS-4, | 
					
						
							|  |  |  |  |    as well. | 
					
						
							|  |  |  |  | */ | 
					
						
							|  |  |  |  | #if TCL_UTF_MAX != 3 && !(defined(Py_UNICODE_WIDE) && TCL_UTF_MAX==6)
 | 
					
						
							| 
									
										
										
										
											2002-10-01 18:50:56 +00:00
										 |  |  |  | #error "unsupported Tcl configuration"
 | 
					
						
							|  |  |  |  | #endif
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-11-20 01:44:59 +00:00
										 |  |  |  | #if !(defined(MS_WINDOWS) || defined(__CYGWIN__))
 | 
					
						
							| 
									
										
										
										
											1997-08-14 19:57:07 +00:00
										 |  |  |  | #define HAVE_CREATEFILEHANDLER
 | 
					
						
							|  |  |  |  | #endif
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | #ifdef HAVE_CREATEFILEHANDLER
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-08 01:08:55 +00:00
										 |  |  |  | /* This bit is to ensure that TCL_UNIX_FD is defined and doesn't interfere
 | 
					
						
							|  |  |  |  |    with the proper calculation of FHANDLETYPE == TCL_UNIX_FD below. */ | 
					
						
							|  |  |  |  | #ifndef TCL_UNIX_FD
 | 
					
						
							|  |  |  |  | #  ifdef TCL_WIN_SOCKET
 | 
					
						
							|  |  |  |  | #    define TCL_UNIX_FD (! TCL_WIN_SOCKET)
 | 
					
						
							|  |  |  |  | #  else
 | 
					
						
							|  |  |  |  | #    define TCL_UNIX_FD 1
 | 
					
						
							|  |  |  |  | #  endif
 | 
					
						
							|  |  |  |  | #endif
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | /* Tcl_CreateFileHandler() changed several times; these macros deal with the
 | 
					
						
							|  |  |  |  |    messiness.  In Tcl 8.0 and later, it is not available on Windows (and on | 
					
						
							|  |  |  |  |    Unix, only because Jack added it back); when available on Windows, it only | 
					
						
							|  |  |  |  |    applies to sockets. */ | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 18:28:17 +00:00
										 |  |  |  | #ifdef MS_WINDOWS
 | 
					
						
							|  |  |  |  | #define FHANDLETYPE TCL_WIN_SOCKET
 | 
					
						
							|  |  |  |  | #else
 | 
					
						
							|  |  |  |  | #define FHANDLETYPE TCL_UNIX_FD
 | 
					
						
							|  |  |  |  | #endif
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | /* If Tcl can wait for a Unix file descriptor, define the EventHook() routine
 | 
					
						
							|  |  |  |  |    which uses this to handle Tcl events while the user is typing commands. */ | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | #if FHANDLETYPE == TCL_UNIX_FD
 | 
					
						
							| 
									
										
										
										
											1998-05-22 18:28:17 +00:00
										 |  |  |  | #define WAIT_FOR_STDIN
 | 
					
						
							|  |  |  |  | #endif
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | #endif /* HAVE_CREATEFILEHANDLER */
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-06-13 13:56:28 +00:00
										 |  |  |  | #ifdef MS_WINDOWS
 | 
					
						
							|  |  |  |  | #include <conio.h>
 | 
					
						
							|  |  |  |  | #define WAIT_FOR_STDIN
 | 
					
						
							|  |  |  |  | #endif
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | #ifdef WITH_THREAD
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | /* The threading situation is complicated.  Tcl is not thread-safe, except
 | 
					
						
							|  |  |  |  |    when configured with --enable-threads. | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  |    So we need to use a lock around all uses of Tcl.  Previously, the Python | 
					
						
							|  |  |  |  |    interpreter lock was used for this.  However, this causes problems when | 
					
						
							|  |  |  |  |    other Python threads need to run while Tcl is blocked waiting for events. | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |    To solve this problem, a separate lock for Tcl is introduced.  Holding it | 
					
						
							|  |  |  |  |    is incompatible with holding Python's interpreter lock.  The following four | 
					
						
							|  |  |  |  |    macros manipulate both locks together. | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |    ENTER_TCL and LEAVE_TCL are brackets, just like Py_BEGIN_ALLOW_THREADS and | 
					
						
							|  |  |  |  |    Py_END_ALLOW_THREADS.  They should be used whenever a call into Tcl is made | 
					
						
							|  |  |  |  |    that could call an event handler, or otherwise affect the state of a Tcl | 
					
						
							|  |  |  |  |    interpreter.  These assume that the surrounding code has the Python | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  |    interpreter lock; inside the brackets, the Python interpreter lock has been | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  |    released and the lock for Tcl has been acquired. | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-06-15 14:03:52 +00:00
										 |  |  |  |    Sometimes, it is necessary to have both the Python lock and the Tcl lock. | 
					
						
							|  |  |  |  |    (For example, when transferring data from the Tcl interpreter result to a | 
					
						
							|  |  |  |  |    Python string object.)  This can be done by using different macros to close | 
					
						
							|  |  |  |  |    the ENTER_TCL block: ENTER_OVERLAP reacquires the Python lock (and restores | 
					
						
							|  |  |  |  |    the thread state) but doesn't release the Tcl lock; LEAVE_OVERLAP_TCL | 
					
						
							|  |  |  |  |    releases the Tcl lock. | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-09 20:51:18 +00:00
										 |  |  |  |    By contrast, ENTER_PYTHON and LEAVE_PYTHON are used in Tcl event | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  |    handlers when the handler needs to use Python.  Such event handlers are | 
					
						
							|  |  |  |  |    entered while the lock for Tcl is held; the event handler presumably needs | 
					
						
							| 
									
										
										
										
											1998-10-09 20:51:18 +00:00
										 |  |  |  |    to use Python.  ENTER_PYTHON releases the lock for Tcl and acquires | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  |    the Python interpreter lock, restoring the appropriate thread state, and | 
					
						
							|  |  |  |  |    LEAVE_PYTHON releases the Python interpreter lock and re-acquires the lock | 
					
						
							|  |  |  |  |    for Tcl.  It is okay for ENTER_TCL/LEAVE_TCL pairs to be contained inside | 
					
						
							| 
									
										
										
										
											1998-10-09 20:51:18 +00:00
										 |  |  |  |    the code between ENTER_PYTHON and LEAVE_PYTHON. | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |    These locks expand to several statements and brackets; they should not be | 
					
						
							|  |  |  |  |    used in branches of if statements and the like. | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  |    If Tcl is threaded, this approach won't work anymore. The Tcl interpreter is | 
					
						
							|  |  |  |  |    only valid in the thread that created it, and all Tk activity must happen in this | 
					
						
							|  |  |  |  |    thread, also. That means that the mainloop must be invoked in the thread that | 
					
						
							|  |  |  |  |    created the interpreter. Invoking commands from other threads is possible; | 
					
						
							|  |  |  |  |    _tkinter will queue an event for the interpreter thread, which will then | 
					
						
							|  |  |  |  |    execute the command and pass back the result. If the main thread is not in the | 
					
						
							|  |  |  |  |    mainloop, and invoking commands causes an exception; if the main loop is running | 
					
						
							|  |  |  |  |    but not processing events, the command invocation will block. | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |    In addition, for a threaded Tcl, a single global tcl_tstate won't be sufficient | 
					
						
							|  |  |  |  |    anymore, since multiple Tcl interpreters may simultaneously dispatch in different | 
					
						
							|  |  |  |  |    threads. So we use the Tcl TLS API. | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | */ | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 19:32:43 +00:00
										 |  |  |  | static PyThread_type_lock tcl_lock = 0; | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | #ifdef TCL_THREADS
 | 
					
						
							|  |  |  |  | static Tcl_ThreadDataKey state_key; | 
					
						
							|  |  |  |  | typedef PyThreadState *ThreadSpecificData; | 
					
						
							|  |  |  |  | #define tcl_tstate (*(PyThreadState**)Tcl_GetThreadData(&state_key, sizeof(PyThreadState*)))
 | 
					
						
							|  |  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											1998-10-09 20:51:18 +00:00
										 |  |  |  | static PyThreadState *tcl_tstate = NULL; | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | #define ENTER_TCL \
 | 
					
						
							| 
									
										
										
										
											1998-10-09 20:51:18 +00:00
										 |  |  |  | 	{ PyThreadState *tstate = PyThreadState_Get(); Py_BEGIN_ALLOW_THREADS \ | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	    if(tcl_lock)PyThread_acquire_lock(tcl_lock, 1); tcl_tstate = tstate; | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | #define LEAVE_TCL \
 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  |     tcl_tstate = NULL; if(tcl_lock)PyThread_release_lock(tcl_lock); Py_END_ALLOW_THREADS} | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | #define ENTER_OVERLAP \
 | 
					
						
							|  |  |  |  | 	Py_END_ALLOW_THREADS | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | #define LEAVE_OVERLAP_TCL \
 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	tcl_tstate = NULL; if(tcl_lock)PyThread_release_lock(tcl_lock); } | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-09 20:51:18 +00:00
										 |  |  |  | #define ENTER_PYTHON \
 | 
					
						
							|  |  |  |  | 	{ PyThreadState *tstate = tcl_tstate; tcl_tstate = NULL; \ | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	    if(tcl_lock)PyThread_release_lock(tcl_lock); PyEval_RestoreThread((tstate)); } | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | #define LEAVE_PYTHON \
 | 
					
						
							| 
									
										
										
										
											1998-10-09 20:51:18 +00:00
										 |  |  |  | 	{ PyThreadState *tstate = PyEval_SaveThread(); \ | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	    if(tcl_lock)PyThread_acquire_lock(tcl_lock, 1); tcl_tstate = tstate; } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | #define CHECK_TCL_APPARTMENT \
 | 
					
						
							|  |  |  |  | 	if (((TkappObject *)self)->threaded && \ | 
					
						
							|  |  |  |  | 	    ((TkappObject *)self)->thread_id != Tcl_GetCurrentThread()) { \ | 
					
						
							|  |  |  |  | 		PyErr_SetString(PyExc_RuntimeError, "Calling Tcl from different appartment"); \ | 
					
						
							|  |  |  |  | 		return 0; \ | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | #else
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | #define ENTER_TCL
 | 
					
						
							|  |  |  |  | #define LEAVE_TCL
 | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | #define ENTER_OVERLAP
 | 
					
						
							|  |  |  |  | #define LEAVE_OVERLAP_TCL
 | 
					
						
							| 
									
										
										
										
											1998-10-09 20:51:18 +00:00
										 |  |  |  | #define ENTER_PYTHON
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | #define LEAVE_PYTHON
 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | #define CHECK_TCL_APPARTMENT
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | #endif
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-08 19:09:53 +00:00
										 |  |  |  | #ifndef FREECAST
 | 
					
						
							| 
									
										
										
										
											1996-08-13 21:10:16 +00:00
										 |  |  |  | #define FREECAST (char *)
 | 
					
						
							| 
									
										
										
										
											1996-08-08 19:09:53 +00:00
										 |  |  |  | #endif
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | /**** Tkapp Object Declaration ****/ | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-07-17 16:30:39 +00:00
										 |  |  |  | static PyTypeObject Tkapp_Type; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	PyObject_HEAD | 
					
						
							|  |  |  |  | 	Tcl_Interp *interp; | 
					
						
							| 
									
										
										
										
											2002-11-26 21:39:48 +00:00
										 |  |  |  | 	int wantobjects; | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	int threaded; /* True if tcl_platform[threaded] */ | 
					
						
							|  |  |  |  | 	Tcl_ThreadId thread_id; | 
					
						
							|  |  |  |  | 	int dispatching; | 
					
						
							|  |  |  |  | 	/* We cannot include tclInt.h, as this is internal.
 | 
					
						
							| 
									
										
										
										
											2002-11-26 22:12:12 +00:00
										 |  |  |  | 	   So we cache interesting types here. */ | 
					
						
							|  |  |  |  | 	Tcl_ObjType *BooleanType; | 
					
						
							|  |  |  |  | 	Tcl_ObjType *ByteArrayType; | 
					
						
							|  |  |  |  | 	Tcl_ObjType *DoubleType; | 
					
						
							|  |  |  |  | 	Tcl_ObjType *IntType; | 
					
						
							|  |  |  |  | 	Tcl_ObjType *ListType; | 
					
						
							|  |  |  |  | 	Tcl_ObjType *ProcBodyType; | 
					
						
							|  |  |  |  | 	Tcl_ObjType *StringType; | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | } TkappObject; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-19 02:37:44 +00:00
										 |  |  |  | #define Tkapp_Check(v) (Py_TYPE(v) == &Tkapp_Type)
 | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | #define Tkapp_Interp(v) (((TkappObject *) (v))->interp)
 | 
					
						
							| 
									
										
										
										
											2000-10-12 17:14:46 +00:00
										 |  |  |  | #define Tkapp_Result(v) Tcl_GetStringResult(Tkapp_Interp(v))
 | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | #define DEBUG_REFCNT(v) (printf("DEBUG: id=%p, refcnt=%i\n", \
 | 
					
						
							| 
									
										
										
										
											2007-12-19 02:37:44 +00:00
										 |  |  |  | (void *) v, Py_REFCNT(v))) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  |  | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | /**** Error Handling ****/ | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject *Tkinter_TclError; | 
					
						
							| 
									
										
										
										
											1994-07-07 09:25:12 +00:00
										 |  |  |  | static int quitMainLoop = 0; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | static int errorInCmd = 0; | 
					
						
							|  |  |  |  | static PyObject *excInCmd; | 
					
						
							|  |  |  |  | static PyObject *valInCmd; | 
					
						
							| 
									
										
										
										
											1995-01-02 19:30:30 +00:00
										 |  |  |  | static PyObject *trbInCmd; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |  | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkinter_Error(PyObject *v) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	PyErr_SetString(Tkinter_TclError, Tkapp_Result(v)); | 
					
						
							|  |  |  |  | 	return NULL; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  |  | 
					
						
							|  |  |  |  | /**** Utils ****/ | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-09 08:19:48 +00:00
										 |  |  |  | static int Tkinter_busywaitinterval = 20; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | #ifdef WITH_THREAD
 | 
					
						
							| 
									
										
										
										
											1998-05-29 01:28:40 +00:00
										 |  |  |  | #ifndef MS_WINDOWS
 | 
					
						
							| 
									
										
										
										
											1998-08-13 13:29:22 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | /* Millisecond sleep() for Unix platforms. */ | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Sleep(int milli) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	/* XXX Too bad if you don't have select(). */ | 
					
						
							|  |  |  |  | 	struct timeval t; | 
					
						
							|  |  |  |  | 	t.tv_sec = milli/1000; | 
					
						
							|  |  |  |  | 	t.tv_usec = (milli%1000) * 1000; | 
					
						
							|  |  |  |  | 	select(0, (fd_set *)0, (fd_set *)0, (fd_set *)0, &t); | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-05-29 01:28:40 +00:00
										 |  |  |  | #endif /* MS_WINDOWS */
 | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-28 09:23:09 +00:00
										 |  |  |  | /* Wait up to 1s for the mainloop to come up. */ | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static int | 
					
						
							|  |  |  |  | WaitForMainloop(TkappObject* self) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	int i; | 
					
						
							|  |  |  |  | 	for (i = 0; i < 10; i++) { | 
					
						
							|  |  |  |  | 		if (self->dispatching) | 
					
						
							|  |  |  |  | 			return 1; | 
					
						
							|  |  |  |  | 		Py_BEGIN_ALLOW_THREADS | 
					
						
							|  |  |  |  | 		Sleep(100); | 
					
						
							|  |  |  |  | 		Py_END_ALLOW_THREADS | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	if (self->dispatching) | 
					
						
							|  |  |  |  | 		return 1; | 
					
						
							|  |  |  |  | 	PyErr_SetString(PyExc_RuntimeError, "main thread is not in main loop"); | 
					
						
							|  |  |  |  | 	return 0; | 
					
						
							|  |  |  |  | } | 
					
						
							| 
									
										
										
										
											2003-03-30 08:44:58 +00:00
										 |  |  |  | #endif /* WITH_THREAD */
 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  |  | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | static char * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | AsString(PyObject *value, PyObject *tmp) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 	if (PyString_Check(value)) | 
					
						
							|  |  |  |  | 		return PyString_AsString(value); | 
					
						
							| 
									
										
										
										
											2001-08-17 18:39:25 +00:00
										 |  |  |  | #ifdef Py_USING_UNICODE
 | 
					
						
							| 
									
										
										
										
											2000-10-06 16:58:26 +00:00
										 |  |  |  | 	else if (PyUnicode_Check(value)) { | 
					
						
							|  |  |  |  | 		PyObject *v = PyUnicode_AsUTF8String(value); | 
					
						
							|  |  |  |  | 		if (v == NULL) | 
					
						
							|  |  |  |  | 			return NULL; | 
					
						
							|  |  |  |  | 		if (PyList_Append(tmp, v) != 0) { | 
					
						
							|  |  |  |  | 			Py_DECREF(v); | 
					
						
							|  |  |  |  | 			return NULL; | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 		Py_DECREF(v); | 
					
						
							|  |  |  |  | 		return PyString_AsString(v); | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2001-08-17 18:39:25 +00:00
										 |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	else { | 
					
						
							|  |  |  |  | 		PyObject *v = PyObject_Str(value); | 
					
						
							| 
									
										
										
										
											2000-10-06 16:58:26 +00:00
										 |  |  |  | 		if (v == NULL) | 
					
						
							|  |  |  |  | 			return NULL; | 
					
						
							|  |  |  |  | 		if (PyList_Append(tmp, v) != 0) { | 
					
						
							|  |  |  |  | 			Py_DECREF(v); | 
					
						
							|  |  |  |  | 			return NULL; | 
					
						
							|  |  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		Py_DECREF(v); | 
					
						
							|  |  |  |  | 		return PyString_AsString(v); | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |  | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | #define ARGSZ 64
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static char * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Merge(PyObject *args) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  | 	PyObject *tmp = NULL; | 
					
						
							|  |  |  |  | 	char *argvStore[ARGSZ]; | 
					
						
							|  |  |  |  | 	char **argv = NULL; | 
					
						
							|  |  |  |  | 	int fvStore[ARGSZ]; | 
					
						
							|  |  |  |  | 	int *fv = NULL; | 
					
						
							| 
									
										
										
										
											2000-10-06 16:58:26 +00:00
										 |  |  |  | 	int argc = 0, fvc = 0, i; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	char *res = NULL; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	if (!(tmp = PyList_New(0))) | 
					
						
							|  |  |  |  | 	    return NULL; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	argv = argvStore; | 
					
						
							|  |  |  |  | 	fv = fvStore; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	if (args == NULL) | 
					
						
							|  |  |  |  | 		argc = 0; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	else if (!PyTuple_Check(args)) { | 
					
						
							|  |  |  |  | 		argc = 1; | 
					
						
							|  |  |  |  | 		fv[0] = 0; | 
					
						
							| 
									
										
										
										
											2000-10-06 16:58:26 +00:00
										 |  |  |  | 		if (!(argv[0] = AsString(args, tmp))) | 
					
						
							|  |  |  |  | 			goto finally; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	} | 
					
						
							|  |  |  |  | 	else { | 
					
						
							|  |  |  |  | 		argc = PyTuple_Size(args); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		if (argc > ARGSZ) { | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 			argv = (char **)ckalloc(argc * sizeof(char *)); | 
					
						
							|  |  |  |  | 			fv = (int *)ckalloc(argc * sizeof(int)); | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 			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; | 
					
						
							| 
									
										
										
										
											2000-10-06 16:58:26 +00:00
										 |  |  |  | 				fvc++; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 			} | 
					
						
							|  |  |  |  | 			else if (v == Py_None) { | 
					
						
							|  |  |  |  | 				argc = i; | 
					
						
							|  |  |  |  | 				break; | 
					
						
							|  |  |  |  | 			} | 
					
						
							|  |  |  |  | 			else { | 
					
						
							|  |  |  |  | 				fv[i] = 0; | 
					
						
							| 
									
										
										
										
											2000-10-06 16:58:26 +00:00
										 |  |  |  | 				if (!(argv[i] = AsString(v, tmp))) | 
					
						
							|  |  |  |  | 					goto finally; | 
					
						
							|  |  |  |  | 				fvc++; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 			} | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	res = Tcl_Merge(argc, argv); | 
					
						
							| 
									
										
										
										
											2000-10-06 16:58:26 +00:00
										 |  |  |  | 	if (res == NULL) | 
					
						
							|  |  |  |  | 		PyErr_SetString(Tkinter_TclError, "merge failed"); | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |   finally: | 
					
						
							| 
									
										
										
										
											2000-10-06 16:58:26 +00:00
										 |  |  |  | 	for (i = 0; i < fvc; i++) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		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 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |  | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Split(char *list) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  | 	int argc; | 
					
						
							|  |  |  |  | 	char **argv; | 
					
						
							|  |  |  |  | 	PyObject *v; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (list == NULL) { | 
					
						
							|  |  |  |  | 		Py_INCREF(Py_None); | 
					
						
							|  |  |  |  | 		return Py_None; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	if (Tcl_SplitList((Tcl_Interp *)NULL, list, &argc, &argv) != TCL_OK) { | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		/* Not a list.
 | 
					
						
							|  |  |  |  | 		 * Could be a quoted string containing funnies, e.g. {"}. | 
					
						
							|  |  |  |  | 		 * Return the string itself. | 
					
						
							|  |  |  |  | 		 */ | 
					
						
							|  |  |  |  | 		return PyString_FromString(list); | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (argc == 0) | 
					
						
							|  |  |  |  | 		v = PyString_FromString(""); | 
					
						
							|  |  |  |  | 	else if (argc == 1) | 
					
						
							|  |  |  |  | 		v = PyString_FromString(argv[0]); | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 	else if ((v = PyTuple_New(argc)) != NULL) { | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		int i; | 
					
						
							|  |  |  |  | 		PyObject *w; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		for (i = 0; i < argc; i++) { | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 			if ((w = Split(argv[i])) == NULL) { | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 				Py_DECREF(v); | 
					
						
							|  |  |  |  | 				v = NULL; | 
					
						
							|  |  |  |  | 				break; | 
					
						
							|  |  |  |  | 			} | 
					
						
							|  |  |  |  | 			PyTuple_SetItem(v, i, w); | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	Tcl_Free(FREECAST argv); | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	return v; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | /* In some cases, Tcl will still return strings that are supposed to be
 | 
					
						
							|  |  |  |  |    lists. SplitObj walks through a nested tuple, finding string objects that | 
					
						
							|  |  |  |  |    need to be split. */ | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | PyObject * | 
					
						
							|  |  |  |  | SplitObj(PyObject *arg) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	if (PyTuple_Check(arg)) { | 
					
						
							|  |  |  |  | 		int i, size; | 
					
						
							|  |  |  |  | 		PyObject *elem, *newelem, *result; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		size = PyTuple_Size(arg); | 
					
						
							|  |  |  |  | 		result = NULL; | 
					
						
							|  |  |  |  | 		/* Recursively invoke SplitObj for all tuple items.
 | 
					
						
							|  |  |  |  | 		   If this does not return a new object, no action is | 
					
						
							|  |  |  |  | 		   needed. */ | 
					
						
							|  |  |  |  | 		for(i = 0; i < size; i++) { | 
					
						
							|  |  |  |  | 			elem = PyTuple_GetItem(arg, i); | 
					
						
							|  |  |  |  | 			newelem = SplitObj(elem); | 
					
						
							|  |  |  |  | 			if (!newelem) { | 
					
						
							|  |  |  |  | 				Py_XDECREF(result); | 
					
						
							|  |  |  |  | 				return NULL; | 
					
						
							|  |  |  |  | 			} | 
					
						
							|  |  |  |  | 			if (!result) { | 
					
						
							|  |  |  |  | 				int k; | 
					
						
							|  |  |  |  | 				if (newelem == elem) { | 
					
						
							|  |  |  |  | 					Py_DECREF(newelem); | 
					
						
							|  |  |  |  | 					continue; | 
					
						
							|  |  |  |  | 				} | 
					
						
							|  |  |  |  | 				result = PyTuple_New(size); | 
					
						
							|  |  |  |  | 				if (!result) | 
					
						
							|  |  |  |  | 					return NULL; | 
					
						
							|  |  |  |  | 				for(k = 0; k < i; k++) { | 
					
						
							|  |  |  |  | 					elem = PyTuple_GetItem(arg, k); | 
					
						
							|  |  |  |  | 					Py_INCREF(elem); | 
					
						
							|  |  |  |  | 					PyTuple_SetItem(result, k, elem); | 
					
						
							|  |  |  |  | 				} | 
					
						
							|  |  |  |  | 			} | 
					
						
							|  |  |  |  | 			PyTuple_SetItem(result, i, newelem); | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 		if (result) | 
					
						
							|  |  |  |  | 			return result; | 
					
						
							|  |  |  |  | 		/* Fall through, returning arg. */ | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	else if (PyString_Check(arg)) { | 
					
						
							|  |  |  |  | 		int argc; | 
					
						
							|  |  |  |  | 		char **argv; | 
					
						
							|  |  |  |  | 		char *list = PyString_AsString(arg); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		if (Tcl_SplitList((Tcl_Interp *)NULL, list, &argc, &argv) != TCL_OK) { | 
					
						
							|  |  |  |  | 			Py_INCREF(arg); | 
					
						
							|  |  |  |  | 			return arg; | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 		Tcl_Free(FREECAST argv); | 
					
						
							|  |  |  |  | 		if (argc > 1) | 
					
						
							|  |  |  |  | 			return Split(PyString_AsString(arg)); | 
					
						
							|  |  |  |  | 		/* Fall through, returning arg. */ | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	Py_INCREF(arg); | 
					
						
							|  |  |  |  | 	return arg; | 
					
						
							|  |  |  |  | } | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |  | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | /**** Tkapp Object ****/ | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | #ifndef WITH_APPINIT
 | 
					
						
							|  |  |  |  | int | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tcl_AppInit(Tcl_Interp *interp) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  | 	Tk_Window main; | 
					
						
							| 
									
										
										
										
											2004-02-18 05:59:53 +00:00
										 |  |  |  | 	const char * _tkinter_skip_tk_init; | 
					
						
							| 
									
										
										
										
											1996-02-25 04:46:40 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	if (Tcl_Init(interp) == TCL_ERROR) { | 
					
						
							| 
									
										
										
										
											2000-10-12 17:14:46 +00:00
										 |  |  |  | 		PySys_WriteStderr("Tcl_Init error: %s\n", Tcl_GetStringResult(interp)); | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return TCL_ERROR; | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-02-18 05:59:53 +00:00
										 |  |  |  | 	_tkinter_skip_tk_init =	Tcl_GetVar(interp, "_tkinter_skip_tk_init", TCL_GLOBAL_ONLY); | 
					
						
							|  |  |  |  | 	if (_tkinter_skip_tk_init == NULL || strcmp(_tkinter_skip_tk_init, "1")	!= 0) { | 
					
						
							|  |  |  |  | 		main = Tk_MainWindow(interp); | 
					
						
							|  |  |  |  | 		if (Tk_Init(interp) == TCL_ERROR) { | 
					
						
							|  |  |  |  | 			PySys_WriteStderr("Tk_Init error: %s\n", Tcl_GetStringResult(interp)); | 
					
						
							|  |  |  |  | 			return TCL_ERROR; | 
					
						
							|  |  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	} | 
					
						
							|  |  |  |  | 	return TCL_OK; | 
					
						
							|  |  |  |  | } | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | #endif /* !WITH_APPINIT */
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |  | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | /* Initialize the Tk application; see the `main' function in
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  |  * `tkMain.c'. | 
					
						
							|  |  |  |  |  */ | 
					
						
							| 
									
										
										
										
											1998-05-22 18:28:17 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-24 14:43:35 +00:00
										 |  |  |  | static void EnableEventHook(void); /* Forward */ | 
					
						
							|  |  |  |  | static void DisableEventHook(void); /* Forward */ | 
					
						
							| 
									
										
										
										
											1998-05-22 18:28:17 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | static TkappObject * | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | Tkapp_New(char *screenName, char *baseName, char *className, | 
					
						
							| 
									
										
										
										
											2004-08-03 18:45:31 +00:00
										 |  |  |  | 	  int interactive, int wantobjects, int	wantTk, int sync, char *use) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  | 	TkappObject *v; | 
					
						
							|  |  |  |  | 	char *argv0; | 
					
						
							| 
									
										
										
										
											2004-08-04 02:16:48 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  |  | 	v = PyObject_New(TkappObject, &Tkapp_Type); | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	if (v == NULL) | 
					
						
							|  |  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	v->interp = Tcl_CreateInterp(); | 
					
						
							| 
									
										
										
										
											2002-11-26 21:39:48 +00:00
										 |  |  |  | 	v->wantobjects = wantobjects; | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	v->threaded = Tcl_GetVar2Ex(v->interp, "tcl_platform", "threaded", | 
					
						
							|  |  |  |  | 				    TCL_GLOBAL_ONLY) != NULL; | 
					
						
							|  |  |  |  | 	v->thread_id = Tcl_GetCurrentThread(); | 
					
						
							|  |  |  |  | 	v->dispatching = 0; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | #ifndef TCL_THREADS
 | 
					
						
							|  |  |  |  | 	if (v->threaded) { | 
					
						
							|  |  |  |  | 	    PyErr_SetString(PyExc_RuntimeError, "Tcl is threaded but _tkinter is not"); | 
					
						
							|  |  |  |  | 	    Py_DECREF(v); | 
					
						
							|  |  |  |  | 	    return 0; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2003-03-30 08:44:58 +00:00
										 |  |  |  | #ifdef WITH_THREAD
 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	if (v->threaded && tcl_lock) { | 
					
						
							|  |  |  |  | 	    /* If Tcl is threaded, we don't need the lock. */ | 
					
						
							|  |  |  |  | 	    PyThread_free_lock(tcl_lock); | 
					
						
							|  |  |  |  | 	    tcl_lock = NULL; | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-03-30 08:44:58 +00:00
										 |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1996-02-25 04:46:40 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-26 22:12:12 +00:00
										 |  |  |  | 	v->BooleanType = Tcl_GetObjType("boolean"); | 
					
						
							|  |  |  |  | 	v->ByteArrayType = Tcl_GetObjType("bytearray"); | 
					
						
							|  |  |  |  | 	v->DoubleType = Tcl_GetObjType("double"); | 
					
						
							|  |  |  |  | 	v->IntType = Tcl_GetObjType("int"); | 
					
						
							|  |  |  |  | 	v->ListType = Tcl_GetObjType("list"); | 
					
						
							|  |  |  |  | 	v->ProcBodyType = Tcl_GetObjType("procbody"); | 
					
						
							|  |  |  |  | 	v->StringType = Tcl_GetObjType("string"); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-02-19 21:28:49 +00:00
										 |  |  |  | 	/* Delete the 'exit' command, which can screw things up */ | 
					
						
							|  |  |  |  | 	Tcl_DeleteCommand(v->interp, "exit"); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	if (screenName != NULL) | 
					
						
							|  |  |  |  | 		Tcl_SetVar2(v->interp, "env", "DISPLAY", | 
					
						
							|  |  |  |  | 			    screenName, TCL_GLOBAL_ONLY); | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00: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 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	strcpy(argv0, className); | 
					
						
							| 
									
										
										
										
											2005-12-19 06:08:59 +00:00
										 |  |  |  | 	if (isupper(Py_CHARMASK(argv0[0]))) | 
					
						
							| 
									
										
										
										
											2006-04-10 02:17:47 +00:00
										 |  |  |  | 		argv0[0] = tolower(Py_CHARMASK(argv0[0])); | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	Tcl_SetVar(v->interp, "argv0", argv0, TCL_GLOBAL_ONLY); | 
					
						
							|  |  |  |  | 	ckfree(argv0); | 
					
						
							| 
									
										
										
										
											1996-08-08 19:09:53 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-02-18 05:59:53 +00:00
										 |  |  |  | 	if (! wantTk) { | 
					
						
							|  |  |  |  | 	    Tcl_SetVar(v->interp, "_tkinter_skip_tk_init", "1",	TCL_GLOBAL_ONLY); | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-08-03 18:45:31 +00:00
										 |  |  |  | 	/* some initial arguments need to be in argv */ | 
					
						
							|  |  |  |  | 	if (sync || use) { | 
					
						
							| 
									
										
										
										
											2004-08-04 02:16:48 +00:00
										 |  |  |  | 		char *args; | 
					
						
							| 
									
										
										
										
											2004-08-03 18:45:31 +00:00
										 |  |  |  | 		int len = 0; | 
					
						
							| 
									
										
										
										
											2004-08-04 02:16:48 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-08-03 18:45:31 +00:00
										 |  |  |  | 		if (sync) | 
					
						
							|  |  |  |  | 			len += sizeof "-sync"; | 
					
						
							|  |  |  |  | 		if (use) | 
					
						
							|  |  |  |  | 			len += strlen(use) + sizeof "-use "; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-08-04 02:16:48 +00:00
										 |  |  |  | 		args = (char*)ckalloc(len); | 
					
						
							| 
									
										
										
										
											2004-08-03 18:45:31 +00:00
										 |  |  |  | 		if (!args) { | 
					
						
							|  |  |  |  | 			PyErr_NoMemory(); | 
					
						
							|  |  |  |  | 			Py_DECREF(v); | 
					
						
							|  |  |  |  | 			return NULL; | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		args[0] = '\0'; | 
					
						
							|  |  |  |  | 		if (sync) | 
					
						
							|  |  |  |  | 			strcat(args, "-sync"); | 
					
						
							|  |  |  |  | 		if (use) { | 
					
						
							|  |  |  |  | 			if (sync) | 
					
						
							|  |  |  |  | 				strcat(args, " "); | 
					
						
							|  |  |  |  | 			strcat(args, "-use "); | 
					
						
							|  |  |  |  | 			strcat(args, use); | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		Tcl_SetVar(v->interp, "argv", args, TCL_GLOBAL_ONLY); | 
					
						
							|  |  |  |  | 		ckfree(args); | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-07 14:04:31 +00:00
										 |  |  |  | 	if (Tcl_AppInit(v->interp) != TCL_OK) { | 
					
						
							|  |  |  |  | 		PyObject *result = Tkinter_Error((PyObject *)v); | 
					
						
							|  |  |  |  | 		Py_DECREF((PyObject *)v); | 
					
						
							|  |  |  |  | 		return (TkappObject *)result; | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 18:28:17 +00:00
										 |  |  |  | 	EnableEventHook(); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	return v; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | static void | 
					
						
							|  |  |  |  | Tkapp_ThreadSend(TkappObject *self, Tcl_Event *ev, | 
					
						
							|  |  |  |  | 		 Tcl_Condition *cond, Tcl_Mutex *mutex) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	Py_BEGIN_ALLOW_THREADS; | 
					
						
							|  |  |  |  | 	Tcl_MutexLock(mutex); | 
					
						
							|  |  |  |  | 	Tcl_ThreadQueueEvent(self->thread_id, ev, TCL_QUEUE_TAIL); | 
					
						
							|  |  |  |  | 	Tcl_ThreadAlert(self->thread_id); | 
					
						
							|  |  |  |  | 	Tcl_ConditionWait(cond, mutex, NULL); | 
					
						
							|  |  |  |  | 	Tcl_MutexUnlock(mutex); | 
					
						
							|  |  |  |  | 	Py_END_ALLOW_THREADS | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  |  | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | /** Tcl Eval **/ | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | typedef struct { | 
					
						
							|  |  |  |  | 	PyObject_HEAD | 
					
						
							|  |  |  |  | 	Tcl_Obj *value; | 
					
						
							| 
									
										
										
										
											2003-01-04 00:08:09 +00:00
										 |  |  |  | 	PyObject *string; /* This cannot cause cycles. */ | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | } PyTclObject; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | staticforward PyTypeObject PyTclObject_Type; | 
					
						
							|  |  |  |  | #define PyTclObject_Check(v)	((v)->ob_type == &PyTclObject_Type)
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							|  |  |  |  | newPyTclObject(Tcl_Obj *arg) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	PyTclObject *self; | 
					
						
							|  |  |  |  | 	self = PyObject_New(PyTclObject, &PyTclObject_Type); | 
					
						
							|  |  |  |  | 	if (self == NULL) | 
					
						
							|  |  |  |  | 		return NULL; | 
					
						
							|  |  |  |  | 	Tcl_IncrRefCount(arg); | 
					
						
							|  |  |  |  | 	self->value = arg; | 
					
						
							| 
									
										
										
										
											2003-01-04 00:08:09 +00:00
										 |  |  |  | 	self->string = NULL; | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 	return (PyObject*)self; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void | 
					
						
							|  |  |  |  | PyTclObject_dealloc(PyTclObject *self) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	Tcl_DecrRefCount(self->value); | 
					
						
							| 
									
										
										
										
											2003-01-04 00:08:09 +00:00
										 |  |  |  | 	Py_XDECREF(self->string); | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 	PyObject_Del(self); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							|  |  |  |  | PyTclObject_str(PyTclObject *self) | 
					
						
							|  |  |  |  | { | 
					
						
							| 
									
										
										
										
											2003-01-04 00:08:09 +00:00
										 |  |  |  | 	if (self->string && PyString_Check(self->string)) { | 
					
						
							|  |  |  |  | 		Py_INCREF(self->string); | 
					
						
							|  |  |  |  | 		return self->string; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	/* XXX Could cache value if it is an ASCII string. */ | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 	return PyString_FromString(Tcl_GetString(self->value)); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-01 05:47:00 +00:00
										 |  |  |  | static char* | 
					
						
							|  |  |  |  | PyTclObject_TclString(PyObject *self) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	return Tcl_GetString(((PyTclObject*)self)->value); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-04 00:08:09 +00:00
										 |  |  |  | /* Like _str, but create Unicode if necessary. */ | 
					
						
							| 
									
										
										
										
											2003-01-04 00:33:13 +00:00
										 |  |  |  | PyDoc_STRVAR(PyTclObject_string__doc__,  | 
					
						
							|  |  |  |  | "the string representation of this object, either as string or Unicode"); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-04 00:08:09 +00:00
										 |  |  |  | static PyObject * | 
					
						
							|  |  |  |  | PyTclObject_string(PyTclObject *self, void *ignored) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	char *s; | 
					
						
							|  |  |  |  | 	int i, len; | 
					
						
							|  |  |  |  | 	if (!self->string) { | 
					
						
							|  |  |  |  | 		s = Tcl_GetStringFromObj(self->value, &len); | 
					
						
							|  |  |  |  | 		for (i = 0; i < len; i++) | 
					
						
							|  |  |  |  | 			if (s[i] & 0x80) | 
					
						
							|  |  |  |  | 				break; | 
					
						
							|  |  |  |  | #ifdef Py_USING_UNICODE
 | 
					
						
							|  |  |  |  | 		if (i == len) | 
					
						
							|  |  |  |  | 			/* It is an ASCII string. */ | 
					
						
							|  |  |  |  | 			self->string = PyString_FromStringAndSize(s, len); | 
					
						
							|  |  |  |  | 		else { | 
					
						
							|  |  |  |  | 			self->string = PyUnicode_DecodeUTF8(s, len, "strict"); | 
					
						
							|  |  |  |  | 			if (!self->string) { | 
					
						
							|  |  |  |  | 				PyErr_Clear(); | 
					
						
							|  |  |  |  | 				self->string = PyString_FromStringAndSize(s, len); | 
					
						
							|  |  |  |  | 			} | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | #else
 | 
					
						
							|  |  |  |  | 		self->string = PyString_FromStringAndSize(s, len); | 
					
						
							|  |  |  |  | #endif
 | 
					
						
							|  |  |  |  | 		if (!self->string) | 
					
						
							|  |  |  |  | 			return NULL; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	Py_INCREF(self->string); | 
					
						
							|  |  |  |  | 	return self->string; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | #ifdef Py_USING_UNICODE
 | 
					
						
							| 
									
										
										
										
											2003-01-04 00:33:13 +00:00
										 |  |  |  | PyDoc_STRVAR(PyTclObject_unicode__doc__, "convert argument to unicode"); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-04 00:08:09 +00:00
										 |  |  |  | static PyObject * | 
					
						
							|  |  |  |  | PyTclObject_unicode(PyTclObject *self, void *ignored) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	char *s; | 
					
						
							|  |  |  |  | 	int len; | 
					
						
							|  |  |  |  | 	if (self->string && PyUnicode_Check(self->string)) { | 
					
						
							|  |  |  |  | 		Py_INCREF(self->string); | 
					
						
							|  |  |  |  | 		return self->string; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	/* XXX Could chache result if it is non-ASCII. */ | 
					
						
							|  |  |  |  | 	s = Tcl_GetStringFromObj(self->value, &len); | 
					
						
							|  |  |  |  | 	return PyUnicode_DecodeUTF8(s, len, "strict"); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | #endif
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | static PyObject * | 
					
						
							|  |  |  |  | PyTclObject_repr(PyTclObject *self) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	char buf[50]; | 
					
						
							| 
									
										
										
										
											2004-11-13 11:13:35 +00:00
										 |  |  |  | 	PyOS_snprintf(buf, 50, "<%s object at %p>", | 
					
						
							|  |  |  |  | 		      self->value->typePtr->name, self->value); | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 	return PyString_FromString(buf); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-03 09:45:12 +00:00
										 |  |  |  | static int | 
					
						
							|  |  |  |  | PyTclObject_cmp(PyTclObject *self, PyTclObject *other) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	int res; | 
					
						
							|  |  |  |  | 	res = strcmp(Tcl_GetString(self->value), | 
					
						
							|  |  |  |  | 		     Tcl_GetString(other->value)); | 
					
						
							|  |  |  |  | 	if (res < 0) return -1; | 
					
						
							|  |  |  |  | 	if (res > 0) return 1; | 
					
						
							|  |  |  |  | 	return 0; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-04 00:33:13 +00:00
										 |  |  |  | PyDoc_STRVAR(get_typename__doc__, "name of the Tcl type"); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | static PyObject* | 
					
						
							|  |  |  |  | get_typename(PyTclObject* obj, void* ignored) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	return PyString_FromString(obj->value->typePtr->name); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-04 00:33:13 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | static PyGetSetDef PyTclObject_getsetlist[] = { | 
					
						
							| 
									
										
										
										
											2003-01-04 00:33:13 +00:00
										 |  |  |  | 	{"typename", (getter)get_typename, NULL, get_typename__doc__}, | 
					
						
							|  |  |  |  | 	{"string", (getter)PyTclObject_string, NULL,  | 
					
						
							|  |  |  |  | 	 PyTclObject_string__doc__}, | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 	{0}, | 
					
						
							|  |  |  |  | }; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-04 00:08:09 +00:00
										 |  |  |  | static PyMethodDef PyTclObject_methods[] = { | 
					
						
							| 
									
										
										
										
											2005-03-08 15:03:08 +00:00
										 |  |  |  | #ifdef Py_USING_UNICODE
 | 
					
						
							| 
									
										
										
										
											2003-01-04 00:08:09 +00:00
										 |  |  |  | 	{"__unicode__",	(PyCFunction)PyTclObject_unicode, METH_NOARGS, | 
					
						
							| 
									
										
										
										
											2003-01-04 00:33:13 +00:00
										 |  |  |  | 	PyTclObject_unicode__doc__}, | 
					
						
							| 
									
										
										
										
											2005-03-08 15:03:08 +00:00
										 |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2003-01-04 00:08:09 +00:00
										 |  |  |  | 	{0} | 
					
						
							|  |  |  |  | }; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | statichere PyTypeObject PyTclObject_Type = { | 
					
						
							|  |  |  |  | 	PyObject_HEAD_INIT(NULL) | 
					
						
							|  |  |  |  | 	0,			/*ob_size*/ | 
					
						
							|  |  |  |  | 	"_tkinter.Tcl_Obj",		/*tp_name*/ | 
					
						
							|  |  |  |  | 	sizeof(PyTclObject),	/*tp_basicsize*/ | 
					
						
							|  |  |  |  | 	0,			/*tp_itemsize*/ | 
					
						
							|  |  |  |  | 	/* methods */ | 
					
						
							|  |  |  |  | 	(destructor)PyTclObject_dealloc, /*tp_dealloc*/ | 
					
						
							|  |  |  |  | 	0,			/*tp_print*/ | 
					
						
							|  |  |  |  | 	0,			/*tp_getattr*/ | 
					
						
							|  |  |  |  | 	0,			/*tp_setattr*/ | 
					
						
							| 
									
										
										
										
											2003-05-03 09:45:12 +00:00
										 |  |  |  | 	(cmpfunc)PyTclObject_cmp,	/*tp_compare*/ | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 	(reprfunc)PyTclObject_repr,	/*tp_repr*/ | 
					
						
							|  |  |  |  | 	0,			/*tp_as_number*/ | 
					
						
							|  |  |  |  | 	0,			/*tp_as_sequence*/ | 
					
						
							|  |  |  |  | 	0,			/*tp_as_mapping*/ | 
					
						
							|  |  |  |  | 	0,			/*tp_hash*/ | 
					
						
							|  |  |  |  |         0,                      /*tp_call*/ | 
					
						
							|  |  |  |  |         (reprfunc)PyTclObject_str,        /*tp_str*/ | 
					
						
							| 
									
										
										
										
											2003-01-06 12:41:26 +00:00
										 |  |  |  |         PyObject_GenericGetAttr,/*tp_getattro*/ | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  |         0,                      /*tp_setattro*/ | 
					
						
							|  |  |  |  |         0,                      /*tp_as_buffer*/ | 
					
						
							|  |  |  |  |         Py_TPFLAGS_DEFAULT,     /*tp_flags*/ | 
					
						
							|  |  |  |  |         0,                      /*tp_doc*/ | 
					
						
							|  |  |  |  |         0,                      /*tp_traverse*/ | 
					
						
							|  |  |  |  |         0,                      /*tp_clear*/ | 
					
						
							|  |  |  |  |         0,                      /*tp_richcompare*/ | 
					
						
							|  |  |  |  |         0,                      /*tp_weaklistoffset*/ | 
					
						
							|  |  |  |  |         0,                      /*tp_iter*/ | 
					
						
							|  |  |  |  |         0,                      /*tp_iternext*/ | 
					
						
							| 
									
										
										
										
											2003-01-04 00:08:09 +00:00
										 |  |  |  |         PyTclObject_methods,    /*tp_methods*/ | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  |         0,			/*tp_members*/ | 
					
						
							|  |  |  |  |         PyTclObject_getsetlist, /*tp_getset*/ | 
					
						
							|  |  |  |  |         0,                      /*tp_base*/ | 
					
						
							|  |  |  |  |         0,                      /*tp_dict*/ | 
					
						
							|  |  |  |  |         0,                      /*tp_descr_get*/ | 
					
						
							|  |  |  |  |         0,                      /*tp_descr_set*/ | 
					
						
							|  |  |  |  |         0,                      /*tp_dictoffset*/ | 
					
						
							|  |  |  |  |         0,                      /*tp_init*/ | 
					
						
							|  |  |  |  |         0,                      /*tp_alloc*/ | 
					
						
							|  |  |  |  |         0,                      /*tp_new*/ | 
					
						
							|  |  |  |  |         0,                      /*tp_free*/ | 
					
						
							|  |  |  |  |         0,                      /*tp_is_gc*/ | 
					
						
							|  |  |  |  | }; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-31 00:51:37 +00:00
										 |  |  |  | static Tcl_Obj* | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | AsObj(PyObject *value) | 
					
						
							| 
									
										
										
										
											2000-03-31 00:51:37 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  | 	Tcl_Obj *result; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (PyString_Check(value)) | 
					
						
							|  |  |  |  | 		return Tcl_NewStringObj(PyString_AS_STRING(value), | 
					
						
							|  |  |  |  | 					PyString_GET_SIZE(value)); | 
					
						
							| 
									
										
										
										
											2003-01-22 09:17:38 +00:00
										 |  |  |  | 	else if (PyBool_Check(value)) | 
					
						
							|  |  |  |  | 		return Tcl_NewBooleanObj(PyObject_IsTrue(value)); | 
					
						
							| 
									
										
										
										
											2000-03-31 00:51:37 +00:00
										 |  |  |  | 	else if (PyInt_Check(value)) | 
					
						
							|  |  |  |  | 		return Tcl_NewLongObj(PyInt_AS_LONG(value)); | 
					
						
							|  |  |  |  | 	else if (PyFloat_Check(value)) | 
					
						
							|  |  |  |  | 		return Tcl_NewDoubleObj(PyFloat_AS_DOUBLE(value)); | 
					
						
							|  |  |  |  | 	else if (PyTuple_Check(value)) { | 
					
						
							|  |  |  |  | 		Tcl_Obj **argv = (Tcl_Obj**) | 
					
						
							|  |  |  |  | 			ckalloc(PyTuple_Size(value)*sizeof(Tcl_Obj*)); | 
					
						
							|  |  |  |  | 		int i; | 
					
						
							|  |  |  |  | 		if(!argv) | 
					
						
							|  |  |  |  | 		  return 0; | 
					
						
							|  |  |  |  | 		for(i=0;i<PyTuple_Size(value);i++) | 
					
						
							|  |  |  |  | 		  argv[i] = AsObj(PyTuple_GetItem(value,i)); | 
					
						
							|  |  |  |  | 		result = Tcl_NewListObj(PyTuple_Size(value), argv); | 
					
						
							|  |  |  |  | 		ckfree(FREECAST argv); | 
					
						
							|  |  |  |  | 		return result; | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2001-08-17 18:39:25 +00:00
										 |  |  |  | #ifdef Py_USING_UNICODE
 | 
					
						
							| 
									
										
										
										
											2000-03-31 00:51:37 +00:00
										 |  |  |  | 	else if (PyUnicode_Check(value)) { | 
					
						
							| 
									
										
										
										
											2002-10-01 18:50:56 +00:00
										 |  |  |  | 		Py_UNICODE *inbuf = PyUnicode_AS_UNICODE(value); | 
					
						
							| 
									
										
										
										
											2006-06-12 02:06:42 +00:00
										 |  |  |  | 		Py_ssize_t size = PyUnicode_GET_SIZE(value); | 
					
						
							| 
									
										
										
										
											2002-10-01 18:50:56 +00:00
										 |  |  |  | 		/* This #ifdef assumes that Tcl uses UCS-2.
 | 
					
						
							|  |  |  |  | 		   See TCL_UTF_MAX test above. */ | 
					
						
							| 
									
										
										
										
											2003-04-16 20:34:55 +00:00
										 |  |  |  | #if defined(Py_UNICODE_WIDE) && TCL_UTF_MAX == 3
 | 
					
						
							| 
									
										
										
										
											2002-10-01 18:50:56 +00:00
										 |  |  |  | 		Tcl_UniChar *outbuf; | 
					
						
							| 
									
										
										
										
											2006-06-12 02:06:42 +00:00
										 |  |  |  | 		Py_ssize_t i; | 
					
						
							|  |  |  |  | 		assert(size < size * sizeof(Tcl_UniChar)); | 
					
						
							| 
									
										
										
										
											2002-10-01 18:50:56 +00:00
										 |  |  |  | 		outbuf = (Tcl_UniChar*)ckalloc(size * sizeof(Tcl_UniChar)); | 
					
						
							|  |  |  |  | 		if (!outbuf) { | 
					
						
							|  |  |  |  | 			PyErr_NoMemory(); | 
					
						
							|  |  |  |  | 			return NULL; | 
					
						
							| 
									
										
										
										
											2000-05-04 15:07:16 +00:00
										 |  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2002-10-01 18:50:56 +00:00
										 |  |  |  | 		for (i = 0; i < size; i++) { | 
					
						
							|  |  |  |  | 			if (inbuf[i] >= 0x10000) { | 
					
						
							|  |  |  |  | 				/* Tcl doesn't do UTF-16, yet. */ | 
					
						
							|  |  |  |  | 				PyErr_SetString(PyExc_ValueError, | 
					
						
							|  |  |  |  | 						"unsupported character"); | 
					
						
							|  |  |  |  | 				ckfree(FREECAST outbuf); | 
					
						
							|  |  |  |  | 				return NULL; | 
					
						
							|  |  |  |  | 			} | 
					
						
							|  |  |  |  | 			outbuf[i] = inbuf[i]; | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 		result = Tcl_NewUnicodeObj(outbuf, size); | 
					
						
							|  |  |  |  | 		ckfree(FREECAST outbuf); | 
					
						
							|  |  |  |  | 		return result; | 
					
						
							|  |  |  |  | #else
 | 
					
						
							|  |  |  |  | 		return Tcl_NewUnicodeObj(inbuf, size); | 
					
						
							|  |  |  |  | #endif
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-31 00:51:37 +00:00
										 |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2001-08-17 18:39:25 +00:00
										 |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 	else if(PyTclObject_Check(value)) { | 
					
						
							|  |  |  |  | 		Tcl_Obj *v = ((PyTclObject*)value)->value; | 
					
						
							|  |  |  |  | 		Tcl_IncrRefCount(v); | 
					
						
							|  |  |  |  | 		return v; | 
					
						
							|  |  |  |  | 	}  | 
					
						
							| 
									
										
										
										
											2000-03-31 00:51:37 +00:00
										 |  |  |  | 	else { | 
					
						
							|  |  |  |  | 		PyObject *v = PyObject_Str(value); | 
					
						
							|  |  |  |  | 		if (!v) | 
					
						
							|  |  |  |  | 			return 0; | 
					
						
							|  |  |  |  | 		result = AsObj(v); | 
					
						
							|  |  |  |  | 		Py_DECREF(v); | 
					
						
							|  |  |  |  | 		return result; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | static PyObject* | 
					
						
							|  |  |  |  | FromObj(PyObject* tkapp, Tcl_Obj *value) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	PyObject *result = NULL; | 
					
						
							| 
									
										
										
										
											2002-11-26 22:12:12 +00:00
										 |  |  |  | 	TkappObject *app = (TkappObject*)tkapp; | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-04 19:54:36 +00:00
										 |  |  |  | 	if (value->typePtr == NULL) { | 
					
						
							|  |  |  |  | 		/* If the result contains any bytes with the top bit set,
 | 
					
						
							|  |  |  |  | 		   it's UTF-8 and we should decode it to Unicode */ | 
					
						
							|  |  |  |  | #ifdef Py_USING_UNICODE
 | 
					
						
							|  |  |  |  | 		int i; | 
					
						
							|  |  |  |  | 		char *s = value->bytes; | 
					
						
							|  |  |  |  | 		int len = value->length; | 
					
						
							|  |  |  |  | 		for (i = 0; i < len; i++) { | 
					
						
							|  |  |  |  | 			if (value->bytes[i] & 0x80) | 
					
						
							|  |  |  |  | 				break; | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		if (i == value->length) | 
					
						
							|  |  |  |  | 			result = PyString_FromStringAndSize(s, len); | 
					
						
							|  |  |  |  | 		else { | 
					
						
							|  |  |  |  | 			/* Convert UTF-8 to Unicode string */ | 
					
						
							|  |  |  |  | 			result = PyUnicode_DecodeUTF8(s, len, "strict"); | 
					
						
							|  |  |  |  | 			if (result == NULL) { | 
					
						
							|  |  |  |  | 				PyErr_Clear(); | 
					
						
							|  |  |  |  | 				result = PyString_FromStringAndSize(s, len); | 
					
						
							|  |  |  |  | 			} | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2005-03-08 15:03:08 +00:00
										 |  |  |  | 		result = PyString_FromStringAndSize(value->bytes, value->length); | 
					
						
							| 
									
										
										
										
											2002-12-04 19:54:36 +00:00
										 |  |  |  | #endif
 | 
					
						
							|  |  |  |  | 		return result; | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-26 22:12:12 +00:00
										 |  |  |  | 	if (value->typePtr == app->BooleanType) { | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 		result = value->internalRep.longValue ? Py_True : Py_False; | 
					
						
							|  |  |  |  | 		Py_INCREF(result); | 
					
						
							|  |  |  |  | 		return result; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-26 22:12:12 +00:00
										 |  |  |  | 	if (value->typePtr == app->ByteArrayType) { | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 		int size; | 
					
						
							| 
									
										
										
										
											2002-12-07 14:57:11 +00:00
										 |  |  |  | 		char *data = (char*)Tcl_GetByteArrayFromObj(value, &size); | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 		return PyString_FromStringAndSize(data, size); | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-26 22:12:12 +00:00
										 |  |  |  | 	if (value->typePtr == app->DoubleType) { | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 		return PyFloat_FromDouble(value->internalRep.doubleValue); | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-26 22:12:12 +00:00
										 |  |  |  | 	if (value->typePtr == app->IntType) { | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 		return PyInt_FromLong(value->internalRep.longValue); | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-26 22:12:12 +00:00
										 |  |  |  | 	if (value->typePtr == app->ListType) { | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 		int size; | 
					
						
							|  |  |  |  | 		int i, status; | 
					
						
							|  |  |  |  | 		PyObject *elem; | 
					
						
							|  |  |  |  | 		Tcl_Obj *tcl_elem; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		status = Tcl_ListObjLength(Tkapp_Interp(tkapp), value, &size); | 
					
						
							|  |  |  |  | 		if (status == TCL_ERROR) | 
					
						
							|  |  |  |  | 			return Tkinter_Error(tkapp); | 
					
						
							|  |  |  |  | 		result = PyTuple_New(size); | 
					
						
							|  |  |  |  | 		if (!result) | 
					
						
							|  |  |  |  | 			return NULL; | 
					
						
							|  |  |  |  | 		for (i = 0; i < size; i++) { | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 			status = Tcl_ListObjIndex(Tkapp_Interp(tkapp), | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 						  value, i, &tcl_elem); | 
					
						
							|  |  |  |  | 			if (status == TCL_ERROR) { | 
					
						
							|  |  |  |  | 				Py_DECREF(result); | 
					
						
							|  |  |  |  | 				return Tkinter_Error(tkapp); | 
					
						
							|  |  |  |  | 			} | 
					
						
							|  |  |  |  | 			elem = FromObj(tkapp, tcl_elem); | 
					
						
							|  |  |  |  | 			if (!elem) { | 
					
						
							|  |  |  |  | 				Py_DECREF(result); | 
					
						
							|  |  |  |  | 				return NULL; | 
					
						
							|  |  |  |  | 			} | 
					
						
							|  |  |  |  | 			PyTuple_SetItem(result, i, elem); | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 		return result; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-26 22:12:12 +00:00
										 |  |  |  | 	if (value->typePtr == app->ProcBodyType) { | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	  /* fall through: return tcl object. */ | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-26 22:12:12 +00:00
										 |  |  |  | 	if (value->typePtr == app->StringType) { | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | #ifdef Py_USING_UNICODE
 | 
					
						
							| 
									
										
										
										
											2003-04-16 20:34:55 +00:00
										 |  |  |  | #if defined(Py_UNICODE_WIDE) && TCL_UTF_MAX==3
 | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 		PyObject *result; | 
					
						
							|  |  |  |  | 		int size; | 
					
						
							|  |  |  |  | 		Tcl_UniChar *input; | 
					
						
							|  |  |  |  | 		Py_UNICODE *output; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		size = Tcl_GetCharLength(value); | 
					
						
							|  |  |  |  | 		result = PyUnicode_FromUnicode(NULL, size); | 
					
						
							|  |  |  |  | 		if (!result) | 
					
						
							|  |  |  |  | 			return NULL; | 
					
						
							|  |  |  |  | 		input = Tcl_GetUnicode(value); | 
					
						
							|  |  |  |  | 		output = PyUnicode_AS_UNICODE(result); | 
					
						
							|  |  |  |  | 		while (size--) | 
					
						
							|  |  |  |  | 			*output++ = *input++; | 
					
						
							|  |  |  |  | 		return result; | 
					
						
							|  |  |  |  | #else
 | 
					
						
							|  |  |  |  | 		return PyUnicode_FromUnicode(Tcl_GetUnicode(value), | 
					
						
							|  |  |  |  | 					     Tcl_GetCharLength(value)); | 
					
						
							|  |  |  |  | #endif
 | 
					
						
							|  |  |  |  | #else
 | 
					
						
							|  |  |  |  | 		int size; | 
					
						
							|  |  |  |  | 		char *c; | 
					
						
							|  |  |  |  | 		c = Tcl_GetStringFromObj(value, &size); | 
					
						
							|  |  |  |  | 		return PyString_FromStringAndSize(c, size); | 
					
						
							|  |  |  |  | #endif
 | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	return newPyTclObject(value); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | /* This mutex synchronizes inter-thread command calls. */ | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | TCL_DECLARE_MUTEX(call_mutex) | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | typedef struct Tkapp_CallEvent { | 
					
						
							|  |  |  |  | 	Tcl_Event ev;	     /* Must be first */ | 
					
						
							|  |  |  |  | 	TkappObject *self; | 
					
						
							|  |  |  |  | 	PyObject *args; | 
					
						
							|  |  |  |  | 	int flags; | 
					
						
							|  |  |  |  | 	PyObject **res; | 
					
						
							|  |  |  |  | 	PyObject **exc_type, **exc_value, **exc_tb; | 
					
						
							|  |  |  |  | 	Tcl_Condition done; | 
					
						
							|  |  |  |  | } Tkapp_CallEvent; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | void | 
					
						
							|  |  |  |  | Tkapp_CallDeallocArgs(Tcl_Obj** objv, Tcl_Obj** objStore, int objc) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	int i; | 
					
						
							|  |  |  |  | 	for (i = 0; i < objc; i++) | 
					
						
							|  |  |  |  | 		Tcl_DecrRefCount(objv[i]); | 
					
						
							|  |  |  |  | 	if (objv != objStore) | 
					
						
							|  |  |  |  | 		ckfree(FREECAST objv); | 
					
						
							|  |  |  |  | } | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | /* Convert Python objects to Tcl objects. This must happen in the
 | 
					
						
							|  |  |  |  |    interpreter thread, which may or may not be the calling thread. */ | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | static Tcl_Obj** | 
					
						
							|  |  |  |  | Tkapp_CallArgs(PyObject *args, Tcl_Obj** objStore, int *pobjc) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	Tcl_Obj **objv = objStore; | 
					
						
							| 
									
										
										
										
											2002-12-12 19:05:48 +00:00
										 |  |  |  | 	int objc = 0, i; | 
					
						
							| 
									
										
										
										
											1998-04-29 16:22:14 +00:00
										 |  |  |  | 	if (args == NULL) | 
					
						
							| 
									
										
										
										
											2000-10-29 00:44:43 +00:00
										 |  |  |  | 		/* do nothing */; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-29 16:22:14 +00:00
										 |  |  |  | 	else if (!PyTuple_Check(args)) { | 
					
						
							| 
									
										
										
										
											2000-03-29 00:19:50 +00:00
										 |  |  |  | 		objv[0] = AsObj(args); | 
					
						
							|  |  |  |  | 		if (objv[0] == 0) | 
					
						
							|  |  |  |  | 			goto finally; | 
					
						
							| 
									
										
										
										
											2000-10-29 00:44:43 +00:00
										 |  |  |  | 		objc = 1; | 
					
						
							| 
									
										
										
										
											2000-03-29 00:19:50 +00:00
										 |  |  |  | 		Tcl_IncrRefCount(objv[0]); | 
					
						
							| 
									
										
										
										
											1998-04-29 16:22:14 +00:00
										 |  |  |  | 	} | 
					
						
							|  |  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											2000-03-29 00:19:50 +00:00
										 |  |  |  | 		objc = PyTuple_Size(args); | 
					
						
							| 
									
										
										
										
											1998-04-29 16:22:14 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-29 00:19:50 +00:00
										 |  |  |  | 		if (objc > ARGSZ) { | 
					
						
							|  |  |  |  | 			objv = (Tcl_Obj **)ckalloc(objc * sizeof(char *)); | 
					
						
							|  |  |  |  | 			if (objv == NULL) { | 
					
						
							| 
									
										
										
										
											1998-04-29 16:22:14 +00:00
										 |  |  |  | 				PyErr_NoMemory(); | 
					
						
							| 
									
										
										
										
											2000-10-29 00:44:43 +00:00
										 |  |  |  | 				objc = 0; | 
					
						
							| 
									
										
										
										
											1998-04-29 16:22:14 +00:00
										 |  |  |  | 				goto finally; | 
					
						
							|  |  |  |  | 			} | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-29 00:19:50 +00:00
										 |  |  |  | 		for (i = 0; i < objc; i++) { | 
					
						
							| 
									
										
										
										
											1998-04-29 16:22:14 +00:00
										 |  |  |  | 			PyObject *v = PyTuple_GetItem(args, i); | 
					
						
							| 
									
										
										
										
											2000-03-31 03:29:39 +00:00
										 |  |  |  | 			if (v == Py_None) { | 
					
						
							|  |  |  |  | 				objc = i; | 
					
						
							|  |  |  |  | 				break; | 
					
						
							|  |  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2000-03-29 00:19:50 +00:00
										 |  |  |  | 			objv[i] = AsObj(v); | 
					
						
							| 
									
										
										
										
											2000-10-29 00:44:43 +00:00
										 |  |  |  | 			if (!objv[i]) { | 
					
						
							|  |  |  |  | 				/* Reset objc, so it attempts to clear
 | 
					
						
							|  |  |  |  | 				   objects only up to i. */ | 
					
						
							|  |  |  |  | 				objc = i; | 
					
						
							| 
									
										
										
										
											2000-03-29 00:19:50 +00:00
										 |  |  |  | 				goto finally; | 
					
						
							| 
									
										
										
										
											2000-10-29 00:44:43 +00:00
										 |  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2000-03-29 00:19:50 +00:00
										 |  |  |  | 			Tcl_IncrRefCount(objv[i]); | 
					
						
							| 
									
										
										
										
											1998-04-29 16:22:14 +00:00
										 |  |  |  | 		} | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	*pobjc = objc; | 
					
						
							|  |  |  |  | 	return objv; | 
					
						
							|  |  |  |  | finally: | 
					
						
							|  |  |  |  | 	Tkapp_CallDeallocArgs(objv, objStore, objc); | 
					
						
							|  |  |  |  | 	return NULL; | 
					
						
							|  |  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-04-29 16:22:14 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | /* Convert the results of a command call into a Python objects. */ | 
					
						
							| 
									
										
										
										
											2000-03-29 00:19:50 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | static PyObject* | 
					
						
							|  |  |  |  | Tkapp_CallResult(TkappObject *self) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	PyObject *res = NULL; | 
					
						
							|  |  |  |  | 	if(self->wantobjects) { | 
					
						
							|  |  |  |  | 		Tcl_Obj *value = Tcl_GetObjResult(self->interp); | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 		/* Not sure whether the IncrRef is necessary, but something
 | 
					
						
							|  |  |  |  | 		   may overwrite the interpreter result while we are | 
					
						
							|  |  |  |  | 		   converting it. */ | 
					
						
							|  |  |  |  | 		Tcl_IncrRefCount(value); | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 		res = FromObj((PyObject*)self, value); | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 		Tcl_DecrRefCount(value); | 
					
						
							|  |  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 		const char *s = Tcl_GetStringResult(self->interp); | 
					
						
							| 
									
										
										
										
											2002-10-01 18:08:06 +00:00
										 |  |  |  | 		const char *p = s; | 
					
						
							| 
									
										
										
										
											2001-08-17 18:39:25 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-04 15:07:16 +00:00
										 |  |  |  | 		/* If the result contains any bytes with the top bit set,
 | 
					
						
							|  |  |  |  | 		   it's UTF-8 and we should decode it to Unicode */ | 
					
						
							| 
									
										
										
										
											2001-08-17 18:39:25 +00:00
										 |  |  |  | #ifdef Py_USING_UNICODE
 | 
					
						
							| 
									
										
										
										
											2000-05-04 15:07:16 +00:00
										 |  |  |  | 		while (*p != '\0') { | 
					
						
							|  |  |  |  | 			if (*p & 0x80) | 
					
						
							|  |  |  |  | 				break; | 
					
						
							|  |  |  |  | 			p++; | 
					
						
							|  |  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2001-08-17 18:39:25 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-04 15:07:16 +00:00
										 |  |  |  | 		if (*p == '\0') | 
					
						
							|  |  |  |  | 			res = PyString_FromStringAndSize(s, (int)(p-s)); | 
					
						
							|  |  |  |  | 		else { | 
					
						
							|  |  |  |  | 			/* Convert UTF-8 to Unicode string */ | 
					
						
							|  |  |  |  | 			p = strchr(p, '\0'); | 
					
						
							| 
									
										
										
										
											2000-05-04 15:55:17 +00:00
										 |  |  |  | 			res = PyUnicode_DecodeUTF8(s, (int)(p-s), "strict"); | 
					
						
							|  |  |  |  | 			if (res == NULL) { | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 				PyErr_Clear(); | 
					
						
							|  |  |  |  | 				res = PyString_FromStringAndSize(s, (int)(p-s)); | 
					
						
							| 
									
										
										
										
											2000-05-04 15:55:17 +00:00
										 |  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2000-05-04 15:07:16 +00:00
										 |  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2001-08-17 18:39:25 +00:00
										 |  |  |  | #else
 | 
					
						
							|  |  |  |  | 		p = strchr(p, '\0'); | 
					
						
							|  |  |  |  | 		res = PyString_FromStringAndSize(s, (int)(p-s)); | 
					
						
							|  |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2000-05-04 15:07:16 +00:00
										 |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	return res; | 
					
						
							|  |  |  |  | } | 
					
						
							| 
									
										
										
										
											2000-03-29 00:19:50 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | /* Tkapp_CallProc is the event procedure that is executed in the context of
 | 
					
						
							|  |  |  |  |    the Tcl interpreter thread. Initially, it holds the Tcl lock, and doesn't | 
					
						
							|  |  |  |  |    hold the Python lock. */ | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | static int | 
					
						
							|  |  |  |  | Tkapp_CallProc(Tkapp_CallEvent *e, int flags) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	Tcl_Obj *objStore[ARGSZ]; | 
					
						
							|  |  |  |  | 	Tcl_Obj **objv; | 
					
						
							|  |  |  |  | 	int objc; | 
					
						
							|  |  |  |  | 	int i; | 
					
						
							|  |  |  |  | 	ENTER_PYTHON | 
					
						
							|  |  |  |  | 	objv = Tkapp_CallArgs(e->args, objStore, &objc); | 
					
						
							|  |  |  |  | 	if (!objv) { | 
					
						
							|  |  |  |  | 		PyErr_Fetch(e->exc_type, e->exc_value, e->exc_tb); | 
					
						
							|  |  |  |  | 		*(e->res) = NULL; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	LEAVE_PYTHON | 
					
						
							|  |  |  |  | 	if (!objv) | 
					
						
							|  |  |  |  | 		goto done; | 
					
						
							|  |  |  |  | 	i = Tcl_EvalObjv(e->self->interp, objc, objv, e->flags); | 
					
						
							|  |  |  |  | 	ENTER_PYTHON | 
					
						
							|  |  |  |  | 	if (i == TCL_ERROR) { | 
					
						
							|  |  |  |  | 		*(e->res) = NULL; | 
					
						
							|  |  |  |  | 		*(e->exc_type) = NULL; | 
					
						
							|  |  |  |  | 		*(e->exc_tb) = NULL; | 
					
						
							|  |  |  |  | 		*(e->exc_value) = PyObject_CallFunction( | 
					
						
							|  |  |  |  | 			Tkinter_TclError, "s", | 
					
						
							|  |  |  |  | 			Tcl_GetStringResult(e->self->interp)); | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	else { | 
					
						
							|  |  |  |  | 		*(e->res) = Tkapp_CallResult(e->self); | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	LEAVE_PYTHON | 
					
						
							|  |  |  |  |   done: | 
					
						
							|  |  |  |  | 	/* Wake up calling thread. */ | 
					
						
							|  |  |  |  | 	Tcl_MutexLock(&call_mutex); | 
					
						
							|  |  |  |  | 	Tcl_ConditionNotify(&e->done); | 
					
						
							|  |  |  |  | 	Tcl_MutexUnlock(&call_mutex); | 
					
						
							|  |  |  |  | 	return 1; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /* This is the main entry point for calling a Tcl command.
 | 
					
						
							|  |  |  |  |    It supports three cases, with regard to threading: | 
					
						
							|  |  |  |  |    1. Tcl is not threaded: Must have the Tcl lock, then can invoke command in | 
					
						
							|  |  |  |  |       the context of the calling thread. | 
					
						
							|  |  |  |  |    2. Tcl is threaded, caller of the command is in the interpreter thread: | 
					
						
							|  |  |  |  |       Execute the command in the calling thread. Since the Tcl lock will | 
					
						
							|  |  |  |  |       not be used, we can merge that with case 1. | 
					
						
							|  |  |  |  |    3. Tcl is threaded, caller is in a different thread: Must queue an event to | 
					
						
							|  |  |  |  |       the interpreter thread. Allocation of Tcl objects needs to occur in the | 
					
						
							|  |  |  |  |       interpreter thread, so we ship the PyObject* args to the target thread, | 
					
						
							|  |  |  |  |       and perform processing there. */ | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2006-06-03 19:02:35 +00:00
										 |  |  |  | Tkapp_Call(PyObject *selfptr, PyObject *args) | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  | 	Tcl_Obj *objStore[ARGSZ]; | 
					
						
							|  |  |  |  | 	Tcl_Obj **objv = NULL; | 
					
						
							|  |  |  |  | 	int objc, i; | 
					
						
							|  |  |  |  | 	PyObject *res = NULL; | 
					
						
							| 
									
										
										
										
											2006-06-03 19:02:35 +00:00
										 |  |  |  | 	TkappObject *self = (TkappObject*)selfptr; | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	/* Could add TCL_EVAL_GLOBAL if wrapped by GlobalCall... */ | 
					
						
							|  |  |  |  | 	int flags = TCL_EVAL_DIRECT; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-05 22:03:39 +00:00
										 |  |  |  | 	/* If args is a single tuple, replace with contents of tuple */ | 
					
						
							|  |  |  |  | 	if (1 == PyTuple_Size(args)){ | 
					
						
							|  |  |  |  | 		PyObject* item = PyTuple_GetItem(args, 0); | 
					
						
							|  |  |  |  | 		if (PyTuple_Check(item)) | 
					
						
							|  |  |  |  | 			args = item; | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-03-30 08:44:58 +00:00
										 |  |  |  | #ifdef WITH_THREAD
 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	if (self->threaded && self->thread_id != Tcl_GetCurrentThread()) { | 
					
						
							|  |  |  |  | 		/* We cannot call the command directly. Instead, we must
 | 
					
						
							|  |  |  |  | 		   marshal the parameters to the interpreter thread. */ | 
					
						
							|  |  |  |  | 		Tkapp_CallEvent *ev; | 
					
						
							|  |  |  |  | 		PyObject *exc_type, *exc_value, *exc_tb; | 
					
						
							| 
									
										
										
										
											2002-12-28 09:23:09 +00:00
										 |  |  |  | 		if (!WaitForMainloop(self)) | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 			return NULL; | 
					
						
							|  |  |  |  | 		ev = (Tkapp_CallEvent*)ckalloc(sizeof(Tkapp_CallEvent)); | 
					
						
							|  |  |  |  | 		ev->ev.proc = (Tcl_EventProc*)Tkapp_CallProc; | 
					
						
							|  |  |  |  | 		ev->self = self; | 
					
						
							|  |  |  |  | 		ev->args = args; | 
					
						
							|  |  |  |  | 		ev->res = &res; | 
					
						
							|  |  |  |  | 		ev->exc_type = &exc_type; | 
					
						
							|  |  |  |  | 		ev->exc_value = &exc_value; | 
					
						
							|  |  |  |  | 		ev->exc_tb = &exc_tb; | 
					
						
							|  |  |  |  | 		ev->done = (Tcl_Condition)0; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		Tkapp_ThreadSend(self, (Tcl_Event*)ev, &ev->done, &call_mutex); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		if (res == NULL) { | 
					
						
							|  |  |  |  | 			if (exc_type) | 
					
						
							|  |  |  |  | 				PyErr_Restore(exc_type, exc_value, exc_tb); | 
					
						
							|  |  |  |  | 			else | 
					
						
							|  |  |  |  | 				PyErr_SetObject(Tkinter_TclError, exc_value); | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-03-30 08:44:58 +00:00
										 |  |  |  | 	else  | 
					
						
							|  |  |  |  | #endif
 | 
					
						
							|  |  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 		objv = Tkapp_CallArgs(args, objStore, &objc); | 
					
						
							|  |  |  |  | 		if (!objv) | 
					
						
							|  |  |  |  | 			return NULL; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		ENTER_TCL | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		i = Tcl_EvalObjv(self->interp, objc, objv, flags); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		ENTER_OVERLAP | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		if (i == TCL_ERROR) | 
					
						
							| 
									
										
										
										
											2006-06-03 19:02:35 +00:00
										 |  |  |  | 			Tkinter_Error(selfptr); | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 		else | 
					
						
							|  |  |  |  | 			res = Tkapp_CallResult(self); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		LEAVE_OVERLAP_TCL | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		Tkapp_CallDeallocArgs(objv, objStore, objc); | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	return res; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkapp_GlobalCall(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1998-04-29 16:22:14 +00:00
										 |  |  |  | 	/* Could do the same here as for Tkapp_Call(), but this is not used
 | 
					
						
							|  |  |  |  | 	   much, so I can't be bothered.  Unfortunately Tcl doesn't export a | 
					
						
							|  |  |  |  | 	   way for the user to do what all its Global* variants do (save and | 
					
						
							|  |  |  |  | 	   reset the scope pointer, call the local version, restore the saved | 
					
						
							|  |  |  |  | 	   scope pointer). */ | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 	char *cmd; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	PyObject *res = NULL; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	CHECK_TCL_APPARTMENT; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 	cmd  = Merge(args); | 
					
						
							| 
									
										
										
										
											2000-10-06 16:58:26 +00:00
										 |  |  |  | 	if (cmd) { | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 		int err; | 
					
						
							|  |  |  |  | 		ENTER_TCL | 
					
						
							|  |  |  |  | 		err = Tcl_GlobalEval(Tkapp_Interp(self), cmd); | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 		ENTER_OVERLAP | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 		if (err == TCL_ERROR) | 
					
						
							|  |  |  |  | 			res = Tkinter_Error(self); | 
					
						
							|  |  |  |  | 		else | 
					
						
							|  |  |  |  | 			res = PyString_FromString(Tkapp_Result(self)); | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 		LEAVE_OVERLAP_TCL | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		ckfree(cmd); | 
					
						
							| 
									
										
										
										
											2000-10-06 16:58:26 +00:00
										 |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 	return res; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkapp_Eval(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	char *script; | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 	PyObject *res = NULL; | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-29 13:59:29 +00:00
										 |  |  |  | 	if (!PyArg_ParseTuple(args, "s:eval", &script)) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	CHECK_TCL_APPARTMENT; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	ENTER_TCL | 
					
						
							|  |  |  |  | 	err = Tcl_Eval(Tkapp_Interp(self), script); | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 	ENTER_OVERLAP | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	if (err == TCL_ERROR) | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 		res = Tkinter_Error(self); | 
					
						
							|  |  |  |  | 	else | 
					
						
							|  |  |  |  | 		res = PyString_FromString(Tkapp_Result(self)); | 
					
						
							|  |  |  |  | 	LEAVE_OVERLAP_TCL | 
					
						
							|  |  |  |  | 	return res; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkapp_GlobalEval(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	char *script; | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 	PyObject *res = NULL; | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-29 13:59:29 +00:00
										 |  |  |  | 	if (!PyArg_ParseTuple(args, "s:globaleval", &script)) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	CHECK_TCL_APPARTMENT; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	ENTER_TCL | 
					
						
							|  |  |  |  | 	err = Tcl_GlobalEval(Tkapp_Interp(self), script); | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 	ENTER_OVERLAP | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	if (err == TCL_ERROR) | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 		res = Tkinter_Error(self); | 
					
						
							|  |  |  |  | 	else | 
					
						
							|  |  |  |  | 		res = PyString_FromString(Tkapp_Result(self)); | 
					
						
							|  |  |  |  | 	LEAVE_OVERLAP_TCL | 
					
						
							|  |  |  |  | 	return res; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkapp_EvalFile(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	char *fileName; | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 	PyObject *res = NULL; | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-29 13:59:29 +00:00
										 |  |  |  | 	if (!PyArg_ParseTuple(args, "s:evalfile", &fileName)) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	CHECK_TCL_APPARTMENT; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	ENTER_TCL | 
					
						
							|  |  |  |  | 	err = Tcl_EvalFile(Tkapp_Interp(self), fileName); | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 	ENTER_OVERLAP | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	if (err == TCL_ERROR) | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 		res = Tkinter_Error(self); | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 	else | 
					
						
							|  |  |  |  | 		res = PyString_FromString(Tkapp_Result(self)); | 
					
						
							|  |  |  |  | 	LEAVE_OVERLAP_TCL | 
					
						
							|  |  |  |  | 	return res; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkapp_Record(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	char *script; | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 	PyObject *res = NULL; | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 	if (!PyArg_ParseTuple(args, "s", &script)) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	CHECK_TCL_APPARTMENT; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	ENTER_TCL | 
					
						
							|  |  |  |  | 	err = Tcl_RecordAndEval(Tkapp_Interp(self), script, TCL_NO_EVAL); | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 	ENTER_OVERLAP | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	if (err == TCL_ERROR) | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 		res = Tkinter_Error(self); | 
					
						
							|  |  |  |  | 	else | 
					
						
							|  |  |  |  | 		res = PyString_FromString(Tkapp_Result(self)); | 
					
						
							|  |  |  |  | 	LEAVE_OVERLAP_TCL | 
					
						
							|  |  |  |  | 	return res; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkapp_AddErrorInfo(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	char *msg; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-29 13:59:29 +00:00
										 |  |  |  | 	if (!PyArg_ParseTuple(args, "s:adderrorinfo", &msg)) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	CHECK_TCL_APPARTMENT; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	ENTER_TCL | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	Tcl_AddErrorInfo(Tkapp_Interp(self), msg); | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	LEAVE_TCL | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	Py_INCREF(Py_None); | 
					
						
							|  |  |  |  | 	return Py_None; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |  | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | /** Tcl Variable **/ | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | TCL_DECLARE_MUTEX(var_mutex) | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  | typedef PyObject* (*EventFunc)(PyObject*, PyObject *args, int flags); | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | typedef struct VarEvent { | 
					
						
							|  |  |  |  | 	Tcl_Event ev; /* must be first */ | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  | 	PyObject *self; | 
					
						
							|  |  |  |  | 	PyObject *args; | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	int flags; | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  | 	EventFunc func; | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	PyObject **res; | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  | 	PyObject **exc_type; | 
					
						
							|  |  |  |  | 	PyObject **exc_val; | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	Tcl_Condition cond; | 
					
						
							|  |  |  |  | } VarEvent; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-01 05:47:00 +00:00
										 |  |  |  | static int | 
					
						
							|  |  |  |  | varname_converter(PyObject *in, void *_out) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	char **out = (char**)_out; | 
					
						
							|  |  |  |  | 	if (PyString_Check(in)) { | 
					
						
							|  |  |  |  | 		*out = PyString_AsString(in); | 
					
						
							|  |  |  |  | 		return 1; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	if (PyTclObject_Check(in)) { | 
					
						
							|  |  |  |  | 		*out = PyTclObject_TclString(in); | 
					
						
							|  |  |  |  | 		return 1; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	/* XXX: Should give diagnostics. */ | 
					
						
							|  |  |  |  | 	return 0; | 
					
						
							|  |  |  |  | }	 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  | void | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | var_perform(VarEvent *ev) | 
					
						
							|  |  |  |  | { | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  | 	*(ev->res) = ev->func(ev->self, ev->args, ev->flags); | 
					
						
							|  |  |  |  | 	if (!*(ev->res)) { | 
					
						
							|  |  |  |  | 		PyObject *exc, *val, *tb; | 
					
						
							|  |  |  |  | 		PyErr_Fetch(&exc, &val, &tb); | 
					
						
							|  |  |  |  | 		PyErr_NormalizeException(&exc, &val, &tb); | 
					
						
							|  |  |  |  | 		*(ev->exc_type) = exc; | 
					
						
							|  |  |  |  | 		*(ev->exc_val) = val; | 
					
						
							|  |  |  |  | 		Py_DECREF(tb); | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  | 		 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static int | 
					
						
							|  |  |  |  | var_proc(VarEvent* ev, int flags) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	ENTER_PYTHON | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  |         var_perform(ev); | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	Tcl_MutexLock(&var_mutex); | 
					
						
							|  |  |  |  | 	Tcl_ConditionNotify(&ev->cond); | 
					
						
							|  |  |  |  | 	Tcl_MutexUnlock(&var_mutex); | 
					
						
							|  |  |  |  | 	LEAVE_PYTHON | 
					
						
							|  |  |  |  | 	return 1; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject* | 
					
						
							| 
									
										
										
										
											2006-06-03 19:02:35 +00:00
										 |  |  |  | var_invoke(EventFunc func, PyObject *selfptr, PyObject *args, int flags) | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-06-03 19:02:35 +00:00
										 |  |  |  | 	TkappObject *self = (TkappObject*)selfptr; | 
					
						
							| 
									
										
										
										
											2003-03-30 08:44:58 +00:00
										 |  |  |  | #ifdef WITH_THREAD
 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	if (self->threaded && self->thread_id != Tcl_GetCurrentThread()) { | 
					
						
							| 
									
										
										
										
											2006-06-03 19:02:35 +00:00
										 |  |  |  | 		TkappObject *self = (TkappObject*)selfptr; | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  | 		VarEvent *ev; | 
					
						
							|  |  |  |  | 		PyObject *res, *exc_type, *exc_val; | 
					
						
							|  |  |  |  | 		 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 		/* The current thread is not the interpreter thread.  Marshal
 | 
					
						
							|  |  |  |  | 		   the call to the interpreter thread, then wait for | 
					
						
							|  |  |  |  | 		   completion. */ | 
					
						
							| 
									
										
										
										
											2002-12-28 09:23:09 +00:00
										 |  |  |  | 		if (!WaitForMainloop(self)) | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 			return NULL; | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 		ev = (VarEvent*)ckalloc(sizeof(VarEvent)); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-03 19:02:35 +00:00
										 |  |  |  | 		ev->self = selfptr; | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  | 		ev->args = args; | 
					
						
							|  |  |  |  | 		ev->flags = flags; | 
					
						
							|  |  |  |  | 		ev->func = func; | 
					
						
							|  |  |  |  | 		ev->res = &res; | 
					
						
							|  |  |  |  | 		ev->exc_type = &exc_type; | 
					
						
							|  |  |  |  | 		ev->exc_val = &exc_val; | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 		ev->cond = NULL; | 
					
						
							|  |  |  |  | 		ev->ev.proc = (Tcl_EventProc*)var_proc; | 
					
						
							|  |  |  |  | 		Tkapp_ThreadSend(self, (Tcl_Event*)ev, &ev->cond, &var_mutex); | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  | 		if (!res) { | 
					
						
							|  |  |  |  | 			PyErr_SetObject(exc_type, exc_val); | 
					
						
							|  |  |  |  | 			Py_DECREF(exc_type); | 
					
						
							|  |  |  |  | 			Py_DECREF(exc_val); | 
					
						
							|  |  |  |  | 			return NULL; | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 		return res; | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-03-30 08:44:58 +00:00
										 |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  |         /* Tcl is not threaded, or this is the interpreter thread. */ | 
					
						
							| 
									
										
										
										
											2006-06-03 19:02:35 +00:00
										 |  |  |  | 	return func(selfptr, args, flags); | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | SetVar(PyObject *self, PyObject *args, int flags) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  | 	char *name1, *name2; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	PyObject *newValue; | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  | 	PyObject *res = NULL; | 
					
						
							|  |  |  |  | 	Tcl_Obj *newval, *ok; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-01 05:47:00 +00:00
										 |  |  |  | 	if (PyArg_ParseTuple(args, "O&O:setvar",  | 
					
						
							|  |  |  |  | 			     varname_converter, &name1, &newValue)) { | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  | 		/* XXX Acquire tcl lock??? */ | 
					
						
							|  |  |  |  | 		newval = AsObj(newValue); | 
					
						
							|  |  |  |  | 		if (newval == NULL) | 
					
						
							| 
									
										
										
										
											2000-10-06 16:58:26 +00:00
										 |  |  |  | 			return NULL; | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  | 		ENTER_TCL | 
					
						
							|  |  |  |  | 		ok = Tcl_SetVar2Ex(Tkapp_Interp(self), name1, NULL,  | 
					
						
							|  |  |  |  | 				   newval, flags); | 
					
						
							|  |  |  |  | 		ENTER_OVERLAP | 
					
						
							|  |  |  |  | 		if (!ok) | 
					
						
							|  |  |  |  | 			Tkinter_Error(self); | 
					
						
							|  |  |  |  | 		else { | 
					
						
							|  |  |  |  | 			res = Py_None; | 
					
						
							|  |  |  |  | 			Py_INCREF(res); | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 		LEAVE_OVERLAP_TCL | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 		PyErr_Clear(); | 
					
						
							| 
									
										
										
										
											2000-10-06 16:58:26 +00:00
										 |  |  |  | 		if (PyArg_ParseTuple(args, "ssO:setvar", | 
					
						
							|  |  |  |  | 				     &name1, &name2, &newValue)) { | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  | 			/* XXX must hold tcl lock already??? */ | 
					
						
							|  |  |  |  | 			newval = AsObj(newValue); | 
					
						
							|  |  |  |  | 			ENTER_TCL | 
					
						
							|  |  |  |  | 			ok = Tcl_SetVar2Ex(Tkapp_Interp(self), name1, name2, newval, flags); | 
					
						
							|  |  |  |  | 			ENTER_OVERLAP | 
					
						
							|  |  |  |  | 			if (!ok) | 
					
						
							|  |  |  |  | 				Tkinter_Error(self); | 
					
						
							|  |  |  |  | 			else { | 
					
						
							|  |  |  |  | 				res = Py_None; | 
					
						
							|  |  |  |  | 				Py_INCREF(res); | 
					
						
							|  |  |  |  | 			} | 
					
						
							|  |  |  |  | 			LEAVE_OVERLAP_TCL | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 		else { | 
					
						
							|  |  |  |  | 			return NULL; | 
					
						
							|  |  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  | 	return res; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkapp_SetVar(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  | 	return var_invoke(SetVar, self, args, TCL_LEAVE_ERR_MSG); | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkapp_GlobalSetVar(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  | 	return var_invoke(SetVar, self, args, TCL_LEAVE_ERR_MSG | TCL_GLOBAL_ONLY); | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |  | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | GetVar(PyObject *self, PyObject *args, int flags) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2002-10-01 18:08:06 +00:00
										 |  |  |  | 	char *name1, *name2=NULL; | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 	PyObject *res = NULL; | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  | 	Tcl_Obj *tres; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-01 05:47:00 +00:00
										 |  |  |  | 	if (!PyArg_ParseTuple(args, "O&|s:getvar",  | 
					
						
							|  |  |  |  | 			      varname_converter, &name1, &name2)) | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  | 	ENTER_TCL | 
					
						
							|  |  |  |  | 	tres = Tcl_GetVar2Ex(Tkapp_Interp(self), name1, name2, flags); | 
					
						
							|  |  |  |  | 	ENTER_OVERLAP | 
					
						
							| 
									
										
										
										
											2003-10-03 17:12:26 +00:00
										 |  |  |  | 	if (tres == NULL) { | 
					
						
							|  |  |  |  | 		PyErr_SetString(Tkinter_TclError, Tcl_GetStringResult(Tkapp_Interp(self))); | 
					
						
							|  |  |  |  | 	} else { | 
					
						
							|  |  |  |  | 		if (((TkappObject*)self)->wantobjects) { | 
					
						
							|  |  |  |  | 			res = FromObj(self, tres); | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 		else { | 
					
						
							|  |  |  |  | 			res = PyString_FromString(Tcl_GetString(tres)); | 
					
						
							|  |  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2003-05-19 19:57:42 +00:00
										 |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  | 	LEAVE_OVERLAP_TCL | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 	return res; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkapp_GetVar(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  | 	return var_invoke(GetVar, self, args, TCL_LEAVE_ERR_MSG); | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkapp_GlobalGetVar(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  | 	return var_invoke(GetVar, self, args, TCL_LEAVE_ERR_MSG | TCL_GLOBAL_ONLY); | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |  | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | UnsetVar(PyObject *self, PyObject *args, int flags) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 	char *name1, *name2=NULL; | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  | 	int code; | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 	PyObject *res = NULL; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-29 13:59:29 +00:00
										 |  |  |  | 	if (!PyArg_ParseTuple(args, "s|s:unsetvar", &name1, &name2)) | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  | 	ENTER_TCL | 
					
						
							|  |  |  |  | 	code = Tcl_UnsetVar2(Tkapp_Interp(self), name1, name2, flags); | 
					
						
							|  |  |  |  | 	ENTER_OVERLAP | 
					
						
							|  |  |  |  | 	if (code == TCL_ERROR) | 
					
						
							|  |  |  |  | 		res = Tkinter_Error(self); | 
					
						
							|  |  |  |  | 	else { | 
					
						
							|  |  |  |  | 		Py_INCREF(Py_None); | 
					
						
							|  |  |  |  | 		res = Py_None; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	LEAVE_OVERLAP_TCL | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 	return res; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkapp_UnsetVar(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  | 	return var_invoke(UnsetVar, self, args, TCL_LEAVE_ERR_MSG); | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkapp_GlobalUnsetVar(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2003-04-15 20:33:20 +00:00
										 |  |  |  | 	return var_invoke(UnsetVar, self, args, TCL_LEAVE_ERR_MSG | TCL_GLOBAL_ONLY); | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |  | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | /** Tcl to Python **/ | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkapp_GetInt(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	char *s; | 
					
						
							|  |  |  |  | 	int v; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 	if (PyTuple_Size(args) == 1) { | 
					
						
							|  |  |  |  | 		PyObject* o = PyTuple_GetItem(args, 0); | 
					
						
							|  |  |  |  | 		if (PyInt_Check(o)) { | 
					
						
							|  |  |  |  | 			Py_INCREF(o); | 
					
						
							|  |  |  |  | 			return o; | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2000-02-29 13:59:29 +00:00
										 |  |  |  | 	if (!PyArg_ParseTuple(args, "s:getint", &s)) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 	if (Tcl_GetInt(Tkapp_Interp(self), s, &v) == TCL_ERROR) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return Tkinter_Error(self); | 
					
						
							|  |  |  |  | 	return Py_BuildValue("i", v); | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkapp_GetDouble(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	char *s; | 
					
						
							|  |  |  |  | 	double v; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 	if (PyTuple_Size(args) == 1) { | 
					
						
							|  |  |  |  | 		PyObject *o = PyTuple_GetItem(args, 0); | 
					
						
							|  |  |  |  | 		if (PyFloat_Check(o)) { | 
					
						
							|  |  |  |  | 			Py_INCREF(o); | 
					
						
							|  |  |  |  | 			return o; | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2000-02-29 13:59:29 +00:00
										 |  |  |  | 	if (!PyArg_ParseTuple(args, "s:getdouble", &s)) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 	if (Tcl_GetDouble(Tkapp_Interp(self), s, &v) == TCL_ERROR) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return Tkinter_Error(self); | 
					
						
							|  |  |  |  | 	return Py_BuildValue("d", v); | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkapp_GetBoolean(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	char *s; | 
					
						
							|  |  |  |  | 	int v; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 	if (PyTuple_Size(args) == 1) { | 
					
						
							|  |  |  |  | 		PyObject *o = PyTuple_GetItem(args, 0); | 
					
						
							|  |  |  |  | 		if (PyInt_Check(o)) { | 
					
						
							|  |  |  |  | 			Py_INCREF(o); | 
					
						
							|  |  |  |  | 			return o; | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2000-02-29 13:59:29 +00:00
										 |  |  |  | 	if (!PyArg_ParseTuple(args, "s:getboolean", &s)) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 	if (Tcl_GetBoolean(Tkapp_Interp(self), s, &v) == TCL_ERROR) | 
					
						
							|  |  |  |  | 		return Tkinter_Error(self); | 
					
						
							| 
									
										
										
										
											2003-01-22 09:17:38 +00:00
										 |  |  |  | 	return PyBool_FromLong(v); | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkapp_ExprString(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	char *s; | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 	PyObject *res = NULL; | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	int retval; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-29 13:59:29 +00:00
										 |  |  |  | 	if (!PyArg_ParseTuple(args, "s:exprstring", &s)) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	 | 
					
						
							|  |  |  |  | 	CHECK_TCL_APPARTMENT; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	ENTER_TCL | 
					
						
							|  |  |  |  | 	retval = Tcl_ExprString(Tkapp_Interp(self), s); | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 	ENTER_OVERLAP | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	if (retval == TCL_ERROR) | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 		res = Tkinter_Error(self); | 
					
						
							|  |  |  |  | 	else | 
					
						
							|  |  |  |  | 		res = Py_BuildValue("s", Tkapp_Result(self)); | 
					
						
							|  |  |  |  | 	LEAVE_OVERLAP_TCL | 
					
						
							|  |  |  |  | 	return res; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkapp_ExprLong(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	char *s; | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 	PyObject *res = NULL; | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	int retval; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	long v; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-29 13:59:29 +00:00
										 |  |  |  | 	if (!PyArg_ParseTuple(args, "s:exprlong", &s)) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 	CHECK_TCL_APPARTMENT; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	ENTER_TCL | 
					
						
							|  |  |  |  | 	retval = Tcl_ExprLong(Tkapp_Interp(self), s, &v); | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 	ENTER_OVERLAP | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	if (retval == TCL_ERROR) | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 		res = Tkinter_Error(self); | 
					
						
							|  |  |  |  | 	else | 
					
						
							|  |  |  |  | 		res = Py_BuildValue("l", v); | 
					
						
							|  |  |  |  | 	LEAVE_OVERLAP_TCL | 
					
						
							|  |  |  |  | 	return res; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkapp_ExprDouble(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	char *s; | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 	PyObject *res = NULL; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	double v; | 
					
						
							| 
									
										
										
										
											1997-02-14 22:59:58 +00:00
										 |  |  |  | 	int retval; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-29 13:59:29 +00:00
										 |  |  |  | 	if (!PyArg_ParseTuple(args, "s:exprdouble", &s)) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	CHECK_TCL_APPARTMENT; | 
					
						
							| 
									
										
										
										
											1997-02-14 22:59:58 +00:00
										 |  |  |  | 	PyFPE_START_PROTECT("Tkapp_ExprDouble", return 0) | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	ENTER_TCL | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 	retval = Tcl_ExprDouble(Tkapp_Interp(self), s, &v); | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 	ENTER_OVERLAP | 
					
						
							| 
									
										
										
										
											1997-03-14 04:32:50 +00:00
										 |  |  |  | 	PyFPE_END_PROTECT(retval) | 
					
						
							| 
									
										
										
										
											1997-02-14 22:59:58 +00:00
										 |  |  |  | 	if (retval == TCL_ERROR) | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 		res = Tkinter_Error(self); | 
					
						
							|  |  |  |  | 	else | 
					
						
							|  |  |  |  | 		res = Py_BuildValue("d", v); | 
					
						
							|  |  |  |  | 	LEAVE_OVERLAP_TCL | 
					
						
							|  |  |  |  | 	return res; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkapp_ExprBoolean(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	char *s; | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 	PyObject *res = NULL; | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	int retval; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	int v; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-29 13:59:29 +00:00
										 |  |  |  | 	if (!PyArg_ParseTuple(args, "s:exprboolean", &s)) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	CHECK_TCL_APPARTMENT; | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	ENTER_TCL | 
					
						
							|  |  |  |  | 	retval = Tcl_ExprBoolean(Tkapp_Interp(self), s, &v); | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 	ENTER_OVERLAP | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	if (retval == TCL_ERROR) | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 		res = Tkinter_Error(self); | 
					
						
							|  |  |  |  | 	else | 
					
						
							|  |  |  |  | 		res = Py_BuildValue("i", v); | 
					
						
							|  |  |  |  | 	LEAVE_OVERLAP_TCL | 
					
						
							|  |  |  |  | 	return res; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |  | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkapp_SplitList(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	char *list; | 
					
						
							|  |  |  |  | 	int argc; | 
					
						
							|  |  |  |  | 	char **argv; | 
					
						
							|  |  |  |  | 	PyObject *v; | 
					
						
							|  |  |  |  | 	int i; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 	if (PyTuple_Size(args) == 1) { | 
					
						
							|  |  |  |  | 		v = PyTuple_GetItem(args, 0); | 
					
						
							|  |  |  |  | 		if (PyTuple_Check(v)) { | 
					
						
							|  |  |  |  | 			Py_INCREF(v); | 
					
						
							|  |  |  |  | 			return v; | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2002-01-26 20:21:50 +00:00
										 |  |  |  | 	if (!PyArg_ParseTuple(args, "et:splitlist", "utf-8", &list)) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-29 00:17:03 +00:00
										 |  |  |  | 	if (Tcl_SplitList(Tkapp_Interp(self), list,  | 
					
						
							|  |  |  |  | 			  &argc, &argv) == TCL_ERROR)  { | 
					
						
							|  |  |  |  | 		PyMem_Free(list); | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return Tkinter_Error(self); | 
					
						
							| 
									
										
										
										
											2003-05-29 00:17:03 +00:00
										 |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	if (!(v = PyTuple_New(argc))) | 
					
						
							| 
									
										
										
										
											2003-05-29 00:17:03 +00:00
										 |  |  |  | 		goto finally; | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	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 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  |   finally: | 
					
						
							|  |  |  |  | 	ckfree(FREECAST argv); | 
					
						
							| 
									
										
										
										
											2003-05-29 00:17:03 +00:00
										 |  |  |  | 	PyMem_Free(list); | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	return v; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkapp_Split(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2003-05-29 00:17:03 +00:00
										 |  |  |  | 	PyObject *v; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	char *list; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 	if (PyTuple_Size(args) == 1) { | 
					
						
							|  |  |  |  | 		PyObject* o = PyTuple_GetItem(args, 0); | 
					
						
							|  |  |  |  | 		if (PyTuple_Check(o)) { | 
					
						
							|  |  |  |  | 			o = SplitObj(o); | 
					
						
							|  |  |  |  | 			return o; | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2002-01-26 20:21:50 +00:00
										 |  |  |  | 	if (!PyArg_ParseTuple(args, "et:split", "utf-8", &list)) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2003-05-29 00:17:03 +00:00
										 |  |  |  | 	v = Split(list); | 
					
						
							|  |  |  |  | 	PyMem_Free(list); | 
					
						
							|  |  |  |  | 	return v; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkapp_Merge(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	char *s = Merge(args); | 
					
						
							|  |  |  |  | 	PyObject *res = NULL; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (s) { | 
					
						
							|  |  |  |  | 		res = PyString_FromString(s); | 
					
						
							|  |  |  |  | 		ckfree(s); | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	return res; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |  | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | /** Tcl Command **/ | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | /* Client data struct */ | 
					
						
							|  |  |  |  | typedef struct { | 
					
						
							|  |  |  |  | 	PyObject *self; | 
					
						
							|  |  |  |  | 	PyObject *func; | 
					
						
							|  |  |  |  | } PythonCmd_ClientData; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static int | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | PythonCmd_Error(Tcl_Interp *interp) | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  | 	errorInCmd = 1; | 
					
						
							|  |  |  |  | 	PyErr_Fetch(&excInCmd, &valInCmd, &trbInCmd); | 
					
						
							|  |  |  |  | 	LEAVE_PYTHON | 
					
						
							|  |  |  |  | 	return TCL_ERROR; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | /* This is the Tcl command that acts as a wrapper for Python
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  |  * function or method. | 
					
						
							|  |  |  |  |  */ | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | static int | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | PythonCmd(ClientData clientData, Tcl_Interp *interp, int argc, char *argv[]) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	PythonCmd_ClientData *data = (PythonCmd_ClientData *)clientData; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	PyObject *self, *func, *arg, *res, *tmp; | 
					
						
							| 
									
										
										
										
											2000-10-06 16:58:26 +00:00
										 |  |  |  | 	int i, rv; | 
					
						
							|  |  |  |  | 	char *s; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-09 20:51:18 +00:00
										 |  |  |  | 	ENTER_PYTHON | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	/* TBD: no error checking here since we know, via the
 | 
					
						
							|  |  |  |  | 	 * Tkapp_CreateCommand() that the client data is a two-tuple | 
					
						
							|  |  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	self = data->self; | 
					
						
							|  |  |  |  | 	func = data->func; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 	/* 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); | 
					
						
							| 
									
										
										
										
											1998-06-19 04:28:10 +00:00
										 |  |  |  | 			return PythonCmd_Error(interp); | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		} | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	res = PyEval_CallObject(func, arg); | 
					
						
							|  |  |  |  | 	Py_DECREF(arg); | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	if (res == NULL) | 
					
						
							|  |  |  |  | 		return PythonCmd_Error(interp); | 
					
						
							| 
									
										
										
										
											1994-07-07 09:25:12 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	if (!(tmp = PyList_New(0))) { | 
					
						
							|  |  |  |  | 		Py_DECREF(res); | 
					
						
							|  |  |  |  | 		return PythonCmd_Error(interp); | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-10-06 16:58:26 +00:00
										 |  |  |  | 	s = AsString(res, tmp); | 
					
						
							|  |  |  |  | 	if (s == NULL) { | 
					
						
							| 
									
										
										
										
											2007-08-09 21:47:11 +00:00
										 |  |  |  | 		Py_DECREF(res); | 
					
						
							|  |  |  |  | 		Py_DECREF(tmp); | 
					
						
							|  |  |  |  | 		return PythonCmd_Error(interp); | 
					
						
							| 
									
										
										
										
											2000-10-06 16:58:26 +00:00
										 |  |  |  | 	} | 
					
						
							|  |  |  |  | 	else { | 
					
						
							|  |  |  |  | 		Tcl_SetResult(Tkapp_Interp(self), s, TCL_VOLATILE); | 
					
						
							|  |  |  |  | 		rv = TCL_OK; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	Py_DECREF(res); | 
					
						
							|  |  |  |  | 	Py_DECREF(tmp); | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	LEAVE_PYTHON | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-10-06 16:58:26 +00:00
										 |  |  |  | 	return rv; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | PythonCmdDelete(ClientData clientData) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	PythonCmd_ClientData *data = (PythonCmd_ClientData *)clientData; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-09 20:51:18 +00:00
										 |  |  |  | 	ENTER_PYTHON | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	Py_XDECREF(data->self); | 
					
						
							|  |  |  |  | 	Py_XDECREF(data->func); | 
					
						
							|  |  |  |  | 	PyMem_DEL(data); | 
					
						
							|  |  |  |  | 	LEAVE_PYTHON | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |  | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | TCL_DECLARE_MUTEX(command_mutex) | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | typedef struct CommandEvent{ | 
					
						
							|  |  |  |  | 	Tcl_Event ev; | 
					
						
							|  |  |  |  | 	Tcl_Interp* interp; | 
					
						
							|  |  |  |  | 	char *name; | 
					
						
							|  |  |  |  | 	int create; | 
					
						
							|  |  |  |  | 	int *status; | 
					
						
							|  |  |  |  | 	ClientData *data; | 
					
						
							|  |  |  |  | 	Tcl_Condition done; | 
					
						
							|  |  |  |  | } CommandEvent; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static int | 
					
						
							|  |  |  |  | Tkapp_CommandProc(CommandEvent *ev, int flags) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	if (ev->create) | 
					
						
							|  |  |  |  | 		*ev->status = Tcl_CreateCommand( | 
					
						
							|  |  |  |  | 			ev->interp, ev->name, PythonCmd, | 
					
						
							|  |  |  |  | 			ev->data, PythonCmdDelete) == NULL; | 
					
						
							|  |  |  |  | 	else | 
					
						
							|  |  |  |  | 		*ev->status = Tcl_DeleteCommand(ev->interp, ev->name); | 
					
						
							|  |  |  |  | 	Tcl_MutexLock(&command_mutex); | 
					
						
							|  |  |  |  | 	Tcl_ConditionNotify(&ev->done); | 
					
						
							|  |  |  |  | 	Tcl_MutexUnlock(&command_mutex); | 
					
						
							|  |  |  |  | 	return 1; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2006-06-03 19:02:35 +00:00
										 |  |  |  | Tkapp_CreateCommand(PyObject *selfptr, PyObject *args) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-06-03 19:02:35 +00:00
										 |  |  |  | 	TkappObject *self = (TkappObject*)selfptr; | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	PythonCmd_ClientData *data; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	char *cmdName; | 
					
						
							|  |  |  |  | 	PyObject *func; | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-29 13:59:29 +00:00
										 |  |  |  | 	if (!PyArg_ParseTuple(args, "sO:createcommand", &cmdName, &func)) | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							|  |  |  |  | 	if (!PyCallable_Check(func)) { | 
					
						
							|  |  |  |  | 		PyErr_SetString(PyExc_TypeError, "command not callable"); | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-30 08:44:58 +00:00
										 |  |  |  | #ifdef WITH_THREAD
 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	if (self->threaded && self->thread_id != Tcl_GetCurrentThread() && | 
					
						
							| 
									
										
										
										
											2002-12-28 09:23:09 +00:00
										 |  |  |  | 	    !WaitForMainloop(self)) | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2003-03-30 08:44:58 +00:00
										 |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	data = PyMem_NEW(PythonCmd_ClientData, 1); | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	if (!data) | 
					
						
							| 
									
										
										
										
											2003-02-11 23:05:40 +00:00
										 |  |  |  | 		return PyErr_NoMemory(); | 
					
						
							| 
									
										
										
										
											2006-07-16 02:02:57 +00:00
										 |  |  |  | 	Py_INCREF(self); | 
					
						
							|  |  |  |  | 	Py_INCREF(func); | 
					
						
							| 
									
										
										
										
											2006-06-03 19:02:35 +00:00
										 |  |  |  | 	data->self = selfptr; | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	data->func = func; | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	 | 
					
						
							|  |  |  |  | 	if (self->threaded && self->thread_id != Tcl_GetCurrentThread()) { | 
					
						
							|  |  |  |  | 		CommandEvent *ev = (CommandEvent*)ckalloc(sizeof(CommandEvent)); | 
					
						
							|  |  |  |  | 		ev->ev.proc = (Tcl_EventProc*)Tkapp_CommandProc; | 
					
						
							|  |  |  |  | 		ev->interp = self->interp; | 
					
						
							|  |  |  |  | 		ev->create = 1; | 
					
						
							|  |  |  |  | 		ev->name = cmdName; | 
					
						
							|  |  |  |  | 		ev->data = (ClientData)data; | 
					
						
							|  |  |  |  | 		ev->status = &err; | 
					
						
							|  |  |  |  | 		ev->done = NULL; | 
					
						
							|  |  |  |  | 		Tkapp_ThreadSend(self, (Tcl_Event*)ev, &ev->done, &command_mutex); | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	else { | 
					
						
							|  |  |  |  | 		ENTER_TCL | 
					
						
							|  |  |  |  | 		err = Tcl_CreateCommand( | 
					
						
							|  |  |  |  | 			Tkapp_Interp(self), cmdName, PythonCmd, | 
					
						
							|  |  |  |  | 			(ClientData)data, PythonCmdDelete) == NULL; | 
					
						
							|  |  |  |  | 		LEAVE_TCL | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	if (err) { | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 		PyErr_SetString(Tkinter_TclError, "can't create Tcl command"); | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 		PyMem_DEL(data); | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	Py_INCREF(Py_None); | 
					
						
							|  |  |  |  | 	return Py_None; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |  | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2006-06-03 19:02:35 +00:00
										 |  |  |  | Tkapp_DeleteCommand(PyObject *selfptr, PyObject *args) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-06-03 19:02:35 +00:00
										 |  |  |  | 	TkappObject *self = (TkappObject*)selfptr; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	char *cmdName; | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-29 13:59:29 +00:00
										 |  |  |  | 	if (!PyArg_ParseTuple(args, "s:deletecommand", &cmdName)) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 	if (self->threaded && self->thread_id != Tcl_GetCurrentThread()) { | 
					
						
							|  |  |  |  | 		CommandEvent *ev; | 
					
						
							|  |  |  |  | 		ev = (CommandEvent*)ckalloc(sizeof(CommandEvent)); | 
					
						
							|  |  |  |  | 		ev->ev.proc = (Tcl_EventProc*)Tkapp_CommandProc; | 
					
						
							|  |  |  |  | 		ev->interp = self->interp; | 
					
						
							|  |  |  |  | 		ev->create = 0; | 
					
						
							|  |  |  |  | 		ev->name = cmdName; | 
					
						
							|  |  |  |  | 		ev->status = &err; | 
					
						
							|  |  |  |  | 		ev->done = NULL; | 
					
						
							|  |  |  |  | 		Tkapp_ThreadSend(self, (Tcl_Event*)ev, &ev->done,  | 
					
						
							|  |  |  |  | 				 &command_mutex); | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	else { | 
					
						
							|  |  |  |  | 		ENTER_TCL | 
					
						
							|  |  |  |  | 		err = Tcl_DeleteCommand(self->interp, cmdName); | 
					
						
							|  |  |  |  | 		LEAVE_TCL | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	if (err == -1) { | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		PyErr_SetString(Tkinter_TclError, "can't delete Tcl command"); | 
					
						
							|  |  |  |  | 		return NULL; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	Py_INCREF(Py_None); | 
					
						
							|  |  |  |  | 	return Py_None; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |  | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | #ifdef HAVE_CREATEFILEHANDLER
 | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | /** File Handler **/ | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | typedef struct _fhcdata { | 
					
						
							|  |  |  |  | 	PyObject *func; | 
					
						
							|  |  |  |  | 	PyObject *file; | 
					
						
							|  |  |  |  | 	int id; | 
					
						
							|  |  |  |  | 	struct _fhcdata *next; | 
					
						
							|  |  |  |  | } FileHandler_ClientData; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static FileHandler_ClientData *HeadFHCD; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static FileHandler_ClientData * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | NewFHCD(PyObject *func, PyObject *file, int id) | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  | 	FileHandler_ClientData *p; | 
					
						
							|  |  |  |  | 	p = PyMem_NEW(FileHandler_ClientData, 1); | 
					
						
							|  |  |  |  | 	if (p != NULL) { | 
					
						
							|  |  |  |  | 		Py_XINCREF(func); | 
					
						
							|  |  |  |  | 		Py_XINCREF(file); | 
					
						
							|  |  |  |  | 		p->func = func; | 
					
						
							|  |  |  |  | 		p->file = file; | 
					
						
							|  |  |  |  | 		p->id = id; | 
					
						
							|  |  |  |  | 		p->next = HeadFHCD; | 
					
						
							|  |  |  |  | 		HeadFHCD = p; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	return p; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | DeleteFHCD(int id) | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  | 	FileHandler_ClientData *p, **pp; | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 	pp = &HeadFHCD; | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	while ((p = *pp) != NULL) { | 
					
						
							|  |  |  |  | 		if (p->id == id) { | 
					
						
							|  |  |  |  | 			*pp = p->next; | 
					
						
							|  |  |  |  | 			Py_XDECREF(p->func); | 
					
						
							|  |  |  |  | 			Py_XDECREF(p->file); | 
					
						
							|  |  |  |  | 			PyMem_DEL(p); | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 		else | 
					
						
							|  |  |  |  | 			pp = &p->next; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-10 20:56:29 +00:00
										 |  |  |  | static void | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | FileHandler(ClientData clientData, int mask) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	FileHandler_ClientData *data = (FileHandler_ClientData *)clientData; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	PyObject *func, *file, *arg, *res; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-09 20:51:18 +00:00
										 |  |  |  | 	ENTER_PYTHON | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	func = data->func; | 
					
						
							|  |  |  |  | 	file = data->file; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 	arg = Py_BuildValue("(Oi)", file, (long) mask); | 
					
						
							|  |  |  |  | 	res = PyEval_CallObject(func, arg); | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 	Py_DECREF(arg); | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (res == NULL) { | 
					
						
							|  |  |  |  | 		errorInCmd = 1; | 
					
						
							|  |  |  |  | 		PyErr_Fetch(&excInCmd, &valInCmd, &trbInCmd); | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	Py_XDECREF(res); | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	LEAVE_PYTHON | 
					
						
							| 
									
										
										
										
											1994-08-09 14:15:19 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkapp_CreateFileHandler(PyObject *self, PyObject *args) | 
					
						
							|  |  |  |  |      /* args is (file, mask, func) */ | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	FileHandler_ClientData *data; | 
					
						
							|  |  |  |  | 	PyObject *file, *func; | 
					
						
							| 
									
										
										
										
											2000-03-28 20:07:05 +00:00
										 |  |  |  | 	int mask, tfile; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-10-06 16:58:26 +00:00
										 |  |  |  | 	if (!PyArg_ParseTuple(args, "OiO:createfilehandler", | 
					
						
							|  |  |  |  | 			      &file, &mask, &func)) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2003-03-03 10:40:01 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-30 08:44:58 +00:00
										 |  |  |  | #ifdef WITH_THREAD
 | 
					
						
							| 
									
										
										
										
											2003-03-03 10:40:01 +00:00
										 |  |  |  | 	if (!self && !tcl_lock) { | 
					
						
							|  |  |  |  | 		/* We don't have the Tcl lock since Tcl is threaded. */ | 
					
						
							|  |  |  |  | 		PyErr_SetString(PyExc_RuntimeError, | 
					
						
							|  |  |  |  | 				"_tkinter.createfilehandler not supported " | 
					
						
							|  |  |  |  | 				"for threaded Tcl"); | 
					
						
							|  |  |  |  | 		return NULL; | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-03-30 08:44:58 +00:00
										 |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2003-03-03 10:40:01 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (self) { | 
					
						
							|  |  |  |  | 		CHECK_TCL_APPARTMENT; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-13 23:59:35 +00:00
										 |  |  |  | 	tfile = PyObject_AsFileDescriptor(file); | 
					
						
							| 
									
										
										
										
											2000-03-28 20:07:05 +00:00
										 |  |  |  | 	if (tfile < 0) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							|  |  |  |  | 	if (!PyCallable_Check(func)) { | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 		PyErr_SetString(PyExc_TypeError, "bad argument list"); | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-28 20:07:05 +00:00
										 |  |  |  | 	data = NewFHCD(func, file, tfile); | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	if (data == NULL) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	/* Ought to check for null Tcl_File object... */ | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	ENTER_TCL | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	Tcl_CreateFileHandler(tfile, mask, FileHandler, (ClientData) data); | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	LEAVE_TCL | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 	Py_INCREF(Py_None); | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	return Py_None; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkapp_DeleteFileHandler(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	PyObject *file; | 
					
						
							| 
									
										
										
										
											2000-03-28 20:07:05 +00:00
										 |  |  |  | 	int tfile; | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-29 13:59:29 +00:00
										 |  |  |  | 	if (!PyArg_ParseTuple(args, "O:deletefilehandler", &file)) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2003-03-03 21:16:39 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-30 08:44:58 +00:00
										 |  |  |  | #ifdef WITH_THREAD
 | 
					
						
							| 
									
										
										
										
											2003-03-03 21:16:39 +00:00
										 |  |  |  | 	if (!self && !tcl_lock) { | 
					
						
							|  |  |  |  | 		/* We don't have the Tcl lock since Tcl is threaded. */ | 
					
						
							|  |  |  |  | 		PyErr_SetString(PyExc_RuntimeError, | 
					
						
							|  |  |  |  | 				"_tkinter.deletefilehandler not supported " | 
					
						
							|  |  |  |  | 				"for threaded Tcl"); | 
					
						
							|  |  |  |  | 		return NULL; | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-03-30 08:44:58 +00:00
										 |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2003-03-03 21:16:39 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (self) { | 
					
						
							|  |  |  |  | 		CHECK_TCL_APPARTMENT; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-13 23:59:35 +00:00
										 |  |  |  | 	tfile = PyObject_AsFileDescriptor(file); | 
					
						
							| 
									
										
										
										
											2000-03-28 20:07:05 +00:00
										 |  |  |  | 	if (tfile < 0) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-28 20:07:05 +00:00
										 |  |  |  | 	DeleteFHCD(tfile); | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	/* Ought to check for null Tcl_File object... */ | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	ENTER_TCL | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	Tcl_DeleteFileHandler(tfile); | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	LEAVE_TCL | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 	Py_INCREF(Py_None); | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	return Py_None; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							| 
									
										
										
										
											1997-08-14 19:57:07 +00:00
										 |  |  |  | #endif /* HAVE_CREATEFILEHANDLER */
 | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  |  | 
					
						
							| 
									
										
										
										
											1994-11-10 22:50:21 +00:00
										 |  |  |  | /**** Tktt Object (timer token) ****/ | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-07-17 16:30:39 +00:00
										 |  |  |  | static PyTypeObject Tktt_Type; | 
					
						
							| 
									
										
										
										
											1994-11-10 22:50:21 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	PyObject_HEAD | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 	Tcl_TimerToken token; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	PyObject *func; | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | } TkttObject; | 
					
						
							| 
									
										
										
										
											1994-11-10 22:50:21 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tktt_DeleteTimerHandler(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  | 	TkttObject *v = (TkttObject *)self; | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	PyObject *func = v->func; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-29 13:59:29 +00:00
										 |  |  |  | 	if (!PyArg_ParseTuple(args, ":deletetimerhandler")) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	if (v->token != NULL) { | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 		Tcl_DeleteTimerHandler(v->token); | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 		v->token = NULL; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	if (func != NULL) { | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		v->func = NULL; | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 		Py_DECREF(func); | 
					
						
							|  |  |  |  | 		Py_DECREF(v); /* See Tktt_New() */ | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	} | 
					
						
							|  |  |  |  | 	Py_INCREF(Py_None); | 
					
						
							|  |  |  |  | 	return Py_None; | 
					
						
							| 
									
										
										
										
											1994-11-10 22:50:21 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyMethodDef Tktt_methods[] = | 
					
						
							|  |  |  |  | { | 
					
						
							| 
									
										
										
										
											2002-03-31 14:44:22 +00:00
										 |  |  |  | 	{"deletetimerhandler", Tktt_DeleteTimerHandler, METH_VARARGS}, | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	{NULL, NULL} | 
					
						
							| 
									
										
										
										
											1994-11-10 22:50:21 +00:00
										 |  |  |  | }; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static TkttObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tktt_New(PyObject *func) | 
					
						
							| 
									
										
										
										
											1994-11-10 22:50:21 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	TkttObject *v; | 
					
						
							| 
									
										
										
										
											1994-11-10 22:50:21 +00:00
										 |  |  |  |    | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  |  | 	v = PyObject_New(TkttObject, &Tktt_Type); | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	if (v == NULL) | 
					
						
							|  |  |  |  | 		return NULL; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	Py_INCREF(func); | 
					
						
							|  |  |  |  | 	v->token = NULL; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	v->func = func; | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 	/* Extra reference, deleted when called or when handler is deleted */ | 
					
						
							|  |  |  |  | 	Py_INCREF(v); | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	return v; | 
					
						
							| 
									
										
										
										
											1994-11-10 22:50:21 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tktt_Dealloc(PyObject *self) | 
					
						
							| 
									
										
										
										
											1994-11-10 22:50:21 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	TkttObject *v = (TkttObject *)self; | 
					
						
							|  |  |  |  | 	PyObject *func = v->func; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	Py_XDECREF(func); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  |  | 	PyObject_Del(self); | 
					
						
							| 
									
										
										
										
											1994-11-10 22:50:21 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-12 14:36:19 +00:00
										 |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tktt_Repr(PyObject *self) | 
					
						
							| 
									
										
										
										
											1994-11-10 22:50:21 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	TkttObject *v = (TkttObject *)self; | 
					
						
							| 
									
										
										
										
											1998-05-12 14:36:19 +00:00
										 |  |  |  | 	char buf[100]; | 
					
						
							| 
									
										
										
										
											1994-11-10 22:50:21 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-11-28 20:27:42 +00:00
										 |  |  |  | 	PyOS_snprintf(buf, sizeof(buf), "<tktimertoken at %p%s>", v, | 
					
						
							| 
									
										
										
										
											2001-12-09 23:15:56 +00:00
										 |  |  |  | 	                v->func == NULL ? ", handler deleted" : ""); | 
					
						
							| 
									
										
										
										
											1998-05-12 14:36:19 +00:00
										 |  |  |  | 	return PyString_FromString(buf); | 
					
						
							| 
									
										
										
										
											1994-11-10 22:50:21 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2006-02-27 23:10:11 +00:00
										 |  |  |  | Tktt_GetAttr(PyObject *self, char *name) | 
					
						
							| 
									
										
										
										
											1994-11-10 22:50:21 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	return Py_FindMethod(Tktt_methods, self, name); | 
					
						
							| 
									
										
										
										
											1994-11-10 22:50:21 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyTypeObject Tktt_Type = | 
					
						
							|  |  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-07-21 06:55:02 +00:00
										 |  |  |  | 	PyVarObject_HEAD_INIT(NULL, 0) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	"tktimertoken",			     /*tp_name */ | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 	sizeof(TkttObject),		     /*tp_basicsize */ | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	0,				     /*tp_itemsize */ | 
					
						
							|  |  |  |  | 	Tktt_Dealloc,			     /*tp_dealloc */ | 
					
						
							| 
									
										
										
										
											1998-05-12 14:36:19 +00:00
										 |  |  |  | 	0,				     /*tp_print */ | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	Tktt_GetAttr,			     /*tp_getattr */ | 
					
						
							|  |  |  |  | 	0,				     /*tp_setattr */ | 
					
						
							|  |  |  |  | 	0,				     /*tp_compare */ | 
					
						
							| 
									
										
										
										
											1998-05-12 14:36:19 +00:00
										 |  |  |  | 	Tktt_Repr,			     /*tp_repr */ | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	0,				     /*tp_as_number */ | 
					
						
							|  |  |  |  | 	0,				     /*tp_as_sequence */ | 
					
						
							|  |  |  |  | 	0,				     /*tp_as_mapping */ | 
					
						
							|  |  |  |  | 	0,				     /*tp_hash */ | 
					
						
							| 
									
										
										
										
											1994-11-10 22:50:21 +00:00
										 |  |  |  | }; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |  | 
					
						
							| 
									
										
										
										
											1994-11-10 22:50:21 +00:00
										 |  |  |  | /** Timer Handler **/ | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | TimerHandler(ClientData clientData) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	TkttObject *v = (TkttObject *)clientData; | 
					
						
							|  |  |  |  | 	PyObject *func = v->func; | 
					
						
							|  |  |  |  | 	PyObject *res; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (func == NULL) | 
					
						
							|  |  |  |  | 		return; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	v->func = NULL; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-09 20:51:18 +00:00
										 |  |  |  | 	ENTER_PYTHON | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 	res  = PyEval_CallObject(func, NULL); | 
					
						
							|  |  |  |  | 	Py_DECREF(func); | 
					
						
							|  |  |  |  | 	Py_DECREF(v); /* See Tktt_New() */ | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (res == NULL) { | 
					
						
							|  |  |  |  | 		errorInCmd = 1; | 
					
						
							|  |  |  |  | 		PyErr_Fetch(&excInCmd, &valInCmd, &trbInCmd); | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	else | 
					
						
							|  |  |  |  | 		Py_DECREF(res); | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 	LEAVE_PYTHON | 
					
						
							| 
									
										
										
										
											1994-11-10 22:50:21 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkapp_CreateTimerHandler(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  | 	int milliseconds; | 
					
						
							|  |  |  |  | 	PyObject *func; | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	TkttObject *v; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-10-06 16:58:26 +00:00
										 |  |  |  | 	if (!PyArg_ParseTuple(args, "iO:createtimerhandler", | 
					
						
							|  |  |  |  | 			      &milliseconds, &func)) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							|  |  |  |  | 	if (!PyCallable_Check(func)) { | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 		PyErr_SetString(PyExc_TypeError, "bad argument list"); | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-03-03 10:40:01 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-30 08:44:58 +00:00
										 |  |  |  | #ifdef WITH_THREAD
 | 
					
						
							| 
									
										
										
										
											2003-03-03 10:40:01 +00:00
										 |  |  |  | 	if (!self && !tcl_lock) { | 
					
						
							|  |  |  |  | 		/* We don't have the Tcl lock since Tcl is threaded. */ | 
					
						
							|  |  |  |  | 		PyErr_SetString(PyExc_RuntimeError, | 
					
						
							|  |  |  |  | 				"_tkinter.createtimerhandler not supported " | 
					
						
							|  |  |  |  | 				"for threaded Tcl"); | 
					
						
							|  |  |  |  | 		return NULL; | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-03-30 08:44:58 +00:00
										 |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2003-03-03 10:40:01 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (self) { | 
					
						
							|  |  |  |  | 		CHECK_TCL_APPARTMENT; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	v = Tktt_New(func); | 
					
						
							| 
									
										
										
										
											2006-08-12 02:33:36 +00:00
										 |  |  |  | 	if (v) { | 
					
						
							|  |  |  |  | 		v->token = Tcl_CreateTimerHandler(milliseconds, TimerHandler, | 
					
						
							|  |  |  |  | 						  (ClientData)v); | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	return (PyObject *) v; | 
					
						
							| 
									
										
										
										
											1994-11-10 22:50:21 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  |  | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | /** Event Loop **/ | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2006-06-03 19:02:35 +00:00
										 |  |  |  | Tkapp_MainLoop(PyObject *selfptr, PyObject *args) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	int threshold = 0; | 
					
						
							| 
									
										
										
										
											2006-06-03 19:02:35 +00:00
										 |  |  |  | 	TkappObject *self = (TkappObject*)selfptr; | 
					
						
							| 
									
										
										
										
											1998-10-09 20:51:18 +00:00
										 |  |  |  | #ifdef WITH_THREAD
 | 
					
						
							|  |  |  |  | 	PyThreadState *tstate = PyThreadState_Get(); | 
					
						
							|  |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1994-11-10 22:50:21 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-29 13:59:29 +00:00
										 |  |  |  | 	if (!PyArg_ParseTuple(args, "|i:mainloop", &threshold)) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-30 08:44:58 +00:00
										 |  |  |  | #ifdef WITH_THREAD
 | 
					
						
							| 
									
										
										
										
											2003-01-04 08:36:57 +00:00
										 |  |  |  | 	if (!self && !tcl_lock) { | 
					
						
							|  |  |  |  | 		/* We don't have the Tcl lock since Tcl is threaded. */ | 
					
						
							|  |  |  |  | 		PyErr_SetString(PyExc_RuntimeError, | 
					
						
							|  |  |  |  | 				"_tkinter.mainloop not supported " | 
					
						
							|  |  |  |  | 				"for threaded Tcl"); | 
					
						
							|  |  |  |  | 		return NULL; | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-03-30 08:44:58 +00:00
										 |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2003-01-04 08:36:57 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (self) { | 
					
						
							|  |  |  |  | 		CHECK_TCL_APPARTMENT; | 
					
						
							|  |  |  |  | 		self->dispatching = 1; | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	quitMainLoop = 0; | 
					
						
							|  |  |  |  | 	while (Tk_GetNumMainWindows() > threshold && | 
					
						
							|  |  |  |  | 	       !quitMainLoop && | 
					
						
							|  |  |  |  | 	       !errorInCmd) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 		int result; | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | #ifdef WITH_THREAD
 | 
					
						
							| 
									
										
										
										
											2003-01-04 08:36:57 +00:00
										 |  |  |  | 		if (self && self->threaded) { | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 			/* Allow other Python threads to run. */ | 
					
						
							|  |  |  |  | 			ENTER_TCL | 
					
						
							|  |  |  |  | 			result = Tcl_DoOneEvent(0); | 
					
						
							|  |  |  |  | 			LEAVE_TCL | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 		else { | 
					
						
							|  |  |  |  | 			Py_BEGIN_ALLOW_THREADS | 
					
						
							|  |  |  |  | 			if(tcl_lock)PyThread_acquire_lock(tcl_lock, 1); | 
					
						
							|  |  |  |  | 			tcl_tstate = tstate; | 
					
						
							|  |  |  |  | 			result = Tcl_DoOneEvent(TCL_DONT_WAIT); | 
					
						
							|  |  |  |  | 			tcl_tstate = NULL; | 
					
						
							|  |  |  |  | 			if(tcl_lock)PyThread_release_lock(tcl_lock); | 
					
						
							|  |  |  |  | 			if (result == 0) | 
					
						
							| 
									
										
										
										
											2003-05-09 08:19:48 +00:00
										 |  |  |  | 				Sleep(Tkinter_busywaitinterval); | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 			Py_END_ALLOW_THREADS | 
					
						
							|  |  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1997-08-19 01:00:50 +00:00
										 |  |  |  | #else
 | 
					
						
							|  |  |  |  | 		result = Tcl_DoOneEvent(0); | 
					
						
							|  |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 		if (PyErr_CheckSignals() != 0) { | 
					
						
							| 
									
										
										
										
											2003-01-04 08:36:57 +00:00
										 |  |  |  | 			if (self) | 
					
						
							|  |  |  |  | 				self->dispatching = 0; | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 			return NULL; | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 		if (result < 0) | 
					
						
							|  |  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-01-04 08:36:57 +00:00
										 |  |  |  | 	if (self) | 
					
						
							|  |  |  |  | 		self->dispatching = 0; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	quitMainLoop = 0; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (errorInCmd) { | 
					
						
							|  |  |  |  | 		errorInCmd = 0; | 
					
						
							|  |  |  |  | 		PyErr_Restore(excInCmd, valInCmd, trbInCmd); | 
					
						
							|  |  |  |  | 		excInCmd = valInCmd = trbInCmd = NULL; | 
					
						
							|  |  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	Py_INCREF(Py_None); | 
					
						
							|  |  |  |  | 	return Py_None; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-10 17:42:51 +00:00
										 |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkapp_DoOneEvent(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1995-01-10 17:42:51 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 	int flags = 0; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	int rv; | 
					
						
							| 
									
										
										
										
											1995-01-10 17:42:51 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-29 13:59:29 +00:00
										 |  |  |  | 	if (!PyArg_ParseTuple(args, "|i:dooneevent", &flags)) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	ENTER_TCL | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 	rv = Tcl_DoOneEvent(flags); | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	LEAVE_TCL | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	return Py_BuildValue("i", rv); | 
					
						
							| 
									
										
										
										
											1995-01-10 17:42:51 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkapp_Quit(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-29 13:59:29 +00:00
										 |  |  |  | 	if (!PyArg_ParseTuple(args, ":quit")) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	quitMainLoop = 1; | 
					
						
							|  |  |  |  | 	Py_INCREF(Py_None); | 
					
						
							|  |  |  |  | 	return Py_None; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-29 16:17:01 +00:00
										 |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkapp_InterpAddr(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1998-04-29 16:17:01 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-29 13:59:29 +00:00
										 |  |  |  | 	if (!PyArg_ParseTuple(args, ":interpaddr")) | 
					
						
							| 
									
										
										
										
											1998-04-29 16:17:01 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	return PyInt_FromLong((long)Tkapp_Interp(self)); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-02-18 05:59:53 +00:00
										 |  |  |  | static PyObject	* | 
					
						
							|  |  |  |  | Tkapp_TkInit(PyObject *self, PyObject *args) | 
					
						
							|  |  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-05-01 06:28:01 +00:00
										 |  |  |  | 	static int has_failed; | 
					
						
							| 
									
										
										
										
											2004-02-18 05:59:53 +00:00
										 |  |  |  | 	Tcl_Interp *interp = Tkapp_Interp(self); | 
					
						
							| 
									
										
										
										
											2004-02-19 02:44:22 +00:00
										 |  |  |  | 	Tk_Window main_window; | 
					
						
							| 
									
										
										
										
											2004-02-18 05:59:53 +00:00
										 |  |  |  | 	const char * _tk_exists = NULL; | 
					
						
							|  |  |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											2004-02-19 02:44:22 +00:00
										 |  |  |  | 	main_window = Tk_MainWindow(interp); | 
					
						
							| 
									
										
										
										
											2004-02-18 05:59:53 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-01 06:28:01 +00:00
										 |  |  |  | 	/* In all current versions of Tk (including 8.4.13), Tk_Init
 | 
					
						
							|  |  |  |  | 	   deadlocks on the second call when the first call failed. | 
					
						
							|  |  |  |  | 	   To avoid the deadlock, we just refuse the second call through | 
					
						
							|  |  |  |  | 	   a static variable. */ | 
					
						
							|  |  |  |  | 	if (has_failed) { | 
					
						
							|  |  |  |  | 		PyErr_SetString(Tkinter_TclError,  | 
					
						
							|  |  |  |  | 				"Calling Tk_Init again after a previous call failed might deadlock"); | 
					
						
							|  |  |  |  | 		return NULL; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	    | 
					
						
							| 
									
										
										
										
											2004-02-18 05:59:53 +00:00
										 |  |  |  | 	/* We want to guard against calling Tk_Init() multiple times */ | 
					
						
							|  |  |  |  | 	CHECK_TCL_APPARTMENT; | 
					
						
							|  |  |  |  | 	ENTER_TCL | 
					
						
							|  |  |  |  | 	err = Tcl_Eval(Tkapp_Interp(self), "info exists	tk_version"); | 
					
						
							|  |  |  |  | 	ENTER_OVERLAP | 
					
						
							|  |  |  |  | 	if (err == TCL_ERROR) { | 
					
						
							| 
									
										
										
										
											2006-05-01 06:28:01 +00:00
										 |  |  |  | 		/* This sets an exception, but we cannot return right
 | 
					
						
							|  |  |  |  | 		   away because we need to exit the overlap first. */ | 
					
						
							|  |  |  |  | 		Tkinter_Error(self); | 
					
						
							| 
									
										
										
										
											2004-02-18 05:59:53 +00:00
										 |  |  |  | 	} else { | 
					
						
							|  |  |  |  | 		_tk_exists = Tkapp_Result(self); | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	LEAVE_OVERLAP_TCL | 
					
						
							|  |  |  |  | 	if (err == TCL_ERROR) { | 
					
						
							|  |  |  |  | 		return NULL; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	if (_tk_exists == NULL || strcmp(_tk_exists, "1") != 0)	{ | 
					
						
							|  |  |  |  | 		if (Tk_Init(interp)	== TCL_ERROR) { | 
					
						
							|  |  |  |  | 		        PyErr_SetString(Tkinter_TclError, Tcl_GetStringResult(Tkapp_Interp(self))); | 
					
						
							| 
									
										
										
										
											2006-05-01 06:28:01 +00:00
										 |  |  |  | 			has_failed = 1; | 
					
						
							| 
									
										
										
										
											2004-02-18 05:59:53 +00:00
										 |  |  |  | 			return NULL; | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	Py_INCREF(Py_None); | 
					
						
							|  |  |  |  | 	return Py_None; | 
					
						
							|  |  |  |  | } | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | static PyObject * | 
					
						
							|  |  |  |  | Tkapp_WantObjects(PyObject *self, PyObject *args) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-06-14 21:34:32 +00:00
										 |  |  |  | 	int wantobjects = -1; | 
					
						
							|  |  |  |  | 	if (!PyArg_ParseTuple(args, "|i:wantobjects", &wantobjects)) | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2003-06-14 21:34:32 +00:00
										 |  |  |  | 	if (wantobjects == -1) | 
					
						
							|  |  |  |  | 		return PyBool_FromLong(((TkappObject*)self)->wantobjects); | 
					
						
							| 
									
										
										
										
											2002-11-26 21:39:48 +00:00
										 |  |  |  | 	((TkappObject*)self)->wantobjects = wantobjects; | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 	Py_INCREF(Py_None); | 
					
						
							|  |  |  |  | 	return Py_None; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-28 09:23:09 +00:00
										 |  |  |  | static PyObject * | 
					
						
							|  |  |  |  | Tkapp_WillDispatch(PyObject *self, PyObject *args) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	((TkappObject*)self)->dispatching = 1; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	Py_INCREF(Py_None); | 
					
						
							|  |  |  |  | 	return Py_None; | 
					
						
							|  |  |  |  | } | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  |  | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | /**** Tkapp Method List ****/ | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyMethodDef Tkapp_methods[] = | 
					
						
							|  |  |  |  | { | 
					
						
							| 
									
										
										
										
											2002-12-28 09:23:09 +00:00
										 |  |  |  | 	{"willdispatch",       Tkapp_WillDispatch, METH_NOARGS}, | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 	{"wantobjects",	       Tkapp_WantObjects, METH_VARARGS}, | 
					
						
							| 
									
										
										
										
											2007-05-22 07:16:10 +00:00
										 |  |  |  | 	{"call", 	       Tkapp_Call, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"globalcall", 	       Tkapp_GlobalCall, METH_VARARGS}, | 
					
						
							| 
									
										
										
										
											2002-01-17 23:15:58 +00:00
										 |  |  |  | 	{"eval", 	       Tkapp_Eval, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"globaleval", 	       Tkapp_GlobalEval, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"evalfile", 	       Tkapp_EvalFile, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"record", 	       Tkapp_Record, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"adderrorinfo",       Tkapp_AddErrorInfo, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"setvar", 	       Tkapp_SetVar, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"globalsetvar",       Tkapp_GlobalSetVar, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"getvar", 	       Tkapp_GetVar, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"globalgetvar",       Tkapp_GlobalGetVar, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"unsetvar", 	       Tkapp_UnsetVar, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"globalunsetvar",     Tkapp_GlobalUnsetVar, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"getint", 	       Tkapp_GetInt, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"getdouble", 	       Tkapp_GetDouble, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"getboolean", 	       Tkapp_GetBoolean, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"exprstring", 	       Tkapp_ExprString, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"exprlong", 	       Tkapp_ExprLong, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"exprdouble", 	       Tkapp_ExprDouble, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"exprboolean",        Tkapp_ExprBoolean, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"splitlist", 	       Tkapp_SplitList, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"split", 	       Tkapp_Split, METH_VARARGS}, | 
					
						
							| 
									
										
										
										
											2007-05-22 07:16:10 +00:00
										 |  |  |  | 	{"merge", 	       Tkapp_Merge, METH_VARARGS}, | 
					
						
							| 
									
										
										
										
											2002-01-17 23:15:58 +00:00
										 |  |  |  | 	{"createcommand",      Tkapp_CreateCommand, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"deletecommand",      Tkapp_DeleteCommand, METH_VARARGS}, | 
					
						
							| 
									
										
										
										
											1997-08-14 19:57:07 +00:00
										 |  |  |  | #ifdef HAVE_CREATEFILEHANDLER
 | 
					
						
							| 
									
										
										
										
											2002-01-17 23:15:58 +00:00
										 |  |  |  | 	{"createfilehandler",  Tkapp_CreateFileHandler, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"deletefilehandler",  Tkapp_DeleteFileHandler, METH_VARARGS}, | 
					
						
							| 
									
										
										
										
											1997-08-07 00:12:22 +00:00
										 |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2002-01-17 23:15:58 +00:00
										 |  |  |  | 	{"createtimerhandler", Tkapp_CreateTimerHandler, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"mainloop", 	       Tkapp_MainLoop, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"dooneevent", 	       Tkapp_DoOneEvent, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"quit", 	       Tkapp_Quit, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"interpaddr",         Tkapp_InterpAddr, METH_VARARGS}, | 
					
						
							| 
									
										
										
										
											2004-02-19 02:44:22 +00:00
										 |  |  |  | 	{"loadtk",	       Tkapp_TkInit, METH_NOARGS}, | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	{NULL, 		       NULL} | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | }; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |  | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | /**** Tkapp Type Methods ****/ | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | Tkapp_Dealloc(PyObject *self) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2002-12-31 17:34:30 +00:00
										 |  |  |  | 	/*CHECK_TCL_APPARTMENT;*/ | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	ENTER_TCL | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 	Tcl_DeleteInterp(Tkapp_Interp(self)); | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	LEAVE_TCL | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  |  | 	PyObject_Del(self); | 
					
						
							| 
									
										
										
										
											1998-05-22 18:28:17 +00:00
										 |  |  |  | 	DisableEventHook(); | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2006-02-27 23:10:11 +00:00
										 |  |  |  | Tkapp_GetAttr(PyObject *self, char *name) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 	return Py_FindMethod(Tkapp_methods, self, name); | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyTypeObject Tkapp_Type = | 
					
						
							|  |  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-07-21 06:55:02 +00:00
										 |  |  |  | 	PyVarObject_HEAD_INIT(NULL, 0) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	"tkapp",			     /*tp_name */ | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 	sizeof(TkappObject),		     /*tp_basicsize */ | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	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 07:49:28 +00:00
										 |  |  |  | }; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |  | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | /**** Tkinter Module ****/ | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-18 18:45:50 +00:00
										 |  |  |  | typedef struct { | 
					
						
							|  |  |  |  | 	PyObject* tuple; | 
					
						
							|  |  |  |  | 	int size; /* current size */ | 
					
						
							|  |  |  |  | 	int maxsize; /* allocated size */ | 
					
						
							|  |  |  |  | } FlattenContext; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static int | 
					
						
							|  |  |  |  | _bump(FlattenContext* context, int size) | 
					
						
							|  |  |  |  | { | 
					
						
							| 
									
										
										
										
											2000-10-06 16:58:26 +00:00
										 |  |  |  | 	/* expand tuple to hold (at least) size new items.
 | 
					
						
							|  |  |  |  | 	   return true if successful, false if an exception was raised */ | 
					
						
							| 
									
										
										
										
											2000-06-18 18:45:50 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 	int maxsize = context->maxsize * 2; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (maxsize < context->size + size) | 
					
						
							|  |  |  |  | 		maxsize = context->size + size; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	context->maxsize = maxsize; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-05-28 22:30:08 +00:00
										 |  |  |  | 	return _PyTuple_Resize(&context->tuple, maxsize) >= 0; | 
					
						
							| 
									
										
										
										
											2000-06-18 18:45:50 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static int | 
					
						
							| 
									
										
										
										
											2000-06-19 00:55:09 +00:00
										 |  |  |  | _flatten1(FlattenContext* context, PyObject* item, int depth) | 
					
						
							| 
									
										
										
										
											2000-06-18 18:45:50 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  | 	/* add tuple or list to argument tuple (recursively) */ | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	int i, size; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-19 00:55:09 +00:00
										 |  |  |  | 	if (depth > 1000) { | 
					
						
							| 
									
										
										
										
											2000-10-06 16:58:26 +00:00
										 |  |  |  | 		PyErr_SetString(PyExc_ValueError, | 
					
						
							|  |  |  |  | 				"nesting too deep in _flatten"); | 
					
						
							| 
									
										
										
										
											2000-06-19 00:55:09 +00:00
										 |  |  |  | 		return 0; | 
					
						
							|  |  |  |  | 	} else if (PyList_Check(item)) { | 
					
						
							| 
									
										
										
										
											2000-06-18 18:45:50 +00:00
										 |  |  |  | 		size = PyList_GET_SIZE(item); | 
					
						
							|  |  |  |  | 		/* preallocate (assume no nesting) */ | 
					
						
							| 
									
										
										
										
											2000-10-06 16:58:26 +00:00
										 |  |  |  | 		if (context->size + size > context->maxsize && | 
					
						
							|  |  |  |  | 		    !_bump(context, size)) | 
					
						
							| 
									
										
										
										
											2000-06-18 18:45:50 +00:00
										 |  |  |  | 			return 0; | 
					
						
							|  |  |  |  | 		/* copy items to output tuple */ | 
					
						
							|  |  |  |  | 		for (i = 0; i < size; i++) { | 
					
						
							|  |  |  |  | 			PyObject *o = PyList_GET_ITEM(item, i); | 
					
						
							|  |  |  |  | 			if (PyList_Check(o) || PyTuple_Check(o)) { | 
					
						
							| 
									
										
										
										
											2000-06-19 00:55:09 +00:00
										 |  |  |  | 				if (!_flatten1(context, o, depth + 1)) | 
					
						
							| 
									
										
										
										
											2000-06-18 18:45:50 +00:00
										 |  |  |  | 					return 0; | 
					
						
							|  |  |  |  | 			} else if (o != Py_None) { | 
					
						
							| 
									
										
										
										
											2000-10-06 16:58:26 +00:00
										 |  |  |  | 				if (context->size + 1 > context->maxsize && | 
					
						
							|  |  |  |  | 				    !_bump(context, 1)) | 
					
						
							| 
									
										
										
										
											2000-06-18 18:45:50 +00:00
										 |  |  |  | 					return 0; | 
					
						
							|  |  |  |  | 				Py_INCREF(o); | 
					
						
							| 
									
										
										
										
											2000-10-06 16:58:26 +00:00
										 |  |  |  | 				PyTuple_SET_ITEM(context->tuple, | 
					
						
							|  |  |  |  | 						 context->size++, o); | 
					
						
							| 
									
										
										
										
											2000-06-18 18:45:50 +00:00
										 |  |  |  | 			} | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 	} else if (PyTuple_Check(item)) { | 
					
						
							|  |  |  |  | 		/* same, for tuples */ | 
					
						
							|  |  |  |  | 		size = PyTuple_GET_SIZE(item); | 
					
						
							| 
									
										
										
										
											2000-10-06 16:58:26 +00:00
										 |  |  |  | 		if (context->size + size > context->maxsize && | 
					
						
							|  |  |  |  | 		    !_bump(context, size)) | 
					
						
							| 
									
										
										
										
											2000-06-18 18:45:50 +00:00
										 |  |  |  | 			return 0; | 
					
						
							|  |  |  |  | 		for (i = 0; i < size; i++) { | 
					
						
							|  |  |  |  | 			PyObject *o = PyTuple_GET_ITEM(item, i); | 
					
						
							|  |  |  |  | 			if (PyList_Check(o) || PyTuple_Check(o)) { | 
					
						
							| 
									
										
										
										
											2000-06-19 00:55:09 +00:00
										 |  |  |  | 				if (!_flatten1(context, o, depth + 1)) | 
					
						
							| 
									
										
										
										
											2000-06-18 18:45:50 +00:00
										 |  |  |  | 					return 0; | 
					
						
							|  |  |  |  | 			} else if (o != Py_None) { | 
					
						
							| 
									
										
										
										
											2000-10-06 16:58:26 +00:00
										 |  |  |  | 				if (context->size + 1 > context->maxsize && | 
					
						
							|  |  |  |  | 				    !_bump(context, 1)) | 
					
						
							| 
									
										
										
										
											2000-06-18 18:45:50 +00:00
										 |  |  |  | 					return 0; | 
					
						
							|  |  |  |  | 				Py_INCREF(o); | 
					
						
							| 
									
										
										
										
											2000-10-06 16:58:26 +00:00
										 |  |  |  | 				PyTuple_SET_ITEM(context->tuple, | 
					
						
							|  |  |  |  | 						 context->size++, o); | 
					
						
							| 
									
										
										
										
											2000-06-18 18:45:50 +00:00
										 |  |  |  | 			} | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 	} else { | 
					
						
							|  |  |  |  | 		PyErr_SetString(PyExc_TypeError, "argument must be sequence"); | 
					
						
							|  |  |  |  | 		return 0; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	return 1; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							|  |  |  |  | Tkinter_Flatten(PyObject* self, PyObject* args) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	FlattenContext context; | 
					
						
							|  |  |  |  | 	PyObject* item; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (!PyArg_ParseTuple(args, "O:_flatten", &item)) | 
					
						
							|  |  |  |  | 		return NULL; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-12 13:05:33 +00:00
										 |  |  |  | 	context.maxsize = PySequence_Size(item); | 
					
						
							| 
									
										
										
										
											2000-06-18 18:45:50 +00:00
										 |  |  |  | 	if (context.maxsize <= 0) | 
					
						
							|  |  |  |  | 		return PyTuple_New(0); | 
					
						
							|  |  |  |  | 	 | 
					
						
							|  |  |  |  | 	context.tuple = PyTuple_New(context.maxsize); | 
					
						
							|  |  |  |  | 	if (!context.tuple) | 
					
						
							|  |  |  |  | 		return NULL; | 
					
						
							|  |  |  |  | 	 | 
					
						
							|  |  |  |  | 	context.size = 0; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-19 00:55:09 +00:00
										 |  |  |  | 	if (!_flatten1(&context, item,0)) | 
					
						
							| 
									
										
										
										
											2000-06-18 18:45:50 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-05-28 22:30:08 +00:00
										 |  |  |  | 	if (_PyTuple_Resize(&context.tuple, context.size)) | 
					
						
							| 
									
										
										
										
											2000-06-18 18:45:50 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	return context.tuple; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-21 06:00:07 +00:00
										 |  |  |  | Tkinter_Create(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  | 	char *screenName = NULL; | 
					
						
							|  |  |  |  | 	char *baseName = NULL; | 
					
						
							|  |  |  |  | 	char *className = NULL; | 
					
						
							|  |  |  |  | 	int interactive = 0; | 
					
						
							| 
									
										
										
										
											2002-11-26 21:39:48 +00:00
										 |  |  |  | 	int wantobjects = 0; | 
					
						
							| 
									
										
										
										
											2004-02-18 05:59:53 +00:00
										 |  |  |  | 	int wantTk = 1;	/* If false, then Tk_Init() doesn't get	called */ | 
					
						
							| 
									
										
										
										
											2004-08-03 18:45:31 +00:00
										 |  |  |  | 	int sync = 0; /* pass -sync to wish */ | 
					
						
							|  |  |  |  | 	char *use = NULL; /* pass -use to wish */ | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 	baseName = strrchr(Py_GetProgramName(), '/'); | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	if (baseName != NULL) | 
					
						
							|  |  |  |  | 		baseName++; | 
					
						
							|  |  |  |  | 	else | 
					
						
							|  |  |  |  | 		baseName = Py_GetProgramName(); | 
					
						
							|  |  |  |  | 	className = "Tk"; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  |    | 
					
						
							| 
									
										
										
										
											2004-08-03 18:45:31 +00:00
										 |  |  |  | 	if (!PyArg_ParseTuple(args, "|zssiiiiz:create", | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 			      &screenName, &baseName, &className, | 
					
						
							| 
									
										
										
										
											2004-08-03 18:45:31 +00:00
										 |  |  |  | 			      &interactive, &wantobjects, &wantTk, | 
					
						
							|  |  |  |  | 			      &sync, &use)) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	return (PyObject *) Tkapp_New(screenName, baseName, className,  | 
					
						
							| 
									
										
										
										
											2004-08-03 18:45:31 +00:00
										 |  |  |  | 				      interactive, wantobjects,	wantTk, | 
					
						
							|  |  |  |  | 				      sync, use); | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-09 08:19:48 +00:00
										 |  |  |  | static PyObject * | 
					
						
							|  |  |  |  | Tkinter_setbusywaitinterval(PyObject *self, PyObject *args) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	int new_val; | 
					
						
							|  |  |  |  | 	if (!PyArg_ParseTuple(args, "i:setbusywaitinterval", &new_val)) | 
					
						
							|  |  |  |  | 		return NULL; | 
					
						
							|  |  |  |  | 	if (new_val < 0) { | 
					
						
							|  |  |  |  | 		PyErr_SetString(PyExc_ValueError, | 
					
						
							|  |  |  |  | 				"busywaitinterval must be >= 0"); | 
					
						
							|  |  |  |  | 		return NULL; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	Tkinter_busywaitinterval = new_val; | 
					
						
							|  |  |  |  | 	Py_INCREF(Py_None); | 
					
						
							|  |  |  |  | 	return Py_None; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static char setbusywaitinterval_doc[] = | 
					
						
							|  |  |  |  | "setbusywaitinterval(n) -> None\n\
 | 
					
						
							|  |  |  |  | \n\ | 
					
						
							|  |  |  |  | Set the busy-wait interval in milliseconds between successive\n\ | 
					
						
							|  |  |  |  | calls to Tcl_DoOneEvent in a threaded Python interpreter.\n\ | 
					
						
							|  |  |  |  | It should be set to a divisor of the maximum time between\n\ | 
					
						
							|  |  |  |  | frames in an animation."; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static PyObject * | 
					
						
							|  |  |  |  | Tkinter_getbusywaitinterval(PyObject *self, PyObject *args) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |         return PyInt_FromLong(Tkinter_busywaitinterval); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static char getbusywaitinterval_doc[] = | 
					
						
							|  |  |  |  | "getbusywaitinterval() -> int\n\
 | 
					
						
							|  |  |  |  | \n\ | 
					
						
							|  |  |  |  | Return the current busy-wait interval between successive\n\ | 
					
						
							|  |  |  |  | calls to Tcl_DoOneEvent in a threaded Python interpreter."; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | static PyMethodDef moduleMethods[] = | 
					
						
							|  |  |  |  | { | 
					
						
							| 
									
										
										
										
											2002-01-17 23:15:58 +00:00
										 |  |  |  | 	{"_flatten",           Tkinter_Flatten, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"create",             Tkinter_Create, METH_VARARGS}, | 
					
						
							| 
									
										
										
										
											1997-08-14 19:57:07 +00:00
										 |  |  |  | #ifdef HAVE_CREATEFILEHANDLER
 | 
					
						
							| 
									
										
										
										
											2002-01-17 23:15:58 +00:00
										 |  |  |  | 	{"createfilehandler",  Tkapp_CreateFileHandler, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"deletefilehandler",  Tkapp_DeleteFileHandler, METH_VARARGS}, | 
					
						
							| 
									
										
										
										
											1997-08-07 00:12:22 +00:00
										 |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2002-01-17 23:15:58 +00:00
										 |  |  |  | 	{"createtimerhandler", Tkapp_CreateTimerHandler, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"mainloop",           Tkapp_MainLoop, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"dooneevent",         Tkapp_DoOneEvent, METH_VARARGS}, | 
					
						
							|  |  |  |  | 	{"quit",               Tkapp_Quit, METH_VARARGS}, | 
					
						
							| 
									
										
										
										
											2003-05-09 08:19:48 +00:00
										 |  |  |  | 	{"setbusywaitinterval",Tkinter_setbusywaitinterval, METH_VARARGS, | 
					
						
							|  |  |  |  | 	                       setbusywaitinterval_doc}, | 
					
						
							|  |  |  |  | 	{"getbusywaitinterval",(PyCFunction)Tkinter_getbusywaitinterval, | 
					
						
							|  |  |  |  | 	                       METH_NOARGS, getbusywaitinterval_doc}, | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	{NULL,                 NULL} | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | }; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 18:28:17 +00:00
										 |  |  |  | #ifdef WAIT_FOR_STDIN
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static int stdin_ready = 0; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-06-13 13:56:28 +00:00
										 |  |  |  | #ifndef MS_WINDOWS
 | 
					
						
							| 
									
										
										
										
											1998-05-22 18:28:17 +00:00
										 |  |  |  | static void | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | MyFileProc(void *clientData, int mask) | 
					
						
							| 
									
										
										
										
											1998-05-22 18:28:17 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  | 	stdin_ready = 1; | 
					
						
							|  |  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-06-13 13:56:28 +00:00
										 |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1998-05-22 18:28:17 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-30 08:44:58 +00:00
										 |  |  |  | #ifdef WITH_THREAD
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | static PyThreadState *event_tstate = NULL; | 
					
						
							| 
									
										
										
										
											2003-03-30 08:44:58 +00:00
										 |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1997-10-07 18:51:41 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | static int | 
					
						
							| 
									
										
										
										
											2000-07-21 06:00:07 +00:00
										 |  |  |  | EventHook(void) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1998-06-13 13:56:28 +00:00
										 |  |  |  | #ifndef MS_WINDOWS
 | 
					
						
							| 
									
										
										
										
											2000-03-28 20:07:05 +00:00
										 |  |  |  | 	int tfile; | 
					
						
							| 
									
										
										
										
											1998-06-13 13:56:28 +00:00
										 |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1998-11-17 03:45:24 +00:00
										 |  |  |  | #ifdef WITH_THREAD
 | 
					
						
							| 
									
										
										
										
											1998-06-13 13:56:28 +00:00
										 |  |  |  | 	PyEval_RestoreThread(event_tstate); | 
					
						
							| 
									
										
										
										
											1998-11-17 03:45:24 +00:00
										 |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1998-05-22 18:28:17 +00:00
										 |  |  |  | 	stdin_ready = 0; | 
					
						
							| 
									
										
										
										
											1998-06-13 13:56:28 +00:00
										 |  |  |  | 	errorInCmd = 0; | 
					
						
							|  |  |  |  | #ifndef MS_WINDOWS
 | 
					
						
							| 
									
										
										
										
											2000-03-28 20:07:05 +00:00
										 |  |  |  | 	tfile = fileno(stdin); | 
					
						
							| 
									
										
										
										
											1998-05-22 18:28:17 +00:00
										 |  |  |  | 	Tcl_CreateFileHandler(tfile, TCL_READABLE, MyFileProc, NULL); | 
					
						
							| 
									
										
										
										
											1998-06-13 13:56:28 +00:00
										 |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	while (!errorInCmd && !stdin_ready) { | 
					
						
							|  |  |  |  | 		int result; | 
					
						
							| 
									
										
										
										
											1998-06-13 13:56:28 +00:00
										 |  |  |  | #ifdef MS_WINDOWS
 | 
					
						
							|  |  |  |  | 		if (_kbhit()) { | 
					
						
							|  |  |  |  | 			stdin_ready = 1; | 
					
						
							|  |  |  |  | 			break; | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | #endif
 | 
					
						
							|  |  |  |  | #if defined(WITH_THREAD) || defined(MS_WINDOWS)
 | 
					
						
							| 
									
										
										
										
											1998-06-15 04:36:09 +00:00
										 |  |  |  | 		Py_BEGIN_ALLOW_THREADS | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 		if(tcl_lock)PyThread_acquire_lock(tcl_lock, 1); | 
					
						
							| 
									
										
										
										
											1998-10-12 16:26:22 +00:00
										 |  |  |  | 		tcl_tstate = event_tstate; | 
					
						
							| 
									
										
										
										
											1998-10-09 20:51:18 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 		result = Tcl_DoOneEvent(TCL_DONT_WAIT); | 
					
						
							| 
									
										
										
										
											1998-10-09 20:51:18 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 		tcl_tstate = NULL; | 
					
						
							| 
									
										
										
										
											2002-12-12 17:07:58 +00:00
										 |  |  |  | 		if(tcl_lock)PyThread_release_lock(tcl_lock); | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 		if (result == 0) | 
					
						
							| 
									
										
										
										
											2003-05-09 08:19:48 +00:00
										 |  |  |  | 			Sleep(Tkinter_busywaitinterval); | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 		Py_END_ALLOW_THREADS | 
					
						
							|  |  |  |  | #else
 | 
					
						
							|  |  |  |  | 		result = Tcl_DoOneEvent(0); | 
					
						
							| 
									
										
										
										
											1998-05-22 18:28:17 +00:00
										 |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 		if (result < 0) | 
					
						
							|  |  |  |  | 			break; | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1998-06-13 13:56:28 +00:00
										 |  |  |  | #ifndef MS_WINDOWS
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 	Tcl_DeleteFileHandler(tfile); | 
					
						
							| 
									
										
										
										
											1998-06-13 13:56:28 +00:00
										 |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	if (errorInCmd) { | 
					
						
							|  |  |  |  | 		errorInCmd = 0; | 
					
						
							|  |  |  |  | 		PyErr_Restore(excInCmd, valInCmd, trbInCmd); | 
					
						
							|  |  |  |  | 		excInCmd = valInCmd = trbInCmd = NULL; | 
					
						
							|  |  |  |  | 		PyErr_Print(); | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1998-11-17 03:45:24 +00:00
										 |  |  |  | #ifdef WITH_THREAD
 | 
					
						
							| 
									
										
										
										
											1998-06-13 13:56:28 +00:00
										 |  |  |  | 	PyEval_SaveThread(); | 
					
						
							| 
									
										
										
										
											1998-11-17 03:45:24 +00:00
										 |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | #endif
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 18:28:17 +00:00
										 |  |  |  | static void | 
					
						
							| 
									
										
										
										
											2000-07-21 06:00:07 +00:00
										 |  |  |  | EnableEventHook(void) | 
					
						
							| 
									
										
										
										
											1998-05-22 18:28:17 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | #ifdef WAIT_FOR_STDIN
 | 
					
						
							| 
									
										
										
										
											1998-05-22 18:28:17 +00:00
										 |  |  |  | 	if (PyOS_InputHook == NULL) { | 
					
						
							| 
									
										
										
										
											1998-11-17 03:45:24 +00:00
										 |  |  |  | #ifdef WITH_THREAD
 | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 		event_tstate = PyThreadState_Get(); | 
					
						
							| 
									
										
										
										
											1998-11-17 03:45:24 +00:00
										 |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1998-05-22 18:28:17 +00:00
										 |  |  |  | 		PyOS_InputHook = EventHook; | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1998-05-22 18:28:17 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void | 
					
						
							| 
									
										
										
										
											2000-07-21 06:00:07 +00:00
										 |  |  |  | DisableEventHook(void) | 
					
						
							| 
									
										
										
										
											1998-05-22 18:28:17 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | #ifdef WAIT_FOR_STDIN
 | 
					
						
							| 
									
										
										
										
											1998-05-22 18:28:17 +00:00
										 |  |  |  | 	if (Tk_GetNumMainWindows() == 0 && PyOS_InputHook == EventHook) { | 
					
						
							|  |  |  |  | 		PyOS_InputHook = NULL; | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1998-05-22 18:28:17 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | /* all errors will be checked in one fell swoop in init_tkinter() */ | 
					
						
							|  |  |  |  | static void | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | ins_long(PyObject *d, char *name, long val) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  | 	PyObject *v = PyInt_FromLong(val); | 
					
						
							|  |  |  |  | 	if (v) { | 
					
						
							|  |  |  |  | 		PyDict_SetItemString(d, name, v); | 
					
						
							|  |  |  |  | 		Py_DECREF(v); | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | static void | 
					
						
							| 
									
										
										
										
											2000-07-08 04:04:38 +00:00
										 |  |  |  | ins_string(PyObject *d, char *name, char *val) | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  | 	PyObject *v = PyString_FromString(val); | 
					
						
							|  |  |  |  | 	if (v) { | 
					
						
							|  |  |  |  | 		PyDict_SetItemString(d, name, v); | 
					
						
							|  |  |  |  | 		Py_DECREF(v); | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-07-23 06:31:15 +00:00
										 |  |  |  | PyMODINIT_FUNC | 
					
						
							| 
									
										
										
										
											2000-07-21 06:00:07 +00:00
										 |  |  |  | init_tkinter(void) | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	PyObject *m, *d; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-19 02:37:44 +00:00
										 |  |  |  | 	Py_TYPE(&Tkapp_Type) = &PyType_Type; | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | #ifdef WITH_THREAD
 | 
					
						
							| 
									
										
										
										
											1998-12-21 19:32:43 +00:00
										 |  |  |  | 	tcl_lock = PyThread_allocate_lock(); | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 	m = Py_InitModule("_tkinter", moduleMethods); | 
					
						
							| 
									
										
										
										
											2006-01-19 06:09:39 +00:00
										 |  |  |  | 	if (m == NULL) | 
					
						
							|  |  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 	d = PyModule_GetDict(m); | 
					
						
							| 
									
										
										
										
											2002-06-04 17:14:07 +00:00
										 |  |  |  | 	Tkinter_TclError = PyErr_NewException("_tkinter.TclError", NULL, NULL); | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	PyDict_SetItemString(d, "TclError", Tkinter_TclError); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-02 00:09:09 +00:00
										 |  |  |  | 	ins_long(d, "READABLE", TCL_READABLE); | 
					
						
							|  |  |  |  | 	ins_long(d, "WRITABLE", TCL_WRITABLE); | 
					
						
							|  |  |  |  | 	ins_long(d, "EXCEPTION", TCL_EXCEPTION); | 
					
						
							|  |  |  |  | 	ins_long(d, "WINDOW_EVENTS", TCL_WINDOW_EVENTS); | 
					
						
							|  |  |  |  | 	ins_long(d, "FILE_EVENTS", TCL_FILE_EVENTS); | 
					
						
							|  |  |  |  | 	ins_long(d, "TIMER_EVENTS", TCL_TIMER_EVENTS); | 
					
						
							|  |  |  |  | 	ins_long(d, "IDLE_EVENTS", TCL_IDLE_EVENTS); | 
					
						
							|  |  |  |  | 	ins_long(d, "ALL_EVENTS", TCL_ALL_EVENTS); | 
					
						
							|  |  |  |  | 	ins_long(d, "DONT_WAIT", TCL_DONT_WAIT); | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	ins_string(d, "TK_VERSION", TK_VERSION); | 
					
						
							|  |  |  |  | 	ins_string(d, "TCL_VERSION", TCL_VERSION); | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-09-13 00:44:23 +00:00
										 |  |  |  | 	PyDict_SetItemString(d, "TkappType", (PyObject *)&Tkapp_Type); | 
					
						
							| 
									
										
										
										
											1998-05-28 23:06:38 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-19 02:37:44 +00:00
										 |  |  |  | 	Py_TYPE(&Tktt_Type) = &PyType_Type; | 
					
						
							| 
									
										
										
										
											1997-09-13 00:44:23 +00:00
										 |  |  |  | 	PyDict_SetItemString(d, "TkttType", (PyObject *)&Tktt_Type); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-19 02:37:44 +00:00
										 |  |  |  | 	Py_TYPE(&PyTclObject_Type) = &PyType_Type; | 
					
						
							| 
									
										
										
										
											2002-11-26 09:28:05 +00:00
										 |  |  |  | 	PyDict_SetItemString(d, "Tcl_Obj", (PyObject *)&PyTclObject_Type); | 
					
						
							| 
									
										
										
										
											2001-12-09 23:15:56 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | #ifdef TK_AQUA
 | 
					
						
							|  |  |  |  | 	/* Tk_MacOSXSetupTkNotifier must be called before Tcl's subsystems
 | 
					
						
							|  |  |  |  | 	 * start waking up.  Note that Tcl_FindExecutable will do this, this | 
					
						
							|  |  |  |  | 	 * code must be above it! The original warning from | 
					
						
							|  |  |  |  | 	 * tkMacOSXAppInit.c is copied below. | 
					
						
							|  |  |  |  | 	 * | 
					
						
							|  |  |  |  | 	 * NB - You have to swap in the Tk Notifier BEFORE you start up the | 
					
						
							|  |  |  |  | 	 * Tcl interpreter for now.  It probably should work to do this | 
					
						
							|  |  |  |  | 	 * in the other order, but for now it doesn't seem to. | 
					
						
							|  |  |  |  | 	 * | 
					
						
							|  |  |  |  | 	 */ | 
					
						
							|  |  |  |  | 	Tk_MacOSXSetupTkNotifier(); | 
					
						
							|  |  |  |  | #endif
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-27 21:46:29 +00:00
										 |  |  |  | 	/* This helps the dynamic loader; in Unicode aware Tcl versions
 | 
					
						
							|  |  |  |  | 	   it also helps Tcl find its encodings. */ | 
					
						
							|  |  |  |  | 	Tcl_FindExecutable(Py_GetProgramName()); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-16 00:15:11 +00:00
										 |  |  |  | 	if (PyErr_Occurred()) | 
					
						
							| 
									
										
										
										
											1998-02-06 22:35:46 +00:00
										 |  |  |  | 		return; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-07-14 18:02:13 +00:00
										 |  |  |  | #if 0
 | 
					
						
							|  |  |  |  | 	/* This was not a good idea; through <Destroy> bindings,
 | 
					
						
							|  |  |  |  | 	   Tcl_Finalize() may invoke Python code but at that point the | 
					
						
							|  |  |  |  | 	   interpreter and thread state have already been destroyed! */ | 
					
						
							| 
									
										
										
										
											1998-02-06 22:35:46 +00:00
										 |  |  |  | 	Py_AtExit(Tcl_Finalize); | 
					
						
							| 
									
										
										
										
											1998-04-20 18:47:52 +00:00
										 |  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1998-02-06 22:35:46 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-06-20 07:49:28 +00:00
										 |  |  |  | } |