Re: [PyQt] QStyle classes not exposed

2007-07-13 Thread Phil Thompson
On Friday 13 July 2007 11:36 am, Giovanni Bajo wrote: > Hi, > > it looks like the whole QStyle class hierarchy is not exposed by PyQt, > with the exception of QStyle itself. > > Is there a specific reason for this? Plugins. > Can this be fixed? Not in a way that I would be happy with. There is

[PyQt] QStyle classes not exposed

2007-07-13 Thread Giovanni Bajo
Hi, it looks like the whole QStyle class hierarchy is not exposed by PyQt, with the exception of QStyle itself. Is there a specific reason for this? Can this be fixed? Thanks! -- Giovanni Bajo ___ PyQt mailing listPyQt@riverbankcomputing.com ht

Re: [PyQt] Problems building PyQt snapshot on Win32 with MinGW -- all details included

2007-07-13 Thread Andreas Pakulat
On 12.07.07 16:11:00, Martin Blais wrote: > On 7/12/07, Andreas Pakulat <[EMAIL PROTECTED]> wrote: > > > >Well, it is documented however in Qt's README (IIRC) that this shortcut > >is installed. > > And that's supposed to help? You're supposed to read the documentation of programs that you instal

Re: [PyQt] dragdroprobot example, take 2

2007-07-13 Thread Giovanni Bajo
On 13/07/2007 0.02, Lieven Buts wrote: OK, after taking another look at my Python version of the "dragdroprobot" example, I found that my code was simply not keeping any references to the QGraphicsItemAnimation instances, causing them to be garbage-collected. With suitable modifications (see http

[PyQt] What happens there's many signals in PyQt?

2007-07-13 Thread Carlos Scheidegger
Hello, I tracked down the issue on our application, and it seems it had to do with the amount of connections installed in the entire system. I decided to implement a internal feature with QtCore.QObjects so I could use the signals/slots systems, and it seems that there is some place in th

Re: [PyQt] What happens there's many signals in PyQt?

2007-07-13 Thread Phil Thompson
On Friday 13 July 2007 3:52 pm, Carlos Scheidegger wrote: > Hello, > > I tracked down the issue on our application, and it seems it had to do > with the amount of connections installed in the entire system. I decided to > implement a internal feature with QtCore.QObjects so I could use the >

Re: [PyQt] What happens there's many signals in PyQt?

2007-07-13 Thread Carlos Scheidegger
> Probably PyQt. If you can produce a simple example that demonstrates the > behaviour then I'll have a look at it. > > Phil Ok, this simple example seems to trigger it. I've simply taken tutorial 5 and added many superfluous QtCore.QObjects and connections. Change line 36 to "generate_many = Fa

[PyQt] QDoubleValidator

2007-07-13 Thread Katja Wegner
Hello, I use PyQt 4.2.1 under Linux and 4.2.2 under Windwos. The QDoubleValidator does not work. I set a range of 0.0 to 1.0 but the user can still enter what ever he wants in a QLineEdit and even negative values. Did anybody experience the same or know how to solve it (except writing my own)

Re: [PyQt] QDoubleValidator

2007-07-13 Thread Adam Tenderholt
Have you tried creating the validator first with edit as the last arguement instead of self: validator = QDoubleValidator(0.0, 1.0, 9, edit) edit.setValidator(validator) Adam On 7/13/07, Katja Wegner <[EMAIL PROTECTED]> wrote: Hello, I use PyQt 4.2.1 under Linux and 4.2.2 under Windwos. The Q

Re: [PyQt] What happens there's many signals in PyQt?

2007-07-13 Thread Phil Thompson
On Friday 13 July 2007 5:18 pm, Carlos Scheidegger wrote: > > Probably PyQt. If you can produce a simple example that demonstrates the > > behaviour then I'll have a look at it. > > > > Phil > > Ok, this simple example seems to trigger it. I've simply taken tutorial 5 > and added many superfluous Q

[PyQt] Newbie questions: Tray system and other stuff...

2007-07-13 Thread Gustavo A. Dí­az
Hi guys! I am new on this list, and new in the progamming world. I've started to develop an app. (OpenCoffee, http://opencoffee.lnxteam.org) using PyQT. I am newbie, but i am doing my homework and reading a lot about python and pyqt, which i did by now a lot of progress on my app ;) My questi