]> ncurses.scripts.mit.edu Git - ncurses.git/blob - man/curs_refresh.3x
ncurses 5.1
[ncurses.git] / man / curs_refresh.3x
1 .\"***************************************************************************
2 .\" Copyright (c) 1998,2000 Free Software Foundation, Inc.                   *
3 .\"                                                                          *
4 .\" Permission is hereby granted, free of charge, to any person obtaining a  *
5 .\" copy of this software and associated documentation files (the            *
6 .\" "Software"), to deal in the Software without restriction, including      *
7 .\" without limitation the rights to use, copy, modify, merge, publish,      *
8 .\" distribute, distribute with modifications, sublicense, and/or sell       *
9 .\" copies of the Software, and to permit persons to whom the Software is    *
10 .\" furnished to do so, subject to the following conditions:                 *
11 .\"                                                                          *
12 .\" The above copyright notice and this permission notice shall be included  *
13 .\" in all copies or substantial portions of the Software.                   *
14 .\"                                                                          *
15 .\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16 .\" OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17 .\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18 .\" IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19 .\" DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20 .\" OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21 .\" THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22 .\"                                                                          *
23 .\" Except as contained in this notice, the name(s) of the above copyright   *
24 .\" holders shall not be used in advertising or otherwise to promote the     *
25 .\" sale, use or other dealings in this Software without prior written       *
26 .\" authorization.                                                           *
27 .\"***************************************************************************
28 .\"
29 .\" $Id: curs_refresh.3x,v 1.8 2000/07/01 20:06:14 tom Exp $
30 .TH curs_refresh 3X ""
31 .SH NAME
32 \fBrefresh\fR,
33 \fBwrefresh\fR,
34 \fBwnoutrefresh\fR,
35 \fBdoupdate\fR,
36 \fBredrawwin\fR,
37 \fBwredrawln\fR - refresh \fBcurses\fR windows and lines
38 .SH SYNOPSIS
39 \fB#include <curses.h>\fR
40
41 \fBint refresh(void);\fR
42 .br
43 \fBint wrefresh(WINDOW *win);\fR
44 .br
45 \fBint wnoutrefresh(WINDOW *win);\fR
46 .br
47 \fBint doupdate(void);\fR
48 .br
49 \fBint redrawwin(WINDOW *win);\fR
50 .br
51 \fBint wredrawln(WINDOW *win, int beg_line, int num_lines);\fR
52 .br
53 .SH DESCRIPTION
54 The \fBrefresh\fR and \fBwrefresh\fR routines (or \fBwnoutrefresh\fR and
55 \fBdoupdate\fR) must be called to get actual output to the terminal, as other
56 routines merely manipulate data structures.  The routine \fBwrefresh\fR copies
57 the named window to the physical terminal screen, taking into account what is
58 already there in order to do optimizations.  The \fBrefresh\fR routine is the
59 same, using \fBstdscr\fR as the default window.  Unless \fBleaveok\fR has been
60 enabled, the physical cursor of the terminal is left at the location of the
61 cursor for that window.
62
63 The \fBwnoutrefresh\fR and \fBdoupdate\fR routines allow multiple updates with
64 more efficiency than \fBwrefresh\fR alone.  In addition to all the window
65 structures, \fBcurses\fR keeps two data structures representing the terminal
66 screen: a physical screen, describing what is actually on the screen, and a
67 virtual screen, describing what the programmer wants to have on the screen.
68
69 The routine \fBwrefresh\fR works by first calling \fBwnoutrefresh\fR, which
70 copies the named window to the virtual screen, and then calling \fBdoupdate\fR,
71 which compares the virtual screen to the physical screen and does the actual
72 update.  If the programmer wishes to output several windows at once, a series
73 of calls to \fBwrefresh\fR results in alternating calls to \fBwnoutrefresh\fR
74 and \fBdoupdate\fR, causing several bursts of output to the screen.  By first
75 calling \fBwnoutrefresh\fR for each window, it is then possible to call
76 \fBdoupdate\fR once, resulting in only one burst of output, with fewer total
77 characters transmitted and less CPU time used.  If the \fIwin\fR argument to
78 \fBwrefresh\fR is the global variable \fBcurscr\fR, the screen is immediately
79 cleared and repainted from scratch.
80
81 The phrase "copies the named window to the virtual screen" above is ambiguous.
82 What actually happens is that all \fItouched\fR (changed) lines in the window
83 are copied to the virtual screen.  This affects programs that use overlapping
84 windows; it means that if two windows overlap, you can refresh them in either
85 order and the overlap region will be modified only when it is explicitly
86 changed.  (But see the section on \fBPORTABILITY\fR below for a warning about
87 exploiting this behavior.)
88
89 The \fBwredrawln\fR routine indicates to \fBcurses\fR that some screen lines
90 are corrupted and should be thrown away before anything is written over them.
91 It touches the indicated lines (marking them changed).
92 The routine \fBredrawwin\fR() touches the entire window.
93 .SH RETURN VALUE
94 Routines that return an integer return \fBERR\fR upon failure, and \fBOK\fR
95 (SVr4 only specifies "an integer value other than \fBERR\fR") upon successful
96 completion.
97 .SH NOTES
98 Note that \fBrefresh\fR and \fBredrawwin\fR may be macros.
99 .SH PORTABILITY
100 The XSI Curses standard, Issue 4 describes these functions.
101
102 Whether \fBwnoutrefresh()\fR copies to the virtual screen the entire contents
103 of a window or just its changed portions has never been well-documented in
104 historic curses versions (including SVr4).  It might be unwise to rely on
105 either behavior in programs that might have to be linked with other curses
106 implementations.  Instead, you can do an explicit \fBtouchwin()\fR before the
107 \fBwnoutrefresh()\fR call to guarantee an entire-contents copy anywhere.
108 .SH SEE ALSO
109 \fBcurses\fR(3X), \fBcurs_outopts\fR(3X)
110 .\"#
111 .\"# The following sets edit modes for GNU EMACS
112 .\"# Local Variables:
113 .\"# mode:nroff
114 .\"# fill-column:79
115 .\"# End: