4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
22 /* Copyright (c) 1988 AT&T */
23 /* All Rights Reserved */
27 * Copyright (c) 1997, by Sun Mircrosystems, Inc.
28 * All rights reserved.
31 #pragma ident "%Z%%M% %I% %E% SMI" /* SVr4.0 1.2 */
35 #include <sys/types.h>
38 /* Calculate the numbers of rows and columns needed to display the menu */
45 if (Items(m
) && IthItem(m
, 0)) {
46 /* Get the width of one column */
47 width
= MaxName(m
) + Marklen(m
);
49 if (ShowDesc(m
) && MaxDesc(m
)) {
50 width
+= MaxDesc(m
) + 1;
54 /* Multiply this by the number of columns */
55 width
= width
* Cols(m
);
56 /* Add in the number of spaces between columns */
63 scale_menu(MENU
*m
, int *r
, int *c
)
66 return (E_BAD_ARGUMENT
);
68 if (Items(m
) && IthItem(m
, 0)) {
73 return (E_NOT_CONNECTED
);