1panel_top(3CURSES) Curses Library Functions panel_top(3CURSES)
2
3
4
6 panel_top, top_panel, bottom_panel - panels deck manipulation routines
7
9 cc [ flag ... ] file ... -lpanel -lcurses [ library .. ]
10 #include <panel.h>
11
12
13
14 int top_panel(PANEL *panel);
15
16
17 int bottom_panel(PANEL *panel);
18
19
21 top_panel() pulls panel to the top of the desk of panels. It leaves the
22 size, location, and contents of its associated window unchanged.
23
24
25 bottom_panel() puts panel at the bottom of the deck of panels. It
26 leaves the size, location, and contents of its associated window
27 unchanged.
28
30 All of these routines return the integer OK upon successful completion
31 or ERR upon error.
32
34 See attributes(5) for descriptions of the following attributes:
35
36
37
38
39 ┌─────────────────────────────┬─────────────────────────────┐
40 │ ATTRIBUTE TYPE │ ATTRIBUTE VALUE │
41 ├─────────────────────────────┼─────────────────────────────┤
42 │MT-Level │Unsafe │
43 └─────────────────────────────┴─────────────────────────────┘
44
46 curses(3CURSES), panel_update(3CURSES), panels(3CURSES), attributes(5)
47
49 The header <panel.h> automatically includes the header <curses.h>.
50
51
52
53SunOS 5.11 31 Dec 1996 panel_top(3CURSES)