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_page.c,v 1.10 2004/12/11 22:08:21 tom Exp $") 00036 00037 /*--------------------------------------------------------------------------- 00038 | Facility : libnform 00039 | Function : int set_form_page(FORM * form,int page) 00040 | 00041 | Description : Set the page number of the form. 00042 | 00043 | Return Values : E_OK - success 00044 | E_BAD_ARGUMENT - invalid form pointer or page number 00045 | E_BAD_STATE - called from a hook routine 00046 | E_INVALID_FIELD - current field can't be left 00047 | E_SYSTEM_ERROR - system error 00048 +--------------------------------------------------------------------------*/ 00049 NCURSES_EXPORT(int) 00050 set_form_page(FORM *form, int page) 00051 { 00052 int err = E_OK; 00053 00054 T((T_CALLED("set_form_page(%p,%d)"), form, page)); 00055 00056 if (!form || (page < 0) || (page >= form->maxpage)) 00057 RETURN(E_BAD_ARGUMENT); 00058 00059 if (!(form->status & _POSTED)) 00060 { 00061 form->curpage = page; 00062 form->current = _nc_First_Active_Field(form); 00063 } 00064 else 00065 { 00066 if (form->status & _IN_DRIVER) 00067 err = E_BAD_STATE; 00068 else 00069 { 00070 if (form->curpage != page) 00071 { 00072 if (!_nc_Internal_Validation(form)) 00073 err = E_INVALID_FIELD; 00074 else 00075 { 00076 Call_Hook(form, fieldterm); 00077 Call_Hook(form, formterm); 00078 err = _nc_Set_Form_Page(form, page, (FIELD *)0); 00079 Call_Hook(form, forminit); 00080 Call_Hook(form, fieldinit); 00081 _nc_Refresh_Current_Field(form); 00082 } 00083 } 00084 } 00085 } 00086 RETURN(err); 00087 } 00088 00089 /*--------------------------------------------------------------------------- 00090 | Facility : libnform 00091 | Function : int form_page(const FORM * form) 00092 | 00093 | Description : Return the current page of the form. 00094 | 00095 | Return Values : >= 0 : current page number 00096 | -1 : invalid form pointer 00097 +--------------------------------------------------------------------------*/ 00098 NCURSES_EXPORT(int) 00099 form_page(const FORM *form) 00100 { 00101 T((T_CALLED("form_page(%p)"), form)); 00102 00103 returnCode(Normalize_Form(form)->curpage); 00104 } 00105 00106 /* frm_page.c ends here */