Re: [PyQt] Kled module

2013-06-25 Thread Robert Kent
Hi Phil, I don't know about using Kled, but I have an LED widget written in pure python/PyQt4 which may suit your needs. You can download it from my google code page here: https://code.google.com/p/gulon-soft/downloads/list Just unpack the zipped tar file and run "(sudo) python setup.py install"

[PyQt] QGestureRecognizer Segmentation Fault

2013-01-10 Thread Robert Kent
Hi everyone, I've been implementing some mouse gestures and have discovered what may be a bug with QGestureRecognizer. Everything functions correctly until the application exits at which point a segmentation fault is thrown. This seems to happen during the deallocation of the QGestureRecognizer

Re: [PyQt] QCompleter with any data Model will cause Segmentation fault in pyQt4?

2012-12-26 Thread Robert Kent
What OS, python version and PyQt version are you using? I'm running OSX10.8, python 2.7 and PyQt 4.9.6 and I can't reproduce your error. On 25 Dec 2012, at 12:46, "^_^Sisyphus^_^" wrote: > Dear all, > > I create QCompleters for QLineEdit, which work fine if there is no > dynamically defined f

[PyQt] QScriptEngineAgent segmentation fault

2012-10-03 Thread Robert Kent
HI All, I'm trying to implement a QtScript debugger but am unable to install a QScriptEngineAgent on a QScriptEngine. A much simplified example of what I'm doing is shown below: from PyQt4.QtCore import * from PyQt4.QtGui import * from PyQt4.QtScript import * if __name__=="__main__": from

[PyQt] QtWebKit and QHttpThreadDelegate

2012-10-01 Thread Robert Kent
Hi, I'm building an app that uses QWebKit to access a webpage that uses AJAX to to fetch data. This data can be displayed either on the webpage (in which case the AJAX request returns HTML snippets) or from the application itself (via evaluateJavaScript() on a QWebFrame which returns a JSON obj

[PyQt] dip @setter bug?

2012-06-15 Thread Robert Kent
Hi, I'm just starting to play with dip as I think the idea is very cool. I have however either missed something (likely) or found a bug (unlikely). Running the following code: from dip.model import Model, Int, Str class ExampleModel(Mod