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"
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
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
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
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
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