[PyKDE] Signal + Slots Problem

2003-03-05 Thread Stuart Bronk
Hi, I currently trying to set up signals and slots in my application I understand the principals and have read many examples but I am unable to get it working on my own could someone possibly help me out :) as this is only a basic test I am hoping to pass objects later but that is another step :)

Re: [PyKDE] Signal + Slots Problem

2003-03-05 Thread Sundance
I heard Stuart Bronk said: I have a Widget and a class called Figure I am attempting to connect the method Figure.loadQ with the Widgets loadQ method but I cannot seem to get it to work ... self.connect(self.Figure, SIGNAL(loadQ()), self.loadQ()) Okay, two things. To start with, if

Re: [PyKDE] Signal + Slots Problem

2003-03-05 Thread Phil Thompson
On Wednesday 05 March 2003 5:28 pm, Stuart Bronk wrote: Hi, I currently trying to set up signals and slots in my application I understand the principals and have read many examples but I am unable to get it working on my own could someone possibly help me out :) as this is only a basic test

Re: [PyKDE] Signal + Slots Problem

2003-03-05 Thread Sundance
I heard Frederick Polgardy Jr said: self.connect(self.Figure, PYSIGNAL(loadQ()), self.loadQ) Of course, what you're left with is an endless loop. :) I'm not sure. It depends on what the loadQ slot on -self- (as opposed to self.Figure) does, right...? -- S.

RE: [PyKDE] Signal + Slots Problem

2003-03-05 Thread Stuart Bronk
will be greatly appreciated again, thanks Stuart Bronk -Original Message- From: Phil Thompson [mailto:[EMAIL PROTECTED] Sent: 05 March 2003 6:26 PM To: Stuart Bronk; [EMAIL PROTECTED] Subject: Re: [PyKDE] Signal + Slots Problem On Wednesday 05 March 2003 5:28 pm, Stuart Bronk wrote: Hi, I

Re: [PyKDE] Signal + Slots Problem

2003-03-05 Thread Phil Thompson
- From: Phil Thompson [mailto:[EMAIL PROTECTED] Sent: 05 March 2003 6:26 PM To: Stuart Bronk; [EMAIL PROTECTED] Subject: Re: [PyKDE] Signal + Slots Problem On Wednesday 05 March 2003 5:28 pm, Stuart Bronk wrote: Hi, I currently trying to set up signals and slots in my application I