]> ncurses.scripts.mit.edu Git - ncurses.git/blob - menu/m_item_opt.c
ncurses 4.2
[ncurses.git] / menu / m_item_opt.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_item_opt                                                        *
35 * Menus item option routines                                               *
36 ***************************************************************************/
37
38 #include "menu.priv.h"
39
40 MODULE_ID("$Id: m_item_opt.c,v 1.6 1998/02/11 12:13:49 tom Exp $")
41
42 /*---------------------------------------------------------------------------
43 |   Facility      :  libnmenu  
44 |   Function      :  int set_item_opts(ITEM *item, Item_Options opts)  
45 |   
46 |   Description   :  Set the options of the item. If there are relevant
47 |                    changes, the item is connected and the menu is posted,
48 |                    the menu will be redisplayed.
49 |
50 |   Return Values :  E_OK            - success
51 |                    E_BAD_ARGUMENT  - invalid item options
52 +--------------------------------------------------------------------------*/
53 int set_item_opts(ITEM *item, Item_Options opts)
54
55   if (opts & ~ALL_ITEM_OPTS)
56     RETURN(E_BAD_ARGUMENT);
57   
58   if (item)
59     {
60       if (item->opt != opts)
61         {               
62           MENU *menu = item->imenu;
63           
64           item->opt = opts;
65           
66           if ((!(opts & O_SELECTABLE)) && item->value)
67             item->value = FALSE;
68           
69           if (menu && (menu->status & _POSTED))
70             {
71               Move_And_Post_Item( menu, item );
72               _nc_Show_Menu(menu);
73             }
74         }
75     }
76   else
77     _nc_Default_Item.opt = opts;
78   
79   RETURN(E_OK);
80 }
81
82 /*---------------------------------------------------------------------------
83 |   Facility      :  libnmenu  
84 |   Function      :  int item_opts_off(ITEM *item, Item_Options opts)   
85 |   
86 |   Description   :  Switch of the options for this item.
87 |
88 |   Return Values :  E_OK            - success
89 |                    E_BAD_ARGUMENT  - invalid options
90 +--------------------------------------------------------------------------*/
91 int item_opts_off(ITEM *item, Item_Options  opts)
92
93   ITEM *citem = item; /* use a copy because set_item_opts must detect
94                          NULL item itself to adjust its behaviour */
95
96   if (opts & ~ALL_ITEM_OPTS)
97     RETURN(E_BAD_ARGUMENT);
98   else
99     {
100       Normalize_Item(citem);
101       opts = citem->opt & ~opts;
102       return set_item_opts( item, opts );
103     }
104 }
105
106 /*---------------------------------------------------------------------------
107 |   Facility      :  libnmenu  
108 |   Function      :  int item_opts_on(ITEM *item, Item_Options opts)   
109 |   
110 |   Description   :  Switch on the options for this item.
111 |
112 |   Return Values :  E_OK            - success
113 |                    E_BAD_ARGUMENT  - invalid options
114 +--------------------------------------------------------------------------*/
115 int item_opts_on(ITEM *item, Item_Options opts)
116 {
117   ITEM *citem = item; /* use a copy because set_item_opts must detect
118                          NULL item itself to adjust its behaviour */
119   
120   if (opts & ~ALL_ITEM_OPTS)
121     RETURN(E_BAD_ARGUMENT);
122   else
123     {
124       Normalize_Item(citem);
125       opts = citem->opt | opts;
126       return set_item_opts( item, opts );
127     }
128 }
129
130 /*---------------------------------------------------------------------------
131 |   Facility      :  libnmenu  
132 |   Function      :  Item_Options item_opts(const ITEM *item)   
133 |   
134 |   Description   :  Switch of the options for this item.
135 |
136 |   Return Values :  Items options
137 +--------------------------------------------------------------------------*/
138 Item_Options item_opts(const ITEM * item)
139 {
140   return (ALL_ITEM_OPTS & Normalize_Item(item)->opt);
141 }
142
143 /* m_item_opt.c ends here */