QML-rust - bindings for Qt Quick

Bindings are based on DOtherSide C bindings for QML Library is mostly feature-compliant with other bindings based on the library, but lacks some minor features and has quite a few bugs.

Early documentation

Examples

All examples are located in a folder examples/, under example_name.rs and example_name.qml names.

Requires CMake, Make, Qt (Core, Gui, Widgets, Quick) and, of course, Rust.

To run tests: RUST_TEST_THREADS=1 cargo test

In-app examples

Status

Done: * Basic initialization and execution. * Providing properties to QML files. * QAbstractListModels - provides changable models for QML items (early draft, still lacks proper mutability). * QObjects: slots, signals (limited properties support). Emitting signals and receiving slots works. * Registering your own QML types (singletons or not) from Rust code.

To be done: * the library is mostly done, but some stuff is lacking polish, like possible memory leaks or better macro designs.