Main Page | Class Hierarchy | Class List | Directories | File List | Class Members | File Members

frm_scale.c

Go to the documentation of this file.
00001 /****************************************************************************
00002  * Copyright (c) 1998-2003,2004 Free Software Foundation, Inc.              *
00003  *                                                                          *
00004  * Permission is hereby granted, free of charge, to any person obtaining a  *
00005  * copy of this software and associated documentation files (the            *
00006  * "Software"), to deal in the Software without restriction, including      *
00007  * without limitation the rights to use, copy, modify, merge, publish,      *
00008  * distribute, distribute with modifications, sublicense, and/or sell       *
00009  * copies of the Software, and to permit persons to whom the Software is    *
00010  * furnished to do so, subject to the following conditions:                 *
00011  *                                                                          *
00012  * The above copyright notice and this permission notice shall be included  *
00013  * in all copies or substantial portions of the Software.                   *
00014  *                                                                          *
00015  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
00016  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
00017  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
00018  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
00019  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
00020  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
00021  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
00022  *                                                                          *
00023  * Except as contained in this notice, the name(s) of the above copyright   *
00024  * holders shall not be used in advertising or otherwise to promote the     *
00025  * sale, use or other dealings in this Software without prior written       *
00026  * authorization.                                                           *
00027  ****************************************************************************/
00028 
00029 /****************************************************************************
00030  *   Author:  Juergen Pfeifer, 1995,1997                                    *
00031  ****************************************************************************/
00032 
00033 #include "form.priv.h"
00034 
00035 MODULE_ID("$Id: frm_scale.c,v 1.9 2004/12/11 22:12:34 tom Exp $")
00036 
00037 /*---------------------------------------------------------------------------
00038 |   Facility      :  libnform  
00039 |   Function      :  int scale_form( const FORM *form, int *rows, int *cols )
00040 |   
00041 |   Description   :  Retrieve size of form
00042 |
00043 |   Return Values :  E_OK              - no error
00044 |                    E_BAD_ARGUMENT    - invalid form pointer
00045 |                    E_NOT_CONNECTED   - no fields connected to form
00046 +--------------------------------------------------------------------------*/
00047 NCURSES_EXPORT(int)
00048 scale_form(const FORM *form, int *rows, int *cols)
00049 {
00050   T((T_CALLED("scale_form(%p,%p,%p)"), form, rows, cols));
00051 
00052   if (!form)
00053     RETURN(E_BAD_ARGUMENT);
00054 
00055   if (!(form->field))
00056     RETURN(E_NOT_CONNECTED);
00057 
00058   if (rows)
00059     *rows = form->rows;
00060   if (cols)
00061     *cols = form->cols;
00062 
00063   RETURN(E_OK);
00064 }
00065 
00066 /* frm_scale.c ends here */

© sourcejam.com 2005-2008