Re: [PyQt] Pimping QTextEdit

2008-11-15 Thread Tero Niemi
Hello, I found your old post: http://www.riverbankcomputing.com/pipermail/pyqt/2008-January/018310.html and I am currently playing with the exactly same idea -- to pimp up QTextEditor class into non-WYSIWYG editor with a style support, and the reason is: to write a Writer's Text Editor. For

Re: [PyQt] QXmlQuery (Xpath...)

2008-11-15 Thread David Boddie
On Mon Nov 3 14:38:13 GMT 2008, celsowm wrote: > I tried a sample for this: http://doc.trolltech.com/qq/qq25-webrobot.html > > and code in python: [...] > and errors in windows: > > AppName: pythonw.exe AppVer: 0.0.0.0 ModName: qtcore4.dll > ModVer: 4.4.2.0 Offset: 000ddaf0 OK, you

Re: [PyQt] Make a exec_() in a Dialog

2008-11-15 Thread [EMAIL PROTECTED]
Hi David, I need insert operations, as get file parts from internet, in main loop of the QDialog. I try to use the QTimer.singleShot to start the wget_file, but it freeze all dialog buttons (as Cancel Button) until the wget_file routine return. know who I can make it? > On Sat Nov 15 17:24:08 G

Re: [PyQt] Make a exec_() in a Dialog

2008-11-15 Thread David Boddie
On Sat Nov 15 17:24:08 GMT 2008, rudsonalves wrote: > I am implementing a dialogue to download programs in an application. I > need to start the dialog to download a file, only after the call of > .exec_(). > > I try implement a .exec_() method, but it no open dialog window. See code: [...] >

[PyQt] Make a exec_() in a Dialog

2008-11-15 Thread [EMAIL PROTECTED]
Hi, I am implementing a dialogue to download programs in an application. I need to start the dialog to download a file, only after the call of .exec_(). I try implement a .exec_() method, but it no open dialog window. See code: ... class DownloadDlg(QDialog, Ui_DownloadDialog): url = ''