Tk.jl
Tk.jl copied to clipboard
Julia interface to Tk windowing toolkit.
Right now our resizing design is the following: - window-resizing triggers canvas callbacks - canvases are expected to call `Tk.update()` when finished so that the results are rendered to the...
source annotation indicates that reveal(::Canvas) gets called 3 times per resize event (on Mac OS X, if relevant)
`extras/tk.jl` currently uses an X11-specific hack to handle events. We need to use a more portable method of integrating Tcl/Tk's event loop with our own. We may need to use...
# Summary: Whilst trying to develop my own package that uses Tk, I found I was unable to precompile it. Precompilation was hanging. [Following Julia's developer documentation](https://docs.julialang.org/en/v1/devdocs/precompile_hang/) for support, I...
MWE ``` using Tk, ReactiveToolkit w = Toplevel() windowframe = Frame(w) pack(windowframe, fill="both") @topic thing = 0 thinglbl = Tk.Text(windowframe) Tk.set_value(thinglbl, "$(thing[])") pack(thinglbl) @every seconds(1) thing[] = thing[] + 1...
Hi, I'm very new to Tkinter and I need some help. In the examples online on how to bind a scrollbar to a text element they always use the following...