Re: [PyQt] PyQt4-extrawidgets project

2008-11-11 Thread Jim Bublitz
On Tuesday 11 November 2008 09:04, piotr maliński wrote: > I've started a project at code.google.com that contains all PyQt4 > widgets made by me with the help of SIP. > > http://code.google.com/p/pyqt4-extrawidgets/ > > Currently there are two widgets: QTermWidget and qt-macnavbar > (screenshot: >

Re: [PyQt] PyQt4-extrawidgets project

2008-11-11 Thread Marcell Mars
On Tue, Nov 11, 2008 at 6:04 PM, piotr maliński <[EMAIL PROTECTED]> wrote: > http://code.google.com/p/pyqt4-extrawidgets/ i just love this project ;) ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo

[PyQt] QTreeView: Deselection

2008-11-11 Thread Filip Gruszczyński
I have a following situation: there is a tree simple tree view with some folder-like structure. Any object may be chosen from this view or not. If anything is chosen, then the dialog returns the chosen index's internal pointer and if nothing was chosen it should return None. Except it doesn't. Noth

[PyQt] PyQt4-extrawidgets project

2008-11-11 Thread piotr maliński
I've started a project at code.google.com that contains all PyQt4 widgets made by me with the help of SIP. http://code.google.com/p/pyqt4-extrawidgets/ Currently there are two widgets: QTermWidget and qt-macnavbar (screenshot: http://www.fotosik.pl/pokaz_obrazek/pelny/cb4b8531394f7906.html). Both

Re: [PyQt] QGrahicsView and event issue

2008-11-11 Thread dboddie
On Tuesday 11 November 2008, Oguz Yarimtepe wrote: > So here is the latest version of my application but still i am not able > to detect the keyPressEvents nor the events. You need to promote the QGraphicsView widget in your form to GraphicsView. To do this, open the context menu over the widget

Re: [PyQt] QGrahicsView and event issue

2008-11-11 Thread Oguz Yarimtepe
On Tue, 2008-11-11 at 16:43 +0200, Oguz Yarimtepe wrote: > Hi David, > > On Fri, 2008-11-07 at 18:24 +0100, David Boddie wrote: > > In your Main class, you are creating a new instance of a graphics view > > rather than using the one you set up in your pyuic4-created class: > > > > 29 roo

Re: [PyQt] QGrahicsView and event issue

2008-11-11 Thread Oguz Yarimtepe
Hi David, On Fri, 2008-11-07 at 18:24 +0100, David Boddie wrote: > In your Main class, you are creating a new instance of a graphics view > rather than using the one you set up in your pyuic4-created class: > > 29 root.graphicsView=GraphicsView() > > Maybe leave this assignment out. >