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
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
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
> 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
> 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
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