Re: [PyQt] Delaying splash screen

2011-09-09 Thread Hans-Peter Jansen
Am Thursday 08 September 2011 00:32:17 schrieb Muhammad Bashir Al-Noimi: > On 07/09/2011 11:27 م, Hans-Peter Jansen wrote: > On Wednesday 07 September 2011, 14:04:02 ad...@mbnoimi.net wrote: > > Hi guys, > > I wrote a tiny class for delaying splash screen in C++ but when I > tired to re-write it i

Re: [PyQt] Delaying splash screen

2011-09-08 Thread Nick Gaens
The avoidable * imports Pete mentioned involve typing from PyQt4 import QtGui and then do: > class Foo(QtGui.QLabel) or > from PyQt4.QtGui import QLabel and then do: > class Foo(QLabel) Using one of the above causes not all modules to be loaded, whereas your * imports actually does load

Re: [PyQt] Delaying splash screen

2011-09-07 Thread Muhammad Bashir Al-Noimi
On 07/09/2011 11:27 م, Hans-Peter Jansen wrote: On Wednesday 07 September 2011, 14:04:02 ad...@mbnoimi.net wrote: Hi guys, I wrote a tiny class for delaying splash screen in C++ but when I tired to re-write it in python it didn't work! I got "Attribu

Re: [PyQt] Delaying splash screen

2011-09-07 Thread Hans-Peter Jansen
On Wednesday 07 September 2011, 14:04:02 ad...@mbnoimi.net wrote: > Hi guys, > > I wrote a tiny class for delaying splash screen in C++ but when I > tired to re-write it in python it didn't work! > > I got "AttributeError TeSplashScreen object has no attribut QFrate" > although TeSplashScreen inh

Re: [PyQt] Delaying splash screen

2011-09-07 Thread admin
On 07/09/2011 03:57 م, Nick Gaens wrote: Can you please specify what line this AttributeError is pointing at? self.QFrame(self, Qt.FramelessWindowHint|Qt.WindowStaysOnTopHint) -- Best Regards Muhammad Bashir Al-Noimi My Blog: http://mbnoimi.net _

Re: [PyQt] Delaying splash screen

2011-09-07 Thread Nick Gaens
Can you please specify *what line* this AttributeError is pointing at? On Wed, Sep 7, 2011 at 14:04, wrote: > Hi guys, > > I wrote a tiny class for delaying splash screen in C++ but when I tired to > re-write it in python it didn't work! > > I got "AttributeError TeSplashScreen object has no at

[PyQt] Delaying splash screen

2011-09-07 Thread admin
Hi guys, I wrote a tiny class for delaying splash screen in C++ but when I tired to re-write it in python it didn't work! I got "AttributeError TeSplashScreen object has no attribut QFrate" although TeSplashScreen inherited from QFrame C