Пример #1
0
// Clears the screen and the underlying virtual screen. This forces the entire
// screen to be rewritten from scratch. This will cause likely cause a
// noticeable flicker because the screen is completely cleared before
// redrawing it. This is probably not what you want. Instead, you should
// probably use the Erase() function. It is the same as called Erase() followed
// by a call to ClearOk().
func (w *Window) Clear() error {
	if C.wclear(w.win) == C.ERR {
		return errors.New("Failed to clear screen")
	}
	return nil
}
Пример #2
0
func (win *Window) Clear() {
	C.wclear((*C.WINDOW)(win))
}
Пример #3
0
func (w *Window) Clear() {
	C.wclear(w.win)
}
Пример #4
0
/* Clears the window, erasing any content on it */
func (w *Window) Clear() {
	C.wclear((*C.WINDOW)(w))
}
Пример #5
0
func (win *Window) Clear() {
	C.wclear(win.cwin)
}
Пример #6
0
func (win *Window) Clear() {
	in()
	defer out()
	C.wclear((*C.WINDOW)(win))
}
Пример #7
0
func (win *Window) Clear() error {
	if C.wclear((*C.WINDOW)(win)) == C.ERR {
		return CursesError{"wclear failed"}
	}
	return nil
}