9fans.net/go@v0.0.5/draw/wsys.go (about) 1 package draw 2 3 // SetLabel sets the host window's title. 4 func (d *Display) SetLabel(label string) { 5 d.conn.Label(label) 6 } 7 8 // Top moves the host window to the top of the host window pile. 9 func (d *Display) Top() { 10 d.conn.Top() 11 } 12 13 // Resize resizes the host window. 14 func (d *Display) Resize(r Rectangle) { 15 d.conn.Resize(r) 16 }