Using GtkReactive
and Gtk
, I can create a GUI that creates new GUI elements:
using GtkReactive, Gtk.ShortNames
w = Window("a")
a = button("a")
b = Box(:h)
push!(b, a)
foreach(a) do _
cb = checkbox(rand(Bool))
foreach(println, cb)
push!(b, cb)
end
push!(w, b)
showall(w)
Can anyone show me a MWE of how to do that with Glade
? How would you add rows and columns with checkboxs in them to an existing Grid
?
Thanks!