Tk.jl icon indicating copy to clipboard operation
Tk.jl copied to clipboard

Julia interface to Tk windowing toolkit.

Results 16 Tk.jl issues
Sort by recently updated
recently updated
newest added

In "src/dialogs.jl", line 21: `Messagebox(message::AbstractString) = Message(nothing, message=message)` Should be: `Messagebox(message::AbstractString) = Messagebox(nothing, message=message)`

There is no documentation over at [https://juliahub.com/docs/Tk/BVfq8/0.7.0/](https://juliahub.com/docs/Tk/BVfq8/0.7.0/ )

I attempted to run the sketch_window() function in sketch.jl but when it evaluates the line that packs the canvas it throws the following: `ERROR: MethodError: pack(::Canvas) is ambiguous. Candidates: pack(c::Canvas,...

and fix test errors on Windows and 0.6. Fixes #117.

which causes issues when using Atom.jl when importing Tk.jl in user code. Ref: https://github.com/JunoLab/atom-julia-client/issues/118 The solutions I see would be to either - not export `Text` and require the user...

It would be desirable to be able to make a Canvas scrollable, which is not possible right now as Canvas is implemented as a Tk Frame.

I'm trying to use Winston with latest master and I'm getting very frequent InexactErrors when calling `plot`, apparently due to the ccall to TkWinReleaseDrawableDC in tkwidget.jl. The below patch doesn't...

On a Windows 7 machine, I entered the following instructions in the julia REPL. After the last one, the REPL terminates. ``` using Tk t = Toplevel() f = frame(t)...

In ImageView, I have an application where I'm painting a 5-megapixel surface in a loop. It plays more slowly than I'd like under these circumstance. I noticed that if I...

We need to rethink our GUI API. As a small example, the Tk package currently has types `TkWidget`, `Tk_Widget`, `TTk_Widget`, `Canvas`, `TkCanvas`, and `Tk_CairoCanvas`. I know there are reasons for...