Home
last modified time | relevance | path

Searched refs:PANEL (Results 1 – 10 of 10) sorted by relevance

/illumos-gate/usr/src/lib/libeti/panel/inc/
H A Dpanel.h37 struct PANEL *panel_p;
42 typedef struct PANEL struct
50 struct PANEL *below, *above; argument
52 } PANEL; argument
56 extern PANEL *new_panel(WINDOW *);
57 extern int del_panel(PANEL *);
58 extern int hide_panel(PANEL *);
59 extern int show_panel(PANEL *);
60 extern int panel_hidden(PANEL *);
61 extern int move_panel(PANEL *, int, int);
[all …]
H A Dprivate.h48 extern PANEL *_Bottom_panel;
49 extern PANEL *_Top_panel;
53 extern void _intersect_panel(PANEL *);
54 extern void _remove_overlap(PANEL *);
57 extern _obscured_list *_unlink_obs(PANEL *, PANEL *);
/illumos-gate/usr/src/lib/libeti/panel/common/
H A Dmisc.c40 PANEL *_Bottom_panel;
41 PANEL *_Top_panel;
50 panel_window(PANEL *panel) in panel_window()
57 panel_userptr(PANEL *panel) in panel_userptr()
64 set_panel_userptr(PANEL *panel, char *ptr) in set_panel_userptr()
77 PANEL *
78 panel_above(PANEL *panel) in panel_above()
84 return ((panel == panel -> below) ? ((PANEL *) 0) : panel -> above); in panel_above()
92 PANEL *
93 panel_below(PANEL *panel) in panel_below()
[all …]
H A Dnew.c42 add_top(PANEL *panel) in add_top()
63 PANEL *
66 PANEL *panel; in new_panel()
72 !(panel = (PANEL *) malloc(sizeof (PANEL)))) in new_panel()
73 return ((PANEL *) 0); in new_panel()
90 show_panel(PANEL *panel) in show_panel()
H A Dupdate.c45 touch_top(PANEL *panel, int line, _obscured_list *obs, int start_x, int end_x) in touch_top()
47 PANEL *pnl; in touch_top()
83 std_touch_top(int line, PANEL *obs_pnl, int start_x, int end_x) in std_touch_top()
85 PANEL *next_obs; in std_touch_top()
115 touchup(PANEL *panel) in touchup()
159 PANEL *panel; in update_panels()
H A Ddelete.c42 hide_panel(PANEL *panel) in hide_panel()
75 del_panel(PANEL *panel) in del_panel()
88 _remove_overlap(PANEL *panel) in _remove_overlap()
90 PANEL *pnl; in _remove_overlap()
H A Dbottom.c41 bottom_panel(PANEL *panel) in bottom_panel()
43 PANEL *pnl; in bottom_panel()
H A Dreplace.c41 replace_panel(PANEL *panel, WINDOW *window) in replace_panel()
H A Dmove.c41 move_panel(PANEL *panel, int starty, int startx) in move_panel()
H A Dtop.c41 top_panel(PANEL *panel) in top_panel()