X-Git-Url: http://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fcurs_border.3x.html;h=f2f4d5659c9cc48d0dc79b5d10563d5209a70282;hp=5a93d88936de06572fbee545c6b02465a2417094;hb=0948e2c7ac34642a1f8a3a85000933bcbb258cff;hpb=55ccd2b959766810cf7db8d1c4462f338ce0afc8 diff --git a/doc/html/man/curs_border.3x.html b/doc/html/man/curs_border.3x.html index 5a93d889..f2f4d565 100644 --- a/doc/html/man/curs_border.3x.html +++ b/doc/html/man/curs_border.3x.html @@ -1,7 +1,7 @@ - + @@ -65,8 +65,8 @@ int whline(WINDOW *win, chtype ch, int n); int vline(chtype ch, int n); int wvline(WINDOW *win, chtype ch, int n); - mvhline(int y, int x, chtype ch, int n); - mvwhline(WINDOW *, int y, int x, chtype ch, int n); + int mvhline(int y, int x, chtype ch, int n); + int mvwhline(WINDOW *, int y, int x, chtype ch, int n); int mvvline(int y, int x, chtype ch, int n); int mvwvline(WINDOW *, int y, int x, chtype ch, int n); @@ -76,6 +76,7 @@ The border, wborder and box routines draw a box around the edges of a window. Other than the window, each argument is a character with attributes: + ls - left side, rs - right side, ts - top side, @@ -84,8 +85,10 @@ tr - top right-hand corner, bl - bottom left-hand corner, and br - bottom right-hand corner. + If any of these arguments is zero, then the corresponding default values (defined in curses.h) are used instead: + ACS_VLINE, ACS_VLINE, ACS_HLINE, @@ -119,12 +122,16 @@ this appears to be an error. X/Open does not define any error conditions. This imple- - mentation returns an error if the window pointer is null. + mentation returns an error if the window pointer is null. + + Functions with a "mv" prefix first perform a cursor move- + ment using wmove, and return an error if the position is + outside the window, or if the window pointer is null.

NOTES

-       The borders generated by these functions are  inside  bor-
+       The  borders  generated by these functions are inside bor-
        ders (this is also true of SVr4 curses, though the fact is
        not documented).
 
@@ -133,8 +140,8 @@
 
 

PORTABILITY

-       These functions are described in the XSI Curses  standard,
-       Issue  4.   The standard specifies that they return ERR on
+       These  functions are described in the XSI Curses standard,
+       Issue 4.  The standard specifies that they return  ERR  on
        failure, but specifies no error conditions.