Re: [PyQt] Custom C++ types as signal arguments

2013-09-28 Thread David Boddie
On 28 September 2013 14:29:03, Phil Thompson wrote: > On Tue, 24 Sep 2013 13:24:05 + (UTC), David Boddie > wrote: > > My sip wrapper starts with a typedef for the StringList type and > > %MappedType > > implementations for std::string and StringList: > > Remove this typedef... > > > type

Re: [PyQt] Custom C++ types as signal arguments

2013-09-28 Thread Phil Thompson
On Tue, 24 Sep 2013 13:24:05 + (UTC), David Boddie wrote: > I'm running into problems with sip and custom signal arguments. I'm > probably > doing something wrong, and I'm hoping that someone might be able to put me > on > the right track. > > I've written a class with this definition: > >

Re: [PyQt] Upcoming Release of PyQt v5.1

2013-09-28 Thread Phil Thompson
On Sat, 28 Sep 2013 12:54:08 +0200, Tomas Sobota wrote: > A couple of days ago I downloaded and compiled PyQt-gpl-5.1 > -snapshot-597681874226 on my Linux Mint Debian Edition box. > > The file qmlscene/pluginloader.cpp failed to compile the sentence: > QVector ucs4 = py_plugin_dir.toUcs4(); >

[PyQt] ANN: eric 5.3.7 released

2013-09-28 Thread Detlev Offenbach
Hi, I just uploaded eric 5.3.7. It is a maintenance release fixing some bugs. It is available via the eric web site. http://eric-ide.python-projects.org/index.html Regards, Detlev -- *Detlev Offenbach* det...@die-offenbachs.de ___ PyQt mailing list

[PyQt] ANN: eric 4.5.15 released

2013-09-28 Thread detlev
Hi, I just uploaded eric 4.5.15. It is a maintenance release fixing some bugs. It is available via the eric web site. http://eric-ide.python-projects.org/index.html Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing list

[PyQt] Upcoming Release of PyQt v5.1

2013-09-28 Thread Tomas Sobota
A couple of days ago I downloaded and compiled PyQt-gpl-5.1 -snapshot-597681874226 on my Linux Mint Debian Edition box. The file qmlscene/pluginloader.cpp failed to compile the sentence: QVector ucs4 = py_plugin_dir.toUcs4(); It looked like QVector was not defined, so I fixed the error includ

[PyQt] Upcoming Release of PyQt v5.1

2013-09-28 Thread Phil Thompson
The current PyQt5 snapshot is a release candidate for v5.1. This includes... - full support for integration with QML and Quick2 - support for Qt v5.1 including the QtSensors and QtSerialPort modules - an (almost) complete set of OpenGL 2.0 and OpenGL ES2 bindings - support for cross-compilation.

[PyQt] PyQt and gevent

2013-09-28 Thread Matias Guijarro
Hi all, I am using gevent within PyQt4 applications and I am looking after the best way to integrate gevent and Qt. I used to start a QTimer to run the gevent loop for a short period of time every 10 milliseconds, interleaving Qt and gevent event loops in time ; it's a very simple approach,