Bart Janssens
Bart Janssens
Cool, this shouldn't actually be too hard to support conceptually, but of course Julia itself will have to run on the platform of choice.
True, that would be more consistent. I did discuss with @shashi about issue #43, so I'm going to take a close look at the Observables package first and see if...
Hi, Sorry for my late reply, but this is probably the device pixel ratio. The `gr.jl` example takes this into account. The trick is to pass the QML item to...
Well, this was easier than I thought, so now it uses SVG if available and falls back to PNG otherwise. Probably some config options would be good to have, as...
Unfortunately, not at this moment, see https://github.com/JuliaLang/julia/issues/17573 The usual workaround can be applied using event loops, however. In QML.jl you can use `exec_async()` instead of `exec()` to launch the application,...
I think I tried that, but got a deadlock. I spent hours trying different synchronization schemes, but none worked. My final attempt ended in this unanswered question: https://forum.qt.io/topic/70649/qquickframebufferobject-render-function-on-main-thread Note that...
@jtravs Could you maybe elaborate on the use case a little? Is the`exec_async` workaround insufficient for your problem?
It should be possible to launch the QML gui from the main Julia process using `async_exec`, and then from the same process launch the working processes. You could then collect...
Threading is still a work in progress actually. Some support for this is there with Julia 1.9, but multi-threaded programs hang with GC enabled.
Not sure either. I just released some GC-related changes (libcxxwrap-julia 0.5.3), maybe that helps.