Re: [PyQt] QVariantHash bug in PyQt 4.5.1 (+patch)

2009-07-15 Thread Christoph Burgmer
This is what I get: $ python Python 2.5.4 (r254:67916, Feb 17 2009, 20:16:45) [GCC 4.3.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> from PyQt4.QtCore import QVariant >>> QVariant({'a': 1}).toMap() {}

[PyQt] Compiling PyQt4 with $ORIGIN

2009-07-15 Thread Chris Hills
In $QTDIR/mkspecs/common/g++.conf I have the following line:- QMAKE_RPATH = -Wl,-enable-new-dtags -Wl,-rpath,\\\ORIGIN:\\\ORIGIN/../lib:/usr/local/Trolltech/Qt-4.5.2/lib -Wl,-rpath, This works fine when compiling regular C++ applications, and results in binaries/libraries that have "

[PyQt] Implementing Qt-Designer Widgets in Main Window and lay them out

2009-07-15 Thread Michael Adolph
Hi everybody, I've got a problem with Qt-Designer and Python. It's pretty basic but I can't find any solution. I designed to forms in Qt-Designer and I'm writing a QMainWindow class in Python. The widgets are imported and should be layouted. My Problem ist, that both widgets are shown one over

Re: [PyQt] Implementing Qt-Designer Widgets in Main Window and lay them out

2009-07-15 Thread David Boddie
On Wed Jul 15 15:46:30 BST 2009, Michael Adolph wrote: > I've got a problem with Qt-Designer and Python. It's pretty basic but I > can't find any solution. > > I designed to forms in Qt-Designer and I'm writing a QMainWindow class in > Python. The widgets are imported and should be layouted. My Pr

Re: [PyQt] Small paid development task

2009-07-15 Thread Jason H
Well no one jumped at my offer. I am curious, what would it take? - Original Message From: Jason H To: pyqt@riverbankcomputing.com Sent: Tuesday, July 14, 2009 4:58:29 PM Subject: [PyQt] Small paid development task I mentioned last week that I was looking to get some of the Kinetic

[PyQt] Help with threads and signalling

2009-07-15 Thread Troy Unrau
I'm running some test code to get comfortable with signalling across threads in PyQt4. Basically, when I run it (PyQt4.5.2 for Python 2.6 on windows) I get the error: QObject::killTimer: timers cannot be stopped from another thread Code pasted below, and attached (for whitespace preservation) --