Re: [PyQt] QWSWindow.raise() class error with python

2008-07-23 Thread Strato
Hi, Thanks for your answer ! You're right, the right way is to implement the event method in my class :) (I've fund this yesterday evening :) ) But, I do the trick differently, using self.isMinimized() because my class is a QDialog subclass. Thanks ! Strato PS: for the other need of handl

Re: [PyQt] QWSWindow.raise() class error with python

2008-07-20 Thread David Boddie
On Sun Jul 20 20:54:12 BST 2008, Strato wrote: > I need to call the raise() method of the QWSWindow class, to set an > application to show up on top of other windows, but of course, 'raise' > is a python reserved keyword, and the call lead to a "Invalid syntax > error". > > So, does anybody have a

[PyQt] QWSWindow.raise() class error with python

2008-07-20 Thread Strato
Hi, I need to call the raise() method of the QWSWindow class, to set an application to show up on top of other windows, but of course, 'raise' is a python reserved keyword, and the call lead to a "Invalid syntax error". So, does anybody have a workaround ? any idea of how to figure this out ?