qml-rust
qml-rust copied to clipboard
QML (Qt Quick) bindings for Rust language
There is a demonstration of how rust object signal can be connected to qml object, but there is no demo of how parameter is passed even though signal is defined...
QAbstractItemModel is needed to provide treelike models to QML components.
Our install instructions are missing crucial things (#40) and can be more detailed about how to install on specific OSs.
When I try to run any of the examples on windows 10 they appear to compile properly but when they run I get `process didn't exit successfully: 'target\debug\examples\proprieties.exe' (exit code:...
Trying to follow[ vandenoever's tutorial](https://www.vandenoever.info/blog/2017/02/17/a-simple-rust-gui-with-qml.html). Running Qt 5.8 on Sierra and rust 1.15.1, cmake 3.7.2 Even after setting the QTDIR64 dir to /usr/local/opt/qt5 running a cargo build gives : ```...
is it possible to return `Option` instead of `Option` from a slot? if not we should add support for it to make it possible to return local values. currently it...
QAbstractItemModel is the bread and butter of QML. It would be great if they could be created in Rust via a trait. A minimal trait would look like this: ```rust...
I want to modify a Qt model from another thread. Currently I define the model using the `Q_LISTMODEL!` macro, and call `threaded()` to start another thread. When calling `append_row` on...
I'm currently writing a gameboy emulator and I was debating on using Qt. Just in case you can save me time in my research, is it possible for qml-rust to...
webview
hi, do you see any way to use the webview module? Unfortunately the webview needs an initialization by invoking `QtWebView::initialize();`