/freebsd/contrib/bsddialog/lib/ |
H A D | menubox.c | 66 unsigned int menurows; /* real menurows after menu_size_position() */ member 248 getfastnext(int menurows, int npritems, struct privateitem *pritems, int abs) in getfastnext() argument 253 i = menurows; in getfastnext() 258 } while (abs != a && abs < start + menurows && i > 0); in getfastnext() 264 getfastprev(int menurows, struct privateitem *pritems, int abs) in getfastprev() argument 269 i = menurows; in getfastprev() 274 } while (abs != a && abs > start - menurows && i > 0); in getfastprev() 406 if (m->nitems > (int)m->menurows) { in update_menubox() 411 if ((m->ypad + (int)m->menurows) < in update_menubox() 503 do_mixedlist(struct bsddialog_conf * conf,const char * text,int rows,int cols,unsigned int menurows,enum menumode mode,unsigned int ngroups,struct bsddialog_menugroup * groups,int * focuslist,int * focusitem) do_mixedlist() argument 692 bsddialog_mixedlist(struct bsddialog_conf * conf,const char * text,int rows,int cols,unsigned int menurows,unsigned int ngroups,struct bsddialog_menugroup * groups,int * focuslist,int * focusitem) bsddialog_mixedlist() argument 705 bsddialog_checklist(struct bsddialog_conf * conf,const char * text,int rows,int cols,unsigned int menurows,unsigned int nitems,struct bsddialog_menuitem * items,int * focusitem) bsddialog_checklist() argument 721 bsddialog_menu(struct bsddialog_conf * conf,const char * text,int rows,int cols,unsigned int menurows,unsigned int nitems,struct bsddialog_menuitem * items,int * focusitem) bsddialog_menu() argument 737 bsddialog_radiolist(struct bsddialog_conf * conf,const char * text,int rows,int cols,unsigned int menurows,unsigned int nitems,struct bsddialog_menuitem * items,int * focusitem) bsddialog_radiolist() argument [all...] |
H A D | bsddialog.h | 194 int cols, unsigned int menurows, unsigned int nitems, 216 int cols, unsigned int menurows, unsigned int nitems, 226 int cols, unsigned int menurows, unsigned int ngroups, 239 int cols, unsigned int menurows, unsigned int nitems,
|
/freebsd/contrib/bsddialog/utility/ |
H A D | util_builders.c | 434 unsigned int menurows, nitems; in checklist_builder() 438 exit_error(true, "--checklist missing <menurows>"); in checklist_builder() 439 menurows = (u_int)strtoul(argv[0], NULL, 10); in checklist_builder() 444 output = bsddialog_checklist(conf, text, rows, cols, menurows, nitems, in checklist_builder() 459 unsigned int menurows, nitems; in menu_builder() 463 exit_error(true, "--menu missing <menurows>"); in menu_builder() 464 menurows = (u_int)strtoul(argv[0], NULL, 10); in menu_builder() 470 output = bsddialog_menu(conf, text, rows, cols, menurows, nitems, in menu_builder() 485 unsigned int menurows, nitems; in radiolist_builder() 489 exit_error(true, "--radiolist missing <menurows>"); in radiolist_builder() 433 unsigned int menurows, nitems; checklist_builder() local 458 unsigned int menurows, nitems; menu_builder() local 484 unsigned int menurows, nitems; radiolist_builder() local 509 unsigned int menurows, nitems; treeview_builder() local [all...] |
/freebsd/contrib/bsddialog/ |
H A D | CHANGELOG | 170 * fix: extend menurows after shrink and enlarge. 262 * change: fixed-menurows becomes at most menurows (depending on text). 339 * fix: menurows autosize with fixed rows improving text_size(). 369 * fix: menurows autosize with fullscreen.
|
/freebsd/usr.sbin/tzsetup/ |
H A D | tzsetup.c | 108 int i, result, menurows, choice = 0; in xdialog_menu() local 126 menurows = item_no < 16 ? item_no : 16; in xdialog_menu() 128 BSDDIALOG_AUTOSIZE, menurows, item_no, listitems, &choice); in xdialog_menu()
|