blob: cf1164034f36b15fa1546278643c3e5645572f18 [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301/****************************************************************************
micky3879b9f5e72025-07-08 18:04:53 -04002 * Copyright 2020,2021 Thomas E. Dickey *
3 * Copyright 1998-2009,2010 Free Software Foundation, Inc. *
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304 * *
5 * Permission is hereby granted, free of charge, to any person obtaining a *
6 * copy of this software and associated documentation files (the *
7 * "Software"), to deal in the Software without restriction, including *
8 * without limitation the rights to use, copy, modify, merge, publish, *
9 * distribute, distribute with modifications, sublicense, and/or sell *
10 * copies of the Software, and to permit persons to whom the Software is *
11 * furnished to do so, subject to the following conditions: *
12 * *
13 * The above copyright notice and this permission notice shall be included *
14 * in all copies or substantial portions of the Software. *
15 * *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
17 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
19 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
22 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
23 * *
24 * Except as contained in this notice, the name(s) of the above copyright *
25 * holders shall not be used in advertising or otherwise to promote the *
26 * sale, use or other dealings in this Software without prior written *
27 * authorization. *
28 ****************************************************************************/
29
30/****************************************************************************
31 * Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1995 *
32 * and: Eric S. Raymond <esr@snark.thyrsus.com> *
33 * and: Juergen Pfeifer 1997-1999 *
34 * and: Thomas E. Dickey 2000-on *
35 ****************************************************************************/
36
37/* p_new.c
micky3879b9f5e72025-07-08 18:04:53 -040038 * Creation of a new panel
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053039 */
40#include "panel.priv.h"
41
micky3879b9f5e72025-07-08 18:04:53 -040042MODULE_ID("$Id: p_new.c,v 1.24 2021/10/23 15:12:06 tom Exp $")
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053043
44#ifdef TRACE
45static char *stdscr_id;
46static char *new_id;
micky3879b9f5e72025-07-08 18:04:53 -040047
48static PANEL *
49AllocPanel(const char *name)
50{
51 PANEL *result = typeMalloc(PANEL, 1);
52
53 _tracef("create :%s %p", name, (void *)result);
54 return result;
55}
56#define InitUser(name) \
57 if (!name ## _id) \
58 name ## _id = strdup(#name); \
59 pan->user = name ## _id; \
60 _tracef("create :user_ptr %p", pan->user)
61#else
62#define AllocPanel(name) typeMalloc(PANEL, 1)
63#define InitUser(name) \
64 pan->user = (void *)0
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053065#endif
66
67/*+-------------------------------------------------------------------------
68 Get root (i.e. stdscr's) panel.
69 Establish the pseudo panel for stdscr if necessary.
70--------------------------------------------------------------------------*/
71static PANEL *
Steve Kondikae271bc2015-11-15 02:50:53 +010072root_panel(NCURSES_SP_DCL0)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053073{
Steve Kondikae271bc2015-11-15 02:50:53 +010074#if NCURSES_SP_FUNCS
75 struct panelhook *ph = NCURSES_SP_NAME(_nc_panelhook) (sp);
76
77#elif NO_LEAKS
78 struct panelhook *ph = _nc_panelhook();
79#endif
80
micky3879b9f5e72025-07-08 18:04:53 -040081 if (_nc_stdscr_pseudo_panel == (PANEL *)0)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053082 {
83
Steve Kondikae271bc2015-11-15 02:50:53 +010084 assert(SP_PARM && SP_PARM->_stdscr && !_nc_bottom_panel && !_nc_top_panel);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053085#if NO_LEAKS
Steve Kondikae271bc2015-11-15 02:50:53 +010086 ph->destroy = del_panel;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053087#endif
micky3879b9f5e72025-07-08 18:04:53 -040088 _nc_stdscr_pseudo_panel = AllocPanel("root_panel");
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053089 if (_nc_stdscr_pseudo_panel != 0)
90 {
91 PANEL *pan = _nc_stdscr_pseudo_panel;
Steve Kondikae271bc2015-11-15 02:50:53 +010092 WINDOW *win = SP_PARM->_stdscr;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053093
94 pan->win = win;
micky3879b9f5e72025-07-08 18:04:53 -040095 pan->below = (PANEL *)0;
96 pan->above = (PANEL *)0;
97 InitUser(stdscr);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053098 _nc_bottom_panel = _nc_top_panel = pan;
99 }
100 }
101 return _nc_stdscr_pseudo_panel;
102}
103
micky3879b9f5e72025-07-08 18:04:53 -0400104PANEL_EXPORT(PANEL *)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530105new_panel(WINDOW *win)
106{
micky3879b9f5e72025-07-08 18:04:53 -0400107 PANEL *pan = (PANEL *)0;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530108
Steve Kondikae271bc2015-11-15 02:50:53 +0100109 GetWindowHook(win);
110
111 T((T_CALLED("new_panel(%p)"), (void *)win));
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530112
113 if (!win)
114 returnPanel(pan);
115
116 if (!_nc_stdscr_pseudo_panel)
Steve Kondikae271bc2015-11-15 02:50:53 +0100117 (void)root_panel(NCURSES_SP_ARG);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530118 assert(_nc_stdscr_pseudo_panel);
119
micky3879b9f5e72025-07-08 18:04:53 -0400120 if ((pan = AllocPanel("new_panel")) != NULL)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530121 {
122 pan->win = win;
micky3879b9f5e72025-07-08 18:04:53 -0400123 pan->above = (PANEL *)0;
124 pan->below = (PANEL *)0;
125 InitUser(new);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530126 (void)show_panel(pan);
127 }
128 returnPanel(pan);
129}