[PyQt] ANN: new eric4 web site

2008-12-18 Thread Detlev Offenbach
Hi, please note, that the eric4 web site has been relocated. It is available via http://eric-ide.python-projects.org The old address will be redirected automatically. Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing list

Re: [PyQt] no UDSEntryList in PyKDE leads to crash

2008-12-18 Thread Magnus Kulke
Hi, sure, below is a small program which will crash when using KIO::UDSEntryList in a signal handler thanks, magnus (i am using python-qt4 4.4.3-1ubuntu1 python-kde4 4:4.1.3-0ubuntu1~intrepid1) #!/usr/bin/env python # -*- coding: utf-8 -*- import sys from PyQt4.QtCore import * from

[PyQt] QSqlDatabase: available drivers: QSQLITE

2008-12-18 Thread lucabe...@libero.it
Hello I need to connect to mysql db but when i try i see that i have only availabe the driver for sqlite, how can i add the mysql driver? Thanks Luca ___ PyQt mailing listPyQt@riverbankcomputing.com

Re: [PyQt] QSqlDatabase: available drivers: QSQLITE

2008-12-18 Thread piotr maliński
2008/12/18 lucabe...@libero.it lucabe...@libero.it Hello I need to connect to mysql db but when i try i see that i have only availabe the driver for sqlite, how can i add the mysql driver? Thanks Luca ___ PyQt mailing list

Re: [PyQt] Introducing PyDingo

2008-12-18 Thread piotr maliński
Yesterday I've released PyDingo ALPHA 0.3 with some improvements over 0.2. The most important ones: - GIO backend (from pygobject) for suggesting applications for files - QScintilla text editor has basic features like save/saveAs/find/undo/redo - File metainfo widget can open a file in suggested

Re: [PyQt] QSqlDatabase: available drivers: QSQLITE

2008-12-18 Thread Wolfgang Rohdewald
On Donnerstag, 18. Dezember 2008, lucabe...@libero.it wrote: I need to connect to mysql db but when i try i see that i have only availabe the driver for sqlite, how can i add the mysql driver? maybe you need to install the package libqt4-sql-mysql (I am running ubuntu) -- Wolfgang

[PyQt] Question about QListView

2008-12-18 Thread Ralph Kube
Hey people, I have a simple question about using QListView in my application. Lets say, I want QListView to display a number of strings. On the command line the following works: str_list = ['str1', 'str2', ... , 'strn'] qstr = QStringList(str_list) qstr_model = QStringListModel(qstr) lv =

Re: [PyQt] Question about QListView

2008-12-18 Thread Phil Thompson
On Thu, 18 Dec 2008 13:11:19 +0100, Ralph Kube ralphk...@googlemail.com wrote: Hey people, I have a simple question about using QListView in my application. Lets say, I want QListView to display a number of strings. On the command line the following works: str_list = ['str1', 'str2', ... ,

[PyQt] Cleaning up when unloading embedded Python + PyQt

2008-12-18 Thread Paul A. Giannaros
I have a plugin that is loaded and unloaded by a KDE-based application on will. The plugin hosts Python and exposes the application's interface to Python scripts. I'm having a problem with a crash when unloading the plugin. From the traceback[1] it looks like events are being routed to PyQt even