Re: [PyQt] PyQt4 question about type-to-select in numeric drop-down lists

2013-08-29 Thread Sarah Mount
On Tue, Aug 27, 2013 at 9:44 PM, David Boddie da...@boddie.org.uk wrote: On Tue Aug 27 15:53:59 BST 2013, Sarah Mount wrote: sorry if this is a bit of a n00b question, but hopefully someone can clarify a misunderstanding for me. I am working with some colleagues on a Python2.x PyQt4

Re: [PyQt] Scroll QTableView beyond last column/row

2013-08-29 Thread Mark Mordeca
Thanks, this is pretty much provides the behaviour I want, however there is one oddity with it. It allows me to successfully scroll past the last row, but at a certain point I will be able to move the scroll bar to the very end which causes the entire table to “snap” back to the bottom. Did you

[PyQt] return value from QGraphicsItem::itemChange is not handled properly.

2013-08-29 Thread Yann Le Hir
Hi, I'm having an issue with QGraphicsItem::itemChange. Here is the test program : import PyQt5.Qt as qt class Node( qt.QGraphicsRectItem ) : def __init__( self , sector ) : super( Node , self ).__init__( sector ) def itemChange( self , change , v ) : res = super(