Hi there,
I have started a Gtk.jl project with a base layout generated by Glade.
I struggle with assigning a GtkTreeModel to a Glade generated GtkTreeView
Even though I could generate the TreeView manually, I feel I am missing something. Can someone help? Below is a somewhat M(non)WE (I do not provide a glade file, but let me know if needed)
# Associates widgets from GtkBuilder
win = builder["window"]
...
tree = builder["tree"]
ls = GtkTreeStore(String)
info = push!(ls, ("Information",))
index = push!(ls, ("Index",))
test = push!(ls, ("Test",), index)
tm = GtkTreeModel(ls)
# push!(tree, GtkTreeModel(ls)) # doesn't work
# set_gtk_property!(tree, :child, tm) # doesn't work