1 /* $OpenBSD: m_spacing.c,v 1.4 1999/05/17 03:04:25 millert Exp $ */ 2 3 /**************************************************************************** 4 * Copyright (c) 1998 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_spacing * 37 * Routines to handle spacing between entries * 38 ***************************************************************************/ 39 40 #include "menu.priv.h" 41 42 MODULE_ID("$From: m_spacing.c,v 1.11 1999/05/16 17:28:09 juergen Exp $") 43 44 #define MAX_SPC_DESC ((TABSIZE) ? (TABSIZE) : 8) 45 #define MAX_SPC_COLS ((TABSIZE) ? (TABSIZE) : 8) 46 #define MAX_SPC_ROWS (3) 47 48 /*--------------------------------------------------------------------------- 49 | Facility : libnmenu 50 | Function : int set_menu_spacing(MENU *menu,int desc, int r, int c); 51 | 52 | Description : Set the spacing between entried 53 | 54 | Return Values : E_OK - on success 55 +--------------------------------------------------------------------------*/ 56 int set_menu_spacing(MENU *menu, int s_desc, int s_row, int s_col ) 57 { 58 MENU *m; /* split for ATAC workaround */ 59 m = Normalize_Menu(menu); 60 61 assert(m); 62 if (m->status & _POSTED) 63 RETURN(E_POSTED); 64 65 if (((s_desc < 0) || (s_desc > MAX_SPC_DESC)) || 66 ((s_row < 0) || (s_row > MAX_SPC_ROWS)) || 67 ((s_col < 0) || (s_col > MAX_SPC_COLS))) 68 RETURN(E_BAD_ARGUMENT); 69 70 m->spc_desc = s_desc ? s_desc : 1; 71 m->spc_rows = s_row ? s_row : 1; 72 m->spc_cols = s_col ? s_col : 1; 73 _nc_Calculate_Item_Length_and_Width(m); 74 75 RETURN(E_OK); 76 } 77 78 79 /*--------------------------------------------------------------------------- 80 | Facility : libnmenu 81 | Function : int menu_spacing (const MENU *,int *,int *,int *); 82 | 83 | Description : Retrieve info about spacing between the entries 84 | 85 | Return Values : E_OK - on success 86 +--------------------------------------------------------------------------*/ 87 int menu_spacing( const MENU *menu, int* s_desc, int* s_row, int* s_col) 88 { 89 const MENU *m; /* split for ATAC workaround */ 90 m = Normalize_Menu(menu); 91 92 assert(m); 93 if (s_desc) *s_desc = m->spc_desc; 94 if (s_row) *s_row = m->spc_rows; 95 if (s_col) *s_col = m->spc_cols; 96 97 RETURN(E_OK); 98 } 99 100 /* m_spacing.c ends here */ 101