8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / lib / libeti / menu / common / scale.c
blob62c513cf1c26a96f023f6637cd2bafc050b51e7a
1 /*
2 * CDDL HEADER START
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
7 * with the License.
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]
20 * CDDL HEADER END
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 */
33 /*LINTLIBRARY*/
35 #include <sys/types.h>
36 #include "private.h"
38 /* Calculate the numbers of rows and columns needed to display the menu */
40 void
41 _scale(MENU *m)
43 int width;
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;
52 Itemlen(m) = width;
54 /* Multiply this by the number of columns */
55 width = width * Cols(m);
56 /* Add in the number of spaces between columns */
57 width += Cols(m) - 1;
58 Width(m) = width;
62 int
63 scale_menu(MENU *m, int *r, int *c)
65 if (!m) {
66 return (E_BAD_ARGUMENT);
68 if (Items(m) && IthItem(m, 0)) {
69 *r = Height(m);
70 *c = Width(m);
71 return (E_OK);
73 return (E_NOT_CONNECTED);