1 /* $OpenBSD: m_attribs.c,v 1.6 2001/01/22 18:02:02 millert Exp $ */ 2 3 /**************************************************************************** 4 * Copyright (c) 1998,2000 Free Software Foundation, Inc. * 5 * * 6 * Permission is hereby granted, free of charge, to any person obtaining a * 7 * copy of this software and associated documentation files (the * 8 * "Software"), to deal in the Software without restriction, including * 9 * without limitation the rights to use, copy, modify, merge, publish, * 10 * distribute, distribute with modifications, sublicense, and/or sell * 11 * copies of the Software, and to permit persons to whom the Software is * 12 * furnished to do so, subject to the following conditions: * 13 * * 14 * The above copyright notice and this permission notice shall be included * 15 * in all copies or substantial portions of the Software. * 16 * * 17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * 18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * 19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * 20 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, * 21 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR * 22 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * 23 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. * 24 * * 25 * Except as contained in this notice, the name(s) of the above copyright * 26 * holders shall not be used in advertising or otherwise to promote the * 27 * sale, use or other dealings in this Software without prior written * 28 * authorization. * 29 ****************************************************************************/ 30 31 /**************************************************************************** 32 * Author: Juergen Pfeifer <juergen.pfeifer@gmx.net> 1995,1997 * 33 ****************************************************************************/ 34 35 /*************************************************************************** 36 * Module m_attribs * 37 * Control menus display attributes * 38 ***************************************************************************/ 39 40 #include "menu.priv.h" 41 42 MODULE_ID("$From: m_attribs.c,v 1.9 2000/12/10 02:16:48 tom Exp $") 43 44 /* Macro to redraw menu if it is posted and changed */ 45 #define Refresh_Menu(menu) \ 46 if ( (menu) && ((menu)->status & _POSTED) )\ 47 {\ 48 _nc_Draw_Menu( menu );\ 49 _nc_Show_Menu( menu );\ 50 } 51 52 /* "Template" macro to generate a function to set a menus attribute */ 53 #define GEN_MENU_ATTR_SET_FCT( name ) \ 54 NCURSES_IMPEXP int NCURSES_API set_menu_ ## name (MENU * menu, chtype attr)\ 55 {\ 56 if (!(attr==A_NORMAL || (attr & A_ATTRIBUTES)==attr))\ 57 RETURN(E_BAD_ARGUMENT);\ 58 if (menu && ( menu -> name != attr))\ 59 {\ 60 (menu -> name) = attr;\ 61 Refresh_Menu(menu);\ 62 }\ 63 Normalize_Menu( menu ) -> name = attr;\ 64 RETURN(E_OK);\ 65 } 66 67 /* "Template" macro to generate a function to get a menus attribute */ 68 #define GEN_MENU_ATTR_GET_FCT( name ) \ 69 NCURSES_IMPEXP chtype NCURSES_API menu_ ## name (const MENU * menu)\ 70 {\ 71 return (Normalize_Menu( menu ) -> name);\ 72 } 73 74 /*--------------------------------------------------------------------------- 75 | Facility : libnmenu 76 | Function : int set_menu_fore(MENU *menu, chtype attr) 77 | 78 | Description : Set the attribute for selectable items. In single- 79 | valued menus thiis is used to highlight the current 80 | item ((i.e. where the cursor is), in multi-valued 81 | menus this is used to highlight the selected items. 82 | 83 | Return Values : E_OK - success 84 | E_BAD_ARGUMENT - an invalid value has been passed 85 +--------------------------------------------------------------------------*/ 86 GEN_MENU_ATTR_SET_FCT( fore ) 87 88 /*--------------------------------------------------------------------------- 89 | Facility : libnmenu 90 | Function : chtype menu_fore(const MENU* menu) 91 | 92 | Description : Return the attribute used for selectable items that 93 | are current (single-valued menu) or selected (multi- 94 | valued menu). 95 | 96 | Return Values : Attribute value 97 +--------------------------------------------------------------------------*/ 98 GEN_MENU_ATTR_GET_FCT( fore ) 99 100 /*--------------------------------------------------------------------------- 101 | Facility : libnmenu 102 | Function : int set_menu_back(MENU *menu, chtype attr) 103 | 104 | Description : Set the attribute for selectable but not yet selected 105 | items. 106 | 107 | Return Values : E_OK - success 108 | E_BAD_ARGUMENT - an invalid value has been passed 109 +--------------------------------------------------------------------------*/ 110 GEN_MENU_ATTR_SET_FCT( back ) 111 112 /*--------------------------------------------------------------------------- 113 | Facility : libnmenu 114 | Function : chtype menu_back(const MENU *menu) 115 | 116 | Description : Return the attribute used for selectable but not yet 117 | selected items. 118 | 119 | Return Values : Attribute value 120 +--------------------------------------------------------------------------*/ 121 GEN_MENU_ATTR_GET_FCT( back ) 122 123 /*--------------------------------------------------------------------------- 124 | Facility : libnmenu 125 | Function : int set_menu_grey(MENU *menu, chtype attr) 126 | 127 | Description : Set the attribute for unselectable items. 128 | 129 | Return Values : E_OK - success 130 | E_BAD_ARGUMENT - an invalid value has been passed 131 +--------------------------------------------------------------------------*/ 132 GEN_MENU_ATTR_SET_FCT( grey ) 133 134 /*--------------------------------------------------------------------------- 135 | Facility : libnmenu 136 | Function : chtype menu_grey(const MENU *menu) 137 | 138 | Description : Return the attribute used for non-selectable items 139 | 140 | Return Values : Attribute value 141 +--------------------------------------------------------------------------*/ 142 GEN_MENU_ATTR_GET_FCT( grey ) 143 /* m_attribs.c ends here */ 144