Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../.././../../../usr/man/man3xcurses/border.3xcurses
Real path: /usr/share/man/man3xcurses/border.3xcurses
Zurück
'\" te .\" Copyright (c) 1990, 1995 by Mortice Kern Systems Inc. All rights reserved. .\" Portions Copyright (c) 1996, Oracle and/or its affiliates. All rights reserved. .TH border 3XCURSES "5 Jun 2002" "Oracle Solaris 11.4" "X/Open Curses Library Functions" .SH NAME border, box, wborder \- add a single-byte border to a window .SH SYNOPSIS .LP .nf \fBcc\fR [ \fIflag\fR... ] \fIfile\fR... \fB-I\fR /usr/xpg4/include \fB-L\fR /usr/xpg4/lib \e \fB-R\fR /usr/xpg4/lib \fB-lcurses\fR [ \fIlibrary\fR... ] \fBc89\fR [ \fIflag\fR... ] \fIfile\fR... \fB-lcurses\fR [ \fIlibrary\fR... ] #include <curses.h> \fBint\fR \fBborder\fR(\fBchtype\fR \fIls\fR, \fBchtype\fR \fIrs\fR, \fBchtype\fR \fIts\fR, \fBchtype\fR \fIbs\fR, \fBchtype\fR \fItl\fR, \fBchtype\fR \fItr\fR, \fBchtype\fR \fIbl\fR, \fBchtype\fR \fIbr\fR); .fi .LP .nf \fBint\fR \fBwborder\fR(\fBWINDOW *\fR\fIwin\fR, \fBchtype\fR \fIls\fR, \fBchtype\fR \fIrs\fR, \fBchtype\fR \fIts\fR, \fBchtype\fR \fIbs\fR, \fBchtype\fR \fItl\fR,\fBchtype\fR \fItr\fR, \fBchtype\fR \fIbl\fR, \fBchtype\fR \fIbr\fR); .fi .LP .nf \fBint\fR \fBbox\fR(\fBWINDOW *\fR\fIwin\fR, \fBchtype\fR \fIverch\fR, \fBchtype\fR \fIhorch\fR); .fi .SH DESCRIPTION .sp .LP The \fBborder()\fR and \fBwborder()\fR 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 \fBACS_\fR. A parameter with the value of 0 is replaced by the default value. .sp .TS tab( ) box; cw(1.83i) lw(1.83i) lw(1.83i) lw(1.83i) lw(1.83i) lw(1.83i) cw(1.83i) . Constant Values for Borders _ Parameter Default Constant Default Character _ \fIverch \fR \fBACS_VLINE\fR | \fIhorch \fR \fBACS_HLINE\fR - \fBls\fR \fBACS_VLINE\fR | \fIrs\fR \fBACS_VLINE\fR | \fIts\fR \fBACS_HLINE\fR - \fIbs\fR \fBACS_HLINE\fR - \fIbl\fR \fBACS_BLCORNER\fR + \fIbr\fR \fBACS_BRCORNER\fR + \fItl\fR \fBACS_ULCORNER\fR + \fBtr\fR \fBACS_URCORNER\fR + .TE .sp .sp .LP The call .sp .in +2 .nf \fBbox(\fR\fIwin\fR, \fIverch\fR, \fIhorch\fR) .fi .in -2 .sp .sp .LP is a short form for .sp .in +2 .nf \fBwborder(\fR\fIwin\fR, \fIverch\fR, \fIverch\fR, \fIhorch\fR, \fIhorch\fR, 0, 0, 0, 0) .fi .in -2 .sp .sp .LP When the window is boxed, the bottom and top rows and right and left columns overwrite existing text. .SH PARAMETERS .sp .ne 2 .mk .na \fB\fIls\fR\fR .ad .RS 9n .rt Is the character and rendition used for the left side of the border. .RE .sp .ne 2 .mk .na \fB\fIrs\fR\fR .ad .RS 9n .rt Is the character and rendition used for the right side of the border. .RE .sp .ne 2 .mk .na \fB\fIts\fR\fR .ad .RS 9n .rt Is the character and rendition used for the top of the border. .RE .sp .ne 2 .mk .na \fB\fIbs\fR\fR .ad .RS 9n .rt Is the character and rendition used for the bottom of the border. .RE .sp .ne 2 .mk .na \fB\fItl\fR\fR .ad .RS 9n .rt Is the character and rendition used for the top-left corner of the border. .RE .sp .ne 2 .mk .na \fB\fItr\fR\fR .ad .RS 9n .rt Is the character and rendition used for the top-right corner of the border. .RE .sp .ne 2 .mk .na \fB\fIbl\fR\fR .ad .RS 9n .rt Is the character and rendition used for the bottom-left corner of the border. .RE .sp .ne 2 .mk .na \fB\fIbr\fR\fR .ad .RS 9n .rt Is the character and rendition used for the bottom-right corner of the border. .RE .sp .ne 2 .mk .na \fB\fIwin\fR\fR .ad .RS 9n .rt Is the pointer to the window in which the border or box is to be drawn. .RE .sp .ne 2 .mk .na \fB\fIverch\fR\fR .ad .RS 9n .rt Is the character and rendition used for the left and right columns of the box. .RE .sp .ne 2 .mk .na \fB\fIhorch\fR\fR .ad .RS 9n .rt Is the character and rendition used for the top and bottom rows of the box. .RE .SH RETURN VALUES .sp .LP On success, these functions return \fBOK\fR. Otherwise, they return \fBERR\fR. .SH ERRORS .sp .LP None. .SH ATTRIBUTES .sp .LP See \fBattributes\fR(7) for descriptions of the following attributes: .sp .TS tab( ) box; cw(2.75i) |cw(2.75i) lw(2.75i) |lw(2.75i) . ATTRIBUTE TYPE ATTRIBUTE VALUE _ Interface Stability Committed _ MT-Level Unsafe _ Standard See \fBstandards\fR(7). .TE .sp .SH SEE ALSO .sp .LP \fBadd_wch\fR(3XCURSES), \fBaddch\fR(3XCURSES), \fBattr_get\fR(3XCURSES), \fBattroff\fR(3XCURSES), \fBborder_set\fR(3XCURSES), \fBlibcurses\fR(3XCURSES), \fBattributes\fR(7), \fBstandards\fR(7)