Lines Matching full:row
47 | Function : int set_top_row(MENU *menu, int row)
49 | Description : Makes the specified row the top row in the menu
52 | E_BAD_ARGUMENT - not a menu pointer or invalid row
56 set_top_row(MENU *menu, int row) in MENU_EXPORT()
58 T((T_CALLED("set_top_row(%p,%d)"), (void *)menu, row)); in MENU_EXPORT()
67 if ((row < 0) || (row > (menu->rows - menu->arows))) in MENU_EXPORT()
73 if (row != menu->toprow) in MENU_EXPORT()
80 item = menu->items[(menu->opt & O_ROWMAJOR) ? (row * menu->cols) : row]; in MENU_EXPORT()
83 _nc_New_TopRow_and_CurrentItem(menu, row, item); in MENU_EXPORT()
93 | Description : Return the top row of the menu
95 | Return Values : The row number or ERR if there is no row