2000-10-11 07:31:01 +00:00
|
|
|
/****************************************************************************
|
|
|
|
* Copyright (c) 2000 Free Software Foundation, Inc. *
|
|
|
|
* *
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a *
|
|
|
|
* copy of this software and associated documentation files (the *
|
|
|
|
* "Software"), to deal in the Software without restriction, including *
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish, *
|
|
|
|
* distribute, distribute with modifications, sublicense, and/or sell *
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is *
|
|
|
|
* furnished to do so, subject to the following conditions: *
|
|
|
|
* *
|
|
|
|
* The above copyright notice and this permission notice shall be included *
|
|
|
|
* in all copies or substantial portions of the Software. *
|
|
|
|
* *
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
|
|
|
|
* IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
|
|
|
|
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
|
|
|
|
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
|
|
|
|
* THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
|
|
|
|
* *
|
|
|
|
* Except as contained in this notice, the name(s) of the above copyright *
|
|
|
|
* holders shall not be used in advertising or otherwise to promote the *
|
|
|
|
* sale, use or other dealings in this Software without prior written *
|
|
|
|
* authorization. *
|
|
|
|
****************************************************************************/
|
|
|
|
|
2002-05-21 05:30:25 +00:00
|
|
|
/* $Id: panel.priv.h,v 1.19 2001/06/02 23:31:05 tom Exp $ */
|
1999-08-24 01:06:48 +00:00
|
|
|
|
2001-05-17 08:21:06 +00:00
|
|
|
#ifndef NCURSES_PANEL_PRIV_H
|
|
|
|
#define NCURSES_PANEL_PRIV_H 1
|
1999-08-24 01:06:48 +00:00
|
|
|
|
|
|
|
#if HAVE_CONFIG_H
|
|
|
|
# include <ncurses_cfg.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#if HAVE_LIBDMALLOC
|
|
|
|
# include <dmalloc.h> /* Gray Watson's library */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAVE_LIBDBMALLOC
|
|
|
|
# include <dbmalloc.h> /* Conor Cahill's library */
|
|
|
|
#endif
|
|
|
|
|
2002-05-21 05:30:25 +00:00
|
|
|
#include "curses.priv.h"
|
1999-08-24 01:06:48 +00:00
|
|
|
#include "panel.h"
|
2001-05-17 08:21:06 +00:00
|
|
|
#include <nc_panel.h>
|
1999-08-24 01:06:48 +00:00
|
|
|
|
|
|
|
#if ( CC_HAS_INLINE_FUNCS && !defined(TRACE) )
|
|
|
|
# define INLINE inline
|
|
|
|
#else
|
|
|
|
# define INLINE
|
|
|
|
#endif
|
|
|
|
|
2000-10-11 07:31:01 +00:00
|
|
|
#if USE_RCS_IDS
|
1999-08-24 01:06:48 +00:00
|
|
|
# define MODULE_ID(id) static const char Ident[] = id;
|
|
|
|
#else
|
|
|
|
# define MODULE_ID(id) /*nothing*/
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef TRACE
|
2001-05-17 08:21:06 +00:00
|
|
|
extern NCURSES_EXPORT(const char *) _nc_my_visbuf (const void *);
|
1999-08-24 01:06:48 +00:00
|
|
|
# ifdef TRACE_TXT
|
|
|
|
# define USER_PTR(ptr) _nc_visbuf((const char *)ptr)
|
|
|
|
# else
|
|
|
|
# define USER_PTR(ptr) _nc_my_visbuf((const char *)ptr)
|
|
|
|
# endif
|
|
|
|
|
2001-05-17 08:21:06 +00:00
|
|
|
extern NCURSES_EXPORT(void) _nc_dPanel (const char*, const PANEL*);
|
|
|
|
extern NCURSES_EXPORT(void) _nc_dStack (const char*, int, const PANEL*);
|
|
|
|
extern NCURSES_EXPORT(void) _nc_Wnoutrefresh (const PANEL*);
|
|
|
|
extern NCURSES_EXPORT(void) _nc_Touchpan (const PANEL*);
|
|
|
|
extern NCURSES_EXPORT(void) _nc_Touchline (const PANEL*, int, int);
|
1999-08-24 01:06:48 +00:00
|
|
|
|
|
|
|
# define dBug(x) _tracef x
|
|
|
|
# define dPanel(text,pan) _nc_dPanel(text,pan)
|
|
|
|
# define dStack(fmt,num,pan) _nc_dStack(fmt,num,pan)
|
|
|
|
# define Wnoutrefresh(pan) _nc_Wnoutrefresh(pan)
|
|
|
|
# define Touchpan(pan) _nc_Touchpan(pan)
|
|
|
|
# define Touchline(pan,start,count) _nc_Touchline(pan,start,count)
|
|
|
|
#else /* !TRACE */
|
|
|
|
# define dBug(x)
|
|
|
|
# define dPanel(text,pan)
|
|
|
|
# define dStack(fmt,num,pan)
|
|
|
|
# define Wnoutrefresh(pan) wnoutrefresh((pan)->win)
|
|
|
|
# define Touchpan(pan) touchwin((pan)->win)
|
|
|
|
# define Touchline(pan,start,count) touchline((pan)->win,start,count)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define _nc_stdscr_pseudo_panel _nc_panelhook()->stdscr_pseudo_panel
|
|
|
|
#define _nc_top_panel _nc_panelhook()->top_panel
|
|
|
|
#define _nc_bottom_panel _nc_panelhook()->bottom_panel
|
|
|
|
|
2000-01-26 16:43:25 +00:00
|
|
|
#define EMPTY_STACK() (_nc_top_panel==_nc_bottom_panel)
|
|
|
|
#define Is_Bottom(p) (((p)!=(PANEL*)0) && !EMPTY_STACK() && (_nc_bottom_panel->above==(p)))
|
|
|
|
#define Is_Top(p) (((p)!=(PANEL*)0) && !EMPTY_STACK() && (_nc_top_panel==(p)))
|
|
|
|
#define Is_Pseudo(p) ((p) && ((p)==_nc_bottom_panel))
|
|
|
|
|
|
|
|
/*+-------------------------------------------------------------------------
|
2000-07-03 09:24:12 +00:00
|
|
|
IS_LINKED(pan) - check to see if panel is in the stack
|
2000-01-26 16:43:25 +00:00
|
|
|
--------------------------------------------------------------------------*/
|
|
|
|
/* This works! The only case where it would fail is, when the list has
|
|
|
|
only one element. But this could only be the pseudo panel at the bottom */
|
2000-07-03 09:24:12 +00:00
|
|
|
#define IS_LINKED(p) (((p)->above || (p)->below ||((p)==_nc_bottom_panel)) ? TRUE : FALSE)
|
2000-01-26 16:43:25 +00:00
|
|
|
|
|
|
|
#define PSTARTX(pan) ((pan)->win->_begx)
|
2000-07-03 09:24:12 +00:00
|
|
|
#define PENDX(pan) ((pan)->win->_begx + getmaxx((pan)->win) - 1)
|
2000-01-26 16:43:25 +00:00
|
|
|
#define PSTARTY(pan) ((pan)->win->_begy)
|
2000-07-03 09:24:12 +00:00
|
|
|
#define PENDY(pan) ((pan)->win->_begy + getmaxy((pan)->win) - 1)
|
2000-01-26 16:43:25 +00:00
|
|
|
|
|
|
|
/*+-------------------------------------------------------------------------
|
|
|
|
PANELS_OVERLAPPED(pan1,pan2) - check panel overlapped
|
|
|
|
---------------------------------------------------------------------------*/
|
|
|
|
#define PANELS_OVERLAPPED(pan1,pan2) \
|
|
|
|
(( !(pan1) || !(pan2) || \
|
2000-07-03 09:24:12 +00:00
|
|
|
PSTARTY(pan1) > PENDY(pan2) || PENDY(pan1) < PSTARTY(pan2) ||\
|
|
|
|
PSTARTX(pan1) > PENDX(pan2) || PENDX(pan1) < PSTARTX(pan2) ) \
|
2000-01-26 16:43:25 +00:00
|
|
|
? FALSE : TRUE)
|
|
|
|
|
|
|
|
|
2000-07-03 09:24:12 +00:00
|
|
|
/*+-------------------------------------------------------------------------
|
|
|
|
Compute the intersection rectangle of two overlapping rectangles
|
|
|
|
---------------------------------------------------------------------------*/
|
|
|
|
#define COMPUTE_INTERSECTION(pan1,pan2,ix1,ix2,iy1,iy2)\
|
|
|
|
ix1 = (PSTARTX(pan1) < PSTARTX(pan2)) ? PSTARTX(pan2) : PSTARTX(pan1);\
|
|
|
|
ix2 = (PENDX(pan1) < PENDX(pan2)) ? PENDX(pan1) : PENDX(pan2);\
|
|
|
|
iy1 = (PSTARTY(pan1) < PSTARTY(pan2)) ? PSTARTY(pan2) : PSTARTY(pan1);\
|
|
|
|
iy2 = (PENDY(pan1) < PENDY(pan2)) ? PENDY(pan1) : PENDY(pan2);\
|
|
|
|
assert((ix1<=ix2) && (iy1<=iy2));\
|
|
|
|
|
|
|
|
|
|
|
|
/*+-------------------------------------------------------------------------
|
|
|
|
Walk through the panel stack starting at the given location and
|
|
|
|
check for intersections; overlapping panels are "touched", so they
|
|
|
|
are incrementally overwriting cells that should be hidden.
|
|
|
|
If the "touch" flag is set, the panel gets touched before it is
|
|
|
|
updated.
|
|
|
|
---------------------------------------------------------------------------*/
|
2001-05-17 08:21:06 +00:00
|
|
|
#define PANEL_UPDATE(pan,panstart)\
|
2000-07-03 09:24:12 +00:00
|
|
|
{ PANEL* pan2 = ((panstart) ? (panstart) : _nc_bottom_panel);\
|
2000-01-26 16:43:25 +00:00
|
|
|
while(pan2) {\
|
|
|
|
if ((pan2 != pan) && PANELS_OVERLAPPED(pan,pan2)) {\
|
2000-07-03 09:24:12 +00:00
|
|
|
int y,ix1,ix2,iy1,iy2;\
|
|
|
|
COMPUTE_INTERSECTION(pan,pan2,ix1,ix2,iy1,iy2);\
|
|
|
|
for(y = iy1; y <= iy2; y++) {\
|
|
|
|
if (is_linetouched(pan->win,y - PSTARTY(pan))) {\
|
|
|
|
struct ldat* line = &(pan2->win->_line[y - PSTARTY(pan2)]);\
|
|
|
|
CHANGED_RANGE(line,ix1-PSTARTX(pan2),ix2-PSTARTX(pan2));\
|
|
|
|
}\
|
2000-01-26 16:43:25 +00:00
|
|
|
}\
|
|
|
|
}\
|
|
|
|
pan2 = pan2->above;\
|
2000-07-03 09:24:12 +00:00
|
|
|
}\
|
|
|
|
}
|
|
|
|
|
|
|
|
/*+-------------------------------------------------------------------------
|
|
|
|
Remove panel from stack.
|
|
|
|
---------------------------------------------------------------------------*/
|
|
|
|
#define PANEL_UNLINK(pan,err) \
|
|
|
|
{ err = ERR;\
|
|
|
|
if (pan) {\
|
|
|
|
if (IS_LINKED(pan)) {\
|
|
|
|
if ((pan)->below)\
|
|
|
|
(pan)->below->above = (pan)->above;\
|
|
|
|
if ((pan)->above)\
|
|
|
|
(pan)->above->below = (pan)->below;\
|
|
|
|
if ((pan) == _nc_bottom_panel) \
|
|
|
|
_nc_bottom_panel = (pan)->above;\
|
|
|
|
if ((pan) == _nc_top_panel) \
|
|
|
|
_nc_top_panel = (pan)->below;\
|
|
|
|
err = OK;\
|
|
|
|
}\
|
|
|
|
(pan)->above = (pan)->below = (PANEL*)0;\
|
|
|
|
}\
|
2000-01-26 16:43:25 +00:00
|
|
|
}
|
2000-07-03 09:24:12 +00:00
|
|
|
|
|
|
|
#define HIDE_PANEL(pan,err,err_if_unlinked)\
|
|
|
|
if (IS_LINKED(pan)) {\
|
2001-05-17 08:21:06 +00:00
|
|
|
Touchpan(pan);\
|
|
|
|
PANEL_UPDATE(pan,(PANEL*)0);\
|
2000-07-03 09:24:12 +00:00
|
|
|
PANEL_UNLINK(pan,err);\
|
|
|
|
} \
|
|
|
|
else {\
|
2001-05-17 08:21:06 +00:00
|
|
|
err = err_if_unlinked;\
|
2000-07-03 09:24:12 +00:00
|
|
|
}
|
|
|
|
|
2001-05-17 08:21:06 +00:00
|
|
|
#endif /* NCURSES_PANEL_PRIV_H */
|