8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / man / man3curses / panel_new.3curses
blob6638f5068f327cfa3d4a2a6b77ac91d3423a3d38
1 '\" te
2 .\" Copyright 1989 AT&T
3 .\" Portions Copyright (c) 1996, Sun Microsystems, Inc. All Rights Reserved.
4 .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License").  You may not use this file except in compliance with the License.
5 .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing.  See the License for the specific language governing permissions and limitations under the License.
6 .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE.  If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
7 .TH PANEL_NEW 3CURSES "Dec 31, 1996"
8 .SH NAME
9 panel_new, new_panel, del_panel \- create and destroy panels
10 .SH SYNOPSIS
11 .LP
12 .nf
13 \fBcc\fR [ \fIflag\fR ... ] \fIfile\fR ... \fB-lpanel\fR \fB -lcurses \fR [ \fIlibrary\fR .. ]
14 #include <panel.h>
18 \fBPANEL *\fR\fBnew_panel\fR(\fBWINDOW *\fR\fIwin\fR);
19 .fi
21 .LP
22 .nf
23 \fBint\fR \fBdel_panel\fR(\fBPANEL *\fR\fIpanel\fR);
24 .fi
26 .SH DESCRIPTION
27 .sp
28 .LP
29 \fBnew_panel()\fR creates a new panel associated with \fIwin\fR and returns the
30 panel pointer. The new panel is placed on top of the panel deck.
31 .sp
32 .LP
33 \fBdel_panel()\fR destroys \fIpanel\fR, but not its associated window.
34 .SH RETURN VALUES
35 .sp
36 .LP
37 \fBnew_panel()\fR returns \fINULL\fR if an error occurs.
38 .sp
39 .LP
40 \fBdel_win()\fR returns \fBOK\fR if successful, \fBERR\fR otherwise.
41 .SH ATTRIBUTES
42 .sp
43 .LP
44 See \fBattributes\fR(5) for descriptions of the following attributes:
45 .sp
47 .sp
48 .TS
49 box;
50 c | c
51 l | l .
52 ATTRIBUTE TYPE  ATTRIBUTE VALUE
54 MT-Level        Unsafe
55 .TE
57 .SH SEE ALSO
58 .sp
59 .LP
60 \fBcurses\fR(3CURSES), \fBpanel_update\fR(3CURSES), \fBpanels\fR(3CURSES),
61 \fBattributes\fR(5)
62 .SH NOTES
63 .sp
64 .LP
65 The header \fB<panel.h>\fR automatically includes the header
66 \fB<curses.h>\fR\&.