Re: [PyQt] PyQt on OSX Snow Leopard notes

2009-09-15 Thread William Kyngesburye
I'm working on building off sip/pyqt now. In sipconfig.py, I find that the arch option for the makefiles is hardwired to default to "ppc i386", and the universal sdk to empty. Shouldn't these match how sip was configured? (ie what's in _pkg_config) Otherwise I need to insert those from

Re: [PyQt] PyQt on OSX Snow Leopard notes

2009-09-15 Thread Phil Thompson
On Tue, 15 Sep 2009 13:18:45 -0700, Celil Rufat wrote: > Just finished compiling the latest preview of Qt4.6 on Snow Leopard in 64 > bit without any major issues. > > http://qt.nokia.com/developer/qt-4.6-technology-preview#download-the-qt-4-1 > > Now, I am trying to do the same for PyQt4.6 with

Re: [PyQt] PyQt on OSX Snow Leopard notes

2009-09-15 Thread Celil Rufat
Just finished compiling the latest preview of Qt4.6 on Snow Leopard in 64 bit without any major issues. http://qt.nokia.com/developer/qt-4.6-technology-preview#download-the-qt-4-1 Now, I am trying to do the same for PyQt4.6 with the latest snapshot. I got through the configuration step by instal

[PyQt] eric4 with PySide support

2009-09-15 Thread Detlev Offenbach
Hi, the latest sources of eric4 in the repository contain support for PySide. This code is totally untested because I don't have PySide installed. Please somebody give it a try and send fixes back to me. Instructions for accessing the repository are given on the eric4 web site (http://eric-ide

Re: [PyQt] PyQt on OSX Snow Leopard notes

2009-09-15 Thread Phil Thompson
On Tue, 15 Sep 2009 10:50:38 -0500, William Kyngesburye wrote: > On Sep 13, 2009, at 6:12 AM, Phil Thompson wrote: > >> I've added a --use-arch option to PyQt's configure.py to tell it to >> use >> arch in the pyuic4 wrapper script. If there is a problem with >> /usr/bin/python then you should

Re: re[PyQt] sizable MDI in qteditor

2009-09-15 Thread Giorgio Luciano
Thank you so much david, I will try to do it :) I hope it works and in that case you saved my day Giorgio -- View this message in context: http://www.nabble.com/resizable-MDI-in-qteditor-tp25417204p25457132.html Sent from the PyQt mailing list archive at Nabble.com. ___

[PyQt] segfaults in sip getattr

2009-09-15 Thread Erik Janssens
Hi, I'm having segfaults in the sip getattr function. Apparently the code somewhere tries to resolve the '__dtor__' attribute. This appears to happen when a bunch of widgets get destructed. Nowhere in the code have custome __del__ or __dtor__ methods been implemented. Any idea on what is causi

[PyQt] Segfault in toPyObject with QVariant and QObject (4.5.4)

2009-09-15 Thread Florian Reinhard
This testcase causes a segfault in 4.5.4 works in 4.4.4 from PyQt4.QtCore import QVariant, QObject class Test (QObject): def __init__ (self,parent=None): super(Test,self).__init__ (parent) self.foo = 'bar' def uuu (self): print self.foo class Wrapper (QObject):

Re: [PyQt] PyQt on OSX Snow Leopard notes

2009-09-15 Thread William Kyngesburye
On Sep 13, 2009, at 6:12 AM, Phil Thompson wrote: I've added a --use-arch option to PyQt's configure.py to tell it to use arch in the pyuic4 wrapper script. If there is a problem with /usr/bin/python then you should run configure.py using /usr/bin/ python2.6 Now that I got compilation worki

Re: [PyQt] Qt Assistant is not showing any help file

2009-09-15 Thread David Boddie
On Tue Sep 15 04:29:41 BST 2009, Gabriel Reis wrote: > Does anybody have an idea of what is happening or can tell me where can I > find more documentation about configuring Qt Assistant? Because I imagine > that something is misconfigurated, because the help files exists, they just > only aren't b

Re: [PyQt] Unable to generate Python code.

2009-09-15 Thread Phil Thompson
On Tue, 15 Sep 2009 17:02:14 +0200, NFO MAKER wrote: > Hi!I have a problem with the Qt Designer, when trying to generate the code > from the ui I have created I get the following error: > > "Code generation failed > Unable to launch C:/Python31/Lib/site-packages/PyQt4/.\uic" > > I have trie

[PyQt] Unable to generate Python code.

2009-09-15 Thread NFO MAKER
Hi!I have a problem with the Qt Designer, when trying to generate the code from the ui I have created I get the following error: "Code generation failed Unable to launch C:/Python31/Lib/site-packages/PyQt4/.\uic" I have tried to reinstall both Qt Designer, Qt and Python several times without

Re: [PyQt] PyQt on OSX Snow Leopard notes

2009-09-15 Thread William Kyngesburye
On Sep 14, 2009, at 6:16 AM, Phil Thompson wrote: PyQt --use-arch - no good. The config stage uses the default arch, so ends up trying to compile qtdirs with the default 64bit architecture, which of course fails. Maybe it should use the SIP arch info for config test compilation? Yes - will

[PyQt] QTableWidget: numeric sort

2009-09-15 Thread Bernard Van Der Stichele
Hello list members, The row sorting mechanism triggered when clicking on a column header functions by treating cell contents as strings - even if the cell contents were formatted as floats or integers. Is there an intended mechanism designed to allow the sort to be customized? If so, what is i

Re: [PyQt] Qt Assistant is not showing any help file

2009-09-15 Thread Alan Franzoni
I think this issue has to do with the fact that Qt Assistant now uses .qch files, which are indexed-and-compressed html files or something like that. Doxygen got some support for qch lately, but I haven't found a simple way to convert them, and I was going to ask that very question... -- Alan Fr