コード例 #1
0
ファイル: window.go プロジェクト: trotha01/goncurses
// MoveGetChar moves the cursor to the given position and gets a character
// from the input stream
func (w *Window) MoveGetChar(y, x int) Key {
	return Key(C.mvwgetch(w.win, C.int(y), C.int(x)))
}
コード例 #2
0
ファイル: curses.go プロジェクト: srm88/gocurse
func (win *Window) MvGetch(x, y int) int {
	return int(C.mvwgetch((*C.WINDOW)(win), C.int(y), C.int(x)))
}