예제 #1
0
파일: curses.go 프로젝트: infokiller/fzf
func DoUpdate() {
	C.doupdate()
}
예제 #2
0
파일: curses.go 프로젝트: jncorpron/gocurse
func Update() error {
	if int(C.doupdate()) == C.ERR {
		return CursesError{"Doupdate failed"}
	}
	return nil
}
예제 #3
0
func DoUpdate() os.Error {
	if int(C.doupdate()) == 0 {
		return CursesError{"Doupdate failed"}
	}
	return nil
}
예제 #4
0
// Update the screen, refreshing all windows
func Update() error {
	if C.doupdate() == C.ERR {
		return errors.New("Failed to update")
	}
	return nil
}
예제 #5
0
파일: ncurses.go 프로젝트: junegunn/fzf
func (r *FullscreenRenderer) RefreshWindows(windows []Window) {
	for _, w := range windows {
		w.Refresh()
	}
	C.doupdate()
}
예제 #6
0
func RefreshWindows(windows []*Window) {
	for _, w := range windows {
		C.wnoutrefresh(w.win())
	}
	C.doupdate()
}
예제 #7
0
파일: curses.go 프로젝트: zyxar/gocurse
func Doupdate() error {
	if C.doupdate() == C.ERR {
		return CursesError{"doupdate failed"}
	}
	return nil
}