[PyQt] ANN: eric 4.4.9 released

2010-10-09 Thread detlev
Hi, I just uploaded eric 4.4.9. It is a maintenance release fixing some bugs. It is available via the eric web site. http://eric-ide.python-projects.org/index.html Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing list

[PyQt] ANN: eric 5.0.3 released

2010-10-09 Thread detlev
Hi, I just uploaded eric 5.0.3. It is a maintenance release fixing some bugs. It is available via the eric web site. http://eric-ide.python-projects.org/index.html Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing list

[PyQt] Clearing and disabling a QLineEdit causes a cursor to be shown?

2010-10-09 Thread Nick Gaens
Hello everybody, When trying to reset a form, consisting out of some QLineEdits and QSpinBoxes, I use this small piece of code: for field in [self.customerDataLayout.itemAtPosition(row, 1) for row in xrange(0, self.customerDataLayout.rowCount())]: widget = field.widget()

Re: [PyQt] Problems with latest windows installer

2010-10-09 Thread Detlev Offenbach
On Friday 08 October 2010, Detlev Offenbach wrote: Hi, accessing a https url through QWebView crashes the application (eric web browser). I used the latest installer for Python 3 on Windows. This happens on Windows 7 (64-bit) and Windows XP (32-bit). Any hint what might be wrong?

[PyQt] Another issue with latest windows installer on Win 7

2010-10-09 Thread Detlev Offenbach
Hi, I am observing another issue with the latest windows installers of PyQt4. The program pylupdate4.exe wants to be executed with admin privileges. At least over here executing pylupdate4 in a command window fires up UAC. If I give allowance, the program is executed in a separate window. That

Re: [PyQt] PyQt 3.18.1 qApp.translate() issues since sip 4.11.1 (at least)

2010-10-09 Thread Phil Thompson
On Thu, 7 Oct 2010 20:53:51 +0200, Hans-Peter Jansen h...@urpla.net wrote: On Thursday 07 October 2010, 13:14:45 Phil Thompson wrote: On Wed, 6 Oct 2010 14:33:29 +0200, Hans-Peter Jansen today, I noticed, that there's an ugly issue, resulting in such tracebacks: As you can see, qApp is

Re: [PyQt] Clearing and disabling a QLineEdit causes a cursor to be shown?

2010-10-09 Thread Hans-Peter Jansen
On Saturday 09 October 2010, 14:43:19 Nick Gaens wrote: Hello everybody, When trying to reset a form, consisting out of some QLineEdits and QSpinBoxes, I use this small piece of code: for field in [self.customerDataLayout.itemAtPosition(row, 1) for row in xrange(0,

Re: [PyQt] Problems with latest windows installer

2010-10-09 Thread Phil Thompson
On Sat, 9 Oct 2010 15:00:38 +0200, Detlev Offenbach det...@die-offenbachs.de wrote: On Friday 08 October 2010, Detlev Offenbach wrote: Hi, accessing a https url through QWebView crashes the application (eric web browser). I used the latest installer for Python 3 on Windows. This happens on

Re: [PyQt] Problems with latest windows installer

2010-10-09 Thread Andreas Pakulat
On 09.10.10 18:24:23, Phil Thompson wrote: On Sat, 9 Oct 2010 15:00:38 +0200, Detlev Offenbach det...@die-offenbachs.de wrote: On Friday 08 October 2010, Detlev Offenbach wrote: Hi, accessing a https url through QWebView crashes the application (eric web browser). I used the latest

[PyQt] Performance of QTreeView

2010-10-09 Thread Knacktus
Hi everyone, I've got a QTreeView with a custom model. I've set the setUniformRowHeights property to True: self.setUniformRowHeights(True) Now, to expand the tree with a model with 1 rows and 6 cols calling the expandAll slot takes about 1 minute! (on a 2.8 GHz Intel 860) I'm doing some

Re: [PyQt] Performance of QTreeView

2010-10-09 Thread Baz Walter
On 09/10/10 21:00, Knacktus wrote: Hi everyone, I've got a QTreeView with a custom model. I've set the setUniformRowHeights property to True: self.setUniformRowHeights(True) Now, to expand the tree with a model with 1 rows and 6 cols calling the expandAll slot takes about 1 minute! (on a