DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 

curs_refresh(S-osr5)


curs_refresh: refresh, wrefresh, wnoutrefresh, doupdate, redrawwin, wredrawln -- refresh curses windows and lines

Syntax

cc ... -lcurses

#include <curses.h>

int refresh(void); int wrefresh(WINDOW *win); int wnoutrefresh(WINDOW *win); int doupdate(void); int redrawwin(WINDOW *win); int wredrawln(WINDOW *win, int beg_line, int num_lines);

Description

The refresh(S-osr5) and wrefresh(S-osr5) routines (or wnoutrefresh(S-osr5) and doupdate(S-osr5)) must be called to get any output on the terminal, as other routines merely manipulate data structures.

The routine wrefresh( ) copies the specified window to the physical terminal screen, taking into account what is already there in order to do optimizations. The refresh( ) routine is the same, using stdscr as the default window. Unless leaveok(S-osr5) has been enabled, the physical cursor of the terminal is left at the location of the cursor for that window.

The wnoutrefresh( ) and doupdate(S-osr5) routines allow multiple updates with more efficiency than wrefresh( ) alone. In addition to all the window structures, curses(S-osr5) keeps two data structures representing the terminal screen: a physical screen, describing what is actually on the screen; and a virtual screen, describing what the programmer wants to have on the screen.

The routine wrefresh( ) works by first calling wnoutrefresh( ), which copies the specified window to the virtual screen, and then calling doupdate( ), which compares the virtual screen to the physical screen and does the actual update.

If the programmer wishes to output several windows at once, a series of calls to wrefresh( ) results in alternating calls to wnoutrefresh( ) and doupdate( ), causing several bursts of output to the screen. By first calling wnoutrefresh( ) for each window, it is then possible to call doupdate( ) once, resulting in only one burst of output, with fewer total characters transmitted and less CPU time used. If the win argument to wrefresh( ) is the global variable curscr, the screen is immediately cleared and repainted from scratch.

The redrawwin(S-osr5) routine indicates to curses( ) that some screen lines are corrupted and should be thrown away before anything is written over them.

These routines could be used for programs such as editors, which want a command to redraw some part of the screen or the entire screen. Prefer wredrawln(S-osr5) over redrawwin( ) where communications are noisy and redrawing the entire window could be subject to even more communication noise. Just redrawing several lines can correct their appearance.

Return values

All routines return the integer ERR on failure and an integer value other than ERR on successful completion.

Warning

The header file curses.h automatically includes the header files stdio.h and unctrl.h.

The following can be macros: refresh( ) and redrawwin( ).

Files


/usr/lib/libcurses.a
the library

See also

curses(S-osr5), curs_outopts(S-osr5)

Standards conformance

refresh(S-osr5), wrefresh(S-osr5), wnoutrefresh(S-osr5), redrawwin(S-osr5), wredrawln(S-osr5), and doupdate(S-osr5) are not part of any currently supported standard; they were developed by UNIX System Laboratories, Inc. and are maintained by The SCO Group.
© 2005 The SCO Group, Inc. All rights reserved.
SCO OpenServer Release 6.0.0 -- 02 June 2005