Re: Faster GUI text control

2005-05-16 Thread Cameron Laird
In article <[EMAIL PROTECTED]>, Jeremy Bowers <[EMAIL PROTECTED]> wrote: >On Fri, 13 May 2005 15:44:24 -0500, none wrote: > >> I'm trying to decide what is the best replacement for the control. I >> was originally planning on redoing the GUI with wxpython, but I've seen >> people indicate I wou

Re: Faster GUI text control

2005-05-15 Thread none
Fredrik Lundh wrote: > "none <"@bag.python.org> wrote: > > >>>no, it would mean writing some python code. if all you need is a scrolling >>>text list, you can simply use the code on this page: >>> >>>http://effbot.org/zone/wck-4.htm >>> >>>(see "A scrollable list view, with scrollbar support

Re: Faster GUI text control

2005-05-14 Thread Fredrik Lundh
"none <"@bag.python.org> wrote: > > no, it would mean writing some python code. if all you need is a scrolling > > text list, you can simply use the code on this page: > > > > http://effbot.org/zone/wck-4.htm > > > > (see "A scrollable list view, with scrollbar support" and, optionally, > > t

Re: Faster GUI text control

2005-05-14 Thread none
That's a good point about the amount of text available at once. As long as I could swap the visible section fast enough that might be a good solution. This will run mostly on Windows, but I'd like for it to be equally usable on Linux. -- http://mail.python.org/mailman/listinfo/python-lis

Re: Faster GUI text control

2005-05-14 Thread none
> > no, it would mean writing some python code. if all you need is a scrolling > text list, you can simply use the code on this page: > > http://effbot.org/zone/wck-4.htm > > (see "A scrollable list view, with scrollbar support" and, optionally, > the virtual data modifications under "Displ

Re: Faster GUI text control

2005-05-13 Thread Fredrik Lundh
"none "@bag.python.org" wrote: > several people mention that is was a known issue with Tkinter. > I'm trying to decide what is the best replacement for the control. I > was originally planning on redoing the GUI with wxpython, but I've seen > people indicate I would have the same problem. I als

Re: Faster GUI text control

2005-05-13 Thread Paul McNett
Jeremy Bowers wrote: > The problem is that if you're really looking for performance, it may > differ based on the characteristics of the text and the quality of the > target computer, the platform (which you don't mention; GTK may scream in > Linux and make you scream in Windows...), etc., and ther

Re: Faster GUI text control

2005-05-13 Thread Jeremy Bowers
On Fri, 13 May 2005 15:44:24 -0500, none wrote: > I'm trying to decide what is the best replacement for the control. I > was originally planning on redoing the GUI with wxpython, but I've seen > people indicate I would have the same problem. Honestly, if this is important to you, the best thin

Faster GUI text control

2005-05-13 Thread none
Hi, I wrote a program for work that processed and formatted some collected text data in a Tkinter based GUI display. I've found that as my data files get longer (a few thousand lines), there seems to be a real lag when it comes to clearing or updating the Text control, enough so that the pr