Andrew Hayzen
Andrew Hayzen
Also add a locking mechanism so that a QObject cannot be destroyed while a queued call is happening.
# Design There are discussions open discussing the change of design of API so that we can become closer to a superset of CXX and allow to mix and match...
This uses nightly feature to find the source file for the macro. https://github.com/rust-lang/rust/issues/54725 Requires #198
Currently there is no way to perform any tasks at creation of the object that require access to the CppObj. (eg starting a background thread that takes the update_requester). There...
This means we remove the need to wrappers as the type will still be the same, which helps with https://github.com/KDAB/cxx-qt/discussions/147 etc. ```rust type QColorTest = cxx::UniquePtr; trait QColorImpl { fn...
We would like to support CXX types that the developer has defined themselves to be used with CXX-Qt. This could look like the following to support a custom type. ```rust...
# Native - [ ] Test if we can build on arm64 - [ ] Test if we can build on armhf # Cross compiling - [ ] Support a...
Ensure that our wrapped Qt types have defaults that are the same as Qt and relevant methods (eg getters and setters). - [ ] Default (potentially using the constructor on...