Re: PyQt app in seperate thread

2006-11-23 Thread Jeremy Sanders
anders wrote: > OK I see that now. Thanks for pointing that out. So basically, I can't > do what I want at all. That's a bit of a pain. Is there no way of > tricking Qt into thinking I'm running it in the main thread? I have an app which runs Qt in a separate thread and allows the user to send it

Re: PyQt app in seperate thread

2006-11-22 Thread Diez B. Roggisch
anders wrote: > > Diez B. Roggisch wrote: >> > OK I see that now. Thanks for pointing that out. So basically, I can't >> > do what I want at all. That's a bit of a pain. Is there no way of >> > tricking Qt into thinking I'm running it in the main thread? >> >> Maybe you can either invert the thre

Re: PyQt app in seperate thread

2006-11-22 Thread anders
Diez B. Roggisch wrote: > > OK I see that now. Thanks for pointing that out. So basically, I can't > > do what I want at all. That's a bit of a pain. Is there no way of > > tricking Qt into thinking I'm running it in the main thread? > > Maybe you can either invert the thread-roles - that is, run

Re: PyQt app in seperate thread

2006-11-22 Thread Diez B. Roggisch
> OK I see that now. Thanks for pointing that out. So basically, I can't > do what I want at all. That's a bit of a pain. Is there no way of > tricking Qt into thinking I'm running it in the main thread? Maybe you can either invert the thread-roles - that is, run your "main" application in a threa

Re: PyQt app in seperate thread

2006-11-22 Thread Chris Mellon
On 22 Nov 2006 06:43:55 -0800, anders <[EMAIL PROTECTED]> wrote: > > Phil Thompson wrote: > > On Wednesday 22 November 2006 2:06 pm, anders wrote: > > > Phil Thompson wrote: > > > > On Wednesday 22 November 2006 12:37 pm, anders wrote: > > > > > I am writing a plugin for a piece of software in pyth

Re: PyQt app in seperate thread

2006-11-22 Thread anders
Phil Thompson wrote: > On Wednesday 22 November 2006 2:06 pm, anders wrote: > > Phil Thompson wrote: > > > On Wednesday 22 November 2006 12:37 pm, anders wrote: > > > > I am writing a plugin for a piece of software in python, and I want to > > > > start up a PyQt GUI in the plugin, without stallin

Re: PyQt app in seperate thread

2006-11-22 Thread Phil Thompson
On Wednesday 22 November 2006 2:06 pm, anders wrote: > Phil Thompson wrote: > > On Wednesday 22 November 2006 12:37 pm, anders wrote: > > > I am writing a plugin for a piece of software in python, and I want to > > > start up a PyQt GUI in the plugin, without stalling the main thread > > > while th

Re: PyQt app in seperate thread

2006-11-22 Thread anders
Phil Thompson wrote: > On Wednesday 22 November 2006 12:37 pm, anders wrote: > > I am writing a plugin for a piece of software in python, and I want to > > start up a PyQt GUI in the plugin, without stalling the main thread > > while the gui is running (later i will want to pass messages between >

Re: PyQt app in seperate thread

2006-11-22 Thread Phil Thompson
On Wednesday 22 November 2006 12:37 pm, anders wrote: > I am writing a plugin for a piece of software in python, and I want to > start up a PyQt GUI in the plugin, without stalling the main thread > while the gui is running (later i will want to pass messages between > the main thread and the gui t

PyQt app in seperate thread

2006-11-22 Thread anders
I am writing a plugin for a piece of software in python, and I want to start up a PyQt GUI in the plugin, without stalling the main thread while the gui is running (later i will want to pass messages between the main thread and the gui thread). I'm new to pyqt, so I'm probably doing something very