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

frm_cursor.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_cursor.c,v 1.9 2004/12/11 22:01:03 tom Exp $")
00036 
00037 /*---------------------------------------------------------------------------
00038 |   Facility      :  libnform  
00039 |   Function      :  int pos_form_cursor(FORM * form)
00040 |   
00041 |   Description   :  Moves the form window cursor to the location required
00042 |                    by the form driver to resume form processing. This may
00043 |                    be needed after the application calls a curses library
00044 |                    I/O routine that modifies the cursor position.
00045 |
00046 |   Return Values :  E_OK                      - Success
00047 |                    E_SYSTEM_ERROR            - System error.
00048 |                    E_BAD_ARGUMENT            - Invalid form pointer
00049 |                    E_NOT_POSTED              - Form is not posted
00050 +--------------------------------------------------------------------------*/
00051 NCURSES_EXPORT(int)
00052 pos_form_cursor(FORM *form)
00053 {
00054   int res;
00055 
00056   T((T_CALLED("pos_form_cursor(%p)"), form));
00057 
00058   if (!form)
00059     res = E_BAD_ARGUMENT;
00060   else
00061     {
00062       if (!(form->status & _POSTED))
00063         res = E_NOT_POSTED;
00064       else
00065         res = _nc_Position_Form_Cursor(form);
00066     }
00067   RETURN(res);
00068 }
00069 
00070 /* frm_cursor.c ends here */

© sourcejam.com 2005-2008