border, box, wborder - add a single-byte border to a window
cc [ flag... ] file... -I /usr/xpg4/include -L /usr/xpg4/lib \ -R /usr/xpg4/lib -lcurses [ library... ] c89 [ flag... ] file... -lcurses [ library... ] #include <curses.h> int border(chtype ls, chtype rs, chtype ts, chtype bs, chtype tl, chtype tr, chtype bl, chtype br);
int wborder(WINDOW *win, chtype ls, chtype rs, chtype ts, chtype bs, chtype tl,chtype tr, chtype bl, chtype br);
int box(WINDOW *win, chtype verch, chtype horch);
The border() and wborder() functions draw a border around the specified window. All parameters must be single-byte characters whose rendition can be expressed using only constants beginning with ACS_. A parameter with the value of 0 is replaced by the default value.
|
The call
box(win, verch, horch)
is a short form for
wborder(win, verch, verch, horch, horch, 0, 0, 0, 0)
When the window is boxed, the bottom and top rows and right and left columns overwrite existing text.
ls
rs
ts
bs
tl
tr
bl
br
win
verch
horch
On success, these functions return OK. Otherwise, they return ERR.
See attributes(5) for descriptions of the following attributes:
|
add_wch(3XCURSES), addch(3XCURSES), attr_get(3XCURSES), attroff(3XCURSES), border_set(3XCURSES), libcurses(3XCURSES), attributes(5), standards(5)
Закладки на сайте Проследить за страницей |
Created 1996-2024 by Maxim Chirkov Добавить, Поддержать, Вебмастеру |