]> ncurses.scripts.mit.edu Git - ncurses.git/blob - man/curs_refresh.3x
4572b4c9f0eee8f6507436448769b809d0e1200e
[ncurses.git] / man / curs_refresh.3x
1 .\"***************************************************************************
2 .\" Copyright (c) 1998 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.7 1998/03/11 21:12:53 juergen Exp $
30 .TH curs_refresh 3X ""
31 .SH NAME
32 \fBrefresh\fR, \fBwrefresh\fR, \fBwnoutrefresh\fR,
33 \fBdoupdate\fR, \fBredrawwin\fR, \fBwredrawln\fR - refresh
34 \fBcurses\fR windows and lines
35 .SH SYNOPSIS
36 \fB#include <curses.h>\fR
37
38 \fBint refresh(void);\fR
39 .br
40 \fBint wrefresh(WINDOW *win);\fR
41 .br
42 \fBint wnoutrefresh(WINDOW *win);\fR
43 .br
44 \fBint doupdate(void);\fR
45 .br
46 \fBint redrawwin(WINDOW *win);\fR
47 .br
48 \fBint wredrawln(WINDOW *win, int beg_line, int num_lines);\fR
49 .br
50 .SH DESCRIPTION
51 The \fBrefresh\fR and \fBwrefresh\fR routines (or \fBwnoutrefresh\fR and
52 \fBdoupdate\fR) must be called to get actual output to the terminal, as other
53 routines merely manipulate data structures.  The routine \fBwrefresh\fR copies
54 the named window to the physical terminal screen, taking into account what is
55 already there in order to do optimizations.  The \fBrefresh\fR routine is the
56 same, using \fBstdscr\fR as the default window.  Unless \fBleaveok\fR has been
57 enabled, the physical cursor of the terminal is left at the location of the
58 cursor for that window.
59
60 The \fBwnoutrefresh\fR and \fBdoupdate\fR routines allow multiple updates with
61 more efficiency than \fBwrefresh\fR alone.  In addition to all the window
62 structures, \fBcurses\fR keeps two data structures representing the terminal
63 screen: a physical screen, describing what is actually on the screen, and a
64 virtual screen, describing what the programmer wants to have on the screen.
65
66 The routine \fBwrefresh\fR works by first calling \fBwnoutrefresh\fR, which
67 copies the named window to the virtual screen, and then calling \fBdoupdate\fR,
68 which compares the virtual screen to the physical screen and does the actual
69 update.  If the programmer wishes to output several windows at once, a series
70 of calls to \fBwrefresh\fR results in alternating calls to \fBwnoutrefresh\fR
71 and \fBdoupdate\fR, causing several bursts of output to the screen.  By first
72 calling \fBwnoutrefresh\fR for each window, it is then possible to call
73 \fBdoupdate\fR once, resulting in only one burst of output, with fewer total
74 characters transmitted and less CPU time used.  If the \fIwin\fR argument to
75 \fBwrefresh\fR is the global variable \fBcurscr\fR, the screen is immediately
76 cleared and repainted from scratch.
77
78 The phrase "copies the named window to the virtual screen" above is ambiguous.
79 What actually happens is that all \fItouched\fR (changed) lines in the window
80 are copied to the virtual screen.  This affects programs that use overlapping
81 windows; it means that if two windows overlap, you can refresh them in either
82 order and the overlap region will be modified only when it is explicitly
83 changed.  (But see the section on \fBPORTABILITY\fR below for a warning about
84 exploiting this behavior.)
85
86 The \fBwredrawln\fR routine indicates to \fBcurses\fR that some screen lines
87 are corrupted and should be thrown away before anything is written over them.
88 It touches the indicated lines (marking them changed).
89 The routine \fBredrawwin\fR() touches the entire window.
90 .SH RETURN VALUE
91 Routines that return an integer return \fBERR\fR upon failure, and \fBOK\fR
92 (SVr4 only specifies "an integer value other than \fBERR\fR") upon successful
93 completion.
94 .SH NOTES
95 Note that \fBrefresh\fR and \fBredrawwin\fR may be macros.
96 .SH PORTABILITY
97 The XSI Curses standard, Issue 4 describes these functions.
98
99 Whether \fBwnoutrefresh()\fR copies to the virtual screen the entire contents
100 of a window or just its changed portions has never been well-documented in
101 historic curses versions (including SVr4).  It might be unwise to rely on
102 either behavior in programs that might have to be linked with other curses
103 implementations.  Instead, you can do an explicit \fBtouchwin()\fR before the
104 \fBwnoutrefresh()\fR call to guarantee an entire-contents copy anywhere.
105 .SH SEE ALSO
106 \fBcurses\fR(3X), \fBcurs_outopts\fR(3X)
107 .\"#
108 .\"# The following sets edit modes for GNU EMACS
109 .\"# Local Variables:
110 .\"# mode:nroff
111 .\"# fill-column:79
112 .\"# End: