コード例 #1
0
ファイル: ncurses.go プロジェクト: junegunn/fzf
func (w *CursesWindow) Enclose(y int, x int) bool {
	return bool(C.wenclose(w.impl, C.int(y), C.int(x)))
}
コード例 #2
0
ファイル: window.go プロジェクト: trotha01/goncurses
// Test whether the given coordinates are within the window or not
func (w *Window) Enclose(y, x int) bool {
	return bool(C.wenclose(w.win, C.int(y), C.int(x)))
}
コード例 #3
0
ファイル: window.go プロジェクト: zyxar/gocurse
func (win *Window) Enclose(y, x int) bool {
	if C.wenclose((*C.WINDOW)(win), C.int(y), C.int(x)) == C.FALSE {
		return false
	}
	return true
}