func (win *Window) Getmax() (x, y int) { in() defer out() x = int(C.getmaxx((*C.WINDOW)(win))) y = int(C.getmaxy((*C.WINDOW)(win))) return x, y }
/* Gets the maximum possible coordinates on the current screen */ func (w *Window) GetMaxXY() (x, y int) { return int(C.getmaxx((*C.WINDOW)(w))), int(C.getmaxy((*C.WINDOW)(w))) }
// Get windows sizes. func (win *Window) Getmaxyx() (row, col int) { row = int(C.getmaxy((*C.WINDOW)(win))) col = int(C.getmaxx((*C.WINDOW)(win))) return row, col }
func (win *Window) Getmaxy() int { return int(C.getmaxy((*C.WINDOW)(win))) }
func (win *Window) Getmaxyx() (int, int) { return int(C.getmaxy((*C.WINDOW)(win))), int(C.getmaxx((*C.WINDOW)(win))) }