Re: [PyKDE] eric3 and PyQt4

2005-12-22 Thread Detlev Offenbach
Am Donnerstag, 22. Dezember 2005 21:35 schrieb Andreas Pakulat: > Hi, > > just a few questions about eric3: > > 1. is there some kind of handbook? I found the help but that seems more > like api documentation not a users handbook... Unfortunately not. Do you know anybody who would volunteer? > >

Re:[PyKDE] PyQt4 and designer plugins

2005-12-22 Thread Jim Bublitz
On Thursday 22 December 2005 16:04, Andreas Pakulat wrote: > Hi, > > just started with a mainwindows-example to get a feel for PyQt(4) > programming. I first wanted to "start at the beginning", i.e. porting > the designer examples. But then I came across the problem: Those are > normally shared lib

Re: [PyKDE] A few snapshot-20051219 problems

2005-12-22 Thread Gerard Vermeulen
On Tue, 20 Dec 2005 08:40:51 + Phil Thompson <[EMAIL PROTECTED]> wrote: > On Tuesday 20 December 2005 7:27 am, Gerard Vermeulen wrote: > > (1) A typo: > > > > --- sip-snapshot-20051219/sipconfig.py.gv 2005-12-20 > > 07:40:52.0 +0100 +++ sip-snapshot-20051219/sipconfig.py 2005-12

Re: [PyKDE] PyQt4 and designer plugins

2005-12-22 Thread Baz Walter
On Thursday 22 Dec 2005 20:38, Andreas Pakulat wrote: > Hi, > > just started with a mainwindows-example to get a feel for PyQt(4) > programming. I first wanted to "start at the beginning", i.e. porting > the designer examples. But then I came across the problem: Those are > normally shared libs...

Re: [PyKDE] about dcopclients

2005-12-22 Thread Jim Bublitz
On Thursday 22 December 2005 13:23, Orcan Ogetbil wrote: > Hello, > I used to use this code to create a dcop client for my superkaramba > widget. It used to wok fine, but after upgrading my PyKDE and PyQt it > stopped working, > > [code] > import dcop > import kdecore > temp = kdecore.KApplicatio

Re: [PyKDE] PyQt4 and designer plugins

2005-12-22 Thread Rajeev Joseph Sebastian
On Friday 23 December 2005 02:43, Andreas Pakulat wrote: > > I think it is possible. (I tried, but failed :/). The idea would be to do > > it the same way as how currently the Control Centre modules, or KParts > > are written. > > Hmm, had a quick look at the kpart and to me it looks like you bette

Re: [PyKDE] PyQt4 and designer plugins

2005-12-22 Thread Andreas Pakulat
On 23.12.05 02:28:41, Rajeev Joseph Sebastian wrote: > On Friday 23 December 2005 02:08, Andreas Pakulat wrote: > > Hi, > > > > just started with a mainwindows-example to get a feel for PyQt(4) > > programming. I first wanted to "start at the beginning", i.e. porting > > the designer examples. But

Re: [PyKDE] PyQt4 and designer plugins

2005-12-22 Thread Rajeev Joseph Sebastian
On Friday 23 December 2005 02:08, Andreas Pakulat wrote: > Hi, > > just started with a mainwindows-example to get a feel for PyQt(4) > programming. I first wanted to "start at the beginning", i.e. porting > the designer examples. But then I came across the problem: Those are > normally shared libs.

[PyKDE] PyQt4 and designer plugins

2005-12-22 Thread Andreas Pakulat
Hi, just started with a mainwindows-example to get a feel for PyQt(4) programming. I first wanted to "start at the beginning", i.e. porting the designer examples. But then I came across the problem: Those are normally shared libs... So I guess as long as there's no PyQt-based designer there is no

[PyKDE] eric3 and PyQt4

2005-12-22 Thread Andreas Pakulat
Hi, just a few questions about eric3: 1. is there some kind of handbook? I found the help but that seems more like api documentation not a users handbook... 2. How do I get eric3 to execute my PyQt4 app with a different python - I have PyQt4 running under python2.4. 3. Is there already support

[PyKDE] about dcopclients

2005-12-22 Thread Orcan Ogetbil
Hello, I used to use this code to create a dcop client for my superkaramba widget. It used to wok fine, but after upgrading my PyKDE and PyQt it stopped working, [code] import dcop import kdecore temp = kdecore.KApplication.kApplication() dcopclient = temp.dcopClient() dcopclient.registerAs("amar

[PyKDE] PyQt4 show() Bug

2005-12-22 Thread Phil Thompson
Several people have reported seg faults with PyQt4 when show() is called. This should be fixed in tonight's snapshot. Phil ___ PyKDE mailing listPyKDE@mats.imk.fraunhofer.de http://mats.imk.fraunhofer.de/mailman/listinfo/pykde

[PyKDE] Problems with pyuic of latest PyQt4 snapshot

2005-12-22 Thread Detlev Offenbach
Hi, I have updated to the latest PyQt4 snapshot. pyuic4 doesn't produce a valid Python file nor does it show dialogs using the -p option. It throws an exception instead. -- Traceback (most recent call last): File "/usr/bin/pyuic4", line 39, in ? widget = Loader.loadUi(args[1])

Re: [PyKDE] PyQt4 + Qt4.0.1-debug or Qt4.1.0

2005-12-22 Thread Douglas Soares de Andrade
Hi, With this patch, i could import almost all modules, i had problems only with QtSql. Here is the problem: >>> from PyQt4 import QtSql Traceback (most recent call last): File "", line 1, in ? ImportError: /usr/lib/python2.4/site-packages/PyQt4/QtSql.so: undefined symbol: _ZN9QComboBox16st

[PyKDE] ANN: new eric3 snapshot with PyQt4 support available

2005-12-22 Thread Detlev Offenbach
Hi, I have just uploaded a new snapshot of eric3. This includes a few bug fixes and most prominently support for PyQt4. It is available via http://www.die-offenbachs.de/detlev/eric3.html Regards, Detlev -- Detlev Offenbach [EMAIL PROTECTED] ___ PyKD

Re: [PyKDE] PyQt4 + Qt4.0.1-debug or Qt4.1.0

2005-12-22 Thread Andreas Pakulat
On 22.12.05 01:09:37, Andreas Pakulat wrote: > On 21.12.05 23:05:54, Phil Thompson wrote: > > No - but just mark those ctors as private in the .sip files. > > Ah, ok that was easy. Lets see how far I can get compiling the snapshot > with Qt4.1.0. I'll post a diff if I get through. As I said, here