Re: [PyQt] ANN PyQt v4.5, SIP v4.8 Released

2009-06-05 Thread Gerard Vermeulen
On Fri, 05 Jun 2009 13:45:42 +0100 Phil Thompson wrote: > PyQt v4.5 and SIP v4.8 have been released and are available from the > usual download pages. > > Highlights of the new PyQt release include support for Python v3 and > Qt v4.5.1, and a new Pythonic API for connecting signals and slots. >

[PyQt] Re: PyKDE-3.16.2 build fails using sip-3.8

2009-06-05 Thread Rex Dieter
Rex Dieter wrote: > Phil Thompson wrote: >> On Thu, 21 May 2009 12:43:40 -0500, Rex Dieter >> wrote: >>> Just started prepping updating the stack to get ready for kde-4.3 >> goodness, >>> and all went well with sip, PyQt, PyQt4, kdebindings-4.2.85, >>> but...venerable >>> PyKDE-3.16.2 left me wit

Re: [PyQt] QSettings.registerFormat unavailable in PyQt4?

2009-06-05 Thread Giovanni Bajo
On Sat, 6 Jun 2009 01:19:39 +0200, David Boddie wrote: > On Fri Jun 5 19:25:01 BST 2009, Giovanni Bajo wrote: > >> On 6/4/2009 10:18 PM, Phil Thompson wrote: > >> > It can't be wrapped because of the nature of the function pointer >> > arguments - bad API design. >> >> Is it the same with Jambi?

Re: [PyQt] QSettings.registerFormat unavailable in PyQt4?

2009-06-05 Thread David Boddie
On Fri Jun 5 19:25:01 BST 2009, Giovanni Bajo wrote: > On 6/4/2009 10:18 PM, Phil Thompson wrote: > > It can't be wrapped because of the nature of the function pointer > > arguments - bad API design. > > Is it the same with Jambi? I think so - look here: http://doc.trolltech.com/qtjambi-4.5.0_0

Re: [PyQt] ANN PyQt v4.5, SIP v4.8 Released

2009-06-05 Thread Ian Jones
Thanks, can't wait to try them out. Is there any chance of getting 64bit binaries for windows posted on the website? I for one would be appreciate them. Ian On Fri, Jun 5, 2009 at 5:45 AM, Phil Thompson wrote: > PyQt v4.5 and SIP v4.8 have been released and are available from the usual > downlo

Re: [PyQt] QSettings.registerFormat unavailable in PyQt4?

2009-06-05 Thread Giovanni Bajo
On 6/4/2009 10:18 PM, Phil Thompson wrote: On Thu, 4 Jun 2009 13:00:23 -0700, Nate Reid wrote: According to QT's docs, this function has been available since Qt 4.1. I'm Python 2.5.4 on Windows32, and am using PyQt 4.4.3 built against Qt 4.5.1, and this function is not available in the QtCo

Re: [PyQt] QSortFilterProxyModel - AttributeError

2009-06-05 Thread Phil Thompson
On Fri, 05 Jun 2009 17:22:03 +0100, Mads Ipsen wrote: > Hi, > > The script below fails with > > PyQt-4.4.4 > qt-4.5.1 > > giving the error: > > Traceback (most recent call last): > File "simple.py", line 14, in > print proxy_model.sortColumn() > AttributeError: sortColumn > > Am I miss

[PyQt] QSortFilterProxyModel - AttributeError

2009-06-05 Thread Mads Ipsen
Hi, The script below fails with PyQt-4.4.4 qt-4.5.1 giving the error: Traceback (most recent call last): File "simple.py", line 14, in print proxy_model.sortColumn() AttributeError: sortColumn Am I missing something here? Best regards, Mads import sys from PyQt4 import QtCore, QtGui

[PyQt] ANN PyQt v4.5, SIP v4.8 Released

2009-06-05 Thread Phil Thompson
PyQt v4.5 and SIP v4.8 have been released and are available from the usual download pages. Highlights of the new PyQt release include support for Python v3 and Qt v4.5.1, and a new Pythonic API for connecting signals and slots. Windows installers are available for Python v2.6 and v3.0. Support fo

Re: [PyQt] Variant compare

2009-06-05 Thread Phil Thompson
On Fri, 05 Jun 2009 17:14:52 +0700, Alexandr N Zamaraev wrote: > Snippet: > Python 2.5.4 (r254:67916, Dec 23 2008, 15:10:54) [MSC v.1310 32 bit > (Intel)] on win32 > Type "help", "copyright", "credits" or "license" for more information. > >>> from PyQt4 import QtCore > >>> QtCore.QVariant(1) ==

[PyQt] Variant compare

2009-06-05 Thread Alexandr N Zamaraev
Snippet: Python 2.5.4 (r254:67916, Dec 23 2008, 15:10:54) [MSC v.1310 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> from PyQt4 import QtCore >>> QtCore.QVariant(1) == QtCore.QVariant(1) True >>> QtCore.QVariant(int) == QtCore.QVariant(int) Fa