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

Julia interface to Gtk windowing toolkit.

Results 123 Gtk.jl issues
Sort by recently updated
recently updated
newest added

The problem is described here: https://discourse.julialang.org/t/how-to-create-a-modal-dialog-with-gtk-jl/85735 Any idea?

This is it: https://docs.gtk.org/gtk3/method.Window.move.html I could not find it anywhere.

The following works, but it is wrong because I omitted the gbool parameter. See: https://docs.gtk.org/gtk3/method.Window.set_keep_above.html ```julia using Gtk.ShortNames function set_keep_above(win::Gtk.GtkWindow, setting::Bool) # gtk_window_set_keep_above(GTK_WINDOW(window), TRUE) ccall((:gtk_window_set_keep_above, Gtk.libgtk), Nothing, (Ptr{GObject},), win) end...

The scale/slider in the following MWE ignores the size of the step of the range: ```julia using Gtk win = GtkWindow("My First Gtk.jl Program", 400, 200) b = GtkScale(false, 1:2:11)...

It took me a while to figure out how to make an animation. I think an example and/or an explanation belongs in the docs. I've tested this and it seems...

I first posted this at https://github.com/JuliaImages/ImageView.jl/issues/178, but maybe here is more appropriate: The issue is that ImageView will not refresh the displayed images in a tight computational loop displaying intermediate...

It's the first time I do this, I hope I didn't messed up somewhere. I didn't added short names because there's already some clipboard methods in Base, but maybe it's...

There are no documentation strings. For example: ```julia help?> GtkWindow search: GtkWindow GtkWindowLeaf @GtkWindow GtkScrolledWindow GtkScrolledWindowLeaf @GtkScrolledWindow No documentation found. Summary ≡≡≡≡≡≡≡≡≡ abstract type GtkWindow ... ``` All types should...

Using checkboxes is neither documented in the help, nor is there an example how to do that available. Please, add a simple example for a dialog with checkboxes without using...

I have a window that can be opened in multiple places to edit parameter values in an experiment struct. I want to set callbacks to "confirm" and "cancel" to do...