Re: [PyQt] Multiprocessing and ProgressBar

2010-10-08 Thread Sybren A . Stüvel
On 7 October 2010 15:13, Nicola Creati ncre...@inogs.it wrote: with QThread I'm able to make the code work but I need to send computation to more than one core in my application. Beside that, there is a huge difference between threads and processes. I'm quite curious to see whether there is a

Re: [PyQt] PyQt support for Qt 4.7

2010-10-08 Thread Phil Thompson
On Fri, 08 Oct 2010 01:08:08 +0200, Giovanni Bajo ra...@develer.com wrote: On Thu, 07 Oct 2010 16:34:41 +0100, Phil Thompson p...@riverbankcomputing.com wrote: On Thu, 7 Oct 2010 00:35:16 +0200, David Boddie da...@boddie.org.uk wrote: On Tue Oct 5 09:36:49 BST 2010, Phil Thompson wrote:

Re: [PyQt] PyQt support for Qt 4.7

2010-10-08 Thread Phil Thompson
On Fri, 8 Oct 2010 02:44:25 +0200, Andreas Pakulat ap...@gmx.de wrote: On 08.10.10 01:08:08, Giovanni Bajo wrote: On Thu, 07 Oct 2010 16:34:41 +0100, Phil Thompson p...@riverbankcomputing.com wrote: On Thu, 7 Oct 2010 00:35:16 +0200, David Boddie da...@boddie.org.uk wrote: On Tue Oct 5

[PyQt] Instant Messaging through PySide PyQtMobility on N900.

2010-10-08 Thread praveen koduru
I am trying to send Instant message(IM) through N900 using PySide PyQtMobility. I am getting QMessageService sending failed. The code is below: *from QtMobility.Messaging import ** *from PySide.QtCore import ** *import sys* *from PyQt4 import QtCore* *import dbus* * * *app =

[PyQt] Not consistent behavior in QComboBox

2010-10-08 Thread Daniele Esposti
Hi all, I found a different behavior in QComboBox when selecting an item from a multicolumn model view: - if isEditable() is False the content of the selected cell is used as the combo box text - if isEditable() is True the content of the first column of the selected item is used as the combo

Re: [PyQt] PyQt support for Qt 4.7

2010-10-08 Thread Phil Thompson
On Fri, 08 Oct 2010 09:05:47 +0100, Phil Thompson p...@riverbankcomputing.com wrote: On Fri, 08 Oct 2010 01:08:08 +0200, Giovanni Bajo ra...@develer.com wrote: On Thu, 07 Oct 2010 16:34:41 +0100, Phil Thompson p...@riverbankcomputing.com wrote: On Thu, 7 Oct 2010 00:35:16 +0200, David Boddie

Re: [PyQt] [PySide] Instant Messaging through PySide PyQtMobility on N900.

2010-10-08 Thread Matti Airas
On 8 October 2010 11:45, praveen koduru prawin1...@gmail.com wrote: I am trying to send Instant message(IM) through N900 using PySide PyQtMobility. I am getting QMessageService sending failed. The code is below: Hi Praveen, after fixing the obvious issue of mixing PySide and PyQt (you

Re: [PyQt] [PySide] Instant Messaging through PySide PyQtMobility on N900.

2010-10-08 Thread Matti Airas
Here you go: http://bugs.openbossa.org/show_bug.cgi?id=406 Feel free to add yourself as a CC to the bug to track it more easily. Cheers, ma. On 8 October 2010 16:54, Matti Airas mai...@iki.fi wrote: On 8 October 2010 11:45, praveen koduru prawin1...@gmail.com wrote: I am trying to send

[PyQt] Problems with latest windows installer

2010-10-08 Thread Detlev Offenbach
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? Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de

[PyQt] Newbee: Approach to expand QTreeView completely below selected index

2010-10-08 Thread Knacktus
Hi everyone, I'm writing my first app, so I'm sometimes a bit unsure if my approaches are recommended practice. To expand everything below a selected index in a TreeView with custom QAbstractItemModel, I've done the following (I didn't find a predefined slot for this case, only for

[PyQt] how to close editor in QTreeView

2010-10-08 Thread Danny
Howdy, In my application, I create a tree by drag and drop. When I drop an item, I immediately open the item editor delegate so the user can type the item text. I am implementing undo/redo, and both the item creation and text editing go into a macro. All is good. The problem is that if I have

Re: [PyQt] how to close editor in QTreeView

2010-10-08 Thread Hans-Peter Jansen
On Friday 08 October 2010, 18:55:11 Danny wrote: Howdy, In my application, I create a tree by drag and drop. When I drop an item, I immediately open the item editor delegate so the user can type the item text. I am implementing undo/redo, and both the item creation and text editing go into a