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