[PyKDE] Qt on Mac w/X11 - bugs?

2005-03-23 Thread Alfred Young
Has anyone had problems when loading up a simple Qt app that: adding a QPopupMenu to a menuBar (from QMainWindow) doesn't show up? Or even a QPopupMenu's insertSeparator() doesn't add a separator? I believe I'm using PyQt 3.1.2... ___ PyKDE mailing list

[PyKDE] Abstract annotation and deleting objects

2005-03-23 Thread James Emerton
If a sip specification marks a class with the 'Abstract' annotation, the CLASS_CANNOT_CREATE bit is set. This can also be caused by the inclusion of pure virtual methods. The effect of the CLASS_CANNOT_CREATE bit is to set td_init AND td_dealloc to 0 in the generated sipTypeDef. This causes f

Re: [PyKDE] Eric, problen with adding new file into project

2005-03-23 Thread Detlev Offenbach
Hi, it's already fixed in the latest snapshot (20050320). Detlev Am Mittwoch, 23. März 2005 15:00 schrieb Jul: > Hi Detlev, > I don't remember if the problem has already been pointed out > but I can't add file, or directory into the current project. > I have the following error in the main shell

Re: [PyKDE] ANN: New PyQt-Mac-03-2005 binary installer available

2005-03-23 Thread Detlev Offenbach
Am Mittwoch, 23. März 2005 06:25 schrieb Kevin Walzer: > We have released a new binary installer of PyQt-Mac, PyQt-Mac-03-2005, > which packages PyQt for Mac OS X. This installer updates all components > of PyQt to the latest versions: > > PyQt 3.14.1, Sip 4.2.1, QScintilla 1.5.1, Qt 3.3.4, and Eri

[PyKDE] PyQT Memory Leak (new)

2005-03-23 Thread Nahuel Greco
Hi, I think that I have found a memory leak in the latest PyQT snapshot. When you create forms, if the form constructor connects their signals, after his destruction a "weakref" object remains in memory. Note the attached logs: without_signal_connections.log: For this log I only pressed the

Re: [PyKDE] Invalidation of windows

2005-03-23 Thread David Boddie
On Sun, 20 Mar 2005 21:37:44, Jeremy Sanders wrote: > I keep hitting a strange problem with Qt. I don't think the problem's in > my code! Any idea how I can avoid this? > > I have a document class which has a "dirty" flag. My output window (a > QScrollView), checks the flag at intervals (using a Q

Re: [PyKDE] Connections with QWidgetFactory

2005-03-23 Thread Juan Pablo Romero
> If R is a wrapped C++ implementation of a QObject sub-class then it should > work. > > If R is a Python implementation of a QObject sub-class then it won't work > because QWidgetFactory.create() doesn't know anything about Python > objects. Mhh, It's just a poor Python object :( Regards Ju

[PyKDE] Eric, problen with adding new file into project

2005-03-23 Thread Jul
Hi Detlev, I don't remember if the problem has already been pointed out but I can't add file, or directory into the current project. I have the following error in the main shell (outside eric). Regards, ++ Jul. Add File -> File "/mnt/softs/CDAT/lib/python2.3/site-packages/Project/Pr

Re: [PyKDE] Connections with QWidgetFactory

2005-03-23 Thread Phil Thompson
> Hello > > I have a designer file that defines my app main window ("principal.ui"). > > Then using QWidgetFactory the actual window is created: > > -- > def main(args): > app=QApplication(args) > pyimpl = R() # R is derived from QObject > mainWindow = QWidgetFactory