Hello, i’m trying to create a GUI using Dash.jl
My GUI need to have the usual buttons, sliders, etc. which is straightforward in Dash.
My issues are :
creating a 2D plot and an image on which I can click with the mouse and get the clicked pixel coordinates
getting key user pressed, no matter where is the focus
for the first issue I was thinking using Makie.jl as a separate window, regarding the second issue, I have no idea how to solve, I did find how to get key pressed as long as the focus is on Julia REPL.
Sorry for not answering your questions directly. But i might guide you towards a solution:
Perhaps you are interested in using Stipple.jl which seems to be more than suitable for creating guis and dashboards. As far as i know it is a pure julia/js package.
Makie has a backend called WGLMakie.jl which uses web gl. It might integrate nicely into stipple amd even be interactive.
This is how i would attempt to achieve your goal. However i am interested how others would do it
Hi, I have been playing with Stipple.jl and I have some issues that I can’t resolve:
In my GUI the user is required to give some inputs, I would like to open a new window/tab in which a new GUI is created, and the user will fill the the needed data, at the end the window/tab will be closed via a button press. I google it but could not find any solution…
I couldn’t find any documentation regarding the Stipple UI features, Where can I find some API documentation for the Stipple Models?