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_sub.c,v 1.9 2004/12/11 22:13:39 tom Exp $") 00036 00037 /*--------------------------------------------------------------------------- 00038 | Facility : libnform 00039 | Function : int set_form_sub(FORM *form, WINDOW *win) 00040 | 00041 | Description : Set the subwindow of the form to win. 00042 | 00043 | Return Values : E_OK - success 00044 | E_POSTED - form is posted 00045 +--------------------------------------------------------------------------*/ 00046 NCURSES_EXPORT(int) 00047 set_form_sub(FORM *form, WINDOW *win) 00048 { 00049 T((T_CALLED("set_form_sub(%p,%p)"), form, win)); 00050 00051 if (form && (form->status & _POSTED)) 00052 RETURN(E_POSTED); 00053 00054 Normalize_Form(form)->sub = win; 00055 RETURN(E_OK); 00056 } 00057 00058 /*--------------------------------------------------------------------------- 00059 | Facility : libnform 00060 | Function : WINDOW *form_sub(const FORM *) 00061 | 00062 | Description : Retrieve the window of the form. 00063 | 00064 | Return Values : The pointer to the Subwindow. 00065 +--------------------------------------------------------------------------*/ 00066 NCURSES_EXPORT(WINDOW *) 00067 form_sub(const FORM *form) 00068 { 00069 const FORM *f; 00070 00071 T((T_CALLED("form_sub(%p)"), form)); 00072 00073 f = Normalize_Form(form); 00074 returnWin(Get_Form_Window(f)); 00075 } 00076 00077 /* frm_sub.c ends here */