8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / man / man3curses / menu_win.3curses
blob7d874c380f305066959bcc9a5c67ee5733b5e16e
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 MENU_WIN 3CURSES "Dec 31, 1996"
8 .SH NAME
9 menu_win, set_menu_win, set_menu_sub, menu_sub, scale_menu \- menus window and
10 subwindow association routines
11 .SH SYNOPSIS
12 .LP
13 .nf
14 \fBcc\fR [ \fIflag\fR... ] \fIfile\fR... \fB-lmenu\fR \fB -lcurses \fR [ \fIlibrary\fR... ]
15 #include <menu.h>
17 \fBint\fR \fBset_menu_win\fR(\fBMENU *\fR\fImenu\fR, \fBWINDOW *\fR\fIwin\fR);
18 .fi
20 .LP
21 .nf
22 \fBWINDOW *\fR\fBmenu_win\fR(\fBMENU *\fR\fImenu\fR);
23 .fi
25 .LP
26 .nf
27 \fBint\fR \fBset_menu_sub\fR(\fBMENU *\fR\fImenu\fR, \fBWINDOW *\fR\fIsub\fR);
28 .fi
30 .LP
31 .nf
32 \fBWINDOW *\fR\fBmenu_sub\fR(\fBMENU *\fR\fImenu\fR);
33 .fi
35 .LP
36 .nf
37 \fBint\fR \fBscale_window\fR(\fBMENU *\fR\fImenu\fR, \fBint *\fR\fIrows\fR, \fBint *\fR\fIcols\fR);
38 .fi
40 .SH DESCRIPTION
41 .sp
42 .LP
43 \fBset_menu_win()\fR sets the window of \fImenu\fR to \fIwin\fR.
44 \fBmenu_win()\fR returns a pointer to the window of
45 \fImenu\fR.\fBset_menu_sub()\fR sets the subwindow of \fImenu\fR to \fIsub\fR.
46 \fBmenu_sub()\fR returns a pointer to the subwindow of
47 \fImenu\fR.\fBscale_window()\fR returns the minimum window size necessary for
48 the subwindow of \fImenu\fR. \fIrows\fR and \fIcols\fR are pointers to the
49 locations used to return the values.
50 .SH RETURN VALUES
51 .sp
52 .LP
53 Routines that return pointers always return \fINULL\fR on error. Routines that
54 return an integer return one of the following:
55 .sp
56 .ne 2
57 .na
58 \fBE_OK\fR
59 .ad
60 .RS 19n
61 The routine returned successfully.
62 .RE
64 .sp
65 .ne 2
66 .na
67 \fBE_SYSTEM_ERROR\fR
68 .ad
69 .RS 19n
70 System error.
71 .RE
73 .sp
74 .ne 2
75 .na
76 \fBE_BAD_ARGUMENT\fR
77 .ad
78 .RS 19n
79 An incorrect argument was passed to the routine.
80 .RE
82 .sp
83 .ne 2
84 .na
85 \fBE_POSTED\fR
86 .ad
87 .RS 19n
88 The menu is already posted.
89 .RE
91 .sp
92 .ne 2
93 .na
94 \fBE_NOT_CONNECTED\fR
95 .ad
96 .RS 19n
97 No items are connected to the menu.
98 .RE
100 .SH ATTRIBUTES
103 See \fBattributes\fR(5) for descriptions of the following attributes:
108 box;
109 c | c
110 l | l .
111 ATTRIBUTE TYPE  ATTRIBUTE VALUE
113 MT-Level        Unsafe
116 .SH SEE ALSO
119 \fBcurses\fR(3CURSES), \fBmenus\fR(3CURSES), \fBattributes\fR(5)
120 .SH NOTES
123 The header \fB<menu.h>\fR automatically includes the headers  \fB<eti.h>\fR and
124 \fB<curses.h>\fR\&.