Re: [PyKDE] UDSEntryList (QValueList) not implemented in PyQt?

2006-05-18 Thread Aurélien Gâteau
this: ... newItems, type 'list' newItems, type 'list' newItems, type 'list' newItems, type 'list' newItems, type 'list' ... -- Aurélien Gâteau - [EMAIL PROTECTED] Dental-on-line 23 rue du Départ 75014 PARIS - FRANCE ___ PyKDE mailing listPyKDE

[PyKDE] Using kabc from Python

2006-05-03 Thread Aurélien Gâteau
the sip files from latest snapshot to my source of PyKDE 3.11.3 and rebuild it? Regards, -- Aurélien Gâteau - [EMAIL PROTECTED] Dental-on-line 23 rue du Départ 75014 PARIS - FRANCE ___ PyKDE mailing listPyKDE@mats.imk.fraunhofer.de http

Re: [PyKDE] Memory leak with QDialog

2006-02-28 Thread Aurélien Gâteau
Le Lundi 27 Février 2006 11:20, Phil Thompson a écrit : You don't say what versions you are using. I think this was fixed in v3.15 - at least I don't see any leak in current snapshots. Oups, my bad. I'm using 3.13. Good to know it has been fixed. -- Aurélien Gâteau - [EMAIL PROTECTED] Dental

[PyKDE] Memory leak with QDialog

2006-02-27 Thread Aurélien Gâteau
this. If there is a better solution, let me know. -- Aurélien Gâteau - [EMAIL PROTECTED] Dental-on-line 23 rue du Départ 75014 PARIS - FRANCE import os import sys from qt import * _statmFile=None def logMemoryUsage(msg): global _statmFile if not _statmFile: name=os.path.join(/proc, str

Re: [PyKDE] BlackAdder linux installation didn't work

2004-01-07 Thread Aurélien Gâteau
Le Mercredi 7 Janvier 2004 08:51, Laurent Claustre a écrit : _X11TransSocketINETConnect: Can't get address for pclc Can you ping pclc ? -- Aurélien Gâteau - Dental On Line ___ PyKDE mailing list[EMAIL PROTECTED] http://mats.imk.fraunhofer.de

Re: [PyKDE] Resizing a window with an image in it

2003-10-27 Thread Aurélien Gâteau
Le Lundi 27 Octobre 2003 09:13, Derek Fountain a écrit : I want the user to be able to push the window smaller, then have the image rescaled smaller. What do I need to enable/disable to make this happen? Have you tried to set the minimum size to (0,0)? You can do it with setMinimumSize(0,0).

Re: [PyKDE] How to test if two PyQt instances wrap the same C++ object?

2003-10-22 Thread Aurélien Gâteau
Le Mercredi 22 Octobre 2003 10:19, Gerard Vermeulen a écrit : if ( object == (QObject *)axis(yLeft) ) // HOW TO THIS IN PYTHON? Not sure at all, but maybe this will do: if object is axis(yLeft): Hope this helps, Aurélien ___ PyKDE

Re: [PyKDE] pyuic3 and custom widgets

2003-08-28 Thread Aurélien Gâteau
Le Mercredi 27 Août 2003 22:53, Christian Bird a écrit : Has anyone tried to use pyuic3 on ui files that include custom widgets? In the past if you created a customwidget in designer and specified mycustomwidget.h as the include file, then pyuic would generate: from mycustonwidget import