X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fcurs_refresh.3x.html;h=1e3fc963d870b5782f0f7bec019cc42ffd83977f;hp=06e3fb5b5e6e52a476ee05dec592075c8995ea70;hb=c3b21f65a2687f3894a0d3217006c23f162c893a;hpb=71c0306f0824ef2b10c4c5813fb003db48f3012e diff --git a/doc/html/man/curs_refresh.3x.html b/doc/html/man/curs_refresh.3x.html index 06e3fb5b..1e3fc963 100644 --- a/doc/html/man/curs_refresh.3x.html +++ b/doc/html/man/curs_refresh.3x.html @@ -1,7 +1,6 @@ - + + + curs_refresh 3x -

curs_refresh 3x

-
+

curs_refresh 3x

-
 curs_refresh(3x)                                       curs_refresh(3x)
 
 
 
 
-
-

NAME

+

NAME

        doupdate, redrawwin, refresh, wnoutrefresh, wredrawln,
        wrefresh - refresh curses windows and lines
 
 
-
-

SYNOPSIS

+

SYNOPSIS

        #include <curses.h>
 
        int refresh(void);
@@ -63,8 +61,9 @@
        int wredrawln(WINDOW *win, int beg_line, int num_lines);
 
 
-
-

DESCRIPTION

+

DESCRIPTION

+
+

refresh/wrefresh

        The refresh and wrefresh  routines  (or  wnoutrefresh  and
        doupdate)  must be called to get actual output to the ter-
        minal, as other routines  merely  manipulate  data  struc-
@@ -76,6 +75,8 @@
        minal is left at the location of the cursor for that  win-
        dow.
 
+
+

wnoutrefresh/doupdate

        The  wnoutrefresh and doupdate routines allow multiple up-
        dates with more efficiency than wrefresh alone.  In  addi-
        tion  to  all the window structures, curses keeps two data
@@ -108,15 +109,16 @@
        see the section on PORTABILITY below for a  warning  about
        exploiting this behavior.)
 
+
+

wredrawln/redrawwin

        The wredrawln routine indicates to curses that some screen
        lines are corrupted and should be thrown away before  any-
        thing  is  written  over  them.   It touches the indicated
-       lines (marking them  changed).   The  routine  redrawwin()
+       lines  (marking  them  changed).   The  routine  redrawwin
        touches the entire window.
 
 
-
-

RETURN VALUE

+

RETURN VALUE

        Routines  that  return an integer return ERR upon failure,
        and OK (SVr4 only specifies "an integer value  other  than
        ERR") upon successful completion.
@@ -124,47 +126,56 @@
        X/Open  does not define any error conditions.  In this im-
        plementation
 
-              wnoutrefresh
-                   returns an error  if  the  window  pointer  is
-                   null, or if the window is really a pad.
+          wnoutrefresh
+               returns an error if the window pointer is null, or
+               if the window is really a pad.
 
-              wredrawln
-                   returns  an  error  if  the associated call to
-                   touchln returns an error.
+          wredrawln
+               returns an error if the associated call to touchln
+               returns an error.
 
 
-
-

NOTES

+

NOTES

        Note that refresh and redrawwin may be macros.
 
 
-
-

PORTABILITY

+

PORTABILITY

        The XSI Curses standard, Issue  4  describes  these  func-
        tions.
 
-       Whether  wnoutrefresh()  copies  to the virtual screen the
-       entire contents of a window or just its  changed  portions
-       has never been well-documented in historic curses versions
+       Whether  wnoutrefresh copies to the virtual screen the en-
+       tire contents of a window or just its changed portions has
+       never  been  well-documented  in  historic curses versions
        (including SVr4).  It might be unwise to  rely  on  either
        behavior  in  programs  that  might have to be linked with
        other curses implementations.  Instead, you can do an  ex-
-       plicit  touchwin() before the wnoutrefresh() call to guar-
-       antee an entire-contents copy anywhere.
+       plicit  touchwin before the wnoutrefresh call to guarantee
+       an entire-contents copy anywhere.
 
 
-
-

SEE ALSO

-       curses(3x), curs_outopts(3x)
+

SEE ALSO

+       curses(3x), curs_outopts(3x) curs_variables(3x).
 
 
 
                                                        curs_refresh(3x)
 
-
-
-Man(1) output converted with -man2html -
+