Searched refs:getmaxy (Results 1 – 15 of 15) sorted by relevance
| /dragonfly/contrib/dialog/ |
| HD | progressbox.c | 131 (void) wmove(obj->obj.win, getmaxy(obj->text), (MARGIN + 1)); in start_obj() 134 dlg_attr_clear(obj->text, getmaxy(obj->text), getmaxx(obj->text), dialog_attr); in start_obj() 262 int want = getmaxy(obj->text) - (buttons ? 2 : 0); in reprint_lines() 429 if (i < getmaxy(obj->text)) { in dlg_progressbox() 435 print_line(obj, obj->line, getmaxy(obj->text) - 1); in dlg_progressbox() 447 int base = getmaxy(obj->text) - need; in dlg_progressbox()
|
| HD | fselect.c | 71 getmaxy(win), getmaxx(win), in init_list() 132 int high = getmaxy(list->win); in keep_visible() 198 dlg_attr_clear(list->win, getmaxy(list->win), getmaxx(list->win), item_attr); in display_list() 201 if (y >= getmaxy(list->win)) in display_list() 214 bottom = y + getmaxy(list->win); in display_list() 218 (long) (list->offset + getmaxy(list->win)), in display_list() 253 bottom = y + getmaxy(list->win); in fix_arrows() 316 int length = getmaxy(list->win); in scroll_list()
|
| HD | dlg_internals.h | 176 #undef getmaxy 178 #define getmaxy(win) dlg_getmaxy(win) macro
|
| HD | editbox.c | 181 int limit = getmaxy(win); in display_all() 184 dlg_attr_clear(win, getmaxy(win), getmaxx(win), dialog_attr); in display_all() 438 pagesize = getmaxy(editing); in dlg_editbox() 469 box_y + getmaxy(editing) + 1, in dlg_editbox()
|
| HD | formbox.c | 57 return (y >= scrollamt && y - scrollamt < getmaxy(win)); in in_window() 255 if (*scrollamt < lo + 1 - getmaxy(win)) in tab_next() 256 *scrollamt = lo + 1 - getmaxy(win); in tab_next() 598 getmaxy(form), in dlg_form()
|
| HD | trace.c | 107 int rc = getmaxy(win); in dlg_trace_win()
|
| HD | arrows.c | 77 && (bottom = getmaxy(win) - 1) > 0) { in dlg_draw_helpline()
|
| HD | buildlist.c | 181 int max_rows = getmaxy(win); in print_1_list() 386 int thumb_end = thumb_top + getmaxy(win); in print_both() 399 data->box_y + getmaxy(win) + 1, in print_both()
|
| HD | util.c | 1623 int y_last = getmaxy(win) + y_base; in in_window() 1657 int ylast = getmaxy(normal) + ybase; in in_shadow() 1776 getmaxy(dw->normal), in draw_childs_shadow() 1793 getmaxy(dw->normal), in erase_childs_shadow() 2233 int height = getmaxy(win); in dlg_draw_bottom_box2()
|
| HD | tailbox.c | 180 int high = getmaxy(obj->obj.win) - (2 * MARGIN + (obj->obj.bg_task ? 1 : 3)); in print_last_page()
|
| /dragonfly/contrib/ncurses/ncurses/base/ |
| HD | lib_window.c | 68 && (y + getmaxy(win) <= getmaxy(orig))) { in mvderwin() 74 for (i = 0; i < getmaxy(win); i++) in mvderwin()
|
| HD | resizeterm.c | 229 (long) getmaxy(win), (long) getmaxx(win), in adjust_window()
|
| /dragonfly/contrib/ncurses/panel/ |
| HD | panel.priv.h | 126 #define PENDY(pan) ((pan)->win->_begy + getmaxy((pan)->win) - 1)
|
| /dragonfly/lib/libncurses/ |
| HD | Symbol.base.map | 309 getmaxy;
|
| /dragonfly/lib/libncurses/include/ |
| HD | curses.head | 914 extern NCURSES_EXPORT(int) getmaxy (const WINDOW *); /* generated */ 1147 #define getmaxyx(win,y,x) (y = getmaxy(win), x = getmaxx(win)) 1194 #define getmaxy(win) (NCURSES_OK_ADDR(win) ? ((win)->_maxy + 1) : ERR) 1226 #define touchwin(win) wtouchln((win), 0, getmaxy(win), 1) 1228 #define untouchwin(win) wtouchln((win), 0, getmaxy(win), 0) 1444 #define is_linetouched(w,l) ((!(w) || ((l) > getmaxy(w)) || ((l) < 0)) ? ERR : (is_linetouched)((w)…
|