[PyQt] [SIP] is there a Qt5 example for SIP?

2013-07-06 Thread brett
integrated into the example, and as a beginner, I'm not sure how to take pyqtconfig out. Is there a Qt5 example for SIP? Thanks! Brett ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] [SIP] is there a Qt5 example for SIP?

2013-07-07 Thread brett
On Sat, 6 Jul 2013 07:30:43 -0700, br...@stottlemyer.com wrote: Hi Phil, I am trying to see if SIP will help me with a task I'm trying to solve. I started out by trying the More Complex C++ Example in the docs. However, I'm using Qt5, and the example is for Qt4. I see the pyqtconfig is

Re: [PyQt] [SIP] is there a Qt5 example for SIP?

2013-07-07 Thread brett
... Hi, Are you really compiling and linking all C++ files generated by SIP? D'oh! No I wasn't. Thanks for pointing me in the right direction (and ending the trail of random stuff I was trying). ___ PyQt mailing list

[PyKDE] eric3: Another installation glitch

2005-01-28 Thread Brett Hunt
control over this one :( ) Thanks, Brett Hunt __ http://mats.imk.fraunhofer.de/mailman/listinfo/pykde_ ___ PyKDE mailing listPyKDE@mats.imk.fraunhofer.de http://mats.imk.fraunhofer.de/mailman/listinfo/pykde

Re: [PyKDE] eric3: Another installation glitch

2005-01-31 Thread Brett Hunt
That is the latest snapshot of the 3 series. I can't upgrade to the 4.x versions because I'm stuck using python 2.2. PyKDE didn't complain when I built. Does it check? Is there a possible workaround or something? I'd really like to use eric and I'm willing to try debugging a little bit.

Re: [PyKDE] eric3: Another installation glitch

2005-01-31 Thread Brett Hunt
-1.4 PyQt-x11-gpl-3.13 PyKDE-3.11.3.tar.gz qt-3.1.2-13.4 python-2.2.3-5 (I don't have control over this one :( ) Thanks, Brett Hunt That is a bug which will be fixed in the 3.6.1 release. Detlev ___ PyKDE mailing listPyKDE@mats.imk.fraunhofer.de

Re: [PyKDE] eric3: Another installation glitch

2005-01-31 Thread Brett Hunt
/installed by me) PyQt x11-gpl-3.13 (compiled/installed by me) PyKDE 3.11.3 (compiled/installed by me) eric 3.6.1 (installed by me) KDE 3.1.3-6.6 (part of distro) Bicycle Repair Man CVS-20041120 (from the eric3 'Help-Versions') Thanks, Brett Detlev Offenbach wrote: That is a bug which

Re: [PyKDE] eric3: Another installation glitch

2005-01-31 Thread Brett Hunt
That worked. Thanks. Should I make this a permanent thing or can it be fixed in eric3? Or is my kde/python/qt combo just too broken? -- Brett Detlev Offenbach wrote: Try starting it with the environment variable e3nokde set to 1, i.e. e3nokde=1 eric3 and see, if it still fails. Detlev Am

[PyQt] QtNetwork import problem with PyQt 4.8 and 4.8.1

2010-11-09 Thread Brett Stottlemyer
this problem? Suggestions on how to fix it? Thanks, Brett ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] QtNetwork import problem with PyQt 4.8 and 4.8.1

2010-11-09 Thread Brett Stottlemyer
The PyQt v4.8 Windows installers include the OpenSSL DLLs which QtNetwork.pyd is linked against, so you probably need to add them to the list of things that py2exe should bundle. Phil That was it. Thanks! For anyone else, the files needed are libeay32.dll and ssleay32.dll. Brett

[PyQt] How does sip.setapi(QString,2) work with translations?

2010-11-27 Thread Brett Stottlemyer
this: qApp.translate(test,Internationalize %d)%42 Thanks, Brett ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

[PyQt] Unable to get QDeclarativeImageProvider to work

2010-12-15 Thread Brett Stottlemyer
), but in Python. This is 4.8.1 pyqt and Python 2.6, btw. I've gotten other QML examples to work. TIA, Brett from PyQt4.QtCore import * from PyQt4.QtGui import * from PyQt4.QtDeclarative import * qmlFile = test.qml class ColorImageProvider(QDeclarativeImageProvider): def __init__(self

Re: [PyQt] Bug in setEventFilter?

2011-03-21 Thread Brett Stottlemyer
Phil, Great support. Appears to work well. Brett -Original Message- From: Phil Thompson [mailto:p...@riverbankcomputing.com] Sent: Saturday, March 19, 2011 10:44 AM To: Brett Stottlemyer Cc: pyqt@riverbankcomputing.com Subject: Re: [PyQt] Bug in setEventFilter? On Sat, 19 Mar 2011 10

[PyQt] Missing method in QGLShaderProgram?

2011-04-02 Thread Brett Stottlemyer
Phil, I am trying to convert the textures.pyw example to run using shaders like the newer version of the example in Qt. However, I've hit a problem in that the setAttributeArray method of QGLShaderProgram used in the example is not available in PyQt. Is this a bug? Brett

Re: [PyQt] Issue with pyqtSignal

2011-11-04 Thread Brett Stottlemyer
If the functions you are connecting are in python, you can use PyQt_PyObject as the type. That just passes the reference around, and everything works fine. I'm not sure about a good solution if you need to handle the type in C/C++. Brett -Original Message- From: pyqt-boun