Re: [PyQt] Help installing PyQt on Linux

2009-08-10 Thread Aleksandar Nedeljkovic
Unfortunately, me again. It seems that there wasn't Qt on my computer. When I try to install it, configure part goes fine, but when I try to 'make', Linux returns to me something like this: In file included from ../../include/QtCore/qeventloop.h:1, from ../../include/QtCore/../../

[PyQt] upgrade pyqt 4.4.4 to 4.5.4 problems

2009-08-10 Thread Linos
Hello, i have upgraded my linux development machine from pyqt 4.4.4 to 4.5.4 (and sip 4.7.9 to 4.8.2) and i am getting any errors with my application. My Qt version it is 4.5.2 but errors are related to pyqt version because if i downgrade pyqt all works, well obviously can be problems with my

Re: [PyQt] Help installing PyQt on Linux

2009-08-10 Thread Hans-Peter Jansen
Am Montag, 10. August 2009 schrieb Aleksandar Nedeljkovic: > Unfortunately, me again. > It seems that there wasn't Qt on my computer. When I try to install it, > configure part goes fine, but when I try to 'make', Linux returns to me > something like this: > > In file included from ../../include/Qt

Re: [PyQt] PyQt v4.6 and SIP v4.9 Snapshots

2009-08-10 Thread Jason H
configure.py -p win32-g++ mingw32-make ... makefile:26: warning: ignoring old commands for target `.c.o' g++ -mthreads -Wl,-enable-stdcall-fixup -Wl,-enable-auto-import -Wl,-enable-runtime-pseudo-reloc -shared -Wl,-subsystem,console -Wl,-s -o sip.pyd siplib.o apiversions.o descriptors.o qtlib.o

[PyQt] inheriting from QObject and dbus.service.Object

2009-08-10 Thread Marcos Dione
I'm trying to export some class' methods via DBus. this class is already a subclass of QObject, so I thought that simply adding inheritance on dbus.service.Object would work. but it doesn't; I get this error: In [2]: import dbus.service In [5]: from PyQt4.QtCore import QObject In [8]: cla

[PyQt] Setting a cookie for QtWebKit Example

2009-08-10 Thread Noah Gift
Hi, Does anyone have an example of how to set either accept all cookies for a QtWebKit Widget or manually set a cookie? Thanks, Noah ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

[PyQt] Re: Problem with QTimeLine

2009-08-10 Thread Victor Noagbodji
hi Juan, you don't get the first 0 value because it's the initial value. the frame hasn't changed yet. add this and you will see the initial frame value. print tl.currentFrame() cheers -- paul victor noagbodji ___ PyQt mailing listPyQt@riverba