Re: [pygtk] threads and win32 gtk

2005-05-15 Thread Nikos Kouremenos
On 5/15/05, Christian Robottom Reis <[EMAIL PROTECTED]> wrote: > > -> FAQ 21.3 (redone for the nth time): > > http://www.async.com.br/faq/pygtk/index.py?req=show&file=faq21.003.htp > > Take care, Christian, what about the Pseudo threads stuff using Generators? Aren't those to trust/propose

Re: [pygtk] threads and win32 gtk

2005-05-15 Thread Christian Robottom Reis
-> FAQ 21.3 (redone for the nth time): http://www.async.com.br/faq/pygtk/index.py?req=show&file=faq21.003.htp Take care, -- Christian Robottom Reis | http://async.com.br/~kiko/ | [+55 16] 3376 0125 ___ pygtk mailing list pygtk@daa.com.au http://w

Re: [pygtk] threads and win32 gtk

2005-05-13 Thread John Ehresman
Danny Milosavljevic wrote: The current (and unlikely to change) status of threadson win32 is that you basically can't perform gui operations from a subthread, even with gdk_threads_enter/leave. Essentially, the X11 and win32 gui/threading models are different, and making gtk work the same on bo

Re: [pygtk] threads and win32 gtk

2005-05-13 Thread Danny Milosavljevic
Hi, Am Freitag, den 13.05.2005, 09:43 +1200 schrieb Tim Evans: > manatlan wrote: > > I really need some help ... i'm going to be mad ... > > > > I've switched from wx to gtk, and try to make a "self-made listview of > > pictures". > > To build the pixbuf of an "item which is displayed in my listv

[pygtk] threads and win32 gtk

2005-05-13 Thread manatlan
I really need some ... i'm going to be mad ... I've switched from wx to gtk, and try to make a "self-made listview of pictures". To build the pixbuf of an "item which is displayed in my listview" : I start a thread to load the jpeg in the background ... when the thread has done its job, it tell th

Re: [pygtk] threads and win32 gtk

2005-05-12 Thread Tim Evans
manatlan wrote: I really need some help ... i'm going to be mad ... I've switched from wx to gtk, and try to make a "self-made listview of pictures". To build the pixbuf of an "item which is displayed in my listview" : I start a thread to load the jpeg in the background ... when the thread has done

Re: [pygtk] threads and win32 gtk

2005-05-12 Thread Danny Milosavljevic
Hi, Am Donnerstag, den 12.05.2005, 09:41 +0200 schrieb manatlan: > I really need some help ... i'm going to be mad ... > > I've switched from wx to gtk, and try to make a "self-made listview of > pictures". > To build the pixbuf of an "item which is displayed in my listview" : I > start a thread

Re: [pygtk] threads and win32 gtk

2005-05-12 Thread Christian Robottom Reis
On Thu, May 12, 2005 at 09:41:34AM +0200, manatlan wrote: > To build the pixbuf of an "item which is displayed in my listview" : I > start a thread to load the jpeg in the background ... when the thread > has done its job, it tell the listview that it can reload the pixbuf > (which was cached)... a

[pygtk] threads and win32 gtk

2005-05-12 Thread manatlan
I really need some help ... i'm going to be mad ... I've switched from wx to gtk, and try to make a "self-made listview of pictures". To build the pixbuf of an "item which is displayed in my listview" : I start a thread to load the jpeg in the background ... when the thread has done its job, it te