Пример #1
0
// MoveWindow moves the location of the window to the specified coordinates
func (w *Window) MoveWindow(y, x int) {
	C.mvwin(w.win, C.int(y), C.int(x))
	return
}
Пример #2
0
func (win *Window) Mvwin(y, x int) {
	C.mvwin((*C.WINDOW)(win), C.int(y), C.int(x))
}