[PyQt] Labelled QGraphicsItem

2010-09-05 Thread Jeffrey Spies
Hi, all, I'd like to have QGraphicsItems (squares and circles) that have editable QGraphicsTextItems attached to them. I can do this with a QGraphicsItemGroup or use two items (connected with an instance variable), but I want the ability to, at times, move the labels around the item (independent

[PyQt] Composite widgets?

2010-09-05 Thread Peter Milliken
Prior to embarking on learning PyQt, I wrote my GUI applications using Tkinter and Pmw. The Pmw widget set is quite nice and provides a library of composite classes using the Tkinter widgets. My question is: Is there any (similar) composite widgets in PyQt? i.e. Pmw has the EntryField widget, whi

[PyQt] PyQt4 4.7.5 configure fails under Python7 and sip 4.11

2010-09-05 Thread Demetrius Cassidy
Using PyQt-win-gpl-4.7.5 with sip 4.11 under Python7, configure fails with a syntax error executing sip: C:\Documents and Settings\dcassidy\My Documents\Downloads\PyQt-win-gpl-4.7.5\PyQ t-win-gpl-4.7.5>python configure.py --confirm-license Determining the layout of your Qt installation... This is

Re: [PyQt] Qt.MatchFlags AND comparison

2010-09-05 Thread Phil Thompson
On Sun, 5 Sep 2010 09:37:19 -0700 (PDT), Demetrius Cassidy wrote: > Having a hard time figuring something that should be simple. > > If I do Qt.MatchWildcard & Qt.MatchContains, it returns 1, but if I do > Qt.MatchContains & anything else (other than Qt.MatchContains itself) it > returns 0 as exp

[PyQt] Qt.MatchFlags AND comparison

2010-09-05 Thread Demetrius Cassidy
Having a hard time figuring something that should be simple. If I do Qt.MatchWildcard & Qt.MatchContains, it returns 1, but if I do Qt.MatchContains & anything else (other than Qt.MatchContains itself) it returns 0 as expected. What am I doing wrong, and how am I supposed to compare my flags to a

[PyQt] ANN: eric 5.0.2 released

2010-09-05 Thread detlev
Hi, I just uploaded eric 5.0.2. 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 4.4.8 released

2010-09-05 Thread detlev
Hi, I just uploaded eric 4.4.8. 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] vertical alignment of richtext in a table view

2010-09-05 Thread Wolfgang Rohdewald
Hi, in Mark Summerfields book "Rapid GUI programming with Python and QT", there is an example on page 485 with a table column having a delegate that displays richtext. In the book, the text in this column has a vertical alignment in the middle of the cells, just like the other columns. but if I e