X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=panel%2Fp_hide.c;h=7b780d464e166829869f1b4e330bb6456a42213a;hp=bc7c192156cf872e426c2e8a66f2a1519f2fd230;hb=ef2d99350e0d3e4606171b5b1466ab92ec440205;hpb=661078ddbde3ce0f3b06e95642fbb9b5fef7dca1 diff --git a/panel/p_hide.c b/panel/p_hide.c index bc7c1921..7b780d46 100644 --- a/panel/p_hide.c +++ b/panel/p_hide.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 1998 Free Software Foundation, Inc. * + * Copyright (c) 1998-2005,2010 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 * @@ -36,64 +36,27 @@ */ #include "panel.priv.h" -MODULE_ID("$Id: p_hide.c,v 1.2 1998/02/11 12:14:01 tom Exp $") +MODULE_ID("$Id: p_hide.c,v 1.11 2010/01/23 21:22:16 tom Exp $") -/*+------------------------------------------------------------------------- - __panel_unlink(pan) - unlink panel from stack ---------------------------------------------------------------------------*/ -static void -__panel_unlink(PANEL *pan) +NCURSES_EXPORT(int) +hide_panel(register PANEL * pan) { - PANEL *prev; - PANEL *next; + int err = ERR; -#ifdef TRACE - dStack("",1,pan); - if(!_nc_panel_is_linked(pan)) - return; -#endif + T((T_CALLED("hide_panel(%p)"), (void *)pan)); - _nc_override(pan,P_TOUCH); - _nc_free_obscure(pan); + if (pan) + { + GetHook(pan); - prev = pan->below; - next = pan->above; + dBug(("--> hide_panel %s", USER_PTR(pan->user))); + dStack("", 1, pan); - if(prev) - { /* if non-zero, we will not update the list head */ - prev->above = next; - if(next) - next->below = prev; - } - else if(next) - next->below = prev; - if(pan == _nc_bottom_panel) - _nc_bottom_panel = next; - if(pan == _nc_top_panel) - _nc_top_panel = prev; + HIDE_PANEL(pan, err, ERR); - _nc_calculate_obscure(); + err = OK; - pan->above = (PANEL *)0; - pan->below = (PANEL *)0; - dStack("",9,pan); -} - -int -hide_panel(register PANEL *pan) -{ - if(!pan) - return(ERR); - - dBug(("--> hide_panel %s", USER_PTR(pan->user))); - - if(!_nc_panel_is_linked(pan)) - { - pan->above = (PANEL *)0; - pan->below = (PANEL *)0; - return(ERR); + dStack("", 9, pan); } - - __panel_unlink(pan); - return(OK); + returnCode(err); }