]> ncurses.scripts.mit.edu Git - ncurses.git/blob - menu/m_opts.c
2de719d20c20473e858b262c966ceeda06c78439
[ncurses.git] / menu / m_opts.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_opts                                                            *
35 * Menus option routines                                                    *
36 ***************************************************************************/
37
38 #include "menu.priv.h"
39
40 MODULE_ID("$Id: m_opts.c,v 1.8 1998/02/11 12:13:49 tom Exp $")
41
42 /*---------------------------------------------------------------------------
43 |   Facility      :  libnmenu
44 |   Function      :  int set_menu_opts(MENU *menu, Menu_Options opts)
45 |
46 |   Description   :  Set the options for this menu. If the new settings
47 |                    end up in a change of the geometry of the menu, it
48 |                    will be recalculated. This operation is forbidden if
49 |                    the menu is already posted.
50 |
51 |   Return Values :  E_OK           - success
52 |                    E_BAD_ARGUMENT - invalid menu options
53 |                    E_POSTED       - menu is already posted
54 +--------------------------------------------------------------------------*/
55 int set_menu_opts(MENU * menu, Menu_Options opts)
56 {
57   if (opts & ~ALL_MENU_OPTS)
58     RETURN(E_BAD_ARGUMENT);
59
60   if (menu)
61     {
62       if ( menu->status & _POSTED )
63         RETURN(E_POSTED);
64
65       if ( (opts&O_ROWMAJOR) != (menu->opt&O_ROWMAJOR))
66         {
67           /* we need this only if the layout really changed ... */
68           if (menu->items && menu->items[0])
69             {
70               menu->toprow  = 0;
71               menu->curitem = menu->items[0];
72               assert(menu->curitem);
73               set_menu_format( menu, menu->frows, menu->fcols );
74             }
75         }
76
77       menu->opt = opts;
78
79       if (opts & O_ONEVALUE)
80         {
81           ITEM **item;
82
83           if ( ((item=menu->items) != (ITEM**)0) )
84             for(;*item;item++)
85               (*item)->value = FALSE;
86         }
87
88       if (opts & O_SHOWDESC)    /* this also changes the geometry */
89         _nc_Calculate_Item_Length_and_Width( menu );
90     }
91   else
92     _nc_Default_Menu.opt = opts;
93
94   RETURN(E_OK);
95 }
96
97 /*---------------------------------------------------------------------------
98 |   Facility      :  libnmenu
99 |   Function      :  int menu_opts_off(MENU *menu, Menu_Options opts)
100 |
101 |   Description   :  Switch off the options for this menu. If the new settings
102 |                    end up in a change of the geometry of the menu, it
103 |                    will be recalculated. This operation is forbidden if
104 |                    the menu is already posted.
105 |
106 |   Return Values :  E_OK           - success
107 |                    E_BAD_ARGUMENT - invalid options
108 |                    E_POSTED       - menu is already posted
109 +--------------------------------------------------------------------------*/
110 int menu_opts_off(MENU *menu, Menu_Options  opts)
111 {
112   MENU *cmenu = menu; /* use a copy because set_menu_opts must detect
113                          NULL menu itself to adjust its behaviour */
114
115   if (opts & ~ALL_MENU_OPTS)
116     RETURN(E_BAD_ARGUMENT);
117   else
118     {
119       Normalize_Menu(cmenu);
120       opts = cmenu->opt & ~opts;
121       return set_menu_opts( menu, opts );
122     }
123 }
124
125 /*---------------------------------------------------------------------------
126 |   Facility      :  libnmenu
127 |   Function      :  int menu_opts_on(MENU *menu, Menu_Options opts)
128 |
129 |   Description   :  Switch on the options for this menu. If the new settings
130 |                    end up in a change of the geometry of the menu, it
131 |                    will be recalculated. This operation is forbidden if
132 |                    the menu is already posted.
133 |
134 |   Return Values :  E_OK           - success
135 |                    E_BAD_ARGUMENT - invalid menu options
136 |                    E_POSTED       - menu is already posted
137 +--------------------------------------------------------------------------*/
138 int menu_opts_on(MENU * menu, Menu_Options opts)
139 {
140   MENU *cmenu = menu; /* use a copy because set_menu_opts must detect
141                          NULL menu itself to adjust its behaviour */
142
143   if (opts & ~ALL_MENU_OPTS)
144     RETURN(E_BAD_ARGUMENT);
145   else
146     {
147       Normalize_Menu(cmenu);
148       opts = cmenu->opt | opts;
149       return set_menu_opts(menu, opts);
150     }
151 }
152
153 /*---------------------------------------------------------------------------
154 |   Facility      :  libnmenu
155 |   Function      :  Menu_Options menu_opts(const MENU *menu)
156 |
157 |   Description   :  Return the options for this menu.
158 |
159 |   Return Values :  Menu options
160 +--------------------------------------------------------------------------*/
161 Menu_Options menu_opts(const MENU *menu)
162 {
163   return (ALL_MENU_OPTS & Normalize_Menu( menu )->opt);
164 }
165
166 /* m_opts.c ends here */