Re: Command line and GUI tools : need a single threading solution

2005-01-12 Thread Adrian Casey
Adrian Casey wrote: > Diez B. Roggisch wrote: > >>> I'm thinking it may be possible to modify the command line tools to use >>> qt >>> threads instead of native python threads. Is this the way to go? Are >>> there other options? >> >> Why don't you use python threads in qt - I do so and so far

Re: Command line and GUI tools : need a single threading solution

2005-01-11 Thread Adrian Casey
Phil Thompson wrote: >> I have a collection of multi-threaded command line tools which I want >> wrap a >> PyQt gui around. I'm using queues to route messages from the command >> line tools to the PyQt gui. The command line tools use python threads to >> do >> their work. The gui uses a QThread

Re: Command line and GUI tools : need a single threading solution

2005-01-11 Thread Adrian Casey
Diez B. Roggisch wrote: >> I'm thinking it may be possible to modify the command line tools to use >> qt >> threads instead of native python threads. Is this the way to go? Are >> there other options? > > Why don't you use python threads in qt - I do so and so far it didn't make > any troubles

Re: Command line and GUI tools : need a single threading solution

2005-01-10 Thread Phil Thompson
> I have a collection of multi-threaded command line tools which I want wrap > a > PyQt gui around. I'm using queues to route messages from the command line > tools to the PyQt gui. The command line tools use python threads to do > their work. The gui uses a QThread object to read incoming messag

Re: Command line and GUI tools : need a single threading solution

2005-01-10 Thread Diez B. Roggisch
> I'm thinking it may be possible to modify the command line tools to use qt > threads instead of native python threads. Is this the way to go? Are > there other options? Why don't you use python threads in qt - I do so and so far it didn't make any troubles for me. And I would strongly advise a

Command line and GUI tools : need a single threading solution

2005-01-10 Thread Adrian Casey
I have a collection of multi-threaded command line tools which I want wrap a PyQt gui around. I'm using queues to route messages from the command line tools to the PyQt gui. The command line tools use python threads to do their work. The gui uses a QThread object to read incoming messages. This