Re: [PyKDE] PyQt4

2006-05-11 Thread Sreeram Kandallu
PyQt4 has been quite stable for many months now! I ported a reasonably large application from PyQt3 to PyQt4 in February, and the app has been very stable all thru! Regards Sreeram Frode Øijord wrote: Hi, I am currently developing an application using Qt 3.3.4 and PyQt 3.16. I would like to

[PyKDE] QPixmap toWinHBITMAP and fromWinHBITMAP

2006-03-06 Thread Sreeram Kandallu
Hi Phil [PyQt4 20060226, WinXP] The QPixmap class is lacking toWinHBITMAP and fromWinHBITMAP. I need these two methods in some low level code i'm writing. Can you add support for these methods in PyQt4? Thanks in Advance! Regards Sreeram signature.asc Description: OpenPGP digital signature

[PyKDE] QListWidget Designer bug

2006-03-05 Thread Sreeram Kandallu
i'm using Qt4.1.1 and PyQt4 20060226, and if i set the 'wrapping' property in Designer for a QListWidget, then the pyuic generated code contains: listWidget.setIsWrapping( True ) This causes an AttributeError as the correct method to use would be: listWidget.setWrapping( True ). Not sure if this

Re: [PyKDE] QtCore.Qt and QtGui.Qt

2006-03-02 Thread Sreeram Kandallu
Phil Thompson wrote: The short answer is that the Python objects are placed in the module corresponding to the C++ library in which they are implemented. Does this mean that Qt::WindowFlags and such will be moved from QtCore.Qt to QtGui.Qt? Regards Sreeram signature.asc Description:

Re: [PyKDE] QtCore.Qt and QtGui.Qt

2006-03-02 Thread Sreeram Kandallu
Giovanni Bajo wrote: Are you saying that this: --- from PyQt4.QtCore import * from PyQt4.QtGui import * dir(Qt) --- won't show the full Qt namespace, thus making PyQt4 unusable without the annoying QtCore/QtGui prefix in front of