예제 #1
0
// Move the cursor to the specified coordinates within the window
func (w *Window) Move(y, x int) {
	C.wmove(w.win, C.int(y), C.int(x))
	return
}
예제 #2
0
파일: curses.go 프로젝트: jncorpron/gocurse
// Normally Y is the first parameter passed in curses.
func (win *Window) Move(x, y int) {
	C.wmove((*C.WINDOW)(win), C.int(y), C.int(x))
}
예제 #3
0
파일: curses.go 프로젝트: zozor/gocurse
// Normally Y is the first parameter passed in curses.
func (w *Window) MoveCursor(x, y int) error {
	if C.wmove(w.win, C.int(y), C.int(x)) == ERR {
		return ErrorWindowMove
	}
	return nil
}
예제 #4
0
파일: curses.go 프로젝트: infokiller/fzf
func (w *Window) Move(y int, x int) {
	C.wmove(w.win, C.int(y), C.int(x))
}
예제 #5
0
func (window *Window) Move(y, x int) {
	C.wmove(window.cwin, C.int(y), C.int(x))
}
예제 #6
0
파일: curses.go 프로젝트: gcatlin/gocurses
func (win *Window) Move(y, x int) {
	C.wmove((*C.WINDOW)(win), C.int(y), C.int(x))
	return
}
예제 #7
0
파일: ncurses.go 프로젝트: junegunn/fzf
func (w *CursesWindow) Move(y int, x int) {
	C.wmove(w.impl, C.int(y), C.int(x))
}
예제 #8
0
// Non-atomic move, needs to be called by atomic funcs in order to prevent deadlocks.
func (win *Window) move(x, y int) {
	// Y normally is the first parameter
	C.wmove((*C.WINDOW)(win), C.int(y), C.int(x))
}
예제 #9
0
파일: window.go 프로젝트: zyxar/gocurse
func (win *Window) Move(y, x int) error {
	if C.wmove((*C.WINDOW)(win), C.int(y), C.int(x)) == C.ERR {
		return CursesError{"wmove failed"}
	}
	return nil
}