Re: [PyQt] PyQt4 logging framework

2010-04-19 Thread NARCISO, Rui
Hey, is this code available somewhere for download ? __ Rui NARCISO Data for Handling Qualities Aerodynamics Department - EDGADY  -  M01 N368 AIRBUS Operations S.A.S. Phone:  +33 (0)5 61 18 10 77 Fax: +33 (0)5 61 93 99 80  Before printing, think

[PyQt] DLL Problem with PyQt-Py3.1-gpl-4.7.3-1.exe

2010-04-19 Thread Michael Collins
Hey, So I just upgraded my pyqt this weekend to 4.7.3-1 under Python 3.1. It seems as though there is an issue loading the QtCore,QtGui,etc DLL's post-install. I did uninstall the old version and the problem persisted. The Python exception thrown is: DLL Load Failed: The specified procedure could

[PyQt] How to disable delete button on forms

2010-04-19 Thread Jothybasu K Selvaraj
Hi all, How can I disable the delete button on a form? Any hints? Thanks, Jothy ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] How to disable delete button on forms

2010-04-19 Thread Jothybasu K Selvaraj
Sorry, I meant close button. Thanks, Jothy On Mon, Apr 19, 2010 at 4:24 PM, Jothybasu K Selvaraj wrote: > Hi all, > > How can I disable the delete button on a form? > > Any hints? > > Thanks, > > Jothy > ___ PyQt mailing listPyQt@riverbankcomputin

Re: [PyQt] DLL Problem with PyQt-Py3.1-gpl-4.7.3-1.exe

2010-04-19 Thread Scott Ballard
I noticed this issue when I've installed the 4.7.x releases under Python 2.6. When compared to the 4.6.x releases, the directory structure has changed and all of the DLLs have been moved to a subdirectory instead of the root. There was a thread that described copying the QtCore and QtGui DLLs to

Re: [PyQt] DLL Problem with PyQt-Py3.1-gpl-4.7.3-1.exe

2010-04-19 Thread Phil Thompson
On Mon, 19 Apr 2010 09:00:54 -0700, Scott Ballard wrote: > I noticed this issue when I've installed the 4.7.x releases under Python > 2.6. When compared to the 4.6.x releases, the directory structure has > changed and all of the DLLs have been moved to a subdirectory instead of > the root. There w

Re: [PyQt] How to disable delete button on forms

2010-04-19 Thread Nick Gaens
Eum.. What "close" button? Are you using QtDesigner or something? Show us what you're doing by providing some code. Nick On Mon, Apr 19, 2010 at 5:25 PM, Jothybasu K Selvaraj wrote: > Sorry, I meant close button. > > Thanks, > > Jothy > > > On Mon, Apr 19, 2010 at 4:24 PM, Jothybasu K Selvaraj

Re: [PyQt] PyQt4 logging framework

2010-04-19 Thread Matt Chambers
I wish. I can put in a request to do so, but, its often a long process to get legal approval. On 04/19/10 01:11, NARCISO, Rui wrote: Hey, is this code available somewhere for download ? __ Rui NARCISO Data for Handling Qualities Aerodynamics Dep

Re: [PyQt] pausing and resuming QThread tasks

2010-04-19 Thread Scott Frankel
Hi Stefano, My working example code is attached. Glad you're finding it useful. Scott #!/usr/bin/env python import sys, os from os.path import join, getsize from PyQt4 import QtCore, QtGui #--- # class #--

Re: [PyQt] DLL Problem with PyQt-Py3.1-gpl-4.7.3-1.exe

2010-04-19 Thread Scott Ballard
Phil, do you mind posting the PATH env var from your test machine? I'm curious to see how it matches up to mine. I installed with Admin privileges. -Scott > On Mon, 19 Apr 2010 09:00:54 -0700, Scott Ballard > wrote: >> I noticed this issue when I've installed the 4.7.x releases under Python >>

[PyQt] Overpainting example does not work

2010-04-19 Thread Mads Ipsen
Hey, The overpainting example does not work on my computer - no bubbles nor text is painted on top of the OpenGL scene. Anybody that can confirm this? Best regards, Mads -- +-+ | Mads Ipsen, Scientific developer

Re: [PyQt] DLL Problem with PyQt-Py3.1-gpl-4.7.3-1.exe

2010-04-19 Thread Phil Thompson
On Mon, 19 Apr 2010 11:23:36 -0700, "Scott Ballard" wrote: > Phil, do you mind posting the PATH env var from your test machine? I'm > curious to see how it matches up to mine. I installed with Admin > privileges. > > -Scott The first component is... C:\Python31\Lib\site-packages\PyQt4\bin ...t

Re: [PyQt] DLL Problem with PyQt-Py3.1-gpl-4.7.3-1.exe

2010-04-19 Thread Phil Thompson
On Mon, 19 Apr 2010 14:05:04 -0700, Glenn Linderman wrote: > On 4/19/2010 9:20 AM, Phil Thompson wrote: >> On Mon, 19 Apr 2010 09:00:54 -0700, Scott Ballard >> wrote: >> >>> I noticed this issue when I've installed the 4.7.x releases under Python >>> 2.6. When compared to the 4.6.x releases, t

[PyQt] SIP: name collision for ANY

2010-04-19 Thread Josh Knox
sip.h has a "#define ANY void". I'm trying to build a binding for an OpenSceneGraph Qt widget. In some OSG header they use "ANY" as an element in an enum. When trying to build the binding, which includes the header with the ANY enum it dies with: error: expected identifier before ‘void’ T

Re: [PyQt] SIP: name collision for ANY

2010-04-19 Thread Phil Thompson
On Mon, 19 Apr 2010 17:25:47 -0400, Josh Knox wrote: > sip.h has a "#define ANY void". > > I'm trying to build a binding for an OpenSceneGraph Qt widget. In some > OSG header they use "ANY" as an element in an enum. > > When trying to build the binding, which includes the header with the ANY >

Re: [PyQt] Overpainting example does not work

2010-04-19 Thread David Boddie
On Mon Apr 19 20:55:32 BST 2010, Mads Ipsen wrote: > The overpainting example does not work on my computer - no bubbles nor > text is painted on top of the OpenGL scene. Anybody that can confirm this? Can you give some details about your system? In particular, it would be interesting to know what

[PyQt] JavaScript Python Proxy

2010-04-19 Thread Albert Cervera i Areny
In case someone is interested, we published some interesting code that allows python code to interact with JavaScript using proxies. The idea is pretty simple and creates a Python proxy object around a JavaScript object. It uses PyQt + WebKit. It's not documented nor being mantained at the mome

Re: [PyQt] DLL Problem with PyQt-Py3.1-gpl-4.7.3-1.exe

2010-04-19 Thread Scott Ballard
Phil, I investigated the DLL problem and found the following. Still not sure what is causing it though. I tested 2 different PyQt installers under Windows 7 64-bit, uninstalling each before testing the other. I made a clean PATH env var to just PyQt and Python. -- PyQt-Py2.6-gpl-4.7-1.exe  -

Re: [PyQt] DLL Problem with PyQt-Py3.1-gpl-4.7.3-1.exe

2010-04-19 Thread Philippe Crave
I have same problem as Michael with the latest pyqt on 2 configurations: python 26 / XP python 26 / Vista in the path (1rst position), I have C:\Python26\Lib\site-packages\PyQt4\bin also I get the "DLL Load Failed: The specified procedure could not be found." is there a way to download older pyqt