qml-rust icon indicating copy to clipboard operation
qml-rust copied to clipboard

QML (Qt Quick) bindings for Rust language

Results 22 qml-rust issues
Sort by recently updated
recently updated
newest added
trafficstars

Hi! What is the current project state? Was it discontinued? Why so? This looks pretty great whilst the qt rust bindings generator really doesn't. Thanks for any answers! Best, Yatekii

Please update the DOtherSide submodule to be compatible with newer Qt versions :new:

The build script: -------------------- set CMAKE_PREFIX_PATH="c:\msys64\mingw64\qt5-static" set RUST_BACKTRACE=1 cargo.exe build --verbose The error log: -------------------- Fresh lazy_static v0.2.2 Fresh libc v0.2.20 Compiling qml v0.0.9 (file:///C:/Users/Vano/.cargo/registry/src/github.com-1ecc6299db9ec823/qml-0.0.9) Running `C:\Users\Vano\.cargo\registry\src\github.com-1ecc6299db9ec823\qml-0.0.9\target\debug\build\qml-a381d2022eef86b2\build-script-build` error: failed to...

bug
question

Trying to build [this](https://www.vandenoever.info/blog/2017/02/17/a-simple-rust-gui-with-qml.html) with the latest nightly: ``` Compiling sousa v0.1.0 (file:///D:/projects/sousa) error: linking with `link.exe` failed: exit code: 1120 note: "D:\\Program Files\\Microsoft Visual Studio 14.0\\VC\\bin\\amd64\\link.exe" "/NOLOGO" "/NXCOMPAT" "/LIBPATH:D:\\Program...

I am not 100% sure it is the cause, but roughly after updating from 1.16 to 1.17 I can my project fails and qmp-rust unit tests do not pass either:...

I'm designing a multi-page/window GUI. To clean up my code, I'd like to pass properties from different files on page change. For example: 1. You start the app and main.rs...

My application started exiting with status code 1 and I think one time I've seen signal 11 too. Investigation narrowed it down to this line: ``` let mut local =...

```bash $ cargo run --example threaded Finished dev [unoptimized + debuginfo] target(s) in 0.0 secs Running `target/debug/examples/threaded` qml: Page downloaded Anything qml: Page downloaded Anything qml: Page downloaded Anything qml:...

I'm trying to build this on macOS 10.12.3. I first installed qt5 with Homebrew via `brew install qt5`, and confirmed that /usr/local/opt/qt5 exists. I then stuck `qml = "0.0.9"` in...

Hi! I'm currently trying to start from a standard Qt Creator project and delegate the "backend" to rust directly via ffi. But I still want to use c++ where the...