PyQt + QML
Anyone know the status of Qt Quick bindings for either PyQT or PySide? Would love to see that.
6 replies
I don’t know the status of those bindings but I do know that Qt doesn’t do them, you’ll have to ask the individual projects for their status.
The likely scenario is that Qt Quick bindings, of at least QDeclarativeVIew, will be available when those projects release their Qt 4.7 bindings. Which would be later this year, after the Qt 4.7 release.
If you give it a try you won’t go back :)
For example, In PyQt you can connect to signals as simple as this:
- def myCallback():
- """ This is a simple python function w/o knowing it is a slot """
- print "Button Clicked"
- button.clicked.connect(myCallback)
or you can do it even more sweeter:
- @button.clicked.connect
- def myCallback():
- """ This is a simple python function w/o knowing it is a slot """
- print "Button Clicked"
I just love it!
You must log in to post a reply. Not a member yet? Register here!





