Re: [Tkinter-discuss] Lots of widgets in a Text widget

2008-07-17 Thread Vasilis Vlachoudis
I had a similar problem, with my application with Text and Canvas. After some testing I realized that enormous amount of time was used by Tk/Tcl from the tag_bind routine. In the end I've decided to use a global binding for the mouse and cache the bounding box of each element. It is a bit more

Re: [Tkinter-discuss] Lots of widgets in a Text widget

2008-07-16 Thread Bob Greschke
Personally, I don't think it does any good to see any of them. The users will just get in there and mess things up! Haha. I could have a different form where they enter the ID number of an instrument and just work with that unit. There's really no logical way to split them up other than lik

Re: [Tkinter-discuss] Lots of widgets in a Text widget

2008-07-16 Thread Guilherme Polo
On Wed, Jul 16, 2008 at 7:17 PM, Bob Greschke <[EMAIL PROTECTED]> wrote: > I have a program that maintains a simple, on-the-fly database using a > dictionary. The user can see what is going on with it by brining up a > toplevel with a Text() widget. Checkbuttons and Entry fields are used to > dis