Searched refs:PANEL (Results 1 – 11 of 11) sorted by relevance
/titanic_41/usr/src/lib/libeti/panel/inc/ |
H A D | panel.h | 39 struct PANEL *panel_p; 44 typedef struct PANEL struct 52 struct PANEL *below, *above; argument 54 } PANEL; argument 58 extern PANEL *new_panel(WINDOW *); 59 extern int del_panel(PANEL *); 60 extern int hide_panel(PANEL *); 61 extern int show_panel(PANEL *); 62 extern int panel_hidden(PANEL *); 63 extern int move_panel(PANEL *, int, int); [all …]
|
H A D | private.h | 50 extern PANEL *_Bottom_panel; 51 extern PANEL *_Top_panel; 55 extern void _intersect_panel(PANEL *); 56 extern void _remove_overlap(PANEL *); 59 extern _obscured_list *_unlink_obs(PANEL *, PANEL *);
|
/titanic_41/usr/src/lib/libeti/panel/common/ |
H A D | llib-lpanel | 39 bottom_panel(PANEL *panel) 45 hide_panel(PANEL *panel) 51 del_panel(PANEL *panel) 57 *panel_window(PANEL *panel) 63 *panel_userptr(PANEL *panel) 69 set_panel_userptr(PANEL *panel, char *ptr) 74 PANEL 75 *panel_above(PANEL *panel) 77 return (PANEL *) 0; 80 PANEL [all …]
|
H A D | misc.c | 42 PANEL *_Bottom_panel; 43 PANEL *_Top_panel; 52 panel_window(PANEL *panel) in panel_window() 59 panel_userptr(PANEL *panel) in panel_userptr() 66 set_panel_userptr(PANEL *panel, char *ptr) in set_panel_userptr() 79 PANEL * 80 panel_above(PANEL *panel) in panel_above() 86 return ((panel == panel -> below) ? ((PANEL *) 0) : panel -> above); in panel_above() 94 PANEL * 95 panel_below(PANEL *panel) in panel_below() [all …]
|
H A D | new.c | 44 add_top(PANEL *panel) in add_top() 65 PANEL * 68 PANEL *panel; in new_panel() 74 !(panel = (PANEL *) malloc(sizeof (PANEL)))) in new_panel() 75 return ((PANEL *) 0); in new_panel() 92 show_panel(PANEL *panel) in show_panel()
|
H A D | update.c | 47 touch_top(PANEL *panel, int line, _obscured_list *obs, int start_x, int end_x) in touch_top() 49 PANEL *pnl; in touch_top() 85 std_touch_top(int line, PANEL *obs_pnl, int start_x, int end_x) in std_touch_top() 87 PANEL *next_obs; in std_touch_top() 117 touchup(PANEL *panel) in touchup() 161 PANEL *panel; in update_panels()
|
H A D | delete.c | 44 hide_panel(PANEL *panel) in hide_panel() 77 del_panel(PANEL *panel) in del_panel() 90 _remove_overlap(PANEL *panel) in _remove_overlap() 92 PANEL *pnl; in _remove_overlap()
|
H A D | bottom.c | 43 bottom_panel(PANEL *panel) in bottom_panel() 45 PANEL *pnl; in bottom_panel()
|
H A D | replace.c | 43 replace_panel(PANEL *panel, WINDOW *window) in replace_panel()
|
H A D | move.c | 43 move_panel(PANEL *panel, int starty, int startx) in move_panel()
|
H A D | top.c | 43 top_panel(PANEL *panel) in top_panel()
|