[PyKDE] Cannot derive QValidator

2005-12-06 Thread Giovanni Bajo
Hey, there seems to be a problem inheriting QValidator: === from qt import * app = QApplication([]) class V(QValidator): def validate(self, index, pos): return QValidator.Valid v = V(None) cb = QComboBox(None) cb.setEditable(True) cb.setValidator(v) cb.show()

Re: [PyKDE] Cannot derive QValidator

2005-12-06 Thread Phil Thompson
On Tuesday 06 December 2005 11:12 am, Giovanni Bajo wrote: Hey, there seems to be a problem inheriting QValidator: === from qt import * app = QApplication([]) class V(QValidator): def validate(self, index, pos): return QValidator.Valid v = V(None) cb =

Re: [PyKDE] Cannot derive QValidator

2005-12-06 Thread Giovanni Bajo
Phil Thompson [EMAIL PROTECTED] wrote: The Python signature is different to the C++ signature - check the documentation. Argh, sorry! ;) -- Giovanni Bajo ___ PyKDE mailing listPyKDE@mats.imk.fraunhofer.de

Re: [PyKDE] PyQt4 Update

2005-12-06 Thread David Boddie
On Mon, 5 Dec 2005 16:21:56, Phil Thompson wrote: On Saturday 03 December 2005 6:56 pm, David Boddie wrote: Just to clarify: subclasses of QAbstractListModel that don't reimplement columnCount() should automatically inherit the base class's behaviour and return 1. It seems that the

Re: [PyKDE] Deployment on Windows? license compatible

2005-12-06 Thread Michael Zimmermann
Ulrich Berning wrote: Hi Ulrich, after being busy with other issues on my dsks for some weeks it is time to come back to our deployment issue on Windows... Sorry, for bothering you again :-) Compiling the pyqt modules statically into a python interpreter results in a generic interpreter,

Re: [PyKDE] PyKDE-snapshot20051013 fails against kde-3.5.0

2005-12-06 Thread Stephan Hermann
Hi Jim, when do you expect a new release of pykde or actually a new sip,pyqt,pykde toolchain. I need to fix the packages (at least for pykde) for kde3.5 in kubuntu/ubuntu dapper (development branch). Regards, \sh On Monday 05 December 2005 20:45, Jim Bublitz wrote: On Monday 05 December

Re: [PyKDE] PyKDE-snapshot20051013 fails against kde-3.5.0

2005-12-06 Thread Jim Bublitz
On Tuesday 06 December 2005 07:35, Stephan Hermann wrote: when do you expect a new release of pykde or actually a new sip,pyqt,pykde toolchain. I need to fix the packages (at least for pykde) for kde3.5 in kubuntu/ubuntu dapper (development branch). I intended to have it out by now, but that

[PyKDE] Building PyQt4

2005-12-06 Thread Douglas Soares de Andrade
Hi all ! Im trying to build PyQt4 20051205 with 20051205 and im not having success. Here is the errors: sip/QtCore/qglobal.sip: In function 'int convertTo_QUrl_FormattingOptions(PyObject*, void**, int*)': sip/QtCore/qglobal.sip:196: error: 'sipEnum_QUrl_FormattingOption' was not declared in

Re: [PyKDE] Building PyQt4

2005-12-06 Thread Douglas Soares de Andrade
Hi Phil ! Thanks for the quick answer. I have another question... Is it possible to build pykde with the current sip snapshot ? I tried and i had this errors: Generating the C++ source for the kdecore module... sip: Ptr is undefined Error: Unable to create the C++ code. Thanks ! Em Terça 06

[PyKDE] Re: Building PyQt4

2005-12-06 Thread m . gehling
Douglas Soares de Andrade schrieb: Hi all ! Im trying to build PyQt4 20051205 with 20051205 and im not having success. Here is the errors: sip/QtCore/qglobal.sip: In function 'int convertTo_QUrl_FormattingOptions(PyObject*, void**, int*)': sip/QtCore/qglobal.sip:196: error:

[PyKDE] Re: Building PyQt4

2005-12-06 Thread Douglas Soares de Andrade
Hi gema ! Thank you sooo much with your tips, the only problem is that pyqt took some hours to build here and i only saw the symbol problem after the first import :) So, i did your modifications and im building it again now. Thank you again ! Em Terça 06 Dezembro 2005 20:11, [EMAIL