mirror of
https://github.com/diamondburned/cchat-gtk.git
synced 2024-11-16 11:12:44 +00:00
15 lines
205 B
Go
15 lines
205 B
Go
|
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}
|
||
|
}
|