Re: [PyQt] Syntax for connecting to QGraphicsScene.change d signal?

2010-10-15 Thread Phil Thompson
On Thu, 14 Oct 2010 15:37:02 -0700, TP wing...@gmail.com wrote: QGraphicsScene's changed signal is documented as: void changed (const QListQRectF) The Qt Utility classes and their Python equivalents section of Chapter 10 Qt Class Hierarchy of GUI Programming with Python: QT Edition

Re: [PyQt] Syntax for connecting to QGraphicsScene.changed signal?

2010-10-15 Thread TP
On Fri, Oct 15, 2010 at 1:12 AM, Phil Thompson p...@riverbankcomputing.com wrote: On Thu, 14 Oct 2010 15:37:02 -0700, TP wing...@gmail.com wrote: QGraphicsScene's changed signal is documented as:    void changed (const QListQRectF) The Qt Utility classes and their Python equivalents section

[PyQt] How to close persistentEditors?

2010-10-15 Thread akumarzen
How to close persistentEditors? -- View this message in context: http://old.nabble.com/How-to-close-persistentEditors--tp29970883p29970883.html Sent from the PyQt mailing list archive at Nabble.com. ___ PyQt mailing list

Re: [PyQt] How to close persistentEditors?

2010-10-15 Thread Doug Bell
akumarzen wrote: How to close persistentEditors? QAbstractItemView.closePersistentEditor(index) - Doug ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

[PyQt] sip tutorial

2010-10-15 Thread Mohammed Rashad
Hi all, I decided ti use SIP for making python binding for my gui toolkit library FOX. To start I need some good tutorials. I searched google and found some but I am not satisfied with the result. I found SIP better than swig for c++ libraries Where can I find good tutorials? Where can I find

Re: [PyQt] sip tutorial

2010-10-15 Thread Phil Thompson
On Fri, 15 Oct 2010 19:20:59 +0530, Mohammed Rashad rasha...@hotmail.com wrote: Hi all, I decided ti use SIP for making python binding for my gui toolkit library FOX. To start I need some good tutorials. I searched google and found some but I am not satisfied with the result. I found SIP

Re: [PyQt] How do i get persistentEditor's close event?

2010-10-15 Thread akumarzen
I have changed my question to How do i get persistentEditor's close event? Doug Bell-3 wrote: akumarzen wrote: How to close persistentEditors? QAbstractItemView.closePersistentEditor(index) - Doug ___ PyQt mailing list

[PyQt] issues with pyqt webview and unicode characters.

2010-10-15 Thread webmedic
I'm working on an epub reader were zipfile is used to read the files within the zip. In the past I would just use the load method to load the files into the webview. With the zipfile though I'm actually using a read to read the file in and then using sethtml on the webframe to display it. This

[PyQt] Resizing of layout on runtime

2010-10-15 Thread Andrew Matsusaka
I've created a custom widget that contains quite a few QLabels and QTextEdits. I'm connecting to a MySQL database and retrieving a certain number of items that I want to display through these custom widgets by creating a widget for each item. I would like these items to be in a vertical layout

Re: [PyQt] Resizing of layout on runtime

2010-10-15 Thread mezgani ali
I had the same problem, but i think that the Qt creator do that automatically, and reasonably in some ways. Best Regards, On Fri, Oct 15, 2010 at 8:34 PM, Andrew Matsusaka andrew.matsus...@primefocusworld.com wrote: I've created a custom widget that contains quite a few QLabels and

Re: [PyQt] Resizing of layout on runtime

2010-10-15 Thread Hans-Peter Jansen
On Friday 15 October 2010, 22:34:49 Andrew Matsusaka wrote: I've created a custom widget that contains quite a few QLabels and QTextEdits. I'm connecting to a MySQL database and retrieving a certain number of items that I want to display through these custom widgets by creating a widget for