Reputation: 516
How can I use property bindings in conjunction with "classic" Qt widgets? Seems to be a cool feature, more powerful than Cocoa Bindings but unfortunately it appears to be restricted to QML.
I did not found any documentation about how to set up these bindings in QtDesigner or programmatically using C++/Python.
Upvotes: 4
Views: 1133
Reputation: 4266
There is an experimental Qt project called "Qt Quick Components for Desktop".
It encapsulated traditional widgets into QML components, so that you can design in QML a traditional widget based UI, including goodies like property binding (and styles !)
see http://labs.qt.nokia.com/2011/03/10/qml-components-for-desktop/
Upvotes: 2