我想拥有一个GTK应用程序,作为第一次迭代,该应用程序应包含一个长列表,一个隐藏的小部件和一个底线。所有这些都应垂直放置。
到目前为止,我尝试使用expand方法进行此操作,但似乎没有任何效果:
package main
import (
"log"
"github.com/gotk3/gotk3/glib"
"github.com/gotk3/gotk3/gtk"
)
func main() {
// Initialize GTK without parsing any command line arguments.
gtk.Init(nil)
// Create a new toplevel window, set its title, and connect it to the
// "destroy" signal to exit the GTK main loop when it is destroyed.
win, err := gtk.WindowNew(gtk.WINDOW_TOPLEVEL)
if err != nil {
log.Fatal("Unable to create window:", err)
}
win.SetDecorated(false)
win.SetTitle("Simple Example")
win.Connect("destroy", func() {
gtk.MainQuit()
})
// Create a new label widget to show in the window.
l, err := gtk.LabelNew("Hello, gotk3!")
if err != nil {
log.Fatal("Unable to create label:", err)
}
ls, err := gtk.ListStoreNew(glib.TYPE_STRING, glib.TYPE_STRING)
if err != nil {
log.Fatal("Unable to create list:", err)
}
tv, err := gtk.TreeViewNewWithModel(ls)
if err != nil {
panic(err)
}
lb, err := gtk.ListBoxNew()
if err != nil {
panic(err)
}
fr, err := gtk.ListBoxRowNew()
if err != nil {
panic(err)
}
sr, err := gtk.ListBoxRowNew()
if err != nil {
panic(err)
}
tr, err := gtk.ListBoxRowNew()
if err != nil {
panic(err)
}
fr.Add(tv)
tr.Add(l)
fr.SetVExpand(true)
tr.SetVExpand(false)
lb.Add(fr)
lb.Add(sr)
lb.Add(tr)
lb.SetVExpand(true)
// Add the label to the window.
win.Add(lb)
// Set the default window size.
win.SetDefaultSize(800, 600)
// Recursively show all widgets contained in this window.
win.ShowAll()
// Begin executing the GTK main loop. This blocks until
// gtk.MainQuit() is run.
gtk.Main()
}
所以我的问题是,是否有关于GTK如何进行布局以及如何使所需的布局正常工作的完整文章。
答案 0 :(得分:0)
ListBox
似乎无法做到这一点。切换到Box
,这可以正常工作。