1 /****************************************************************************
2 * Copyright (c) 1998,2000 Free Software Foundation, Inc. *
4 * Permission is hereby granted, free of charge, to any person obtaining a *
5 * copy of this software and associated documentation files (the *
6 * "Software"), to deal in the Software without restriction, including *
7 * without limitation the rights to use, copy, modify, merge, publish, *
8 * distribute, distribute with modifications, sublicense, and/or sell *
9 * copies of the Software, and to permit persons to whom the Software is *
10 * furnished to do so, subject to the following conditions: *
12 * The above copyright notice and this permission notice shall be included *
13 * in all copies or substantial portions of the Software. *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
16 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
18 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
21 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
23 * Except as contained in this notice, the name(s) of the above copyright *
24 * holders shall not be used in advertising or otherwise to promote the *
25 * sale, use or other dealings in this Software without prior written *
27 ****************************************************************************/
29 /****************************************************************************
30 * Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1995 *
31 * and: Eric S. Raymond <esr@snark.thyrsus.com> *
32 ****************************************************************************/
34 /* panel.c -- implementation of panels library, some core routines */
35 #include "panel.priv.h"
37 MODULE_ID("$Id: panel.c,v 1.20 2001/02/24 23:17:26 tom Exp $")
41 NCURSES_EXPORT(const char *)
42 _nc_my_visbuf (const void *ptr
)
46 sprintf(temp
, "ptr:%p", ptr
);
48 strcpy(temp
, "<null>");
49 return _nc_visbuf(temp
);
55 /*+-------------------------------------------------------------------------
57 --------------------------------------------------------------------------*/
61 (const char *text
, const PANEL
*pan
)
63 _tracef("%s id=%s b=%s a=%s y=%d x=%d",
64 text
, USER_PTR(pan
->user
),
65 (pan
->below
) ? USER_PTR(pan
->below
->user
) : "--",
66 (pan
->above
) ? USER_PTR(pan
->above
->user
) : "--",
67 PSTARTY(pan
), PSTARTX(pan
));
71 /*+-------------------------------------------------------------------------
73 --------------------------------------------------------------------------*/
77 (const char *fmt
, int num
, const PANEL
*pan
)
81 sprintf(s80
,fmt
,num
,pan
);
82 _tracef("%s b=%s t=%s",s80
,
83 (_nc_bottom_panel
) ? USER_PTR(_nc_bottom_panel
->user
) : "--",
84 (_nc_top_panel
) ? USER_PTR(_nc_top_panel
->user
) : "--");
86 _tracef("pan id=%s", USER_PTR(pan
->user
));
87 pan
= _nc_bottom_panel
;
96 /*+-------------------------------------------------------------------------
97 Wnoutrefresh(pan) - debugging hook for wnoutrefresh
98 --------------------------------------------------------------------------*/
101 _nc_Wnoutrefresh (const PANEL
*pan
)
103 dPanel("wnoutrefresh",pan
);
104 wnoutrefresh(pan
->win
);
108 /*+-------------------------------------------------------------------------
110 --------------------------------------------------------------------------*/
113 _nc_Touchpan (const PANEL
*pan
)
115 dPanel("Touchpan",pan
);
120 /*+-------------------------------------------------------------------------
121 Touchline(pan,start,count)
122 --------------------------------------------------------------------------*/
126 (const PANEL
*pan
, int start
, int count
)
129 sprintf(s80
,"Touchline s=%d c=%d",start
,count
);
131 touchline(pan
->win
,start
,count
);
137 /* Some C compilers need something defined in a source file */
138 void _nc_dummy_panel(void) { }