cchat-gtk/internal/ui/header.go

15 lines
205 B
Go
Raw Normal View History

2020-05-26 06:51:06 +00:00
package ui
import "github.com/gotk3/gotk3/gtk"
type header struct {
*gtk.Box
}
func newHeader() *header {
box, _ := gtk.BoxNew(gtk.ORIENTATION_VERTICAL, 0)
box.Show()
// TODO
return &header{box}
}