Re: [PyQt] Segmentation fault with QtGui.qt_x11_wait_for_window_manager

2008-07-22 Thread Phil Thompson
On Mon, 14 Jul 2008 06:47:59 -0700, "Markos Gogoulos" <[EMAIL PROTECTED]> wrote: > qt_x11_wait_for_window_manager results in segfault when called with > None as argument. > import PyQt4.QtGui PyQt4.QtGui.qt_x11_wait_for_window_manager(None) > Segmentation fault > > This was tested on

Re: [PyQt] sip doesn't recognize structs with parent structs/classes

2008-07-22 Thread Phil Thompson
On Wed, 16 Jul 2008 16:12:15 -0700, "Erick Tryzelaar" <[EMAIL PROTECTED]> wrote: > I've got a simple sip file that has: > > struct Foo { > %TypeHeaderCode > #include "foo.h" > %End > > virtual Foo(); > }; > > struct Bar: Foo { > %TypeHeaderCode > #include "foo.h" > %End > > virtual Bar();

Re: [PyQt] SystemError with a temporary variable when accessing a non-existing attribute

2008-07-22 Thread Phil Thompson
On Fri, 11 Jul 2008 20:45:24 -0700, "Erick Tryzelaar" <[EMAIL PROTECTED]> wrote: > Good evening, I'm getting an interesting error with sip and pointers. > Here's my trimmed down code: > > > #ifndef FOO_H > #define FOO_H > > #include > > c

[PyQt] Re: Possible pyuic bug

2008-07-22 Thread Phil Thompson
On Sun, 20 Jul 2008 17:18:44 +0200, Detlev Offenbach <[EMAIL PROTECTED]> wrote: > Hi, > > I think, pyuic4 has a bug handling QScrollArea. The generated code is > missing > a call to the QScrollArea method setWidget. This causes the widget > contained > in the QScrollArea to not resize properly.

[PyQt] Collapsible Dock Widget??

2008-07-22 Thread Darryl Wallace
Has anyone tried to make the dock widgets collapsible (similar to the windows based dock widgets in that have the little thumbtack icon) in Qt or PyQt? Thanks, Darryl ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.c

Re: [PyQt] PyQt4 and Stackless 2.5.2?

2008-07-22 Thread Phil Thompson
On Tue, 22 Jul 2008 09:53:00 -0400, inhahe <[EMAIL PROTECTED]> wrote: > On Tue, Jul 22, 2008 at 8:45 AM, Phil Thompson > <[EMAIL PROTECTED]> wrote: >> On Tue, 22 Jul 2008 08:32:34 -0400, inhahe <[EMAIL PROTECTED]> wrote: >>> Can anyone tell me how to get PyQt4 working with Stackless? >>> >>> I foun

Re: [PyQt] PyQt4 and Stackless 2.5.2?

2008-07-22 Thread inhahe
On Tue, Jul 22, 2008 at 8:45 AM, Phil Thompson <[EMAIL PROTECTED]> wrote: > On Tue, 22 Jul 2008 08:32:34 -0400, inhahe <[EMAIL PROTECTED]> wrote: >> Can anyone tell me how to get PyQt4 working with Stackless? >> >> I found this: >> >> ___ >> >> >> Subject: Re: [PyQt] Py

Re: [PyQt] Re: QGraphicsWidget crash on exit

2008-07-22 Thread Brian Kelley
Thanks, I have been using PyQt 4.4.2 so it looks like the problem may have been fixed in the interim. If I can duplicate it after I upgrade I'll let everyone know :) Brian On Jul 22, 2008, at 6:10 AM, kib2 wrote: Brian Kelley a écrit : I'm getting a crash on exit using QGraphicsWidget. I

[PyQt] Re: PyQt4 and Stackless 2.5.2?

2008-07-22 Thread inhahe
ok, I found the fix at http://article.gmane.org/gmane.comp.python.stackless/2431/match=siplib+c , and apparently I don't have to compile PyQt4 (or even reinstall it). It seems to work -- that is, it at least imports. On Tue, Jul 22, 2008 at 8:32 AM, inhahe <[EMAIL PROTECTED]> wrote: > Can anyone

Re: [PyQt] PyQt4 and Stackless 2.5.2?

2008-07-22 Thread Phil Thompson
On Tue, 22 Jul 2008 08:32:34 -0400, inhahe <[EMAIL PROTECTED]> wrote: > Can anyone tell me how to get PyQt4 working with Stackless? > > I found this: > > ___ > > > Subject: Re: [PyQt] PyQt4.3 and stackless python 2.5.1 working?Link to > this message > From: Michael

[PyQt] PyQt4 and Stackless 2.5.2?

2008-07-22 Thread inhahe
Can anyone tell me how to get PyQt4 working with Stackless? I found this: ___ Subject:Re: [PyQt] PyQt4.3 and stackless python 2.5.1 working?Link to this message From: Michael Guntsche ([EMAIL PROTECTED]) Date: 08/28/2007 04:20:16 PM List: org.kde.pykde On

Re: [PyQt] QWidget event == no more GC for QWidget?

2008-07-22 Thread Giovanni Bajo
On 7/22/2008 10:56 AM, Sundance wrote: Alexei Puzikov wrote: Hello, Quick question: if I uncomment the moveEvent in the code below, the destructor isn't called anymore. I suspect I'm doing something wrong or missing something - anybody can clear the things up? I think this is the same issue

[PyQt] Re: QGraphicsWidget crash on exit

2008-07-22 Thread kib2
Brian Kelley a écrit : I'm getting a crash on exit using QGraphicsWidget. It appears to be in the destructor for sipQGraphicsWidget. Attached is the sample program. I can't tell whether this is a bug in PyQt or Qt, does anyone else have the same issue? import sys from PyQt4 import QtGui,

Re: [PyQt] QWidget event == no more GC for QWidget?

2008-07-22 Thread Sundance
Alexei Puzikov wrote: > Hello, > > Quick question: if I uncomment the moveEvent in the code below, the > destructor isn't called anymore. > I suspect I'm doing something wrong or missing something - anybody can > clear the things up? I think this is the same issue as was discussed here a while ba