Re: [PyQt] mousePressEvent not getting called

2008-01-17 Thread Phil Thompson
On Thursday 17 January 2008, Quoc Tran wrote: > I’m having a weird problem with using my custom Qt widget in > PyQt. > > > > I created a custom QFrame in C++ and overrided: > > virtual void mousePressEvent( QMouseEvent * ); > > > > When I use my widget in python the mousePressEvent is never > calle

[PyQt] mousePressEvent not getting called

2008-01-17 Thread Quoc Tran
I’m having a weird problem with using my custom Qt widget in PyQt. I created a custom QFrame in C++ and overrided: virtual void mousePressEvent( QMouseEvent * ); When I use my widget in python the mousePressEvent is never called but if I derive off of my custom class in PyQt and override