1 .\" $NetBSD: curses_refresh.3,v 1.10 2003/04/16 13:35:01 wiz Exp $
4 .\" Brett Lymn (blymn@NetBSD.org, brett_lymn@yahoo.com.au)
6 .\" This code is donated to the NetBSD Foundation by the Author.
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\" notice, this list of conditions and the following disclaimer.
13 .\" 2. Redistributions in binary form must reproduce the above copyright
14 .\" notice, this list of conditions and the following disclaimer in the
15 .\" documentation and/or other materials provided with the distribution.
16 .\" 3. The name of the Author may not be used to endorse or promote
17 .\" products derived from this software without specific prior written
20 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
44 .Nd curses terminal update routines
52 .Fn wrefresh "WINDOW *win"
54 .Fn wnoutrefresh "WINDOW *win"
58 .Fn leaveok "WINDOW *win" "boolf flag"
60 .Fn flushok "WINDOW *win" "boolf flag"
62 These functions update the terminal with the contents of
64 or of the specified window(s).
68 function causes curses to propagate changes made to
70 to the terminal display.
71 Any changes made to subwindows of
77 function is the same as the
79 function, excepting that changes are propagated to the terminal from the
85 function performs the internal processing required by curses to determine
86 what changes need to be made to synchronise the internal screen buffer
87 and the terminal but does not modify the terminal display.
91 function updates the terminal display to match the internal curses
92 representation of the display.
98 functions can be used together to speed up terminal redraws by
99 deferring the actual terminal updates until after a batch of updates
100 to multiple windows has been done.
104 function is equivalent to
105 .Fn wnoutrefresh stdscr
111 function determines whether refresh operations may leave the screen cursor
112 in an arbitrary position on the screen.
117 ensures that the screen cursor is positioned at the current cursor
118 position after a refresh operation has taken place.
122 function is used to determine whether or not the screen's output file
123 descriptor will be flushed on refresh.
128 will cause the output to be flushed.
130 Functions returning pointers will return
132 if an error is detected.
133 The functions that return an int will return one of the following
136 .Bl -tag -width ERR -compact
138 The function completed successfully.
140 An error occurred in the function.
149 on a new, unchanged window has no effect.
153 Curses library complies with the X/Open Curses specification, part of the
154 Single Unix Specification.
156 The Curses package appeared in