xref: /openbsd-src/lib/libmenu/m_sub.c (revision c7ef0cfc17afcba97172c25e1e3a943e893bc632)
1*c7ef0cfcSnicm /* $OpenBSD: m_sub.c,v 1.6 2023/10/17 09:52:10 nicm Exp $ */
29f1aa62bSmillert 
3457960bfSmillert /****************************************************************************
4*c7ef0cfcSnicm  * Copyright 2020,2021 Thomas E. Dickey                                     *
5*c7ef0cfcSnicm  * Copyright 1998-2009,2010 Free Software Foundation, Inc.                  *
6457960bfSmillert  *                                                                          *
7457960bfSmillert  * Permission is hereby granted, free of charge, to any person obtaining a  *
8457960bfSmillert  * copy of this software and associated documentation files (the            *
9457960bfSmillert  * "Software"), to deal in the Software without restriction, including      *
10457960bfSmillert  * without limitation the rights to use, copy, modify, merge, publish,      *
11457960bfSmillert  * distribute, distribute with modifications, sublicense, and/or sell       *
12457960bfSmillert  * copies of the Software, and to permit persons to whom the Software is    *
13457960bfSmillert  * furnished to do so, subject to the following conditions:                 *
14457960bfSmillert  *                                                                          *
15457960bfSmillert  * The above copyright notice and this permission notice shall be included  *
16457960bfSmillert  * in all copies or substantial portions of the Software.                   *
17457960bfSmillert  *                                                                          *
18457960bfSmillert  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
19457960bfSmillert  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
20457960bfSmillert  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
21457960bfSmillert  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
22457960bfSmillert  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
23457960bfSmillert  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
24457960bfSmillert  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
25457960bfSmillert  *                                                                          *
26457960bfSmillert  * Except as contained in this notice, the name(s) of the above copyright   *
27457960bfSmillert  * holders shall not be used in advertising or otherwise to promote the     *
28457960bfSmillert  * sale, use or other dealings in this Software without prior written       *
29457960bfSmillert  * authorization.                                                           *
30457960bfSmillert  ****************************************************************************/
31457960bfSmillert 
32457960bfSmillert /****************************************************************************
3381d8c4e1Snicm  *   Author:  Juergen Pfeifer, 1995,1997                                    *
34457960bfSmillert  ****************************************************************************/
359f1aa62bSmillert 
369f1aa62bSmillert /***************************************************************************
379f1aa62bSmillert * Module m_sub                                                             *
389f1aa62bSmillert * Menus subwindow association routines                                     *
399f1aa62bSmillert ***************************************************************************/
409f1aa62bSmillert 
419f1aa62bSmillert #include "menu.priv.h"
429f1aa62bSmillert 
43*c7ef0cfcSnicm MODULE_ID("$Id: m_sub.c,v 1.6 2023/10/17 09:52:10 nicm Exp $")
449f1aa62bSmillert 
459f1aa62bSmillert /*---------------------------------------------------------------------------
469f1aa62bSmillert |   Facility      :  libnmenu
479f1aa62bSmillert |   Function      :  int set_menu_sub(MENU *menu, WINDOW *win)
489f1aa62bSmillert |
499f1aa62bSmillert |   Description   :  Sets the subwindow of the menu.
509f1aa62bSmillert |
519f1aa62bSmillert |   Return Values :  E_OK           - success
529f1aa62bSmillert |                    E_POSTED       - menu is already posted
539f1aa62bSmillert +--------------------------------------------------------------------------*/
MENU_EXPORT(int)54*c7ef0cfcSnicm MENU_EXPORT(int)
5584af20ceSmillert set_menu_sub(MENU *menu, WINDOW *win)
569f1aa62bSmillert {
57*c7ef0cfcSnicm   T((T_CALLED("set_menu_sub(%p,%p)"), (void *)menu, (void *)win));
5881d8c4e1Snicm 
599f1aa62bSmillert   if (menu)
609f1aa62bSmillert     {
619f1aa62bSmillert       if (menu->status & _POSTED)
629f1aa62bSmillert 	RETURN(E_POSTED);
63*c7ef0cfcSnicm       else
64*c7ef0cfcSnicm #if NCURSES_SP_FUNCS
65*c7ef0cfcSnicm 	{
66*c7ef0cfcSnicm 	  /* We ensure that usersub is never null. So even if a null
67*c7ef0cfcSnicm 	     WINDOW parameter is passed, we store the SCREENS stdscr.
68*c7ef0cfcSnicm 	     The only MENU that can have a null usersub is the static
69*c7ef0cfcSnicm 	     _nc_default_Menu.
70*c7ef0cfcSnicm 	   */
71*c7ef0cfcSnicm 	  SCREEN *sp = _nc_screen_of(menu->usersub);
72*c7ef0cfcSnicm 
73*c7ef0cfcSnicm 	  menu->usersub = win ? win : sp->_stdscr;
749f1aa62bSmillert 	  _nc_Calculate_Item_Length_and_Width(menu);
759f1aa62bSmillert 	}
76*c7ef0cfcSnicm #else
77*c7ef0cfcSnicm 	menu->usersub = win;
78*c7ef0cfcSnicm #endif
79*c7ef0cfcSnicm     }
809f1aa62bSmillert   else
819f1aa62bSmillert     _nc_Default_Menu.usersub = win;
829f1aa62bSmillert 
839f1aa62bSmillert   RETURN(E_OK);
849f1aa62bSmillert }
859f1aa62bSmillert 
869f1aa62bSmillert /*---------------------------------------------------------------------------
879f1aa62bSmillert |   Facility      :  libnmenu
889f1aa62bSmillert |   Function      :  WINDOW* menu_sub(const MENU *menu)
899f1aa62bSmillert |
909f1aa62bSmillert |   Description   :  Returns a pointer to the subwindow of the menu
919f1aa62bSmillert |
929f1aa62bSmillert |   Return Values :  NULL on error, otherwise a pointer to the window
939f1aa62bSmillert +--------------------------------------------------------------------------*/
94*c7ef0cfcSnicm MENU_EXPORT(WINDOW *)
menu_sub(const MENU * menu)9584af20ceSmillert menu_sub(const MENU *menu)
969f1aa62bSmillert {
979f1aa62bSmillert   const MENU *m = Normalize_Menu(menu);
9881d8c4e1Snicm 
99*c7ef0cfcSnicm   T((T_CALLED("menu_sub(%p)"), (const void *)menu));
10081d8c4e1Snicm   returnWin(Get_Menu_Window(m));
1019f1aa62bSmillert }
1029f1aa62bSmillert 
1039f1aa62bSmillert /* m_sub.c ends here */
104