Re: [PyQt] Eric3 issue: importing modules with the same name as an Eric module

2007-10-16 Thread Sundance
Hi Detlev, Okay, I can't reproduce the issue you're describing (although I have an idea what causes it). May I ask you to give me a simple test case and, if at all possible, a traceback? Thanks! As for my email, things have been progressing at last, only to see new hurdles surface, joy. I'll s

[PyQt] PyQt Installation Issues

2007-10-16 Thread Space Monkey
Hello I have downloaded and been trying to install PyQt 4.3.1, but I can't seem to make it to work... When I try to get it configured, I get this error, right from the start: [EMAIL PROTECTED] PyQt-x11-gpl-4.3.1]# python configure.py Determining the layout of your Qt installation... Error: Fa

Re: [PyQt] PyQt Installation Issues

2007-10-16 Thread Phil Thompson
On Tuesday 16 October 2007, Space Monkey wrote: > Hello > > I have downloaded and been trying to install PyQt 4.3.1, but I can't seem > to make it to work... When I try to get it configured, I get this error, > right from the start: > > [EMAIL PROTECTED] PyQt-x11-gpl-4.3.1]# python configure.py >

[PyQt] Re: PyQt Installation Issues

2007-10-16 Thread Space Monkey
Thank you for replying so fast. Here's what I got: [EMAIL PROTECTED] PyQt-x11-gpl-4.3.1]# python configure.py -w Determining the layout of your Qt installation... /usr/bin/qmake -o qtdirs.mk qtdirs.pro make -f qtdirs.mk lsbc++ -c -pipe -Wall -W -O2 -DQT_NO_DEBUG -DQT_SHARED -DQT_THREAD_SUPPORT

Re: [PyQt] Re: PyQt Installation Issues

2007-10-16 Thread Phil Thompson
On Tuesday 16 October 2007, Space Monkey wrote: > Thank you for replying so fast. > > Here's what I got: > > [EMAIL PROTECTED] PyQt-x11-gpl-4.3.1]# python configure.py -w > Determining the layout of your Qt installation... > /usr/bin/qmake -o qtdirs.mk qtdirs.pro > make -f qtdirs.mk > lsbc++ -c -pi

[PyQt] pickle error

2007-10-16 Thread Devon
Hi - I'm pickling a rather complex class (with internal circular references). Any thoughts as to what might cause this error to be thrown? I'll see if it can be reproduced with some test code I can post. Thanks ~ Devon v:( qt 4.3.2-snapshot-20070830 sip 4.7 pyqt 4.3 ) ---

[PyQt] Re: PyQt Install Issues

2007-10-16 Thread Space Monkey
"Looks like you need to use the --qmake flag to point to the Qt4 version of qmake." With the risk of making a fool out of myself, please, could you explain to me how to do that? I am supposed to be targeting a file, but what file exactly? Like I said, I just started using Linux. Many thanks

[PyQt] treeview

2007-10-16 Thread [EMAIL PROTECTED]
Hello can you explain me why if i do this : import sys from PyQt4 import QtCore, QtGui if __name__ == "__main__": app = QtGui.QApplication(sys.argv) model = QtGui.QDirModel() tree = QtGui.QTreeView() tree.setModel(model) tree.setWindowTitle(tree.tr("Dir View"))

[PyQt] Re: PyQt Install Issues

2007-10-16 Thread David Boddie
On Tue Oct 16 16:50:37 BST 2007, Space Monkey wrote: > "Looks like you need to use the --qmake flag to point to the Qt4 version of > qmake." > > With the risk of making a fool out of myself, please, could you explain to > me how to do that? > > I am supposed to be targeting a file, but what file

[PyQt] Re: PyQt Install Issues

2007-10-16 Thread Space Monkey
"Which distribution are you using? (This will help people give you more accurate advice.) David" I'm using Linux Mandriva 2008. - Be a better Heartthrob. Get better relationship answers from someone who knows. Yahoo! Answers - Check it out. _

[PyQt] Re: PyQt Install Issues

2007-10-16 Thread David Boddie
On Tue Oct 16 16:59:40 BST 2007, Space Monkey wrote: > "Which distribution are you using? (This will help people give you more > accurate advice.) > > I'm using Linux Mandriva 2008. There may be a Qt 4 version of qmake called qmake-qt4 somewhere on your system but, if not, try looking for one in

[PyQt] Re: PyQt Install Issues

2007-10-16 Thread Space Monkey
"There may be a Qt 4 version of qmake called qmake-qt4 somewhere on your system but, if not, try looking for one in the following location: /usr/lib/qt4/bin/qmake It's been a long time since I've used a Mandriva-related distro. David" I found it, the executable is there, but I can't seem to

[PyQt] Re: PyQt Install Issues

2007-10-16 Thread David Boddie
On Tue Oct 16 17:25:48 BST 2007, Space Monkey wrote: > "There may be a Qt 4 version of qmake called qmake-qt4 somewhere on your > system but, if not, try looking for one in the following location: > > /usr/lib/qt4/bin/qmake [...] > Here's what I typed: > > python configure.py --qmake [/usr/

[PyQt] Qt 4.4

2007-10-16 Thread Matt Chambers
Has anyone tested the latest snapshots with Qt 4.4? -- -Matt ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

[PyQt] Re: PyQt Install Issues

2007-10-16 Thread Space Monkey
"Aha, then you need to type this: python configure.py --qmake=/usr/lib/qt4/bin/qmake It's just a matter of getting the syntax just as the configure.py script expects it. :-) David" It worked! :D Millions of thanks! - Check out the hottest 2008 mo

Re: [PyQt] Qt 4.4

2007-10-16 Thread Andreas Pakulat
On 16.10.07 12:02:04, Matt Chambers wrote: > Has anyone tested the latest snapshots with Qt 4.4? No, and Phil usually doesn't support Qt snapshots, only releases. Andreas -- Your object is to save the world, while still leading a pleasant life. ___ Py

[PyQt] Call a window from other parent window

2007-10-16 Thread Sergio Jovani Guzmán
Hi all! I am learning PyQt and I have a question. I have two classes, one for each widget: == class Main(QMainWindow): def __init__(self): QMainWindow.__init__(self) loadUi("frmmain.ui", self) class Conectar

Re: [PyQt] Call a window from other parent window

2007-10-16 Thread Mark Summerfield
On 2007-10-16, Sergio Jovani Guzmán wrote: > Hi all! > > I am learning PyQt and I have a question. > > I have two classes, one for each widget: > > == > class Main(QMainWindow): > def __init__(self): > QMainWindow.__init__(self) > loadUi("frmmain.ui