Is it possible to call Tcl procedures that have function pointers (or callback functions) from Python? I am using Tkinter to call Tcl procedures from Python.
Python Snippet :
proc callbackFunc():
print "I am in callbackFunc"
cb = callbackFunc
Tkinter.Tk.call('tclproc::RetrieveInfo', cb)
Tcl Snippet :
proc tclproc::RetrieveInfo() { callback } {
eval $callback
}
Note I cannot modify Tcl code as its an external library to my application.
//Hemanth
Yes, and your pseudocode is pretty close. You have to register your python code with the Tcl interpreter. This will create a tcl command that will call your python code. You then reference this new tcl command whenever you pass it to a Tcl procedure that expects a procedure name. It goes something like this:
import Tkinter
root=Tkinter.Tk()
# create a python callback function
def callbackFunc():
print "I am in callbackFunc"
# register the callback as a Tcl command. What gets returned
# must be used when calling the function from Tcl
cb = root.register(callbackFunc)
# call a tcl command ('eval', for demonstration purposes)
# that calls our python callback:
root.call('eval',cb)
A tiny bit of documentation is here:
http://epydoc.sourceforge.net/stdlib/Tkinter.Misc-class.html#register
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With