Ferio
Ferio

Reputation: 516

QWidget and QML Property Bindings

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

Answers (1)

Chris Browet
Chris Browet

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

Related Questions