Help | Site Map
Connecting Tech Pros Worldwide
 
 
LinkBack Thread Tools
  #1  
Old July 19th, 2005, 02:21 AM
ab
Guest
 
Posts: n/a
Default Interaction between TclTk editor with Python code

Hi,

I have an editor(front end) that is written in Tcl/Tk.
It has a menu bar, menu buttons, edit boxes, listboxes & comboboxes.
I am invoking this editor from an application that is written in
Python.
all the necessary processing is done in Python and displaying is done
by the Tcl/Tk code.

Now if I make some changes in the GUI, say I change some value in the
editbox or set some value in the list box and click on save in the GUI,
how can I read the changed values from Python?
I mean, how can I get the value changed in the GUI into some Python
variable?

Thanks,
Ab.

  #2  
Old July 19th, 2005, 02:21 AM
Jeff Epler
Guest
 
Posts: n/a
Default Re: Interaction between TclTk editor with Python code

One way to get a handle on some Tcl variables from Python is to create
Tkinter.Variable instances with the names of the existing Tcl variables
(normally, the variable names are chosen arbitrarily). Once you've done
this, you can do things like add variable traces (the trace_variable
method) on the Python side. One thing to be aware of is that the Python
object's __del__ will unset the variable on the Tcl side. Also, this
code sets an initial value for the variable which may or may not be
appropriate in your application.

The code below was ripped from a larger application, so it may or may
not work without modification.

Jeff

# This code is in the public domain
from Tkinter import *
def makevar(master, name, klass, *default):
self = newinstance(klass)
self._master = master
self._tk = master.tk
self._name = name
if default:
self.set(default[0])
else:
self.set(self._default)
return self

def makebool(master, name, *default):
return makevar(master, name, Tkinter.BooleanVar, *default)
def makeint(master, name, *default):
return makevar(master, name, Tkinter.IntVar, *default)
def makefloat(master, name, *default):
return makevar(master, name, Tkinter.DoubleVar, *default)
def makestring(master, name, *default):
return makevar(master, name, Tkinter.StringVar, *default)

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.6 (GNU/Linux)

iD8DBQFCidvgJd01MZaTXX0RAn1gAJ9xhcjNEG/L79jYQUQQIGVPAQW16gCfUNeS
vbV4CmyXWgzLgs/bH3upYkU=
=WBcH
-----END PGP SIGNATURE-----

 

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over network members.
Post your question now . . .
It's fast and it's free

Popular Articles