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