Re: [PyQt] Regression in sip 4.7.4 "sip: QPixmap has not been defined"

2008-04-06 Thread Adam C Powell IV
On Mon, 2008-04-07 at 00:49 +0100, Phil Thompson wrote: > On Sunday 06 April 2008, Adam C Powell IV wrote: > > On Wed, 2008-04-02 at 09:48 -0400, Adam C Powell IV wrote: > > > On Tue, 2008-03-25 at 09:11 +, Phil Thompson wrote: > > > > On Monday 24 March 2008, Adam C Powell IV wrote: > > > > >

Re: [PyQt] SIP newcomer questions/complaints

2008-04-06 Thread Phil Thompson
On Monday 07 April 2008, Kevin Watters wrote: > I just started looking into SIP this weekend (I'm trying to wrap the > wxWidgets library--has this been attempted before?), I'd be very surprised! > and I had a couple > thoughts and questions. > > 1) The docs make no mention of the fact that you c

[PyQt] SIP newcomer questions/complaints

2008-04-06 Thread Kevin Watters
I just started looking into SIP this weekend (I'm trying to wrap the wxWidgets library--has this been attempted before?), and I had a couple thoughts and questions. 1) The docs make no mention of the fact that you cannot use keyword arguments when calling C functions. This was a surprising limitat

[PyQt] PyKDE4 on FreeBSD, first impressions

2008-04-06 Thread Danny Pansters
Hi folks, and Jim (CC'd because lately it seems that seeing my post on the ML might take a few days, hope you don't mind), I started porting PyKDE4 to FreeBSD, using the kdelibs4 port from our "area 51" testing repo where all KDE stuff goes, most prominently the KDE4 ports. For now I have only

Re: [PyQt] Regression in sip 4.7.4 "sip: QPixmap has not been defined"

2008-04-06 Thread Phil Thompson
On Sunday 06 April 2008, Adam C Powell IV wrote: > On Wed, 2008-04-02 at 09:48 -0400, Adam C Powell IV wrote: > > On Tue, 2008-03-25 at 09:11 +, Phil Thompson wrote: > > > On Monday 24 March 2008, Adam C Powell IV wrote: > > > > Greetings, > > > > > > > > I am trying to build the Salomé suite f

Re: [PyQt] Regression in sip 4.7.4 "sip: QPixmap has not been defined"

2008-04-06 Thread Adam C Powell IV
On Wed, 2008-04-02 at 09:48 -0400, Adam C Powell IV wrote: > On Tue, 2008-03-25 at 09:11 +, Phil Thompson wrote: > > On Monday 24 March 2008, Adam C Powell IV wrote: > > > Greetings, > > > > > > I am trying to build the Salomé suite from > > > http://www.salome-platform.org/ which built just fi

Re: [PyQt] ANN: new eric4 4.2 snapshot available

2008-04-06 Thread Gustavo A. Díaz
Hi I've downloaded and installed this snapshot, when i try to access to Preferences i got: "Cancelled (core dumped)" Cheers. 2008/4/6, Detlev Offenbach <[EMAIL PROTECTED]>: > > Hi, > > this is to inform you about the immediate availability of a new eric 4.2 > snapshot. Next to fixing bugs it inc

[PyQt] ANN: new eric4 4.2 snapshot available

2008-04-06 Thread Detlev Offenbach
Hi, this is to inform you about the immediate availability of a new eric 4.2 snapshot. Next to fixing bugs it includes these changes. - added double click support for attributes and globals - reorganized the configuration dialog some more - added various startup configuration options (applicatio

[PyQt] How to use the QtGui.QImage.setColorTable()?

2008-04-06 Thread Grissiom
Hi all, I have to bother you againRun this script: #coding = utf-8 # file_name = test2.py from PyQt4 import QtCore, QtGui im = QtGui.QImage(3, 3, QtGui.QImage.Format_Indexed8) print QtGui.qRgb(0, 0, 0), QtGui.qRgb(255, 255, 255), QtGui.qRgb(255, 0, 0) b = QtGui.qRgb(0, 0, 0) w = QtGui.qRgb(

Re: [PyQt] dbus and PyKDE

2008-04-06 Thread Adeodato Simó
* Detlev Offenbach [Sat, 05 Apr 2008 12:40:35 +0200]: > Due to the fact that the Oxygen theme is the standard KDE4 theme, the fact > that PyKDE4 doesn't show the menus will be a really big drawback for it and > might lead to the point, that only few applications will be written (or a lot > of c

[PyQt] character missing in the parameter list

2008-04-06 Thread Grissiom
http://www.riverbankcomputing.com/static/Docs/PyQt4/html/qimage.html#setColor in the QImage.setColor method, missing '*olorValue' *-- Cheers, Grissiom ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo

[PyQt] document error

2008-04-06 Thread Grissiom
In: http://www.riverbankcomputing.com/static/Docs/PyQt4/html/qcolor.html#QColor It seems that you mistook the QColor.__init__ (*self*, Qt.GlobalColor *color *) reference for the QColor.__init__ (*self*) reference. Check it please ;) -- Cheers, Grissiom ___