]> ncurses.scripts.mit.edu Git - ncurses.git/blob - menu/m_format.c
ncurses 4.2
[ncurses.git] / menu / m_format.c
1 /****************************************************************************
2  * Copyright (c) 1998 Free Software Foundation, Inc.                        *
3  *                                                                          *
4  * Permission is hereby granted, free of charge, to any person obtaining a  *
5  * copy of this software and associated documentation files (the            *
6  * "Software"), to deal in the Software without restriction, including      *
7  * without limitation the rights to use, copy, modify, merge, publish,      *
8  * distribute, distribute with modifications, sublicense, and/or sell       *
9  * copies of the Software, and to permit persons to whom the Software is    *
10  * furnished to do so, subject to the following conditions:                 *
11  *                                                                          *
12  * The above copyright notice and this permission notice shall be included  *
13  * in all copies or substantial portions of the Software.                   *
14  *                                                                          *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22  *                                                                          *
23  * Except as contained in this notice, the name(s) of the above copyright   *
24  * holders shall not be used in advertising or otherwise to promote the     *
25  * sale, use or other dealings in this Software without prior written       *
26  * authorization.                                                           *
27  ****************************************************************************/
28
29 /****************************************************************************
30  *   Author: Juergen Pfeifer <Juergen.Pfeifer@T-Online.de> 1995,1997        *
31  ****************************************************************************/
32
33 /***************************************************************************
34 * Module m_format                                                          *
35 * Set and get maximum numbers of rows and columns in menus                 *
36 ***************************************************************************/
37
38 #include "menu.priv.h"
39
40 MODULE_ID("$Id: m_format.c,v 1.7 1998/02/11 12:13:49 tom Exp $")
41
42 #define minimum(a,b) ((a)<(b) ? (a): (b))
43
44 /*---------------------------------------------------------------------------
45 |   Facility      :  libnmenu  
46 |   Function      :  int set_menu_format(MENU *menu, int rows, int cols)
47 |   
48 |   Description   :  Sets the maximum number of rows and columns of items
49 |                    that may be displayed at one time on a menu. If the
50 |                    menu contains more items than can be displayed at
51 |                    once, the menu will be scrollable.
52 |
53 |   Return Values :  E_OK                   - success
54 |                    E_BAD_ARGUMENT         - invalid values passed
55 |                    E_NOT_CONNECTED        - there are no items connected
56 |                    E_POSTED               - the menu is already posted
57 +--------------------------------------------------------------------------*/
58 int set_menu_format(MENU *menu, int rows, int cols)
59 {
60   int total_rows, total_cols;
61   
62   if (rows<0 || cols<0) 
63     RETURN(E_BAD_ARGUMENT);
64   
65   if (menu)
66     {
67       if ( menu->status & _POSTED )
68         RETURN(E_POSTED);
69       
70       if (!(menu->items))
71         RETURN(E_NOT_CONNECTED);
72       
73       if (rows==0) 
74         rows = menu->frows;
75       if (cols==0) 
76         cols = menu->fcols;
77       
78       if (menu->pattern)
79         Reset_Pattern(menu);
80       
81       menu->frows = rows;
82       menu->fcols = cols;
83       
84       assert(rows>0 && cols>0);
85       total_rows = (menu->nitems - 1)/cols + 1;
86       total_cols = (menu->status & O_ROWMAJOR) ? 
87         minimum(menu->nitems,cols) :
88           (menu->nitems-1)/total_rows + 1;
89       
90       menu->rows    = total_rows;
91       menu->cols    = total_cols;
92       menu->arows   = minimum(total_rows,rows); 
93       menu->toprow  = 0;        
94       menu->curitem = *(menu->items);
95       assert(menu->curitem);
96       menu->status |= _LINK_NEEDED;
97       _nc_Calculate_Item_Length_and_Width(menu);
98     }
99   else
100     {
101       if (rows>0) _nc_Default_Menu.frows = rows;
102       if (cols>0) _nc_Default_Menu.fcols = cols;
103     }
104   
105   RETURN(E_OK);
106 }
107
108 /*---------------------------------------------------------------------------
109 |   Facility      :  libnmenu  
110 |   Function      :  void menu_format(const MENU *menu, int *rows, int *cols)
111 |   
112 |   Description   :  Returns the maximum number of rows and columns that may
113 |                    be displayed at one time on menu.
114 |
115 |   Return Values :  -
116 +--------------------------------------------------------------------------*/
117 void menu_format(const MENU *menu, int *rows, int *cols)
118 {
119   if (rows)
120     *rows = Normalize_Menu(menu)->frows;
121   if (cols)
122     *cols = Normalize_Menu(menu)->fcols;
123 }
124
125 /* m_format.c ends here */