Re: [PyKDE] PyQt4 20060313 pyqtconfig.py problem

2006-03-14 Thread Phil Thompson
On Tuesday 14 March 2006 6:08 am, Gerard Vermeulen wrote: Phil, the most recent PyQt4 pyqtconfig.py defines QtAssistantModuleMakefile before QtNetworkModuleMakefile. This leads to this traceback: Traceback (most recent call last): File configure.py, line 901, in ? main() File

Re: [PyKDE] More on QTreeWidgetItemIterator

2006-03-14 Thread Phil Thompson
On Tuesday 14 March 2006 7:14 am, Emanuele Santos wrote: Phil How do I do to get the QTreeWidgetItem pointed by the QTreeWidgetItemIterator? I didn't see a suitable method or property in QTreeWidgetItemIterator for this. Looks like I'll have to invent a new method as Python doesn't support

Re: [PyKDE] QTimers on MacOSX?

2006-03-14 Thread Phil Thompson
On Tuesday 07 February 2006 1:00 pm, Tobias Rundström wrote: Hello, I have just got PyQT4 to work on MacOSX tiger. It was required to compile qt4 with -no-framework, then I had no problems with it. It should now build with both framework and no-framework configurations. But, it seems like

Re: [PyKDE] QtAssistant problem

2006-03-14 Thread Guest007
В сообщении от 14 марта 2006 08:54 Emanuele Santos написал(a): Hi all, I got the latest version of sip and PyQt4 (20060313) and I can't compile QtAssistant on Windows. When I excluded it from makefile, everything works fine. I'm attaching the output of running make command. Actually, with

[PyKDE] Re: Auto-disconnection of signals broken?

2006-03-14 Thread Giovanni Bajo
Phil Thompson [EMAIL PROTECTED] wrote: Using PyQt snapshot-20051212 and SIP snapshot-20051212: --- from qt import * app = QApplication([]) o = QObject(None) w = QWidget(None) QObject.connect(o, PYSIGNAL(FOO), w.update)

[PyKDE] Re: Auto-disconnection of signals broken?

2006-03-14 Thread Giovanni Bajo
Giovanni Bajo [EMAIL PROTECTED] wrote: Phil, the testcase is indeed fixed, but not the original bug in my application. I will try reducing a new testcase for the problem, That was faster than expected: == from qt import * app = QApplication([]) o =

[PyKDE] problem with pyqt

2006-03-14 Thread linux
hello i'm a python developper and i want to build GUI applications that uses qt gui (pyqt) but i have a serious problem that is whene i code an application it can't be used by other personnes because the qt module is not present (from qt import *) so that generates an error so other

Re: [PyKDE] problem with pyqt

2006-03-14 Thread V. Armando Sole
At 14:29 14/03/2006 +0100, [EMAIL PROTECTED] wrote: hello i'm a python developper and i want to build GUI applications that uses qt gui (pyqt) but i have a serious problem that is whene i code an application it can't be used by other personnes because the qt module is not present (from qt

[PyKDE] also about pyqt

2006-03-14 Thread linux
i have downloaded cx-freeze and i have found that lines in the readme file Assume that you have a script called hello.py containing the line print 'Hello World!'. To freeze this script you would issue the following commands: FreezePython --install-dir dist hello.py This would create the

Re: [PyKDE] also about pyqt

2006-03-14 Thread Diez B. Roggisch
dist/hello dist/pcre.so dist/pwdmodule.so dist/strop.so please explain how to build an rpm-package from that files I've got debian, I don't need no RPM. The purpose of cx is to create a distribution-independent format, by bundling executables and libs and the like. It is _not_ there to

Re: [PyKDE] also about pyqt

2006-03-14 Thread Roberto Alsina
i have downloaded cx-freeze and i have found that lines in the readme file Assume that you have a script called hello.py containing the line print 'Hello World!'. To freeze this script you would issue the following commands: FreezePython --install-dir dist hello.py This would create

Re: [PyKDE] PyQt4: Problems with QImage.loadFromData(data)

2006-03-14 Thread Stephan Heuel
Dear all I have now a working example, the main point is to correctly convert the string to PIL and import it into PyQt: s = im.convert(RGB).tostring(jpeg,RGB) image.loadFromData(QtCore.QByteArray(s)) A complete working example is attached below. Cheers Stephan

Re: [PyKDE] QtAssistant problem

2006-03-14 Thread Phil Thompson
On Tuesday 14 March 2006 5:54 am, Emanuele Santos wrote: Hi all, I got the latest version of sip and PyQt4 (20060313) and I can't compile QtAssistant on Windows. When I excluded it from makefile, everything works fine. I'm attaching the output of running make command. Actually, with the

Re: [PyKDE] More on QTreeWidgetItemIterator

2006-03-14 Thread Emanuele Santos
I prefer value() or maybe item(). I've look into other qt iterator classes and there is not a standard.Anyway, whatever you decided it will be fine for me :-)Emanuele.On 3/14/06, Phil Thompson [EMAIL PROTECTED] wrote: On Tuesday 14 March 2006 7:14 am, Emanuele Santos wrote: Phil How do I do to