Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1 | /**************************************************************************** |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2 | * Copyright 2020,2021 Thomas E. Dickey * |
| 3 | * Copyright 1998-2009,2010 Free Software Foundation, Inc. * |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4 | * * |
| 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 |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 38 | * Creation of a new panel |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 39 | */ |
| 40 | #include "panel.priv.h" |
| 41 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 42 | MODULE_ID("$Id: p_new.c,v 1.24 2021/10/23 15:12:06 tom Exp $") |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 43 | |
| 44 | #ifdef TRACE |
| 45 | static char *stdscr_id; |
| 46 | static char *new_id; |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 47 | |
| 48 | static PANEL * |
| 49 | AllocPanel(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 Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 65 | #endif |
| 66 | |
| 67 | /*+------------------------------------------------------------------------- |
| 68 | Get root (i.e. stdscr's) panel. |
| 69 | Establish the pseudo panel for stdscr if necessary. |
| 70 | --------------------------------------------------------------------------*/ |
| 71 | static PANEL * |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 72 | root_panel(NCURSES_SP_DCL0) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 73 | { |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 74 | #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 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 81 | if (_nc_stdscr_pseudo_panel == (PANEL *)0) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 82 | { |
| 83 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 84 | assert(SP_PARM && SP_PARM->_stdscr && !_nc_bottom_panel && !_nc_top_panel); |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 85 | #if NO_LEAKS |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 86 | ph->destroy = del_panel; |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 87 | #endif |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 88 | _nc_stdscr_pseudo_panel = AllocPanel("root_panel"); |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 89 | if (_nc_stdscr_pseudo_panel != 0) |
| 90 | { |
| 91 | PANEL *pan = _nc_stdscr_pseudo_panel; |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 92 | WINDOW *win = SP_PARM->_stdscr; |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 93 | |
| 94 | pan->win = win; |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 95 | pan->below = (PANEL *)0; |
| 96 | pan->above = (PANEL *)0; |
| 97 | InitUser(stdscr); |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 98 | _nc_bottom_panel = _nc_top_panel = pan; |
| 99 | } |
| 100 | } |
| 101 | return _nc_stdscr_pseudo_panel; |
| 102 | } |
| 103 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 104 | PANEL_EXPORT(PANEL *) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 105 | new_panel(WINDOW *win) |
| 106 | { |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 107 | PANEL *pan = (PANEL *)0; |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 108 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 109 | GetWindowHook(win); |
| 110 | |
| 111 | T((T_CALLED("new_panel(%p)"), (void *)win)); |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 112 | |
| 113 | if (!win) |
| 114 | returnPanel(pan); |
| 115 | |
| 116 | if (!_nc_stdscr_pseudo_panel) |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 117 | (void)root_panel(NCURSES_SP_ARG); |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 118 | assert(_nc_stdscr_pseudo_panel); |
| 119 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 120 | if ((pan = AllocPanel("new_panel")) != NULL) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 121 | { |
| 122 | pan->win = win; |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 123 | pan->above = (PANEL *)0; |
| 124 | pan->below = (PANEL *)0; |
| 125 | InitUser(new); |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 126 | (void)show_panel(pan); |
| 127 | } |
| 128 | returnPanel(pan); |
| 129 | } |