예제 #1
0
파일: window.go 프로젝트: zyxar/gocurse
func (win *Window) Getcury() int {
	return int(C.getcury((*C.WINDOW)(win)))
}
예제 #2
0
파일: ncurses.go 프로젝트: Olreich/ncurses
/* Returns the current coordinates of the cursor */
func (w *Window) GetXY() (int, int) {
	return int(C.getcurx((*C.WINDOW)(w))), int(C.getcury((*C.WINDOW)(w)))

}
예제 #3
0
파일: window.go 프로젝트: zyxar/gocurse
func (win *Window) Getyx() (int, int) {
	return int(C.getcury((*C.WINDOW)(win))), int(C.getcurx((*C.WINDOW)(win)))
}