Re: [PyKDE] Unchecked plugin directory access

2007-02-04 Thread Javier Sanz
However, should one try to package the appplication with PyInstaller, py2exe and similar tools, that would be an issue, since likely that directory won't be available in "frozen" state. Confirmed. I'm using loadUi and py2exe, and when trying to run my app I get: WindowsError: [Error 2] The s

Re: [PyKDE] Problem building PyQt on Windows

2007-02-04 Thread Giovanni Bajo
On 02/02/2007 20.20, Javier Sanz wrote: E:/windows/Qt/4.2.2/include/QtCore/../../src/corelib/io/qfile.h:27:30: E:/windows/Qt/4.2.2/include/QtCore/QtCore/qiodevice.h: Invalid argument This doesn't make much sense. What are the contents of that "qfile.h", at line 27? Does it contain an include

Re: [PyKDE] Problem building PyQt on Windows

2007-02-04 Thread Javier Sanz
Thanks for answering. That line contains #include On 2/5/07, Giovanni Bajo <[EMAIL PROTECTED]> wrote: On 02/02/2007 20.20, Javier Sanz wrote: > E:/windows/Qt/4.2.2/include/QtCore/../../src/corelib/io/qfile.h:27:30: > E:/windows/Qt/4.2.2/include/QtCore/QtCore/qiodevice.h: Invalid argument Th

[PyKDE] Re: Problem building PyQt on Windows

2007-02-04 Thread Javier Sanz
Someone who has compiled PyQt4 under Windows? I really need to get it to compile. -- Un saludo, Javier ___ PyKDE mailing listPyKDE@mats.imk.fraunhofer.de http://mats.imk.fraunhofer.de/mailman/listinfo/pykde

[PyKDE] Re: QTreeView -- selecting text within cell

2007-02-04 Thread Kelly Burkhart
On 2/2/07, Kelly Burkhart <[EMAIL PROTECTED]> wrote: Is it possible to select a portion of text within a cell in a QTreeView (or QTableView)? I would like to treat one column of cells as lines of text from which I can select text just like selecting in an editor. I do not need to select from mu

[PyKDE] ANN: new eric4 snapshot available

2007-02-04 Thread Detlev Offenbach
Hi, a new snapshot of eric4 is available. This is the changelog. Version 4.0-snapshot-20070204: - bug fixes - added check for syntax errors when a project run/debug/... action is invoked. The number of faulty files will be displayed and the action aborted. - added an option to hide generated

[PyKDE] Emitting a signal from Python

2007-02-04 Thread Tony Cappellini
I've tried to add a line of code to emit a signal. The sender is normally a combo box, the receiver is a Text Edit box. The connect statement (that works) looks like this self.connect(self.Names, QtCore.SIGNAL("activated(const QString &)"), self.updateNameBrowser) I want to 'simulate' the user