panel.h 4.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /****************************************************************************
  2. * Copyright 2020 Thomas E. Dickey *
  3. * Copyright 1998-2009,2017 Free Software Foundation, Inc. *
  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. * Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1995 *
  31. * and: Eric S. Raymond <esr@snark.thyrsus.com> *
  32. * and: Juergen Pfeifer 1996-1999,2008 *
  33. ****************************************************************************/
  34. /* $Id: panel.h,v 1.13 2020/02/02 23:34:34 tom Exp $ */
  35. /* panel.h -- interface file for panels library */
  36. #ifndef NCURSES_PANEL_H_incl
  37. #define NCURSES_PANEL_H_incl 1
  38. #include <curses.h>
  39. typedef struct panel
  40. #if !NCURSES_OPAQUE_PANEL
  41. {
  42. WINDOW *win;
  43. struct panel *below;
  44. struct panel *above;
  45. NCURSES_CONST void *user;
  46. }
  47. #endif /* !NCURSES_OPAQUE_PANEL */
  48. PANEL;
  49. #if defined(__cplusplus)
  50. extern "C" {
  51. #endif
  52. extern NCURSES_EXPORT(WINDOW*) panel_window (const PANEL *);
  53. extern NCURSES_EXPORT(void) update_panels (void);
  54. extern NCURSES_EXPORT(int) hide_panel (PANEL *);
  55. extern NCURSES_EXPORT(int) show_panel (PANEL *);
  56. extern NCURSES_EXPORT(int) del_panel (PANEL *);
  57. extern NCURSES_EXPORT(int) top_panel (PANEL *);
  58. extern NCURSES_EXPORT(int) bottom_panel (PANEL *);
  59. extern NCURSES_EXPORT(PANEL*) new_panel (WINDOW *);
  60. extern NCURSES_EXPORT(PANEL*) panel_above (const PANEL *);
  61. extern NCURSES_EXPORT(PANEL*) panel_below (const PANEL *);
  62. extern NCURSES_EXPORT(int) set_panel_userptr (PANEL *, NCURSES_CONST void *);
  63. extern NCURSES_EXPORT(NCURSES_CONST void*) panel_userptr (const PANEL *);
  64. extern NCURSES_EXPORT(int) move_panel (PANEL *, int, int);
  65. extern NCURSES_EXPORT(int) replace_panel (PANEL *,WINDOW *);
  66. extern NCURSES_EXPORT(int) panel_hidden (const PANEL *);
  67. #if NCURSES_SP_FUNCS
  68. extern NCURSES_EXPORT(PANEL *) ground_panel(SCREEN *);
  69. extern NCURSES_EXPORT(PANEL *) ceiling_panel(SCREEN *);
  70. extern NCURSES_EXPORT(void) NCURSES_SP_NAME(update_panels) (SCREEN*);
  71. #endif
  72. #if defined(__cplusplus)
  73. }
  74. #endif
  75. #endif /* NCURSES_PANEL_H_incl */
  76. /* end of panel.h */